From: N. Engelhardt Date: Wed, 1 Jun 2022 14:01:07 +0000 (+0200) Subject: also make 'stat' save counts to scratchpad X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=61b05051e10e4a203eb13e67ccfc72520e8ca111;p=yosys.git also make 'stat' save counts to scratchpad --- diff --git a/passes/cmds/stat.cc b/passes/cmds/stat.cc index fffdda48e..c858c8631 100644 --- a/passes/cmds/stat.cc +++ b/passes/cmds/stat.cc @@ -381,6 +381,15 @@ struct StatPass : public Pass { log("\n"); data.log_data(top_mod->name, true); + design->scratchpad_set_int("stat.num_wires", data.num_wires); + design->scratchpad_set_int("stat.num_wire_bits", data.num_wire_bits); + design->scratchpad_set_int("stat.num_pub_wires", data.num_pub_wires); + design->scratchpad_set_int("stat.num_pub_wire_bits", data.num_pub_wire_bits); + design->scratchpad_set_int("stat.num_memories", data.num_memories); + design->scratchpad_set_int("stat.num_memory_bits", data.num_memory_bits); + design->scratchpad_set_int("stat.num_processes", data.num_processes); + design->scratchpad_set_int("stat.num_cells", data.num_cells); + design->scratchpad_set_int("stat.area", data.area); } log("\n");