sim: EventQueue wakeup on events scheduled outside the event loop
authorAndreas Hansson <andreas.hansson@arm.com>
Thu, 16 Oct 2014 09:49:53 +0000 (05:49 -0400)
committerAndreas Hansson <andreas.hansson@arm.com>
Thu, 16 Oct 2014 09:49:53 +0000 (05:49 -0400)
This patch adds a 'wakeup' member function to EventQueue which should be
called on an event queue whenever an event is scheduled on the event queue
from outside code within the call tree of the gem5 event loop.

This clearly isn't necessary for normal gem5 EventQueue operation but
becomes the minimum necessary interface to allow hosting gem5's event loop
onto other schedulers where there may be calls into gem5 from external
code which schedules events onto an EventQueue between the current time and
the time of the next scheduled event.

The use case I have in mind is a SystemC hosting where the event loop is:

    while (more events) {
        wait(time_to_next_event or wakeup)
        setCurTick
        service events at this time
    }

where the 'wait' needs to be woken up if time_to_next_event becomes shorter
due to a scheduled event from SystemC arriving in a gem5 object.

Requiring 'wakeup' to be called is a more efficient interface than
requiring all gem5 event scheduling actions to affect the host scheduler.

This interface could be located elsewhere, say on another global object,
or by being passed by the host scheduler to objects which will schedule
such events, but it seems cleanest to put it on EventQueue as it is
actually a signal to the queue.

EventQueue::wakeup is called for async_event events on event queue 0 as
it's only important that *some* queue be triggered for such events.

src/base/pollevent.cc
src/python/swig/pyevent.cc
src/sim/eventq.hh
src/sim/init_signals.cc

index fb28d63d61f380d80951df44a3a8b981c519eb4c..ea4d632d06a1c5bf59b01f20c6dcb2378c60fec5 100644 (file)
@@ -44,6 +44,7 @@
 #include "base/types.hh"
 #include "sim/async.hh"
 #include "sim/core.hh"
+#include "sim/eventq.hh"
 #include "sim/serialize.hh"
 
 using namespace std;
@@ -224,5 +225,7 @@ PollQueue::setupAsyncIO(int fd, bool set)
     if (set) {
         async_event = true;
         async_io = true;
+        /* Wake up some event queue to handle event */
+        getEventQueue(0)->wakeup();
     }
 }
index 4651d252b82339b48334c73854e5629999b0d631..6d80a00cdeddab88508bb0c9b4028748643509e0 100644 (file)
@@ -32,6 +32,7 @@
 
 #include "python/swig/pyevent.hh"
 #include "sim/async.hh"
+#include "sim/eventq.hh"
 
 PythonEvent::PythonEvent(PyObject *obj, Priority priority)
     : Event(priority), object(obj)
@@ -59,6 +60,8 @@ PythonEvent::process()
         // that there's been an exception.
         async_event = true;
         async_exception = true;
+        /* Wake up some event queue to handle event */
+        getEventQueue(0)->wakeup();
     }
 
     // Since the object has been removed from the event queue, its
index c390d2155c8bd70e6823b17d6bdd85b49b63c26d..394fd4d8dd6461cd9b499df5a8fab4f22a0b78ae 100644 (file)
@@ -605,6 +605,21 @@ class EventQueue : public Serializable
     //! Function for moving events from the async_queue to the main queue.
     void handleAsyncInsertions();
 
+    /**
+     *  Function to signal that the event loop should be woken up because
+     *  an event has been scheduled by an agent outside the gem5 event
+     *  loop(s) whose event insertion may not have been noticed by gem5.
+     *  This function isn't needed by the usual gem5 event loop but may
+     *  be necessary in derived EventQueues which host gem5 onto other
+     *  schedulers.
+     *
+     *  @param when Time of a delayed wakeup (if known). This parameter
+     *  can be used by an implementation to schedule a wakeup in the
+     *  future if it is sure it will remain active until then.
+     *  Or it can be ignored and the event queue can be woken up now.
+     */
+    virtual void wakeup(Tick when = (Tick)-1) { }
+
     /**
      *  function for replacing the head of the event queue, so that a
      *  different set of events can run without disturbing events that have
@@ -635,6 +650,8 @@ class EventQueue : public Serializable
     virtual void serialize(std::ostream &os);
     virtual void unserialize(Checkpoint *cp, const std::string &section);
 #endif
+
+    virtual ~EventQueue() { }
 };
 
 void dumpMainQueue();
@@ -693,6 +710,11 @@ class EventManager
         eventq->reschedule(event, when, always);
     }
 
+    void wakeupEventQueue(Tick when = (Tick)-1)
+    {
+        eventq->wakeup(when);
+    }
+
     void setCurTick(Tick newVal) { eventq->setCurTick(newVal); }
 };
 
index 705a154e8f462ef807a7ffa139b336404704a3e6..0e898954e5b04532af35b8b45d648904a83e3a17 100644 (file)
@@ -48,6 +48,7 @@
 #include "base/cprintf.hh"
 #include "sim/async.hh"
 #include "sim/core.hh"
+#include "sim/eventq.hh"
 #include "sim/init_signals.hh"
 
 using namespace std;
@@ -58,6 +59,8 @@ dumpStatsHandler(int sigtype)
 {
     async_event = true;
     async_statdump = true;
+    /* Wake up some event queue to handle event */
+    getEventQueue(0)->wakeup();
 }
 
 void
@@ -66,6 +69,8 @@ dumprstStatsHandler(int sigtype)
     async_event = true;
     async_statdump = true;
     async_statreset = true;
+    /* Wake up some event queue to handle event */
+    getEventQueue(0)->wakeup();
 }
 
 /// Exit signal handler.
@@ -74,6 +79,8 @@ exitNowHandler(int sigtype)
 {
     async_event = true;
     async_exit = true;
+    /* Wake up some event queue to handle event */
+    getEventQueue(0)->wakeup();
 }
 
 /// Abort signal handler.
@@ -89,6 +96,8 @@ ioHandler(int sigtype)
 {
     async_event = true;
     async_io = true;
+    /* Wake up some event queue to handle event */
+    getEventQueue(0)->wakeup();
 }
 
 static void