From: Clifford Wolf Date: Mon, 25 Nov 2013 20:08:34 +0000 (+0100) Subject: Bugfixes in new "stat" command X-Git-Tag: yosys-0.2.0~296 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3d95047ce2c08e60894b49832f1e1ffc6c599a0f;p=yosys.git Bugfixes in new "stat" command --- diff --git a/passes/cmds/stat.cc b/passes/cmds/stat.cc index cd222a9b4..834770071 100644 --- a/passes/cmds/stat.cc +++ b/passes/cmds/stat.cc @@ -97,13 +97,6 @@ namespace num_cells_by_type[it.second->type]++; } - for (auto &it : mod->cells) { - if (!design->selected(mod, it.second)) - continue; - num_cells++; - num_cells_by_type[it.second->type]++; - } - for (auto &it : mod->processes) { if (!design->selected(mod, it.second)) continue; @@ -136,6 +129,7 @@ namespace if (mod_stat.count(it.first) > 0) { log(" %*s%-*s %6d\n", 2*level, "", 26-2*level, RTLIL::id2cstr(it.first), it.second); mod_data = mod_data + hierarchy_worker(mod_stat, it.first, level+1) * it.second; + mod_data.num_cells -= it.second; } else { mod_data.num_cells_by_type[it.first] += it.second; }