3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-04 16:44:08 +00:00

opt_expr: neater variable names, avoid shadowing

This commit is contained in:
Emil J. Tywoniak 2025-03-20 12:31:59 +01:00
parent 89b12e4898
commit 0a15a23e8f

View file

@ -491,11 +491,11 @@ void replace_const_cells(RTLIL::Design *design, RTLIL::Module *module, bool cons
}
std::vector<Cell*> module_cells = module->cells();
auto iterator = [&](auto&& replace_cell) {
auto visitor = [&](auto&& do_action) {
if (sort_fails >= effort) {
for (auto cell : module_cells)
if (design->selected(module, cell) && yosys_celltypes.cell_evaluable(cell->type))
replace_cell(cell);
do_action(cell);
} else {
TopoSort<RTLIL::Cell*, RTLIL::IdString::compare_ptr_by_name<RTLIL::Cell>> cells;
dict<RTLIL::SigBit, Cell*> outbit_to_cell;
@ -529,11 +529,11 @@ void replace_const_cells(RTLIL::Design *design, RTLIL::Module *module, bool cons
effort, log_id(module));
}
for (auto cell : cells.sorted) {
replace_cell(cell);
do_action(cell);
}
}
};
iterator([&](auto& cell)
visitor([&](auto& cell)
{
#define ACTION_DO(_p_, _s_) do { cover("opt.opt_expr.action_" S__LINE__); replace_cell(assign_map, module, cell, input.as_string(), _p_, _s_); goto next_cell; } while (0)
#define ACTION_DO_Y(_v_) ACTION_DO(ID::Y, RTLIL::SigSpec(RTLIL::State::S ## _v_))