Block abstraction base class
A block represents a design hierarchy. It can contain registers, register files, memories and sub-blocks.
A block has one or more address maps, each corresponding to a physical interface on the block.
uvm_reg_block | ||||
Block abstraction base class | ||||
Class Hierarchy | ||||
| ||||
Class Declaration | ||||
| ||||
default_path | Default access path for the registers and memories in this block. | |||
Initialization | ||||
new | Create a new instance and type-specific configuration | |||
configure | Instance-specific configuration | |||
create_map | Create an address map in this block | |||
check_data_width | Check that the specified data width (in bits) is less than or equal to the value of `UVM_REG_DATA_WIDTH | |||
set_default_map | Defines the default address map | |||
default_map | Default address map | |||
lock_model | Lock a model and build the address map. | |||
is_locked | Return TRUE if the model is locked. | |||
Introspection | ||||
get_name | Get the simple name | |||
get_full_name | Get the hierarchical name | |||
get_parent | Get the parent block | |||
get_root_blocks | Get the all root blocks | |||
find_blocks | Find the blocks whose hierarchical names match the specified name glob. | |||
find_block | Find the first block whose hierarchical names match the specified name glob. | |||
get_blocks | Get the sub-blocks | |||
get_maps | Get the address maps | |||
get_registers | Get the registers | |||
get_fields | Get the fields | |||
get_memories | Get the memories | |||
get_virtual_registers | Get the virtual registers | |||
get_virtual_fields | Get the virtual fields | |||
get_block_by_name | Finds a sub-block with the specified simple name. | |||
get_map_by_name | Finds an address map with the specified simple name. | |||
get_reg_by_name | Finds a register with the specified simple name. | |||
get_field_by_name | Finds a field with the specified simple name. | |||
get_mem_by_name | Finds a memory with the specified simple name. | |||
get_vreg_by_name | Finds a virtual register with the specified simple name. | |||
get_vfield_by_name | Finds a virtual field with the specified simple name. | |||
Coverage | ||||
build_coverage | Check if all of the specified coverage model must be built. | |||
add_coverage | Specify that additional coverage models are available. | |||
has_coverage | Check if block has coverage model(s) | |||
set_coverage | Turns on coverage measurement. | |||
get_coverage | Check if coverage measurement is on. | |||
sample | Functional coverage measurement method | |||
sample_values | Functional coverage measurement method for field values | |||
Access | ||||
get_default_path | Default access path | |||
reset | Reset the mirror for this block. | |||
needs_update | Check if DUT registers need to be written | |||
update | Batch update of register. | |||
mirror | Update the mirrored values | |||
write_reg_by_name | Write the named register | |||
read_reg_by_name | Read the named register | |||
write_mem_by_name | Write the named memory | |||
read_mem_by_name | Read the named memory | |||
Backdoor | ||||
get_backdoor | Get the user-defined backdoor for all registers in this block | |||
set_backdoor | Set the user-defined backdoor for all registers in this block | |||
clear_hdl_path | Delete HDL paths | |||
add_hdl_path | Add an HDL path | |||
has_hdl_path | Check if a HDL path is specified | |||
get_hdl_path | Get the incremental HDL path(s) | |||
get_full_hdl_path | Get the full hierarchical HDL path(s) | |||
set_default_hdl_path | Set the default design abstraction | |||
get_default_hdl_path | Get the default design abstraction | |||
set_hdl_path_root | Specify a root HDL path | |||
is_hdl_path_root | Check if this block has an absolute path |
uvm_path_e default_path = UVM_DEFAULT_PATH
Default access path for the registers and memories in this block.
function new( string name = "", int has_coverage = UVM_NO_COVERAGE )
Create a new instance and type-specific configuration
Creates an instance of a block abstraction class with the specified name.
has_coverage specifies which functional coverage models are present in the extension of the block abstraction class. Multiple functional coverage models may be specified by adding their symbolic names, as defined by the uvm_coverage_model_e type.
function void configure( uvm_reg_block parent = null, string hdl_path = "" )
Instance-specific configuration
Specify the parent block of this block. A block without parent is a root block.
If the block file corresponds to a hierarchical RTL structure, it’s contribution to the HDL path is specified as the hdl_path. Otherwise, the block does not correspond to a hierarchical RTL structure (e.g. it is physically flattened) and does not contribute to the hierarchical HDL path of any contained registers or memories.
virtual function uvm_reg_map create_map( string name, uvm_reg_addr_t base_addr, int unsigned n_bytes, uvm_endianness_e endian, bit byte_addressing = 1 )
Create an address map in this block
Create an address map with the specified name, then configures it with the following properties.
base_addr | the base address for the map. All registers, memories, and sub-blocks within the map will be at offsets to this address |
n_bytes | the byte-width of the bus on which this map is used |
endian | the endian format. See uvm_endianness_e for possible values |
byte_addressing | specifies whether consecutive addresses refer are 1 byte apart (TRUE) or n_bytes apart (FALSE). Default is TRUE. |
APB = create_map("APB", 0, 1, UVM_LITTLE_ENDIAN, 1);
protected static function bit check_data_width( int unsigned width )
Check that the specified data width (in bits) is less than or equal to the value of `UVM_REG_DATA_WIDTH
This method is designed to be called by a static initializer
class my_blk extends uvm_reg_block; local static bit m_data_width = check_data_width(356); ... endclass
function void set_default_map ( uvm_reg_map map )
Defines the default address map
Set the specified address map as the default_map for this block. The address map must be a map of this address block.
uvm_reg_map default_map
Default address map
Default address map for this block, to be used when no address map is specified for a register operation and that register is accessible from more than one address map.
It is also the implciit address map for a block with a single, unamed address map because it has only one physical interface.
virtual function void lock_model()
Lock a model and build the address map.
Recursively lock an entire register model and build the address maps to enable the uvm_reg_map::get_reg_by_offset() and uvm_reg_map::get_mem_by_offset() methods.
Once locked, no further structural changes, such as adding registers or memories, can be made.
It is not possible to unlock a model.
Get the simple name
Return the simple object name of this block.
virtual function string get_full_name()
Get the hierarchical name
Return the hierarchal name of this block. The base of the hierarchical name is the root block.
virtual function uvm_reg_block get_parent()
Get the parent block
If this a top-level block, returns null.
static function void get_root_blocks( ref uvm_reg_block blks[$] )
Get the all root blocks
Returns an array of all root blocks in the simulation.
static function int find_blocks( input string name, ref uvm_reg_block blks[$], input uvm_reg_block root = null, input uvm_object accessor = null )
Find the blocks whose hierarchical names match the specified name glob. If a root block is specified, the name of the blocks are relative to that block, otherwise they are absolute.
Returns the number of blocks found.
static function uvm_reg_block find_block( input string name, input uvm_reg_block root = null, input uvm_object accessor = null )
Find the first block whose hierarchical names match the specified name glob. If a root block is specified, the name of the blocks are relative to that block, otherwise they are absolute.
Returns the first block found or null otherwise. A warning is issued if more than one block is found.
virtual function void get_blocks ( ref uvm_reg_block blks[$], input uvm_hier_e hier = UVM_HIER )
Get the sub-blocks
Get the blocks instantiated in this blocks. If hier is TRUE, recursively includes any sub-blocks.
virtual function void get_maps ( ref uvm_reg_map maps[$] )
Get the address maps
Get the address maps instantiated in this block.
virtual function void get_registers ( ref uvm_reg regs[$], input uvm_hier_e hier = UVM_HIER )
Get the registers
Get the registers instantiated in this block. If hier is TRUE, recursively includes the registers in the sub-blocks.
Note that registers may be located in different and/or multiple address maps. To get the registers in a specific address map, use the uvm_reg_map::get_registers() method.
virtual function void get_fields ( ref uvm_reg_field fields[$], input uvm_hier_e hier = UVM_HIER )
Get the fields
Get the fields in the registers instantiated in this block. If hier is TRUE, recursively includes the fields of the registers in the sub-blocks.
virtual function void get_memories ( ref uvm_mem mems[$], input uvm_hier_e hier = UVM_HIER )
Get the memories
Get the memories instantiated in this block. If hier is TRUE, recursively includes the memories in the sub-blocks.
Note that memories may be located in different and/or multiple address maps. To get the memories in a specific address map, use the <uvm_reg_map::get_memories()> method.
virtual function void get_virtual_registers( ref uvm_vreg regs[$], input uvm_hier_e hier = UVM_HIER )
Get the virtual registers
Get the virtual registers instantiated in this block. If hier is TRUE, recursively includes the virtual registers in the sub-blocks.
virtual function void get_virtual_fields ( ref uvm_vreg_field fields[$], input uvm_hier_e hier = UVM_HIER )
Get the virtual fields
Get the virtual fields from the virtual registers instantiated in this block. If hier is TRUE, recursively includes the virtual fields in the virtual registers in the sub-blocks.
virtual function uvm_reg_block get_block_by_name ( string name )
Finds a sub-block with the specified simple name.
The name is the simple name of the block, not a hierarchical name. relative to this block. If no block with that name is found in this block, the sub-blocks are searched for a block of that name and the first one to be found is returned.
If no blocks are found, returns null.
virtual function uvm_reg_map get_map_by_name ( string name )
Finds an address map with the specified simple name.
The name is the simple name of the address map, not a hierarchical name. relative to this block. If no map with that name is found in this block, the sub-blocks are searched for a map of that name and the first one to be found is returned.
If no address maps are found, returns null.
virtual function uvm_reg get_reg_by_name ( string name )
Finds a register with the specified simple name.
The name is the simple name of the register, not a hierarchical name. relative to this block. If no register with that name is found in this block, the sub-blocks are searched for a register of that name and the first one to be found is returned.
If no registers are found, returns null.
virtual function uvm_reg_field get_field_by_name ( string name )
Finds a field with the specified simple name.
The name is the simple name of the field, not a hierarchical name. relative to this block. If no field with that name is found in this block, the sub-blocks are searched for a field of that name and the first one to be found is returned.
If no fields are found, returns null.
virtual function uvm_mem get_mem_by_name ( string name )
Finds a memory with the specified simple name.
The name is the simple name of the memory, not a hierarchical name. relative to this block. If no memory with that name is found in this block, the sub-blocks are searched for a memory of that name and the first one to be found is returned.
If no memories are found, returns null.
virtual function uvm_vreg get_vreg_by_name ( string name )
Finds a virtual register with the specified simple name.
The name is the simple name of the virtual register, not a hierarchical name. relative to this block. If no virtual register with that name is found in this block, the sub-blocks are searched for a virtual register of that name and the first one to be found is returned.
If no virtual registers are found, returns null.
virtual function uvm_vreg_field get_vfield_by_name ( string name )
Finds a virtual field with the specified simple name.
The name is the simple name of the virtual field, not a hierarchical name. relative to this block. If no virtual field with that name is found in this block, the sub-blocks are searched for a virtual field of that name and the first one to be found is returned.
If no virtual fields are found, returns null.
protected function uvm_reg_cvr_t build_coverage( uvm_reg_cvr_t models )
Check if all of the specified coverage model must be built.
Check which of the specified coverage model must be built in this instance of the block abstraction class, as specified by calls to uvm_reg::include_coverage().
Models are specified by adding the symbolic value of individual coverage model as defined in uvm_coverage_model_e. Returns the sum of all coverage models to be built in the block model.
virtual protected function void add_coverage( uvm_reg_cvr_t models )
Specify that additional coverage models are available.
Add the specified coverage model to the coverage models available in this class. Models are specified by adding the symbolic value of individual coverage model as defined in uvm_coverage_model_e.
This method shall be called only in the constructor of subsequently derived classes.
virtual function bit has_coverage( uvm_reg_cvr_t models )
Check if block has coverage model(s)
Returns TRUE if the block abstraction class contains a coverage model for all of the models specified. Models are specified by adding the symbolic value of individual coverage model as defined in uvm_coverage_model_e.
virtual function uvm_reg_cvr_t set_coverage( uvm_reg_cvr_t is_on )
Turns on coverage measurement.
Turns the collection of functional coverage measurements on or off for this block and all blocks, registers, fields and memories within it. The functional coverage measurement is turned on for every coverage model specified using uvm_coverage_model_e symbolic identifers. Multiple functional coverage models can be specified by adding the functional coverage model identifiers. All other functional coverage models are turned off. Returns the sum of all functional coverage models whose measurements were previously on.
This method can only control the measurement of functional coverage models that are present in the various abstraction classes, then enabled during construction. See the uvm_reg_block::has_coverage() method to identify the available functional coverage models.
virtual function bit get_coverage( uvm_reg_cvr_t is_on = UVM_CVR_ALL )
Check if coverage measurement is on.
Returns TRUE if measurement for all of the specified functional coverage models are currently on. Multiple functional coverage models can be specified by adding the functional coverage model identifiers.
See uvm_reg_block::set_coverage() for more details.
protected virtual function void sample( uvm_reg_addr_t offset, bit is_read, uvm_reg_map map )
Functional coverage measurement method
This method is invoked by the block abstraction class whenever an address within one of its address map is succesfully read or written. The specified offset is the offset within the block, not an absolute address.
Empty by default, this method may be extended by the abstraction class generator to perform the required sampling in any provided functional coverage model.
virtual function void sample_values()
Functional coverage measurement method for field values
This method is invoked by the user or by the uvm_reg_block::sample_values() method of the parent block to trigger the sampling of the current field values in the block-level functional coverage model. It recursively invokes the uvm_reg_block::sample_values() and uvm_reg::sample_values() methods in the blocks and registers in this block.
This method may be extended by the abstraction class generator to perform the required sampling in any provided field-value functional coverage model. If this method is extended, it MUST call super.sample_values().
virtual function uvm_path_e get_default_path()
Default access path
Returns the default access path for this block.
virtual function void reset( string kind = "HARD" )
Reset the mirror for this block.
Sets the mirror value of all registers in the block and sub-blocks to the reset value corresponding to the specified reset event. See uvm_reg_field::reset() for more details. Does not actually set the value of the registers in the design, only the values mirrored in their corresponding mirror.
virtual function bit needs_update()
Check if DUT registers need to be written
If a mirror value has been modified in the abstraction model without actually updating the actual register (either through randomization or via the uvm_reg::set() method, the mirror and state of the registers are outdated. The corresponding registers in the DUT need to be updated.
This method returns TRUE if the state of at lest one register in the block or sub-blocks needs to be updated to match the mirrored values. The mirror values, or actual content of registers, are not modified. For additional information, see uvm_reg_block::update() method.
virtual task update( output uvm_status_e status, input uvm_path_e path = UVM_DEFAULT_PATH, input uvm_sequence_base parent = null, input int prior = -1, input uvm_object extension = null, input string fname = "", input int lineno = 0 )
Batch update of register.
Using the minimum number of write operations, updates the registers in the design to match the mirrored values in this block and sub-blocks. The update can be performed using the physical interfaces (front-door access) or back-door accesses. This method performs the reverse operation of uvm_reg_block::mirror().
virtual task mirror( output uvm_status_e status, input uvm_check_e check = UVM_NO_CHECK, input uvm_path_e path = UVM_DEFAULT_PATH, input uvm_sequence_base parent = null, input int prior = -1, input uvm_object extension = null, input string fname = "", input int lineno = 0 )
Update the mirrored values
Read all of the registers in this block and sub-blocks and update their mirror values to match their corresponding values in the design. The mirroring can be performed using the physical interfaces (front-door access) or back-door accesses. If the check argument is specified as UVM_CHECK, an error message is issued if the current mirrored value does not match the actual value in the design. This method performs the reverse operation of uvm_reg_block::update().
virtual task write_reg_by_name( output uvm_status_e status, input string name, input uvm_reg_data_t data, input uvm_path_e path = UVM_DEFAULT_PATH, input uvm_reg_map map = null, input uvm_sequence_base parent = null, input int prior = -1, input uvm_object extension = null, input string fname = "", input int lineno = 0 )
Write the named register
Equivalent to get_reg_by_name() followed by uvm_reg::write()
virtual task read_reg_by_name( output uvm_status_e status, input string name, output uvm_reg_data_t data, input uvm_path_e path = UVM_DEFAULT_PATH, input uvm_reg_map map = null, input uvm_sequence_base parent = null, input int prior = -1, input uvm_object extension = null, input string fname = "", input int lineno = 0 )
Read the named register
Equivalent to get_reg_by_name() followed by uvm_reg::read()
virtual task write_mem_by_name( output uvm_status_e status, input string name, input uvm_reg_addr_t offset, input uvm_reg_data_t data, input uvm_path_e path = UVM_DEFAULT_PATH, input uvm_reg_map map = null, input uvm_sequence_base parent = null, input int prior = -1, input uvm_object extension = null, input string fname = "", input int lineno = 0 )
Write the named memory
Equivalent to get_mem_by_name() followed by uvm_mem::write()
virtual task read_mem_by_name( output uvm_status_e status, input string name, input uvm_reg_addr_t offset, output uvm_reg_data_t data, input uvm_path_e path = UVM_DEFAULT_PATH, input uvm_reg_map map = null, input uvm_sequence_base parent = null, input int prior = -1, input uvm_object extension = null, input string fname = "", input int lineno = 0 )
Read the named memory
Equivalent to get_mem_by_name() followed by uvm_mem::read()
function uvm_reg_backdoor get_backdoor( bit inherited = 1 )
Get the user-defined backdoor for all registers in this block
Return the user-defined backdoor for all register in this block and all sub-blocks -- unless overriden by a backdoor set in a lower-level block or in the register itself.
If inherited is TRUE, returns the backdoor of the parent block if none have been specified for this block.
function void set_backdoor ( uvm_reg_backdoor bkdr, string fname = "", int lineno = 0 )
Set the user-defined backdoor for all registers in this block
Defines the backdoor mechanism for all registers instantiated in this block and sub-blocks, unless overriden by a definition in a lower-level block or register.
function void clear_hdl_path ( string kind = "RTL" )
Delete HDL paths
Remove any previously specified HDL path to the block instance for the specified design abstraction.
function void add_hdl_path ( string path, string kind = "RTL" )
Add an HDL path
Add the specified HDL path to the block instance for the specified design abstraction. This method may be called more than once for the same design abstraction if the block is physically duplicated in the design abstraction
function bit has_hdl_path ( string kind = "" )
Check if a HDL path is specified
Returns TRUE if the block instance has a HDL path defined for the specified design abstraction. If no design abstraction is specified, uses the default design abstraction specified for this block or the nearest block ancestor with a specified default design abstraction.
function void get_hdl_path ( ref string paths[$], input string kind = "" )
Get the incremental HDL path(s)
Returns the HDL path(s) defined for the specified design abstraction in the block instance. Returns only the component of the HDL paths that corresponds to the block, not a full hierarchical path
If no design asbtraction is specified, the default design abstraction for this block is used.
function void get_full_hdl_path ( ref string paths[$], input string kind = "", string separator = "." )
Get the full hierarchical HDL path(s)
Returns the full hierarchical HDL path(s) defined for the specified design abstraction in the block instance. There may be more than one path returned even if only one path was defined for the block instance, if any of the parent components have more than one path defined for the same design abstraction
If no design asbtraction is specified, the default design abstraction for each ancestor block is used to get each incremental path.
function void set_default_hdl_path ( string kind )
Set the default design abstraction
Set the default design abstraction for this block instance.
function string get_default_hdl_path ()
Get the default design abstraction
Returns the default design abstraction for this block instance. If a default design abstraction has not been explicitly set for this block instance, returns the default design absraction for the nearest block ancestor. Returns “” if no default design abstraction has been specified.
function void set_hdl_path_root ( string path, string kind = "RTL" )
Specify a root HDL path
Set the specified path as the absolute HDL path to the block instance for the specified design abstraction. This absolute root path is preppended to all hierarchical paths under this block. The HDL path of any ancestor block is ignored. This method overrides any incremental path for the same design abstraction specified using add_hdl_path.
function bit is_hdl_path_root ( string kind = "" )
Check if this block has an absolute path
Returns TRUE if an absolute HDL path to the block instance for the specified design abstraction has been defined. If no design asbtraction is specified, the default design abstraction for this block is used.
The uvm_object class is the base class for all UVM data and hierarchical classes.
virtual class uvm_object extends uvm_void
Block abstraction base class
virtual class uvm_reg_block extends uvm_object
Default access path for the registers and memories in this block.
uvm_path_e default_path = UVM_DEFAULT_PATH
Create a new instance and type-specific configuration
function new( string name = "", int has_coverage = UVM_NO_COVERAGE )
Instance-specific configuration
function void configure( uvm_reg_block parent = null, string hdl_path = "" )
Create an address map in this block
virtual function uvm_reg_map create_map( string name, uvm_reg_addr_t base_addr, int unsigned n_bytes, uvm_endianness_e endian, bit byte_addressing = 1 )
Check that the specified data width (in bits) is less than or equal to the value of `UVM_REG_DATA_WIDTH
protected static function bit check_data_width( int unsigned width )
Defines the default address map
function void set_default_map ( uvm_reg_map map )
Default address map
uvm_reg_map default_map
Lock a model and build the address map.
virtual function void lock_model()
Return TRUE if the model is locked.
function bit is_locked()
Get the hierarchical name
virtual function string get_full_name()
Get the parent block
virtual function uvm_reg_block get_parent()
Get the all root blocks
static function void get_root_blocks( ref uvm_reg_block blks[$] )
Find the blocks whose hierarchical names match the specified name glob.
static function int find_blocks( input string name, ref uvm_reg_block blks[$], input uvm_reg_block root = null, input uvm_object accessor = null )
Find the first block whose hierarchical names match the specified name glob.
static function uvm_reg_block find_block( input string name, input uvm_reg_block root = null, input uvm_object accessor = null )
Get the sub-blocks
virtual function void get_blocks ( ref uvm_reg_block blks[$], input uvm_hier_e hier = UVM_HIER )
Get the address maps
virtual function void get_maps ( ref uvm_reg_map maps[$] )
Get the registers
virtual function void get_registers ( ref uvm_reg regs[$], input uvm_hier_e hier = UVM_HIER )
Get the fields
virtual function void get_fields ( ref uvm_reg_field fields[$], input uvm_hier_e hier = UVM_HIER )
Get the memories
virtual function void get_memories ( ref uvm_mem mems[$], input uvm_hier_e hier = UVM_HIER )
Get the virtual registers
virtual function void get_virtual_registers( ref uvm_vreg regs[$], input uvm_hier_e hier = UVM_HIER )
Get the virtual fields
virtual function void get_virtual_fields ( ref uvm_vreg_field fields[$], input uvm_hier_e hier = UVM_HIER )
Finds a sub-block with the specified simple name.
virtual function uvm_reg_block get_block_by_name ( string name )
Finds an address map with the specified simple name.
virtual function uvm_reg_map get_map_by_name ( string name )
Finds a register with the specified simple name.
virtual function uvm_reg get_reg_by_name ( string name )
Finds a field with the specified simple name.
virtual function uvm_reg_field get_field_by_name ( string name )
Finds a memory with the specified simple name.
virtual function uvm_mem get_mem_by_name ( string name )
Finds a virtual register with the specified simple name.
virtual function uvm_vreg get_vreg_by_name ( string name )
Finds a virtual field with the specified simple name.
virtual function uvm_vreg_field get_vfield_by_name ( string name )
Check if all of the specified coverage model must be built.
protected function uvm_reg_cvr_t build_coverage( uvm_reg_cvr_t models )
Specify that additional coverage models are available.
virtual protected function void add_coverage( uvm_reg_cvr_t models )
Check if block has coverage model(s)
virtual function bit has_coverage( uvm_reg_cvr_t models )
Turns on coverage measurement.
virtual function uvm_reg_cvr_t set_coverage( uvm_reg_cvr_t is_on )
Check if coverage measurement is on.
virtual function bit get_coverage( uvm_reg_cvr_t is_on = UVM_CVR_ALL )
Functional coverage measurement method
protected virtual function void sample( uvm_reg_addr_t offset, bit is_read, uvm_reg_map map )
Functional coverage measurement method for field values
virtual function void sample_values()
Default access path
virtual function uvm_path_e get_default_path()
Reset the mirror for this block.
virtual function void reset( string kind = "HARD" )
Check if DUT registers need to be written
virtual function bit needs_update()
Batch update of register.
virtual task update( output uvm_status_e status, input uvm_path_e path = UVM_DEFAULT_PATH, input uvm_sequence_base parent = null, input int prior = -1, input uvm_object extension = null, input string fname = "", input int lineno = 0 )
Update the mirrored values
virtual task mirror( output uvm_status_e status, input uvm_check_e check = UVM_NO_CHECK, input uvm_path_e path = UVM_DEFAULT_PATH, input uvm_sequence_base parent = null, input int prior = -1, input uvm_object extension = null, input string fname = "", input int lineno = 0 )
Write the named register
virtual task write_reg_by_name( output uvm_status_e status, input string name, input uvm_reg_data_t data, input uvm_path_e path = UVM_DEFAULT_PATH, input uvm_reg_map map = null, input uvm_sequence_base parent = null, input int prior = -1, input uvm_object extension = null, input string fname = "", input int lineno = 0 )
Read the named register
virtual task read_reg_by_name( output uvm_status_e status, input string name, output uvm_reg_data_t data, input uvm_path_e path = UVM_DEFAULT_PATH, input uvm_reg_map map = null, input uvm_sequence_base parent = null, input int prior = -1, input uvm_object extension = null, input string fname = "", input int lineno = 0 )
Write the named memory
virtual task write_mem_by_name( output uvm_status_e status, input string name, input uvm_reg_addr_t offset, input uvm_reg_data_t data, input uvm_path_e path = UVM_DEFAULT_PATH, input uvm_reg_map map = null, input uvm_sequence_base parent = null, input int prior = -1, input uvm_object extension = null, input string fname = "", input int lineno = 0 )
Read the named memory
virtual task read_mem_by_name( output uvm_status_e status, input string name, input uvm_reg_addr_t offset, output uvm_reg_data_t data, input uvm_path_e path = UVM_DEFAULT_PATH, input uvm_reg_map map = null, input uvm_sequence_base parent = null, input int prior = -1, input uvm_object extension = null, input string fname = "", input int lineno = 0 )
Get the user-defined backdoor for all registers in this block
function uvm_reg_backdoor get_backdoor( bit inherited = 1 )
Set the user-defined backdoor for all registers in this block
function void set_backdoor ( uvm_reg_backdoor bkdr, string fname = "", int lineno = 0 )
Delete HDL paths
function void clear_hdl_path ( string kind = "RTL" )
Add an HDL path
function void add_hdl_path ( string path, string kind = "RTL" )
Check if a HDL path is specified
function bit has_hdl_path ( string kind = "" )
Get the incremental HDL path(s)
function void get_hdl_path ( ref string paths[$], input string kind = "" )
Get the full hierarchical HDL path(s)
function void get_full_hdl_path ( ref string paths[$], input string kind = "", string separator = "." )
Set the default design abstraction
function void set_default_hdl_path ( string kind )
Get the default design abstraction
function string get_default_hdl_path ()
Specify a root HDL path
function void set_hdl_path_root ( string path, string kind = "RTL" )
Check if this block has an absolute path
function bit is_hdl_path_root ( string kind = "" )
Get register mapped at offset
virtual function uvm_reg get_reg_by_offset( uvm_reg_addr_t offset, bit read = 1 )
Get memory mapped at offset
virtual function uvm_mem get_mem_by_offset( uvm_reg_addr_t offset )
Get the registers
virtual function void get_registers ( ref uvm_reg regs[$], input uvm_hier_e hier = UVM_HIER )
Specify which coverage model that must be included in various block, register or memory abstraction class instances.
static function void include_coverage( string scope, uvm_reg_cvr_t models, uvm_object accessor = null )
Functional coverage measurement method for field values
virtual function void sample_values()
Reset the desired/mirrored value for this field.
virtual function void reset( string kind = "HARD" )
Set the desired value for this register
virtual function void set ( uvm_reg_data_t value, string fname = "", int lineno = 0 )
Write the specified value in this register
virtual task write( output uvm_status_e status, input uvm_reg_data_t value, input uvm_path_e path = UVM_DEFAULT_PATH, input uvm_reg_map map = null, input uvm_sequence_base parent = null, input int prior = -1, input uvm_object extension = null, input string fname = "", input int lineno = 0 )
Read the current value from this register
virtual task read( output uvm_status_e status, output uvm_reg_data_t value, input uvm_path_e path = UVM_DEFAULT_PATH, input uvm_reg_map map = null, input uvm_sequence_base parent = null, input int prior = -1, input uvm_object extension = null, input string fname = "", input int lineno = 0 )
Write the specified value in a memory location
virtual task write( output uvm_status_e status, input uvm_reg_addr_t offset, input uvm_reg_data_t value, input uvm_path_e path = UVM_DEFAULT_PATH, input uvm_reg_map map = null, input uvm_sequence_base parent = null, input int prior = -1, input uvm_object extension = null, input string fname = "", input int lineno = 0 )
Read the current value from a memory location
virtual task read( output uvm_status_e status, input uvm_reg_addr_t offset, output uvm_reg_data_t value, input uvm_path_e path = UVM_DEFAULT_PATH, input uvm_reg_map map = null, input uvm_sequence_base parent = null, input int prior = -1, input uvm_object extension = null, input string fname = "", input int lineno = 0 )