Class uvm_report_handler
Name |
Type |
Description |
---|---|---|
id_verbosities |
id verbosity settings default and severity |
|
severity_id_verbosities |
||
id_actions |
actions |
|
severity_actions |
||
severity_id_actions |
||
sev_overrides |
severity overrides |
|
sev_id_overrides |
||
default_file_handle |
UVM_FILE |
file handles default, severity, action, (severity,id) |
id_file_handles |
||
severity_file_handles |
UVM_FILE |
|
severity_id_file_handles |
Constructors
Functions
- virtual function void do_print ( uvm_printer printer ) [source]
Function
print
The uvm_report_handler implements the uvm_object::do_print() such that print method provides UVM printer formatted output of the current configuration. A snippet of example output is shown here:
uvm_test_top uvm_report_handler - @555 max_verbosity_level uvm_verbosity 32 UVM_FULL id_verbosities uvm_pool 3 - [ID1] uvm_verbosity 32 UVM_LOW severity_id_verbosities array 4 - [UVM_INFO:ID4] int 32 501 id_actions uvm_pool 2 - [ACT_ID] uvm_action 32 DISPLAY LOG COUNT severity_actions array 4 - [UVM_INFO] uvm_action 32 DISPLAY [UVM_WARNING] uvm_action 32 DISPLAY RM_RECORD COUNT [UVM_ERROR] uvm_action 32 DISPLAY COUNT [UVM_FATAL] uvm_action 32 DISPLAY EXIT default_file_handle int 32 'h1
- virtual function void process_report_message ( uvm_report_message report_message ) [source]
This is the common handler method used by the four core reporting methods (e.g. uvm_report_error) in uvm_report_object.
- static function string format_action ( uvm_action action ) [source]
Returns a string representation of the action , e.g., "DISPLAY".
- function int get_verbosity_level ( uvm_severity severity, string id ) [source]
Function- get_verbosity_level
Returns the verbosity associated with the given severity and id .
First, if there is a verbosity associated with the (severity,id) pair, return that. Else, if there is a verbosity associated with the id , return that. Else, return the max verbosity setting.
- function uvm_action get_action ( uvm_severity severity, string id ) [source]
Function- get_action
Returns the action associated with the given severity and id .
First, if there is an action associated with the (severity,id) pair, return that. Else, if there is an action associated with the id , return that. Else, if there is an action associated with the severity , return that. Else, return the default action associated with the severity .
- function UVM_FILE get_file_handle ( uvm_severity severity, string id ) [source]
Function- get_file_handle
Returns the file descriptor associated with the given severity and id .
First, if there is a file handle associated with the (severity,id) pair, return that. Else, if there is a file handle associated with the id , return that. Else, if there is an file handle associated with the severity , return that. Else, return the default file handle.
- function void set_severity_action ( uvm_severity severity, uvm_action action ) [source]
Function- set_severity_action Function- set_id_action Function- set_severity_id_action Function- set_id_verbosity Function- set_severity_id_verbosity
Internal methods called by uvm_report_object.
- function void set_id_action ( string id, uvm_action action ) [source]
- function void set_severity_id_action ( uvm_severity severity, string id, uvm_action action ) [source]
- function void set_severity_id_verbosity ( uvm_severity severity, string id, int verbosity ) [source]
- function void set_severity_file ( uvm_severity severity, UVM_FILE file ) [source]
- function void set_severity_id_file ( uvm_severity severity, string id, UVM_FILE file ) [source]
- function void set_severity_override ( uvm_severity cur_severity, uvm_severity new_severity ) [source]
- function void set_severity_id_override ( uvm_severity cur_severity, string id, uvm_severity new_severity ) [source]
- virtual function void report ( uvm_severity severity, string name, string id, string message, int verbosity_level, string filename, int line, uvm_report_object client ) [source]
Function- report
This is the common handler method used by the four core reporting methods (e.g., uvm_report_error) in uvm_report_object.
- virtual function bit run_hooks ( uvm_report_object client, uvm_severity severity, string id, string message, int verbosity, string filename, int line ) [source]
Function- run_hooks
The run_hooks method is called if the <UVM_CALL_HOOK> action is set for a report. It first calls the client's uvm_report_object::report_hook method, followed by the appropriate severity-specific hook method. If either returns 0, then the report is not processed.
The uvm_report_handler is the class to which most methods in uvm_report_object delegate. It stores the maximum verbosity, actions, and files that affect the way reports are handled.
The report handler is not intended for direct use. See uvm_report_object for information on the UVM reporting mechanism.
The relationship between uvm_report_object (a base class for uvm_component) and uvm_report_handler is typically one to one, but it can be many to one if several uvm_report_objects are configured to use the same uvm_report_handler_object. See uvm_report_object::set_report_handler.
The relationship between uvm_report_handler and uvm_report_server is many to one.