yosys/passes/pmgen/peepopt_dffmux.pmg

87 lines
2.1 KiB
Plaintext
Raw Normal View History

pattern dffmux
2019-09-11 15:22:52 -05:00
state <IdString> cemuxAB
match dff
select dff->type == $dff
select GetSize(port(dff, \D)) > 1
endmatch
2019-09-11 15:22:52 -05:00
match cemux
select cemux->type == $mux
select GetSize(port(cemux, \Y)) > 1
index <SigSpec> port(cemux, \Y) === port(dff, \D)
choice <IdString> AB {\A, \B}
2019-09-11 15:22:52 -05:00
index <SigSpec> port(cemux, AB) === port(dff, \Q)
set cemuxAB AB
endmatch
code
2019-09-11 15:22:52 -05:00
SigSpec &D = cemux->connections_.at(cemuxAB == \A ? \B : \A);
SigSpec &Q = dff->connections_.at(\Q);
int width = GetSize(D);
2019-09-11 15:22:52 -05:00
if (D[width-1] == D[width-2]) {
did_something = true;
SigBit sign = D[width-1];
bool is_signed = sign.wire;
int i;
for (i = width-1; i >= 2; i--) {
if (!is_signed) {
module->connect(Q[i], sign);
if (D[i-1] != sign)
break;
}
else {
module->connect(Q[i], Q[i-1]);
if (D[i-2] != sign)
break;
}
}
2019-09-11 15:22:52 -05:00
cemux->connections_.at(\A).remove(i, width-i);
cemux->connections_.at(\B).remove(i, width-i);
cemux->connections_.at(\Y).remove(i, width-i);
cemux->fixup_parameters();
dff->connections_.at(\D).remove(i, width-i);
dff->connections_.at(\Q).remove(i, width-i);
dff->fixup_parameters();
2019-09-11 15:22:52 -05:00
log("dffcemux pattern in %s: dff=%s, cemux=%s; removed top %d bits.\n", log_id(module), log_id(dff), log_id(cemux), width-i);
accept;
}
else {
int count = 0;
for (int i = width-1; i >= 0; i--) {
2019-09-11 15:22:52 -05:00
if (D[i].wire)
continue;
Wire *w = Q[i].wire;
auto it = w->attributes.find(\init);
State init;
if (it != w->attributes.end())
init = it->second[Q[i].offset];
else
init = State::Sx;
2019-09-11 15:22:52 -05:00
if (init == State::Sx || init == D[i].data) {
count++;
2019-09-11 15:22:52 -05:00
module->connect(Q[i], D[i]);
cemux->connections_.at(\A).remove(i);
cemux->connections_.at(\B).remove(i);
cemux->connections_.at(\Y).remove(i);
dff->connections_.at(\D).remove(i);
dff->connections_.at(\Q).remove(i);
}
}
if (count > 0) {
did_something = true;
2019-09-11 15:22:52 -05:00
cemux->fixup_parameters();
dff->fixup_parameters();
2019-09-11 15:22:52 -05:00
log("dffcemux pattern in %s: dff=%s, cemux=%s; removed %d constant bits.\n", log_id(module), log_id(dff), log_id(cemux), count);
}
accept;
}
endcode