This is the complete list of members for class svt_fsm_state_base, including all inherited members.
| 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 | 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. |
| 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 ) | |
| svt_fsm_state_base | function uvm_object | create ( string name = "" ) | |
| svt_fsm_state_base | enum value | DISABLED_NEXT | |
| 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 ) | |
| 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_base | virtual function svt_fsm | get_fsm ( ) | Return the parent FSM for this state |
| uvm_object | function string | get_full_name ( ) | |
| uvm_object | static function int | get_inst_count ( ) | |
| uvm_object | function int | get_inst_id ( ) | |
| svt_fsm_state_base | virtual function real | get_leave_time ( ) | Method to get the last 'leave' time for the state |
| svt_fsm_state_base | virtual function string | get_name ( ) | Return the name of this state |
| 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 uvm_object_wrapper | get_object_type ( ) | |
| svt_fsm_state_base | static function type_id | get_type ( ) | |
| svt_fsm_state_base | virtual function string | get_type_name ( ) | |
| 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_base | virtual function string | get_xml_name ( ) | Returns a name that can be used to represent the state's object type in the XML output. |
| 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 | 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; |
| uvm_object | 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. |
| 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 ) | |
| uvm_object | function void | print ( uvm_printer printer = null ) | |
| uvm_object | function void | record ( uvm_recorder recorder = null ) | |
| svt_fsm_state_base | uvm_report_object | reporter | |
| 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_base | virtual function void | set_fsm ( svt_fsm fsm ) | Set the parent FSM that holds this FSM state instance. Implemented in svt_fsm_state. |
| uvm_object | function void | set_int_local ( string field_name, uvm_bitstream_t value, bit recurse = 1 ) | |
| svt_fsm_state_base | virtual function void | set_leave_time ( real leave_time ) | Method to set the last 'leave' time for the state |
| uvm_object | function void | set_name ( string name ) | |
| 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. |
| uvm_object | function void | set_object_local ( string field_name, uvm_object value, bit clone = 1, bit recurse = 1 ) | |
| uvm_object | function void | set_string_local ( string field_name, string value, bit recurse = 1 ) | |
| uvm_object | function string | sprint ( uvm_printer printer = null ) | |
| 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 | typedef | type_id | |
| svt_fsm_state_base | static const string | type_name = "svt_fsm_state_base"; | |
| 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_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 | protected virtual function uvm_report_object | m_get_report_object ( ) | |
| uvm_object | function void | reseed ( ) | |