Actually, my Design has got VHDL top, other VHDL sub-modules and a verilog sub-module instantiated in it. I try to dump the signals from my UVM based SVerilog TB. But the waveform only shows the TB, instantiated DUT VHDL Top in it and Design verilog sub-module in hierarchy while all the other VHDL design modules are not shown in DUT hierarchy. Could you suggest me why the Design VHDL sub-modules are not showing in design hierarchy in waveform, while they are showing in coverage.
I dump the signals in TB top file through following command:
initial
begin
$dumpfile("dump.vcd");
$dumpvars();
end