Setup initialization callbacks
authorNathan Binkert <binkertn@umich.edu>
Wed, 14 Jan 2004 07:00:20 +0000 (02:00 -0500)
committerNathan Binkert <binkertn@umich.edu>
Wed, 14 Jan 2004 07:00:20 +0000 (02:00 -0500)
--HG--
extra : convert_revision : ec56a839a0489c5494bfcd9ead0fc3866f1e8ac2

sim/main.cc
sim/sim_object.cc
sim/sim_object.hh

index 3cb6c8b715653dcf68c42215b76f50100a606361..d0cf230398d62bbaef5ee5d6b1de91e7fb0c35f4 100644 (file)
@@ -51,6 +51,7 @@
 #include "sim/host.hh"
 #include "sim/sim_events.hh"
 #include "sim/sim_exit.hh"
+#include "sim/sim_init.hh"
 #include "sim/sim_object.hh"
 #include "sim/sim_stats.hh"
 
@@ -398,6 +399,8 @@ main(int argc, char **argv)
         exit(1);
     }
 
+    SimInit();
+
     while (!mainEventQueue.empty()) {
         assert(curTick <= mainEventQueue.nextTick() &&
                "event scheduled in the past");
index 364dbe035a73a62e8f3051b7d27df40a908e9d96..b3ac2c7a49ed35a091385be1b62d3109cd81c33e 100644 (file)
@@ -60,6 +60,11 @@ SimObject::SimObject(const string &_name)
     simObjectList.push_back(this);
 }
 
+void
+SimObject::init()
+{
+}
+
 //
 // no default statistics, so nothing to do in base implementation
 //
@@ -126,6 +131,21 @@ SimObject::regAllStats()
     Statistics::registerResetCallback(&StatResetCB);
 }
 
+//
+// static function: call init() on all SimObjects.
+//
+void
+SimObject::initAll()
+{
+    SimObjectList::iterator i = simObjectList.begin();
+    SimObjectList::iterator end = simObjectList.end();
+
+    for (; i != end; ++i) {
+        SimObject *obj = *i;
+        obj->init();
+    }
+}
+
 //
 // static function: call resetStats() on all SimObjects.
 //
index 937ff94278c2637c21d717cde7278a00f8a5ad03..165931b2b5fafa51c72256dd2d3ade4cb919e040 100644 (file)
@@ -65,6 +65,10 @@ class SimObject : public Serializable
 
     virtual std::string name() const { return objName; }
 
+    // initialization pass of all objects.  Gets invoked by SimInit()
+    virtual void init();
+    static void initAll();
+
     // register statistics for this object
     virtual void regStats();
     virtual void regFormulas();