Uvm_object. Its primary role is to define a set of methods for such common operations as create, copy, compare, print, and record . Uvm_object

 
 Its primary role is to define a set of methods for such common operations as create, copy, compare, print, and record Uvm_object  Stimulus는 아직 작성하지 않고, testbench 골격만을 작성해 봅니다

03. Class Hierarchy. Uvm components, uvm env and uvm test are the three main building blocks of a testbench in uvm based verification. The UVM object is a data structure used for testbench configuration and it is the base class available for component and sequence branch. Calling Functions. This behavior is called “overriding” and there are 2 types of overriding is possible with UVM Factory (described below). “virtual” keyword is common in all of them. A configuration object is created inside the test class & this configuration object contains a virtual interface property. Code compiled in one compilation unit is not visible to another compilation unit. 1. Main concepts of UVM (1) • Clear separation of test stimuli (sequences) and test bench –Sequences are treated as ‘transient objects’ and thus independent from the test bench construction and compositionHow to use the UVM configuration facility? Configuration values are set in the uvm_config_db class using the set() method and retrieved using the get() method. Intro. UVM uses the concept of a factory where all objects are registered with it so that it can return an object of the requested type when required. Read more: UVM Object [uvm_object] In my last post, I recommended that you give every SystemVerilog object either a unique ID or name. UVM Testbench 작성 00장 둘러보기 00. svh" endpackage. ), instance identification fields (name, type name, unique id, etc. S. It is the base class for all UVM data and hierarchical classes. base. Constraints may be added via inheritance in a derived class. uvm_report_object. the reason for this is that for IUS the m_inst_id is being set to the. We have seen put and get methods to operate with only one outstanding transaction at a time i. Place the callback hook. Refer to “Macros” in the UVM 1. Abstract- SystemVerilog provides several mechanisms for layering constraints in an object. 02 SystemVerilog 기초 1 01. I have tried to import it into my project and it seems like the errors were from a wrong compilation order: "uvm_object is not declared", "uvm_barrier is already declared", etc. 02. の間に挟んで使うマクロです。. Its intention is to print the name of the type of a given object instance. 2-2020 standard. The utility macros help to register each object with the factory. uvm_reg_sequence. Here are the general steps to create and use a register. Using do_record. svh" `include "packet_sequencer. The code guideline for our verification environment is one class per file. Learn more about TeamsT – Object type where user-defined callback is used and it must be derived from uvm_object. We would like to show you a description here but the site won’t allow us. The uvm_object_registry serves as a lightweight proxy for a uvm_object of type T and type name Tname, a string. 1에서는 uvm_object에 대한 constructor가 필수 사항이 아니었지만, UVM 1. class tx_item extends uvm_sequence_item;. These work predictably with non-parameterized classes as shown here. Classes deriving from uvm_object must implement the pure virtual methods such as create and get_type_name. You can use the uvm_object_registry (T,S) or uvm_component_registry (T,S) registration macros. This class will also need to be able to get information from the config_db using hierarchical paths, and plain old uvm_objects don't have hierarchy. uvm_comparer is the standalone class used to set a policy for doing comparisons and determines how miscompares are counted. It is a standardized methodology for verifying digital designs and systems-on-chip (SoCs) in the semiconductor industry. This proxy object is of uvm_component_registry class parameterized with the type of the initially desired component/object. Objections provide a facility for coordinating status information between two or more participating. Example 1 - Standard new() constructor for UVM components For transactions (data objects), each object is a unit of data with multiple fields, and transactions do not have a parent. uvm_config_db is a parameterized class that is parameterized with the data type of object that is being set or get. You can think of any method call as having an implicit this argument. A message with the UVM_NONE level is. uvm_factory. argument object. Steps involved are, Write callback class. Length: 4 Days (32 hours) The Universal Verification Methodology (UVM) is the IEEE1800. But, virtual_sequence and virtual_sequencer do not require any virtual keyword. I'm looking for a way to get all instances of a given uvm_object class, preferably filtering with hierarchy/scope and name. Implementations of uvm_object::do_pack and uvm_object::do_unpack should regard this bit when performing their respective operation. You are mixing up the terms parent and child with the principals of class inheritance. The UVM recommends that the following constructor be specified for any class extended from uvm_object: However, in UVM 1. 02 SystemVerilog 기초 1 01. class my_test extends uvm_test uvm_table_printer m_printer; //. Share. Pack A class called Packet is defined with some variables to store address and data, and is registered with `uvm_field_int macros to enable automation. The uvm_void class is the base class for all UVM classes. Tx t1, t2; t1 = new (); t1. UVM components support logging with the following steps. The factory is a special class in UVM that creates an instance for you of whatever uvm_object or uvm_component type you specify. All counts are cleared and the any processes waiting on a call to wait_for(UVM_ALL_DROPPED, uvm_top) are released. method_call() is really method_call(. UVM is based on Open Verification Methodology (OVM) and Verification Methodology Manual (VVM). uvm_config_db# (rx_agent_cfg)::get (null, "uvm_test_top. 2 uvm_object constructor. do_pack. uvm_reg::update. UVM tutorial for beginners Introduction Introduction to UVM UVM TestBench TestBecnh Hierarchy and BlockDiagram UVM Sequence item Utility & Field Macros Methods with example Create Print Copy Clone Compare Pack UnPack UVM Sequence Sequence Methods Sequence Macros Sequence Example codes UVM Sequence control UVM. In the UVM, there are mechanisms to automate the retrieval of data from the configuration database. 1, the presence of such a constructor is not enforced by the library and they are technically optional. This code follows the convention that member variables start with the prefix of. The scope of the randomize() object is the this argument inside. 03 Operators 01. Supposed that your component name is "comp" in ENV, and the env is named "env" in the uvm_test, so in test bench top module, you should use below code to get the configuration handle. Simple (non-parameterized) objects use the uvm_object_utils* versions, which do the following: Implements get_type_name, which returns TYPE as a string; Implements create, which allocates an object of type TYPE by calling its constructor with no arguments. Factory is a singleton object and there is only one instance of the factory in a UVM environment. How do we ensure that this Configuration class can easily be propagated across the testbench environment? In UVM, objects are often instantiated through the factory infrastructure. logger. 06 Array Operators and Methods 01. You need to create an array of ral_block_traffic_cfg objects: rand ral_block_traffic_cfg cfg [2]; You created an array of type uvm_reg_block, named it ral_cfg, but it has nothing to do with the ral_block_traffic_cfg object. The important thing to remember is that each entry needs a unique field name or label (if the global scope is being used), or the path needs to1 Answer. When used as a base for user-defined RegModel test sequences, this class provides convenience methods for reading and writing registers and memories. SNUG 2012 6 The OVM/UVM Factory & Factory OverridesThe UVM register layer acts similarly by modeling and abstracting registers of a design. path","label",value) (Adding other objects into the uvm_config_db is just as straightforward as adding a virtual interface. Because phases are defined as callbacks, classes derived from uvm_component can perform useful work. g. Before moving to uvm_sequence_item will look into uvm_object concepts required to write uvm_sequence_item, The uvm_object has a number of virtual methods that are used to implement common data object functions (copy, clone, compare, print, transaction, and recording) and these should be implemented to make the sequence_item more general purpose. Then you can do: typedef uvm_object_registry# (abc_test_seq,`STR (`SEQ_NAME (abc))) type_id;. The uvm_resource#(type T) is a parameterized class that provides additional functions like read() and write() for resource operation. Later on, we want to run the same set of tests created above, using the same transaction. The uvm_heartbeat class is derived from uvm_object and it is associated with a specific objection object. ”. If we already have a data object that we simply want to send to a sequencer, we can use `uvm_send. 02. Block abstraction base class. The UVM Test typically performs three main functions: Instantiates the top-level environment, configures the environment (via configuration objects, factory overrides or the configuration database), and applies stimulus by. It is the base class for all UVM data and hierarchical classes. Objects using set() and get() must use exactly the same name, otherwise the receiving party (get()) will fail to find the object from uvm_config_db. The UVMObject class is the base class for all UVM data and hierarchical classes. Constraints may be added via inheritance in a derived class. by The Art of Verification. UVMFactory [source] ¶. These macros form a block in which `uvm_field_* macros can be placed. Overriding a type involves the following steps: Firstly, the. Since the uvm_sequence_item class is extended from the uvm_object class, it inherits the print method which is used to display the class variables. It has various methods to create different uvm_component or uvm_object instances and also to override it. event_object event_object_h; uvm_object temp_obj; . data = 2; t1. The argument will be evaluated before the quotes added. Memory abstraction base class. It works with uvm_object and interface. Unfortunately, SystemVerilog does not provide a good way to saveCreates a new event object. get_trigger_data. The create function asks the UVM factory to create an object. 2. answered Apr 21, 2014 at 0:28. pyuvm is the Universal Verification Methodology implemented in Python instead of SystemVerilog. The uvm_event class is directly derived from the uvm_object class. このページの最後に載せておきます。. registered with the factory using `uvm_object_utils, `uvm_component_utils, etc. The paper explains how UVM can be integrated with SystemC using the UVM-ML Open Architecture, a framework that enables interoperability between different. Similarly, in the second line, the all to the "uvm_root" static get method returns a reference to the top-level "uvm_root" object and we are calling the "set_timeout" method on that object. We would like to show you a description here but the site won’t allow us. The code inside that class does something similar to what class A did above, except that it builds a global list of all string names and their associated types that can be used by the factory. pyuvm implements the most often-used parts of the UVM while taking advantage of the fact that Python does not have strict typing and does not require parameterized classes. The UVM factory allows an object of one type to be overridden with an object of its derived type without changing the testbench structure. Blocks. I've used uvm_queue because there isn't any trivial container object in UVM. These macros are called by the corresponding uvm_*_utils macros, so you may only use them if you do. After the utility macro are the field automation macros in the form ‘uvm_field_*(data member, flag). It is an abstract class with no data members or functions. uvm_event is used to synchronize the two processes. The UVM configuration database is a global repository that allows you to pass configuration information, such as parameters, objects, or handles, between different UVM components. events. UVM Field Macros. We’ve already talked about how the factory uses uvm_object_wrappers to perform the actual creation and maps type names to such objects. There are four basic reporting functions that can be used with different verbosity levels. uvm_object - Data structures for testbench configuration; uvm_transaction - Stimulus generation & analysis; The values of the arguments of new method are used to create an entry in a linked list which the UVM uses to locate uvm_components in a pseudo hierarchy, this list is used in the messaging and configuration mechanisms. UVM FACTORY. We would like to show you a description here but the site won’t allow us. Static components & Dynamic components. Gets the data, if any, provided by the last call to trigger. As you say, the UVM field automation macros generate a number of class utility methods such as copy, print and clone that include the registered fields. A policy object can be passed along to set parameters like depth of comparison, verbosity, maximum number of. UVM factory is a mechanism to improve flexibility and scalability of the testbench by allowing the user to substitute an existing class object by any of its inherited child class objects. Yes, the UVM create() method calls new() constructor on the object without any arguments (string name is not passed in there). 2, the UVM object factory now requires that uvm_object have a constructor. virtual function uvm_object. The singleton instance of uvm_coreservice_t provides a common point for all central uvm services such as uvm_factory, uvm_report_server and so on. to pass it to sequencer. is just the same as the previous two, you need to use them when your uvm_object or uvm_component has parameters. uvm_transaction and uvm_component are also derived from uvm_object. So, a data class derived from uvm_sequence_item or uvm_component will have access to the print() function as well. You can either have a drive_item task in the driver, or you can call a. Jun 20, 2014 at 15:54. Better yet, don't use any field macros at all as they are horribly inefficient. 0 using simple producer/consumer examples. The handle to the uvm_resource object is stored in two kinds of uvm_queues. Instances of these classes can pass any object. Improve this answer. For example: `define STR (str) `"str`". In the case of UVM based System Verilog testbench, class objects can be created at any time during the simulation based on the requirement. We would like to show you a description here but the site won’t allow us. raise_objection()을 호출하면 uvm_object 클래스의 카운트가 증가해서 0 값이 아닌 다른 값을 가지게 되고 그러면 uvm_phase의 phase executer가 시뮬레이션을 종료하지 않게 됩니다. method_call() is really method_call(. The uvm_void class is the base class for all UVM classes. randomize with {…} or `uvm_do_with) permit specifying additional constraints when randomizing an object. It makes sense to include print features in uvm_object so that all child classes will automatically gain access to those features. The UVM TLM library defines several abstract, transaction-level interfaces and the ports and. virtual function void print_string (string name, string value, byte scope_separator = “. Nearly all UVM classes are extended from uvm_object. This would have provided a better separation of concerns. Tudor Timi Tudor Timi. Line 11-Line 15 Use the UVM functions to automatically implement functions such as copy(), compare(), print(), pack(), and so on. This solution randomize the knobs, not the sequence (ie. `uvm_object_utils. It looks like you have a compilation of uvm_pkg from a previous run that is conflicting with this run. set_type_override_by_name ("base_sequence",`STR (`SEQ_NAME. Class Hierarchy Class Definition See full list on chipverify. Here is a transaction class. Try these examples yourself. This is known as the UVM factory override mechanism. Objects of this type will be used by sequences. I need to pass parameters to each element of this array. That is the macro call is delegated to a uvm_report_error() function call. SNUG 2018 Page 6 SystemVerilog Virtual Classes, Methods, Interfaces Rev 1. Create a custom class inherited from uvm_env, register with factory, and call new. Test program작성 및 script 작성. Extend that class and implement the virtual method. `uvm_object_param_utils. dave_59. Macro. 2에서는 반드시 constructor를 기술하여야 한다. 3. 01 Building blocks in SystemVerilog 01. 613. Using do_copy. base. The UVM is completely described in the IEEE 1800. The first step is to use macros to register all the class types with the factory. raise_objection (uvm_object obj = null, string description = ” “, int count = 1) Raises number of objections for corresponding object with default count = 1. The events provide synchronization between processes by triggering an event from one process and waiting for that event in another process to be triggered. This is applicable for uvm objects and components. So UVM phases act as a synchronizing mechanism in the life cycle of a simulation. . The specialized class type_id gives us access to all the static declarations inside ovm_object_registry. Unfortunately this wont work yet because we have to register seq_item as follows `uvm_object_param_utils(seq_item#(A)). Classes deriving from UVMObject must implement methods such as create and get_type_name. 1 Inheritance and Constraint Layering ¶ In our previous two posts in this series on Python as a verification language, we examined Python coroutines and using coroutines to create cocotb bus functional models. The uvm_component_registry class extends uvm_object_wrapper and implements its create_component() function, but it also has many other functions related to registering itself with the factory and handling type overrides. Building UVM Verification Environment from Scratch. Object Overriding; UVM Phases; UVM Objections; UVM Object. Its primary role is to define a set of methods for such common operations as create , copy, compare, print, and record . e. uvm_event_pool is a pool that stores the uvm_events. Use uvm_config_db# (uvm_object)::set. General guideline is: `uvm_do. UVM tutorial for beginners Introduction Introduction to UVM UVM TestBench TestBecnh Hierarchy and BlockDiagram UVM Sequence item Utility & Field Macros Methods with example Create Print Copy Clone Compare Pack UnPack UVM Sequence Sequence Methods Sequence Macros Sequence Example codes UVM Sequence control UVM. I can't use a generate loop inside the class and I couldn't find out a way to use a for loop to pass the individual parameters. UVM TestBench to verify Memory Model. Field definition remains the same as print_field method. Teams. If we expand the macro, it will call m_uvm_object_registry_param(T) define where there is a typedef of uvm_object_registry#(T). The primary role of uvm_object class is to define a set of common utility functions like print, copy, compare and record which can be availed by any other class in a UVM testbench to save effort. The uvm_printer class provides an interface for printing uvm_object s in various formats (line 1). `uvm_create (Item/Seq) This macro creates the item or sequence. OOP design patterns take reuse another step. UVM configuration provides. Both UVM Factories allow you to create objects, either the base type or a derived, without changing the call to create(). This can be useful for peak and off-peak times. Unfortunately, SystemVerilog does not provide a good way to save Creates a new event object. The constructor of uvm_component adds a uvm_component parent argument which is used to create. 01 Simulation 환경 01장 SystemVerilog for Testbench 01. Similarly uvm_object::compare() calls the __m_uvm_field_automation() with UVM_COMPARE. These macros can appear anywhere in the declaration space of the class declaration of T and will associate the string S to the object type T. For transactions, the typical constructor is shown in Example 2. Jun 20, 2014 at 15:13. “value” is the actual object handle shared through the uvm_config_db. Implementations of uvm_object::do_pack and uvm_object::do_unpack should regard this bit when performing their respective operation. A utils macro should be used inside every user-defined class that extends uvm_object directly or indirectly, including uvm_sequence_item and uvm_component. ; The user-defined subscriber is derived from uvm_subscriber that must define the write method (A write method is a pure virtual method that is declared in the uvm_subscriber class). Implement the callback method. The clone () method was declared in uvm_object and returns a handle of type uvm_object. uvm_component provide a set of convenience functions that call the uvm_factory member functions with a simplified interface. Set the default sequencer that should execute this sequence. g. 02. Here is a transaction class. Hence, it is required to have proper synchronization to avoid objects/components being called before they are created, The UVM phasing mechanism serves the purpose of synchronization. The uvm_object class is the base class for all UVM data and hierarchical classes. It is an object that is used for instantiating other objects. uvm_object クラスはアブストラクト・クラスである為、uvm_object のインスタンスを作る事は出 来ません。但し、uvm_object クラスのハンドルを定義する事は可能です。例えば、メソッドの引 数として generic なハンドルを宣言する為に使用する事. argument object. 04 Packed and Unpacked arrays 01. Using automation macros. this(obj)). In order to have the resource automatically retrieved two things must happen: First, that resource has to be registered with the factory using the field automation macros. reg. uvm_report_error(). The function that is actually called depends on the context where the macro is used. They allow access to the functions copy, compare, pack, unpack, record. Functions. UVM REPORTING The uvm_report_object provides an interface to the UVM reporting facility. 2. Each resource has a set of scope. 만약 +UVM_OBJECT_DO_NOT_NEED_CONSTRUCTOR 옵션을 설정하는 경우 constructor를 기술하지 않을 수 있지만 권장하지는 않는다. virtual function void print_object (string name, uvm_object value, byte scope_separator = ” . UVM에서는 reusable testbench를 강조하는데, 이때 많은 configuration field들을 가진 config class를 작성하여 agent와 내부의 driver, sequencer, monitor등에서 사용한다. A uvm_queue is created for every unique field_name. id = 42; At this point you might be tempted to call the object “t1”. In our case, two uvm_queues are created; one for the "jb_if1" and the other for the "jb_if2". 1. You can use wildcards in the. A UVM sequence is just a SystemVerilog object that is constructed by calling new. It performs a deep copy. UVM also introduces a bunch of automation mechanisms for implementing print, copy, and compare objects and are defined using the field macros. So, a data class derived from uvm_sequence_item or uvm_component will have access to the print() function as well. A policy object can be passed along to set parameters like depth of comparison, verbosity, maximum number of. A cleaner implementation would have been for uvm_component_registry to be its own class, that doesn’t extend uvm_object_wrapper, that instead creates an instance of a uvm_object_wrapper and registers it with the factory instead of itself. 1 library. pyuvm uses cocotb to interact with the simulator and schedule simulation events. The utils macros define the infrastructure needed to enable the object/component for correct factory operation. There are two branches in the hierarchy : Under uvm_component: Classes that define verification components like driver, monitor and. Line 11-Line 15 Use the UVM functions to automatically implement functions such as copy(), compare(), print(), pack(), and so on. On calling `uvm_do () the above-defined 6 steps will be executed. Define your virtual method, for example wait_state, but leave it empty. An uvm_component inherits from. Using start_item/finish_item methods. __init__() if you override the __init__() method in a uvm_component. An appropriate `uvm_field_* macro is required to use based on the data type of class properties. If no argument is specified (or an argument. The register model can be used to read and write registers in the DUT, including signals connected to those registers. In other words, uvm_objects are transient, such as transactions that are created when needed and disappear when not used anymore. You most likely compiled these two code classes separately in separate files. This concept is widely used in UVM, especially the uvm_config_db configuration database. When the component (my_monitor) calls analysis_port. This is useful when you want to affect the with in a particular uvm_object can can be made scalable by overriding the do_print() method. Follow. After the utility macro are the field automation macros in the form ‘uvm_field_*(data member, flag). 04 Packed and Unpacked arrays 01. With Easier UVM, configuration parameters should be accesed by calling uvm_config_db # (T)::get. OOP enables writing reusable code. 总结:在多进程IP中,寄存器模型 中参数uvm_object extension的使用可以极大的方便验证工程师的工作。. What is uvm_pool. randomize() are the same method call. The first kind of queues store the handles to the uvm_resource objects that have the common field_name. A function cannot have time controlled statements like @, #, fork join, or wait; A function cannot start a task since tasks are allowed to consume. UVM_WARNING @ 0: reporter [TPRGED] Type name 'packet2mem_comp_Str' already registered with factory. The reason being packet and packetD are type compatible, since packetD is an extension of packet. 1. We have already seen how to use `uvm_do set of macros. Conclusion. For overriding uvm_object or sequences, type overriding is recommended to use since instance overriding requires a hierarchical path. To avoid the overhead of creating an instance of every component and object that get registered, the factory holds lightweight wrappers, or proxies. This flexibility allows comprehensive testing of different configurations using a single, reusable testbench, significantly reducing development time and effort. If user wants to run a test with PCIe speed = Gen2 and lanes = x2, then this can be achieved simply by having +link_speed=gen2 and +lanes=2 on command line arguments, and in verification. Registration: While defining a class , its type has to be registered with the uvm factory. `uvm_object_utils_begin. A flat uvm_config_db with wildcard scopes and many entries can be a performance hog. // Create a new class with a single member called // count that stores integer values class Packet; int count; endclass module tb; // Create two "handles" for the class Packet // Note: These "handles" now. Overall Implementation To link the RAL with the configuration object, we initialize the registers in every configuration object as handlesThe callback pool is a singleton object that can be accessed by calling uvm_callbacks#(T)::get_global_pool() or uvm_component::get_callback_pool(), where T is the type of the UVM class or component. The monitor captures values on the DUT's input and output pin. A parent creates a child, and the uvm_component represents a hierarchal family tree in a database. The recommended method in UVM for creating components or transaction objects is to use the built-in method::type_id::create () instead of calling the constructor new () directly. Using clone method. The scope, which is a uvm_component handle plus a string. We would like to show you a description here but the site won’t allow us. UVM REPORTING The uvm_report_object provides an interface to the UVM reporting facility. This port contains a list of analysis exports that are connected to it. Pre-defined Verbosity Levels. e. 1 Answer. The intention behind a virtual function is to support polymorphism. The lack of typing means a lack of parameterized ports, exports, and uvm_tlm_fifos. Accellera UVM Tutorial 2016 is a comprehensive presentation that covers the basics and advanced features of the Universal Verification Methodology (UVM), a standard framework for creating reusable and portable verification components and environments. The update can be performed using the using the physical interfaces (frontdoor) or uvm_reg::poke () (backdoor) access. You should be compiling classes into a package. pyuvm is the Universal Verification Methodology implemented in Python instead of SystemVerilog. The print method is used to deep print UVM object class properties in a well-formatted manner. In our case, two uvm_queues are created; one for the "jb_if1" and the other for the "jb_if2". UVM Heartbeat Usage. A uvm_queue is created for every unique field_name. get_type_name isn't intended to print the name of a type. A resource is any piece of information that is shared between more than one component or object. It is an abstract class with no data members or functions. Abstract- SystemVerilog provides several mechanisms for layering constraints in an object. It makes sense to include print features in uvm_object so that all child classes will automatically gain access to those features. But, virtual_sequence and virtual_sequencer do not require any virtual keyword. There is often a need to copy, compare and print values in these classes. EXECUTING A SEQUENCE ITEM — THE DRIVER. factory. This keeps your code base stable,. Nested classes are fully supported by SystemVerilog. Type can be scalar objects, class handles, queues, lists, or even virtual interfaces) cntxt is the hierarchical starting point of where the database entry is. Register the callback class. The. FollowSimple (non-parameterized) objects use the uvm_object_utils* versions, which do the following: Implements get_type_name, which returns TYPE as a string; Implements create, which allocates an object of type TYPE by calling its constructor with no arguments. 0 ‐ Their Use in Verification and UVM The prototype of the virtual function in Figure 1 is the header code: virtual function bit do_compare (uvm_object rhs, uvm_comparer comparer); This virtual method prototype includes five required elements: (1) the return type is bit, (2) theIn Introduction, we saw that most of the verification components are inherited from uvm_report_object and hence they already have functions and methods to display messages. wait_ptrigger_data. The next step is to have the a UVM component grab the parameters from the configuration object. If you are looking to print the entire topology, create a uvm_table_printer in your base test, and then use it in your end_of_elaboration_phase to print your class heirarchy in table format. Deploying Parameterized Interface with UVM Wayne Yun AMD, Inc. 2 User’s Guide. The do_pack() method is called by the pack(), pack_bytes(), and pack_ints() methods.