Can I visually see the scheduling and execution of events in different scheduling regoins(active,inactive, NBA,observed, etc)?

Im finding hard to understand Scheduling Semantics of SystemVerilog. I want to track how each event/process is scheduled and executed(how event/process goes from pre-poned region to post-poned region). Is there any possibility that I can visually see this using any design/verification tool?

In reply to Vasu_22:

There are tools that can show you the relative ordering of signal changes, but I’m not aware of any tool that shows how events get scheduled.

One problem with obtaining this information is that “execution” only happens in the active region. All of the other regions are just queues waiting to become active.

I would concentrate on active, inactive, and NBA regions only.

In reply to dave_59:

Thank You Sir