mirror of https://github.com/YosysHQ/yosys.git
Only pack out registers if \init is zero or x; then remove \init from PREG
This commit is contained in:
parent
37a34eeb04
commit
b08797da6b
|
@ -451,6 +451,16 @@ void pack_xilinx_dsp(dict<SigBit, Cell*> &bit_to_driver, xilinx_dsp_pm &pm)
|
|||
P.replace(pm.sigmap(D), Q);
|
||||
st.ffP->connections_.at("\\Q").replace(P, pm.module->addWire(NEW_ID, GetSize(P)));
|
||||
|
||||
for (auto c : Q.chunks()) {
|
||||
auto it = c.wire->attributes.find("\\init");
|
||||
if (it == c.wire->attributes.end())
|
||||
continue;
|
||||
for (int i = c.offset; i < c.offset+c.width; i++) {
|
||||
log_assert(it->second[i] == State::S0 || it->second[i] == State::Sx);
|
||||
it->second[i] = State::Sx;
|
||||
}
|
||||
}
|
||||
|
||||
cell->setParam("\\PREG", State::S1);
|
||||
}
|
||||
|
||||
|
|
|
@ -290,8 +290,8 @@ endmatch
|
|||
|
||||
code argQ
|
||||
if (ff) {
|
||||
for (auto b : argQ)
|
||||
if (b.wire->get_bool_attribute(\keep))
|
||||
for (auto c : argQ.chunks())
|
||||
if (c.wire->get_bool_attribute(\keep))
|
||||
reject;
|
||||
|
||||
if (clock != SigBit()) {
|
||||
|
@ -447,9 +447,13 @@ code
|
|||
if (dff) {
|
||||
dffQ = port(dff, \Q);
|
||||
|
||||
for (auto b : dffQ)
|
||||
if (b.wire->get_bool_attribute(\keep))
|
||||
for (auto c : dffQ.chunks()) {
|
||||
if (c.wire->get_bool_attribute(\keep))
|
||||
reject;
|
||||
Const init = c.wire->attributes.at(\init, State::Sx);
|
||||
if (!init.is_fully_undef() && !init.is_fully_zero())
|
||||
reject;
|
||||
}
|
||||
|
||||
if (clock != SigBit()) {
|
||||
if (port(dff, \CLK) != clock)
|
||||
|
|
Loading…
Reference in New Issue