The "Find Scope..." option in Synopsys Verdi doesn't seem to be able to find anything other than top level modules. I have the Scope Type set to Module and I have tried a bunch of different variations:
1) the module name with the * wildcard before and/or after: this will find top level modules no problem, but not anything lower.
2) The path to the module separated by .
3) The path to the module separated by /
4) Variations 2 & 3 with the * wildcard.
There must be something simple I am missing, but what is it?
By default, Verdi treats modules compiled using
-y
as "library" modules, and they are not visible in the nTrace GUI.The solution is to use the
verdi -ssy
command line option to gain visibility into the library modules.Consider this scenario. I have 3 Verilog files:
If I launch Verdi with the following command, it will compile cleanly, but the submodules (
foo
andbar
) will not be visible in the GUI. Only the top-level modules are visible:To gain visibility, add the
-ssy
option:I can see all modules in the hierarchy.
tb.v:
foo.v:
bar.v: