From 7a5f378baef95bb1507333d86143662de1b08098 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Tue, 4 Feb 2014 16:50:13 +0100 Subject: Added hierarchy -purge_lib option --- passes/hierarchy/hierarchy.cc | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) (limited to 'passes/hierarchy') diff --git a/passes/hierarchy/hierarchy.cc b/passes/hierarchy/hierarchy.cc index 01e287e9..50d0e6e4 100644 --- a/passes/hierarchy/hierarchy.cc +++ b/passes/hierarchy/hierarchy.cc @@ -210,7 +210,7 @@ static void hierarchy_worker(RTLIL::Design *design, std::set &us } } -static void hierarchy(RTLIL::Design *design, RTLIL::Module *top) +static void hierarchy(RTLIL::Design *design, RTLIL::Module *top, bool purge_lib) { std::set used; hierarchy_worker(design, used, top, 0); @@ -221,6 +221,8 @@ static void hierarchy(RTLIL::Design *design, RTLIL::Module *top) del_modules.push_back(it.second); for (auto mod : del_modules) { + if (!purge_lib && mod->get_bool_attribute("\\blackbox")) + continue; log("Removing unused module `%s'.\n", mod->name.c_str()); design->modules.erase(mod->name); delete mod; @@ -247,6 +249,10 @@ struct HierarchyPass : public Pass { log(" also check the design hierarchy. this generates an error when\n"); log(" an unknown module is used as cell type.\n"); log("\n"); + log(" -purge_lib\n"); + log(" by default the hierarchy command will not remove library (blackbox)\n"); + log(" module. use this options to also remove unused blackbox modules.\n"); + log("\n"); log(" -libdir \n"); log(" search for files named .v in the specified directory\n"); log(" for unkown modules and automatically run read_verilog for each\n"); @@ -286,6 +292,7 @@ struct HierarchyPass : public Pass { log_header("Executing HIERARCHY pass (managing design hierarchy).\n"); bool flag_check = false; + bool purge_lib = false; RTLIL::Module *top_mod = NULL; std::vector libdirs; @@ -340,6 +347,10 @@ struct HierarchyPass : public Pass { flag_check = true; continue; } + if (args[argidx] == "-purge_lib") { + purge_lib = true; + continue; + } if (args[argidx] == "-keep_positionals") { keep_positionals = true; continue; @@ -376,7 +387,7 @@ struct HierarchyPass : public Pass { top_mod = mod_it.second; if (top_mod != NULL) - hierarchy(design, top_mod); + hierarchy(design, top_mod, purge_lib); bool did_something = true; bool did_something_once = false; @@ -398,7 +409,7 @@ struct HierarchyPass : public Pass { if (top_mod != NULL && did_something_once) { log_header("Re-running hierarchy analysis..\n"); - hierarchy(design, top_mod); + hierarchy(design, top_mod, purge_lib); } if (top_mod != NULL) { -- cgit v1.2.3