34 #include <unordered_map> 40 #include "debug/Checkpoint.hh" 64 mainEventQueue.push_back(
68 return mainEventQueue[
index];
84 return csprintf(
"Event_%s", instanceString());
94 if (!curr || *event < *curr) {
113 if (!head || *event <= *head) {
122 while (curr && *curr < *event) {
150 while (event != next) {
152 panic(
"event not found!");
167 panic(
"event not found!");
169 assert(event->
queue ==
this);
173 if (*head == *event) {
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()) {
218 setCurTick(
event->when());
220 event->trace(
"executed");
222 if (
event->isExitEvent()) {
241 short _flags = flags;
248 assert(!scheduled());
262 assert(initialized());
264 flags.set(Initialized);
269 if (flags.isSet(Scheduled) && !flags.isSet(Squashed)) {
270 flags.clear(Squashed | Scheduled);
272 DPRINTF(Checkpoint,
"Event '%s' need to be scheduled @%d\n",
289 cprintf(
"============================================================\n");
291 cprintf(
"------------------------------------------------------------\n");
296 Event *nextBin = head;
298 Event *nextInBin = nextBin;
308 cprintf(
"============================================================\n");
314 std::unordered_map<long, bool> map;
319 Event *nextBin = head;
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();
365 mainEventQueue[
i]->dump();
389 description(), instanceString(), action, when());
398 return csprintf(
"%#x", (uintptr_t)
this);
406 cprintf(
"Flags: %#x\n", flags);
408 cprintf(
"Created: %d\n", whenCreated);
412 cprintf(
"Scheduled at %d\n", whenScheduled);
414 cprintf(
"Scheduled for %d, priority %d\n", when(), _priority);
421 : objName(
n), head(NULL), _curTick(0)
428 async_queue_mutex.lock();
429 async_queue.push_back(event);
430 async_queue_mutex.unlock();
437 async_queue_mutex.lock();
439 while (!async_queue.empty()) {
440 insert(async_queue.front());
441 async_queue.pop_front();
444 async_queue_mutex.unlock();
#define panic(...)
This implements a cprintf based panic() function.
void serialize(CheckpointOut &cp) const override
Serialize an object.
EventQueue * getEventQueue(uint32_t index)
Function for returning eventq queue for the provided index.
void unserialize(CheckpointIn &cp) override
Unserialize an object.
const std::string & name()
void dump() const
Dump the current event data.
static const FlagsType Managed
void asyncInsert(Event *event)
Function for adding events to the async queue.
static Event * insertBefore(Event *event, Event *curr)
vector< EventQueue * > mainEventQueue
Array for main event queues.
Overload hash function for BasicBlockRange type.
void insert(Event *event)
Insert / remove event from the queue.
bool inParallelMode
Current mode of execution: parallel / serial.
EventQueue(const EventQueue &)
Priority priority() const
Get the event priority.
static const FlagsType Squashed
#define UNSERIALIZE_SCALAR(scalar)
void remove(Event *event)
Tick curTick()
The current simulated tick.
virtual const std::string name() const
std::string csprintf(const char *format, const Args &...args)
Queue of events sorted in time order.
const std::string instanceString() const
Return the instance number as a string.
static const FlagsType Scheduled
uint64_t Tick
Tick count type.
void dump() const
This is a debugging function which will print everything on the event queue.
EventQueue * curEventQueue()
virtual const char * description() const
Return a C string describing the event.
int64_t Counter
Statistics counter type.
void checkpointReschedule(Event *event)
Reschedule an event after a checkpoint.
#define SERIALIZE_SCALAR(scalar)
Event * replaceHead(Event *s)
function for replacing the head of the event queue, so that a different set of events can run without...
virtual void trace(const char *action)
This function isn't really useful if TRACING_ON is not defined.
void handleAsyncInsertions()
Function for moving events from the async_queue to the main queue.
std::ostream CheckpointOut
#define DPRINTF_UNCONDITIONAL(x,...)
uint32_t numMainEventQueues
Current number of allocated main event queues.
static Event * removeItem(Event *event, Event *last)
__thread EventQueue * _curEventQueue
The current event queue for the running thread.
Tick when() const
Get the time that the event is scheduled.
static Counter instanceCounter
Global counter to generate unique IDs for Event instances.
EventQueue * queue
queue to which this event belongs (though it may or may not be scheduled on this queue yet) ...
Tick simQuantum
Simulation Quantum for multiple eventq simulation.
void cprintf(const char *format, const Args &...args)
static const FlagsType IsMainQueue