sc_port.hh (13206:c944ef4abb48) sc_port.hh (13207:034ca389a810)
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 * Authors: Gabe Black
28 */
29
30#ifndef __SYSTEMC_EXT_CORE_SC_PORT_HH__
31#define __SYSTEMC_EXT_CORE_SC_PORT_HH__
32
33#include <vector>
34
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
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 * Authors: Gabe Black
28 */
29
30#ifndef __SYSTEMC_EXT_CORE_SC_PORT_HH__
31#define __SYSTEMC_EXT_CORE_SC_PORT_HH__
32
33#include <vector>
34
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 BindInfo;
43class Module;
44class StaticSensitivityPort;
45class StaticSensitivityFinder;
42class Port;
46
47};
48
49namespace sc_core
50{
51
52class sc_interface;
53
54enum sc_port_policy
55{
56 SC_ONE_OR_MORE_BOUND, // Default
57 SC_ZERO_OR_MORE_BOUND,
58 SC_ALL_BOUND
59};
60
61class sc_port_base : public sc_object
62{
63 public:
64 sc_port_base(const char *name, int n, sc_port_policy p);
43
44};
45
46namespace sc_core
47{
48
49class sc_interface;
50
51enum sc_port_policy
52{
53 SC_ONE_OR_MORE_BOUND, // Default
54 SC_ZERO_OR_MORE_BOUND,
55 SC_ALL_BOUND
56};
57
58class sc_port_base : public sc_object
59{
60 public:
61 sc_port_base(const char *name, int n, sc_port_policy p);
62 virtual ~sc_port_base();
65
66 void warn_unimpl(const char *func) const;
67
68 int maxSize() const;
69 int size() const;
70
71 const char *kind() const { return "sc_port_base"; }
72
73 protected:
74 // Implementation defined, but depended on by the tests.
75 void bind(sc_interface &);
76 void bind(sc_port_base &);
77
78 friend class ::sc_gem5::Module;
79
80 // Implementation defined, but depended on by the tests.
81 virtual int vbind(sc_interface &) = 0;
82 virtual int vbind(sc_port_base &) = 0;
83
84 virtual void before_end_of_elaboration() = 0;
85 virtual void end_of_elaboration() = 0;
86 virtual void start_of_simulation() = 0;
87 virtual void end_of_simulation() = 0;
88
89 private:
63
64 void warn_unimpl(const char *func) const;
65
66 int maxSize() const;
67 int size() const;
68
69 const char *kind() const { return "sc_port_base"; }
70
71 protected:
72 // Implementation defined, but depended on by the tests.
73 void bind(sc_interface &);
74 void bind(sc_port_base &);
75
76 friend class ::sc_gem5::Module;
77
78 // Implementation defined, but depended on by the tests.
79 virtual int vbind(sc_interface &) = 0;
80 virtual int vbind(sc_port_base &) = 0;
81
82 virtual void before_end_of_elaboration() = 0;
83 virtual void end_of_elaboration() = 0;
84 virtual void start_of_simulation() = 0;
85 virtual void end_of_simulation() = 0;
86
87 private:
90 friend class ::sc_gem5::StaticSensitivityPort;
91 friend class ::sc_gem5::StaticSensitivityFinder;
88 friend class ::sc_gem5::Port;
92 friend class ::sc_gem5::Kernel;
93
89 friend class ::sc_gem5::Kernel;
90
94 void _gem5Finalize();
95
96 virtual sc_interface *_gem5Interface(int n) const = 0;
97 virtual void _gem5AddInterface(sc_interface *i) = 0;
98
91 virtual sc_interface *_gem5Interface(int n) const = 0;
92 virtual void _gem5AddInterface(sc_interface *i) = 0;
93
99 std::vector<::sc_gem5::BindInfo *> _gem5BindInfo;
100 int _maxSize;
101 int _size;
102 bool finalized;
94 ::sc_gem5::Port *_gem5Port;
103};
104
105template <class IF>
106class sc_port_b : public sc_port_base
107{
108 public:
109 void operator () (IF &i) { bind(i); }
110 void operator () (sc_port_b<IF> &p) { bind(p); }
111
112 virtual void bind(IF &i) { sc_port_base::bind(i); }
113 virtual void bind(sc_port_b<IF> &p) { sc_port_base::bind(p); }
114
115 IF *
116 operator -> ()
117 {
118 sc_assert(!_interfaces.empty());
119 return _interfaces[0];
120 }
121 const IF *
122 operator -> () const
123 {
124 sc_assert(!_interfaces.empty());
125 return _interfaces[0];
126 }
127
128 IF *
129 operator [] (int n)
130 {
131 sc_assert(_interfaces.size() > n);
132 return _interfaces[n];
133 }
134 const IF *
135 operator [] (int n) const
136 {
137 sc_assert(_interfaces.size() > n);
138 return _interfaces[n];
139 }
140
141 sc_interface *
142 get_interface()
143 {
144 sc_assert(!_interfaces.empty());
145 return _interfaces[0];
146 }
147 const sc_interface *
148 get_interface() const
149 {
150 sc_assert(!_interfaces.empty());
151 return _interfaces[0];
152 }
153
154 protected:
155 void before_end_of_elaboration() {}
156 void end_of_elaboration() {}
157 void start_of_simulation() {}
158 void end_of_simulation() {}
159
160 explicit sc_port_b(int n, sc_port_policy p) :
161 sc_port_base(sc_gen_unique_name("port"), n, p)
162 {}
163 sc_port_b(const char *name, int n, sc_port_policy p) :
164 sc_port_base(name, n, p)
165 {}
166 virtual ~sc_port_b() {}
167
168 // Implementation defined, but depended on by the tests.
169 int
170 vbind(sc_interface &i)
171 {
172 IF *interface = dynamic_cast<IF *>(&i);
173 if (!interface)
174 return 2;
175 sc_port_base::bind(*interface);
176 return 0;
177 }
178 int
179 vbind(sc_port_base &pb)
180 {
181 sc_port_b<IF> *p = dynamic_cast<sc_port_b<IF> *>(&pb);
182 if (!p)
183 return 2;
184 sc_port_base::bind(*p);
185 return 0;
186 }
187
188 private:
189 std::vector<IF *> _interfaces;
190
191 sc_interface *
192 _gem5Interface(int n) const
193 {
194 sc_assert(_interfaces.size() > n);
195 return _interfaces[n];
196 }
197 void
198 _gem5AddInterface(sc_interface *i)
199 {
200 IF *interface = dynamic_cast<IF *>(i);
201 sc_assert(interface);
202 _interfaces.push_back(interface);
203 }
204
205 // Disabled
206 sc_port_b() {}
207 sc_port_b(const sc_port_b<IF> &) {}
208 sc_port_b<IF> &operator = (const sc_port_b<IF> &) { return *this; }
209};
210
211template <class IF, int N=1, sc_port_policy P=SC_ONE_OR_MORE_BOUND>
212class sc_port : public sc_port_b<IF>
213{
214 public:
215 sc_port() : sc_port_b<IF>(N, P) {}
216 explicit sc_port(const char *name) : sc_port_b<IF>(name, N, P) {}
217 virtual ~sc_port() {}
218
219 // Deprecated binding constructors.
220 explicit sc_port(const IF &interface) : sc_port_b<IF>(N, P)
221 {
222 this->warn_unimpl(__PRETTY_FUNCTION__);
223 // Should warn that these are deprecated. See Accellera sc_port.h.
224 sc_port_b<IF>::bind(const_cast<IF &>(interface));
225 }
226 sc_port(const char *name, const IF &interface) : sc_port_b<IF>(name, N, P)
227 {
228 this->warn_unimpl(__PRETTY_FUNCTION__);
229 // Should warn that these are deprecated. See Accellera sc_port.h.
230 sc_port_b<IF>::bind(const_cast<IF &>(interface));
231 }
232 explicit sc_port(sc_port_b<IF> &parent) : sc_port_b<IF>(N, P)
233 {
234 this->warn_unimpl(__PRETTY_FUNCTION__);
235 // Should warn that these are deprecated. See Accellera sc_port.h.
236 sc_port_b<IF>::bind(parent);
237 }
238 sc_port(const char *name, sc_port_b<IF> &parent) :
239 sc_port_b<IF>(name, N, P)
240 {
241 this->warn_unimpl(__PRETTY_FUNCTION__);
242 // Should warn that these are deprecated. See Accellera sc_port.h.
243 sc_port_b<IF>::bind(parent);
244 }
245 explicit sc_port(sc_port<IF, N, P> &parent) : sc_port_b<IF>(N, P)
246 {
247 this->warn_unimpl(__PRETTY_FUNCTION__);
248 // Should warn that these are deprecated. See Accellera sc_port.h.
249 sc_port_b<IF>::bind(parent);
250 }
251 sc_port(const char *name, sc_port<IF, N, P> &parent) :
252 sc_port_b<IF>(name, N, P)
253 {
254 this->warn_unimpl(__PRETTY_FUNCTION__);
255 // Should warn that these are deprecated. See Accellera sc_port.h.
256 sc_port_b<IF>::bind(parent);
257 }
258
259 virtual const char *kind() const { return "sc_port"; }
260
261 private:
262 // Disabled
263 sc_port(const sc_port<IF, N, P> &) {}
264 sc_port<IF, N, P> &operator = (const sc_port<IF, N, P> &) { return *this; }
265};
266
267} // namespace sc_core
268
269#endif //__SYSTEMC_EXT_CORE_SC_PORT_HH__
95};
96
97template <class IF>
98class sc_port_b : public sc_port_base
99{
100 public:
101 void operator () (IF &i) { bind(i); }
102 void operator () (sc_port_b<IF> &p) { bind(p); }
103
104 virtual void bind(IF &i) { sc_port_base::bind(i); }
105 virtual void bind(sc_port_b<IF> &p) { sc_port_base::bind(p); }
106
107 IF *
108 operator -> ()
109 {
110 sc_assert(!_interfaces.empty());
111 return _interfaces[0];
112 }
113 const IF *
114 operator -> () const
115 {
116 sc_assert(!_interfaces.empty());
117 return _interfaces[0];
118 }
119
120 IF *
121 operator [] (int n)
122 {
123 sc_assert(_interfaces.size() > n);
124 return _interfaces[n];
125 }
126 const IF *
127 operator [] (int n) const
128 {
129 sc_assert(_interfaces.size() > n);
130 return _interfaces[n];
131 }
132
133 sc_interface *
134 get_interface()
135 {
136 sc_assert(!_interfaces.empty());
137 return _interfaces[0];
138 }
139 const sc_interface *
140 get_interface() const
141 {
142 sc_assert(!_interfaces.empty());
143 return _interfaces[0];
144 }
145
146 protected:
147 void before_end_of_elaboration() {}
148 void end_of_elaboration() {}
149 void start_of_simulation() {}
150 void end_of_simulation() {}
151
152 explicit sc_port_b(int n, sc_port_policy p) :
153 sc_port_base(sc_gen_unique_name("port"), n, p)
154 {}
155 sc_port_b(const char *name, int n, sc_port_policy p) :
156 sc_port_base(name, n, p)
157 {}
158 virtual ~sc_port_b() {}
159
160 // Implementation defined, but depended on by the tests.
161 int
162 vbind(sc_interface &i)
163 {
164 IF *interface = dynamic_cast<IF *>(&i);
165 if (!interface)
166 return 2;
167 sc_port_base::bind(*interface);
168 return 0;
169 }
170 int
171 vbind(sc_port_base &pb)
172 {
173 sc_port_b<IF> *p = dynamic_cast<sc_port_b<IF> *>(&pb);
174 if (!p)
175 return 2;
176 sc_port_base::bind(*p);
177 return 0;
178 }
179
180 private:
181 std::vector<IF *> _interfaces;
182
183 sc_interface *
184 _gem5Interface(int n) const
185 {
186 sc_assert(_interfaces.size() > n);
187 return _interfaces[n];
188 }
189 void
190 _gem5AddInterface(sc_interface *i)
191 {
192 IF *interface = dynamic_cast<IF *>(i);
193 sc_assert(interface);
194 _interfaces.push_back(interface);
195 }
196
197 // Disabled
198 sc_port_b() {}
199 sc_port_b(const sc_port_b<IF> &) {}
200 sc_port_b<IF> &operator = (const sc_port_b<IF> &) { return *this; }
201};
202
203template <class IF, int N=1, sc_port_policy P=SC_ONE_OR_MORE_BOUND>
204class sc_port : public sc_port_b<IF>
205{
206 public:
207 sc_port() : sc_port_b<IF>(N, P) {}
208 explicit sc_port(const char *name) : sc_port_b<IF>(name, N, P) {}
209 virtual ~sc_port() {}
210
211 // Deprecated binding constructors.
212 explicit sc_port(const IF &interface) : sc_port_b<IF>(N, P)
213 {
214 this->warn_unimpl(__PRETTY_FUNCTION__);
215 // Should warn that these are deprecated. See Accellera sc_port.h.
216 sc_port_b<IF>::bind(const_cast<IF &>(interface));
217 }
218 sc_port(const char *name, const IF &interface) : sc_port_b<IF>(name, N, P)
219 {
220 this->warn_unimpl(__PRETTY_FUNCTION__);
221 // Should warn that these are deprecated. See Accellera sc_port.h.
222 sc_port_b<IF>::bind(const_cast<IF &>(interface));
223 }
224 explicit sc_port(sc_port_b<IF> &parent) : sc_port_b<IF>(N, P)
225 {
226 this->warn_unimpl(__PRETTY_FUNCTION__);
227 // Should warn that these are deprecated. See Accellera sc_port.h.
228 sc_port_b<IF>::bind(parent);
229 }
230 sc_port(const char *name, sc_port_b<IF> &parent) :
231 sc_port_b<IF>(name, N, P)
232 {
233 this->warn_unimpl(__PRETTY_FUNCTION__);
234 // Should warn that these are deprecated. See Accellera sc_port.h.
235 sc_port_b<IF>::bind(parent);
236 }
237 explicit sc_port(sc_port<IF, N, P> &parent) : sc_port_b<IF>(N, P)
238 {
239 this->warn_unimpl(__PRETTY_FUNCTION__);
240 // Should warn that these are deprecated. See Accellera sc_port.h.
241 sc_port_b<IF>::bind(parent);
242 }
243 sc_port(const char *name, sc_port<IF, N, P> &parent) :
244 sc_port_b<IF>(name, N, P)
245 {
246 this->warn_unimpl(__PRETTY_FUNCTION__);
247 // Should warn that these are deprecated. See Accellera sc_port.h.
248 sc_port_b<IF>::bind(parent);
249 }
250
251 virtual const char *kind() const { return "sc_port"; }
252
253 private:
254 // Disabled
255 sc_port(const sc_port<IF, N, P> &) {}
256 sc_port<IF, N, P> &operator = (const sc_port<IF, N, P> &) { return *this; }
257};
258
259} // namespace sc_core
260
261#endif //__SYSTEMC_EXT_CORE_SC_PORT_HH__