aboutsummaryrefslogtreecommitdiffstats
path: root/backends
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-10-07 11:49:06 -0700
committerEddie Hung <eddie@fpgeh.com>2019-10-07 11:49:06 -0700
commitd9fba95177ce6d37966af6a89e15c09feceee3df (patch)
treea8d328b6381b3c7b591c04dd85ed4a0f7c4b67f3 /backends
parent3879ca13983a6e3f7d4653b1d80dacd14fbe82df (diff)
downloadyosys-d9fba95177ce6d37966af6a89e15c09feceee3df.tar.gz
yosys-d9fba95177ce6d37966af6a89e15c09feceee3df.tar.bz2
yosys-d9fba95177ce6d37966af6a89e15c09feceee3df.zip
Get rid of output_port lookup
Diffstat (limited to 'backends')
-rw-r--r--backends/aiger/xaiger.cc22
1 files changed, 8 insertions, 14 deletions
diff --git a/backends/aiger/xaiger.cc b/backends/aiger/xaiger.cc
index cedf611f2..33d4cfe8e 100644
--- a/backends/aiger/xaiger.cc
+++ b/backends/aiger/xaiger.cc
@@ -768,15 +768,14 @@ struct XAigerWriter
box_outputs += GetSize(w);
for (int i = 0; i < GetSize(w); i++) {
if (GetSize(w) == 1)
- holes_wire = holes_module->addWire(stringf("%s.%s", cell->name.c_str(), w->name.c_str()));
+ holes_wire = holes_module->addWire(stringf("$abc%s.%s", cell->name.c_str(), log_id(w->name)));
else
- holes_wire = holes_module->addWire(stringf("%s.%s[%d]", cell->name.c_str(), w->name.c_str(), i));
+ holes_wire = holes_module->addWire(stringf("$abc%s.%s[%d]", cell->name.c_str(), log_id(w->name), i));
holes_wire->port_output = true;
holes_wire->port_id = port_id++;
holes_module->ports.push_back(holes_wire->name);
- if (holes_cell) {
+ if (holes_cell)
port_sig.append(holes_wire);
- }
else
holes_module->connect(holes_wire, State::S0);
}
@@ -862,15 +861,6 @@ struct XAigerWriter
// instead of per write_xaiger call
Pass::call_on_module(holes_module->design, holes_module, "flatten -wb; techmap; aigmap");
- dict<SigBit, Wire*> output_port;
- SigMap holes_sigmap(holes_module);
- for (auto port_name : holes_module->ports) {
- Wire *port = holes_module->wire(port_name);
- if (port->port_input)
- continue;
- output_port.insert(std::make_pair(holes_sigmap(port), port));
- }
-
dict<SigSig, SigSig> replace;
for (auto it = holes_module->cells_.begin(); it != holes_module->cells_.end(); ) {
auto cell = it->second;
@@ -879,7 +869,11 @@ struct XAigerWriter
SigBit Q = cell->getPort("\\Q");
// Remove the DFF cell from what needs to be a combinatorial box
it = holes_module->cells_.erase(it);
- Wire *port = output_port.at(Q);
+ Wire *port;
+ if (GetSize(Q.wire) == 1)
+ port = holes_module->wire(stringf("$abc%s", Q.wire->name.c_str()));
+ else
+ port = holes_module->wire(stringf("$abc%s[%d]", Q.wire->name.c_str(), Q.offset));
log_assert(port);
// Prepare to replace "assign <port> = DFF.Q;" with "assign <port> = DFF.D;"
// in order to extract the combinatorial control logic that feeds the box