Skip to content

Commit 233188e

Browse files
authored
Merge pull request #5 from olerichter/cell_info
list all cells used
2 parents 0bac99a + 75a5d13 commit 233188e

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

ckt_cmds.cc

+11
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,17 @@ static int process_cell_map (int argc, char **argv)
297297
else {
298298
printf ("%s: cell pass already executed; skipped\n", argv[0]);
299299
}
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+
300311
F.cell_map = 1;
301312
return LISP_RET_TRUE;
302313
}

0 commit comments

Comments
 (0)