mirror of
https://github.com/YosysHQ/yosys
synced 2025-11-06 22:36:05 +00:00
Add timing stats for IdString garbage collection
This commit is contained in:
parent
cd47727c8b
commit
7371388e1d
5 changed files with 22 additions and 0 deletions
|
|
@ -709,6 +709,8 @@ int main(int argc, char **argv)
|
|||
total_ns += it.second->runtime_ns + 1;
|
||||
timedat.insert(make_tuple(it.second->runtime_ns + 1, it.second->call_counter, it.first));
|
||||
}
|
||||
timedat.insert(make_tuple(RTLIL::OwningIdString::garbage_collection_ns() + 1,
|
||||
RTLIL::OwningIdString::garbage_collection_count(), "id_gc"));
|
||||
|
||||
if (timing_details)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue