Config: Enable using O3 CPU and Ruby in SE mode
[gem5.git] / src / sim / sim_object.cc
index 551555b257bde548683c59c5b617fe98c38b2d94..9ac0b7fffb7e45e444c590597676134090b420f9 100644 (file)
@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2001-2005 The Regents of The University of Michigan
+ * Copyright (c) 2010 Advanced Micro Devices, Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  *          Nathan Binkert
  */
 
-#include <assert.h>
+#include <cassert>
 
 #include "base/callback.hh"
 #include "base/inifile.hh"
 #include "base/match.hh"
 #include "base/misc.hh"
 #include "base/trace.hh"
-#include "base/stats/events.hh"
-#include "base/serializer.hh"
-#include "sim/host.hh"
+#include "base/types.hh"
+#include "debug/Checkpoint.hh"
 #include "sim/sim_object.hh"
 #include "sim/stats.hh"
-#include "sim/param.hh"
 
 using namespace std;
 
@@ -57,44 +56,18 @@ using namespace std;
 //
 SimObject::SimObjectList SimObject::simObjectList;
 
-namespace Stats {
-    extern ObjectMatch event_ignore;
-}
-
 //
 // SimObject constructor: used to maintain static simObjectList
 //
-SimObject::SimObject(Params *p)
-    : _params(p)
+SimObject::SimObject(const Params *p)
+    : EventManager(p->eventq), _params(p)
 {
 #ifdef DEBUG
     doDebugBreak = false;
 #endif
 
-    doRecordEvent = !Stats::event_ignore.match(name());
     simObjectList.push_back(this);
-    state = Atomic;
-}
-
-//
-// SimObject constructor: used to maintain static simObjectList
-//
-SimObject::SimObject(const string &_name)
-    : _params(new Params)
-{
-    _params->name = _name;
-#ifdef DEBUG
-    doDebugBreak = false;
-#endif
-
-    doRecordEvent = !Stats::event_ignore.match(name());
-    simObjectList.push_back(this);
-    state = Atomic;
-}
-
-void
-SimObject::connect()
-{
+    state = Running;
 }
 
 void
@@ -102,107 +75,43 @@ SimObject::init()
 {
 }
 
-//
-// no default statistics, so nothing to do in base implementation
-//
 void
-SimObject::regStats()
+SimObject::loadState(Checkpoint *cp)
 {
+    if (cp->sectionExists(name())) {
+        DPRINTF(Checkpoint, "unserializing\n");
+        unserialize(cp, name());
+    } else {
+        DPRINTF(Checkpoint, "no checkpoint section found\n");
+    }
 }
 
 void
-SimObject::regFormulas()
+SimObject::initState()
 {
 }
 
 void
-SimObject::resetStats()
+SimObject::startup()
 {
 }
 
 //
-// static function:
-//   call regStats() on all SimObjects and then regFormulas() on all
-//   SimObjects.
+// no default statistics, so nothing to do in base implementation
 //
-struct SimObjectResetCB : public Callback
-{
-    virtual void process() { SimObject::resetAllStats(); }
-};
-
-namespace {
-    static SimObjectResetCB StatResetCB;
-}
-
 void
-SimObject::regAllStats()
+SimObject::regStats()
 {
-    SimObjectList::iterator i;
-    SimObjectList::iterator end = simObjectList.end();
-
-    /**
-     * @todo change cprintfs to DPRINTFs
-     */
-    for (i = simObjectList.begin(); i != end; ++i) {
-#ifdef STAT_DEBUG
-        cprintf("registering stats for %s\n", (*i)->name());
-#endif
-        (*i)->regStats();
-    }
-
-    for (i = simObjectList.begin(); i != end; ++i) {
-#ifdef STAT_DEBUG
-        cprintf("registering formulas for %s\n", (*i)->name());
-#endif
-        (*i)->regFormulas();
-    }
-
-    Stats::registerResetCallback(&StatResetCB);
 }
 
-//
-// static function: call connect() on all SimObjects.
-//
 void
-SimObject::connectAll()
-{
-    SimObjectList::iterator i = simObjectList.begin();
-    SimObjectList::iterator end = simObjectList.end();
-
-    for (; i != end; ++i) {
-        SimObject *obj = *i;
-        obj->connect();
-    }
-}
-
-//
-// static function: call init() on all SimObjects.
-//
-void
-SimObject::initAll()
+SimObject::regFormulas()
 {
-    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.
-//
 void
-SimObject::resetAllStats()
+SimObject::resetStats()
 {
-    SimObjectList::iterator i = simObjectList.begin();
-    SimObjectList::iterator end = simObjectList.end();
-
-    for (; i != end; ++i) {
-        SimObject *obj = *i;
-        obj->resetStats();
-    }
 }
 
 //
@@ -221,23 +130,6 @@ SimObject::serializeAll(ostream &os)
    }
 }
 
-void
-SimObject::unserializeAll(Checkpoint *cp)
-{
-    SimObjectList::reverse_iterator ri = simObjectList.rbegin();
-    SimObjectList::reverse_iterator rend = simObjectList.rend();
-
-    for (; ri != rend; ++ri) {
-        SimObject *obj = *ri;
-        DPRINTFR(Config, "Unserializing '%s'\n",
-                 obj->name());
-        if(cp->sectionExists(obj->name()))
-            obj->unserialize(cp, obj->name());
-        else
-            warn("Not unserializing '%s': no section found in checkpoint.\n",
-                 obj->name());
-   }
-}
 
 #ifdef DEBUG
 //
@@ -263,45 +155,23 @@ debugObjectBreak(const char *objs)
 }
 #endif
 
-void
-SimObject::recordEvent(const std::string &stat)
+unsigned int
+SimObject::drain(Event *drain_event)
 {
-    if (doRecordEvent)
-        Stats::recordEvent(stat);
-}
-
-bool
-SimObject::quiesce(Event *quiesce_event)
-{
-    if (state != QuiescedAtomic && state != Atomic) {
-        panic("Must implement your own quiesce function if it is to be used "
-              "in timing mode!");
-    }
-    state = QuiescedAtomic;
-    return false;
+    state = Drained;
+    return 0;
 }
 
 void
 SimObject::resume()
 {
-    if (state == QuiescedAtomic) {
-        state = Atomic;
-    } else if (state == QuiescedTiming) {
-        state = Timing;
-    }
+    state = Running;
 }
 
 void
 SimObject::setMemoryMode(State new_mode)
 {
-    assert(new_mode == Timing || new_mode == Atomic);
-    if (state == QuiescedAtomic && new_mode == Timing) {
-        state = QuiescedTiming;
-    } else if (state == QuiescedTiming && new_mode == Atomic) {
-        state = QuiescedAtomic;
-    } else {
-        state = new_mode;
-    }
+    panic("setMemoryMode() should only be called on systems");
 }
 
 void
@@ -316,4 +186,18 @@ SimObject::takeOverFrom(BaseCPU *cpu)
     panic("Unimplemented!");
 }
 
-DEFINE_SIM_OBJECT_CLASS_NAME("SimObject", SimObject)
+
+SimObject *
+SimObject::find(const char *name)
+{
+    SimObjectList::const_iterator i = simObjectList.begin();
+    SimObjectList::const_iterator end = simObjectList.end();
+
+    for (; i != end; ++i) {
+        SimObject *obj = *i;
+        if (obj->name() == name)
+            return obj;
+    }
+
+    return NULL;
+}