Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

list all cells used #5

Merged
merged 1 commit into from
Jan 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions ckt_cmds.cc
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,17 @@ static int process_cell_map (int argc, char **argv)
else {
printf ("%s: cell pass already executed; skipped\n", argv[0]);
}
// display cell stats both on a fresh run and when called again
list_t *l;
l = cp->getUsedCells ();
if (list_length (l) > 0) {
printf ("INFO: the following cells are used in the design:\n");
for (listitem_t *li = list_first (l); li; li = list_next (li)) {
printf (" %s\n", ((Process *)list_value (li))->getName());
}
}
printf (" Number of unique cells: %d ", list_length (l));

F.cell_map = 1;
return LISP_RET_TRUE;
}
Expand Down