bugpoint: add runner option
authorZachary Snow <zach@zachjs.com>
Tue, 16 Mar 2021 14:54:22 +0000 (10:54 -0400)
committerZachary Snow <zachary.j.snow@gmail.com>
Wed, 17 Mar 2021 19:54:00 +0000 (15:54 -0400)
manual/command-reference-manual.tex
passes/cmds/bugpoint.cc

index e2d54cb03c5bfbb58c2d2a1224c03e73bd985ea5..a3264b4cd93415dd5a51695e18e0ad887956c322 100644 (file)
@@ -656,6 +656,9 @@ are specified, all parts of design will be removed.
 
     -updates
         try to remove process updates from syncs.
+
+    -runner "<prefix>"
+        child process wrapping command, e.g., "timeout 30", or valgrind.
 \end{lstlisting}
 
 \section{cd -- a shortcut for 'select -module <name>'}
index 40207b1fc598a682b5d62ef7fecd4bf18500aeb8..70c002c44a1eb9777c153c63cac955e28fa8b5e2 100644 (file)
@@ -87,9 +87,12 @@ struct BugpointPass : public Pass {
                log("    -updates\n");
                log("        try to remove process updates from syncs.\n");
                log("\n");
+               log("    -runner \"<prefix>\"\n");
+               log("        child process wrapping command, e.g., \"timeout 30\", or valgrind.\n");
+               log("\n");
        }
 
-       bool run_yosys(RTLIL::Design *design, string yosys_cmd, string yosys_arg)
+       bool run_yosys(RTLIL::Design *design, string runner, string yosys_cmd, string yosys_arg)
        {
                design->sort();
 
@@ -97,7 +100,7 @@ struct BugpointPass : public Pass {
                RTLIL_BACKEND::dump_design(f, design, /*only_selected=*/false, /*flag_m=*/true, /*flag_n=*/false);
                f.close();
 
-               string yosys_cmdline = stringf("%s -qq -L bugpoint-case.log %s bugpoint-case.il", yosys_cmd.c_str(), yosys_arg.c_str());
+               string yosys_cmdline = stringf("%s %s -qq -L bugpoint-case.log %s bugpoint-case.il", runner.c_str(), yosys_cmd.c_str(), yosys_arg.c_str());
                return run_command(yosys_cmdline) == 0;
        }
 
@@ -394,7 +397,7 @@ struct BugpointPass : public Pass {
 
        void execute(std::vector<std::string> args, RTLIL::Design *design) override
        {
-               string yosys_cmd = "yosys", yosys_arg, grep;
+               string yosys_cmd = "yosys", yosys_arg, grep, runner;
                bool fast = false, clean = false;
                bool modules = false, ports = false, cells = false, connections = false, processes = false, assigns = false, updates = false, wires = false, has_part = false;
 
@@ -472,6 +475,14 @@ struct BugpointPass : public Pass {
                                has_part = true;
                                continue;
                        }
+                       if (args[argidx] == "-runner" && argidx + 1 < args.size()) {
+                               runner = args[++argidx];
+                               if (runner.size() && runner.at(0) == '"') {
+                                       log_assert(runner.back() == '"');
+                                       runner = runner.substr(1, runner.size() - 2);
+                               }
+                               continue;
+                       }
                        break;
                }
                extra_args(args, argidx, design);
@@ -495,7 +506,7 @@ struct BugpointPass : public Pass {
                        log_cmd_error("This command only operates on fully selected designs!\n");
 
                RTLIL::Design *crashing_design = clean_design(design, clean);
-               if (run_yosys(crashing_design, yosys_cmd, yosys_arg))
+               if (run_yosys(crashing_design, runner, yosys_cmd, yosys_arg))
                        log_cmd_error("The provided script file or command and Yosys binary do not crash on this design!\n");
                if (!check_logfile(grep))
                        log_cmd_error("The provided grep string is not found in the log file!\n");
@@ -512,12 +523,12 @@ struct BugpointPass : public Pass {
                                if (clean)
                                {
                                        RTLIL::Design *testcase = clean_design(simplified);
-                                       crashes = !run_yosys(testcase, yosys_cmd, yosys_arg);
+                                       crashes = !run_yosys(testcase, runner, yosys_cmd, yosys_arg);
                                        delete testcase;
                                }
                                else
                                {
-                                       crashes = !run_yosys(simplified, yosys_cmd, yosys_arg);
+                                       crashes = !run_yosys(simplified, runner, yosys_cmd, yosys_arg);
                                }
 
                                if (crashes && check_logfile(grep))