#include <sc_signal_ports.h>
sc_signal_ports.h の 884 行で定義されています。
typedef T sc_core::sc_inout< T >::data_type |
sc_core::sc_out< T >, sc_core::sc_inout_rv< W >, と sc_core::sc_out_rv< W >で再定義されています。
sc_signal_ports.h の 891 行で定義されています。
typedef sc_signal_inout_if<data_type> sc_core::sc_inout< T >::if_type |
sc_signal_ports.h の 893 行で定義されています。
typedef sc_port<if_type,1,SC_ONE_OR_MORE_BOUND> sc_core::sc_inout< T >::base_type |
sc_core::sc_port< IF, N, P >を再定義しています。
sc_core::sc_out< T >, sc_core::sc_inout_rv< W >, と sc_core::sc_out_rv< W >で再定義されています。
sc_signal_ports.h の 894 行で定義されています。
typedef sc_inout<data_type> sc_core::sc_inout< T >::this_type |
sc_core::sc_port< IF, N, P >を再定義しています。
sc_core::sc_out< T >, sc_core::sc_inout_rv< W >, と sc_core::sc_out_rv< W >で再定義されています。
sc_signal_ports.h の 895 行で定義されています。
typedef sc_signal_in_if<data_type> sc_core::sc_inout< T >::in_if_type |
sc_core::sc_out< T >, sc_core::sc_inout_rv< W >, と sc_core::sc_out_rv< W >で再定義されています。
sc_signal_ports.h の 897 行で定義されています。
typedef sc_port<in_if_type,1,SC_ONE_OR_MORE_BOUND> sc_core::sc_inout< T >::in_port_type |
sc_core::sc_out< T >, sc_core::sc_inout_rv< W >, と sc_core::sc_out_rv< W >で再定義されています。
sc_signal_ports.h の 898 行で定義されています。
typedef if_type sc_core::sc_inout< T >::inout_if_type |
sc_core::sc_out< T >, sc_core::sc_inout_rv< W >, と sc_core::sc_out_rv< W >で再定義されています。
sc_signal_ports.h の 899 行で定義されています。
typedef base_type sc_core::sc_inout< T >::inout_port_type |
sc_core::sc_out< T >, sc_core::sc_inout_rv< W >, と sc_core::sc_out_rv< W >で再定義されています。
sc_signal_ports.h の 900 行で定義されています。
sc_core::sc_inout< T >::sc_inout | ( | ) | [inline] |
sc_signal_ports.h の 906 行で定義されています。
00907 : base_type(), m_init_val( 0 ), m_traces( 0 ), 00908 m_change_finder_p(0) 00909 {}
sc_core::sc_inout< T >::sc_inout | ( | const char * | name_ | ) | [inline, explicit] |
sc_signal_ports.h の 911 行で定義されています。
00912 : base_type( name_ ), m_init_val( 0 ), m_traces( 0 ), 00913 m_change_finder_p(0) 00914 {}
sc_core::sc_inout< T >::sc_inout | ( | inout_if_type & | interface_ | ) | [inline, explicit] |
sc_signal_ports.h の 916 行で定義されています。
00917 : base_type( interface_ ), m_init_val( 0 ), m_traces( 0 ), 00918 m_change_finder_p(0) 00919 {}
sc_core::sc_inout< T >::sc_inout | ( | const char * | name_, | |
inout_if_type & | interface_ | |||
) | [inline] |
sc_signal_ports.h の 921 行で定義されています。
00922 : base_type( name_, interface_ ), m_init_val( 0 ), m_traces( 0 ), 00923 m_change_finder_p(0) 00924 {}
sc_core::sc_inout< T >::sc_inout | ( | inout_port_type & | parent_ | ) | [inline, explicit] |
sc_signal_ports.h の 926 行で定義されています。
00927 : base_type( parent_ ), m_init_val( 0 ), m_traces( 0 ), 00928 m_change_finder_p(0) 00929 {}
sc_core::sc_inout< T >::sc_inout | ( | const char * | name_, | |
inout_port_type & | parent_ | |||
) | [inline] |
sc_signal_ports.h の 931 行で定義されています。
00932 : base_type( name_, parent_ ), m_init_val( 0 ), m_traces( 0 ), 00933 m_change_finder_p(0) 00934 {}
sc_core::sc_inout< T >::sc_inout | ( | this_type & | parent_ | ) | [inline] |
sc_signal_ports.h の 936 行で定義されています。
00937 : base_type( parent_ ), m_init_val( 0 ), m_traces( 0 ), 00938 m_change_finder_p(0) 00939 {}
sc_core::sc_inout< T >::sc_inout | ( | const char * | name_, | |
this_type & | parent_ | |||
) | [inline] |
sc_signal_ports.h の 941 行で定義されています。
00942 : base_type( name_, parent_ ), m_init_val( 0 ), m_traces( 0 ), 00943 m_change_finder_p(0) 00944 {}
sc_core::sc_inout< T >::~sc_inout | ( | ) | [inline, virtual] |
sc_signal_ports.h の 1079 行で定義されています。
01080 { 01081 if ( m_change_finder_p ) delete m_change_finder_p; 01082 if( m_init_val != 0 ) { 01083 delete m_init_val; 01084 } 01085 remove_traces(); 01086 }
sc_core::sc_inout< T >::sc_inout | ( | const this_type & | ) | [private] |
const sc_event& sc_core::sc_inout< T >::default_event | ( | ) | const [inline] |
const sc_event& sc_core::sc_inout< T >::value_changed_event | ( | ) | const [inline] |
const data_type& sc_core::sc_inout< T >::read | ( | ) | const [inline] |
sc_core::sc_inout< T >::operator const data_type & | ( | ) | const [inline] |
bool sc_core::sc_inout< T >::event | ( | ) | const [inline] |
void sc_core::sc_inout< T >::write | ( | const data_type & | value_ | ) | [inline] |
this_type& sc_core::sc_inout< T >::operator= | ( | const data_type & | value_ | ) | [inline] |
sc_core::sc_out< T >, sc_core::sc_inout_rv< W >, と sc_core::sc_out_rv< W >で再定義されています。
sc_signal_ports.h の 986 行で定義されています。
this_type& sc_core::sc_inout< T >::operator= | ( | const in_if_type & | interface_ | ) | [inline] |
this_type& sc_core::sc_inout< T >::operator= | ( | const in_port_type & | port_ | ) | [inline] |
this_type& sc_core::sc_inout< T >::operator= | ( | const inout_port_type & | port_ | ) | [inline] |
sc_core::sc_port< IF, N, P >を再定義しています。
sc_core::sc_out< T >, sc_core::sc_out< T >, sc_core::sc_inout_rv< W >, と sc_core::sc_out_rv< W >で再定義されています。
sc_signal_ports.h の 995 行で定義されています。
this_type& sc_core::sc_inout< T >::operator= | ( | const this_type & | port_ | ) | [inline] |
sc_core::sc_port< IF, N, P >を再定義しています。
sc_core::sc_out< T >, sc_core::sc_out< T >, sc_core::sc_inout_rv< W >, と sc_core::sc_out_rv< W >で再定義されています。
sc_signal_ports.h の 998 行で定義されています。
void sc_core::sc_inout< T >::initialize | ( | const data_type & | value_ | ) | [inline] |
sc_signal_ports.h の 1094 行で定義されています。
01095 { 01096 inout_if_type* iface = DCAST<inout_if_type*>( this->get_interface() ); 01097 if( iface != 0 ) { 01098 iface->write( value_ ); 01099 } else { 01100 if( m_init_val == 0 ) { 01101 m_init_val = new data_type; 01102 } 01103 *m_init_val = value_; 01104 } 01105 }
void sc_core::sc_inout< T >::initialize | ( | const in_if_type & | interface_ | ) | [inline] |
void sc_core::sc_inout< T >::end_of_elaboration | ( | ) | [inline, virtual] |
sc_core::sc_port_baseを再定義しています。
sc_core::sc_inout_rv< W >で再定義されています。
sc_signal_ports.h の 1113 行で定義されています。
01114 { 01115 if( m_init_val != 0 ) { 01116 write( *m_init_val ); 01117 delete m_init_val; 01118 m_init_val = 0; 01119 } 01120 if( m_traces != 0 ) { 01121 for( int i = 0; i < (int)m_traces->size(); ++ i ) { 01122 sc_trace_params* p = (*m_traces)[i]; 01123 in_if_type* iface = DCAST<in_if_type*>( this->get_interface() ); 01124 sc_trace( p->tf, iface->read(), p->name ); 01125 } 01126 remove_traces(); 01127 } 01128 }
sc_event_finder& sc_core::sc_inout< T >::value_changed | ( | ) | const [inline] |
sc_signal_ports.h の 1019 行で定義されています。
01020 { 01021 if ( !m_change_finder_p ) 01022 { 01023 m_change_finder_p = new sc_event_finder_t<in_if_type>( 01024 *this, &in_if_type::value_changed_event ); 01025 } 01026 return *m_change_finder_p; 01027 }
virtual const char* sc_core::sc_inout< T >::kind | ( | ) | const [inline, virtual] |
sc_core::sc_port< IF, N, P >を再定義しています。
sc_core::sc_out< T >, sc_core::sc_inout_rv< W >, と sc_core::sc_out_rv< W >で再定義されています。
sc_signal_ports.h の 1029 行で定義されています。
void sc_core::sc_inout< T >::add_trace_internal | ( | sc_trace_file * | tf_, | |
const std::string & | name_ | |||
) | const [inline] |
sc_signal_ports.h の 1136 行で定義されています。
01138 { 01139 if( tf_ != 0 ) { 01140 if( m_traces == 0 ) { 01141 m_traces = new sc_trace_params_vec; 01142 } 01143 m_traces->push_back( new sc_trace_params( tf_, name_ ) ); 01144 } 01145 }
void sc_core::sc_inout< T >::add_trace | ( | sc_trace_file * | tf_, | |
const std::string & | name_ | |||
) | const [inline] |
sc_signal_ports.h の 1150 行で定義されています。
01151 { 01152 sc_deprecated_add_trace(); 01153 add_trace_internal(tf_, name_); 01154 }
void sc_core::sc_inout< T >::remove_traces | ( | ) | const [inline, protected] |
data_type* sc_core::sc_inout< T >::m_init_val [protected] |
sc_signal_ports.h の 1034 行で定義されています。
sc_trace_params_vec* sc_core::sc_inout< T >::m_traces [mutable, protected] |
sc_signal_ports.h の 1047 行で定義されています。
sc_event_finder* sc_core::sc_inout< T >::m_change_finder_p [mutable, private] |
sc_signal_ports.h の 1050 行で定義されています。