From: Clifford Wolf Date: Fri, 15 Aug 2014 00:40:46 +0000 (+0200) Subject: More idstring sort_by_* helpers and fixed tpl ordering in techmap X-Git-Tag: yosys-0.4~256 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ca8711644975c128d45fd8e9434439c1266c00ac;p=yosys.git More idstring sort_by_* helpers and fixed tpl ordering in techmap --- diff --git a/kernel/rtlil.h b/kernel/rtlil.h index 3a0f0ff8c..2c4b26f53 100644 --- a/kernel/rtlil.h +++ b/kernel/rtlil.h @@ -255,12 +255,24 @@ namespace RTLIL return log_id(str); } - template struct sort_by_name { + template struct sort_by_name_id { bool operator()(T *a, T *b) const { return a->name < b->name; } }; + template struct sort_by_name_str { + bool operator()(T *a, T *b) const { + return strcmp(a->name.c_str(), b->name.c_str()) < 0; + } + }; + + struct sort_by_id_str { + bool operator()(RTLIL::IdString a, RTLIL::IdString b) const { + return strcmp(a.c_str(), b.c_str()) < 0; + } + }; + // 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); diff --git a/passes/fsm/fsm_expand.cc b/passes/fsm/fsm_expand.cc index 77821326d..d13643911 100644 --- a/passes/fsm/fsm_expand.cc +++ b/passes/fsm/fsm_expand.cc @@ -30,12 +30,12 @@ struct FsmExpand RTLIL::Module *module; RTLIL::Cell *fsm_cell; SigMap assign_map; - SigSet> sig2driver, sig2user; + SigSet> sig2driver, sig2user; CellTypes ct; - std::set> merged_set; - std::set> current_set; - std::set> no_candidate_set; + std::set> merged_set; + std::set> current_set; + std::set> no_candidate_set; bool already_optimized; int limit_transitions; diff --git a/passes/opt/opt_clean.cc b/passes/opt/opt_clean.cc index c620531e3..d47e4513e 100644 --- a/passes/opt/opt_clean.cc +++ b/passes/opt/opt_clean.cc @@ -34,7 +34,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> queue, unused; + std::set> queue, unused; SigSet wire2driver; for (auto &it : module->cells_) { @@ -65,7 +65,7 @@ static void rmunused_module_cells(RTLIL::Module *module, bool verbose) while (queue.size() > 0) { - std::set> new_queue; + std::set> new_queue; for (auto cell : queue) unused.erase(cell); for (auto cell : queue) { diff --git a/passes/techmap/techmap.cc b/passes/techmap/techmap.cc index a7f91e862..59173393c 100644 --- a/passes/techmap/techmap.cc +++ b/passes/techmap/techmap.cc @@ -251,7 +251,7 @@ struct TechmapWorker } bool techmap_module(RTLIL::Design *design, RTLIL::Module *module, RTLIL::Design *map, std::set &handled_cells, - const std::map> &celltypeMap, bool in_recursion) + const std::map> &celltypeMap, bool in_recursion) { std::string mapmsg_prefix = in_recursion ? "Recursively mapping" : "Mapping"; @@ -898,7 +898,7 @@ struct TechmapPass : public Pass { } map->modules_.swap(modules_new); - std::map> celltypeMap; + std::map> celltypeMap; for (auto &it : map->modules_) { if (it.second->attributes.count("\\techmap_celltype") && !it.second->attributes.at("\\techmap_celltype").bits.empty()) { char *p = strdup(it.second->attributes.at("\\techmap_celltype").decode_string().c_str()); @@ -960,7 +960,7 @@ struct FlattenPass : public Pass { TechmapWorker worker; worker.flatten_mode = true; - std::map> celltypeMap; + std::map> celltypeMap; for (auto &it : design->modules_) celltypeMap[it.first].insert(it.first);