Using new obj iterator API in a few places
authorClifford Wolf <clifford@clifford.at>
Sun, 27 Jul 2014 08:41:42 +0000 (10:41 +0200)
committerClifford Wolf <clifford@clifford.at>
Sun, 27 Jul 2014 09:32:42 +0000 (11:32 +0200)
passes/memory/memory_dff.cc
passes/opt/opt_muxtree.cc
passes/proc/proc_arst.cc
passes/proc/proc_clean.cc
passes/proc/proc_dff.cc
passes/proc/proc_init.cc
passes/proc/proc_mux.cc
passes/proc/proc_rmdead.cc
passes/techmap/simplemap.cc
passes/techmap/techmap.cc

index 9a1e96796e034dba6f46b090a66758536af7b8f1..85249142e548d46a472fef2ad6dd023fa8e10806 100644 (file)
@@ -38,10 +38,8 @@ static bool find_sig_before_dff(RTLIL::Module *module, RTLIL::SigSpec &sig, RTLI
                if (bit.wire == NULL)
                        continue;
 
-               for (auto &cell_it : module->cells_)
+               for (auto cell : module->cells())
                {
-                       RTLIL::Cell *cell = cell_it.second;
-
                        if (cell->type != "$dff")
                                continue;
 
@@ -120,14 +118,12 @@ static void disconnect_dff(RTLIL::Module *module, RTLIL::SigSpec sig)
 
        RTLIL::SigSpec new_sig = module->addWire(sstr.str(), sig.size());
 
-       for (auto &cell_it : module->cells_) {
-               RTLIL::Cell *cell = cell_it.second;
+       for (auto cell : module->cells())
                if (cell->type == "$dff") {
                        RTLIL::SigSpec new_q = cell->get("\\Q");
                        new_q.replace(sig, new_sig);
                        cell->set("\\Q", new_q);
                }
-       }
 }
 
 static void handle_rd_cell(RTLIL::Module *module, RTLIL::Cell *cell)
@@ -170,13 +166,13 @@ static void handle_rd_cell(RTLIL::Module *module, RTLIL::Cell *cell)
 
 static void handle_module(RTLIL::Design *design, RTLIL::Module *module, bool flag_wr_only)
 {
-       for (auto &cell_it : module->cells_) {
-               if (!design->selected(module, cell_it.second))
+       for (auto cell : module->cells()) {
+               if (!design->selected(module, cell))
                        continue;
-               if (cell_it.second->type == "$memwr" && !cell_it.second->parameters["\\CLK_ENABLE"].as_bool())
-                               handle_wr_cell(module, cell_it.second);
-               if (!flag_wr_only && cell_it.second->type == "$memrd" && !cell_it.second->parameters["\\CLK_ENABLE"].as_bool())
-                               handle_rd_cell(module, cell_it.second);
+               if (cell->type == "$memwr" && !cell->parameters["\\CLK_ENABLE"].as_bool())
+                               handle_wr_cell(module, cell);
+               if (!flag_wr_only && cell->type == "$memrd" && !cell->parameters["\\CLK_ENABLE"].as_bool())
+                               handle_rd_cell(module, cell);
        }
 }
 
@@ -212,9 +208,9 @@ struct MemoryDffPass : public Pass {
                }
                extra_args(args, argidx, design);
 
-               for (auto &mod_it : design->modules_)
-                       if (design->selected(mod_it.second))
-                               handle_module(design, mod_it.second, flag_wr_only);
+               for (auto mod : design->modules())
+                       if (design->selected(mod))
+                               handle_module(design, mod, flag_wr_only);
        }
 } MemoryDffPass;
  
index 82cc78bed3f9c58c1855f5659cb352afd9c8cdcb..73baaf900f905042aa13522f0d962b90254e645f 100644 (file)
@@ -83,9 +83,8 @@ struct OptMuxtreeWorker
                //      .ctrl_sigs
                //      .input_sigs
                //      .const_activated
-               for (auto &cell_it : module->cells_)
+               for (auto cell : module->cells())
                {
-                       RTLIL::Cell *cell = cell_it.second;
                        if (cell->type == "$mux" || cell->type == "$pmux" || cell->type == "$safe_pmux")
                        {
                                RTLIL::SigSpec sig_a = cell->get("\\A");
@@ -136,9 +135,9 @@ struct OptMuxtreeWorker
                                }
                        }
                }
-               for (auto &it : module->wires_) {
-                       if (it.second->port_output)
-                               for (int idx : sig2bits(RTLIL::SigSpec(it.second)))
+               for (auto wire : module->wires()) {
+                       if (wire->port_output)
+                               for (int idx : sig2bits(RTLIL::SigSpec(wire)))
                                        bit2info[idx].seen_non_mux = true;
                }
 
@@ -423,16 +422,16 @@ struct OptMuxtreePass : public Pass {
                extra_args(args, 1, design);
 
                int total_count = 0;
-               for (auto &mod_it : design->modules_) {
-                       if (!design->selected_whole_module(mod_it.first)) {
-                               if (design->selected(mod_it.second))
-                                       log("Skipping module %s as it is only partially selected.\n", id2cstr(mod_it.second->name));
+               for (auto mod : design->modules()) {
+                       if (!design->selected_whole_module(mod)) {
+                               if (design->selected(mod))
+                                       log("Skipping module %s as it is only partially selected.\n", log_id(mod));
                                continue;
                        }
-                       if (mod_it.second->processes.size() > 0) {
-                               log("Skipping module %s as it contains processes.\n", id2cstr(mod_it.second->name));
+                       if (mod->processes.size() > 0) {
+                               log("Skipping module %s as it contains processes.\n", log_id(mod));
                        } else {
-                               OptMuxtreeWorker worker(design, mod_it.second);
+                               OptMuxtreeWorker worker(design, mod);
                                total_count += worker.removed_count;
                        }
                }
index e8439477050369a1457e8b87eb38fba17082b415..676469fe2dbf669f65d503894e407449c3b903ab 100644 (file)
@@ -33,20 +33,24 @@ static bool check_signal(RTLIL::Module *mod, RTLIL::SigSpec signal, RTLIL::SigSp
        if (signal == ref)
                return true;
 
-       for (auto &cell_it : mod->cells_) {
-               RTLIL::Cell *cell = cell_it.second;
+       for (auto cell : mod->cells())
+       {
                if (cell->type == "$reduce_or" && cell->get("\\Y") == signal)
                        return check_signal(mod, cell->get("\\A"), ref, polarity);
+
                if (cell->type == "$reduce_bool" && cell->get("\\Y") == signal)
                        return check_signal(mod, cell->get("\\A"), ref, polarity);
+
                if (cell->type == "$logic_not" && cell->get("\\Y") == signal) {
                        polarity = !polarity;
                        return check_signal(mod, cell->get("\\A"), ref, polarity);
                }
+
                if (cell->type == "$not" && cell->get("\\Y") == signal) {
                        polarity = !polarity;
                        return check_signal(mod, cell->get("\\A"), ref, polarity);
                }
+
                if ((cell->type == "$eq" || cell->type == "$eqx") && cell->get("\\Y") == signal) {
                        if (cell->get("\\A").is_fully_const()) {
                                if (!cell->get("\\A").as_bool())
@@ -59,6 +63,7 @@ static bool check_signal(RTLIL::Module *mod, RTLIL::SigSpec signal, RTLIL::SigSp
                                return check_signal(mod, cell->get("\\A"), ref, polarity);
                        }
                }
+
                if ((cell->type == "$ne" || cell->type == "$nex") && cell->get("\\Y") == signal) {
                        if (cell->get("\\A").is_fully_const()) {
                                if (cell->get("\\A").as_bool())
@@ -236,14 +241,14 @@ struct ProcArstPass : public Pass {
 
                extra_args(args, argidx, design);
 
-               for (auto &mod_it : design->modules_)
-                       if (design->selected(mod_it.second)) {
-                               SigMap assign_map(mod_it.second);
-                               for (auto &proc_it : mod_it.second->processes) {
-                                       if (!design->selected(mod_it.second, proc_it.second))
+               for (auto mod : design->modules())
+                       if (design->selected(mod)) {
+                               SigMap assign_map(mod);
+                               for (auto &proc_it : mod->processes) {
+                                       if (!design->selected(mod, proc_it.second))
                                                continue;
-                                       proc_arst(mod_it.second, proc_it.second, assign_map);
-                                       if (global_arst.empty() || mod_it.second->wires_.count(global_arst) == 0)
+                                       proc_arst(mod, proc_it.second, assign_map);
+                                       if (global_arst.empty() || mod->wire(global_arst) == nullptr)
                                                continue;
                                        std::vector<RTLIL::SigSig> arst_actions;
                                        for (auto sync : proc_it.second->syncs)
@@ -266,7 +271,7 @@ struct ProcArstPass : public Pass {
                                        if (!arst_actions.empty()) {
                                                RTLIL::SyncRule *sync = new RTLIL::SyncRule;
                                                sync->type = global_arst_neg ? RTLIL::SyncType::ST0 : RTLIL::SyncType::ST1;
-                                               sync->signal = mod_it.second->wires_.at(global_arst);
+                                               sync->signal = mod->wire(global_arst);
                                                sync->actions = arst_actions;
                                                proc_it.second->syncs.push_back(sync);
                                        }
index 678d620be69ef108621b4e52cd4d8e335bb1230b..e4c526632f18b30127892ef6c2f6e66364cc8d03 100644 (file)
@@ -149,23 +149,23 @@ struct ProcCleanPass : public Pass {
 
                extra_args(args, 1, design);
 
-               for (auto &mod_it : design->modules_) {
+               for (auto mod : design->modules()) {
                        std::vector<std::string> delme;
-                       if (!design->selected(mod_it.second))
+                       if (!design->selected(mod))
                                continue;
-                       for (auto &proc_it : mod_it.second->processes) {
-                               if (!design->selected(mod_it.second, proc_it.second))
+                       for (auto &proc_it : mod->processes) {
+                               if (!design->selected(mod, proc_it.second))
                                        continue;
-                               proc_clean(mod_it.second, proc_it.second, total_count);
+                               proc_clean(mod, proc_it.second, total_count);
                                if (proc_it.second->syncs.size() == 0 && proc_it.second->root_case.switches.size() == 0 &&
                                                proc_it.second->root_case.actions.size() == 0) {
-                                       log("Removing empty process `%s.%s'.\n", mod_it.first.c_str(), proc_it.second->name.c_str());
+                                       log("Removing empty process `%s.%s'.\n", log_id(mod), proc_it.second->name.c_str());
                                        delme.push_back(proc_it.first);
                                }
                        }
                        for (auto &id : delme) {
-                               delete mod_it.second->processes[id];
-                               mod_it.second->processes.erase(id);
+                               delete mod->processes[id];
+                               mod->processes.erase(id);
                        }
                }
 
index 7bd909a681061a99094814eb069b84420ec38d17..dc310bde0b1a6a649d415144fbed06a3b1606a3d 100644 (file)
@@ -371,12 +371,12 @@ struct ProcDffPass : public Pass {
 
                extra_args(args, 1, design);
 
-               for (auto &mod_it : design->modules_)
-                       if (design->selected(mod_it.second)) {
-                               ConstEval ce(mod_it.second);
-                               for (auto &proc_it : mod_it.second->processes)
-                                       if (design->selected(mod_it.second, proc_it.second))
-                                               proc_dff(mod_it.second, proc_it.second, ce);
+               for (auto mod : design->modules())
+                       if (design->selected(mod)) {
+                               ConstEval ce(mod);
+                               for (auto &proc_it : mod->processes)
+                                       if (design->selected(mod, proc_it.second))
+                                               proc_dff(mod, proc_it.second, ce);
                        }
        }
 } ProcDffPass;
index 3607905f53247fef3e2f9e458b31c513f5a9d5a6..99498505f1ac499f92f4a985deba6015af91380b 100644 (file)
@@ -101,11 +101,11 @@ struct ProcInitPass : public Pass {
 
                extra_args(args, 1, design);
 
-               for (auto &mod_it : design->modules_)
-                       if (design->selected(mod_it.second))
-                               for (auto &proc_it : mod_it.second->processes)
-                                       if (design->selected(mod_it.second, proc_it.second))
-                                               proc_init(mod_it.second, proc_it.second);
+               for (auto mod : design->modules())
+                       if (design->selected(mod))
+                               for (auto &proc_it : mod->processes)
+                                       if (design->selected(mod, proc_it.second))
+                                               proc_init(mod, proc_it.second);
        }
 } ProcInitPass;
  
index bcbee6cfcb89e5bd9f5fe5c025d87d669fb97984..fb49182c2b64356df7d8357c4d14c81e847ce7c9 100644 (file)
@@ -276,11 +276,11 @@ struct ProcMuxPass : public Pass {
 
                extra_args(args, 1, design);
 
-               for (auto &mod_it : design->modules_)
-                       if (design->selected(mod_it.second))
-                               for (auto &proc_it : mod_it.second->processes)
-                                       if (design->selected(mod_it.second, proc_it.second))
-                                               proc_mux(mod_it.second, proc_it.second);
+               for (auto mod : design->modules())
+                       if (design->selected(mod))
+                               for (auto &proc_it : mod->processes)
+                                       if (design->selected(mod, proc_it.second))
+                                               proc_mux(mod, proc_it.second);
        }
 } ProcMuxPass;
  
index e7e4bbc546d23b8c233abd8f83ea4ea17495e5b2..9e5f413a275d0983c4c928075802af8ad24382bc 100644 (file)
@@ -79,18 +79,18 @@ struct ProcRmdeadPass : public Pass {
                extra_args(args, 1, design);
 
                int total_counter = 0;
-               for (auto &mod_it : design->modules_) {
-                       if (!design->selected(mod_it.second))
+               for (auto mod : design->modules()) {
+                       if (!design->selected(mod))
                                continue;
-                       for (auto &proc_it : mod_it.second->processes) {
-                               if (!design->selected(mod_it.second, proc_it.second))
+                       for (auto &proc_it : mod->processes) {
+                               if (!design->selected(mod, proc_it.second))
                                        continue;
                                int counter = 0;
                                for (auto switch_it : proc_it.second->root_case.switches)
                                        proc_rmdead(switch_it, counter);
                                if (counter > 0)
                                        log("Removed %d dead cases from process %s in module %s.\n", counter,
-                                                       proc_it.first.c_str(), mod_it.first.c_str());
+                                                       proc_it.first.c_str(), log_id(mod));
                                total_counter += counter;
                        }
                }
index 6def10081c4d7bfdb70f8e34276d339010123ee4..b327ba8323a201b8b83f38ef136385db871f7f97 100644 (file)
@@ -435,21 +435,19 @@ struct SimplemapPass : public Pass {
                std::map<std::string, void(*)(RTLIL::Module*, RTLIL::Cell*)> mappers;
                simplemap_get_mappers(mappers);
 
-               for (auto &mod_it : design->modules_) {
-                       if (!design->selected(mod_it.second))
+               for (auto mod : design->modules()) {
+                       if (!design->selected(mod))
                                continue;
-                       std::vector<RTLIL::Cell*> delete_cells;
-                       for (auto &cell_it : mod_it.second->cells_) {
-                               if (mappers.count(cell_it.second->type) == 0)
+                       std::vector<RTLIL::Cell*> cells = mod->cells();
+                       for (auto cell : cells) {
+                               if (mappers.count(cell->type) == 0)
                                        continue;
-                               if (!design->selected(mod_it.second, cell_it.second))
+                               if (!design->selected(mod, cell))
                                        continue;
-                               log("Mapping %s.%s (%s).\n", RTLIL::id2cstr(mod_it.first), RTLIL::id2cstr(cell_it.first), RTLIL::id2cstr(cell_it.second->type));
-                               mappers.at(cell_it.second->type)(mod_it.second, cell_it.second);
-                               delete_cells.push_back(cell_it.second);
+                               log("Mapping %s.%s (%s).\n", log_id(mod), log_id(cell), log_id(cell->type));
+                               mappers.at(cell->type)(mod, cell);
+                               mod->remove(cell);
                        }
-                       for (auto c : delete_cells)
-                               mod_it.second->remove(c);
                }
        }
 } SimplemapPass;
index 32e18e08bb51e8ba788be8a1acd73d4238ba0981..bcae44091a2e4d15dc922f9b88a301b7999e5a85 100644 (file)
@@ -658,9 +658,9 @@ struct FlattenPass : public Pass {
 
                RTLIL::Module *top_mod = NULL;
                if (design->full_selection())
-                       for (auto &mod_it : design->modules_)
-                               if (mod_it.second->get_bool_attribute("\\top"))
-                                       top_mod = mod_it.second;
+                       for (auto mod : design->modules())
+                               if (mod->get_bool_attribute("\\top"))
+                                       top_mod = mod;
 
                bool did_something = true;
                std::set<RTLIL::Cell*> handled_cells;
@@ -670,8 +670,8 @@ struct FlattenPass : public Pass {
                                if (worker.techmap_module(design, top_mod, design, handled_cells, celltypeMap, true))
                                        did_something = true;
                        } else {
-                               for (auto &mod_it : design->modules_)
-                                       if (worker.techmap_module(design, mod_it.second, design, handled_cells, celltypeMap, true))
+                               for (auto mod : design->modules())
+                                       if (worker.techmap_module(design, mod, design, handled_cells, celltypeMap, true))
                                                did_something = true;
                        }
                }
@@ -680,12 +680,12 @@ struct FlattenPass : public Pass {
 
                if (top_mod != NULL) {
                        std::map<RTLIL::IdString, RTLIL::Module*> new_modules;
-                       for (auto &mod_it : design->modules_)
-                               if (mod_it.second == top_mod || mod_it.second->get_bool_attribute("\\blackbox")) {
-                                       new_modules[mod_it.first] = mod_it.second;
+                       for (auto mod : design->modules())
+                               if (mod == top_mod || mod->get_bool_attribute("\\blackbox")) {
+                                       new_modules[mod->name] = mod;
                                } else {
-                                       log("Deleting now unused module %s.\n", RTLIL::id2cstr(mod_it.first));
-                                       delete mod_it.second;
+                                       log("Deleting now unused module %s.\n", log_id(mod));
+                                       delete mod;
                                }
                        design->modules_.swap(new_modules);
                }