From 3d95047ce2c08e60894b49832f1e1ffc6c599a0f Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Mon, 25 Nov 2013 21:08:34 +0100 Subject: Bugfixes in new "stat" command --- passes/cmds/stat.cc | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'passes') diff --git a/passes/cmds/stat.cc b/passes/cmds/stat.cc index cd222a9b..83477007 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; } -- cgit v1.2.3