sc_module.cc (13248:a07071974510) sc_module.cc (13260:4d18f1d20093)
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#include <memory>
31#include <string>
32#include <vector>
33
34#include "base/logging.hh"
35#include "systemc/core/kernel.hh"
36#include "systemc/core/module.hh"
37#include "systemc/core/process_types.hh"
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#include <memory>
31#include <string>
32#include <vector>
33
34#include "base/logging.hh"
35#include "systemc/core/kernel.hh"
36#include "systemc/core/module.hh"
37#include "systemc/core/process_types.hh"
38#include "systemc/core/sensitivity.hh"
38#include "systemc/ext/channel/sc_signal_in_if.hh"
39#include "systemc/ext/core/sc_module.hh"
40#include "systemc/ext/core/sc_module_name.hh"
41#include "systemc/ext/dt/bit/sc_logic.hh"
42#include "systemc/ext/utils/sc_report_handler.hh"
43
44namespace sc_gem5
45{
46
47Process *
48newMethodProcess(const char *name, ProcessFuncWrapper *func)
49{
50 Method *p = new Method(name, func);
51 if (::sc_core::sc_is_running()) {
52 std::string name = p->name();
53 delete p;
54 SC_REPORT_ERROR("(E541) call to SC_METHOD in sc_module while "
55 "simulation running", name.c_str());
56 return nullptr;
57 }
58 scheduler.reg(p);
59 return p;
60}
61
62Process *
63newThreadProcess(const char *name, ProcessFuncWrapper *func)
64{
65 Thread *p = new Thread(name, func);
66 if (::sc_core::sc_is_running()) {
67 std::string name = p->name();
68 delete p;
69 SC_REPORT_ERROR("(E542) call to SC_THREAD in sc_module while "
70 "simulation running", name.c_str());
71 return nullptr;
72 }
73 scheduler.reg(p);
74 return p;
75}
76
77Process *
78newCThreadProcess(const char *name, ProcessFuncWrapper *func)
79{
80 CThread *p = new CThread(name, func);
81 if (::sc_core::sc_is_running()) {
82 std::string name = p->name();
83 delete p;
84 SC_REPORT_ERROR("(E543) call to SC_CTHREAD in sc_module while "
85 "simulation running", name.c_str());
86 return nullptr;
87 }
88 scheduler.reg(p);
89 p->dontInitialize(true);
90 return p;
91}
92
93UniqueNameGen nameGen;
94
95} // namespace sc_gem5
96
97namespace sc_core
98{
99
100sc_bind_proxy::sc_bind_proxy(sc_interface &_interface) :
101 _interface(&_interface), _port(nullptr)
102{}
103
104sc_bind_proxy::sc_bind_proxy(sc_port_base &_port) :
105 _interface(nullptr), _port(&_port)
106{}
107
108const sc_bind_proxy SC_BIND_PROXY_NUL(*(sc_port_base *)nullptr);
109
110sc_module::~sc_module() { delete _gem5_module; }
111
112const sc_bind_proxy SC_BIND_PROXY_NIL(*(sc_port_base *)nullptr);
113
114void
115sc_module::operator () (const sc_bind_proxy &p001,
116 const sc_bind_proxy &p002,
117 const sc_bind_proxy &p003,
118 const sc_bind_proxy &p004,
119 const sc_bind_proxy &p005,
120 const sc_bind_proxy &p006,
121 const sc_bind_proxy &p007,
122 const sc_bind_proxy &p008,
123 const sc_bind_proxy &p009,
124 const sc_bind_proxy &p010,
125 const sc_bind_proxy &p011,
126 const sc_bind_proxy &p012,
127 const sc_bind_proxy &p013,
128 const sc_bind_proxy &p014,
129 const sc_bind_proxy &p015,
130 const sc_bind_proxy &p016,
131 const sc_bind_proxy &p017,
132 const sc_bind_proxy &p018,
133 const sc_bind_proxy &p019,
134 const sc_bind_proxy &p020,
135 const sc_bind_proxy &p021,
136 const sc_bind_proxy &p022,
137 const sc_bind_proxy &p023,
138 const sc_bind_proxy &p024,
139 const sc_bind_proxy &p025,
140 const sc_bind_proxy &p026,
141 const sc_bind_proxy &p027,
142 const sc_bind_proxy &p028,
143 const sc_bind_proxy &p029,
144 const sc_bind_proxy &p030,
145 const sc_bind_proxy &p031,
146 const sc_bind_proxy &p032,
147 const sc_bind_proxy &p033,
148 const sc_bind_proxy &p034,
149 const sc_bind_proxy &p035,
150 const sc_bind_proxy &p036,
151 const sc_bind_proxy &p037,
152 const sc_bind_proxy &p038,
153 const sc_bind_proxy &p039,
154 const sc_bind_proxy &p040,
155 const sc_bind_proxy &p041,
156 const sc_bind_proxy &p042,
157 const sc_bind_proxy &p043,
158 const sc_bind_proxy &p044,
159 const sc_bind_proxy &p045,
160 const sc_bind_proxy &p046,
161 const sc_bind_proxy &p047,
162 const sc_bind_proxy &p048,
163 const sc_bind_proxy &p049,
164 const sc_bind_proxy &p050,
165 const sc_bind_proxy &p051,
166 const sc_bind_proxy &p052,
167 const sc_bind_proxy &p053,
168 const sc_bind_proxy &p054,
169 const sc_bind_proxy &p055,
170 const sc_bind_proxy &p056,
171 const sc_bind_proxy &p057,
172 const sc_bind_proxy &p058,
173 const sc_bind_proxy &p059,
174 const sc_bind_proxy &p060,
175 const sc_bind_proxy &p061,
176 const sc_bind_proxy &p062,
177 const sc_bind_proxy &p063,
178 const sc_bind_proxy &p064)
179{
180 std::vector<const ::sc_core::sc_bind_proxy *> proxies;
181 auto insert = [&proxies](const ::sc_core::sc_bind_proxy &p) -> bool {
182 if (!p.port() && !p.interface())
183 return false;
184 proxies.push_back(&p);
185 return true;
186 };
187 insert(p001) && insert(p002) && insert(p003) && insert(p004) &&
188 insert(p005) && insert(p006) && insert(p007) && insert(p008) &&
189 insert(p009) && insert(p010) && insert(p011) && insert(p012) &&
190 insert(p013) && insert(p014) && insert(p015) && insert(p016) &&
191 insert(p017) && insert(p018) && insert(p019) && insert(p020) &&
192 insert(p021) && insert(p022) && insert(p023) && insert(p024) &&
193 insert(p025) && insert(p026) && insert(p027) && insert(p028) &&
194 insert(p029) && insert(p030) && insert(p031) && insert(p032) &&
195 insert(p033) && insert(p034) && insert(p035) && insert(p036) &&
196 insert(p037) && insert(p038) && insert(p039) && insert(p040) &&
197 insert(p041) && insert(p042) && insert(p043) && insert(p044) &&
198 insert(p045) && insert(p046) && insert(p047) && insert(p048) &&
199 insert(p049) && insert(p050) && insert(p051) && insert(p052) &&
200 insert(p053) && insert(p054) && insert(p055) && insert(p056) &&
201 insert(p057) && insert(p058) && insert(p059) && insert(p060) &&
202 insert(p061) && insert(p062) && insert(p063) && insert(p064);
203 _gem5_module->bindPorts(proxies);
204}
205
206const std::vector<sc_object *> &
207sc_module::get_child_objects() const
208{
209 return _gem5_module->obj()->get_child_objects();
210}
211
212const std::vector<sc_event *> &
213sc_module::get_child_events() const
214{
215 return _gem5_module->obj()->get_child_events();
216}
217
218sc_module::sc_module() :
219 sc_object(sc_gem5::newModuleChecked()->name()),
220 _gem5_module(sc_gem5::currentModule())
221{}
222
223sc_module::sc_module(const sc_module_name &) : sc_module() {}
224sc_module::sc_module(const char *_name) : sc_module(sc_module_name(_name))
225{
226 _gem5_module->deprecatedConstructor();
227 SC_REPORT_WARNING("(W569) sc_module(const char*), "
228 "sc_module(const std::string&) have been deprecated, use "
229 "sc_module(const sc_module_name&)", _name);
230}
231sc_module::sc_module(const std::string &_name) :
232 sc_module(sc_module_name(_name.c_str()))
233{
234 _gem5_module->deprecatedConstructor();
235 SC_REPORT_WARNING("(W569) sc_module(const char*), "
236 "sc_module(const std::string&) have been deprecated, use "
237 "sc_module(const sc_module_name&)", _name.c_str());
238}
239
240void
241sc_module::end_module()
242{
243 _gem5_module->endModule();
244}
245
246void
39#include "systemc/ext/channel/sc_signal_in_if.hh"
40#include "systemc/ext/core/sc_module.hh"
41#include "systemc/ext/core/sc_module_name.hh"
42#include "systemc/ext/dt/bit/sc_logic.hh"
43#include "systemc/ext/utils/sc_report_handler.hh"
44
45namespace sc_gem5
46{
47
48Process *
49newMethodProcess(const char *name, ProcessFuncWrapper *func)
50{
51 Method *p = new Method(name, func);
52 if (::sc_core::sc_is_running()) {
53 std::string name = p->name();
54 delete p;
55 SC_REPORT_ERROR("(E541) call to SC_METHOD in sc_module while "
56 "simulation running", name.c_str());
57 return nullptr;
58 }
59 scheduler.reg(p);
60 return p;
61}
62
63Process *
64newThreadProcess(const char *name, ProcessFuncWrapper *func)
65{
66 Thread *p = new Thread(name, func);
67 if (::sc_core::sc_is_running()) {
68 std::string name = p->name();
69 delete p;
70 SC_REPORT_ERROR("(E542) call to SC_THREAD in sc_module while "
71 "simulation running", name.c_str());
72 return nullptr;
73 }
74 scheduler.reg(p);
75 return p;
76}
77
78Process *
79newCThreadProcess(const char *name, ProcessFuncWrapper *func)
80{
81 CThread *p = new CThread(name, func);
82 if (::sc_core::sc_is_running()) {
83 std::string name = p->name();
84 delete p;
85 SC_REPORT_ERROR("(E543) call to SC_CTHREAD in sc_module while "
86 "simulation running", name.c_str());
87 return nullptr;
88 }
89 scheduler.reg(p);
90 p->dontInitialize(true);
91 return p;
92}
93
94UniqueNameGen nameGen;
95
96} // namespace sc_gem5
97
98namespace sc_core
99{
100
101sc_bind_proxy::sc_bind_proxy(sc_interface &_interface) :
102 _interface(&_interface), _port(nullptr)
103{}
104
105sc_bind_proxy::sc_bind_proxy(sc_port_base &_port) :
106 _interface(nullptr), _port(&_port)
107{}
108
109const sc_bind_proxy SC_BIND_PROXY_NUL(*(sc_port_base *)nullptr);
110
111sc_module::~sc_module() { delete _gem5_module; }
112
113const sc_bind_proxy SC_BIND_PROXY_NIL(*(sc_port_base *)nullptr);
114
115void
116sc_module::operator () (const sc_bind_proxy &p001,
117 const sc_bind_proxy &p002,
118 const sc_bind_proxy &p003,
119 const sc_bind_proxy &p004,
120 const sc_bind_proxy &p005,
121 const sc_bind_proxy &p006,
122 const sc_bind_proxy &p007,
123 const sc_bind_proxy &p008,
124 const sc_bind_proxy &p009,
125 const sc_bind_proxy &p010,
126 const sc_bind_proxy &p011,
127 const sc_bind_proxy &p012,
128 const sc_bind_proxy &p013,
129 const sc_bind_proxy &p014,
130 const sc_bind_proxy &p015,
131 const sc_bind_proxy &p016,
132 const sc_bind_proxy &p017,
133 const sc_bind_proxy &p018,
134 const sc_bind_proxy &p019,
135 const sc_bind_proxy &p020,
136 const sc_bind_proxy &p021,
137 const sc_bind_proxy &p022,
138 const sc_bind_proxy &p023,
139 const sc_bind_proxy &p024,
140 const sc_bind_proxy &p025,
141 const sc_bind_proxy &p026,
142 const sc_bind_proxy &p027,
143 const sc_bind_proxy &p028,
144 const sc_bind_proxy &p029,
145 const sc_bind_proxy &p030,
146 const sc_bind_proxy &p031,
147 const sc_bind_proxy &p032,
148 const sc_bind_proxy &p033,
149 const sc_bind_proxy &p034,
150 const sc_bind_proxy &p035,
151 const sc_bind_proxy &p036,
152 const sc_bind_proxy &p037,
153 const sc_bind_proxy &p038,
154 const sc_bind_proxy &p039,
155 const sc_bind_proxy &p040,
156 const sc_bind_proxy &p041,
157 const sc_bind_proxy &p042,
158 const sc_bind_proxy &p043,
159 const sc_bind_proxy &p044,
160 const sc_bind_proxy &p045,
161 const sc_bind_proxy &p046,
162 const sc_bind_proxy &p047,
163 const sc_bind_proxy &p048,
164 const sc_bind_proxy &p049,
165 const sc_bind_proxy &p050,
166 const sc_bind_proxy &p051,
167 const sc_bind_proxy &p052,
168 const sc_bind_proxy &p053,
169 const sc_bind_proxy &p054,
170 const sc_bind_proxy &p055,
171 const sc_bind_proxy &p056,
172 const sc_bind_proxy &p057,
173 const sc_bind_proxy &p058,
174 const sc_bind_proxy &p059,
175 const sc_bind_proxy &p060,
176 const sc_bind_proxy &p061,
177 const sc_bind_proxy &p062,
178 const sc_bind_proxy &p063,
179 const sc_bind_proxy &p064)
180{
181 std::vector<const ::sc_core::sc_bind_proxy *> proxies;
182 auto insert = [&proxies](const ::sc_core::sc_bind_proxy &p) -> bool {
183 if (!p.port() && !p.interface())
184 return false;
185 proxies.push_back(&p);
186 return true;
187 };
188 insert(p001) && insert(p002) && insert(p003) && insert(p004) &&
189 insert(p005) && insert(p006) && insert(p007) && insert(p008) &&
190 insert(p009) && insert(p010) && insert(p011) && insert(p012) &&
191 insert(p013) && insert(p014) && insert(p015) && insert(p016) &&
192 insert(p017) && insert(p018) && insert(p019) && insert(p020) &&
193 insert(p021) && insert(p022) && insert(p023) && insert(p024) &&
194 insert(p025) && insert(p026) && insert(p027) && insert(p028) &&
195 insert(p029) && insert(p030) && insert(p031) && insert(p032) &&
196 insert(p033) && insert(p034) && insert(p035) && insert(p036) &&
197 insert(p037) && insert(p038) && insert(p039) && insert(p040) &&
198 insert(p041) && insert(p042) && insert(p043) && insert(p044) &&
199 insert(p045) && insert(p046) && insert(p047) && insert(p048) &&
200 insert(p049) && insert(p050) && insert(p051) && insert(p052) &&
201 insert(p053) && insert(p054) && insert(p055) && insert(p056) &&
202 insert(p057) && insert(p058) && insert(p059) && insert(p060) &&
203 insert(p061) && insert(p062) && insert(p063) && insert(p064);
204 _gem5_module->bindPorts(proxies);
205}
206
207const std::vector<sc_object *> &
208sc_module::get_child_objects() const
209{
210 return _gem5_module->obj()->get_child_objects();
211}
212
213const std::vector<sc_event *> &
214sc_module::get_child_events() const
215{
216 return _gem5_module->obj()->get_child_events();
217}
218
219sc_module::sc_module() :
220 sc_object(sc_gem5::newModuleChecked()->name()),
221 _gem5_module(sc_gem5::currentModule())
222{}
223
224sc_module::sc_module(const sc_module_name &) : sc_module() {}
225sc_module::sc_module(const char *_name) : sc_module(sc_module_name(_name))
226{
227 _gem5_module->deprecatedConstructor();
228 SC_REPORT_WARNING("(W569) sc_module(const char*), "
229 "sc_module(const std::string&) have been deprecated, use "
230 "sc_module(const sc_module_name&)", _name);
231}
232sc_module::sc_module(const std::string &_name) :
233 sc_module(sc_module_name(_name.c_str()))
234{
235 _gem5_module->deprecatedConstructor();
236 SC_REPORT_WARNING("(W569) sc_module(const char*), "
237 "sc_module(const std::string&) have been deprecated, use "
238 "sc_module(const sc_module_name&)", _name.c_str());
239}
240
241void
242sc_module::end_module()
243{
244 _gem5_module->endModule();
245}
246
247void
247sc_module::reset_signal_is(const sc_in<bool> &, bool)
248sc_module::reset_signal_is(const sc_in<bool> &port, bool val)
248{
249{
249 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
250 sc_gem5::newResetSensitivityPort(
251 ::sc_gem5::Process::newest(), &port, val, true);
250}
251
252void
252}
253
254void
253sc_module::reset_signal_is(const sc_inout<bool> &, bool)
255sc_module::reset_signal_is(const sc_inout<bool> &port, bool val)
254{
256{
255 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
257 sc_gem5::newResetSensitivityPort(
258 ::sc_gem5::Process::newest(), &port, val, true);
256}
257
258void
259}
260
261void
259sc_module::reset_signal_is(const sc_out<bool> &, bool)
262sc_module::reset_signal_is(const sc_out<bool> &port, bool val)
260{
263{
261 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
264 sc_gem5::newResetSensitivityPort(
265 ::sc_gem5::Process::newest(), &port, val, true);
262}
263
264void
266}
267
268void
265sc_module::reset_signal_is(const sc_signal_in_if<bool> &, bool)
269sc_module::reset_signal_is(const sc_signal_in_if<bool> &signal, bool val)
266{
270{
267 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
271 sc_gem5::newResetSensitivitySignal(
272 ::sc_gem5::Process::newest(), &signal, val, true);
268}
269
270
271void
273}
274
275
276void
272sc_module::async_reset_signal_is(const sc_in<bool> &, bool)
277sc_module::async_reset_signal_is(const sc_in<bool> &port, bool val)
273{
278{
274 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
279 sc_gem5::newResetSensitivityPort(
280 ::sc_gem5::Process::newest(), &port, val, false);
275}
276
277void
281}
282
283void
278sc_module::async_reset_signal_is(const sc_inout<bool> &, bool)
284sc_module::async_reset_signal_is(const sc_inout<bool> &port, bool val)
279{
285{
280 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
286 sc_gem5::newResetSensitivityPort(
287 ::sc_gem5::Process::newest(), &port, val, false);
281}
282
283void
288}
289
290void
284sc_module::async_reset_signal_is(const sc_out<bool> &, bool)
291sc_module::async_reset_signal_is(const sc_out<bool> &port, bool val)
285{
292{
286 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
293 sc_gem5::newResetSensitivityPort(
294 ::sc_gem5::Process::newest(), &port, val, false);
287}
288
289void
295}
296
297void
290sc_module::async_reset_signal_is(const sc_signal_in_if<bool> &, bool)
298sc_module::async_reset_signal_is(const sc_signal_in_if<bool> &signal, bool val)
291{
299{
292 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
300 sc_gem5::newResetSensitivitySignal(
301 ::sc_gem5::Process::newest(), &signal, val, false);
293}
294
295
296void
297sc_module::dont_initialize()
298{
299 ::sc_gem5::Process::newest()->dontInitialize(true);
300}
301
302void
303sc_module::set_stack_size(size_t size)
304{
305 ::sc_gem5::Process::newest()->setStackSize(size);
306}
307
308
309void sc_module::next_trigger() { ::sc_core::next_trigger(); }
310
311void
312sc_module::next_trigger(const sc_event &e)
313{
314 ::sc_core::next_trigger(e);
315}
316
317void
318sc_module::next_trigger(const sc_event_or_list &eol)
319{
320 ::sc_core::next_trigger(eol);
321}
322
323void
324sc_module::next_trigger(const sc_event_and_list &eal)
325{
326 ::sc_core::next_trigger(eal);
327}
328
329void
330sc_module::next_trigger(const sc_time &t)
331{
332 ::sc_core::next_trigger(t);
333}
334
335void
336sc_module::next_trigger(double d, sc_time_unit u)
337{
338 ::sc_core::next_trigger(d, u);
339}
340
341void
342sc_module::next_trigger(const sc_time &t, const sc_event &e)
343{
344 ::sc_core::next_trigger(t, e);
345}
346
347void
348sc_module::next_trigger(double d, sc_time_unit u, const sc_event &e)
349{
350 ::sc_core::next_trigger(d, u, e);
351}
352
353void
354sc_module::next_trigger(const sc_time &t, const sc_event_or_list &eol)
355{
356 ::sc_core::next_trigger(t, eol);
357}
358
359void
360sc_module::next_trigger(double d, sc_time_unit u, const sc_event_or_list &eol)
361{
362 ::sc_core::next_trigger(d, u, eol);
363}
364
365void
366sc_module::next_trigger(const sc_time &t, const sc_event_and_list &eal)
367{
368 ::sc_core::next_trigger(t, eal);
369}
370
371void
372sc_module::next_trigger(double d, sc_time_unit u, const sc_event_and_list &eal)
373{
374 ::sc_core::next_trigger(d, u, eal);
375}
376
377
378bool
379sc_module::timed_out()
380{
381 return ::sc_core::timed_out();
382}
383
384
385void
386sc_module::wait()
387{
388 ::sc_core::wait();
389}
390
391void
392sc_module::wait(int i)
393{
394 ::sc_core::wait(i);
395}
396
397void
398sc_module::wait(const sc_event &e)
399{
400 ::sc_core::wait(e);
401}
402
403void
404sc_module::wait(const sc_event_or_list &eol)
405{
406 ::sc_core::wait(eol);
407}
408
409void
410sc_module::wait(const sc_event_and_list &eal)
411{
412 ::sc_core::wait(eal);
413}
414
415void
416sc_module::wait(const sc_time &t)
417{
418 ::sc_core::wait(t);
419}
420
421void
422sc_module::wait(double d, sc_time_unit u)
423{
424 ::sc_core::wait(d, u);
425}
426
427void
428sc_module::wait(const sc_time &t, const sc_event &e)
429{
430 ::sc_core::wait(t, e);
431}
432
433void
434sc_module::wait(double d, sc_time_unit u, const sc_event &e)
435{
436 ::sc_core::wait(d, u, e);
437}
438
439void
440sc_module::wait(const sc_time &t, const sc_event_or_list &eol)
441{
442 ::sc_core::wait(t, eol);
443}
444
445void
446sc_module::wait(double d, sc_time_unit u, const sc_event_or_list &eol)
447{
448 ::sc_core::wait(d, u, eol);
449}
450
451void
452sc_module::wait(const sc_time &t, const sc_event_and_list &eal)
453{
454 ::sc_core::wait(t, eal);
455}
456
457void
458sc_module::wait(double d, sc_time_unit u, const sc_event_and_list &eal)
459{
460 ::sc_core::wait(d, u, eal);
461}
462
463
464void
465sc_module::halt()
466{
467 ::sc_core::halt();
468}
469
470void
471sc_module::at_posedge(const sc_signal_in_if<bool> &s)
472{
473 ::sc_core::at_posedge(s);
474}
475
476void
477sc_module::at_posedge(const sc_signal_in_if<sc_dt::sc_logic> &s)
478{
479 ::sc_core::at_posedge(s);
480}
481
482void
483sc_module::at_negedge(const sc_signal_in_if<bool> &s)
484{
485 ::sc_core::at_negedge(s);
486}
487
488void
489sc_module::at_negedge(const sc_signal_in_if<sc_dt::sc_logic> &s)
490{
491 ::sc_core::at_negedge(s);
492}
493
494
495void
496next_trigger()
497{
498 sc_gem5::Process *p = sc_gem5::scheduler.current();
499 p->cancelTimeout();
500 p->clearDynamic();
501}
502
503void
504next_trigger(const sc_event &e)
505{
506 sc_gem5::Process *p = sc_gem5::scheduler.current();
507 p->cancelTimeout();
508 ::sc_gem5::newDynamicSensitivityEvent(p, &e);
509}
510
511void
512next_trigger(const sc_event_or_list &eol)
513{
514 sc_gem5::Process *p = sc_gem5::scheduler.current();
515 p->cancelTimeout();
516 ::sc_gem5::newDynamicSensitivityEventOrList(p, &eol);
517}
518
519void
520next_trigger(const sc_event_and_list &eal)
521{
522 sc_gem5::Process *p = sc_gem5::scheduler.current();
523 p->cancelTimeout();
524 ::sc_gem5::newDynamicSensitivityEventAndList(p, &eal);
525}
526
527void
528next_trigger(const sc_time &t)
529{
530 sc_gem5::Process *p = sc_gem5::scheduler.current();
531 p->setTimeout(t);
532 p->clearDynamic();
533}
534
535void
536next_trigger(double d, sc_time_unit u)
537{
538 next_trigger(sc_time(d, u));
539}
540
541void
542next_trigger(const sc_time &t, const sc_event &e)
543{
544 sc_gem5::Process *p = sc_gem5::scheduler.current();
545 p->setTimeout(t);
546 ::sc_gem5::newDynamicSensitivityEvent(p, &e);
547}
548
549void
550next_trigger(double d, sc_time_unit u, const sc_event &e)
551{
552 next_trigger(sc_time(d, u), e);
553}
554
555void
556next_trigger(const sc_time &t, const sc_event_or_list &eol)
557{
558 sc_gem5::Process *p = sc_gem5::scheduler.current();
559 p->setTimeout(t);
560 ::sc_gem5::newDynamicSensitivityEventOrList(p, &eol);
561}
562
563void
564next_trigger(double d, sc_time_unit u, const sc_event_or_list &eol)
565{
566 next_trigger(sc_time(d, u), eol);
567}
568
569void
570next_trigger(const sc_time &t, const sc_event_and_list &eal)
571{
572 sc_gem5::Process *p = sc_gem5::scheduler.current();
573 p->setTimeout(t);
574 ::sc_gem5::newDynamicSensitivityEventAndList(p, &eal);
575}
576
577void
578next_trigger(double d, sc_time_unit u, const sc_event_and_list &eal)
579{
580 next_trigger(sc_time(d, u), eal);
581}
582
583bool
584timed_out()
585{
586 ::sc_gem5::Process *p = sc_gem5::scheduler.current();
587 if (!p)
588 return false;
589 else
590 return p->timedOut();
591}
592
593
594namespace
595{
596
597bool
598waitErrorCheck(sc_gem5::Process *p)
599{
600 if (p->procKind() == SC_METHOD_PROC_) {
601 SC_REPORT_ERROR(
602 "(E519) wait() is only allowed in SC_THREADs and SC_CTHREADs",
603 "\n in SC_METHODs use next_trigger() instead");
604 return true;
605 }
606 return false;
607}
608
609} // anonymous namespace
610
611void
612wait()
613{
614 sc_gem5::Process *p = sc_gem5::scheduler.current();
615 if (waitErrorCheck(p))
616 return;
617 p->cancelTimeout();
618 p->clearDynamic();
619 sc_gem5::scheduler.yield();
620}
621
622void
623wait(int n)
624{
625 if (n <= 0) {
626 std::string msg = csprintf("n = %d", n);
627 SC_REPORT_ERROR("(E525) wait(n) is only valid for n > 0", msg.c_str());
628 }
302}
303
304
305void
306sc_module::dont_initialize()
307{
308 ::sc_gem5::Process::newest()->dontInitialize(true);
309}
310
311void
312sc_module::set_stack_size(size_t size)
313{
314 ::sc_gem5::Process::newest()->setStackSize(size);
315}
316
317
318void sc_module::next_trigger() { ::sc_core::next_trigger(); }
319
320void
321sc_module::next_trigger(const sc_event &e)
322{
323 ::sc_core::next_trigger(e);
324}
325
326void
327sc_module::next_trigger(const sc_event_or_list &eol)
328{
329 ::sc_core::next_trigger(eol);
330}
331
332void
333sc_module::next_trigger(const sc_event_and_list &eal)
334{
335 ::sc_core::next_trigger(eal);
336}
337
338void
339sc_module::next_trigger(const sc_time &t)
340{
341 ::sc_core::next_trigger(t);
342}
343
344void
345sc_module::next_trigger(double d, sc_time_unit u)
346{
347 ::sc_core::next_trigger(d, u);
348}
349
350void
351sc_module::next_trigger(const sc_time &t, const sc_event &e)
352{
353 ::sc_core::next_trigger(t, e);
354}
355
356void
357sc_module::next_trigger(double d, sc_time_unit u, const sc_event &e)
358{
359 ::sc_core::next_trigger(d, u, e);
360}
361
362void
363sc_module::next_trigger(const sc_time &t, const sc_event_or_list &eol)
364{
365 ::sc_core::next_trigger(t, eol);
366}
367
368void
369sc_module::next_trigger(double d, sc_time_unit u, const sc_event_or_list &eol)
370{
371 ::sc_core::next_trigger(d, u, eol);
372}
373
374void
375sc_module::next_trigger(const sc_time &t, const sc_event_and_list &eal)
376{
377 ::sc_core::next_trigger(t, eal);
378}
379
380void
381sc_module::next_trigger(double d, sc_time_unit u, const sc_event_and_list &eal)
382{
383 ::sc_core::next_trigger(d, u, eal);
384}
385
386
387bool
388sc_module::timed_out()
389{
390 return ::sc_core::timed_out();
391}
392
393
394void
395sc_module::wait()
396{
397 ::sc_core::wait();
398}
399
400void
401sc_module::wait(int i)
402{
403 ::sc_core::wait(i);
404}
405
406void
407sc_module::wait(const sc_event &e)
408{
409 ::sc_core::wait(e);
410}
411
412void
413sc_module::wait(const sc_event_or_list &eol)
414{
415 ::sc_core::wait(eol);
416}
417
418void
419sc_module::wait(const sc_event_and_list &eal)
420{
421 ::sc_core::wait(eal);
422}
423
424void
425sc_module::wait(const sc_time &t)
426{
427 ::sc_core::wait(t);
428}
429
430void
431sc_module::wait(double d, sc_time_unit u)
432{
433 ::sc_core::wait(d, u);
434}
435
436void
437sc_module::wait(const sc_time &t, const sc_event &e)
438{
439 ::sc_core::wait(t, e);
440}
441
442void
443sc_module::wait(double d, sc_time_unit u, const sc_event &e)
444{
445 ::sc_core::wait(d, u, e);
446}
447
448void
449sc_module::wait(const sc_time &t, const sc_event_or_list &eol)
450{
451 ::sc_core::wait(t, eol);
452}
453
454void
455sc_module::wait(double d, sc_time_unit u, const sc_event_or_list &eol)
456{
457 ::sc_core::wait(d, u, eol);
458}
459
460void
461sc_module::wait(const sc_time &t, const sc_event_and_list &eal)
462{
463 ::sc_core::wait(t, eal);
464}
465
466void
467sc_module::wait(double d, sc_time_unit u, const sc_event_and_list &eal)
468{
469 ::sc_core::wait(d, u, eal);
470}
471
472
473void
474sc_module::halt()
475{
476 ::sc_core::halt();
477}
478
479void
480sc_module::at_posedge(const sc_signal_in_if<bool> &s)
481{
482 ::sc_core::at_posedge(s);
483}
484
485void
486sc_module::at_posedge(const sc_signal_in_if<sc_dt::sc_logic> &s)
487{
488 ::sc_core::at_posedge(s);
489}
490
491void
492sc_module::at_negedge(const sc_signal_in_if<bool> &s)
493{
494 ::sc_core::at_negedge(s);
495}
496
497void
498sc_module::at_negedge(const sc_signal_in_if<sc_dt::sc_logic> &s)
499{
500 ::sc_core::at_negedge(s);
501}
502
503
504void
505next_trigger()
506{
507 sc_gem5::Process *p = sc_gem5::scheduler.current();
508 p->cancelTimeout();
509 p->clearDynamic();
510}
511
512void
513next_trigger(const sc_event &e)
514{
515 sc_gem5::Process *p = sc_gem5::scheduler.current();
516 p->cancelTimeout();
517 ::sc_gem5::newDynamicSensitivityEvent(p, &e);
518}
519
520void
521next_trigger(const sc_event_or_list &eol)
522{
523 sc_gem5::Process *p = sc_gem5::scheduler.current();
524 p->cancelTimeout();
525 ::sc_gem5::newDynamicSensitivityEventOrList(p, &eol);
526}
527
528void
529next_trigger(const sc_event_and_list &eal)
530{
531 sc_gem5::Process *p = sc_gem5::scheduler.current();
532 p->cancelTimeout();
533 ::sc_gem5::newDynamicSensitivityEventAndList(p, &eal);
534}
535
536void
537next_trigger(const sc_time &t)
538{
539 sc_gem5::Process *p = sc_gem5::scheduler.current();
540 p->setTimeout(t);
541 p->clearDynamic();
542}
543
544void
545next_trigger(double d, sc_time_unit u)
546{
547 next_trigger(sc_time(d, u));
548}
549
550void
551next_trigger(const sc_time &t, const sc_event &e)
552{
553 sc_gem5::Process *p = sc_gem5::scheduler.current();
554 p->setTimeout(t);
555 ::sc_gem5::newDynamicSensitivityEvent(p, &e);
556}
557
558void
559next_trigger(double d, sc_time_unit u, const sc_event &e)
560{
561 next_trigger(sc_time(d, u), e);
562}
563
564void
565next_trigger(const sc_time &t, const sc_event_or_list &eol)
566{
567 sc_gem5::Process *p = sc_gem5::scheduler.current();
568 p->setTimeout(t);
569 ::sc_gem5::newDynamicSensitivityEventOrList(p, &eol);
570}
571
572void
573next_trigger(double d, sc_time_unit u, const sc_event_or_list &eol)
574{
575 next_trigger(sc_time(d, u), eol);
576}
577
578void
579next_trigger(const sc_time &t, const sc_event_and_list &eal)
580{
581 sc_gem5::Process *p = sc_gem5::scheduler.current();
582 p->setTimeout(t);
583 ::sc_gem5::newDynamicSensitivityEventAndList(p, &eal);
584}
585
586void
587next_trigger(double d, sc_time_unit u, const sc_event_and_list &eal)
588{
589 next_trigger(sc_time(d, u), eal);
590}
591
592bool
593timed_out()
594{
595 ::sc_gem5::Process *p = sc_gem5::scheduler.current();
596 if (!p)
597 return false;
598 else
599 return p->timedOut();
600}
601
602
603namespace
604{
605
606bool
607waitErrorCheck(sc_gem5::Process *p)
608{
609 if (p->procKind() == SC_METHOD_PROC_) {
610 SC_REPORT_ERROR(
611 "(E519) wait() is only allowed in SC_THREADs and SC_CTHREADs",
612 "\n in SC_METHODs use next_trigger() instead");
613 return true;
614 }
615 return false;
616}
617
618} // anonymous namespace
619
620void
621wait()
622{
623 sc_gem5::Process *p = sc_gem5::scheduler.current();
624 if (waitErrorCheck(p))
625 return;
626 p->cancelTimeout();
627 p->clearDynamic();
628 sc_gem5::scheduler.yield();
629}
630
631void
632wait(int n)
633{
634 if (n <= 0) {
635 std::string msg = csprintf("n = %d", n);
636 SC_REPORT_ERROR("(E525) wait(n) is only valid for n > 0", msg.c_str());
637 }
629 for (int i = 0; i < n; i++)
630 wait();
638 sc_gem5::Process *p = sc_gem5::scheduler.current();
639 p->waitCount(n - 1);
640 wait();
631}
632
633void
634wait(const sc_event &e)
635{
636 sc_gem5::Process *p = sc_gem5::scheduler.current();
637 if (waitErrorCheck(p))
638 return;
639 p->cancelTimeout();
640 ::sc_gem5::newDynamicSensitivityEvent(p, &e);
641 sc_gem5::scheduler.yield();
642}
643
644void
645wait(const sc_event_or_list &eol)
646{
647 sc_gem5::Process *p = sc_gem5::scheduler.current();
648 if (waitErrorCheck(p))
649 return;
650 p->cancelTimeout();
651 ::sc_gem5::newDynamicSensitivityEventOrList(p, &eol);
652 sc_gem5::scheduler.yield();
653}
654
655void
656wait(const sc_event_and_list &eal)
657{
658 sc_gem5::Process *p = sc_gem5::scheduler.current();
659 if (waitErrorCheck(p))
660 return;
661 p->cancelTimeout();
662 ::sc_gem5::newDynamicSensitivityEventAndList(p, &eal);
663 sc_gem5::scheduler.yield();
664}
665
666void
667wait(const sc_time &t)
668{
669 sc_gem5::Process *p = sc_gem5::scheduler.current();
670 if (waitErrorCheck(p))
671 return;
672 p->setTimeout(t);
673 p->clearDynamic();
674 sc_gem5::scheduler.yield();
675}
676
677void
678wait(double d, sc_time_unit u)
679{
680 wait(sc_time(d, u));
681}
682
683void
684wait(const sc_time &t, const sc_event &e)
685{
686 sc_gem5::Process *p = sc_gem5::scheduler.current();
687 if (waitErrorCheck(p))
688 return;
689 p->setTimeout(t);
690 ::sc_gem5::newDynamicSensitivityEvent(p, &e);
691 sc_gem5::scheduler.yield();
692}
693
694void
695wait(double d, sc_time_unit u, const sc_event &e)
696{
697 wait(sc_time(d, u), e);
698}
699
700void
701wait(const sc_time &t, const sc_event_or_list &eol)
702{
703 sc_gem5::Process *p = sc_gem5::scheduler.current();
704 if (waitErrorCheck(p))
705 return;
706 p->setTimeout(t);
707 ::sc_gem5::newDynamicSensitivityEventOrList(p, &eol);
708 sc_gem5::scheduler.yield();
709}
710
711void
712wait(double d, sc_time_unit u, const sc_event_or_list &eol)
713{
714 wait(sc_time(d, u), eol);
715}
716
717void
718wait(const sc_time &t, const sc_event_and_list &eal)
719{
720 sc_gem5::Process *p = sc_gem5::scheduler.current();
721 if (waitErrorCheck(p))
722 return;
723 p->setTimeout(t);
724 ::sc_gem5::newDynamicSensitivityEventAndList(p, &eal);
725 sc_gem5::scheduler.yield();
726}
727
728void
729wait(double d, sc_time_unit u, const sc_event_and_list &eal)
730{
731 wait(sc_time(d, u), eal);
732}
733
734void
735halt()
736{
737 ::sc_core::wait();
738 throw ::sc_gem5::ScHalt();
739}
740
741void
742at_posedge(const sc_signal_in_if<bool> &s)
743{
744 while (s.read())
745 wait();
746 while (!s.read())
747 wait();
748}
749
750void
751at_posedge(const sc_signal_in_if<sc_dt::sc_logic> &s)
752{
753 while (s.read() == sc_dt::Log_1)
754 wait();
755 while (s.read() == sc_dt::Log_0)
756 wait();
757}
758
759void
760at_negedge(const sc_signal_in_if<bool> &s)
761{
762 while (!s.read())
763 wait();
764 while (s.read())
765 wait();
766}
767
768void
769at_negedge(const sc_signal_in_if<sc_dt::sc_logic> &s)
770{
771 while (s.read() == sc_dt::Log_0)
772 wait();
773 while (s.read() == sc_dt::Log_1)
774 wait();
775}
776
777const char *
778sc_gen_unique_name(const char *seed)
779{
780 ::sc_gem5::Module *mod = ::sc_gem5::currentModule();
781 return mod ? mod->uniqueName(seed) :
782 ::sc_gem5::nameGen.gen(seed);
783}
784
785bool
786sc_hierarchical_name_exists(const char *name)
787{
788 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
789 return false;
790}
791
792bool
793sc_start_of_simulation_invoked()
794{
795 return ::sc_gem5::kernel->startOfSimulationComplete();
796}
797
798bool
799sc_end_of_simulation_invoked()
800{
801 return ::sc_gem5::kernel->endOfSimulationComplete();
802}
803
804sc_module *
805sc_module_sc_new(sc_module *mod)
806{
807 static std::vector<std::unique_ptr<sc_module> > modules;
808 modules.emplace_back(mod);
809 return mod;
810}
811
812} // namespace sc_core
641}
642
643void
644wait(const sc_event &e)
645{
646 sc_gem5::Process *p = sc_gem5::scheduler.current();
647 if (waitErrorCheck(p))
648 return;
649 p->cancelTimeout();
650 ::sc_gem5::newDynamicSensitivityEvent(p, &e);
651 sc_gem5::scheduler.yield();
652}
653
654void
655wait(const sc_event_or_list &eol)
656{
657 sc_gem5::Process *p = sc_gem5::scheduler.current();
658 if (waitErrorCheck(p))
659 return;
660 p->cancelTimeout();
661 ::sc_gem5::newDynamicSensitivityEventOrList(p, &eol);
662 sc_gem5::scheduler.yield();
663}
664
665void
666wait(const sc_event_and_list &eal)
667{
668 sc_gem5::Process *p = sc_gem5::scheduler.current();
669 if (waitErrorCheck(p))
670 return;
671 p->cancelTimeout();
672 ::sc_gem5::newDynamicSensitivityEventAndList(p, &eal);
673 sc_gem5::scheduler.yield();
674}
675
676void
677wait(const sc_time &t)
678{
679 sc_gem5::Process *p = sc_gem5::scheduler.current();
680 if (waitErrorCheck(p))
681 return;
682 p->setTimeout(t);
683 p->clearDynamic();
684 sc_gem5::scheduler.yield();
685}
686
687void
688wait(double d, sc_time_unit u)
689{
690 wait(sc_time(d, u));
691}
692
693void
694wait(const sc_time &t, const sc_event &e)
695{
696 sc_gem5::Process *p = sc_gem5::scheduler.current();
697 if (waitErrorCheck(p))
698 return;
699 p->setTimeout(t);
700 ::sc_gem5::newDynamicSensitivityEvent(p, &e);
701 sc_gem5::scheduler.yield();
702}
703
704void
705wait(double d, sc_time_unit u, const sc_event &e)
706{
707 wait(sc_time(d, u), e);
708}
709
710void
711wait(const sc_time &t, const sc_event_or_list &eol)
712{
713 sc_gem5::Process *p = sc_gem5::scheduler.current();
714 if (waitErrorCheck(p))
715 return;
716 p->setTimeout(t);
717 ::sc_gem5::newDynamicSensitivityEventOrList(p, &eol);
718 sc_gem5::scheduler.yield();
719}
720
721void
722wait(double d, sc_time_unit u, const sc_event_or_list &eol)
723{
724 wait(sc_time(d, u), eol);
725}
726
727void
728wait(const sc_time &t, const sc_event_and_list &eal)
729{
730 sc_gem5::Process *p = sc_gem5::scheduler.current();
731 if (waitErrorCheck(p))
732 return;
733 p->setTimeout(t);
734 ::sc_gem5::newDynamicSensitivityEventAndList(p, &eal);
735 sc_gem5::scheduler.yield();
736}
737
738void
739wait(double d, sc_time_unit u, const sc_event_and_list &eal)
740{
741 wait(sc_time(d, u), eal);
742}
743
744void
745halt()
746{
747 ::sc_core::wait();
748 throw ::sc_gem5::ScHalt();
749}
750
751void
752at_posedge(const sc_signal_in_if<bool> &s)
753{
754 while (s.read())
755 wait();
756 while (!s.read())
757 wait();
758}
759
760void
761at_posedge(const sc_signal_in_if<sc_dt::sc_logic> &s)
762{
763 while (s.read() == sc_dt::Log_1)
764 wait();
765 while (s.read() == sc_dt::Log_0)
766 wait();
767}
768
769void
770at_negedge(const sc_signal_in_if<bool> &s)
771{
772 while (!s.read())
773 wait();
774 while (s.read())
775 wait();
776}
777
778void
779at_negedge(const sc_signal_in_if<sc_dt::sc_logic> &s)
780{
781 while (s.read() == sc_dt::Log_0)
782 wait();
783 while (s.read() == sc_dt::Log_1)
784 wait();
785}
786
787const char *
788sc_gen_unique_name(const char *seed)
789{
790 ::sc_gem5::Module *mod = ::sc_gem5::currentModule();
791 return mod ? mod->uniqueName(seed) :
792 ::sc_gem5::nameGen.gen(seed);
793}
794
795bool
796sc_hierarchical_name_exists(const char *name)
797{
798 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
799 return false;
800}
801
802bool
803sc_start_of_simulation_invoked()
804{
805 return ::sc_gem5::kernel->startOfSimulationComplete();
806}
807
808bool
809sc_end_of_simulation_invoked()
810{
811 return ::sc_gem5::kernel->endOfSimulationComplete();
812}
813
814sc_module *
815sc_module_sc_new(sc_module *mod)
816{
817 static std::vector<std::unique_ptr<sc_module> > modules;
818 modules.emplace_back(mod);
819 return mod;
820}
821
822} // namespace sc_core