diff options
author | Clifford Wolf <clifford@clifford.at> | 2019-08-21 09:12:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-21 09:12:56 +0200 |
commit | 7d8db1c0538552d1893849ff8c9c60b2025ec267 (patch) | |
tree | b221eae7a5941448571f90c742ba601722133000 /passes | |
parent | 076af2e6176ecc440be7b7fa984ea5b461bb95de (diff) | |
parent | fe61dcce8b70236b29691fa56c562d17497d3567 (diff) | |
download | yosys-7d8db1c0538552d1893849ff8c9c60b2025ec267.tar.gz yosys-7d8db1c0538552d1893849ff8c9c60b2025ec267.tar.bz2 yosys-7d8db1c0538552d1893849ff8c9c60b2025ec267.zip |
Merge pull request #1314 from YosysHQ/eddie/fix_techmap
techmap -max_iter to apply to each module individually
Diffstat (limited to 'passes')
-rw-r--r-- | passes/techmap/techmap.cc | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/passes/techmap/techmap.cc b/passes/techmap/techmap.cc index b271c8781..c4496f76f 100644 --- a/passes/techmap/techmap.cc +++ b/passes/techmap/techmap.cc @@ -943,7 +943,8 @@ struct TechmapPass : public Pass { log(" instead of inlining them.\n"); log("\n"); log(" -max_iter <number>\n"); - log(" only run the specified number of iterations.\n"); + log(" only run the specified number of iterations on each module.\n"); + log(" default: unlimited\n"); log("\n"); log(" -recursive\n"); log(" instead of the iterative breadth-first algorithm use a recursive\n"); @@ -1157,15 +1158,16 @@ struct TechmapPass : public Pass { RTLIL::Module *module = *worker.module_queue.begin(); worker.module_queue.erase(module); + int module_max_iter = max_iter; bool did_something = true; std::set<RTLIL::Cell*> handled_cells; while (did_something) { did_something = false; - if (worker.techmap_module(design, module, map, handled_cells, celltypeMap, false)) - did_something = true; + if (worker.techmap_module(design, module, map, handled_cells, celltypeMap, false)) + did_something = true; if (did_something) module->check(); - if (max_iter > 0 && --max_iter == 0) + if (module_max_iter > 0 && --module_max_iter == 0) break; } } |