sim_object.cc revision 1031
1/*
2 * Copyright (c) 2001-2004 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include <assert.h>
30
31#include "base/callback.hh"
32#include "base/inifile.hh"
33#include "base/match.hh"
34#include "base/misc.hh"
35#include "base/trace.hh"
36#include "base/stats/events.hh"
37#include "sim/configfile.hh"
38#include "sim/host.hh"
39#include "sim/sim_object.hh"
40#include "sim/stats.hh"
41#include "sim/param.hh"
42
43using namespace std;
44
45
46////////////////////////////////////////////////////////////////////////
47//
48// SimObject member definitions
49//
50////////////////////////////////////////////////////////////////////////
51
52//
53// static list of all SimObjects, used for initialization etc.
54//
55SimObject::SimObjectList SimObject::simObjectList;
56
57namespace Stats {
58    extern ObjectMatch event_ignore;
59}
60
61//
62// SimObject constructor: used to maintain static simObjectList
63//
64SimObject::SimObject(const string &_name)
65    : objName(_name)
66{
67#ifdef DEBUG
68    doDebugBreak = false;
69#endif
70
71    doRecordEvent = !Stats::event_ignore.match(_name);
72    simObjectList.push_back(this);
73}
74
75void
76SimObject::init()
77{
78}
79
80//
81// no default statistics, so nothing to do in base implementation
82//
83void
84SimObject::regStats()
85{
86}
87
88void
89SimObject::regFormulas()
90{
91}
92
93void
94SimObject::resetStats()
95{
96}
97
98//
99// static function:
100//   call regStats() on all SimObjects and then regFormulas() on all
101//   SimObjects.
102//
103struct SimObjectResetCB : public Callback
104{
105    virtual void process() { SimObject::resetAllStats(); }
106};
107
108namespace {
109    static SimObjectResetCB StatResetCB;
110}
111
112void
113SimObject::regAllStats()
114{
115    SimObjectList::iterator i;
116    SimObjectList::iterator end = simObjectList.end();
117
118    /**
119     * @todo change cprintfs to DPRINTFs
120     */
121    for (i = simObjectList.begin(); i != end; ++i) {
122#ifdef STAT_DEBUG
123        cprintf("registering stats for %s\n", (*i)->name());
124#endif
125        (*i)->regStats();
126    }
127
128    for (i = simObjectList.begin(); i != end; ++i) {
129#ifdef STAT_DEBUG
130        cprintf("registering formulas for %s\n", (*i)->name());
131#endif
132        (*i)->regFormulas();
133    }
134
135    Stats::registerResetCallback(&StatResetCB);
136}
137
138//
139// static function: call init() on all SimObjects.
140//
141void
142SimObject::initAll()
143{
144    SimObjectList::iterator i = simObjectList.begin();
145    SimObjectList::iterator end = simObjectList.end();
146
147    for (; i != end; ++i) {
148        SimObject *obj = *i;
149        obj->init();
150    }
151}
152
153//
154// static function: call resetStats() on all SimObjects.
155//
156void
157SimObject::resetAllStats()
158{
159    SimObjectList::iterator i = simObjectList.begin();
160    SimObjectList::iterator end = simObjectList.end();
161
162    for (; i != end; ++i) {
163        SimObject *obj = *i;
164        obj->resetStats();
165    }
166}
167
168//
169// static function: serialize all SimObjects.
170//
171void
172SimObject::serializeAll(ostream &os)
173{
174    SimObjectList::reverse_iterator ri = simObjectList.rbegin();
175    SimObjectList::reverse_iterator rend = simObjectList.rend();
176
177    for (; ri != rend; ++ri) {
178        SimObject *obj = *ri;
179        obj->nameOut(os);
180        obj->serialize(os);
181   }
182}
183
184#ifdef DEBUG
185//
186// static function: flag which objects should have the debugger break
187//
188void
189SimObject::debugObjectBreak(const string &objs)
190{
191    SimObjectList::const_iterator i = simObjectList.begin();
192    SimObjectList::const_iterator end = simObjectList.end();
193
194    ObjectMatch match(objs);
195    for (; i != end; ++i) {
196        SimObject *obj = *i;
197        obj->doDebugBreak = match.match(obj->name());
198   }
199}
200
201extern "C"
202void
203debugObjectBreak(const char *objs)
204{
205    SimObject::debugObjectBreak(string(objs));
206}
207#endif
208
209void
210SimObject::recordEvent(const std::string &stat)
211{
212    if (doRecordEvent)
213        Stats::recordEvent(stat);
214}
215
216DEFINE_SIM_OBJECT_CLASS_NAME("SimObject", SimObject)
217