diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-06-10 16:16:40 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-08-22 16:16:34 -0700 |
commit | e1fff34dde994f6d175311c61c5a63b5a21b549b (patch) | |
tree | 46dc1382196beb4d63cc4a2c45eabce607aa6b19 | |
parent | 6e8fda8bf074ca14c5bd58c0dbafc3a5c8ec8e7f (diff) | |
download | yosys-e1fff34dde994f6d175311c61c5a63b5a21b549b.tar.gz yosys-e1fff34dde994f6d175311c61c5a63b5a21b549b.tar.bz2 yosys-e1fff34dde994f6d175311c61c5a63b5a21b549b.zip |
If d_bit already in sigbit_chain_next, create extra wire
-rw-r--r-- | passes/techmap/shregmap.cc | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/passes/techmap/shregmap.cc b/passes/techmap/shregmap.cc index d472d1275..6c00d4d53 100644 --- a/passes/techmap/shregmap.cc +++ b/passes/techmap/shregmap.cc @@ -140,10 +140,13 @@ struct ShregmapWorker if (opts.init || sigbit_init.count(q_bit) == 0) { - if (sigbit_chain_next.count(d_bit)) { + auto r = sigbit_chain_next.insert(std::make_pair(d_bit, cell)); + if (!r.second) { sigbit_with_non_chain_users.insert(d_bit); - } else - sigbit_chain_next[d_bit] = cell; + Wire *wire = module->addWire(NEW_ID); + module->connect(wire, d_bit); + sigbit_chain_next.insert(std::make_pair(wire, cell)); + } sigbit_chain_prev[q_bit] = cell; continue; |