misc: Rename misc.(hh|cc) to logging.(hh|cc)
[gem5.git] / src / sim / sim_object.cc
index 117ca93250fc4795c959ee0ce2baba5bf00867f4..ab92ae55a368ad609ebf5db400836f9a1edd4f1a 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 "sim/sim_object.hh"
 
-#include "base/callback.hh"
-#include "base/inifile.hh"
+#include "base/logging.hh"
 #include "base/match.hh"
-#include "base/misc.hh"
 #include "base/trace.hh"
-#include "base/stats/events.hh"
-#include "base/serializer.hh"
-#include "sim/configfile.hh"
-#include "sim/host.hh"
-#include "sim/sim_object.hh"
-#include "sim/stats.hh"
-#include "sim/param.hh"
+#include "debug/Checkpoint.hh"
+#include "sim/probe/probe.hh"
 
 using namespace std;
 
@@ -58,42 +52,22 @@ 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)
-{
-#ifdef DEBUG
-    doDebugBreak = false;
-#endif
-
-    doRecordEvent = !Stats::event_ignore.match(name());
-    simObjectList.push_back(this);
-}
-
 //
 // SimObject constructor: used to maintain static simObjectList
 //
-SimObject::SimObject(const string &_name)
-    : _params(new Params)
+SimObject::SimObject(const Params *p)
+    : EventManager(getEventQueue(p->eventq_index)), _params(p)
 {
-    _params->name = _name;
 #ifdef DEBUG
     doDebugBreak = false;
 #endif
-
-    doRecordEvent = !Stats::event_ignore.match(name());
     simObjectList.push_back(this);
+    probeManager = new ProbeManager(this);
 }
 
-void
-SimObject::connect()
+SimObject::~SimObject()
 {
+    delete probeManager;
 }
 
 void
@@ -101,125 +75,82 @@ SimObject::init()
 {
 }
 
-//
-// no default statistics, so nothing to do in base implementation
-//
 void
-SimObject::regStats()
-{
+SimObject::loadState(CheckpointIn &cp)
+{
+    if (cp.sectionExists(name())) {
+        DPRINTF(Checkpoint, "unserializing\n");
+        // This works despite name() returning a fully qualified name
+        // since we are at the top level.
+        unserializeSection(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
+void
+SimObject::regStats()
 {
-    virtual void process() { SimObject::resetAllStats(); }
-};
-
-namespace {
-    static SimObjectResetCB StatResetCB;
 }
 
 void
-SimObject::regAllStats()
+SimObject::resetStats()
 {
-    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.
-//
+/**
+ * No probe points by default, so do nothing in base.
+ */
 void
-SimObject::connectAll()
+SimObject::regProbePoints()
 {
-    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.
-//
+/**
+ * No probe listeners by default, so do nothing in base.
+ */
 void
-SimObject::initAll()
+SimObject::regProbeListeners()
 {
-    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()
+ProbeManager *
+SimObject::getProbeManager()
 {
-    SimObjectList::iterator i = simObjectList.begin();
-    SimObjectList::iterator end = simObjectList.end();
-
-    for (; i != end; ++i) {
-        SimObject *obj = *i;
-        obj->resetStats();
-    }
+    return probeManager;
 }
 
 //
 // static function: serialize all SimObjects.
 //
 void
-SimObject::serializeAll(ostream &os)
+SimObject::serializeAll(CheckpointOut &cp)
 {
     SimObjectList::reverse_iterator ri = simObjectList.rbegin();
     SimObjectList::reverse_iterator rend = simObjectList.rend();
 
     for (; ri != rend; ++ri) {
         SimObject *obj = *ri;
-        obj->nameOut(os);
-        obj->serialize(os);
+        // This works despite name() returning a fully qualified name
+        // since we are at the top level.
+        obj->serializeSection(cp, obj->name());
    }
 }
 
+
 #ifdef DEBUG
 //
 // static function: flag which objects should have the debugger break
@@ -237,7 +168,6 @@ SimObject::debugObjectBreak(const string &objs)
    }
 }
 
-extern "C"
 void
 debugObjectBreak(const char *objs)
 {
@@ -245,17 +175,17 @@ debugObjectBreak(const char *objs)
 }
 #endif
 
-void
-SimObject::recordEvent(const std::string &stat)
+SimObject *
+SimObject::find(const char *name)
 {
-    if (doRecordEvent)
-        Stats::recordEvent(stat);
-}
+    SimObjectList::const_iterator i = simObjectList.begin();
+    SimObjectList::const_iterator end = simObjectList.end();
 
-void
-SimObject::drain(Serializer *serializer)
-{
-    serializer->signalDrained();
-}
+    for (; i != end; ++i) {
+        SimObject *obj = *i;
+        if (obj->name() == name)
+            return obj;
+    }
 
-DEFINE_SIM_OBJECT_CLASS_NAME("SimObject", SimObject)
+    return NULL;
+}