Some fixes to improve determinism
authorClifford Wolf <clifford@clifford.at>
Fri, 9 Aug 2013 10:42:32 +0000 (12:42 +0200)
committerClifford Wolf <clifford@clifford.at>
Fri, 9 Aug 2013 10:42:32 +0000 (12:42 +0200)
kernel/rtlil.h
kernel/sigtools.h
passes/fsm/fsm_expand.cc
passes/fsm/fsm_extract.cc
passes/opt/opt_clean.cc

index f5e8ae47798ccb3f2757fa8170a41ce1490b1d4e..4a4e82356f78f54f855f9c2b7debce4d7fc4c435 100644 (file)
@@ -129,6 +129,12 @@ namespace RTLIL
 #define NEW_ID \
        RTLIL::new_id(__FILE__, __LINE__, __FUNCTION__)
 
+       template <typename T> struct sort_by_name {
+               bool operator()(T *a, T *b) const {
+                       return a->name < b->name;
+               }
+       };
+
        // see calc.cc for the implementation of this functions
        RTLIL::Const const_not         (const RTLIL::Const &arg1, const RTLIL::Const &arg2, bool signed1, bool signed2, int result_len);
        RTLIL::Const const_and         (const RTLIL::Const &arg1, const RTLIL::Const &arg2, bool signed1, bool signed2, int result_len);
index 7f7f95ab6c0fcbcacfd471109015d789377e8dc6..ae6a00f8e5feb5b0ffaa3d09ec573cecfa11176f 100644 (file)
@@ -165,11 +165,11 @@ struct SigPool
        }
 };
 
-template <typename T>
+template <typename T, class Compare = std::less<T>>
 struct SigSet
 {
        typedef std::pair<RTLIL::Wire*,int> bitDef_t;
-       std::map<bitDef_t, std::set<T>> bits;
+       std::map<bitDef_t, std::set<T, Compare>> bits;
 
        void clear()
        {
index ae1f4c166585e411aabf971a146f75687714b0dc..5756b10c7bca24a11084846ac828b7bfdc6700b9 100644 (file)
@@ -30,12 +30,12 @@ struct FsmExpand
        RTLIL::Module *module;
        RTLIL::Cell *fsm_cell;
        SigMap assign_map;
-       SigSet<RTLIL::Cell*> sig2driver, sig2user;
+       SigSet<RTLIL::Cell*, RTLIL::sort_by_name<RTLIL::Cell>> sig2driver, sig2user;
        CellTypes ct;
 
-       std::set<RTLIL::Cell*> merged_set;
-       std::set<RTLIL::Cell*> current_set;
-       std::set<RTLIL::Cell*> no_candidate_set;
+       std::set<RTLIL::Cell*, RTLIL::sort_by_name<RTLIL::Cell>> merged_set;
+       std::set<RTLIL::Cell*, RTLIL::sort_by_name<RTLIL::Cell>> current_set;
+       std::set<RTLIL::Cell*, RTLIL::sort_by_name<RTLIL::Cell>> no_candidate_set;
 
        bool already_optimized;
        int limit_transitions;
index a593c3e65f4d6b6466c05a635ed2892233b8a378..d077ef4a4367345df67b61d67b6cc64568fec391 100644 (file)
@@ -31,7 +31,7 @@
 
 static RTLIL::Module *module;
 static SigMap assign_map;
-typedef std::pair<RTLIL::Cell*,std::string> sig2driver_entry_t;
+typedef std::pair<std::string, std::string> sig2driver_entry_t;
 static SigSet<sig2driver_entry_t> sig2driver, sig2trigger;
 
 static bool find_states(RTLIL::SigSpec sig, const RTLIL::SigSpec &dff_out, RTLIL::SigSpec &ctrl, std::map<RTLIL::Const, int> &states, RTLIL::Const *reset_state = NULL)
@@ -55,14 +55,14 @@ static bool find_states(RTLIL::SigSpec sig, const RTLIL::SigSpec &dff_out, RTLIL
        std::set<sig2driver_entry_t> cellport_list;
        sig2driver.find(sig, cellport_list);
        for (auto &cellport : cellport_list) {
-               if ((cellport.first->type != "$mux" && cellport.first->type != "$pmux" && cellport.first->type != "$safe_pmux") || cellport.second != "\\Y") {
-                       log("  unexpected cell type %s (%s) found in state selection tree.\n",
-                                       cellport.first->type.c_str(), cellport.first->name.c_str());
+               RTLIL::Cell *cell = module->cells.at(cellport.first);
+               if ((cell->type != "$mux" && cell->type != "$pmux" && cell->type != "$safe_pmux") || cellport.second != "\\Y") {
+                       log("  unexpected cell type %s (%s) found in state selection tree.\n", cell->type.c_str(), cell->name.c_str());
                        return false;
                }
-               RTLIL::SigSpec sig_a = assign_map(cellport.first->connections["\\A"]);
-               RTLIL::SigSpec sig_b = assign_map(cellport.first->connections["\\B"]);
-               RTLIL::SigSpec sig_s = assign_map(cellport.first->connections["\\S"]);
+               RTLIL::SigSpec sig_a = assign_map(cell->connections["\\A"]);
+               RTLIL::SigSpec sig_b = assign_map(cell->connections["\\B"]);
+               RTLIL::SigSpec sig_s = assign_map(cell->connections["\\S"]);
                if (reset_state && RTLIL::SigSpec(*reset_state).is_fully_undef())
                        do {
                                if (sig_a.is_fully_def())
@@ -192,17 +192,18 @@ static void extract_fsm(RTLIL::Wire *wire)
        std::set<sig2driver_entry_t> cellport_list;
        sig2driver.find(dff_out, cellport_list);
        for (auto &cellport : cellport_list) {
-               if ((cellport.first->type != "$dff" && cellport.first->type != "$adff") || cellport.second != "\\Q")
+               RTLIL::Cell *cell = module->cells.at(cellport.first);
+               if ((cell->type != "$dff" && cell->type != "$adff") || cellport.second != "\\Q")
                        continue;
-               log("  found %s cell for state register: %s\n", cellport.first->type.c_str(), cellport.first->name.c_str());
-               RTLIL::SigSpec sig_q = assign_map(cellport.first->connections["\\Q"]);
-               RTLIL::SigSpec sig_d = assign_map(cellport.first->connections["\\D"]);
-               clk = cellport.first->connections["\\CLK"];
-               clk_polarity = cellport.first->parameters["\\CLK_POLARITY"].as_bool();
-               if (cellport.first->type == "$adff") {
-                       arst = cellport.first->connections["\\ARST"];
-                       arst_polarity = cellport.first->parameters["\\ARST_POLARITY"].as_bool();
-                       reset_state = cellport.first->parameters["\\ARST_VALUE"];
+               log("  found %s cell for state register: %s\n", cell->type.c_str(), cell->name.c_str());
+               RTLIL::SigSpec sig_q = assign_map(cell->connections["\\Q"]);
+               RTLIL::SigSpec sig_d = assign_map(cell->connections["\\D"]);
+               clk = cell->connections["\\CLK"];
+               clk_polarity = cell->parameters["\\CLK_POLARITY"].as_bool();
+               if (cell->type == "$adff") {
+                       arst = cell->connections["\\ARST"];
+                       arst_polarity = cell->parameters["\\ARST_POLARITY"].as_bool();
+                       reset_state = cell->parameters["\\ARST_VALUE"];
                }
                sig_q.replace(dff_out, sig_d, &dff_in);
                break;
@@ -235,9 +236,10 @@ static void extract_fsm(RTLIL::Wire *wire)
        cellport_list.clear();
        sig2trigger.find(dff_out, cellport_list);
        for (auto &cellport : cellport_list) {
-               RTLIL::SigSpec sig_a = assign_map(cellport.first->connections["\\A"]);
-               RTLIL::SigSpec sig_b = assign_map(cellport.first->connections["\\B"]);
-               RTLIL::SigSpec sig_y = assign_map(cellport.first->connections["\\Y"]);
+               RTLIL::Cell *cell = module->cells.at(cellport.first);
+               RTLIL::SigSpec sig_a = assign_map(cell->connections["\\A"]);
+               RTLIL::SigSpec sig_b = assign_map(cell->connections["\\B"]);
+               RTLIL::SigSpec sig_y = assign_map(cell->connections["\\Y"]);
                if (cellport.second == "\\A" && !sig_b.is_fully_const())
                        continue;
                if (cellport.second == "\\B" && !sig_a.is_fully_const())
@@ -307,13 +309,14 @@ static void extract_fsm(RTLIL::Wire *wire)
        cellport_list.clear();
        sig2driver.find(ctrl_out, cellport_list);
        for (auto &cellport : cellport_list) {
-               RTLIL::SigSpec port_sig = assign_map(cellport.first->connections[cellport.second]);
+               RTLIL::Cell *cell = module->cells.at(cellport.first);
+               RTLIL::SigSpec port_sig = assign_map(cell->connections[cellport.second]);
                RTLIL::SigSpec unconn_sig = port_sig.extract(ctrl_out);
                RTLIL::Wire *unconn_wire = new RTLIL::Wire;
                unconn_wire->name = stringf("$fsm_unconnect$%s$%d", log_signal(unconn_sig), RTLIL::autoidx++);
                unconn_wire->width = unconn_sig.width;
                module->wires[unconn_wire->name] = unconn_wire;
-               port_sig.replace(unconn_sig, RTLIL::SigSpec(unconn_wire), &cellport.first->connections[cellport.second]);
+               port_sig.replace(unconn_sig, RTLIL::SigSpec(unconn_wire), &cell->connections[cellport.second]);
        }
 }
 
@@ -361,13 +364,13 @@ struct FsmExtractPass : public Pass {
                                        if (ct.cell_output(cell_it.second->type, conn_it.first)) {
                                                RTLIL::SigSpec sig = conn_it.second;
                                                assign_map.apply(sig);
-                                               sig2driver.insert(sig, sig2driver_entry_t(cell_it.second, conn_it.first));
+                                               sig2driver.insert(sig, sig2driver_entry_t(cell_it.first, conn_it.first));
                                        }
                                        if (ct.cell_input(cell_it.second->type, conn_it.first) && cell_it.second->connections.count("\\Y") > 0 &&
                                                        cell_it.second->connections["\\Y"].width == 1 && (conn_it.first == "\\A" || conn_it.first == "\\B")) {
                                                RTLIL::SigSpec sig = conn_it.second;
                                                assign_map.apply(sig);
-                                               sig2trigger.insert(sig, sig2driver_entry_t(cell_it.second, conn_it.first));
+                                               sig2trigger.insert(sig, sig2driver_entry_t(cell_it.first, conn_it.first));
                                        }
                                }
 
index dbe1804ee5d50ee88c869b8b2dfc934f4d91cafe..183d6757e1cf54cce91ec51a48d0b11a76aa3f9d 100644 (file)
@@ -35,7 +35,7 @@ static int count_rm_cells, count_rm_wires;
 static void rmunused_module_cells(RTLIL::Module *module, bool verbose)
 {
        SigMap assign_map(module);
-       std::set<RTLIL::Cell*> queue, unused;
+       std::set<RTLIL::Cell*, RTLIL::sort_by_name<RTLIL::Cell>> queue, unused;
 
        SigSet<RTLIL::Cell*> wire2driver;
        for (auto &it : module->cells) {
@@ -66,7 +66,7 @@ static void rmunused_module_cells(RTLIL::Module *module, bool verbose)
 
        while (queue.size() > 0)
        {
-               std::set<RTLIL::Cell*> new_queue;
+               std::set<RTLIL::Cell*, RTLIL::sort_by_name<RTLIL::Cell>> new_queue;
                for (auto cell : queue)
                        unused.erase(cell);
                for (auto cell : queue) {