diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-12-29 04:06:52 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-12-29 04:06:52 +0100 |
commit | 7d843adef98ec051acc64f4a04c925c468b562c2 (patch) | |
tree | 2ca84cf9d7086651757cb599d55e4c766b4b4c33 | |
parent | 662cb549e4e11d15b9c1c7e4d3944a05dab2447f (diff) | |
download | yosys-7d843adef98ec051acc64f4a04c925c468b562c2.tar.gz yosys-7d843adef98ec051acc64f4a04c925c468b562c2.tar.bz2 yosys-7d843adef98ec051acc64f4a04c925c468b562c2.zip |
dict/pool changes in opt_clean
-rw-r--r-- | kernel/sigtools.h | 9 | ||||
-rw-r--r-- | passes/opt/opt_clean.cc | 10 |
2 files changed, 14 insertions, 5 deletions
diff --git a/kernel/sigtools.h b/kernel/sigtools.h index 5281b7a45..c38736e70 100644 --- a/kernel/sigtools.h +++ b/kernel/sigtools.h @@ -195,6 +195,15 @@ struct SigSet } } + void find(RTLIL::SigSpec sig, pool<T> &result) + { + for (auto &bit : sig) + if (bit.wire != NULL) { + auto &data = bits[bit]; + result.insert(data.begin(), data.end()); + } + } + std::set<T> find(RTLIL::SigSpec sig) { std::set<T> result; diff --git a/passes/opt/opt_clean.cc b/passes/opt/opt_clean.cc index b9ff5d302..aabdbf013 100644 --- a/passes/opt/opt_clean.cc +++ b/passes/opt/opt_clean.cc @@ -53,7 +53,7 @@ void rmunused_module_cells(RTLIL::Module *module, bool verbose) for (auto &it : module->wires_) { RTLIL::Wire *wire = it.second; if (wire->port_output || wire->get_bool_attribute("\\keep")) { - std::set<RTLIL::Cell*> cell_list; + pool<RTLIL::Cell*> cell_list; wire2driver.find(sigmap(wire), cell_list); for (auto cell : cell_list) queue.insert(cell); @@ -68,7 +68,7 @@ void rmunused_module_cells(RTLIL::Module *module, bool verbose) for (auto cell : queue) { for (auto &it : cell->connections()) { if (!ct.cell_output(cell->type, it.first)) { - std::set<RTLIL::Cell*> cell_list; + pool<RTLIL::Cell*> cell_list; wire2driver.find(sigmap(it.second), cell_list); for (auto c : cell_list) { if (unused.count(c)) @@ -97,7 +97,7 @@ int count_nontrivial_wire_attrs(RTLIL::Wire *w) return count; } -bool compare_signals(RTLIL::SigBit &s1, RTLIL::SigBit &s2, SigPool ®s, SigPool &conns, std::set<RTLIL::Wire*> &direct_wires) +bool compare_signals(RTLIL::SigBit &s1, RTLIL::SigBit &s2, SigPool ®s, SigPool &conns, pool<RTLIL::Wire*> &direct_wires) { RTLIL::Wire *w1 = s1.wire; RTLIL::Wire *w2 = s2.wire; @@ -161,8 +161,8 @@ void rmunused_module_signals(RTLIL::Module *module, bool purge_mode, bool verbos } SigMap assign_map(module); - std::set<RTLIL::SigSpec> direct_sigs; - std::set<RTLIL::Wire*> direct_wires; + pool<RTLIL::SigSpec> direct_sigs; + pool<RTLIL::Wire*> direct_wires; for (auto &it : module->cells_) { RTLIL::Cell *cell = it.second; if (ct_all.cell_known(cell->type)) |