gem5 v24.1.0.1
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
sc_port.hh
Go to the documentation of this file.
1/*
2 * Copyright 2018 Google, Inc.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met: redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer;
8 * redistributions in binary form must reproduce the above copyright
9 * notice, this list of conditions and the following disclaimer in the
10 * documentation and/or other materials provided with the distribution;
11 * neither the name of the copyright holders nor the names of its
12 * contributors may be used to endorse or promote products derived from
13 * this software without specific prior written permission.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
18 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
19 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
21 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
28#ifndef __SYSTEMC_EXT_CORE_SC_PORT_HH__
29#define __SYSTEMC_EXT_CORE_SC_PORT_HH__
30
31#include <typeinfo>
32#include <vector>
33
34#include "../channel/messages.hh"
35#include "../utils/sc_report_handler.hh"
36#include "sc_module.hh" // for sc_gen_unique_name
37#include "sc_object.hh"
38
39namespace sc_gem5
40{
41
42class Port;
43
44};
45
46namespace sc_core
47{
48
49class sc_interface;
50class sc_trace_file;
51
52// Nonstandard
53// Despite having a warning "FOR INTERNAL USE ONLY!" in all caps above this
54// class definition in the Accellera implementation, it appears in their
55// examples and test programs, and so we need to have it here as well.
57{
59 std::string name;
60
61 sc_trace_params(sc_trace_file *tf, const std::string &name) :
62 tf(tf), name(name)
63 {}
64};
66
73
74class sc_port_base : public sc_object
75{
76 public:
77 sc_port_base(const char *name, int n, sc_port_policy p);
78 virtual ~sc_port_base();
79
80 void warn_port_constructor() const;
81
82 int maxSize() const;
83 int size() const;
84
85 const char *kind() const { return "sc_port_base"; }
86
87 protected:
88 // Implementation defined, but depended on by the tests.
89 void bind(sc_interface &);
90 void bind(sc_port_base &);
91
92 friend class ::sc_gem5::Module;
93
94 // Implementation defined, but depended on by the tests.
95 virtual int vbind(sc_interface &) = 0;
96 virtual int vbind(sc_port_base &) = 0;
97
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;
102
103 void report_error(const char *id, const char *add_msg) const;
104
105 private:
106 friend class ::sc_gem5::Port;
107 friend class ::sc_gem5::Kernel;
108
109 virtual sc_interface *_gem5Interface(int n) const = 0;
110 virtual void _gem5AddInterface(sc_interface *i) = 0;
111
113 virtual const char *_ifTypeName() const = 0;
114 virtual sc_port_policy _portPolicy() const = 0;
115};
116
117template <class IF>
119{
120 public:
121#pragma GCC diagnostic push
129#if defined(__clang__) || (defined(__GNUC__) && (__GNUC__ >= 13))
130#pragma GCC diagnostic ignored "-Woverloaded-virtual"
131#endif
132 void operator () (IF &i) { bind(i); }
134
135 virtual void bind(IF &i) { sc_port_base::bind(i); }
136 virtual void bind(sc_port_b<IF> &p) { sc_port_base::bind(p); }
137#pragma GCC diagnostic pop
138
139 IF *
141 {
142 if (_interfaces.empty()) {
143 report_error(SC_ID_GET_IF_, "port is not bound");
144 sc_abort();
145 }
146 return _interfaces[0];
147 }
148 const IF *
150 {
151 if (_interfaces.empty()) {
152 report_error(SC_ID_GET_IF_, "port is not bound");
153 sc_abort();
154 }
155 return _interfaces[0];
156 }
157
158 IF *
160 {
161 if (n < 0 || n >= size()) {
162 report_error(SC_ID_GET_IF_, "index out of range");
163 return NULL;
164 }
165 return _interfaces[n];
166 }
167 const IF *
168 operator [] (int n) const
169 {
170 if (n < 0 || n >= size()) {
171 report_error(SC_ID_GET_IF_, "index out of range");
172 return NULL;
173 }
174 return _interfaces[n];
175 }
176
179 {
180 if (_interfaces.empty())
181 return NULL;
182 return _interfaces[0];
183 }
184 const sc_interface *
186 {
187 if (_interfaces.empty())
188 return NULL;
189 return _interfaces[0];
190 }
191
192 protected:
193 void before_end_of_elaboration() override {}
194 void end_of_elaboration() override {}
195 void start_of_simulation() override {}
196 void end_of_simulation() override {}
197
198 explicit sc_port_b(int n, sc_port_policy p) :
199 sc_port_base(sc_gen_unique_name("port"), n, p)
200 {}
201 sc_port_b(const char *name, int n, sc_port_policy p) :
202 sc_port_base(name, n, p)
203 {}
204 virtual ~sc_port_b() {}
205
206 // Implementation defined, but depended on by the tests.
207 int
208 vbind(sc_interface &i) override
209 {
210 IF *interface = dynamic_cast<IF *>(&i);
211 if (!interface)
212 return 2;
213 sc_port_base::bind(*interface);
214 return 0;
215 }
216 int
217 vbind(sc_port_base &pb) override
218 {
219 sc_port_b<IF> *p = dynamic_cast<sc_port_b<IF> *>(&pb);
220 if (!p)
221 return 2;
223 return 0;
224 }
225
226 private:
228
230 _gem5Interface(int n) const override
231 {
232 if (n < 0 || n >= size()) {
233 report_error(SC_ID_GET_IF_, "index out of range");
234 return NULL;
235 }
236 return _interfaces[n];
237 }
238 void
240 {
241 IF *interface = dynamic_cast<IF *>(iface);
242 sc_assert(interface);
243 for (unsigned i = 0; i < _interfaces.size(); i++) {
244 if (interface == _interfaces[i]) {
246 "interface already bound to port");
247 }
248 }
249 _interfaces.push_back(interface);
250 }
251
252 const char *_ifTypeName() const override { return typeid(IF).name(); }
253
254 // Disabled
257 sc_port_b<IF> &operator = (const sc_port_b<IF> &) { return *this; }
258};
259
260template <class IF, int N=1, sc_port_policy P=SC_ONE_OR_MORE_BOUND>
261class sc_port : public sc_port_b<IF>
262{
263 public:
264 sc_port() : sc_port_b<IF>(N, P) {}
265 explicit sc_port(const char *name) : sc_port_b<IF>(name, N, P) {}
266 virtual ~sc_port() {}
267
268 // Deprecated binding constructors.
269 explicit sc_port(const IF &interface) : sc_port_b<IF>(N, P)
270 {
271 this->warn_port_constructor();
272 sc_port_b<IF>::bind(const_cast<IF &>(interface));
273 }
274 sc_port(const char *name, const IF &interface) : sc_port_b<IF>(name, N, P)
275 {
276 this->warn_port_constructor();
277 sc_port_b<IF>::bind(const_cast<IF &>(interface));
278 }
279 explicit sc_port(sc_port_b<IF> &parent) : sc_port_b<IF>(N, P)
280 {
281 this->warn_port_constructor();
282 sc_port_b<IF>::bind(parent);
283 }
284 sc_port(const char *name, sc_port_b<IF> &parent) :
285 sc_port_b<IF>(name, N, P)
286 {
287 this->warn_port_constructor();
288 sc_port_b<IF>::bind(parent);
289 }
290 explicit sc_port(sc_port<IF, N, P> &parent) : sc_port_b<IF>(N, P)
291 {
292 this->warn_port_constructor();
293 sc_port_b<IF>::bind(parent);
294 }
295 sc_port(const char *name, sc_port<IF, N, P> &parent) :
296 sc_port_b<IF>(name, N, P)
297 {
298 this->warn_port_constructor();
299 sc_port_b<IF>::bind(parent);
300 }
301
302 virtual const char *kind() const override { return "sc_port"; }
303
304 private:
305 // Disabled
308
309 virtual sc_port_policy _portPolicy() const override { return P; }
310};
311
312} // namespace sc_core
313
314#endif //__SYSTEMC_EXT_CORE_SC_PORT_HH__
const char * name() const
Definition sc_object.cc:44
sc_port_b(const char *name, int n, sc_port_policy p)
Definition sc_port.hh:201
void start_of_simulation() override
Definition sc_port.hh:195
void end_of_simulation() override
Definition sc_port.hh:196
std::vector< IF * > _interfaces
Definition sc_port.hh:227
const sc_interface * get_interface() const
Definition sc_port.hh:185
virtual void bind(sc_port_b< IF > &p)
Definition sc_port.hh:136
sc_interface * _gem5Interface(int n) const override
Definition sc_port.hh:230
int vbind(sc_port_base &pb) override
Definition sc_port.hh:217
virtual ~sc_port_b()
Definition sc_port.hh:204
int vbind(sc_interface &i) override
Definition sc_port.hh:208
sc_interface * get_interface()
Definition sc_port.hh:178
sc_port_b(const sc_port_b< IF > &)
Definition sc_port.hh:256
IF * operator[](int n)
Definition sc_port.hh:159
sc_port_b(int n, sc_port_policy p)
Definition sc_port.hh:198
void before_end_of_elaboration() override
Definition sc_port.hh:193
const char * _ifTypeName() const override
Definition sc_port.hh:252
void _gem5AddInterface(sc_interface *iface) override
Definition sc_port.hh:239
virtual void bind(IF &i)
Definition sc_port.hh:135
sc_port_b< IF > & operator=(const sc_port_b< IF > &)
Definition sc_port.hh:257
void operator()(IF &i)
The following warning is disabled because the bind methods are overloaded in the derived class and th...
Definition sc_port.hh:132
void end_of_elaboration() override
Definition sc_port.hh:194
virtual ~sc_port_base()
Definition sc_port.cc:79
int maxSize() const
Definition sc_port.cc:106
const char * kind() const
Definition sc_port.hh:85
virtual const char * _ifTypeName() const =0
virtual sc_port_policy _portPolicy() const =0
virtual sc_interface * _gem5Interface(int n) const =0
virtual int vbind(sc_port_base &)=0
virtual void _gem5AddInterface(sc_interface *i)=0
virtual void before_end_of_elaboration()=0
::sc_gem5::Port * _gem5Port
Definition sc_port.hh:112
virtual void start_of_simulation()=0
void bind(sc_interface &)
Definition sc_port.cc:109
void report_error(const char *id, const char *add_msg) const
Definition sc_port.cc:97
virtual void end_of_simulation()=0
virtual int vbind(sc_interface &)=0
void warn_port_constructor() const
Definition sc_port.cc:85
virtual void end_of_elaboration()=0
sc_port(const char *name, sc_port< IF, N, P > &parent)
Definition sc_port.hh:295
virtual ~sc_port()
Definition sc_port.hh:266
sc_port(const sc_port< IF, N, P > &)
Definition sc_port.hh:306
sc_port(const char *name, const IF &interface)
Definition sc_port.hh:274
sc_port(const char *name)
Definition sc_port.hh:265
sc_port(sc_port< IF, N, P > &parent)
Definition sc_port.hh:290
sc_port(const IF &interface)
Definition sc_port.hh:269
virtual sc_port_policy _portPolicy() const override
Definition sc_port.hh:309
sc_port< IF, N, P > & operator=(const sc_port< IF, N, P > &)
Definition sc_port.hh:307
sc_port(const char *name, sc_port_b< IF > &parent)
Definition sc_port.hh:284
sc_port(sc_port_b< IF > &parent)
Definition sc_port.hh:279
virtual const char * kind() const override
Definition sc_port.hh:302
STL vector class.
Definition stl.hh:37
void sc_abort()
Definition sc_report.cc:178
const char SC_ID_GET_IF_[]
Definition messages.cc:49
std::vector< sc_trace_params * > sc_trace_params_vec
Definition sc_port.hh:65
const char SC_ID_BIND_IF_TO_PORT_[]
Definition messages.cc:44
sc_port_policy
Definition sc_port.hh:68
@ SC_ALL_BOUND
Definition sc_port.hh:71
@ SC_ZERO_OR_MORE_BOUND
Definition sc_port.hh:70
@ SC_ONE_OR_MORE_BOUND
Definition sc_port.hh:69
const char * sc_gen_unique_name(const char *seed)
Definition sc_module.cc:820
#define sc_assert(expr)
sc_trace_file * tf
Definition sc_port.hh:58
sc_trace_params(sc_trace_file *tf, const std::string &name)
Definition sc_port.hh:61

Generated on Mon Jan 13 2025 04:28:43 for gem5 by doxygen 1.9.8