28 #ifndef __SYSTEMC_EXT_CORE_SC_PORT_HH__ 29 #define __SYSTEMC_EXT_CORE_SC_PORT_HH__ 34 #include "../channel/messages.hh" 35 #include "../utils/sc_report_handler.hh" 80 void warn_port_constructor()
const;
85 const char *
kind()
const {
return "sc_port_base"; }
92 friend class ::sc_gem5::Module;
98 virtual void before_end_of_elaboration() = 0;
99 virtual void end_of_elaboration() = 0;
100 virtual void start_of_simulation() = 0;
101 virtual void end_of_simulation() = 0;
103 void report_error(
const char *
id,
const char *add_msg)
const;
106 friend class ::sc_gem5::Port;
107 friend class ::sc_gem5::Kernel;
113 virtual const char *_ifTypeName()
const = 0;
121 void operator () (IF &
i) { bind(i); }
124 virtual void bind(IF &
i) { sc_port_base::bind(i); }
130 if (_interfaces.empty()) {
134 return _interfaces[0];
139 if (_interfaces.empty()) {
143 return _interfaces[0];
149 if (n < 0 || n >= size()) {
153 return _interfaces[
n];
156 operator [] (
int n)
const 158 if (n < 0 || n >= size()) {
162 return _interfaces[
n];
168 if (_interfaces.empty())
170 return _interfaces[0];
175 if (_interfaces.empty())
177 return _interfaces[0];
198 IF *
interface = dynamic_cast<IF *>(&
i);
201 sc_port_base::bind(*interface);
210 sc_port_base::bind(*p);
220 if (n < 0 || n >= size()) {
224 return _interfaces[
n];
229 IF *
interface = dynamic_cast<IF *>(iface);
231 for (
unsigned i = 0;
i < _interfaces.size();
i++) {
232 if (interface == _interfaces[
i]) {
234 "interface already bound to port");
237 _interfaces.push_back(interface);
248 template <
class IF,
int N=1, sc_port_policy P=SC_ONE_OR_MORE_BOUND>
259 this->warn_port_constructor();
264 this->warn_port_constructor();
269 this->warn_port_constructor();
275 this->warn_port_constructor();
280 this->warn_port_constructor();
286 this->warn_port_constructor();
290 virtual const char *
kind()
const override {
return "sc_port"; }
302 #endif //__SYSTEMC_EXT_CORE_SC_PORT_HH__ sc_port(const char *name, const IF &interface)
Ports are used to interface objects to each other.
void before_end_of_elaboration() override
const char * _ifTypeName() const override
const std::string & name()
sc_trace_params(sc_trace_file *tf, const std::string &name)
sc_interface * get_interface()
void start_of_simulation() override
sc_port(sc_port< IF, N, P > &parent)
void end_of_elaboration() override
const char * kind() const
virtual const char * kind() const override
const char * sc_gen_unique_name(const char *seed)
int vbind(sc_interface &i) override
const char SC_ID_GET_IF_[]
sc_port(const IF &interface)
sc_port_b(const char *name, int n, sc_port_policy p)
sc_interface * _gem5Interface(int n) const override
virtual sc_port_policy _portPolicy() const override
sc_port_b(int n, sc_port_policy p)
virtual void bind(sc_port_b< IF > &p)
void end_of_simulation() override
sc_port(const char *name, sc_port< IF, N, P > &parent)
const char SC_ID_BIND_IF_TO_PORT_[]
void _gem5AddInterface(sc_interface *iface) override
sc_port_b(const sc_port_b< IF > &)
sc_port(const sc_port< IF, N, P > &)
sc_port(const char *name)
std::vector< IF * > _interfaces
sc_port(sc_port_b< IF > &parent)
std::vector< sc_trace_params * > sc_trace_params_vec
const sc_interface * get_interface() const
int vbind(sc_port_base &pb) override
::sc_gem5::Port * _gem5Port
sc_port(const char *name, sc_port_b< IF > &parent)