We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0bac99a + 75a5d13 commit 233188eCopy full SHA for 233188e
ckt_cmds.cc
@@ -297,6 +297,17 @@ static int process_cell_map (int argc, char **argv)
297
else {
298
printf ("%s: cell pass already executed; skipped\n", argv[0]);
299
}
300
+ // display cell stats both on a fresh run and when called again
301
+ list_t *l;
302
+ l = cp->getUsedCells ();
303
+ if (list_length (l) > 0) {
304
+ printf ("INFO: the following cells are used in the design:\n");
305
+ for (listitem_t *li = list_first (l); li; li = list_next (li)) {
306
+ printf (" %s\n", ((Process *)list_value (li))->getName());
307
+ }
308
309
+ printf (" Number of unique cells: %d ", list_length (l));
310
+
311
F.cell_map = 1;
312
return LISP_RET_TRUE;
313
0 commit comments