Deleted Added
sdiff udiff text old ( 13207:034ca389a810 ) new ( 13260:4d18f1d20093 )
full compact
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

--- 69 unchanged lines hidden (view full) ---

78 for (auto e: opts->_exports)
79 newStaticSensitivityExport(proc, e);
80
81 for (auto i: opts->_interfaces)
82 newStaticSensitivityInterface(proc, i);
83
84 for (auto f: opts->_finders)
85 newStaticSensitivityFinder(proc, f);
86 }
87
88 if (opts && opts->_dontInitialize &&
89 opts->_events.empty() && opts->_ports.empty() &&
90 opts->_exports.empty() && opts->_interfaces.empty() &&
91 opts->_finders.empty()) {
92 SC_REPORT_WARNING(
93 "(W558) disable() or dont_initialize() called on process "

--- 62 unchanged lines hidden (view full) ---

156void
157sc_spawn_options::set_sensitivity(sc_event_finder *f)
158{
159 _finders.push_back(f);
160}
161
162
163void
164sc_spawn_options::reset_signal_is(const sc_in<bool> &, bool)
165{
166 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
167}
168
169void
170sc_spawn_options::reset_signal_is(const sc_inout<bool> &, bool)
171{
172 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
173}
174
175void
176sc_spawn_options::reset_signal_is(const sc_out<bool> &, bool)
177{
178 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
179}
180
181void
182sc_spawn_options::reset_signal_is(const sc_signal_in_if<bool> &, bool)
183{
184 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
185}
186
187
188void
189sc_spawn_options::async_reset_signal_is(const sc_in<bool> &, bool)
190{
191 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
192}
193
194void
195sc_spawn_options::async_reset_signal_is(const sc_inout<bool> &, bool)
196{
197 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
198}
199
200void
201sc_spawn_options::async_reset_signal_is(const sc_out<bool> &, bool)
202{
203 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
204}
205
206void
207sc_spawn_options::async_reset_signal_is(const sc_signal_in_if<bool> &, bool)
208{
209 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
210}
211
212
213void
214sc_spawn_warn_unimpl(const char *func)
215{
216 warn("%s not implemented.\n", func);
217}
218
219} // namespace sc_core
220
221namespace sc_unnamed
222{
223
224ImplementationDefined _1;
225ImplementationDefined _2;
226ImplementationDefined _3;
227ImplementationDefined _4;
228ImplementationDefined _5;
229ImplementationDefined _6;
230ImplementationDefined _7;
231ImplementationDefined _8;
232ImplementationDefined _9;
233
234} // namespace sc_unnamed