diff options
Diffstat (limited to 'passes/extract')
-rw-r--r-- | passes/extract/extract.cc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/passes/extract/extract.cc b/passes/extract/extract.cc index 3e5e4afb2..e6bb1ca30 100644 --- a/passes/extract/extract.cc +++ b/passes/extract/extract.cc @@ -156,7 +156,7 @@ namespace return true; } - void replace(RTLIL::Module *needle, RTLIL::Module *haystack, SubCircuit::Solver::Result &match) + RTLIL::Cell *replace(RTLIL::Module *needle, RTLIL::Module *haystack, SubCircuit::Solver::Result &match) { SigMap sigmap(needle); SigSet<std::pair<std::string, int>> sig2port; @@ -202,6 +202,8 @@ namespace haystack->cells.erase(haystack_cell->name); delete haystack_cell; } + + return cell; } } @@ -451,7 +453,9 @@ struct ExtractPass : public Pass { log(" %s:%s", it2.first.c_str(), it2.second.c_str()); log("\n"); } - replace(needle_map.at(result.needleGraphId), haystack_map.at(result.haystackGraphId), result); + RTLIL::Cell *new_cell = replace(needle_map.at(result.needleGraphId), haystack_map.at(result.haystackGraphId), result); + design->select(haystack_map.at(result.haystackGraphId), new_cell); + log(" new cell: %s\n", id2cstr(new_cell->name)); } } } |