virtual function T do_read(uvm_object accessor);
The do_read method is a user-definable hook that allows users customization over what actions are performed during a read operation.
If auditing, it calls uvm_resource_debug::record_read_access before returning the value. This detail of this API is specific to the Accellera implementation and is not being considered for contribution to 1800.2
virtual function void do_write(T t, uvm_object accessor);
The do_write method is a user-definable hook that allows users customization over what actions are performed during a write operation.
If auditing, it calls uvm_resource_base::record_write_access before writing the value. This detail of this API is specific to the Accellera implementation and is not being considered for contribution to 1800.2