scheduler.hh (13194:9c6b495e650c) scheduler.hh (13203:76ee4971fd9e)
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_CORE_SCHEDULER_HH__
31#define __SYSTEMC_CORE_SCHEDULER_HH__
32
33#include <functional>
34#include <map>
35#include <set>
36#include <vector>
37
38#include "base/logging.hh"
39#include "sim/core.hh"
40#include "sim/eventq.hh"
41#include "systemc/core/channel.hh"
42#include "systemc/core/list.hh"
43#include "systemc/core/process.hh"
44#include "systemc/core/sched_event.hh"
45
46class Fiber;
47
48namespace sc_gem5
49{
50
51typedef NodeList<Process> ProcessList;
52typedef NodeList<Channel> ChannelList;
53
54/*
55 * The scheduler supports three different mechanisms, the initialization phase,
56 * delta cycles, and timed notifications.
57 *
58 * INITIALIZATION PHASE
59 *
60 * The initialization phase has three parts:
61 * 1. Run requested channel updates.
62 * 2. Make processes which need to initialize runnable (methods and threads
63 * which didn't have dont_initialize called on them).
64 * 3. Process delta notifications.
65 *
66 * First, the Kernel SimObject calls the update() method during its startup()
67 * callback which handles the requested channel updates. The Kernel also
68 * schedules an event to be run at time 0 with a slightly elevated priority
69 * so that it happens before any "normal" event.
70 *
71 * When that t0 event happens, it calls the schedulers prepareForInit method
72 * which performs step 2 above. That indirectly causes the scheduler's
73 * readyEvent to be scheduled with slightly lowered priority, ensuring it
74 * happens after any "normal" event.
75 *
76 * Because delta notifications are scheduled at the standard priority, all
77 * of those events will happen next, performing step 3 above. Once they finish,
78 * if the readyEvent was scheduled above, there shouldn't be any higher
79 * priority events in front of it. When it runs, it will start the first
80 * evaluate phase of the first delta cycle.
81 *
82 * DELTA CYCLE
83 *
84 * A delta cycle has three phases within it.
85 * 1. The evaluate phase where runnable processes are allowed to run.
86 * 2. The update phase where requested channel updates hapen.
87 * 3. The delta notification phase where delta notifications happen.
88 *
89 * The readyEvent runs all three steps of the delta cycle. It first goes
90 * through the list of runnable processes and executes them until the set is
91 * empty, and then immediately runs the update phase. Since these are all part
92 * of the same event, there's no chance for other events to intervene and
93 * break the required order above.
94 *
95 * During the update phase above, the spec forbids any action which would make
96 * a process runnable. That means that once the update phase finishes, the set
97 * of runnable processes will be empty. There may, however, have been some
98 * delta notifications/timeouts which will have been scheduled during either
99 * the evaluate or update phase above. Those will have been accumulated in the
100 * scheduler, and are now all executed.
101 *
102 * If any processes became runnable during the delta notification phase, the
103 * readyEvent will have been scheduled and will be waiting and ready to run
104 * again, effectively starting the next delta cycle.
105 *
106 * TIMED NOTIFICATION PHASE
107 *
108 * If no processes became runnable, the event queue will continue to process
109 * events until it comes across an event which represents all the timed
110 * notifications which are supposed to happen at a particular time. The object
111 * which tracks them will execute all those notifications, and then destroy
112 * itself. If the readyEvent is now ready to run, the next delta cycle will
113 * start.
114 *
115 * PAUSE/STOP
116 *
117 * To inject a pause from sc_pause which should happen after the current delta
118 * cycle's delta notification phase, an event is scheduled with a lower than
119 * normal priority, but higher than the readyEvent. That ensures that any
120 * delta notifications which are scheduled with normal priority will happen
121 * first, since those are part of the current delta cycle. Then the pause
122 * event will happen before the next readyEvent which would start the next
123 * delta cycle. All of these events are scheduled for the current time, and so
124 * would happen before any timed notifications went off.
125 *
126 * To inject a stop from sc_stop, the delta cycles should stop before even the
127 * delta notifications have happened, but after the evaluate and update phases.
128 * For that, a stop event with slightly higher than normal priority will be
129 * scheduled so that it happens before any of the delta notification events
130 * which are at normal priority.
131 *
132 * MAX RUN TIME
133 *
134 * When sc_start is called, it's possible to pass in a maximum time the
135 * simulation should run to, at which point sc_pause is implicitly called. The
136 * simulation is supposed to run up to the latest timed notification phase
137 * which is less than or equal to the maximum time. In other words it should
138 * run timed notifications at the maximum time, but not the subsequent evaluate
139 * phase. That's implemented by scheduling an event at the max time with a
140 * priority which is lower than all the others except the ready event. Timed
141 * notifications will happen before it fires, but it will override any ready
142 * event and prevent the evaluate phase from starting.
143 */
144
145class Scheduler
146{
147 public:
148 typedef std::list<ScEvent *> ScEvents;
149
150 class TimeSlot : public ::Event
151 {
152 public:
153 TimeSlot() : ::Event(Default_Pri, AutoDelete) {}
154
155 ScEvents events;
156 void process();
157 };
158
159 typedef std::map<Tick, TimeSlot *> TimeSlots;
160
161 Scheduler();
162 ~Scheduler();
163
164 void clear();
165
166 const std::string name() const { return "systemc_scheduler"; }
167
168 uint64_t numCycles() { return _numCycles; }
169 Process *current() { return _current; }
170
171 void initPhase();
172
173 // Register a process with the scheduler.
174 void reg(Process *p);
175
176 // Run the next process, if there is one.
177 void yield();
178
179 // Put a process on the ready list.
180 void ready(Process *p);
181
182 // Mark a process as ready if init is finished, or put it on the list of
183 // processes to be initialized.
184 void resume(Process *p);
185
186 // Remove a process from the ready/init list if it was on one of them, and
187 // return if it was.
188 bool suspend(Process *p);
189
190 // Schedule an update for a given channel.
191 void requestUpdate(Channel *c);
192
193 // Run the given process immediately, preempting whatever may be running.
194 void
195 runNow(Process *p)
196 {
197 // This function may put a process on the wrong list, ie a method on
198 // the process list or vice versa. That's fine since that's just a
199 // performance optimization, and the important thing here is how the
200 // processes are ordered.
201
202 // If a process is running, schedule it/us to run again.
203 if (_current)
204 readyList->pushFirst(_current);
205 // Schedule p to run first.
206 readyList->pushFirst(p);
207 yield();
208 }
209
210 // Set an event queue for scheduling events.
211 void setEventQueue(EventQueue *_eq) { eq = _eq; }
212
213 // Get the current time according to gem5.
214 Tick getCurTick() { return eq ? eq->getCurTick() : 0; }
215
216 Tick
217 delayed(const ::sc_core::sc_time &delay)
218 {
219 //XXX We're assuming the systemc time resolution is in ps.
220 return getCurTick() + delay.value() * SimClock::Int::ps;
221 }
222
223 // For scheduling delayed/timed notifications/timeouts.
224 void
225 schedule(ScEvent *event, const ::sc_core::sc_time &delay)
226 {
227 Tick tick = delayed(delay);
228 if (tick < getCurTick())
229 tick = getCurTick();
230
231 // Delta notification/timeout.
232 if (delay.value() == 0) {
233 event->schedule(deltas, tick);
234 scheduleReadyEvent();
235 return;
236 }
237
238 // Timed notification/timeout.
239 TimeSlot *&ts = timeSlots[tick];
240 if (!ts) {
241 ts = new TimeSlot;
242 schedule(ts, tick);
243 }
244 event->schedule(ts->events, tick);
245 }
246
247 // For descheduling delayed/timed notifications/timeouts.
248 void
249 deschedule(ScEvent *event)
250 {
251 ScEvents *on = event->scheduledOn();
252
253 if (on == &deltas) {
254 event->deschedule();
255 return;
256 }
257
258 // Timed notification/timeout.
259 auto tsit = timeSlots.find(event->when());
260 panic_if(tsit == timeSlots.end(),
261 "Descheduling event at time with no events.");
262 TimeSlot *ts = tsit->second;
263 ScEvents &events = ts->events;
264 assert(on == &events);
265 event->deschedule();
266
267 // If no more events are happening at this time slot, get rid of it.
268 if (events.empty()) {
269 deschedule(ts);
270 timeSlots.erase(tsit);
271 }
272 }
273
274 void
275 completeTimeSlot(TimeSlot *ts)
276 {
277 _changeStamp++;
278 assert(ts == timeSlots.begin()->second);
279 timeSlots.erase(timeSlots.begin());
280 if (!runToTime && starved())
281 scheduleStarvationEvent();
282 }
283
284 // Pending activity ignores gem5 activity, much like how a systemc
285 // simulation wouldn't know about asynchronous external events (socket IO
286 // for instance) that might happen before time advances in a pure
287 // systemc simulation. Also the spec lists what specific types of pending
288 // activity needs to be counted, which obviously doesn't include gem5
289 // events.
290
291 // Return whether there's pending systemc activity at this time.
292 bool
293 pendingCurr()
294 {
295 return !readyListMethods.empty() || !readyListThreads.empty() ||
296 !updateList.empty() || !deltas.empty();
297 }
298
299 // Return whether there are pending timed notifications or timeouts.
300 bool
301 pendingFuture()
302 {
303 return !timeSlots.empty();
304 }
305
306 // Return how many ticks there are until the first pending event, if any.
307 Tick
308 timeToPending()
309 {
310 if (pendingCurr())
311 return 0;
312 if (pendingFuture())
313 return timeSlots.begin()->first - getCurTick();
314 return MaxTick - getCurTick();
315 }
316
317 // Run scheduled channel updates.
318 void runUpdate();
319
320 // Run delta events.
321 void runDelta();
322
323 void setScMainFiber(Fiber *sc_main) { scMain = sc_main; }
324
325 void start(Tick max_tick, bool run_to_time);
326 void oneCycle();
327
328 void schedulePause();
329 void scheduleStop(bool finish_delta);
330
331 enum Status
332 {
333 StatusOther = 0,
334 StatusDelta,
335 StatusUpdate,
336 StatusTiming,
337 StatusPaused,
338 StatusStopped
339 };
340
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_CORE_SCHEDULER_HH__
31#define __SYSTEMC_CORE_SCHEDULER_HH__
32
33#include <functional>
34#include <map>
35#include <set>
36#include <vector>
37
38#include "base/logging.hh"
39#include "sim/core.hh"
40#include "sim/eventq.hh"
41#include "systemc/core/channel.hh"
42#include "systemc/core/list.hh"
43#include "systemc/core/process.hh"
44#include "systemc/core/sched_event.hh"
45
46class Fiber;
47
48namespace sc_gem5
49{
50
51typedef NodeList<Process> ProcessList;
52typedef NodeList<Channel> ChannelList;
53
54/*
55 * The scheduler supports three different mechanisms, the initialization phase,
56 * delta cycles, and timed notifications.
57 *
58 * INITIALIZATION PHASE
59 *
60 * The initialization phase has three parts:
61 * 1. Run requested channel updates.
62 * 2. Make processes which need to initialize runnable (methods and threads
63 * which didn't have dont_initialize called on them).
64 * 3. Process delta notifications.
65 *
66 * First, the Kernel SimObject calls the update() method during its startup()
67 * callback which handles the requested channel updates. The Kernel also
68 * schedules an event to be run at time 0 with a slightly elevated priority
69 * so that it happens before any "normal" event.
70 *
71 * When that t0 event happens, it calls the schedulers prepareForInit method
72 * which performs step 2 above. That indirectly causes the scheduler's
73 * readyEvent to be scheduled with slightly lowered priority, ensuring it
74 * happens after any "normal" event.
75 *
76 * Because delta notifications are scheduled at the standard priority, all
77 * of those events will happen next, performing step 3 above. Once they finish,
78 * if the readyEvent was scheduled above, there shouldn't be any higher
79 * priority events in front of it. When it runs, it will start the first
80 * evaluate phase of the first delta cycle.
81 *
82 * DELTA CYCLE
83 *
84 * A delta cycle has three phases within it.
85 * 1. The evaluate phase where runnable processes are allowed to run.
86 * 2. The update phase where requested channel updates hapen.
87 * 3. The delta notification phase where delta notifications happen.
88 *
89 * The readyEvent runs all three steps of the delta cycle. It first goes
90 * through the list of runnable processes and executes them until the set is
91 * empty, and then immediately runs the update phase. Since these are all part
92 * of the same event, there's no chance for other events to intervene and
93 * break the required order above.
94 *
95 * During the update phase above, the spec forbids any action which would make
96 * a process runnable. That means that once the update phase finishes, the set
97 * of runnable processes will be empty. There may, however, have been some
98 * delta notifications/timeouts which will have been scheduled during either
99 * the evaluate or update phase above. Those will have been accumulated in the
100 * scheduler, and are now all executed.
101 *
102 * If any processes became runnable during the delta notification phase, the
103 * readyEvent will have been scheduled and will be waiting and ready to run
104 * again, effectively starting the next delta cycle.
105 *
106 * TIMED NOTIFICATION PHASE
107 *
108 * If no processes became runnable, the event queue will continue to process
109 * events until it comes across an event which represents all the timed
110 * notifications which are supposed to happen at a particular time. The object
111 * which tracks them will execute all those notifications, and then destroy
112 * itself. If the readyEvent is now ready to run, the next delta cycle will
113 * start.
114 *
115 * PAUSE/STOP
116 *
117 * To inject a pause from sc_pause which should happen after the current delta
118 * cycle's delta notification phase, an event is scheduled with a lower than
119 * normal priority, but higher than the readyEvent. That ensures that any
120 * delta notifications which are scheduled with normal priority will happen
121 * first, since those are part of the current delta cycle. Then the pause
122 * event will happen before the next readyEvent which would start the next
123 * delta cycle. All of these events are scheduled for the current time, and so
124 * would happen before any timed notifications went off.
125 *
126 * To inject a stop from sc_stop, the delta cycles should stop before even the
127 * delta notifications have happened, but after the evaluate and update phases.
128 * For that, a stop event with slightly higher than normal priority will be
129 * scheduled so that it happens before any of the delta notification events
130 * which are at normal priority.
131 *
132 * MAX RUN TIME
133 *
134 * When sc_start is called, it's possible to pass in a maximum time the
135 * simulation should run to, at which point sc_pause is implicitly called. The
136 * simulation is supposed to run up to the latest timed notification phase
137 * which is less than or equal to the maximum time. In other words it should
138 * run timed notifications at the maximum time, but not the subsequent evaluate
139 * phase. That's implemented by scheduling an event at the max time with a
140 * priority which is lower than all the others except the ready event. Timed
141 * notifications will happen before it fires, but it will override any ready
142 * event and prevent the evaluate phase from starting.
143 */
144
145class Scheduler
146{
147 public:
148 typedef std::list<ScEvent *> ScEvents;
149
150 class TimeSlot : public ::Event
151 {
152 public:
153 TimeSlot() : ::Event(Default_Pri, AutoDelete) {}
154
155 ScEvents events;
156 void process();
157 };
158
159 typedef std::map<Tick, TimeSlot *> TimeSlots;
160
161 Scheduler();
162 ~Scheduler();
163
164 void clear();
165
166 const std::string name() const { return "systemc_scheduler"; }
167
168 uint64_t numCycles() { return _numCycles; }
169 Process *current() { return _current; }
170
171 void initPhase();
172
173 // Register a process with the scheduler.
174 void reg(Process *p);
175
176 // Run the next process, if there is one.
177 void yield();
178
179 // Put a process on the ready list.
180 void ready(Process *p);
181
182 // Mark a process as ready if init is finished, or put it on the list of
183 // processes to be initialized.
184 void resume(Process *p);
185
186 // Remove a process from the ready/init list if it was on one of them, and
187 // return if it was.
188 bool suspend(Process *p);
189
190 // Schedule an update for a given channel.
191 void requestUpdate(Channel *c);
192
193 // Run the given process immediately, preempting whatever may be running.
194 void
195 runNow(Process *p)
196 {
197 // This function may put a process on the wrong list, ie a method on
198 // the process list or vice versa. That's fine since that's just a
199 // performance optimization, and the important thing here is how the
200 // processes are ordered.
201
202 // If a process is running, schedule it/us to run again.
203 if (_current)
204 readyList->pushFirst(_current);
205 // Schedule p to run first.
206 readyList->pushFirst(p);
207 yield();
208 }
209
210 // Set an event queue for scheduling events.
211 void setEventQueue(EventQueue *_eq) { eq = _eq; }
212
213 // Get the current time according to gem5.
214 Tick getCurTick() { return eq ? eq->getCurTick() : 0; }
215
216 Tick
217 delayed(const ::sc_core::sc_time &delay)
218 {
219 //XXX We're assuming the systemc time resolution is in ps.
220 return getCurTick() + delay.value() * SimClock::Int::ps;
221 }
222
223 // For scheduling delayed/timed notifications/timeouts.
224 void
225 schedule(ScEvent *event, const ::sc_core::sc_time &delay)
226 {
227 Tick tick = delayed(delay);
228 if (tick < getCurTick())
229 tick = getCurTick();
230
231 // Delta notification/timeout.
232 if (delay.value() == 0) {
233 event->schedule(deltas, tick);
234 scheduleReadyEvent();
235 return;
236 }
237
238 // Timed notification/timeout.
239 TimeSlot *&ts = timeSlots[tick];
240 if (!ts) {
241 ts = new TimeSlot;
242 schedule(ts, tick);
243 }
244 event->schedule(ts->events, tick);
245 }
246
247 // For descheduling delayed/timed notifications/timeouts.
248 void
249 deschedule(ScEvent *event)
250 {
251 ScEvents *on = event->scheduledOn();
252
253 if (on == &deltas) {
254 event->deschedule();
255 return;
256 }
257
258 // Timed notification/timeout.
259 auto tsit = timeSlots.find(event->when());
260 panic_if(tsit == timeSlots.end(),
261 "Descheduling event at time with no events.");
262 TimeSlot *ts = tsit->second;
263 ScEvents &events = ts->events;
264 assert(on == &events);
265 event->deschedule();
266
267 // If no more events are happening at this time slot, get rid of it.
268 if (events.empty()) {
269 deschedule(ts);
270 timeSlots.erase(tsit);
271 }
272 }
273
274 void
275 completeTimeSlot(TimeSlot *ts)
276 {
277 _changeStamp++;
278 assert(ts == timeSlots.begin()->second);
279 timeSlots.erase(timeSlots.begin());
280 if (!runToTime && starved())
281 scheduleStarvationEvent();
282 }
283
284 // Pending activity ignores gem5 activity, much like how a systemc
285 // simulation wouldn't know about asynchronous external events (socket IO
286 // for instance) that might happen before time advances in a pure
287 // systemc simulation. Also the spec lists what specific types of pending
288 // activity needs to be counted, which obviously doesn't include gem5
289 // events.
290
291 // Return whether there's pending systemc activity at this time.
292 bool
293 pendingCurr()
294 {
295 return !readyListMethods.empty() || !readyListThreads.empty() ||
296 !updateList.empty() || !deltas.empty();
297 }
298
299 // Return whether there are pending timed notifications or timeouts.
300 bool
301 pendingFuture()
302 {
303 return !timeSlots.empty();
304 }
305
306 // Return how many ticks there are until the first pending event, if any.
307 Tick
308 timeToPending()
309 {
310 if (pendingCurr())
311 return 0;
312 if (pendingFuture())
313 return timeSlots.begin()->first - getCurTick();
314 return MaxTick - getCurTick();
315 }
316
317 // Run scheduled channel updates.
318 void runUpdate();
319
320 // Run delta events.
321 void runDelta();
322
323 void setScMainFiber(Fiber *sc_main) { scMain = sc_main; }
324
325 void start(Tick max_tick, bool run_to_time);
326 void oneCycle();
327
328 void schedulePause();
329 void scheduleStop(bool finish_delta);
330
331 enum Status
332 {
333 StatusOther = 0,
334 StatusDelta,
335 StatusUpdate,
336 StatusTiming,
337 StatusPaused,
338 StatusStopped
339 };
340
341 bool elaborationDone() { return _elaborationDone; }
342 void elaborationDone(bool b) { _elaborationDone = b; }
343
341 bool paused() { return status() == StatusPaused; }
342 bool stopped() { return status() == StatusStopped; }
343 bool inDelta() { return status() == StatusDelta; }
344 bool inUpdate() { return status() == StatusUpdate; }
345 bool inTiming() { return status() == StatusTiming; }
346
347 uint64_t changeStamp() { return _changeStamp; }
348
349 void throwToScMain(const ::sc_core::sc_report *r=nullptr);
350
351 Status status() { return _status; }
352 void status(Status s) { _status = s; }
353
354 private:
355 typedef const EventBase::Priority Priority;
356 static Priority DefaultPriority = EventBase::Default_Pri;
357
358 static Priority StopPriority = DefaultPriority - 1;
359 static Priority PausePriority = DefaultPriority + 1;
360 static Priority MaxTickPriority = DefaultPriority + 2;
361 static Priority ReadyPriority = DefaultPriority + 3;
362 static Priority StarvationPriority = ReadyPriority;
363
364 EventQueue *eq;
365
366 // For gem5 style events.
367 void
368 schedule(::Event *event, Tick tick)
369 {
370 if (initDone)
371 eq->schedule(event, tick);
372 else
373 eventsToSchedule[event] = tick;
374 }
375
376 void schedule(::Event *event) { schedule(event, getCurTick()); }
377
378 void
379 deschedule(::Event *event)
380 {
381 if (initDone)
382 eq->deschedule(event);
383 else
384 eventsToSchedule.erase(event);
385 }
386
387 ScEvents deltas;
388 TimeSlots timeSlots;
389
390 void runReady();
391 EventWrapper<Scheduler, &Scheduler::runReady> readyEvent;
392 void scheduleReadyEvent();
393
394 void pause();
395 void stop();
396 EventWrapper<Scheduler, &Scheduler::pause> pauseEvent;
397 EventWrapper<Scheduler, &Scheduler::stop> stopEvent;
398
399 Fiber *scMain;
400 const ::sc_core::sc_report *_throwToScMain;
401
402 bool
403 starved()
404 {
405 return (readyListMethods.empty() && readyListThreads.empty() &&
406 updateList.empty() && deltas.empty() &&
407 (timeSlots.empty() || timeSlots.begin()->first > maxTick) &&
408 initList.empty());
409 }
410 EventWrapper<Scheduler, &Scheduler::pause> starvationEvent;
411 void scheduleStarvationEvent();
412
344 bool paused() { return status() == StatusPaused; }
345 bool stopped() { return status() == StatusStopped; }
346 bool inDelta() { return status() == StatusDelta; }
347 bool inUpdate() { return status() == StatusUpdate; }
348 bool inTiming() { return status() == StatusTiming; }
349
350 uint64_t changeStamp() { return _changeStamp; }
351
352 void throwToScMain(const ::sc_core::sc_report *r=nullptr);
353
354 Status status() { return _status; }
355 void status(Status s) { _status = s; }
356
357 private:
358 typedef const EventBase::Priority Priority;
359 static Priority DefaultPriority = EventBase::Default_Pri;
360
361 static Priority StopPriority = DefaultPriority - 1;
362 static Priority PausePriority = DefaultPriority + 1;
363 static Priority MaxTickPriority = DefaultPriority + 2;
364 static Priority ReadyPriority = DefaultPriority + 3;
365 static Priority StarvationPriority = ReadyPriority;
366
367 EventQueue *eq;
368
369 // For gem5 style events.
370 void
371 schedule(::Event *event, Tick tick)
372 {
373 if (initDone)
374 eq->schedule(event, tick);
375 else
376 eventsToSchedule[event] = tick;
377 }
378
379 void schedule(::Event *event) { schedule(event, getCurTick()); }
380
381 void
382 deschedule(::Event *event)
383 {
384 if (initDone)
385 eq->deschedule(event);
386 else
387 eventsToSchedule.erase(event);
388 }
389
390 ScEvents deltas;
391 TimeSlots timeSlots;
392
393 void runReady();
394 EventWrapper<Scheduler, &Scheduler::runReady> readyEvent;
395 void scheduleReadyEvent();
396
397 void pause();
398 void stop();
399 EventWrapper<Scheduler, &Scheduler::pause> pauseEvent;
400 EventWrapper<Scheduler, &Scheduler::stop> stopEvent;
401
402 Fiber *scMain;
403 const ::sc_core::sc_report *_throwToScMain;
404
405 bool
406 starved()
407 {
408 return (readyListMethods.empty() && readyListThreads.empty() &&
409 updateList.empty() && deltas.empty() &&
410 (timeSlots.empty() || timeSlots.begin()->first > maxTick) &&
411 initList.empty());
412 }
413 EventWrapper<Scheduler, &Scheduler::pause> starvationEvent;
414 void scheduleStarvationEvent();
415
416 bool _elaborationDone;
413 bool _started;
414 bool _stopNow;
415
416 Status _status;
417
418 Tick maxTick;
419 Tick lastReadyTick;
420 void
421 maxTickFunc()
422 {
423 if (lastReadyTick != getCurTick())
424 _changeStamp++;
425 pause();
426 }
427 EventWrapper<Scheduler, &Scheduler::maxTickFunc> maxTickEvent;
428
429 uint64_t _numCycles;
430 uint64_t _changeStamp;
431
432 Process *_current;
433
434 bool initDone;
435 bool runToTime;
436 bool runOnce;
437
438 ProcessList initList;
439
440 ProcessList *readyList;
441 ProcessList readyListMethods;
442 ProcessList readyListThreads;
443
444 ChannelList updateList;
445
446 std::map<::Event *, Tick> eventsToSchedule;
447};
448
449extern Scheduler scheduler;
450
451inline void
452Scheduler::TimeSlot::process()
453{
454 scheduler.status(StatusTiming);
455
456 try {
457 while (!events.empty())
458 events.front()->run();
459 } catch (...) {
460 if (events.empty())
461 scheduler.completeTimeSlot(this);
462 else
463 scheduler.schedule(this);
464 scheduler.throwToScMain();
465 }
466
467 scheduler.status(StatusOther);
468 scheduler.completeTimeSlot(this);
469}
470
471const ::sc_core::sc_report *reportifyException();
472
473} // namespace sc_gem5
474
475#endif // __SYSTEMC_CORE_SCHEDULER_H__
417 bool _started;
418 bool _stopNow;
419
420 Status _status;
421
422 Tick maxTick;
423 Tick lastReadyTick;
424 void
425 maxTickFunc()
426 {
427 if (lastReadyTick != getCurTick())
428 _changeStamp++;
429 pause();
430 }
431 EventWrapper<Scheduler, &Scheduler::maxTickFunc> maxTickEvent;
432
433 uint64_t _numCycles;
434 uint64_t _changeStamp;
435
436 Process *_current;
437
438 bool initDone;
439 bool runToTime;
440 bool runOnce;
441
442 ProcessList initList;
443
444 ProcessList *readyList;
445 ProcessList readyListMethods;
446 ProcessList readyListThreads;
447
448 ChannelList updateList;
449
450 std::map<::Event *, Tick> eventsToSchedule;
451};
452
453extern Scheduler scheduler;
454
455inline void
456Scheduler::TimeSlot::process()
457{
458 scheduler.status(StatusTiming);
459
460 try {
461 while (!events.empty())
462 events.front()->run();
463 } catch (...) {
464 if (events.empty())
465 scheduler.completeTimeSlot(this);
466 else
467 scheduler.schedule(this);
468 scheduler.throwToScMain();
469 }
470
471 scheduler.status(StatusOther);
472 scheduler.completeTimeSlot(this);
473}
474
475const ::sc_core::sc_report *reportifyException();
476
477} // namespace sc_gem5
478
479#endif // __SYSTEMC_CORE_SCHEDULER_H__