summaryrefslogtreecommitdiff
path: root/passes/opt/opt_rmunused.cc
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2013-03-01 08:58:55 +0100
committerClifford Wolf <clifford@clifford.at>2013-03-01 09:01:49 +0100
commit36954471a6f385bda835b2a4e5751764bb146aac (patch)
tree35b4f1db891047978041cfb97716950348f6c6d2 /passes/opt/opt_rmunused.cc
parent1bc0f04789a8aeede49db5cdda298bc828a19f7f (diff)
Added help messages for opt_* passes
Diffstat (limited to 'passes/opt/opt_rmunused.cc')
-rw-r--r--passes/opt/opt_rmunused.cc21
1 files changed, 20 insertions, 1 deletions
diff --git a/passes/opt/opt_rmunused.cc b/passes/opt/opt_rmunused.cc
index 33c09f28..9b276644 100644
--- a/passes/opt/opt_rmunused.cc
+++ b/passes/opt/opt_rmunused.cc
@@ -221,7 +221,21 @@ static void rmunused_module(RTLIL::Module *module)
}
struct OptRmUnusedPass : public Pass {
- OptRmUnusedPass() : Pass("opt_rmunused") { }
+ OptRmUnusedPass() : Pass("opt_rmunused", "remove unused cells and wires") { }
+ virtual void help()
+ {
+ // |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
+ log("\n");
+ log(" opt_rmunused [selection]\n");
+ log("\n");
+ log("This pass identifies wires and cells that are unused and removes them. Other\n");
+ log("often remove cells but leave the wires in the design or reconnect the wires\n");
+ log("but leave the old cells in the design. This pass can be used to clean up after\n");
+ log("the passes that do the actual work.\n");
+ log("\n");
+ log("This pass only operates on completely selected modules without processes.\n");
+ log("\n");
+ }
virtual void execute(std::vector<std::string> args, RTLIL::Design *design)
{
log_header("Executing OPT_RMUNUSED pass (remove unused cells and wires).\n");
@@ -235,6 +249,11 @@ struct OptRmUnusedPass : public Pass {
ct.setup_stdcells_mem();
for (auto &mod_it : design->modules) {
+ if (!design->selected_whole_module(mod_it.first)) {
+ if (design->selected(mod_it.second))
+ log("Skipping module %s as it is only partially selected.\n", id2cstr(mod_it.second->name));
+ continue;
+ }
if (mod_it.second->processes.size() > 0) {
log("Skipping module %s as it contains processes.\n", mod_it.second->name.c_str());
} else {