Go to the documentation of this file.
37 #include <unordered_map>
43 #include "debug/Checkpoint.hh"
94 if (!curr || *
event < *curr) {
122 while (curr && *curr < *
event) {
150 while (
event != next) {
152 panic(
"event not found!");
167 panic(
"event not found!");
169 assert(
event->queue ==
this);
181 while (curr && *curr < *
event) {
186 if (!curr || *curr != *
event)
187 panic(
"event not found!");
198 std::lock_guard<EventQueue>
lock(*
this);
216 if (!
event->squashed()) {
220 event->trace(
"executed");
222 if (
event->isExitEvent()) {
241 short _flags =
flags;
272 DPRINTF(Checkpoint,
"Event '%s' need to be scheduled @%d\n",
289 cprintf(
"============================================================\n");
291 cprintf(
"------------------------------------------------------------\n");
298 Event *nextInBin = nextBin;
308 cprintf(
"============================================================\n");
314 std::unordered_map<long, bool> map;
321 Event *nextInBin = nextBin;
323 if (nextInBin->
when() < time) {
324 cprintf(
"time goes backwards!");
327 }
else if (nextInBin->
when() == time &&
334 if (map[
reinterpret_cast<long>(nextInBin)]) {
339 map[
reinterpret_cast<long>(nextInBin)] =
true;
341 time = nextInBin->
when();
398 return csprintf(
"%#x", (uintptr_t)
this);
408 cprintf(
"Created: %d\n", whenCreated);
412 cprintf(
"Scheduled at %d\n", whenScheduled);
421 : objName(
n), head(NULL), _curTick(0)
Priority _priority
event priority
bool scheduled() const
Determine if the current event is scheduled.
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Counter instance
This event's unique ID.
static Event * insertBefore(Event *event, Event *curr)
EventQueue * getEventQueue(uint32_t index)
Function for returning eventq queue for the provided index.
#define UNSERIALIZE_SCALAR(scalar)
Tick _when
timestamp when event should be processed
void checkpointReschedule(Event *event)
Reschedule an event after a checkpoint.
static const FlagsType Scheduled
Event * replaceHead(Event *s)
function for replacing the head of the event queue, so that a different set of events can run without...
std::list< Event * > async_queue
List of events added by other threads to this event queue.
bool inParallelMode
Current mode of execution: parallel / serial.
uint64_t Tick
Tick count type.
void dump() const
Dump the current event data.
void dump() const
This is a debugging function which will print everything on the event queue.
virtual const char * description() const
Return a C string describing the event.
static const FlagsType IsMainQueue
Tick when() const
Get the time that the event is scheduled.
static const FlagsType Managed
int64_t Counter
Statistics counter type.
void clear()
Clear all flag's bits.
void cprintf(const char *format, const Args &...args)
friend void curEventQueue(EventQueue *)
bool empty() const
Returns true if no events are queued.
void handleAsyncInsertions()
Function for moving events from the async_queue to the main queue.
void set(Type mask)
Set all flag's bits matching the given mask.
virtual void trace(const char *action)
This function isn't really useful if TRACING_ON is not defined.
void asyncInsert(Event *event)
Function for adding events to the async queue.
const std::string instanceString() const
Return the instance number as a string.
Priority priority() const
Get the event priority.
bool isSet(Type mask) const
Verifies whether any bit matching the given mask is set.
void setCurTick(Tick newVal)
void insert(Event *event)
Insert / remove event from the queue.
#define SERIALIZE_SCALAR(scalar)
#define DPRINTF_UNCONDITIONAL(x,...)
void lock()
Provide an interface for locking/unlocking the event queue.
void remove(Event *event)
static Event * removeItem(Event *event, Event *last)
std::vector< EventQueue * > mainEventQueue
Array for main event queues.
Tick simQuantum
Simulation Quantum for multiple eventq simulation.
std::ostream CheckpointOut
static const FlagsType Squashed
UncontendedMutex async_queue_mutex
Mutex to protect async queue.
Tick curTick()
The universal simulation clock.
Queue of events sorted in time order.
EventQueue(const EventQueue &)
uint32_t numMainEventQueues
Current number of allocated main event queues.
virtual const std::string name() const
std::string csprintf(const char *format, const Args &...args)
__thread EventQueue * _curEventQueue
The current event queue for the running thread.
static const FlagsType Initialized
static Counter instanceCounter
Global counter to generate unique IDs for Event instances.
void serialize(CheckpointOut &cp) const override
Serialize an object.
#define panic(...)
This implements a cprintf based panic() function.
Generated on Tue Mar 23 2021 19:41:28 for gem5 by doxygen 1.8.17