クラス テンプレート sc_core::sc_in_rv< W >

#include <sc_signal_rv_ports.h>

sc_core::sc_in_rv< W >に対する継承グラフ

Inheritance graph
[凡例]

すべてのメンバ一覧

Public 型

typedef sc_dt::sc_lv< W > data_type
typedef sc_in_rv< W > this_type
typedef sc_in< data_typebase_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_rv ()
 sc_in_rv (const char *name_)
 sc_in_rv (const in_if_type &interface_)
 sc_in_rv (const char *name_, const in_if_type &interface_)
 sc_in_rv (in_port_type &parent_)
 sc_in_rv (const char *name_, in_port_type &parent_)
 sc_in_rv (inout_port_type &parent_)
 sc_in_rv (const char *name_, inout_port_type &parent_)
 sc_in_rv (this_type &parent_)
 sc_in_rv (const char *name_, this_type &parent_)
virtual ~sc_in_rv ()
virtual void end_of_elaboration ()
virtual const char * kind () const

Private メソッド

 sc_in_rv (const this_type &)
this_typeoperator= (const this_type &)


説明

template<int W>
class sc_core::sc_in_rv< W >

sc_signal_rv_ports.h73 行で定義されています。


型定義

template<int W>
typedef sc_dt::sc_lv<W> sc_core::sc_in_rv< W >::data_type

sc_core::sc_in< sc_dt::sc_lv< W > >を再定義しています。

sc_signal_rv_ports.h80 行で定義されています。

template<int W>
typedef sc_in_rv<W> sc_core::sc_in_rv< W >::this_type

sc_core::sc_in< sc_dt::sc_lv< W > >を再定義しています。

sc_signal_rv_ports.h82 行で定義されています。

template<int W>
typedef sc_in<data_type> sc_core::sc_in_rv< W >::base_type

sc_core::sc_in< sc_dt::sc_lv< W > >を再定義しています。

sc_signal_rv_ports.h83 行で定義されています。

template<int W>
typedef base_type::in_if_type sc_core::sc_in_rv< W >::in_if_type

sc_core::sc_in< sc_dt::sc_lv< W > >を再定義しています。

sc_signal_rv_ports.h85 行で定義されています。

sc_core::sc_in< sc_dt::sc_lv< W > >を再定義しています。

sc_signal_rv_ports.h86 行で定義されています。

sc_core::sc_in< sc_dt::sc_lv< W > >を再定義しています。

sc_signal_rv_ports.h87 行で定義されています。


コンストラクタとデストラクタ

template<int W>
sc_core::sc_in_rv< W >::sc_in_rv (  )  [inline]

sc_signal_rv_ports.h93 行で定義されています。

00094         : base_type()
00095         {}

template<int W>
sc_core::sc_in_rv< W >::sc_in_rv ( const char *  name_  )  [inline, explicit]

sc_signal_rv_ports.h97 行で定義されています。

00098         : base_type( name_ )
00099         {}

template<int W>
sc_core::sc_in_rv< W >::sc_in_rv ( const in_if_type interface_  )  [inline, explicit]

sc_signal_rv_ports.h101 行で定義されています。

00102         : base_type( interface_ )
00103         {}

template<int W>
sc_core::sc_in_rv< W >::sc_in_rv ( const char *  name_,
const in_if_type interface_ 
) [inline]

sc_signal_rv_ports.h105 行で定義されています。

00106         : base_type( name_, interface_ )
00107         {}

template<int W>
sc_core::sc_in_rv< W >::sc_in_rv ( in_port_type parent_  )  [inline, explicit]

sc_signal_rv_ports.h109 行で定義されています。

00110         : base_type( parent_ )
00111         {}

template<int W>
sc_core::sc_in_rv< W >::sc_in_rv ( const char *  name_,
in_port_type parent_ 
) [inline]

sc_signal_rv_ports.h113 行で定義されています。

00114         : base_type( name_, parent_ )
00115         {}

template<int W>
sc_core::sc_in_rv< W >::sc_in_rv ( inout_port_type parent_  )  [inline, explicit]

sc_signal_rv_ports.h117 行で定義されています。

00118         : base_type( parent_ )
00119         {}

template<int W>
sc_core::sc_in_rv< W >::sc_in_rv ( const char *  name_,
inout_port_type parent_ 
) [inline]

sc_signal_rv_ports.h121 行で定義されています。

00122         : base_type( name_, parent_ )
00123         {}

template<int W>
sc_core::sc_in_rv< W >::sc_in_rv ( this_type parent_  )  [inline]

sc_signal_rv_ports.h125 行で定義されています。

00126         : base_type( parent_ )
00127         {}

template<int W>
sc_core::sc_in_rv< W >::sc_in_rv ( const char *  name_,
this_type parent_ 
) [inline]

sc_signal_rv_ports.h129 行で定義されています。

00130         : base_type( name_, parent_ )
00131         {}

template<int W>
virtual sc_core::sc_in_rv< W >::~sc_in_rv (  )  [inline, virtual]

sc_signal_rv_ports.h136 行で定義されています。

00137         {}

template<int W>
sc_core::sc_in_rv< W >::sc_in_rv ( const this_type  )  [private]


関数

template<int W>
void sc_core::sc_in_rv< W >::end_of_elaboration (  )  [inline, virtual]

sc_core::sc_in< sc_dt::sc_lv< W > >を再定義しています。

sc_signal_rv_ports.h164 行で定義されています。

00165 {
00166     base_type::end_of_elaboration();
00167     // check if bound channel is a resolved signal
00168     if( DCAST<sc_signal_rv<W>*>( this->get_interface() ) == 0 ) {
00169         char msg[BUFSIZ];
00170         std::sprintf( msg, "%s (%s)", this->name(), kind() );
00171         SC_REPORT_ERROR( SC_ID_RESOLVED_PORT_NOT_BOUND_, msg );
00172     }
00173 }

template<int W>
virtual const char* sc_core::sc_in_rv< W >::kind (  )  const [inline, virtual]

sc_core::sc_in< sc_dt::sc_lv< W > >を再定義しています。

sc_signal_rv_ports.h146 行で定義されています。

00147         { return "sc_in_rv"; }

template<int W>
this_type& sc_core::sc_in_rv< W >::operator= ( const this_type  )  [private]

sc_core::sc_in< sc_dt::sc_lv< W > >を再定義しています。


このクラスの説明は次のファイルから生成されました:

SystemCに対してFri Jun 6 20:11:56 2008に生成されました。  doxygen 1.5.6