3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-19 12:23:39 +00:00

Add noclean option to submod for speedup

This commit is contained in:
Akash Levy 2024-05-02 06:12:09 -07:00
parent e62bc102ca
commit cc5e893db8

View file

@ -351,6 +351,9 @@ struct SubmodPass : public Pass {
log(" private names so that a subsequent 'flatten; clean' call will restore\n");
log(" the original module with original public names.\n");
log("\n");
log(" -noclean\n");
log(" by default opt_clean is run after. call with -noclean to skip this pass.\n");
log("\n");
}
void execute(std::vector<std::string> args, RTLIL::Design *design) override
{
@ -360,6 +363,7 @@ struct SubmodPass : public Pass {
std::string opt_name;
bool copy_mode = false;
bool hidden_mode = false;
bool noclean_mode = false;
size_t argidx;
for (argidx = 1; argidx < args.size(); argidx++) {
@ -375,12 +379,17 @@ struct SubmodPass : public Pass {
hidden_mode = true;
continue;
}
if (args[argidx] == "-noclean") {
noclean_mode = true;
continue;
}
break;
}
extra_args(args, argidx, design);
if (opt_name.empty())
{
if (!noclean_mode)
Pass::call(design, "opt_clean");
log_header(design, "Continuing SUBMOD pass.\n");
@ -401,6 +410,7 @@ struct SubmodPass : public Pass {
}
}
if (!noclean_mode)
Pass::call(design, "opt_clean");
}
else
@ -414,6 +424,7 @@ struct SubmodPass : public Pass {
if (module == nullptr)
log("Nothing selected -> do nothing.\n");
else {
if (!noclean_mode)
Pass::call_on_module(design, module, "opt_clean");
log_header(design, "Continuing SUBMOD pass.\n");
SubmodWorker worker(design, module, copy_mode, hidden_mode, opt_name);