SVT svt_fsm Class Member List

This is the complete list of members for class svt_fsm, including all inherited members.


 svt_fsm   function void  abort ( )  Terminate the FSM. This will cause the run method to return. 
 svt_fsm  virtual  function void  build ( )  The FSM states are created in extensions of this method, using the `svt_fsm_create_state macro. 
 svt_fsm   function bit  callback_client_exists ( )   
 svt_fsm  int  callback_client_exists_cache = -1; Cached callback_client_exists return value used to accelerate callback processing.  
 uvm_object   function uvm_object  clone ( )   
 uvm_object   function bit  compare ( uvm_object rhs, uvm_comparer comparer = null )   
 uvm_object   function string  convert2string ( )   
 uvm_object   function void  copy ( uvm_object rhs )   
 uvm_object  virtual  function uvm_object  create ( string name = "" )   
 svt_fsm   function svt_fsm  create_fsm ( svt_type_factory_override_base typ, string name )  Create a sub-FSM instance of the specified type using the local factory. Should not be called directly. Rather, the `svt_fsm_create_fsm macro should be used instead. 
 uvm_report_object  virtual  function void  die ( )   
 uvm_object   function bit  do_compare ( uvm_object rhs, uvm_comparer comparer )   
 uvm_object   function void  do_copy ( uvm_object rhs )   
 uvm_object   function void  do_pack ( uvm_packer packer )   
 uvm_object   function void  do_print ( uvm_printer printer )   
 uvm_object   function void  do_record ( uvm_recorder recorder )   
 uvm_object   function void  do_unpack ( uvm_packer packer )   
 uvm_report_object   function void  dump_report_state ( )   
 svt_fsm   function void  exception ( svt_fsm_exception except )  Should be called whenever an error is detected by the FSM implementation Calls all registered instances of the svt_fsm_callback :: exception method. 
 uvm_object   function string  get_full_name ( )   
 uvm_object  static  function int  get_inst_count ( )   
 uvm_object   function int  get_inst_id ( )   
 svt_fsm  virtual  function string  get_name ( )   
 uvm_object   function uvm_object_wrapper  get_object_type ( )   
 uvm_report_object   function int  get_report_action ( uvm_severity severity, string id )   
 uvm_report_object   function int  get_report_file_handle ( uvm_severity severity, string id )   
 uvm_report_object   function uvm_report_handler  get_report_handler ( )   
 uvm_report_object   function uvm_report_server  get_report_server ( )   
 uvm_report_object   function int  get_report_verbosity_level ( uvm_severity severity = UVM_INFO, string id = "" )   
 uvm_object  static  function uvm_object_wrapper  get_type ( )   
 uvm_object  virtual  function string  get_type_name ( )   
 svt_fsm  virtual  function string  get_uid ( )  This method can be used to obtain a unique identifier for a data object.  
 svt_fsm  virtual  function string  get_xml_name ( )  This method provides a name which can be used to establish a channel associated with this FSM in the XML output. If there are multiple FSMs this is needed to differentiate this FSM from the other FSMs in the XML file. As such it needs to be unique across the set of FSMs that will be included in the XML file.  
 svt_fsm   function void  goto_cb_exec ( svt_fsm_state_base from_state, svt_fsm_state_base to_state )  Function encapsulating actions that occur at the transition from current to next state, including calling the 'goto' callback. 
 svt_fsm  protected virtual  function bit  is_viable_next_fsm_state ( svt_fsm_state_base test_next )  Method which checks whether the provided fsm state can be reached directly from the current fsm state.  
 svt_fsm   function svt_fsm_state_base  m_create_state ( svt_type_factory_override_base typ )  Create a state of the specified type using the factory. Should not be called directly. Rather, the `svt_fsm_create_state macro should be used instead. 
 uvm_report_object  protected virtual  function uvm_report_object  m_get_report_object ( )   
 svt_fsm   function void  m_init ( )  Initialize the FSM and it's states. Called automatically when run is called. 
 uvm_object  static protected int  m_inst_count  
 uvm_report_object  uvm_report_handler  m_rh  
 svt_fsm   function void  new ( string name = "", uvm_report_object reporter = null )   
 svt_fsm   function void  override_fsm ( svt_type_factory_override_base orig, svt_type_factory_override_base over )  Override the type of a sub-FSM for this FSM instance only. Must be called before the state that creates the sub-FSM is started. 
 svt_fsm   function void  override_state ( svt_type_factory_override_base orig, svt_type_factory_override_base over )  Override a state type with another state type for this FSM instance only. Must be called before build is called. 
 uvm_object   function int  pack ( ref bit bitstream[], input uvm_packer packer )   
 uvm_object   function int  pack_bytes ( ref byte unsigned bytestream[], input uvm_packer packer )   
 uvm_object   function int  pack_ints ( ref int unsigned intstream[], input uvm_packer packer )   
 svt_fsm  virtual  function void  print ( )  Print a description of the FSM and its current state. 
 uvm_object   function void  record ( uvm_recorder recorder = null )   
 svt_fsm  uvm_report_object  reporter  
 uvm_report_object  virtual  function bit  report_error_hook ( string id, string message, int verbosity, string filename, int line )   
 uvm_report_object  virtual  function bit  report_fatal_hook ( string id, string message, int verbosity, string filename, int line )   
 uvm_report_object  virtual  function void  report_header ( UVM_FILE file = 0 )   
 uvm_report_object  virtual  function bit  report_hook ( string id, string message, int verbosity, string filename, int line )   
 uvm_report_object  virtual  function bit  report_info_hook ( string id, string message, int verbosity, string filename, int line )   
 uvm_report_object  virtual  function void  report_summarize ( UVM_FILE file = 0 )   
 uvm_report_object  virtual  function bit  report_warning_hook ( string id, string message, int verbosity, string filename, int line )   
 uvm_report_object   function void  reset_report_handler ( )   
 svt_fsm   task  run ( )  Start and run the FSM until it is aborted. 
 svt_fsm   function void  save_current_state_to_xml ( )  Function that can force the current state to get an end time and be forced out to XML. 
 svt_fsm  protected  function void  set_done_state ( svt_fsm_state_base state )  Define the final state of the FSM (optional). Should be called in an extension of build or run. The final state should be a dead-end state. 
 uvm_object   function void  set_int_local ( string field_name, uvm_bitstream_t value, bit recurse = 1 )   
 svt_fsm   function void  set_name ( string name )  Set the name of the FSM instance 
 uvm_object   function void  set_object_local ( string field_name, uvm_object value, bit clone = 1, bit recurse = 1 )   
 uvm_report_object   function void  set_report_default_file ( UVM_FILE file )   
 uvm_report_object   function void  set_report_handler ( uvm_report_handler handler )   
 uvm_report_object   function void  set_report_id_action ( string id, uvm_action action )   
 uvm_report_object   function void  set_report_id_file ( string id, UVM_FILE file )   
 uvm_report_object   function void  set_report_id_verbosity ( string id, int verbosity )   
 uvm_report_object   function void  set_report_max_quit_count ( int max_count )   
 uvm_report_object   function void  set_report_severity_action ( uvm_severity severity, uvm_action action )   
 uvm_report_object   function void  set_report_severity_file ( uvm_severity severity, UVM_FILE file )   
 uvm_report_object   function void  set_report_severity_id_action ( uvm_severity severity, string id, uvm_action action )   
 uvm_report_object   function void  set_report_severity_id_file ( uvm_severity severity, string id, UVM_FILE file )   
 uvm_report_object   function void  set_report_severity_id_override ( uvm_severity cur_severity, string id, uvm_severity new_severity )   
 uvm_report_object   function void  set_report_severity_id_verbosity ( uvm_severity severity, string id, int verbosity )   
 uvm_report_object   function void  set_report_severity_override ( uvm_severity cur_severity, uvm_severity new_severity )   
 uvm_report_object   function void  set_report_verbosity_level ( int verbosity_level )   
 svt_fsm  protected  function void  set_reset_state ( svt_fsm_state_base state )  Define the reset state of the FSM (required if the start state is a dead-end state). Requires that wait_for_reset be implemented. Should be called in an extension of build or run
 svt_fsm  protected  function void  set_start_state ( svt_fsm_state_base state )  Define the start state of the FSM (required). Should be called in an extension of build or run. The start state is one of the state that can be a dead-end state. 
 uvm_object   function void  set_string_local ( string field_name, string value, bit recurse = 1 )   
 svt_fsm  virtual  function void  set_xml_writer ( svt_xml_writer xml_writer )  Set the XML Writer, used to generate XML output at state transitions.  
 uvm_object   function string  sprint ( uvm_printer printer = null )   
 uvm_object   function int  unpack ( ref bit bitstream[], input uvm_packer packer )   
 uvm_object   function int  unpack_bytes ( ref byte unsigned bytestream[], input uvm_packer packer )   
 uvm_object   function int  unpack_ints ( ref int unsigned intstream[], input uvm_packer packer )   
 uvm_object  static bit  use_uvm_seeding = 1;  
 uvm_report_object   function int  uvm_get_max_verbosity ( )   
 uvm_report_object  virtual  function void  uvm_report ( uvm_severity severity, string id, string message, int verbosity = UVM_NONE, string filename = "", int line = 0 )   
 uvm_report_object   function int  uvm_report_enabled ( int verbosity, uvm_severity severity = UVM_INFO, string id = "" )   
 uvm_report_object  virtual  function void  uvm_report_error ( string id, string message, int verbosity = UVM_LOW, string filename = "", int line = 0 )   
 uvm_report_object  virtual  function void  uvm_report_fatal ( string id, string message, int verbosity = UVM_NONE, string filename = "", int line = 0 )   
 uvm_report_object  virtual  function void  uvm_report_info ( string id, string message, int verbosity = UVM_MEDIUM, string filename = "", int line = 0 )   
 uvm_report_object  virtual  function void  uvm_report_warning ( string id, string message, int verbosity = UVM_MEDIUM, string filename = "", int line = 0 )   
 svt_fsm  protected virtual  task  wait_for_reset ( )  Must be implemented if a reset state is defined. Automatically invoked by the run task, it must return only once the reset condition has been detected. The implementation must not call super.wait_for_reset
 svt_fsm   task  wait_for_state_transition ( output svt_fsm_state_base to_state )  Wait for the FSM to transition state and return the state it just transitioned to. Returns NULL if the FSM was aborted. 
 uvm_object   function void  __m_uvm_field_automation ( uvm_object tmp_data__, int what__, string str__ )   
 uvm_object  static uvm_status_container  __m_uvm_status_container = new;  
 uvm_object   function void  reseed ( )