scheduler.hh (13176:76f52e8d8c6a) scheduler.hh (13182:9e030f636a8c)
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 // Tell the scheduler not to initialize a process.
177 void dontInitialize(Process *p);
178
179 // Run the next process, if there is one.
180 void yield();
181
182 // Put a process on the ready list.
183 void ready(Process *p);
184
185 // Mark a process as ready if init is finished, or put it on the list of
186 // processes to be initialized.
187 void resume(Process *p);
188
189 // Remove a process from the ready/init list if it was on one of them, and
190 // return if it was.
191 bool suspend(Process *p);
192
193 // Schedule an update for a given channel.
194 void requestUpdate(Channel *c);
195
196 // Run the given process immediately, preempting whatever may be running.
197 void
198 runNow(Process *p)
199 {
200 // This function may put a process on the wrong list, ie a method on
201 // the process list or vice versa. That's fine since that's just a
202 // performance optimization, and the important thing here is how the
203 // processes are ordered.
204
205 // If a process is running, schedule it/us to run again.
206 if (_current)
207 readyList->pushFirst(_current);
208 // Schedule p to run first.
209 readyList->pushFirst(p);
210 yield();
211 }
212
213 // Set an event queue for scheduling events.
214 void setEventQueue(EventQueue *_eq) { eq = _eq; }
215
216 // Get the current time according to gem5.
217 Tick getCurTick() { return eq ? eq->getCurTick() : 0; }
218
219 Tick
220 delayed(const ::sc_core::sc_time &delay)
221 {
222 //XXX We're assuming the systemc time resolution is in ps.
223 return getCurTick() + delay.value() * SimClock::Int::ps;
224 }
225
226 // For scheduling delayed/timed notifications/timeouts.
227 void
228 schedule(ScEvent *event, const ::sc_core::sc_time &delay)
229 {
230 Tick tick = delayed(delay);
231 if (tick < getCurTick())
232 tick = getCurTick();
233
234 // Delta notification/timeout.
235 if (delay.value() == 0) {
236 event->schedule(deltas, tick);
237 scheduleReadyEvent();
238 return;
239 }
240
241 // Timed notification/timeout.
242 TimeSlot *&ts = timeSlots[tick];
243 if (!ts) {
244 ts = new TimeSlot;
245 schedule(ts, tick);
246 }
247 event->schedule(ts->events, tick);
248 }
249
250 // For descheduling delayed/timed notifications/timeouts.
251 void
252 deschedule(ScEvent *event)
253 {
254 ScEvents *on = event->scheduledOn();
255
256 if (on == &deltas) {
257 event->deschedule();
258 return;
259 }
260
261 // Timed notification/timeout.
262 auto tsit = timeSlots.find(event->when());
263 panic_if(tsit == timeSlots.end(),
264 "Descheduling event at time with no events.");
265 TimeSlot *ts = tsit->second;
266 ScEvents &events = ts->events;
267 assert(on == &events);
268 event->deschedule();
269
270 // If no more events are happening at this time slot, get rid of it.
271 if (events.empty()) {
272 deschedule(ts);
273 timeSlots.erase(tsit);
274 }
275 }
276
277 void
278 completeTimeSlot(TimeSlot *ts)
279 {
280 _changeStamp++;
281 assert(ts == timeSlots.begin()->second);
282 timeSlots.erase(timeSlots.begin());
283 if (!runToTime && starved())
284 scheduleStarvationEvent();
285 }
286
287 // Pending activity ignores gem5 activity, much like how a systemc
288 // simulation wouldn't know about asynchronous external events (socket IO
289 // for instance) that might happen before time advances in a pure
290 // systemc simulation. Also the spec lists what specific types of pending
291 // activity needs to be counted, which obviously doesn't include gem5
292 // events.
293
294 // Return whether there's pending systemc activity at this time.
295 bool
296 pendingCurr()
297 {
298 return !readyListMethods.empty() || !readyListThreads.empty() ||
299 !updateList.empty() || !deltas.empty();
300 }
301
302 // Return whether there are pending timed notifications or timeouts.
303 bool
304 pendingFuture()
305 {
306 return !timeSlots.empty();
307 }
308
309 // Return how many ticks there are until the first pending event, if any.
310 Tick
311 timeToPending()
312 {
313 if (pendingCurr())
314 return 0;
315 if (pendingFuture())
316 return timeSlots.begin()->first - getCurTick();
317 return MaxTick - getCurTick();
318 }
319
320 // Run scheduled channel updates.
321 void update();
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 bool paused() { return _paused; }
332 bool stopped() { return _stopped; }
333
334 uint64_t changeStamp() { return _changeStamp; }
335
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 // Tell the scheduler not to initialize a process.
177 void dontInitialize(Process *p);
178
179 // Run the next process, if there is one.
180 void yield();
181
182 // Put a process on the ready list.
183 void ready(Process *p);
184
185 // Mark a process as ready if init is finished, or put it on the list of
186 // processes to be initialized.
187 void resume(Process *p);
188
189 // Remove a process from the ready/init list if it was on one of them, and
190 // return if it was.
191 bool suspend(Process *p);
192
193 // Schedule an update for a given channel.
194 void requestUpdate(Channel *c);
195
196 // Run the given process immediately, preempting whatever may be running.
197 void
198 runNow(Process *p)
199 {
200 // This function may put a process on the wrong list, ie a method on
201 // the process list or vice versa. That's fine since that's just a
202 // performance optimization, and the important thing here is how the
203 // processes are ordered.
204
205 // If a process is running, schedule it/us to run again.
206 if (_current)
207 readyList->pushFirst(_current);
208 // Schedule p to run first.
209 readyList->pushFirst(p);
210 yield();
211 }
212
213 // Set an event queue for scheduling events.
214 void setEventQueue(EventQueue *_eq) { eq = _eq; }
215
216 // Get the current time according to gem5.
217 Tick getCurTick() { return eq ? eq->getCurTick() : 0; }
218
219 Tick
220 delayed(const ::sc_core::sc_time &delay)
221 {
222 //XXX We're assuming the systemc time resolution is in ps.
223 return getCurTick() + delay.value() * SimClock::Int::ps;
224 }
225
226 // For scheduling delayed/timed notifications/timeouts.
227 void
228 schedule(ScEvent *event, const ::sc_core::sc_time &delay)
229 {
230 Tick tick = delayed(delay);
231 if (tick < getCurTick())
232 tick = getCurTick();
233
234 // Delta notification/timeout.
235 if (delay.value() == 0) {
236 event->schedule(deltas, tick);
237 scheduleReadyEvent();
238 return;
239 }
240
241 // Timed notification/timeout.
242 TimeSlot *&ts = timeSlots[tick];
243 if (!ts) {
244 ts = new TimeSlot;
245 schedule(ts, tick);
246 }
247 event->schedule(ts->events, tick);
248 }
249
250 // For descheduling delayed/timed notifications/timeouts.
251 void
252 deschedule(ScEvent *event)
253 {
254 ScEvents *on = event->scheduledOn();
255
256 if (on == &deltas) {
257 event->deschedule();
258 return;
259 }
260
261 // Timed notification/timeout.
262 auto tsit = timeSlots.find(event->when());
263 panic_if(tsit == timeSlots.end(),
264 "Descheduling event at time with no events.");
265 TimeSlot *ts = tsit->second;
266 ScEvents &events = ts->events;
267 assert(on == &events);
268 event->deschedule();
269
270 // If no more events are happening at this time slot, get rid of it.
271 if (events.empty()) {
272 deschedule(ts);
273 timeSlots.erase(tsit);
274 }
275 }
276
277 void
278 completeTimeSlot(TimeSlot *ts)
279 {
280 _changeStamp++;
281 assert(ts == timeSlots.begin()->second);
282 timeSlots.erase(timeSlots.begin());
283 if (!runToTime && starved())
284 scheduleStarvationEvent();
285 }
286
287 // Pending activity ignores gem5 activity, much like how a systemc
288 // simulation wouldn't know about asynchronous external events (socket IO
289 // for instance) that might happen before time advances in a pure
290 // systemc simulation. Also the spec lists what specific types of pending
291 // activity needs to be counted, which obviously doesn't include gem5
292 // events.
293
294 // Return whether there's pending systemc activity at this time.
295 bool
296 pendingCurr()
297 {
298 return !readyListMethods.empty() || !readyListThreads.empty() ||
299 !updateList.empty() || !deltas.empty();
300 }
301
302 // Return whether there are pending timed notifications or timeouts.
303 bool
304 pendingFuture()
305 {
306 return !timeSlots.empty();
307 }
308
309 // Return how many ticks there are until the first pending event, if any.
310 Tick
311 timeToPending()
312 {
313 if (pendingCurr())
314 return 0;
315 if (pendingFuture())
316 return timeSlots.begin()->first - getCurTick();
317 return MaxTick - getCurTick();
318 }
319
320 // Run scheduled channel updates.
321 void update();
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 bool paused() { return _paused; }
332 bool stopped() { return _stopped; }
333
334 uint64_t changeStamp() { return _changeStamp; }
335
336 void throwToScMain(const ::sc_core::sc_report *r=nullptr);
337
336 private:
337 typedef const EventBase::Priority Priority;
338 static Priority DefaultPriority = EventBase::Default_Pri;
339
340 static Priority StopPriority = DefaultPriority - 1;
341 static Priority PausePriority = DefaultPriority + 1;
342 static Priority MaxTickPriority = DefaultPriority + 2;
343 static Priority ReadyPriority = DefaultPriority + 3;
344 static Priority StarvationPriority = ReadyPriority;
345
346 EventQueue *eq;
347
348 // For gem5 style events.
349 void
350 schedule(::Event *event, Tick tick)
351 {
352 if (initDone)
353 eq->schedule(event, tick);
354 else
355 eventsToSchedule[event] = tick;
356 }
357
358 void schedule(::Event *event) { schedule(event, getCurTick()); }
359
360 void
361 deschedule(::Event *event)
362 {
363 if (initDone)
364 eq->deschedule(event);
365 else
366 eventsToSchedule.erase(event);
367 }
368
369 ScEvents deltas;
370 TimeSlots timeSlots;
371
372 void runReady();
373 EventWrapper<Scheduler, &Scheduler::runReady> readyEvent;
374 void scheduleReadyEvent();
375
376 void pause();
377 void stop();
378 EventWrapper<Scheduler, &Scheduler::pause> pauseEvent;
379 EventWrapper<Scheduler, &Scheduler::stop> stopEvent;
338 private:
339 typedef const EventBase::Priority Priority;
340 static Priority DefaultPriority = EventBase::Default_Pri;
341
342 static Priority StopPriority = DefaultPriority - 1;
343 static Priority PausePriority = DefaultPriority + 1;
344 static Priority MaxTickPriority = DefaultPriority + 2;
345 static Priority ReadyPriority = DefaultPriority + 3;
346 static Priority StarvationPriority = ReadyPriority;
347
348 EventQueue *eq;
349
350 // For gem5 style events.
351 void
352 schedule(::Event *event, Tick tick)
353 {
354 if (initDone)
355 eq->schedule(event, tick);
356 else
357 eventsToSchedule[event] = tick;
358 }
359
360 void schedule(::Event *event) { schedule(event, getCurTick()); }
361
362 void
363 deschedule(::Event *event)
364 {
365 if (initDone)
366 eq->deschedule(event);
367 else
368 eventsToSchedule.erase(event);
369 }
370
371 ScEvents deltas;
372 TimeSlots timeSlots;
373
374 void runReady();
375 EventWrapper<Scheduler, &Scheduler::runReady> readyEvent;
376 void scheduleReadyEvent();
377
378 void pause();
379 void stop();
380 EventWrapper<Scheduler, &Scheduler::pause> pauseEvent;
381 EventWrapper<Scheduler, &Scheduler::stop> stopEvent;
382
380 Fiber *scMain;
383 Fiber *scMain;
384 const ::sc_core::sc_report *_throwToScMain;
381
382 bool
383 starved()
384 {
385 return (readyListMethods.empty() && readyListThreads.empty() &&
386 updateList.empty() && deltas.empty() &&
387 (timeSlots.empty() || timeSlots.begin()->first > maxTick) &&
388 initList.empty());
389 }
390 EventWrapper<Scheduler, &Scheduler::pause> starvationEvent;
391 void scheduleStarvationEvent();
392
393 bool _started;
394 bool _paused;
395 bool _stopped;
396 bool _stopNow;
397
398 Tick maxTick;
399 Tick lastReadyTick;
400 void
401 maxTickFunc()
402 {
403 if (lastReadyTick != getCurTick())
404 _changeStamp++;
405 pause();
406 }
407 EventWrapper<Scheduler, &Scheduler::maxTickFunc> maxTickEvent;
408
409 uint64_t _numCycles;
410 uint64_t _changeStamp;
411
412 Process *_current;
413
414 bool initDone;
415 bool runToTime;
416 bool runOnce;
417
418 ProcessList initList;
419 ProcessList toFinalize;
420
421 ProcessList *readyList;
422 ProcessList readyListMethods;
423 ProcessList readyListThreads;
424
425 ChannelList updateList;
426
427 std::map<::Event *, Tick> eventsToSchedule;
428};
429
430extern Scheduler scheduler;
431
432inline void
433Scheduler::TimeSlot::process()
434{
435 while (!events.empty())
436 events.front()->run();
437 scheduler.completeTimeSlot(this);
438}
439
385
386 bool
387 starved()
388 {
389 return (readyListMethods.empty() && readyListThreads.empty() &&
390 updateList.empty() && deltas.empty() &&
391 (timeSlots.empty() || timeSlots.begin()->first > maxTick) &&
392 initList.empty());
393 }
394 EventWrapper<Scheduler, &Scheduler::pause> starvationEvent;
395 void scheduleStarvationEvent();
396
397 bool _started;
398 bool _paused;
399 bool _stopped;
400 bool _stopNow;
401
402 Tick maxTick;
403 Tick lastReadyTick;
404 void
405 maxTickFunc()
406 {
407 if (lastReadyTick != getCurTick())
408 _changeStamp++;
409 pause();
410 }
411 EventWrapper<Scheduler, &Scheduler::maxTickFunc> maxTickEvent;
412
413 uint64_t _numCycles;
414 uint64_t _changeStamp;
415
416 Process *_current;
417
418 bool initDone;
419 bool runToTime;
420 bool runOnce;
421
422 ProcessList initList;
423 ProcessList toFinalize;
424
425 ProcessList *readyList;
426 ProcessList readyListMethods;
427 ProcessList readyListThreads;
428
429 ChannelList updateList;
430
431 std::map<::Event *, Tick> eventsToSchedule;
432};
433
434extern Scheduler scheduler;
435
436inline void
437Scheduler::TimeSlot::process()
438{
439 while (!events.empty())
440 events.front()->run();
441 scheduler.completeTimeSlot(this);
442}
443
444const ::sc_core::sc_report *reportifyException();
445
440} // namespace sc_gem5
441
442#endif // __SYSTEMC_CORE_SCHEDULER_H__
446} // namespace sc_gem5
447
448#endif // __SYSTEMC_CORE_SCHEDULER_H__