diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-05-27 11:38:52 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-05-27 11:38:52 -0700 |
commit | 03b289a851c62eb2a7e3592432876bfa8a56770b (patch) | |
tree | c15f8380a484cc56423eae46e0d337a81211d4b5 /passes | |
parent | 3c8368454f5f9643425bab0065158587b03e2716 (diff) | |
download | yosys-03b289a851c62eb2a7e3592432876bfa8a56770b.tar.gz yosys-03b289a851c62eb2a7e3592432876bfa8a56770b.tar.bz2 yosys-03b289a851c62eb2a7e3592432876bfa8a56770b.zip |
Add 'cinput' and 'coutput' to symbols file for boxes
Diffstat (limited to 'passes')
-rw-r--r-- | passes/techmap/abc9.cc | 25 |
1 files changed, 18 insertions, 7 deletions
diff --git a/passes/techmap/abc9.cc b/passes/techmap/abc9.cc index 8341741fa..89e3eb948 100644 --- a/passes/techmap/abc9.cc +++ b/passes/techmap/abc9.cc @@ -786,14 +786,24 @@ void abc9_module(RTLIL::Design *design, RTLIL::Module *current_module, std::stri continue; } - if (c->type == "$lut" && GetSize(c->getPort("\\A")) == 1 && c->getParam("\\LUT").as_int() == 2) { - SigSpec my_a = module->wires_[remap_name(c->getPort("\\A").as_wire()->name)]; - SigSpec my_y = module->wires_[remap_name(c->getPort("\\Y").as_wire()->name)]; - module->connect(my_y, my_a); - continue; + RTLIL::Cell* cell; + if (c->type == "$lut") { + if (GetSize(c->getPort("\\A")) == 1 && c->getParam("\\LUT").as_int() == 2) { + SigSpec my_a = module->wires_[remap_name(c->getPort("\\A").as_wire()->name)]; + SigSpec my_y = module->wires_[remap_name(c->getPort("\\Y").as_wire()->name)]; + module->connect(my_y, my_a); + continue; + } + else { + cell = module->addCell(remap_name(c->name), c->type); + } + } + else { + cell = module->cell(c->name); + log_assert(cell); + log_assert(c->type == "$__blackbox__"); } - RTLIL::Cell *cell = module->addCell(remap_name(c->name), c->type); if (markgroups) cell->attributes["\\abcgroup"] = map_autoidx; cell->parameters = c->parameters; for (auto &conn : c->connections()) { @@ -802,7 +812,8 @@ void abc9_module(RTLIL::Design *design, RTLIL::Module *current_module, std::stri if (c.width == 0) continue; //log_assert(c.width == 1); - c.wire = module->wires_[remap_name(c.wire->name)]; + if (c.wire) + c.wire = module->wires_[remap_name(c.wire->name)]; newsig.append(c); } cell->setPort(conn.first, newsig); |