Class uvm_pkg::uvm_packer
Collaboration Diagram of uvm_packer
Name |
Type |
Description |
---|---|---|
physical |
bit |
|
abstract |
bit |
Variable abstract This bit provides a filtering mechanism for fields. The abstract and physical settings allow an object to distinguish between two different classes of fields. It is up to you, in the uvm_object::do_pack and uvm_object::do_unpack routines, to test the setting of this field if you want to use it as a filter. |
use_metadata |
bit |
Variable use_metadata This flag indicates whether to encode metadata when packing dynamic data, or to decode metadata when unpacking. Implementations of uvm_object::do_pack and uvm_object::do_unpack should regard this bit when performing their respective operation. When set, metadata should be encoded as follows:
|
big_endian |
bit |
Variable big_endian This bit determines the order that integral data is packed (using pack_field, pack_field_int, pack_time, or pack_real) and how the data is unpacked from the pack array (using unpack_field, unpack_field_int, unpack_time, or unpack_real). When the bit is set, data is associated msb to lsb; otherwise, it is associated lsb to msb. The following code illustrates how data can be associated msb to lsb and lsb to msb: class mydata extends uvm_object; logic[15:0] value = 'h1234; function void do_pack (uvm_packer packer); packer.pack_field_int(value, 16); endfunction function void do_unpack (uvm_packer packer); value = packer.unpack_field_int(16); endfunction endclass mydata d = new; bit bits[]; initial begin d.pack(bits); // 'b0001001000110100 uvm_default_packer.big_endian = 0; d.pack(bits); // 'b0010110001001000 end |
bitstream |
bit |
variables and methods primarily for internal use local bits for (un)pack_bytes |
fabitstream |
bit |
field automation bits for (un)pack_bytes |
count |
int |
used to count the number of packed bits |
scope |
||
reverse_order |
bit |
Flip the bit order around |
byte_size |
byte |
Set up bytesize for endianess |
word_size |
int |
Set up worksize for endianess |
nopack |
bit |
Only count packable bits |
policy |
Functions
- pack_field(uvm_bitstream_t value, int size)
Function
pack_field
Packs an integral value (less than or equal to 4096 bits) into the packed array. size is the number of bits of value to pack. Pack_field
- Parameters:
value (uvm_bitstream_t)
size (int)
- pack_field_int(uvm_integral_t value, int size)
Function
pack_field_int
Packs the integral value (less than or equal to 64 bits) into the pack array. The size is the number of bits to pack, usually obtained by $bits . This optimized version of pack_field is useful for sizes up to 64 bits. Pack_field_int
- Parameters:
value (uvm_integral_t)
size (int)
- pack_bits(bit value, int size = -1)
Function
pack_bits
Packs bits from upacked array of bits into the pack array.
See pack_ints for additional information. Pack_bits
- Parameters:
value (bit)
size (int)
- pack_bytes(byte value, int size = -1)
Function
pack_bytes
Packs bits from an upacked array of bytes into the pack array.
See pack_ints for additional information. Pack_bytes
- Parameters:
value (byte)
size (int)
- pack_ints(int value, int size = -1)
Function
pack_ints
Packs bits from an unpacked array of ints into the pack array.
The bits are appended to the internal pack array. This method allows for fields of arbitrary length to be passed in, using the SystemVerilog stream operator.
For example
bit[511:0] my_field; begin int my_stream[]; { << int {my_stream}} = my_field; packer.pack_ints(my_stream); end
When appending the stream to the internal pack array, the packer will obey the value of big_endian (appending the array from MSB to LSB if set).
An optional size parameter is provided, which defaults to '-1'. If set to any value greater than '-1' (including 0), then the packer will use the size as the number of bits to pack, otherwise the packer will simply pack the entire stream.
An error will be asserted if the size has been specified, and exceeds the size of the source array. Pack_ints
- Parameters:
value (int)
size (int)
- pack_string(string value)
Function
pack_string
Packs a string value into the pack array.
When the metadata flag is set, the packed string is terminated by a null character to mark the end of the string.
This is useful for mixed language communication where unpacking may occur outside of SystemVerilog UVM. Pack_string
- Parameters:
value (string)
- pack_time(time value)
Function
pack_time
Packs a time value as 64 bits into the pack array. Pack_time
- Parameters:
value (time)
- pack_real(real value)
Function
pack_real
Packs a real value as 64 bits into the pack array.
The real value is converted to a 6-bit scalar value using the function $real2bits before it is packed into the array. Pack_real
- Parameters:
value (real)
- pack_object(uvm_object value)
Function
pack_object
Packs an object value into the pack array.
A 4-bit header is inserted ahead of the string to indicate the number of bits that was packed. If a null object was packed, then this header will be 0.
This is useful for mixed-language communication where unpacking may occur outside of SystemVerilog UVM. Pack_object
- Parameters:
value (uvm_object)
- is_null()
Function
is_null
This method is used during unpack operations to peek at the next 4-bit chunk of the pack data and determine if it is 0.
If the next four bits are all 0, then the return value is a 1; otherwise it is 0.
This is useful when unpacking objects, to decide whether a new object needs to be allocated or not. Is_null
- unpack_field(int size)
Function
unpack_field
Unpacks bits from the pack array and returns the bit-stream that was unpacked. size is the number of bits to unpack; the maximum is 4096 bits. Unpack_field
- Parameters:
size (int)
- Return type:
- unpack_field_int(int size)
Function
unpack_field_int
Unpacks bits from the pack array and returns the bit-stream that was unpacked.
size is the number of bits to unpack; the maximum is 64 bits. This is a more efficient variant than unpack_field when unpacking into smaller vectors. Unpack_field_int
- Parameters:
size (int)
- Return type:
- unpack_bits(bit value, int size = -1)
Function
unpack_bits
Unpacks bits from the pack array into an unpacked array of bits. Unpack_bits
- Parameters:
value (bit)
size (int)
- unpack_bytes(byte value, int size = -1)
Function
unpack_bytes
Unpacks bits from the pack array into an unpacked array of bytes. Unpack_bytes
- Parameters:
value (byte)
size (int)
- unpack_ints(int value, int size = -1)
Function
unpack_ints
Unpacks bits from the pack array into an unpacked array of ints.
The unpacked array is unpacked from the internal pack array. This method allows for fields of arbitrary length to be passed in without expanding into a pre-defined integral type first.
For example
bit[511:0] my_field; begin int my_stream[] = new[16]; // 512/32 = 16 packer.unpack_ints(my_stream); my_field = {<<{my_stream}}; end
When unpacking the stream from the internal pack array, the packer will obey the value of big_endian (unpacking the array from MSB to LSB if set).
An optional size parameter is provided, which defaults to '-1'. If set to any value greater than '-1' (including 0), then the packer will use the size as the number of bits to unpack, otherwise the packer will simply unpack the entire stream.
An error will be asserted if the size has been specified, and exceeds the size of the target array. Unpack_ints
- Parameters:
value (int)
size (int)
- unpack_string(int num_chars = -1)
Function
unpack_string
Unpacks a string.
num_chars bytes are unpacked into a string. If num_chars is -1 then unpacking stops on at the first null character that is encountered. If num_chars is not -1, then the user only wants to unpack a specific number of bytes into the string.
- Parameters:
num_chars (int)
- unpack_time()
Function
unpack_time
Unpacks the next 64 bits of the pack array and places them into a time variable. Unpack_time
- unpack_real()
Function
unpack_real
Unpacks the next 64 bits of the pack array and places them into a real variable.
The 64 bits of packed data are converted to a real using the $bits2real system function. Unpack_real
- unpack_object(uvm_object value)
Function
unpack_object
Unpacks an object and stores the result into value .
value must be an allocated object that has enough space for the data being unpacked. The first four bits of packed data are used to determine if a null object was packed into the array.
The is_null function can be used to peek at the next four bits in the pack array before calling this method.
- Parameters:
value (uvm_object)
- get_packed_size()
Function
get_packed_size
Returns the number of bits that were packed. Get_packed_size
- unpack_object_ext(uvm_object value)
Unpack_object
- Parameters:
value (uvm_object)
- get_packed_bits()
Get_packed_bits
- Return type:
- get_bit(int unsigned index)
Get_bit
- Parameters:
index (int unsigned)
- get_byte(int unsigned index)
Get_byte
- Parameters:
index (int unsigned)
- get_int(int unsigned index)
Get_int
- Parameters:
index (int unsigned)
- get_bits(bit unsigned bits)
Get_bits
- Parameters:
bits (bit unsigned)
- get_bytes(byte unsigned bytes)
Get_bytes
- Parameters:
bytes (byte unsigned)
- get_ints(int unsigned ints)
Get_ints
- Parameters:
ints (int unsigned)
- put_bits(bit unsigned bitstream)
Put_bits
- Parameters:
bitstream (bit unsigned)
- put_bytes(byte unsigned bytestream)
Put_bytes
- Parameters:
bytestream (byte unsigned)
- put_ints(int unsigned intstream)
Put_ints
- Parameters:
intstream (int unsigned)
- set_packed_size()
Set_packed_size
- index_error(int index, string id, int sz)
Index_ok
- Parameters:
index (int)
id (string)
sz (int)
- enough_bits(int needed, string id)
Enough_bits
- Parameters:
needed (int)
id (string)
- reset()
Reset
Variable
physical
This bit provides a filtering mechanism for fields.
The abstract and physical settings allow an object to distinguish between two different classes of fields. It is up to you, in the uvm_object::do_pack and uvm_object::do_unpack methods, to test the setting of this field if you want to use it as a filter.