From aca4d44a40ec8863978d02f77378817923629f58 Mon Sep 17 00:00:00 2001 From: "Emil J. Tywoniak" Date: Mon, 10 Feb 2025 16:24:42 +0100 Subject: [PATCH] abstract: improve debug logs for -state and -value --- passes/cmds/abstract.cc | 36 +++++++++++++++++++++++++++--------- 1 file changed, 27 insertions(+), 9 deletions(-) diff --git a/passes/cmds/abstract.cc b/passes/cmds/abstract.cc index d770a8575..55f0f4bcd 100644 --- a/passes/cmds/abstract.cc +++ b/passes/cmds/abstract.cc @@ -2,6 +2,7 @@ #include "kernel/celltypes.h" #include "kernel/ff.h" #include "kernel/ffinit.h" +#include USING_YOSYS_NAMESPACE PRIVATE_NAMESPACE_BEGIN @@ -47,28 +48,40 @@ bool abstract_state_port(FfData& ff, SigSpec& port_sig, std::set offsets, E return true; } -pool gather_selected_reps(Module* mod, SigMap& sigmap) { - pool selected_representatives; +using SelReason=std::variant; +dict> gather_selected_reps(Module* mod, SigMap& sigmap) { + dict> selected_reps; // Collect reps for all wire bits of selected wires for (auto wire : mod->selected_wires()) for (auto bit : sigmap(wire)) - selected_representatives.insert(bit); + selected_reps.insert(bit).first->second.push_back(wire); // Collect reps for all output wire bits of selected cells for (auto cell : mod->selected_cells()) for (auto conn : cell->connections()) if (cell->output(conn.first)) for (auto bit : conn.second.bits()) - selected_representatives.insert(sigmap(bit)); - return selected_representatives; + selected_reps.insert(sigmap(bit)).first->second.push_back(cell); + return selected_reps; +} + +void explain_selections(const std::vector& reasons) { + for (std::variant reason : reasons) { + if (Cell** cell_reason = std::get_if(&reason)) + log_debug("\tcell %s\n", (*cell_reason)->name.c_str()); + else if (Wire** wire_reason = std::get_if(&reason)) + log_debug("\twire %s\n", (*wire_reason)->name.c_str()); + else + log_assert(false && "insane reason variant\n"); + } } unsigned int abstract_state(Module* mod, EnableLogic enable) { CellTypes ct; ct.setup_internals_ff(); SigMap sigmap(mod); - pool selected_representatives = gather_selected_reps(mod, sigmap); + dict> selected_reps = gather_selected_reps(mod, sigmap); unsigned int changed = 0; std::vector ffs; @@ -85,8 +98,11 @@ unsigned int abstract_state(Module* mod, EnableLogic enable) { // A bit inefficient std::set offsets_to_abstract; for (auto bit : ff.sig_q) - if (selected_representatives.count(sigmap(bit))) + if (selected_reps.count(sigmap(bit))) { + log_debug("Abstracting state for bit %s due to selections:\n", log_signal(bit)); + explain_selections(selected_reps.at(sigmap(bit))); offsets_to_abstract.insert(bit.offset); + } if (offsets_to_abstract.empty()) continue; @@ -129,7 +145,7 @@ bool abstract_value_port(Module* mod, Cell* cell, std::set offsets, IdStrin unsigned int abstract_value(Module* mod, EnableLogic enable) { SigMap sigmap(mod); - pool selected_representatives = gather_selected_reps(mod, sigmap); + dict> selected_reps = gather_selected_reps(mod, sigmap); unsigned int changed = 0; std::vector cells_snapshot = mod->cells(); for (auto cell : cells_snapshot) { @@ -137,7 +153,9 @@ unsigned int abstract_value(Module* mod, EnableLogic enable) { if (cell->output(conn.first)) { std::set offsets_to_abstract; for (int i = 0; i < conn.second.size(); i++) { - if (selected_representatives.count(sigmap(conn.second[i]))) { + if (selected_reps.count(sigmap(conn.second[i]))) { + log_debug("Abstracting value for bit %s due to selections:\n", log_signal(conn.second[i])); + explain_selections(selected_reps.at(sigmap(conn.second[i]))); offsets_to_abstract.insert(i); } }