#include <sc_signal_resolved_ports.h>
Public 型 | |
typedef sc_dt::sc_logic | data_type |
typedef sc_in_resolved | this_type |
typedef sc_in< data_type > | base_type |
typedef base_type::in_if_type | in_if_type |
typedef base_type::in_port_type | in_port_type |
typedef base_type::inout_port_type | inout_port_type |
Public メソッド | |
sc_in_resolved () | |
sc_in_resolved (const char *name_) | |
sc_in_resolved (const in_if_type &interface_) | |
sc_in_resolved (const char *name_, const in_if_type &interface_) | |
sc_in_resolved (in_port_type &parent_) | |
sc_in_resolved (const char *name_, in_port_type &parent_) | |
sc_in_resolved (inout_port_type &parent_) | |
sc_in_resolved (const char *name_, inout_port_type &parent_) | |
sc_in_resolved (this_type &parent_) | |
sc_in_resolved (const char *name_, this_type &parent_) | |
virtual | ~sc_in_resolved () |
virtual void | end_of_elaboration () |
virtual const char * | kind () const |
Private メソッド | |
sc_in_resolved (const this_type &) | |
this_type & | operator= (const this_type &) |
sc_signal_resolved_ports.h の 64 行で定義されています。
sc_core::sc_in_resolved::sc_in_resolved | ( | ) | [inline] |
sc_core::sc_in_resolved::sc_in_resolved | ( | const char * | name_ | ) | [inline, explicit] |
sc_core::sc_in_resolved::sc_in_resolved | ( | const in_if_type & | interface_ | ) | [inline, explicit] |
sc_core::sc_in_resolved::sc_in_resolved | ( | const char * | name_, | |
const in_if_type & | interface_ | |||
) | [inline] |
sc_core::sc_in_resolved::sc_in_resolved | ( | in_port_type & | parent_ | ) | [inline, explicit] |
sc_core::sc_in_resolved::sc_in_resolved | ( | const char * | name_, | |
in_port_type & | parent_ | |||
) | [inline] |
sc_core::sc_in_resolved::sc_in_resolved | ( | inout_port_type & | parent_ | ) | [inline, explicit] |
sc_core::sc_in_resolved::sc_in_resolved | ( | const char * | name_, | |
inout_port_type & | parent_ | |||
) | [inline] |
sc_core::sc_in_resolved::sc_in_resolved | ( | this_type & | parent_ | ) | [inline] |
sc_core::sc_in_resolved::sc_in_resolved | ( | const char * | name_, | |
this_type & | parent_ | |||
) | [inline] |
virtual sc_core::sc_in_resolved::~sc_in_resolved | ( | ) | [inline, virtual] |
sc_core::sc_in_resolved::sc_in_resolved | ( | const this_type & | ) | [private] |
void sc_core::sc_in_resolved::end_of_elaboration | ( | ) | [virtual] |
sc_core::sc_in< sc_dt::sc_logic >を再定義しています。
sc_signal_resolved_ports.cpp の 62 行で定義されています。
00063 { 00064 base_type::end_of_elaboration(); 00065 // check if bound channel is a resolved signal 00066 if( DCAST<sc_signal_resolved*>( get_interface() ) == 0 ) { 00067 char msg[BUFSIZ]; 00068 std::sprintf( msg, "%s (%s)", name(), kind() ); 00069 SC_REPORT_ERROR( SC_ID_RESOLVED_PORT_NOT_BOUND_, msg ); 00070 } 00071 }
virtual const char* sc_core::sc_in_resolved::kind | ( | ) | const [inline, virtual] |
sc_core::sc_in< sc_dt::sc_logic >を再定義しています。