35 #ifndef __SIM_EVENTQ_HH__ 36 #define __SIM_EVENTQ_HH__ 49 #include "debug/Event.hh" 94 typedef ::Flags<FlagsType>
Flags;
270 static Counter instanceCounter;
318 return flags.
isSet(_flags);
346 virtual void trace(
const char *action);
349 const std::string instanceString()
const;
409 : nextBin(nullptr), nextInBin(nullptr), _when(0), _priority(
p),
414 instance = ++instanceCounter;
428 virtual const std::string
name()
const;
433 virtual const char *description()
const;
452 virtual void process() = 0;
681 doMigrate((&new_eq != &old_eq)&&_doMigrate)
744 virtual const std::string
name()
const {
return objName; }
760 void deschedule(
Event *event);
768 void reschedule(
Event *event,
Tick when,
bool always =
false);
804 if (nextTick() > when)
823 bool empty()
const {
return head == NULL; }
833 bool debugVerify()
const;
838 void handleAsyncInsertions();
879 void lock() { service_mutex.lock(); }
880 void unlock() { service_mutex.unlock(); }
894 void checkpointReschedule(
Event *event);
899 deschedule(getHead());
995 template <
class T,
void (T::* F)()>
1021 return object->name() +
".wrapped_event";
1038 const std::string &
name,
1041 :
Event(
p), callback(callback), _name(name)
1058 return _name +
".wrapped_function_event";
1067 #endif // __SIM_EVENTQ_HH__
EventQueue * eventq
A pointer to this object's event queue.
static const Priority Maximum_Pri
Maximum priority.
EventFunctionWrapper(const std::function< void(void)> &callback, const std::string &name, bool del=false, Priority p=Default_Pri)
void deschedule(Event *event)
void wakeupEventQueue(Tick when=(Tick) -1)
uint32_t numMainEventQueues
Current number of allocated main event queues.
bool isAutoDelete() const
bool operator>(const Event &l, const Event &r)
const std::string & name()
bool empty() const
Returns true if no events are queued.
void serviceEvents(Tick when)
process all events up to the given timestamp.
static const Priority CPU_Exit_Pri
If we want to exit a thread in a CPU, it comes after CPU_Tick_Pri.
virtual void acquireImpl()
static const FlagsType Managed
Counter instance
This event's unique ID.
::Flags< FlagsType > Flags
const std::string name() const
static const Priority Default_Pri
Default is zero for historical reasons.
void setCurTick(Tick newVal)
void squash()
Squash the current event.
Tick _when
timestamp when event should be processed
Priority _priority
event priority
EventManager(EventQueue *eq)
std::function< void(void)> callback
static const FlagsType Initialized
void schedule(Event *event, Tick when, bool global=false)
Schedule the given event on this queue.
static const Priority Debug_Break_Pri
Breakpoints should happen before anything else (except enabling trace output), so we don't miss any a...
void deschedule(Event *event)
Deschedule the specified event.
static const FlagsType PublicRead
EventQueue * getEventQueue(uint32_t index)
Function for returning eventq queue for the provided index.
void acquire()
Memory management hooks for events that have the Managed flag set.
void setWhen(Tick when, EventQueue *q)
EventManager(EventManager *em)
bool operator>=(const Event &l, const Event &r)
void reschedule(Event *event, Tick when, bool always=false)
static const FlagsType AutoDelete
bool squashed() const
Check whether the event is squashed.
Priority priority() const
Get the event priority.
static const Priority Progress_Event_Pri
Progress events come at the end.
static const FlagsType Squashed
EventManager(EventManager &em)
Tick curTick()
The current simulated tick.
Temporarily migrate execution to a different event queue.
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...
virtual const std::string name() const
Queue of events sorted in time order.
const char * description() const
Return a C string describing the event.
static const FlagsType Scheduled
bool operator!=(const Event &l, const Event &r)
uint64_t Tick
Tick count type.
Tick simQuantum
Simulation Quantum for multiple eventq simulation.
bool isExitEvent() const
See if this is a SimExitEvent (without resorting to RTTI)
EventWrapper(T *obj, bool del=false, Priority p=Default_Pri)
virtual BaseGlobalEvent * globalEvent()
If this is part of a GlobalEvent, return the pointer to the Global Event.
EventQueue * curEventQueue()
void deschedule(Event &event)
void serialize(const ThreadContext &tc, CheckpointOut &cp)
Thread context serialization helpers.
void reschedule(Event *event, Tick when, bool always=false)
Reschedule the specified event.
static const Priority CPU_Tick_Pri
CPU ticks must come after other associated CPU events (such as writebacks).
void schedule(Event &event, Tick when)
void setFlags(Flags _flags)
static const FlagsType Reserved0
This used to be AutoSerialize.
void setCurTick(Tick newVal)
void reschedule(Event &event, Tick when, bool always=false)
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
virtual void releaseImpl()
int64_t Counter
Statistics counter type.
bool isFlagSet(Flags _flags) const
std::mutex async_queue_mutex
Mutex to protect async queue.
std::mutex service_mutex
Lock protecting event handling.
Basic support for object serialization.
bool inParallelMode
Current mode of execution: parallel / serial.
bool scheduled() const
Determine if the current event is scheduled.
void clearFlags(Flags _flags)
void schedule(Event *event, Tick when)
Event(Priority p=Default_Pri, Flags f=0)
const std::string name() const
std::ostream CheckpointOut
bool operator==(const Event &l, const Event &r)
static const Priority Delayed_Writeback_Pri
For some reason "delayed" inter-cluster writebacks are scheduled before regular writebacks (which hav...
EventQueue * eventQueue() const
bool operator<(const Event &l, const Event &r)
static const Priority Debug_Enable_Pri
If we enable tracing on a particular cycle, do that as the very first thing so we don't miss any of t...
ScopedMigration(EventQueue *_new_eq, bool _doMigrate=true)
ScopedRelease(EventQueue *_eq)
api_eventq
bool isManaged() const
Check whether this event will auto-delete.
static const Priority Sim_Exit_Pri
If we want to exit on this cycle, it's the very last thing we do.
bool operator<=(const Event &l, const Event &r)
__thread EventQueue * _curEventQueue
The current event queue for the running thread.
void unserialize(ThreadContext &tc, CheckpointIn &cp)
void release()
Managed event removed from the event queue.
static const FlagsType PublicWrite
void lock()
Provide an interface for locking/unlocking the event queue.
void dump()
Dump all statistics data to the registered outputs.
static const Priority Stat_Event_Pri
Statistics events (dump, reset, etc.) come after everything else, but before exit.
Common base class for GlobalEvent and GlobalSyncEvent.
static const Priority CPU_Switch_Pri
CPU switches schedule the new CPU's tick event for the same cycle (after unscheduling the old CPU's t...
Common base class for Event and GlobalEvent, so they can share flag and priority definitions and acce...
void name(const std::string &st)
static const Priority Minimum_Pri
Event priorities, to provide tie-breakers for events scheduled at the same cycle. ...
Temporarily release the event queue service lock.
std::list< Event * > async_queue
List of events added by other threads to this event queue.
EventWrapper(T &obj, bool del=false, Priority p=Default_Pri)
std::vector< EventQueue * > mainEventQueue
Array for main event queues.
Tick when() const
Get the time that the event is scheduled.
static const FlagsType IsExitEvent
static const Priority Serialize_Pri
Serailization needs to occur before tick events also, so that a serialize/unserialize is identical to...
EventQueue * queue
queue to which this event belongs (though it may or may not be scheduled on this queue yet) ...
const char * description() const
Return a C string describing the event.
static const FlagsType IsMainQueue
Tick getCurTick() const
While curTick() is useful for any object assigned to this event queue, if an object that is assigned ...
static const Priority DVFS_Update_Pri
DVFS update event leads to stats dump therefore given a lower priority to ensure all relevant states ...
static const FlagsType InitMask