gem5  v20.0.0.3
sc_main.cc
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 #include "base/types.hh"
29 #include "sim/core.hh"
30 #include "sim/eventq.hh"
31 #include "systemc/core/kernel.hh"
37 
38 namespace sc_core
39 {
40 
41 namespace
42 {
43 
45 
46 } // anonymous namespace
47 
48 int
50 {
52 }
53 
54 const char *const *
56 {
58 }
59 
60 void
62 {
65 }
66 
67 void
69 {
72 }
73 
74 void
76 {
77  if (time.value() == 0) {
79  } else {
81  if (MaxTick - now < time.value())
83  ::sc_gem5::scheduler.start(now + time.value(), p == SC_RUN_TO_TIME);
84  }
85 }
86 
87 void
89 {
90  if (sc_is_running()) {
92  return;
93  }
94  _stop_mode = mode;
95 }
96 
99 {
100  return _stop_mode;
101 }
102 
103 void
105 {
106  static bool stop_called = false;
107  if (stop_called) {
108  static bool stop_warned = false;
109  if (!stop_warned)
111  stop_warned = true;
112  return;
113  }
114  stop_called = true;
115 
117  return;
118 
119  if ((sc_get_status() & SC_RUNNING)) {
120  bool finish_delta = (_stop_mode == SC_STOP_FINISH_DELTA);
121  ::sc_gem5::scheduler.scheduleStop(finish_delta);
122  } else {
124  }
125 }
126 
127 const sc_time &
129 {
130  static sc_time tstamp(1.0, SC_SEC);
131  tstamp = sc_time::from_value(::sc_gem5::scheduler.getCurTick());
132  return tstamp;
133 }
134 
137 {
138  return sc_gem5::scheduler.numCycles();
139 }
140 
141 bool
143 {
144  return sc_get_status() & (SC_RUNNING | SC_PAUSED);
145 }
146 
147 bool
149 {
151 }
152 
153 bool
155 {
157 }
158 
159 bool
161 {
164 }
165 
166 sc_time
168 {
169  return sc_time::from_value(::sc_gem5::scheduler.timeToPending());
170 }
171 
172 sc_status
174 {
176 }
177 
178 std::ostream &
179 operator << (std::ostream &os, sc_status s)
180 {
181  switch (s) {
182  case SC_ELABORATION:
183  os << "SC_ELABORATION";
184  break;
186  os << "SC_BEFORE_END_OF_ELABORATION";
187  break;
189  os << "SC_END_OF_ELABORATION";
190  break;
192  os << "SC_START_OF_SIMULATION";
193  break;
194  case SC_RUNNING:
195  os << "SC_RUNNING";
196  break;
197  case SC_PAUSED:
198  os << "SC_PAUSED";
199  break;
200  case SC_STOPPED:
201  os << "SC_STOPPED";
202  break;
204  os << "SC_END_OF_SIMULATION";
205  break;
206 
207  // Nonstandard
209  os << "SC_END_OF_INITIALIZATION";
210  break;
211  case SC_END_OF_UPDATE:
212  os << "SC_END_OF_UPDATE";
213  break;
214  case SC_BEFORE_TIMESTEP:
215  os << "SC_BEFORE_TIMESTEP";
216  break;
217 
218  default:
219  if (s & SC_STATUS_ANY) {
220  const char *prefix = "(";
221  for (sc_status m = (sc_status)0x1;
222  m < SC_STATUS_ANY; m = (sc_status)(m << 1)) {
223  if (m & s) {
224  os << prefix;
225  prefix = "|";
226  os << m;
227  }
228  }
229  os << ")";
230  } else {
231  ccprintf(os, "%#x", s);
232  }
233  }
234 
235  return os;
236 }
237 
238 } // namespace sc_core
void ccprintf(cp::Print &print)
Definition: cprintf.hh:127
sc_stop_mode sc_get_stop_mode()
Definition: sc_main.cc:98
bool sc_is_running()
Definition: sc_main.cc:142
void sc_start()
Definition: sc_main.cc:61
bool sc_pending_activity_at_future_time()
Definition: sc_main.cc:154
Bitfield< 0 > m
void sc_set_stop_mode(sc_stop_mode mode)
Definition: sc_main.cc:88
Kernel * kernel
Definition: kernel.cc:181
void start(Tick max_tick, bool run_to_time)
Definition: scheduler.cc:399
bool sc_pending_activity()
Definition: sc_main.cc:160
const char *const * argv()
static sc_core::sc_status status()
Definition: kernel.cc:54
Bitfield< 4, 0 > mode
uint64_t numCycles()
Definition: scheduler.hh:169
std::ostream & operator<<(std::ostream &os, sc_status s)
Definition: sc_main.cc:179
const char SC_ID_STOP_MODE_AFTER_START_[]
Definition: messages.cc:113
#define SC_REPORT_WARNING(msg_type, msg)
Bitfield< 17 > os
Definition: misc.hh:803
void scheduleStop(bool finish_delta)
Definition: scheduler.cc:468
static sc_time from_value(sc_dt::uint64)
Definition: sc_time.cc:210
const Tick MaxTick
Definition: types.hh:63
sc_dt::uint64 value() const
Definition: sc_time.cc:115
Bitfield< 4 > s
uint64_t Tick
Tick count type.
Definition: types.hh:61
void sc_stop()
Definition: sc_main.cc:104
bool sc_pending_activity_at_current_time()
Definition: sc_main.cc:148
Scheduler scheduler
Definition: scheduler.cc:489
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
sc_status sc_get_status()
Definition: sc_main.cc:173
const sc_time & sc_time_stamp()
Definition: sc_main.cc:128
sc_starvation_policy
Definition: sc_main.hh:46
uint64_t uint64
Definition: sc_nbdefs.hh:172
static void stop()
Definition: kernel.cc:140
const char *const * sc_argv()
Definition: sc_main.cc:55
sc_stop_mode
Definition: sc_main.hh:62
#define SC_REPORT_ERROR(msg_type, msg)
const char SC_ID_SIMULATION_TIME_OVERFLOW_[]
Definition: messages.cc:107
const char SC_ID_SIMULATION_STOP_CALLED_TWICE_[]
Definition: messages.cc:109
void sc_pause()
Definition: sc_main.cc:68
int sc_argc()
Definition: sc_main.cc:49
sc_dt::uint64 sc_delta_count()
Definition: sc_main.cc:136
ScMainFiber scMainFiber
Bitfield< 0 > p
sc_time sc_time_to_pending_activity()
Definition: sc_main.cc:167
sc_status
Definition: sc_main.hh:81

Generated on Fri Jul 3 2020 15:53:05 for gem5 by doxygen 1.8.13