Access Of Class variables in simvision

how to access class variables in NCsim simvision 10.2. Any idea regarding -shm_dyn_probe … ?

Hi Nag,

One way to do that is to run the following Tcl procedure upon entering Simvision:

probe -create -shm worklib.uvm_pkg::uvm_top -all -depth all
uvm_phase -stop_at run
run

This will probe the UVM component hierarchy, sets a breakpoint at just before starting the run phase, and runs until that point. The reason for this is that the hierarchy does not exist until it is built (i.e. execute the build phase). Once the run has moved past the pre-run phases, you can restore your session or do whatever you want in the Simvision environment, and continue running the rest of the simulation.

In reply to manning999:

Incase of VCS tool what should i do to get it??