Class uvm_pkg::uvm_sequencer_base
Inheritance Diagram of uvm_sequencer_base
Name |
Type |
Description |
---|---|---|
count |
int |
Variable- count Sets the number of items to execute. Supercedes the max_random_count variable for uvm_random_sequence class for backward compatibility. |
max_random_count |
int unsigned |
|
max_random_depth |
int unsigned |
|
sequences |
string |
Constructors
- new(string name, uvm_component parent)
Function
new
Creates and initializes an instance of this class using the normal constructor arguments for uvm_component: name is the name of the instance, and parent is the handle to the hierarchical parent. New
- Parameters:
name (string)
parent (uvm_component)
Enums
- seq_req_t
- Enum Items:
SEQ_TYPE_REQ
SEQ_TYPE_LOCK
SEQ_TYPE_GRAB
FIXME SEQ_TYPE_GRAB is unused
Functions
- is_child(uvm_sequence_base parent, uvm_sequence_base child)
Function
is_child
Returns 1 if the child sequence is a child of the parent sequence, 0 otherwise. Is_child
- Parameters:
parent (uvm_sequence_base)
child (uvm_sequence_base)
- user_priority_arbitration(integer avail_sequences)
Function
user_priority_arbitration
When the sequencer arbitration mode is set to UVM_SEQ_ARB_USER (via the set_arbitration method), the sequencer will call this function each time that it needs to arbitrate among sequences.
Derived sequencers may override this method to perform a custom arbitration policy. The override must return one of the entries from the avail_sequences queue, which are indexes into an internal queue, arb_sequence_q.
The default implementation behaves like UVM_SEQ_ARB_FIFO, which returns the entry at avail_sequences[0]. User_priority_arbitration
- Parameters:
avail_sequences (integer)
- start_phase_sequence(uvm_phase phase)
Start_phase_sequence
- Parameters:
phase (uvm_phase)
- stop_phase_sequence(uvm_phase phase)
Function
stop_phase_sequence
Stop the default sequence for this phase, if any exists, and it is still executing. Stop_phase_sequence
- Parameters:
phase (uvm_phase)
- is_blocked(uvm_sequence_base sequence_ptr)
Function
is_blocked
Returns 1 if the sequence referred to by sequence_ptr is currently locked out of the sequencer. It will return 0 if the sequence is currently allowed to issue operations.
Note that even when a sequence is not blocked, it is possible for another sequence to issue a lock before this sequence is able to issue a request or lock. Is_blocked
- Parameters:
sequence_ptr (uvm_sequence_base)
- has_lock(uvm_sequence_base sequence_ptr)
Function
has_lock
Returns 1 if the sequence referred to in the parameter currently has a lock on this sequencer, 0 otherwise.
Note that even if this sequence has a lock, a child sequence may also have a lock, in which case the sequence is still blocked from issuing operations on the sequencer. Has_lock
- Parameters:
sequence_ptr (uvm_sequence_base)
- unlock(uvm_sequence_base sequence_ptr)
Function
unlock
Removes any locks and grabs obtained by the specified sequence_ptr. Unlock
- Parameters:
sequence_ptr (uvm_sequence_base)
- ungrab(uvm_sequence_base sequence_ptr)
Function
ungrab
Removes any locks and grabs obtained by the specified sequence_ptr. Ungrab
- Parameters:
sequence_ptr (uvm_sequence_base)
- stop_sequences()
Function
stop_sequences
Tells the sequencer to kill all sequences and child sequences currently operating on the sequencer, and remove all requests, locks and responses that are currently queued. This essentially resets the sequencer to an idle state. Stop_sequences
- is_grabbed()
Function
is_grabbed
Returns 1 if any sequence currently has a lock or grab on this sequencer, 0 otherwise. Is_grabbed
- current_grabber()
Function
current_grabber
Returns a reference to the sequence that currently has a lock or grab on the sequence. If multiple hierarchical sequences have a lock, it returns the child that is currently allowed to perform operations on the sequencer. Current_grabber
- Return type:
- has_do_available()
Function
has_do_available
Returns 1 if any sequence running on this sequencer is ready to supply a transaction, 0 otherwise. A sequence is ready if it is not blocked (via grab or lock and is_relevant returns 1. Has_do_available
- set_arbitration(UVM_SEQ_ARB_TYPE val)
Function
set_arbitration
Specifies the arbitration mode for the sequencer. It is one of
-
UVM_SEQ_ARB_FIFO
-
Requests are granted in FIFO order (default)
-
UVM_SEQ_ARB_WEIGHTED
-
Requests are granted randomly by weight
-
UVM_SEQ_ARB_RANDOM
-
Requests are granted randomly
-
UVM_SEQ_ARB_STRICT_FIFO
-
Requests at highest priority granted in FIFO order
-
UVM_SEQ_ARB_STRICT_RANDOM
-
Requests at highest priority granted in randomly
-
UVM_SEQ_ARB_USER
-
Arbitration is delegated to the user-defined function, user_priority_arbitration. That function will specify the next sequence to grant.
- Parameters:
val (UVM_SEQ_ARB_TYPE)
-
- get_arbitration()
Function
get_arbitration
Return the current arbitration mode set for this sequencer. See set_arbitration for a list of possible modes. Get_arbitration
- Return type:
- send_request(uvm_sequence_base sequence_ptr, uvm_sequence_item t, bit rerandomize = 0)
Function
send_request
Derived classes implement this function to send a request item to the sequencer, which will forward it to the driver. If the rerandomize bit is set, the item will be randomized before being sent to the driver.
This function may only be called after a wait_for_grant call. Send_request
- Parameters:
sequence_ptr (uvm_sequence_base)
rerandomize (bit)
- set_max_zero_time_wait_relevant_count(int new_val)
Function
set_max_zero_time_wait_relevant_count
Can be called at any time to change the maximum number of times wait_for_relevant() can be called by the sequencer in zero time before an error is declared. The default maximum is 10. Set_max_zero_time_wait_relevant_count
- Parameters:
new_val (int)
- kill_sequence(uvm_sequence_base sequence_ptr)
Kill_sequence
- Parameters:
sequence_ptr (uvm_sequence_base)
- analysis_write(uvm_sequence_item t)
Analysis_write
- Parameters:
- build()
- build_phase(uvm_phase phase)
Build_phase
- Parameters:
phase (uvm_phase)
- do_print(uvm_printer printer)
Do_print
- Parameters:
printer (uvm_printer)
- convert2string()
Convert2string
- disable_auto_item_recording()
Access to following internal methods provided via seq_item_export
- is_auto_item_recording_enabled()
- add_sequence(string type_name)
Add_sequence
Adds a sequence of type specified in the type_name paramter to the sequencer's sequence library.
- Parameters:
type_name (string)
- remove_sequence(string type_name)
Remove_sequence
- Parameters:
type_name (string)
- set_sequences_queue(string sequencer_sequence_lib)
Set_sequences_queue
- Parameters:
sequencer_sequence_lib (string)
- get_seq_kind(string type_name)
Get_seq_kind
Returns an int seq_kind correlating to the sequence of type type_name in the sequencers sequence library. If the named sequence is not registered a SEQNF warning is issued and -1 is returned.
- Parameters:
type_name (string)
- get_sequence(int req_kind)
Get_sequence
Returns a reference to a sequence specified by the seq_kind int. The seq_kind int may be obtained using the get_seq_kind() method.
- Parameters:
req_kind (int)
- Return type:
- num_sequences()
Num_sequences
Tasks
- execute_item(uvm_sequence_item item)
Task
execute_item
Executes the given transaction item directly on this sequencer. A temporary parent sequence is automatically created for the item . There is no capability to retrieve responses. If the driver returns responses, they will accumulate in the sequencer, eventually causing response overflow unless uvm_sequence_base::set_response_queue_error_report_disabled is called. Execute_item
- Parameters:
item (uvm_sequence_item)
- wait_for_grant(uvm_sequence_base sequence_ptr, int item_priority = -1, bit lock_request = 0)
Task
wait_for_grant
This task issues a request for the specified sequence. If item_priority is not specified, then the current sequence priority will be used by the arbiter. If a lock_request is made, then the sequencer will issue a lock immediately before granting the sequence. (Note that the lock may be granted without the sequence being granted if is_relevant is not asserted).
When this method returns, the sequencer has granted the sequence, and the sequence must call send_request without inserting any simulation delay other than delta cycles. The driver is currently waiting for the next item to be sent via the send_request call. Wait_for_grant
- Parameters:
sequence_ptr (uvm_sequence_base)
item_priority (int)
lock_request (bit)
- wait_for_item_done(uvm_sequence_base sequence_ptr, int transaction_id)
Task
wait_for_item_done
A sequence may optionally call wait_for_item_done. This task will block until the driver calls item_done() or put() on a transaction issued by the specified sequence. If no transaction_id parameter is specified, then the call will return the next time that the driver calls item_done() or put(). If a specific transaction_id is specified, then the call will only return when the driver indicates that it has completed that specific item.
Note that if a specific transaction_id has been specified, and the driver has already issued an item_done or put for that transaction, then the call will hang waiting for that specific transaction_id. Wait_for_item_done
- Parameters:
sequence_ptr (uvm_sequence_base)
transaction_id (int)
- lock(uvm_sequence_base sequence_ptr)
Task
lock
Requests a lock for the sequence specified by sequence_ptr.
A lock request will be arbitrated the same as any other request. A lock is granted after all earlier requests are completed and no other locks or grabs are blocking this sequence.
The lock call will return when the lock has been granted. Lock
- Parameters:
sequence_ptr (uvm_sequence_base)
- grab(uvm_sequence_base sequence_ptr)
Task
grab
Requests a lock for the sequence specified by sequence_ptr.
A grab request is put in front of the arbitration queue. It will be arbitrated before any other requests. A grab is granted when no other grabs or locks are blocking this sequence.
The grab call will return when the grab has been granted. Grab
- Parameters:
sequence_ptr (uvm_sequence_base)
- wait_for_sequences()
Task
wait_for_sequences
Waits for a sequence to have a new item available. Uses uvm_wait_for_nba_region to give a sequence as much time as possible to deliver an item before advancing time. Wait_for_sequences
- start_default_sequence()
Start_default_sequence
Called when the run phase begins, this method starts the default sequence, as specified by the default_sequence member variable.
- run_phase(uvm_phase phase)
Run_phase
- Parameters:
phase (uvm_phase)
CLASS
uvm_sequencer_base
Controls the flow of sequences, which generate the stimulus (sequence item transactions) that is passed on to drivers for execution.