uvm_component¶
-
class
uvm.base.uvm_component.VerbositySetting[source]¶ Bases:
objectThe verbosity settings may have a specific phase to start at. We will do this work in the phase_started callback.
- ivar UVMComponent comp
Component related to the settings
- ivar UVMPhase phase
Phase in which settings apply.
- ivar int id
ID for verbosity setting
- ivar int offset
Time offset for verbosity setting
- ivar int verbosity
Verbosity level of the setting.
-
class
uvm.base.uvm_component.uvm_cmdline_parsed_arg_t[source]¶ Bases:
objectClass used to return arguments and associated data parsed from cmd line arguments. These are usually plusargs given with +ARG_NAME=ARG_VALUE
-
class
uvm.base.uvm_component.UVMComponent(name, parent)[source]¶ Bases:
uvm.base.uvm_report_object.UVMReportObjectBase class for defining UVM components The uvm_component class is the root base class for UVM components. In addition to the features inherited from
UVMObjectandUVMReportObject, uvm_component provides the following interfaces:- Hierarchy:
provides methods for searching and traversing the component hierarchy.
- Phasing
defines a phased test flow that all components follow, with a group of standard phase methods and an API for custom phases and multiple independent phasing domains to mirror DUT behavior e.g. power
- Reporting
provides a convenience interface to the
UVMReportHandler. All messages, warnings, and errors are processed through this interface.- Transaction recording
provides methods for recording the transactions produced or consumed by the component to a transaction database (vendor specific).
- Factory
provides a convenience interface to the
UVMFactory. The factory is used to create new components and other objects based on type-wide and instance-specific configuration.
The
UVMComponentis automatically seeded during construction using UVM seeding, if enabled. All other objects must be manually reseeded, if appropriate. SeeUVMObject.reseedfor more information.Most local methods within the class are prefixed with m_, indicating they are not user-level methods.
- Variables
print_config_matches (bool) – Setting this static variable causes
UVMConfigDb.getto print info about matching configuration settings as they are being applied.tr_database (UVMTrDatabase) – Specifies the
UVMTrDatabaseobject to use forbegin_trand other methods in the <Recording Interface>. Default isUVMCoreService.get_default_tr_database.
-
print_config_matches= False¶
-
m_time_settings: List[uvm.base.uvm_component.VerbositySetting] = []¶
-
get_parent()[source]¶ Function: get_parent
Returns a handle to this component’s parent, or
Noneif it has no parent. :returns: Parent of this component. :rtype: UVMComponent
-
get_full_name() → str[source]¶ Returns the full hierarchical name of this object. The default implementation concatenates the hierarchical name of the parent, if any, with the leaf name of this object, as given by
UVMObject.get_name.- Returns
Full hierarchical name of this component.
- Return type
-
get_children(children)[source]¶ This function populates the end of the
childrenarray with the list of this component’s children.array = [] my_comp.get_children(array) for comp in array: do_something(comp)
- Parameters
children (list) – List into which child components are appended
-
get_child(name)[source]¶ - Parameters
name (str) – Name of desired child
- Returns
Child component matching name.
- Return type
-
get_first_child()[source]¶ These methods are used to iterate through this component’s children, if any. For example, given a component with an object handle,
comp, the following code callsUVMObject.printfor each child:name = "" child = comp.get_first_child() while child is not None: child.print() child = comp.get_next_child()
- Returns
First child component.
- Return type
-
set_name(name)[source]¶ Renames this component to
nameand recalculates all descendants’ full names. This is an internal function for now.- Parameters
name (str) – New name
-
lookup(name)[source]¶ Looks for a component with the given hierarchical
namerelative to this component. If the givennameis preceded with a ‘.’ (dot), then the search begins relative to the top level (absolute lookup). The handle of the matching component is returned, elseNone. The name must not contain wildcards.- Parameters
name –
- Returns
Matching component, or None is no match is found.
- Return type
-
get_depth() → int[source]¶ Returns the component’s depth from the root level. uvm_top has a depth of 0. The test and any other top level components have a depth of 1, and so on.
- Returns
The component’s depth from the root level
- Return type
-
build_phase(phase)[source]¶ The
UVMBuildPhasephase implementation method.Any override should call super().build_phase(phase) to execute the automatic configuration of fields registered in the component by calling
apply_config_settings. To turn off automatic configuration for a component, do not call super().build_phase(phase).This method should never be called directly.
- Parameters
phase (UVMPhase) –
-
build()[source]¶ For backward compatibility the base
build_phasemethod callsbuild.
-
connect_phase(phase)[source]¶ The
UVMConnectPhasephase implementation method.This method should never be called directly.
- Parameters
phase (UVMPhase) –
-
end_of_elaboration_phase(phase)[source]¶ The
UVMEndOfElaborationPhasephase implementation method.This method should never be called directly.
- Parameters
phase (UVMPhase) –
-
start_of_simulation_phase(phase)[source]¶ The
UVMStartOfSimulationPhasephase implementation method.This method should never be called directly.
- Parameters
phase (UVMPhase) –
-
start_of_simulation()[source]¶ For backward compatibility the base
start_of_simulation_phasemethod callsstart_of_simulation. extern virtual function void start_of_simulation()
-
async
run_phase(phase)[source]¶ Task: run_phase
The
UVMRunPhasephase implementation method.This task returning or not does not indicate the end or persistence of this phase. Thus the phase will automatically end once all objections are dropped using ~phase.drop_objection()~.
Any processes forked by this task continue to run after the task returns, but they will be killed once the phase ends.
The run_phase task should never be called directly.
-
async
pre_reset_phase(phase)[source]¶ Task: pre_reset_phase
The
uvm_pre_reset_phasephase implementation method.This task returning or not does not indicate the end or persistence of this phase. It is necessary to raise an objection using ~phase.raise_objection()~ to cause the phase to persist. Once all components have dropped their respective objection using ~phase.drop_objection()~, or if no components raises an objection, the phase is ended.
Any processes forked by this task continue to run after the task returns, but they will be killed once the phase ends.
This method should not be called directly. :param phase:
-
async
reset_phase(phase)[source]¶ Task: reset_phase
The
uvm_reset_phasephase implementation method.This task returning or not does not indicate the end or persistence of this phase. It is necessary to raise an objection using ~phase.raise_objection()~ to cause the phase to persist. Once all components have dropped their respective objection using ~phase.drop_objection()~, or if no components raises an objection, the phase is ended.
Any processes forked by this task continue to run after the task returns, but they will be killed once the phase ends.
This method should not be called directly. :param phase:
-
async
post_reset_phase(phase)[source]¶ Task: post_reset_phase
The
uvm_post_reset_phasephase implementation method.This task returning or not does not indicate the end or persistence of this phase. It is necessary to raise an objection using ~phase.raise_objection()~ to cause the phase to persist. Once all components have dropped their respective objection using ~phase.drop_objection()~, or if no components raises an objection, the phase is ended.
Any processes forked by this task continue to run after the task returns, but they will be killed once the phase ends.
This method should not be called directly. :param phase:
-
async
pre_configure_phase(phase)[source]¶ Task: pre_configure_phase
The
uvm_pre_configure_phasephase implementation method.This task returning or not does not indicate the end or persistence of this phase. It is necessary to raise an objection using ~phase.raise_objection()~ to cause the phase to persist. Once all components have dropped their respective objection using ~phase.drop_objection()~, or if no components raises an objection, the phase is ended.
Any processes forked by this task continue to run after the task returns, but they will be killed once the phase ends.
This method should not be called directly. :param phase:
-
async
configure_phase(phase)[source]¶ Task: configure_phase
The
uvm_configure_phasephase implementation method.This task returning or not does not indicate the end or persistence of this phase. It is necessary to raise an objection using ~phase.raise_objection()~ to cause the phase to persist. Once all components have dropped their respective objection using ~phase.drop_objection()~, or if no components raises an objection, the phase is ended.
Any processes forked by this task continue to run after the task returns, but they will be killed once the phase ends.
This method should not be called directly. :param phase:
-
async
post_configure_phase(phase)[source]¶ Task: post_configure_phase
The
uvm_post_configure_phasephase implementation method.This task returning or not does not indicate the end or persistence of this phase. It is necessary to raise an objection using ~phase.raise_objection()~ to cause the phase to persist. Once all components have dropped their respective objection using ~phase.drop_objection()~, or if no components raises an objection, the phase is ended.
Any processes forked by this task continue to run after the task returns, but they will be killed once the phase ends.
This method should not be called directly. :param phase:
-
async
pre_main_phase(phase)[source]¶ Task: pre_main_phase
The
uvm_pre_main_phasephase implementation method.This task returning or not does not indicate the end or persistence of this phase. It is necessary to raise an objection using ~phase.raise_objection()~ to cause the phase to persist. Once all components have dropped their respective objection using ~phase.drop_objection()~, or if no components raises an objection, the phase is ended.
Any processes forked by this task continue to run after the task returns, but they will be killed once the phase ends.
This method should not be called directly. :param phase:
-
async
main_phase(phase)[source]¶ Task: main_phase
The
uvm_main_phasephase implementation method.This task returning or not does not indicate the end or persistence of this phase. It is necessary to raise an objection using ~phase.raise_objection()~ to cause the phase to persist. Once all components have dropped their respective objection using ~phase.drop_objection()~, or if no components raises an objection, the phase is ended.
Any processes forked by this task continue to run after the task returns, but they will be killed once the phase ends.
This method should not be called directly. :param phase:
-
async
post_main_phase(phase)[source]¶ Task: post_main_phase
The
uvm_post_main_phasephase implementation method.This task returning or not does not indicate the end or persistence of this phase. It is necessary to raise an objection using ~phase.raise_objection()~ to cause the phase to persist. Once all components have dropped their respective objection using ~phase.drop_objection()~, or if no components raises an objection, the phase is ended.
Any processes forked by this task continue to run after the task returns, but they will be killed once the phase ends.
This method should not be called directly. :param phase:
-
async
pre_shutdown_phase(phase)[source]¶ Task: pre_shutdown_phase
The
uvm_pre_shutdown_phasephase implementation method.This task returning or not does not indicate the end or persistence of this phase. It is necessary to raise an objection using ~phase.raise_objection()~ to cause the phase to persist. Once all components have dropped their respective objection using ~phase.drop_objection()~, or if no components raises an objection, the phase is ended.
Any processes forked by this task continue to run after the task returns, but they will be killed once the phase ends.
This method should not be called directly. :param phase:
-
async
shutdown_phase(phase)[source]¶ Task: shutdown_phase
The
uvm_shutdown_phasephase implementation method.This task returning or not does not indicate the end or persistence of this phase. It is necessary to raise an objection using ~phase.raise_objection()~ to cause the phase to persist. Once all components have dropped their respective objection using ~phase.drop_objection()~, or if no components raises an objection, the phase is ended.
Any processes forked by this task continue to run after the task returns, but they will be killed once the phase ends.
This method should not be called directly. :param phase:
-
async
post_shutdown_phase(phase)[source]¶ Task: post_shutdown_phase
The
uvm_post_shutdown_phasephase implementation method.This task returning or not does not indicate the end or persistence of this phase. It is necessary to raise an objection using ~phase.raise_objection()~ to cause the phase to persist. Once all components have dropped their respective objection using ~phase.drop_objection()~, or if no components raises an objection, the phase is ended.
Any processes forked by this task continue to run after the task returns, but they will be killed once the phase ends.
This method should not be called directly. :param phase:
-
extract_phase(phase)[source]¶ The
UVMExtractPhasephase implementation method.This method should never be called directly. :param phase:
-
check_phase(phase)[source]¶ The
UVMCheckPhasephase implementation method.This method should never be called directly. :param phase:
-
report_phase(phase)[source]¶ The
UVMReportPhasephase implementation method.This method should never be called directly. :param phase:
-
final_phase(phase)[source]¶ The
UVMFinalPhasephase implementation method.This method should never be called directly. :param phase:
-
phase_started(phase)[source]¶ Invoked at the start of each phase. The
phaseargument specifies the phase being started. Any threads spawned in this callback are not affected when the phase ends.- Parameters
phase –
-
phase_ended(phase)[source]¶ Invoked at the end of each phase. The
phaseargument specifies the phase that is ending. Any threads spawned in this callback are not affected when the phase ends.- Parameters
phase –
-
phase_ready_to_end(phase)[source]¶ Function: phase_ready_to_end
Invoked when all objections to ending the given
phaseand all sibling phases have been dropped, thus indicating thatphaseis ready to begin a clean exit. Sibling phases are any phases that have a common successor phase in the schedule plus any phases that sync’d to the current phase. Components needing to consume delta cycles or advance time to perform a clean exit from the phase may raise the phase’s objection.It is the responsibility of this component to drop the objection once it is ready for this phase to end (and processes killed). If no objection to the given
phaseor sibling phases are raised, then phase_ended() is called after a delta cycle. If any objection is raised, then when all objections to ending the givenphaseand siblings are dropped, another iteration of phase_ready_to_end is called. To prevent endless iterations due to coding error, after 20 iterations, phase_ended() is called regardless of whether previous iteration had any objections raised.
-
set_domain(domain, hier=True)[source]¶ Apply a phase domain to this component and, if
hieris set, recursively to all its children.Calls the virtual
define_domainmethod, which derived components can override to augment or replace the domain definition of its base class.Assigns this component [tree] to a domain. adds required schedules into graph If called from build,
hierwon’t recurse into all chilren (which don’t exist yet) If we have components inherit their parent’s domain by default, thenhierisn’t needed and we need a way to prevent children from inheriting this component’s domain- Parameters
domain –
hier –
-
define_domain(domain)[source]¶ Builds custom phase schedules into the provided
domainhandle.This method is called by
set_domain, which integrators use to specify this component belongs in a domain apart from the default ‘uvm’ domain.Custom component base classes requiring a custom phasing schedule can augment or replace the domain definition they inherit by overriding their
defined_domain. To augment, overrides would call super.define_domain(). To replace, overrides would not call super.define_domain().The default implementation adds a copy of the
uvmphasing schedule to the givendomain, if one doesn’t already exist, and only if the domain is currently empty.Calling
set_domainwith the defaultuvmdomain (i.e. <uvm_domain::get_uvm_domain> ) on a component with nodefine_domainoverride effectively reverts the that component to using the defaultuvmdomain. This may be useful if a branch of the testbench hierarchy defines a custom domain, but some child sub-branch should remain in the defaultuvmdomain, callset_domainwith a new domain instance handle withhierset. Then, in the sub-branch, callset_domainwith the defaultuvmdomain handle, obtained via <uvm_domain::get_uvm_domain>.Alternatively, the integrator may define the graph in a new domain externally, then call
set_domainto apply it to a component.- Parameters
domain –
-
set_phase_imp(phase, imp, hier=1)[source]¶ Override the default implementation for a phase on this component (tree) with a custom one, which must be created as a singleton object extending the default one and implementing required behavior in exec and traverse methods
The
hierspecifies whether to apply the custom functor to the whole tree or just this component.- Parameters
phase –
imp –
hier –
-
resolve_bindings() → None[source]¶ Processes all port, export, and imp connections. Checks whether each port’s min and max connection requirements are met.
It is called just before the end_of_elaboration phase.
Users should not call directly.
-
check_config_usage(recurse=1) → None[source]¶ Check all configuration settings in a components configuration table to determine if the setting has been used, overridden or not used. When
recurseis 1 (default), configuration for this and all child components are recursively checked. This function is automatically called in the check phase, but can be manually called at any time.To get all configuration information prior to the run phase, do something like this in your top object:
def start_of_simulation_phase(self, phase): self.check_config_usage()
- Parameters
recurse –
-
apply_config_settings(verbose=0)[source]¶ Searches for all config settings matching this component’s instance path. For each match, the appropriate set_*_local method is called using the matching config setting’s field_name and value. Provided the set_*_local method is implemented, the component property associated with the field_name is assigned the given value.
This function is called by <uvm_component::build_phase>.
The apply_config_settings method determines all the configuration settings targeting this component and calls the appropriate set_*_local method to set each one. To work, you must override one or more set_*_local methods to accommodate setting of your component’s specific properties. Any properties registered with the optional `uvm_*_field macros do not require special handling by the set_*_local methods; the macros provide the set_*_local functionality for you.
If you do not want apply_config_settings to be called for a component, then the build_phase() method should be overloaded and you should not call super.build_phase(phase). Likewise, apply_config_settings can be overloaded to customize automated configuration.
When the
verbosebit is set, all overrides are printed as they are applied. If the component’sprint_config_matchesproperty is set, then apply_config_settings is automatically called withverbose= 1.- Parameters
verbose (bool) – If true, prints more verbose information
-
print_config_settings(field='', comp=None, recurse=False)[source]¶ Function: print_config_settings
Called without arguments, print_config_settings prints all configuration information for this component, as set by previous calls to <uvm_config_db::set()>. The settings are printing in the order of their precedence.
If
fieldis specified and non-empty, then only configuration settings matching that field, if any, are printed. The field may not contain wildcards.If
compis specified and non-None, then the configuration for that component is printed.If
recurseis set, then configuration information for allcomp’s children and below are printed as well.This function has been deprecated. Use print_config instead. :param field: Print all config related to given field, :type field: str :param comp: If given, print config only for that component. :type comp: UVMComponent :param recurse: If true, recurse to all children :type recurse: bool
-
print_config(recurse=False, audit=False) → None[source]¶ Function: print_config
Print_config prints all configuration information for this component, as set by previous calls to
UVMConfigDb.setand exports to the resources pool. The settings are printing in the order of their precedence.If
recurseis set, then configuration information for all children and below are printed as well.if
auditis set then the audit trail for each resource is printed along with the resource name and value :param recurse: If true, recurse to child components :type recurse: bool :param audit: If true, print audit trail for each resource. :type audit: bool
-
print_config_with_audit(recurse=0)[source]¶ Function: print_config_with_audit
Operates the same as print_config except that the audit bit is forced to 1. This interface makes user code a bit more readable as it avoids multiple arbitrary bit settings in the argument list.
If
recurseis set, then configuration information for all children and below are printed as well.
-
raised(objection, source_obj, description, count)[source]¶ Function: raised
The
raisedcallback is called when this or a descendant of this component instance raises the specifiedobjection. Thesource_objis the object that originally raised the objection. Thedescriptionis optionally provided by thesource_objto give a reason for raising the objection. Thecountindicates the number of objections raised by thesource_obj.
-
dropped(objection, source_obj, description, count)[source]¶ The
droppedcallback is called when this or a descendant of this component instance drops the specifiedobjection. Thesource_objis the object that originally dropped the objection. Thedescriptionis optionally provided by thesource_objto give a reason for dropping the objection. Thecountindicates the number of objections dropped by thesource_obj.- Parameters
objection (UVMObjection) –
source_obj (UVMObject) –
description (str) –
count (int) –
-
async
all_dropped(objection, source_obj, description, count)[source]¶ The
all_dropppedcallback is called when all objections have been dropped by this component and all its descendants. Thesource_objis the object that dropped the last objection. Thedescriptionis optionally provided by thesource_objto give a reason for raising the objection. Thecountindicates the number of objections dropped by thesource_obj.- Parameters
objection –
source_obj –
description –
count –
-
set_report_id_action_hier(id, action)[source]¶ These methods recursively associate the specified action with reports of the given
severity,id, or ~severity-id~ pair. An action associated with a particular severity-id pair takes precedence over an action associated with id, which takes precedence over an action associated with a severity.For a list of severities and their default actions, refer to
UVMReportHandler.- Parameters
id (str) – Message ID to use (‘’ = all)
action –
-
set_report_default_file_hier(file)[source]¶ Sets default report file hierarchically. All
UVM_LOGactions are written into this file, unless more specific file is set.- Parameters
file –
-
set_report_verbosity_level_hier(verbosity)[source]¶ This method recursively sets the maximum verbosity level for reports for this component and all those below it. Any report from this component subtree whose verbosity exceeds this maximum will be ignored.
See
UVMReportHandlerfor a list of predefined message verbosity levels and their meaning.- Parameters
verbosity –
-
pre_abort()[source]¶ This callback is executed when the message system is executing a
UVM_EXITaction. The exit action causes an immediate termination of the simulation, but the pre_abort callback hook gives components an opportunity to provide additional information to the user before the termination happens. For example, a test may want to executed the report function of a particular component even when an error condition has happened to force a premature termination you would write a function like:def pre_abort(self): self.report()
The pre_abort() callback hooks are called in a bottom-up fashion.
-
accept_tr(tr, accept_time=0)[source]¶ This function marks the acceptance of a transaction,
tr, by this component. Specifically, it performs the following actions:Calls the
tr’s <uvm_transaction::accept_tr> method, passing to it theaccept_timeargument.Calls this component’s <do_accept_tr> method to allow for any post-begin action in derived classes.
Triggers the component’s internal accept_tr event. Any processes waiting on this event will resume in the next delta cycle.
- Parameters
tr –
accept_time –
-
do_accept_tr(tr)[source]¶ The
accept_trmethod calls this function to accommodate any user-defined post-accept action. Implementations should call super.do_accept_tr to ensure correct operation.#extern virtual protected function void do_accept_tr (uvm_transaction tr) :param tr:
-
begin_tr(tr, stream_name='main', label='', desc='', begin_time=0, parent_handle=0)[source]¶ This function marks the start of a transaction,
tr, by this component. Specifically, it performs the following actions:Calls
tr’s <uvm_transaction::begin_tr> method, passing to it thebegin_timeargument. Thebegin_timeshould be greater than or equal to the accept time. By default, whenbegin_time= 0, the current simulation time is used.If recording is enabled (recording_detail != UVM_OFF), then a new database-transaction is started on the component’s transaction stream given by the stream argument. No transaction properties are recorded at this time.
Calls the component’s <do_begin_tr> method to allow for any post-begin action in derived classes.
Triggers the component’s internal begin_tr event. Any processes waiting on this event will resume in the next delta cycle.
A handle to the transaction is returned. The meaning of this handle, as well as the interpretation of the arguments
stream_name,label, anddescare vendor specific. :param tr: :param stream_name: :param label: :param desc: :param begin_time: :param parent_handle:Returns:
-
begin_child_tr(tr, parent_handle=0, stream_name='main', label='', desc='', begin_time=0)[source]¶ This function marks the start of a child transaction,
tr, by this component. Its operation is identical to that of <begin_tr>, except that an association is made between this transaction and the provided parent transaction. This association is vendor-specific.- Parameters
tr –
parent_handle –
stream_name –
label –
desc –
begin_time –
Returns:
-
do_begin_tr(tr, stream_name, tr_handle)[source]¶ The <begin_tr> and <begin_child_tr> methods call this function to accommodate any user-defined post-begin action. Implementations should call super.do_begin_tr to ensure correct operation.
- Parameters
tr –
stream_name –
tr_handle –
-
end_tr(tr, end_time=0, free_handle=1)[source]¶ Function: end_tr
This function marks the end of a transaction,
tr, by this component. Specifically, it performs the following actions:Calls
tr’s <uvm_transaction::end_tr> method, passing to it theend_timeargument. Theend_timemust at least be greater than the begin time. By default, whenend_time= 0, the current simulation time is used.The transaction’s properties are recorded to the database-transaction on which it was started, and then the transaction is ended. Only those properties handled by the transaction’s do_record method (and optional `uvm_*_field macros) are recorded.
Calls the component’s <do_end_tr> method to accommodate any post-end action in derived classes.
Triggers the component’s internal end_tr event. Any processes waiting on this event will resume in the next delta cycle.
The
free_handlebit indicates that this transaction is no longer needed. The implementation of free_handle is vendor-specific. :param tr: :param end_time: :param free_handle:
-
do_end_tr(tr, tr_handle)[source]¶ The <end_tr> method calls this function to accommodate any user-defined post-end action. Implementations should call super.do_end_tr to ensure correct operation.
- Parameters
tr –
tr_handle –
-
record_error_tr(stream_name='main', info=None, label='error_tr', desc='', error_time=0, keep_active=0)[source]¶
-
record_event_tr(stream_name='main', info=None, label='event_tr', desc='', event_time=0, keep_active=0)[source]¶
-
get_tr_stream(name, stream_type_name='')[source]¶ Streams which are retrieved via this method will be stored internally, such that later calls to
get_tr_streamwill return the same stream reference.The stream can be removed from the internal storage via a call to
free_tr_stream.- Parameters
name (str) – Name for the stream
stream_type_name – Type name for the stream (Default = “”)
- Returns
Stream with this component’s full name as scope.
- Return type
-
create(name='')[source]¶ Overridden to disable component creation using this method.
- Parameters
name (str) – Name of the component.
- Returns
None - Create cannot be called on
UVMComponent
-
clone()[source]¶ Components cannot be cloned. Added this to show
uvm_errorwhenever a cloning is attempted.- Returns
None - Components cannot be cloned.
-
m_begin_tr(tr, parent_handle=0, stream_name='main', label='', desc='', begin_time=0)[source]¶ - Parameters
tr (UVMTransaction) –
parent_handle –
stream_name (str) –
label (str) –
desc (str) –
begin_time (int) –
Returns:
-
m_set_cl_msg_args()[source]¶ Internal methods for setting up command line messaging stuff #extern function void m_set_cl_msg_args
-
first_m_set_cl_verb= 1¶
-
initialized_m_set_cl_action= 0¶
-
initialized_m_set_cl_sev= 0¶
-
m_uvm_applied_cl_action: List[uvm.base.uvm_component.uvm_cmdline_parsed_arg_t] = []¶
-
m_uvm_applied_cl_sev: List[uvm.base.uvm_component.uvm_cmdline_parsed_arg_t] = []¶