gem5  v20.0.0.3
eventq.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2000-2005 The Regents of The University of Michigan
3  * Copyright (c) 2013 Advanced Micro Devices, Inc.
4  * Copyright (c) 2013 Mark D. Hill and David A. Wood
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions are
9  * met: redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer;
11  * redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in the
13  * documentation and/or other materials provided with the distribution;
14  * neither the name of the copyright holders nor the names of its
15  * contributors may be used to endorse or promote products derived from
16  * this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30 
31 /* @file
32  * EventQueue interfaces
33  */
34 
35 #ifndef __SIM_EVENTQ_HH__
36 #define __SIM_EVENTQ_HH__
37 
38 #include <algorithm>
39 #include <cassert>
40 #include <climits>
41 #include <functional>
42 #include <iosfwd>
43 #include <memory>
44 #include <mutex>
45 #include <string>
46 
47 #include "base/flags.hh"
48 #include "base/types.hh"
49 #include "debug/Event.hh"
50 #include "sim/serialize.hh"
51 
52 class EventQueue; // forward declaration
53 class BaseGlobalEvent;
54 
60 extern Tick simQuantum;
61 
63 extern uint32_t numMainEventQueues;
64 
67 
70 
71 extern __thread EventQueue *_curEventQueue;
72 
74 extern bool inParallelMode;
75 
80 EventQueue *getEventQueue(uint32_t index);
81 
84 
90 class EventBase
91 {
92  protected:
93  typedef unsigned short FlagsType;
94  typedef ::Flags<FlagsType> Flags;
95 
96  static const FlagsType PublicRead = 0x003f; // public readable flags
97  static const FlagsType PublicWrite = 0x001d; // public writable flags
98  static const FlagsType Squashed = 0x0001; // has been squashed
99  static const FlagsType Scheduled = 0x0002; // has been scheduled
100  static const FlagsType Managed = 0x0004; // Use life cycle manager
101  static const FlagsType AutoDelete = Managed; // delete after dispatch
107  static const FlagsType Reserved0 = 0x0008;
108  static const FlagsType IsExitEvent = 0x0010; // special exit event
109  static const FlagsType IsMainQueue = 0x0020; // on main event queue
110  static const FlagsType Initialized = 0x7a40; // somewhat random bits
111  static const FlagsType InitMask = 0xffc0; // mask for init bits
112 
113  public:
117  typedef int8_t Priority;
118 
123 
129  static const Priority Minimum_Pri = SCHAR_MIN;
130 
138  static const Priority Debug_Enable_Pri = -101;
139 
147  static const Priority Debug_Break_Pri = -100;
148 
157  static const Priority CPU_Switch_Pri = -31;
158 
166  static const Priority Delayed_Writeback_Pri = -1;
167 
173  static const Priority Default_Pri = 0;
174 
181  static const Priority DVFS_Update_Pri = 31;
182 
190  static const Priority Serialize_Pri = 32;
191 
198  static const Priority CPU_Tick_Pri = 50;
199 
205  static const Priority CPU_Exit_Pri = 64;
206 
213  static const Priority Stat_Event_Pri = 90;
214 
220  static const Priority Progress_Event_Pri = 95;
221 
228  static const Priority Sim_Exit_Pri = 100;
229 
235  static const Priority Maximum_Pri = SCHAR_MAX;
236 };
237 
238 /*
239  * An item on an event queue. The action caused by a given
240  * event is specified by deriving a subclass and overriding the
241  * process() member function.
242  *
243  * Caution, the order of members is chosen to maximize data packing.
244  */
245 class Event : public EventBase, public Serializable
246 {
247  friend class EventQueue;
248 
249  private:
250  // The event queue is now a linked list of linked lists. The
251  // 'nextBin' pointer is to find the bin, where a bin is defined as
252  // when+priority. All events in the same bin will be stored in a
253  // second linked list (a stack) maintained by the 'nextInBin'
254  // pointer. The list will be accessed in LIFO order. The end
255  // result is that the insert/removal in 'nextBin' is
256  // linear/constant, and the lookup/removal in 'nextInBin' is
257  // constant/constant. Hopefully this is a significant improvement
258  // over the current fully linear insertion.
261 
262  static Event *insertBefore(Event *event, Event *curr);
263  static Event *removeItem(Event *event, Event *last);
264 
268 
269 #ifndef NDEBUG
270  static Counter instanceCounter;
272 
278 
282 #endif
283 
284 #ifdef EVENTQ_DEBUG
285  Tick whenCreated;
286  Tick whenScheduled;
287 #endif
288 
289  void
291  {
292  _when = when;
293 #ifndef NDEBUG
294  queue = q;
295 #endif
296 #ifdef EVENTQ_DEBUG
297  whenScheduled = curTick();
298 #endif
299  }
300 
301  bool
302  initialized() const
303  {
304  return (flags & InitMask) == Initialized;
305  }
306 
307  protected:
308  Flags
309  getFlags() const
310  {
311  return flags & PublicRead;
312  }
313 
314  bool
315  isFlagSet(Flags _flags) const
316  {
317  assert(_flags.noneSet(~PublicRead));
318  return flags.isSet(_flags);
319  }
320 
321  void
322  setFlags(Flags _flags)
323  {
324  assert(_flags.noneSet(~PublicWrite));
325  flags.set(_flags);
326  }
327 
328  void
330  {
331  assert(_flags.noneSet(~PublicWrite));
332  flags.clear(_flags);
333  }
334 
335  void
337  {
338  flags.clear(PublicWrite);
339  }
340 
346  virtual void trace(const char *action);
347 
349  const std::string instanceString() const;
350 
351  protected: /* Memory management */
377  void acquire()
378  {
379  if (flags.isSet(Event::Managed))
380  acquireImpl();
381  }
382 
386  void release() {
387  if (flags.isSet(Event::Managed))
388  releaseImpl();
389  }
390 
391  virtual void acquireImpl() {}
392 
393  virtual void releaseImpl() {
394  if (!scheduled())
395  delete this;
396  }
397 
400  public:
401 
402  /*
403  * Event constructor
404  * @param queue that the event gets scheduled on
405  *
406  * @ingroup api_eventq
407  */
409  : nextBin(nullptr), nextInBin(nullptr), _when(0), _priority(p),
410  flags(Initialized | f)
411  {
412  assert(f.noneSet(~PublicWrite));
413 #ifndef NDEBUG
414  instance = ++instanceCounter;
415  queue = NULL;
416 #endif
417 #ifdef EVENTQ_DEBUG
418  whenCreated = curTick();
419  whenScheduled = 0;
420 #endif
421  }
422 
427  virtual ~Event();
428  virtual const std::string name() const;
429 
433  virtual const char *description() const;
434 
436  void dump() const; //end of api group
438 
439  public:
440  /*
441  * This member function is invoked when the event is processed
442  * (occurs). There is no default implementation; each subclass
443  * must provide its own implementation. The event is not
444  * automatically deleted after it is processed (to allow for
445  * statically allocated event objects).
446  *
447  * If the AutoDestroy flag is set, the object is deleted once it
448  * is processed.
449  *
450  * @ingroup api_eventq
451  */
452  virtual void process() = 0;
453 
459  bool scheduled() const { return flags.isSet(Scheduled); }
460 
466  void squash() { flags.set(Squashed); }
467 
473  bool squashed() const { return flags.isSet(Squashed); }
474 
480  bool isExitEvent() const { return flags.isSet(IsExitEvent); }
481 
487  bool isManaged() const { return flags.isSet(Managed); }
488 
492  bool isAutoDelete() const { return isManaged(); }
493 
499  Tick when() const { return _when; }
500 
506  Priority priority() const { return _priority; }
507 
511  virtual BaseGlobalEvent *globalEvent() { return NULL; }
512 
513  void serialize(CheckpointOut &cp) const override;
514  void unserialize(CheckpointIn &cp) override;
515 };
516 
520 inline bool
521 operator<(const Event &l, const Event &r)
522 {
523  return l.when() < r.when() ||
524  (l.when() == r.when() && l.priority() < r.priority());
525 }
526 
530 inline bool
531 operator>(const Event &l, const Event &r)
532 {
533  return l.when() > r.when() ||
534  (l.when() == r.when() && l.priority() > r.priority());
535 }
536 
540 inline bool
541 operator<=(const Event &l, const Event &r)
542 {
543  return l.when() < r.when() ||
544  (l.when() == r.when() && l.priority() <= r.priority());
545 }
546 
550 inline bool
551 operator>=(const Event &l, const Event &r)
552 {
553  return l.when() > r.when() ||
554  (l.when() == r.when() && l.priority() >= r.priority());
555 }
556 
560 inline bool
561 operator==(const Event &l, const Event &r)
562 {
563  return l.when() == r.when() && l.priority() == r.priority();
564 }
565 
569 inline bool
570 operator!=(const Event &l, const Event &r)
571 {
572  return l.when() != r.when() || l.priority() != r.priority();
573 }
574 
614 {
615  private:
616  std::string objName;
619 
621  std::mutex async_queue_mutex;
622 
625 
646  std::mutex service_mutex;
647 
650  void insert(Event *event);
651  void remove(Event *event);
652 
656  void asyncInsert(Event *event);
657 
658  EventQueue(const EventQueue &);
659 
660  public:
674  {
675  public:
679  ScopedMigration(EventQueue *_new_eq, bool _doMigrate = true)
680  :new_eq(*_new_eq), old_eq(*curEventQueue()),
681  doMigrate((&new_eq != &old_eq)&&_doMigrate)
682  {
683  if (doMigrate){
684  old_eq.unlock();
685  new_eq.lock();
686  curEventQueue(&new_eq);
687  }
688  }
689 
691  {
692  if (doMigrate){
693  new_eq.unlock();
694  old_eq.lock();
695  curEventQueue(&old_eq);
696  }
697  }
698 
699  private:
702  bool doMigrate;
703  };
704 
715  {
716  public:
721  : eq(*_eq)
722  {
723  eq.unlock();
724  }
725 
727  {
728  eq.lock();
729  }
730 
731  private:
733  };
734 
738  EventQueue(const std::string &n);
739 
744  virtual const std::string name() const { return objName; }
745  void name(const std::string &st) { objName = st; } //end of api_eventq group
747 
753  void schedule(Event *event, Tick when, bool global = false);
754 
760  void deschedule(Event *event);
761 
768  void reschedule(Event *event, Tick when, bool always = false);
769 
770  Tick nextTick() const { return head->when(); }
771  void setCurTick(Tick newVal) { _curTick = newVal; }
772 
782  Tick getCurTick() const { return _curTick; }
783  Event *getHead() const { return head; }
784 
785  Event *serviceOne();
786 
800  void
802  {
803  while (!empty()) {
804  if (nextTick() > when)
805  break;
806 
811  //assert(head->when() >= when && "event scheduled in the past");
812  serviceOne();
813  }
814 
815  setCurTick(when);
816  }
817 
823  bool empty() const { return head == NULL; }
824 
831  void dump() const;
832 
833  bool debugVerify() const;
834 
838  void handleAsyncInsertions();
839 
855  virtual void wakeup(Tick when = (Tick)-1) { }
856 
865  Event* replaceHead(Event* s);
866 
879  void lock() { service_mutex.lock(); }
880  void unlock() { service_mutex.unlock(); }
894  void checkpointReschedule(Event *event);
895 
896  virtual ~EventQueue()
897  {
898  while (!empty())
899  deschedule(getHead());
900  }
901 };
902 
903 void dumpMainQueue();
904 
906 {
907  protected:
910 
911  public:
916  EventManager(EventManager &em) : eventq(em.eventq) {}
917  EventManager(EventManager *em) : eventq(em->eventq) {}
918  EventManager(EventQueue *eq) : eventq(eq) {} //end of api_eventq group
920 
924  EventQueue *
925  eventQueue() const
926  {
927  return eventq;
928  }
929 
933  void
934  schedule(Event &event, Tick when)
935  {
936  eventq->schedule(&event, when);
937  }
938 
942  void
944  {
945  eventq->deschedule(&event);
946  }
947 
951  void
952  reschedule(Event &event, Tick when, bool always = false)
953  {
954  eventq->reschedule(&event, when, always);
955  }
956 
960  void
961  schedule(Event *event, Tick when)
962  {
963  eventq->schedule(event, when);
964  }
965 
969  void
971  {
972  eventq->deschedule(event);
973  }
974 
978  void
979  reschedule(Event *event, Tick when, bool always = false)
980  {
981  eventq->reschedule(event, when, always);
982  }
983 
987  void wakeupEventQueue(Tick when = (Tick)-1)
988  {
989  eventq->wakeup(when);
990  }
991 
992  void setCurTick(Tick newVal) { eventq->setCurTick(newVal); }
993 };
994 
995 template <class T, void (T::* F)()>
996 class EventWrapper : public Event
997 {
998  private:
999  T *object;
1000 
1001  public:
1002  EventWrapper(T *obj, bool del = false, Priority p = Default_Pri)
1003  : Event(p), object(obj)
1004  {
1005  if (del)
1006  setFlags(AutoDelete);
1007  }
1008 
1009  EventWrapper(T &obj, bool del = false, Priority p = Default_Pri)
1010  : Event(p), object(&obj)
1011  {
1012  if (del)
1013  setFlags(AutoDelete);
1014  }
1015 
1016  void process() { (object->*F)(); }
1017 
1018  const std::string
1019  name() const
1020  {
1021  return object->name() + ".wrapped_event";
1022  }
1023 
1024  const char *description() const { return "EventWrapped"; }
1025 };
1026 
1028 {
1029  private:
1030  std::function<void(void)> callback;
1031  std::string _name;
1032 
1033  public:
1037  EventFunctionWrapper(const std::function<void(void)> &callback,
1038  const std::string &name,
1039  bool del = false,
1041  : Event(p), callback(callback), _name(name)
1042  {
1043  if (del)
1044  setFlags(AutoDelete);
1045  }
1046 
1050  void process() { callback(); }
1051 
1055  const std::string
1056  name() const
1057  {
1058  return _name + ".wrapped_function_event";
1059  }
1060 
1064  const char *description() const { return "EventFunctionWrapped"; }
1065 };
1066 
1067 #endif // __SIM_EVENTQ_HH__
void process()
Definition: eventq.hh:1016
EventQueue * eventq
A pointer to this object&#39;s event queue.
Definition: eventq.hh:909
static const Priority Maximum_Pri
Maximum priority.
Definition: eventq.hh:235
Bitfield< 29 > eq
Definition: miscregs.hh:48
EventFunctionWrapper(const std::function< void(void)> &callback, const std::string &name, bool del=false, Priority p=Default_Pri)
Definition: eventq.hh:1037
Bitfield< 30, 0 > index
void deschedule(Event *event)
Definition: eventq.hh:970
void wakeupEventQueue(Tick when=(Tick) -1)
Definition: eventq.hh:987
uint32_t numMainEventQueues
Current number of allocated main event queues.
Definition: eventq.cc:54
bool isAutoDelete() const
Definition: eventq.hh:492
void dumpMainQueue()
Definition: eventq.cc:362
bool operator>(const Event &l, const Event &r)
Definition: eventq.hh:531
const std::string & name()
Definition: trace.cc:50
bool empty() const
Returns true if no events are queued.
Definition: eventq.hh:823
void serviceEvents(Tick when)
process all events up to the given timestamp.
Definition: eventq.hh:801
static const Priority CPU_Exit_Pri
If we want to exit a thread in a CPU, it comes after CPU_Tick_Pri.
Definition: eventq.hh:205
virtual void acquireImpl()
Definition: eventq.hh:391
static const FlagsType Managed
Definition: eventq.hh:100
Counter instance
This event&#39;s unique ID.
Definition: eventq.hh:277
::Flags< FlagsType > Flags
Definition: eventq.hh:94
const std::string name() const
Definition: eventq.hh:1056
static const Priority Default_Pri
Default is zero for historical reasons.
Definition: eventq.hh:173
void setCurTick(Tick newVal)
Definition: eventq.hh:771
void squash()
Squash the current event.
Definition: eventq.hh:466
Tick _when
timestamp when event should be processed
Definition: eventq.hh:265
bool isSet() const
Definition: flags.hh:60
Priority _priority
event priority
Definition: eventq.hh:266
void clear()
Definition: flags.hh:66
EventManager(EventQueue *eq)
Definition: eventq.hh:918
Event * nextBin
Definition: eventq.hh:259
Bitfield< 2 > em
Definition: misc.hh:602
std::function< void(void)> callback
Definition: eventq.hh:1030
static const FlagsType Initialized
Definition: eventq.hh:110
int8_t Priority
Definition: eventq.hh:117
void schedule(Event *event, Tick when, bool global=false)
Schedule the given event on this queue.
Definition: eventq_impl.hh:38
static const Priority Debug_Break_Pri
Breakpoints should happen before anything else (except enabling trace output), so we don&#39;t miss any a...
Definition: eventq.hh:147
void deschedule(Event *event)
Deschedule the specified event.
Definition: eventq_impl.hh:65
static const FlagsType PublicRead
Definition: eventq.hh:96
EventQueue * getEventQueue(uint32_t index)
Function for returning eventq queue for the provided index.
Definition: eventq.cc:60
Definition: cprintf.cc:40
void acquire()
Memory management hooks for events that have the Managed flag set.
Definition: eventq.hh:377
void setWhen(Tick when, EventQueue *q)
Definition: eventq.hh:290
void clearFlags()
Definition: eventq.hh:336
EventManager(EventManager *em)
Definition: eventq.hh:917
STL vector class.
Definition: stl.hh:37
bool operator>=(const Event &l, const Event &r)
Definition: eventq.hh:551
void reschedule(Event *event, Tick when, bool always=false)
Definition: eventq.hh:979
unsigned short FlagsType
Definition: eventq.hh:93
static const FlagsType AutoDelete
Definition: eventq.hh:101
Bitfield< 31 > n
Bitfield< 6 > f
bool squashed() const
Check whether the event is squashed.
Definition: eventq.hh:473
Priority priority() const
Get the event priority.
Definition: eventq.hh:506
static const Priority Progress_Event_Pri
Progress events come at the end.
Definition: eventq.hh:220
T * object
Definition: eventq.hh:999
static const FlagsType Squashed
Definition: eventq.hh:98
EventManager(EventManager &em)
Definition: eventq.hh:916
bool initialized() const
Definition: eventq.hh:302
Tick curTick()
The current simulated tick.
Definition: core.hh:44
Temporarily migrate execution to a different event queue.
Definition: eventq.hh:673
Flags flags
Definition: eventq.hh:267
virtual void wakeup(Tick when=(Tick) -1)
Function to signal that the event loop should be woken up because an event has been scheduled by an a...
Definition: eventq.hh:855
virtual const std::string name() const
Definition: eventq.hh:744
Queue of events sorted in time order.
Definition: eventq.hh:613
Bitfield< 4 > s
const char * description() const
Return a C string describing the event.
Definition: eventq.hh:1024
std::string objName
Definition: eventq.hh:616
static const FlagsType Scheduled
Definition: eventq.hh:99
bool operator!=(const Event &l, const Event &r)
Definition: eventq.hh:570
uint64_t Tick
Tick count type.
Definition: types.hh:61
Tick simQuantum
Simulation Quantum for multiple eventq simulation.
Definition: eventq.cc:46
bool isExitEvent() const
See if this is a SimExitEvent (without resorting to RTTI)
Definition: eventq.hh:480
Tick _curTick
Definition: eventq.hh:618
EventWrapper(T *obj, bool del=false, Priority p=Default_Pri)
Definition: eventq.hh:1002
Bitfield< 27 > q
virtual BaseGlobalEvent * globalEvent()
If this is part of a GlobalEvent, return the pointer to the Global Event.
Definition: eventq.hh:511
EventQueue * curEventQueue()
Definition: eventq.hh:82
Event * nextInBin
Definition: eventq.hh:260
void deschedule(Event &event)
Definition: eventq.hh:943
void serialize(const ThreadContext &tc, CheckpointOut &cp)
Thread context serialization helpers.
void reschedule(Event *event, Tick when, bool always=false)
Reschedule the specified event.
Definition: eventq_impl.hh:83
static const Priority CPU_Tick_Pri
CPU ticks must come after other associated CPU events (such as writebacks).
Definition: eventq.hh:198
void schedule(Event &event, Tick when)
Definition: eventq.hh:934
void setFlags(Flags _flags)
Definition: eventq.hh:322
STL list class.
Definition: stl.hh:51
static const FlagsType Reserved0
This used to be AutoSerialize.
Definition: eventq.hh:107
void setCurTick(Tick newVal)
Definition: eventq.hh:992
Flags getFlags() const
Definition: eventq.hh:309
void reschedule(Event &event, Tick when, bool always=false)
Definition: eventq.hh:952
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
Tick nextTick() const
Definition: eventq.hh:770
virtual void releaseImpl()
Definition: eventq.hh:393
int64_t Counter
Statistics counter type.
Definition: types.hh:56
bool isFlagSet(Flags _flags) const
Definition: eventq.hh:315
std::mutex async_queue_mutex
Mutex to protect async queue.
Definition: eventq.hh:621
Bitfield< 10, 5 > event
std::mutex service_mutex
Lock protecting event handling.
Definition: eventq.hh:646
Basic support for object serialization.
Definition: serialize.hh:166
bool inParallelMode
Current mode of execution: parallel / serial.
Definition: eventq.cc:57
bool scheduled() const
Determine if the current event is scheduled.
Definition: eventq.hh:459
void clearFlags(Flags _flags)
Definition: eventq.hh:329
Event * head
Definition: eventq.hh:617
void schedule(Event *event, Tick when)
Definition: eventq.hh:961
Event(Priority p=Default_Pri, Flags f=0)
Definition: eventq.hh:408
const std::string name() const
Definition: eventq.hh:1019
void unlock()
Definition: eventq.hh:880
std::string _name
Definition: eventq.hh:1031
std::ostream CheckpointOut
Definition: serialize.hh:63
bool operator==(const Event &l, const Event &r)
Definition: eventq.hh:561
Bitfield< 31, 28 > st
Definition: eventq.hh:245
virtual ~EventQueue()
Definition: eventq.hh:896
static const Priority Delayed_Writeback_Pri
For some reason "delayed" inter-cluster writebacks are scheduled before regular writebacks (which hav...
Definition: eventq.hh:166
EventQueue * eventQueue() const
Definition: eventq.hh:925
bool operator<(const Event &l, const Event &r)
Definition: eventq.hh:521
static const Priority Debug_Enable_Pri
If we enable tracing on a particular cycle, do that as the very first thing so we don&#39;t miss any of t...
Definition: eventq.hh:138
ScopedMigration(EventQueue *_new_eq, bool _doMigrate=true)
Definition: eventq.hh:679
ScopedRelease(EventQueue *_eq)
api_eventq
Definition: eventq.hh:720
bool isManaged() const
Check whether this event will auto-delete.
Definition: eventq.hh:487
static const Priority Sim_Exit_Pri
If we want to exit on this cycle, it&#39;s the very last thing we do.
Definition: eventq.hh:228
bool operator<=(const Event &l, const Event &r)
Definition: eventq.hh:541
__thread EventQueue * _curEventQueue
The current event queue for the running thread.
Definition: eventq.cc:56
void unserialize(ThreadContext &tc, CheckpointIn &cp)
void release()
Managed event removed from the event queue.
Definition: eventq.hh:386
static const FlagsType PublicWrite
Definition: eventq.hh:97
void lock()
Provide an interface for locking/unlocking the event queue.
Definition: eventq.hh:879
void dump()
Dump all statistics data to the registered outputs.
Definition: statistics.cc:560
static const Priority Stat_Event_Pri
Statistics events (dump, reset, etc.) come after everything else, but before exit.
Definition: eventq.hh:213
Common base class for GlobalEvent and GlobalSyncEvent.
Definition: global_event.hh:60
static const Priority CPU_Switch_Pri
CPU switches schedule the new CPU&#39;s tick event for the same cycle (after unscheduling the old CPU&#39;s t...
Definition: eventq.hh:157
Common base class for Event and GlobalEvent, so they can share flag and priority definitions and acce...
Definition: eventq.hh:90
Event * getHead() const
Definition: eventq.hh:783
void name(const std::string &st)
Definition: eventq.hh:745
static const Priority Minimum_Pri
Event priorities, to provide tie-breakers for events scheduled at the same cycle. ...
Definition: eventq.hh:129
Temporarily release the event queue service lock.
Definition: eventq.hh:714
std::list< Event * > async_queue
List of events added by other threads to this event queue.
Definition: eventq.hh:624
EventWrapper(T &obj, bool del=false, Priority p=Default_Pri)
Definition: eventq.hh:1009
std::vector< EventQueue * > mainEventQueue
Array for main event queues.
Definition: eventq.cc:55
Bitfield< 0 > p
Tick when() const
Get the time that the event is scheduled.
Definition: eventq.hh:499
static const FlagsType IsExitEvent
Definition: eventq.hh:108
void set(Type flags)
Definition: flags.hh:68
Bitfield< 5 > l
static const Priority Serialize_Pri
Serailization needs to occur before tick events also, so that a serialize/unserialize is identical to...
Definition: eventq.hh:190
EventQueue * queue
queue to which this event belongs (though it may or may not be scheduled on this queue yet) ...
Definition: eventq.hh:281
const char * description() const
Return a C string describing the event.
Definition: eventq.hh:1064
static const FlagsType IsMainQueue
Definition: eventq.hh:109
Tick getCurTick() const
While curTick() is useful for any object assigned to this event queue, if an object that is assigned ...
Definition: eventq.hh:782
bool noneSet() const
Definition: flags.hh:64
static const Priority DVFS_Update_Pri
DVFS update event leads to stats dump therefore given a lower priority to ensure all relevant states ...
Definition: eventq.hh:181
static const FlagsType InitMask
Definition: eventq.hh:111

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