#include <sysc/communication/sc_signal_rv_ports.h>


Public Types | |
| typedef sc_dt::sc_lv< W > | data_type |
| typedef sc_in_rv< W > | 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 |
| typedef sc_signal_in_if < data_type > | if_type |
| typedef sc_signal_inout_if < data_type > | inout_if_type |
Public Member Functions | |
| 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 () |
| called by elaboration_done (does nothing) | |
| virtual const char * | kind () const |
| void | bind (const in_if_type &interface_) |
| void | bind (in_port_type &parent_) |
| bind a parent port with type IF to this port | |
| void | bind (inout_port_type &parent_) |
| void | bind (IF &interface_) |
| bind an interface of type IF to this port | |
| void | operator() (const in_if_type &interface_) |
| void | operator() (in_port_type &parent_) |
| bind a parent port with type IF to this port | |
| void | operator() (inout_port_type &parent_) |
| void | operator() (IF &interface_) |
| bind an interface of type IF to this port | |
| const sc_event & | default_event () const |
| const sc_event & | value_changed_event () const |
| const data_type & | read () const |
| operator const data_type & () const | |
| bool | event () const |
| sc_event_finder & | value_changed () const |
| void | add_trace (sc_trace_file *, const std::string &) const |
| void | add_trace_internal (sc_trace_file *, const std::string &) const |
| int | size () const |
| number of connected interfaces | |
| IF * | operator-> () |
| allow to call methods provided by the first interface | |
| const IF * | operator-> () const |
| allow to call methods provided by the first interface | |
| const IF * | get_interface (int iface_i) const |
| allow to call methods provided by interface at index | |
| IF * | get_interface (int iface_i) |
| allow to call methods provided by interface at index | |
| virtual sc_interface * | get_interface () |
| get the first interface without checking for nil | |
| virtual const sc_interface * | get_interface () const |
| get the first interface without checking for nil | |
| IF * | operator[] (int index_) |
| const IF * | operator[] (int index_) const |
| allow to call methods provided by interface at index | |
| const char * | name () const |
| return full name of sc_object | |
| const char * | basename () const |
| return base name of sc_object (last part) | |
| virtual void | print (::std::ostream &os=::std::cout) const |
| print object | |
| virtual void | dump (::std::ostream &os=::std::cout) const |
| dump() is more detailed than print() | |
| virtual void | trace (sc_trace_file *tf) const |
| sc_simcontext * | simcontext () const |
| bool | add_attribute (sc_attr_base &) |
| add attribute | |
| sc_attr_base * | get_attribute (const std::string &name_) |
| get attribute by name | |
| const sc_attr_base * | get_attribute (const std::string &name_) const |
| get attribute by name | |
| sc_attr_base * | remove_attribute (const std::string &name_) |
| remove attribute by name | |
| void | remove_all_attributes () |
| remove all attributes | |
| int | num_attributes () const |
| get the number of attributes | |
| sc_attr_cltn & | attr_cltn () |
| get the attribute collection | |
| const sc_attr_cltn & | attr_cltn () const |
| get the attribute collection | |
| virtual const std::vector < sc_object * > & | get_child_objects () const |
| return child objects | |
| sc_object * | get_parent () const |
| return parent object | |
| sc_object * | get_parent_object () const |
| return parent object | |
Protected Member Functions | |
| void | bind (sc_interface &interface_) |
| bind interface to this port | |
| void | remove_traces () const |
| virtual int | vbind (sc_interface &) |
| called by pbind (for internal use only) | |
| virtual int | vbind (sc_port_base &) |
| virtual void | make_sensitive (sc_thread_handle, sc_event_finder *=0) const |
| called by the sc_sensitive* classes | |
| virtual void | make_sensitive (sc_method_handle, sc_event_finder *=0) const |
| virtual void | before_end_of_elaboration () |
| called by construction_done (does nothing by default) | |
| virtual void | start_of_simulation () |
| called by start_simulation (does nothing by default) | |
| virtual void | end_of_simulation () |
| called by simulation_done (does nothing by default) | |
| void | report_error (const char *id, const char *add_msg=0) const |
| error reporting | |
| void | add_static_event (sc_method_handle process_p, const sc_event &event) const |
| void | add_static_event (sc_thread_handle process_p, const sc_event &event) const |
Protected Attributes | |
| sc_trace_params_vec * | m_traces |
| sc_bind_info * | m_bind_info |
Friends | |
| class | sc_sensitive |
| class | sc_sensitive_neg |
| class | sc_sensitive_pos |
Definition at line 73 of file sc_signal_rv_ports.h.
| typedef sc_dt::sc_lv<W> sc_core::sc_in_rv< W >::data_type |
Reimplemented from sc_core::sc_in< sc_dt::sc_lv< W > >.
Definition at line 80 of file sc_signal_rv_ports.h.
| typedef sc_in_rv<W> sc_core::sc_in_rv< W >::this_type |
Reimplemented from sc_core::sc_in< sc_dt::sc_lv< W > >.
Definition at line 82 of file sc_signal_rv_ports.h.
| typedef sc_in<data_type> sc_core::sc_in_rv< W >::base_type |
Reimplemented from sc_core::sc_in< sc_dt::sc_lv< W > >.
Definition at line 83 of file sc_signal_rv_ports.h.
| typedef base_type::in_if_type sc_core::sc_in_rv< W >::in_if_type |
Reimplemented from sc_core::sc_in< sc_dt::sc_lv< W > >.
Definition at line 85 of file sc_signal_rv_ports.h.
| typedef base_type::in_port_type sc_core::sc_in_rv< W >::in_port_type |
Reimplemented from sc_core::sc_in< sc_dt::sc_lv< W > >.
Definition at line 86 of file sc_signal_rv_ports.h.
| typedef base_type::inout_port_type sc_core::sc_in_rv< W >::inout_port_type |
Reimplemented from sc_core::sc_in< sc_dt::sc_lv< W > >.
Definition at line 87 of file sc_signal_rv_ports.h.
typedef sc_signal_in_if<data_type> sc_core::sc_in< sc_dt::sc_lv< W > >::if_type [inherited] |
Definition at line 78 of file sc_signal_ports.h.
typedef sc_signal_inout_if<data_type> sc_core::sc_in< sc_dt::sc_lv< W > >::inout_if_type [inherited] |
Definition at line 84 of file sc_signal_ports.h.
| sc_core::sc_in_rv< W >::sc_in_rv | ( | ) | [inline] |
Definition at line 93 of file sc_signal_rv_ports.h.
| sc_core::sc_in_rv< W >::sc_in_rv | ( | const char * | name_ | ) | [inline, explicit] |
Definition at line 97 of file sc_signal_rv_ports.h.
| sc_core::sc_in_rv< W >::sc_in_rv | ( | const in_if_type & | interface_ | ) | [inline, explicit] |
Definition at line 101 of file sc_signal_rv_ports.h.
| sc_core::sc_in_rv< W >::sc_in_rv | ( | const char * | name_, | |
| const in_if_type & | interface_ | |||
| ) | [inline] |
Definition at line 105 of file sc_signal_rv_ports.h.
| sc_core::sc_in_rv< W >::sc_in_rv | ( | in_port_type & | parent_ | ) | [inline, explicit] |
Definition at line 109 of file sc_signal_rv_ports.h.
| sc_core::sc_in_rv< W >::sc_in_rv | ( | const char * | name_, | |
| in_port_type & | parent_ | |||
| ) | [inline] |
Definition at line 113 of file sc_signal_rv_ports.h.
| sc_core::sc_in_rv< W >::sc_in_rv | ( | inout_port_type & | parent_ | ) | [inline, explicit] |
Definition at line 117 of file sc_signal_rv_ports.h.
| sc_core::sc_in_rv< W >::sc_in_rv | ( | const char * | name_, | |
| inout_port_type & | parent_ | |||
| ) | [inline] |
Definition at line 121 of file sc_signal_rv_ports.h.
| sc_core::sc_in_rv< W >::sc_in_rv | ( | this_type & | parent_ | ) | [inline] |
Definition at line 125 of file sc_signal_rv_ports.h.
| sc_core::sc_in_rv< W >::sc_in_rv | ( | const char * | name_, | |
| this_type & | parent_ | |||
| ) | [inline] |
Definition at line 129 of file sc_signal_rv_ports.h.
| virtual sc_core::sc_in_rv< W >::~sc_in_rv | ( | ) | [inline, virtual] |
Definition at line 136 of file sc_signal_rv_ports.h.
| void sc_core::sc_in_rv< W >::end_of_elaboration | ( | ) | [inline, virtual] |
called by elaboration_done (does nothing)
Reimplemented from sc_core::sc_in< sc_dt::sc_lv< W > >.
Definition at line 164 of file sc_signal_rv_ports.h.
| virtual const char* sc_core::sc_in_rv< W >::kind | ( | ) | const [inline, virtual] |
Reimplemented from sc_core::sc_in< sc_dt::sc_lv< W > >.
Definition at line 146 of file sc_signal_rv_ports.h.
| void sc_core::sc_in< sc_dt::sc_lv< W > >::bind | ( | const in_if_type & | interface_ | ) | [inline, inherited] |
Definition at line 153 of file sc_signal_ports.h.
| void sc_core::sc_in< sc_dt::sc_lv< W > >::bind | ( | in_port_type & | parent_ | ) | [inline, inherited] |
bind a parent port with type IF to this port
Reimplemented from sc_core::sc_port_b< IF >.
Definition at line 162 of file sc_signal_ports.h.
| void sc_core::sc_in< sc_dt::sc_lv< W > >::bind | ( | inout_port_type & | parent_ | ) | [inline, inherited] |
Definition at line 171 of file sc_signal_ports.h.
| void sc_core::sc_port_b< IF >::bind | ( | IF & | interface_ | ) | [inline, inherited] |
| void sc_core::sc_port_base::bind | ( | sc_interface & | interface_ | ) | [protected, inherited] |
| void sc_core::sc_in< sc_dt::sc_lv< W > >::operator() | ( | const in_if_type & | interface_ | ) | [inline, inherited] |
Definition at line 156 of file sc_signal_ports.h.
| void sc_core::sc_in< sc_dt::sc_lv< W > >::operator() | ( | in_port_type & | parent_ | ) | [inline, inherited] |
bind a parent port with type IF to this port
Reimplemented from sc_core::sc_port_b< IF >.
Definition at line 165 of file sc_signal_ports.h.
| void sc_core::sc_in< sc_dt::sc_lv< W > >::operator() | ( | inout_port_type & | parent_ | ) | [inline, inherited] |
Definition at line 174 of file sc_signal_ports.h.
| void sc_core::sc_port_b< IF >::operator() | ( | IF & | interface_ | ) | [inline, inherited] |
| const sc_event& sc_core::sc_in< sc_dt::sc_lv< W > >::default_event | ( | ) | const [inline, inherited] |
Definition at line 182 of file sc_signal_ports.h.
| const sc_event& sc_core::sc_in< sc_dt::sc_lv< W > >::value_changed_event | ( | ) | const [inline, inherited] |
Definition at line 188 of file sc_signal_ports.h.
| const data_type& sc_core::sc_in< sc_dt::sc_lv< W > >::read | ( | ) | const [inline, inherited] |
Definition at line 194 of file sc_signal_ports.h.
| sc_core::sc_in< sc_dt::sc_lv< W > >::operator const data_type & | ( | ) | const [inline, inherited] |
Definition at line 197 of file sc_signal_ports.h.
| bool sc_core::sc_in< sc_dt::sc_lv< W > >::event | ( | ) | const [inline, inherited] |
Definition at line 203 of file sc_signal_ports.h.
| sc_event_finder& sc_core::sc_in< sc_dt::sc_lv< W > >::value_changed | ( | ) | const [inline, inherited] |
Definition at line 209 of file sc_signal_ports.h.
| void sc_core::sc_in< sc_dt::sc_lv< W > >::add_trace | ( | sc_trace_file * | , | |
| const std::string & | ||||
| ) | const [inherited] |
| void sc_core::sc_in< sc_dt::sc_lv< W > >::add_trace_internal | ( | sc_trace_file * | , | |
| const std::string & | ||||
| ) | const [inherited] |
| void sc_core::sc_in< sc_dt::sc_lv< W > >::remove_traces | ( | ) | const [protected, inherited] |
| virtual int sc_core::sc_in< sc_dt::sc_lv< W > >::vbind | ( | sc_interface & | interface_ | ) | [protected, virtual, inherited] |
| virtual int sc_core::sc_in< sc_dt::sc_lv< W > >::vbind | ( | sc_port_base & | ) | [protected, virtual, inherited] |
Reimplemented from sc_core::sc_port_b< IF >.
| int sc_core::sc_port_b< IF >::size | ( | ) | const [inline, inherited] |
| IF * sc_core::sc_port_b< IF >::operator-> | ( | ) | [inline, inherited] |
| const IF * sc_core::sc_port_b< IF >::operator-> | ( | ) | const [inline, inherited] |
| const IF * sc_core::sc_port_b< IF >::get_interface | ( | int | iface_i | ) | const [inline, inherited] |
| IF * sc_core::sc_port_b< IF >::get_interface | ( | int | index_ | ) | [inline, inherited] |
| virtual sc_interface* sc_core::sc_port_b< IF >::get_interface | ( | ) | [inline, virtual, inherited] |
| virtual const sc_interface* sc_core::sc_port_b< IF >::get_interface | ( | ) | const [inline, virtual, inherited] |
| IF* sc_core::sc_port_b< IF >::operator[] | ( | int | index_ | ) | [inline, inherited] |
| const IF* sc_core::sc_port_b< IF >::operator[] | ( | int | index_ | ) | const [inline, inherited] |
| void sc_core::sc_port_b< IF >::make_sensitive | ( | sc_thread_handle | handle_, | |
| sc_event_finder * | event_finder_ = 0 | |||
| ) | const [inline, protected, virtual, inherited] |
| void sc_core::sc_port_b< IF >::make_sensitive | ( | sc_method_handle | handle_p, | |
| sc_event_finder * | event_finder_ = 0 | |||
| ) | const [inline, protected, virtual, inherited] |
| void sc_core::sc_port_base::before_end_of_elaboration | ( | ) | [protected, virtual, inherited] |
| void sc_core::sc_port_base::start_of_simulation | ( | ) | [protected, virtual, inherited] |
| void sc_core::sc_port_base::end_of_simulation | ( | ) | [protected, virtual, inherited] |
| void sc_core::sc_port_base::report_error | ( | const char * | id, | |
| const char * | add_msg = 0 | |||
| ) | const [protected, inherited] |
| void sc_core::sc_port_base::add_static_event | ( | sc_method_handle | process_p, | |
| const sc_event & | event | |||
| ) | const [protected, inherited] |
Definition at line 241 of file sc_port.cpp.
| void sc_core::sc_port_base::add_static_event | ( | sc_thread_handle | process_p, | |
| const sc_event & | event | |||
| ) | const [protected, inherited] |
Definition at line 247 of file sc_port.cpp.
| const char* sc_core::sc_object::name | ( | ) | const [inline, inherited] |
| const char * sc_core::sc_object::basename | ( | ) | const [inherited] |
| void sc_core::sc_object::print | ( | ::std::ostream & | os = ::std::cout |
) | const [virtual, inherited] |
print object
Reimplemented in sc_core::sc_fifo< T >, sc_core::sc_signal< T >, sc_core::sc_core::sc_signal< bool >, sc_core::sc_core::sc_signal< sc_dt::sc_logic >, and sc_core::sc_signal< sc_dt::sc_lv< W > >.
Definition at line 102 of file sc_object.cpp.
| void sc_core::sc_object::dump | ( | ::std::ostream & | os = ::std::cout |
) | const [virtual, inherited] |
dump() is more detailed than print()
Reimplemented in sc_core::sc_fifo< T >, sc_core::sc_signal< T >, sc_core::sc_core::sc_signal< bool >, sc_core::sc_core::sc_signal< sc_dt::sc_logic >, and sc_core::sc_signal< sc_dt::sc_lv< W > >.
Definition at line 108 of file sc_object.cpp.
| void sc_core::sc_object::trace | ( | sc_trace_file * | tf | ) | const [virtual, inherited] |
Reimplemented in sc_core::sc_fifo< T >, sc_core::sc_signal< T >, sc_core::sc_core::sc_signal< bool >, sc_core::sc_core::sc_signal< sc_dt::sc_logic >, and sc_core::sc_signal< sc_dt::sc_lv< W > >.
Definition at line 302 of file sc_object.cpp.
| sc_simcontext* sc_core::sc_object::simcontext | ( | ) | const [inline, inherited] |
Definition at line 95 of file sc_object.h.
| bool sc_core::sc_object::add_attribute | ( | sc_attr_base & | attribute_ | ) | [inherited] |
| sc_attr_base * sc_core::sc_object::get_attribute | ( | const std::string & | name_ | ) | [inherited] |
| const sc_attr_base * sc_core::sc_object::get_attribute | ( | const std::string & | name_ | ) | const [inherited] |
| sc_attr_base * sc_core::sc_object::remove_attribute | ( | const std::string & | name_ | ) | [inherited] |
| void sc_core::sc_object::remove_all_attributes | ( | ) | [inherited] |
| int sc_core::sc_object::num_attributes | ( | ) | const [inherited] |
| sc_attr_cltn & sc_core::sc_object::attr_cltn | ( | ) | [inherited] |
| const sc_attr_cltn & sc_core::sc_object::attr_cltn | ( | ) | const [inherited] |
| virtual const std::vector<sc_object*>& sc_core::sc_object::get_child_objects | ( | ) | const [inline, virtual, inherited] |
return child objects
Reimplemented in sc_core::sc_module, and sc_core::sc_process_b.
Definition at line 121 of file sc_object.h.
| sc_object* sc_core::sc_object::get_parent | ( | ) | const [inline, inherited] |
| sc_object* sc_core::sc_object::get_parent_object | ( | ) | const [inline, inherited] |
friend class sc_sensitive [friend, inherited] |
friend class sc_sensitive_neg [friend, inherited] |
friend class sc_sensitive_pos [friend, inherited] |
sc_trace_params_vec* sc_core::sc_in< sc_dt::sc_lv< W > >::m_traces [mutable, protected, inherited] |
Definition at line 239 of file sc_signal_ports.h.
sc_bind_info* sc_core::sc_port_base::m_bind_info [protected, inherited] |
1.5.5