SVT svt_fsm_state Class Member List

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


 svt_fsm_state_base   function void  append_callback ( svt_fsm_state_callback cb )   
 svt_fsm_state_base  virtual  task  body ( )  Function performed while the FSM is in this state. Will no look for state transition until it returns. If the state behavior is to execute as long as no transitions are observed, simply fork/join_none the behavior. 
 svt_fsm_state_base  protected svt_fsm_state_callback  callbacks [$]  
 svt_fsm_state_base   function bit  callback_client_exists ( )   
 svt_fsm_state_base  int  callback_client_exists_cache = -1; Cached callback_client_exists return value used to accelerate callback processing.  
 svt_fsm_state_base  enum value  DISABLED_NEXT   
 svt_fsm_state_base  enum value  EXTERNAL_INTERRUPT_NEXT   
 svt_fsm_state_base  virtual  function string  get_class_name ( )  Return the class name.  
 svt_fsm_state_base  virtual  function real  get_enter_time ( )  Method to get the last 'enter' time for the state  
 svt_fsm_state   function svt_fsm  get_fsm ( )   
 svt_fsm_state_base  virtual  function int  get_inst_id ( )  Method returns unique numeric instance identifier for the state. 
 svt_fsm_state_base  virtual  function real  get_leave_time ( )  Method to get the last 'leave' time for the state  
 svt_fsm_state   function string  get_name ( )   
 svt_fsm_state_base   task  get_next_state_choice ( ref svt_fsm_state_base next_state )  Method to get the m_next_state_choice field.  
 svt_fsm_state_base  virtual  function string  get_uid ( )  This method can be used to obtain a unique identifier for the state.  
 svt_fsm_state  virtual  function string  get_xml_name ( )  Returns a name that can be used to represent the state's object type in the XML output. By default uses the class name.  
 svt_fsm_state_base  enum value  INTERNAL_INTERRUPT_NEXT   
 svt_fsm_state_base  virtual  function bit  is_dest_fsm_state ( svt_fsm_state_base test_incoming )  Method which checks whether this state can be reached directly from the provided state.  
 svt_fsm_state_base  vmm_log  log  
 svt_fsm_state_base   function void  m_add_next_state ( svt_fsm_state_base state )  Add the specified FSM state to the states this state can transition to. Do not call directly. Automatically called by svt_fsm :: m_init
 svt_fsm_state_base   function void  m_entering ( )  Call the registered svt_fsm_state_callback :: entering method. Called by svt_fsm, before body is called. Do not call directly. 
 svt_fsm_state_base   task  m_goto_next_state ( output svt_fsm_state_base next_state, input bit dead_end_is_ok )  Look for a state transition condition out of this state. Do not call directly. 
 svt_fsm_state_base  protected virtual  function void  m_incoming_states ( ref svt_fsm_state_base state_q[$] )  Return the set of states that can transition into this state. It is usually simpler to use the `svt_fsm_from_state macro. 
 svt_fsm_state_base   function int  m_init ( )  Initialize the state instance. Must not be called directly. Automatically called by svt_fsm :: m_init
 svt_fsm_state_base  static protected int  m_inst_count  
 svt_fsm_state_base   function void  m_leaving ( )  Call the registered svt_fsm_state_callback :: leaving method. Called by m_goto_next_state after next_state has been recognized. Do not call directly. 
 svt_fsm_state_base   function void  new ( string name = "" )  Constructor for the FSM state base class. 
 svt_fsm_state  FSM  p_fsm Reference to the parent FSM 
 svt_fsm_state_base   function void  prepend_callback ( svt_fsm_state_callback cb )   
 svt_fsm_state_base  virtual  function void  print ( )   
 svt_fsm_state_base  virtual  function bit  save_to_xml ( svt_xml_writer writer, string prefix = "", string suffix )  This method writes a description of the state to the XML file managed by the XML writer argument.  
 svt_fsm_state_base  virtual  function void  set_enter_time ( real enter_time )  Method to set the last 'enter' time for the state  
 svt_fsm_state   function void  set_fsm ( svt_fsm fsm )   
 svt_fsm_state_base  virtual  function void  set_leave_time ( real leave_time )  Method to set the last 'leave' time for the state  
 svt_fsm_state_base   function void  set_next_states_transition_option ( svt_fsm_state_base :: state_transition_options_enum transition_option )  Set all of the m_next_states transition_option field values.  
 svt_fsm_state_base   function void  set_next_state_choice ( svt_fsm_state_base next_state )  Method to set the m_next_state_choice field.  
 svt_fsm_state_base  virtual  task  state_transition ( svt_fsm_state_base from_state, output bit ok )  Detect a transition from the specified state to this state. Set 'ok' to TRUE and return if no errors were detected. Set 'ok' to FALSE and return if a protocol violation was detected. Must be implemented in every FSM state definition. Implementations must not call super.state_transition
 svt_fsm_state_base  enum  state_transition_options_enum  The current state transition options.  
 svt_fsm_state_base  typedef  state_transition_options_enum   
 svt_fsm_state_base  virtual  function bit  static_fsm_thread_enabled ( )  Indicates whether the state_transition method for this class will exit cleanly if transition_option goes to DISABLED_NEXT. Default implmentation always returns 0. 
 svt_fsm_state_base  svt_fsm_state_base :: state_transition_options_enum  transition_option Indicates the transition options currently available to this state.  
 svt_fsm_state_base   function void  unregister_callback ( svt_fsm_state_callback cb )