Class uvm_bottomup_phase
Constructors
Functions
- virtual function void traverse ( uvm_component comp, uvm_phase phase, uvm_phase_state state ) [source]
Traverses the component tree in bottom-up order, calling execute for each component.
- virtual function void execute ( uvm_component comp, uvm_phase phase ) [source]
Executes the bottom-up phase phase for the component comp .
×
Virtual base class for function phases that operate bottom-up. The pure virtual function execute() is called for each component. This is the default traversal so is included only for naming.
A bottom-up function phase completes when the execute() method has been called and returned on all applicable components in the hierarchy.