diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-12-30 16:29:08 -0800 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-12-30 16:29:08 -0800 |
commit | 88b9c8d46ddac513831dc79d370f8abb23ab68fc (patch) | |
tree | 11888a33ddd94b242200edbccf596f6f06d08765 /passes/techmap/abc9.cc | |
parent | dbffbeef5c2df2345c786e195d2006d7bb23578a (diff) | |
download | yosys-88b9c8d46ddac513831dc79d370f8abb23ab68fc.tar.gz yosys-88b9c8d46ddac513831dc79d370f8abb23ab68fc.tar.bz2 yosys-88b9c8d46ddac513831dc79d370f8abb23ab68fc.zip |
Restore count_outputs, move process check to abc
Diffstat (limited to 'passes/techmap/abc9.cc')
-rw-r--r-- | passes/techmap/abc9.cc | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/passes/techmap/abc9.cc b/passes/techmap/abc9.cc index d507a6973..ac64ae86d 100644 --- a/passes/techmap/abc9.cc +++ b/passes/techmap/abc9.cc @@ -164,7 +164,7 @@ struct Abc9Pass : public ScriptPass map_cmd << " " << arg << " " << args[++argidx]; continue; } - if (arg == "-fast" || /*arg == "-dff" ||*/ arg == "-keepff" + if (arg == "-fast" /*|| arg == "-nocleanup"*/ || arg == "-showtmp" || arg == "-markgroups" || arg == "-nomfs") { map_cmd << " " << arg; @@ -189,6 +189,14 @@ struct Abc9Pass : public ScriptPass active_design->selection_stack.emplace_back(false); for (auto mod : selected_modules) { + if (module->attributes.count(ID(abc9_box_id))) + continue; + + if (module->processes.size() > 0) { + log("Skipping module %s as it contains processes.\n", log_id(module)); + continue; + } + log_push(); active_design->selection().select(mod); |