Clean up `passes/tests/test_autotb.cc`.
authorAlberto Gonzalez <boqwxp@airmail.cc>
Mon, 6 Apr 2020 04:25:21 +0000 (04:25 +0000)
committerAlberto Gonzalez <boqwxp@airmail.cc>
Mon, 6 Apr 2020 04:25:21 +0000 (04:25 +0000)
passes/tests/test_autotb.cc

index 1f071bd69724ff60546bac3b7260235a25fb031d..42e8a61ea0bb3d92bb5a9d8276602be39fe40c6d 100644 (file)
@@ -85,7 +85,7 @@ static void autotest(std::ostream &f, RTLIL::Design *design, int num_iter, int s
        f << stringf("reg [31:0] xorshift128_x = 123456789;\n");
        f << stringf("reg [31:0] xorshift128_y = 362436069;\n");
        f << stringf("reg [31:0] xorshift128_z = 521288629;\n");
-       f << stringf("reg [31:0] xorshift128_w = %u; // <-- seed value\n", seed ? seed : int(time(NULL)));
+       f << stringf("reg [31:0] xorshift128_w = %u; // <-- seed value\n", seed ? seed : int(time(nullptr)));
        f << stringf("reg [31:0] xorshift128_t;\n\n");
        f << stringf("task xorshift128;\n");
        f << stringf("begin\n");
@@ -97,22 +97,19 @@ static void autotest(std::ostream &f, RTLIL::Design *design, int num_iter, int s
        f << stringf("end\n");
        f << stringf("endtask\n\n");
 
-       for (auto it = design->modules_.begin(); it != design->modules_.end(); ++it)
+       for (auto mod : design->modules())
        {
                std::map<std::string, int> signal_in;
                std::map<std::string, std::string> signal_const;
                std::map<std::string, int> signal_clk;
                std::map<std::string, int> signal_out;
 
-               RTLIL::Module *mod = it->second;
-
                if (mod->get_bool_attribute(ID::gentb_skip))
                        continue;
 
                int count_ports = 0;
-               log("Generating test bench for module `%s'.\n", it->first.c_str());
-               for (auto it2 = mod->wires_.begin(); it2 != mod->wires_.end(); ++it2) {
-                       RTLIL::Wire *wire = it2->second;
+               log("Generating test bench for module `%s'.\n", mod->name.c_str());
+               for (auto wire : mod->wires()) {
                        if (wire->port_output) {
                                count_ports++;
                                signal_out[idy("sig", mod->name.str(), wire->name.str())] = wire->width;
@@ -140,8 +137,7 @@ static void autotest(std::ostream &f, RTLIL::Design *design, int num_iter, int s
                        }
                }
                f << stringf("%s %s(\n", id(mod->name.str()).c_str(), idy("uut", mod->name.str()).c_str());
-               for (auto it2 = mod->wires_.begin(); it2 != mod->wires_.end(); ++it2) {
-                       RTLIL::Wire *wire = it2->second;
+               for (auto wire : mod->wires()) {
                        if (wire->port_output || wire->port_input)
                                f << stringf("\t.%s(%s)%s\n", id(wire->name.str()).c_str(),
                                                idy("sig", mod->name.str(), wire->name.str()).c_str(), --count_ports ? "," : "");
@@ -312,9 +308,9 @@ static void autotest(std::ostream &f, RTLIL::Design *design, int num_iter, int s
        f << stringf("\t// $dumpfile(\"testbench.vcd\");\n");
        f << stringf("\t// $dumpvars(0, testbench);\n");
        f << stringf("\tfile = $fopen(`outfile);\n");
-       for (auto it = design->modules_.begin(); it != design->modules_.end(); ++it)
-               if (!it->second->get_bool_attribute(ID::gentb_skip))
-                       f << stringf("\t%s;\n", idy(it->first.str(), "test").c_str());
+       for (auto module : design->modules())
+               if (!module->get_bool_attribute(ID::gentb_skip))
+                       f << stringf("\t%s;\n", idy(module->name.str(), "test").c_str());
        f << stringf("\t$fclose(file);\n");
        f << stringf("\t$finish;\n");
        f << stringf("end\n\n");