Class uvm_pkg::uvm_bottomup_phase
Inheritance Diagram of uvm_bottomup_phase
Constructors
- new(string name)
Function
new
Create a new instance of a bottom-up phase.
- Parameters:
name (string)
Functions
- traverse(uvm_component comp, uvm_phase phase, uvm_phase_state state)
Function
traverse
Traverses the component tree in bottom-up order, calling execute for each component.
- Parameters:
comp (uvm_component)
phase (uvm_phase)
state (uvm_phase_state)
- execute(uvm_component comp, uvm_phase phase)
Function
execute
Executes the bottom-up phase phase for the component comp .
- Parameters:
comp (uvm_component)
phase (uvm_phase)
×
Copyright 2007-2011 Mentor Graphics Corporation Copyright 2007-2010 Cadence Design Systems, Inc. Copyright 2010 Synopsys, Inc. All Rights Reserved Worldwide
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Class
uvm_bottomup_phase
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.