mirror of https://github.com/YosysHQ/yosys.git
abc9_ops: -reintegrate to not trim box padding anymore
This commit is contained in:
parent
654247abe9
commit
4656f202c6
|
@ -349,7 +349,7 @@ struct XAigerWriter
|
||||||
unused_bits.erase(I);
|
unused_bits.erase(I);
|
||||||
}
|
}
|
||||||
if (w->port_output)
|
if (w->port_output)
|
||||||
for (const auto &b : rhs.bits()) {
|
for (const auto &b : rhs) {
|
||||||
SigBit O = sigmap(b);
|
SigBit O = sigmap(b);
|
||||||
if (O != b)
|
if (O != b)
|
||||||
alias_map[O] = b;
|
alias_map[O] = b;
|
||||||
|
|
|
@ -562,15 +562,6 @@ void reintegrate(RTLIL::Module *module)
|
||||||
c.wire = module->wires_.at(remap_name(c.wire->name));
|
c.wire = module->wires_.at(remap_name(c.wire->name));
|
||||||
newsig.append(c);
|
newsig.append(c);
|
||||||
}
|
}
|
||||||
|
|
||||||
auto it = existing_cell->connections_.find(port_name);
|
|
||||||
if (it == existing_cell->connections_.end())
|
|
||||||
continue;
|
|
||||||
if (GetSize(newsig) > GetSize(it->second))
|
|
||||||
newsig = newsig.extract(0, GetSize(it->second));
|
|
||||||
else
|
|
||||||
log_assert(GetSize(newsig) == GetSize(it->second));
|
|
||||||
|
|
||||||
cell->setPort(port_name, newsig);
|
cell->setPort(port_name, newsig);
|
||||||
|
|
||||||
if (w->port_input && !abc9_flop)
|
if (w->port_input && !abc9_flop)
|
||||||
|
|
Loading…
Reference in New Issue