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.
uvm_bottomup_phase | |||||
Virtual base class for function phases that operate bottom-up. | |||||
Class Hierarchy | |||||
| |||||
Class Declaration | |||||
| |||||
Methods | |||||
new | Create a new instance of a bottom-up phase. | ||||
traverse | Traverses the component tree in bottom-up order, calling execute for each component. | ||||
execute | Executes the bottom-up phase phase for the component comp. |
protected virtual function void execute( uvm_component comp, uvm_phase phase )
Executes the bottom-up phase phase for the component comp.
The uvm_object class is the base class for all UVM data and hierarchical classes.
virtual class uvm_object extends uvm_void
This base class defines everything about a phase: behavior, state, and context.
class uvm_phase extends uvm_object
Virtual base class for function phases that operate bottom-up.
virtual class uvm_bottomup_phase extends uvm_phase
Create a new instance of a bottom-up phase.
function new( string name )
Traverses the component tree in bottom-up order, calling execute for each component.
virtual function void traverse( uvm_component comp, uvm_phase phase, uvm_phase_state state )
Executes the bottom-up phase phase for the component comp.
protected virtual function void execute( uvm_component comp, uvm_phase phase )