proc: Run opt_expr at the end
authorMarcelina Kościelnicka <mwk@0x04.net>
Tue, 27 Jul 2021 13:43:36 +0000 (15:43 +0200)
committerMarcelina Kościelnicka <mwk@0x04.net>
Tue, 27 Jul 2021 18:44:45 +0000 (20:44 +0200)
passes/proc/proc.cc

index 2dfc30e8722920ade9ac74748cfd2fc13380b6d1..d7aac57b66fa0215fd5bdd740ccb0f1485784316 100644 (file)
@@ -45,6 +45,7 @@ struct ProcPass : public Pass {
                log("    proc_dff\n");
                log("    proc_memwr\n");
                log("    proc_clean\n");
+               log("    opt_expr -keepdc\n");
                log("\n");
                log("This replaces the processes in the design with multiplexers,\n");
                log("flip-flops and latches.\n");
@@ -61,12 +62,16 @@ struct ProcPass : public Pass {
                log("        This option is passed through to proc_mux. proc_rmdead is not\n");
                log("        executed in -ifx mode.\n");
                log("\n");
+               log("    -noopt\n");
+               log("        Will omit the opt_expr pass.\n");
+               log("\n");
        }
        void execute(std::vector<std::string> args, RTLIL::Design *design) override
        {
                std::string global_arst;
                bool ifxmode = false;
                bool nomux = false;
+               bool noopt = false;
 
                log_header(design, "Executing PROC pass (convert processes to netlists).\n");
                log_push();
@@ -86,6 +91,10 @@ struct ProcPass : public Pass {
                                ifxmode = true;
                                continue;
                        }
+                       if (args[argidx] == "-noopt") {
+                               noopt = true;
+                               continue;
+                       }
                        break;
                }
                extra_args(args, argidx, design);
@@ -105,6 +114,8 @@ struct ProcPass : public Pass {
                Pass::call(design, "proc_dff");
                Pass::call(design, "proc_memwr");
                Pass::call(design, "proc_clean");
+               if (!noopt)
+                       Pass::call(design, "opt_expr -keepdc");
 
                log_pop();
        }