ARM: Decode to specialized conditional/unconditional versions of instructions.
[gem5.git] / src / base / statistics.cc
1 /*
2 * Copyright (c) 2003-2005 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 * Authors: Nathan Binkert
29 */
30
31 #include <iomanip>
32 #include <fstream>
33 #include <list>
34 #include <map>
35 #include <string>
36
37 #include "base/callback.hh"
38 #include "base/cprintf.hh"
39 #include "base/debug.hh"
40 #include "base/hostinfo.hh"
41 #include "base/misc.hh"
42 #include "base/statistics.hh"
43 #include "base/str.hh"
44 #include "base/time.hh"
45 #include "base/trace.hh"
46
47 using namespace std;
48
49 namespace Stats {
50
51 typedef map<const void *, Info *> MapType;
52
53 // We wrap these in a function to make sure they're built in time.
54 list<Info *> &
55 statsList()
56 {
57 static list<Info *> the_list;
58 return the_list;
59 }
60
61 MapType &
62 statsMap()
63 {
64 static MapType the_map;
65 return the_map;
66 }
67
68 void
69 InfoAccess::setInfo(Info *info)
70 {
71 if (statsMap().find(this) != statsMap().end())
72 panic("shouldn't register stat twice!");
73
74 statsList().push_back(info);
75
76 #ifndef NDEBUG
77 pair<MapType::iterator, bool> result =
78 #endif
79 statsMap().insert(make_pair(this, info));
80 assert(result.second && "this should never fail");
81 assert(statsMap().find(this) != statsMap().end());
82 }
83
84 void
85 InfoAccess::setParams(const StorageParams *params)
86 {
87 info()->storageParams = params;
88 }
89
90 void
91 InfoAccess::setInit()
92 {
93 info()->flags.set(init);
94 }
95
96 Info *
97 InfoAccess::info()
98 {
99 MapType::const_iterator i = statsMap().find(this);
100 assert(i != statsMap().end());
101 return (*i).second;
102 }
103
104 const Info *
105 InfoAccess::info() const
106 {
107 MapType::const_iterator i = statsMap().find(this);
108 assert(i != statsMap().end());
109 return (*i).second;
110 }
111
112 StorageParams::~StorageParams()
113 {
114 }
115
116 typedef map<std::string, Info *> NameMapType;
117 NameMapType &
118 nameMap()
119 {
120 static NameMapType the_map;
121 return the_map;
122 }
123
124 int Info::id_count = 0;
125
126 int debug_break_id = -1;
127
128 Info::Info()
129 : flags(none), precision(-1), prereq(0), storageParams(NULL)
130 {
131 id = id_count++;
132 if (debug_break_id >= 0 and debug_break_id == id)
133 debug_break();
134 }
135
136 Info::~Info()
137 {
138 }
139
140 void
141 Info::setName(const string &name)
142 {
143 pair<NameMapType::iterator, bool> p =
144 nameMap().insert(make_pair(name, this));
145
146 Info *other = p.first->second;
147 bool result = p.second;
148
149 if (!result) {
150 // using other->name instead of just name to avoid a compiler
151 // warning. They should be the same.
152 panic("same statistic name used twice! name=%s\n", other->name);
153 }
154
155 this->name = name;
156 }
157
158 bool
159 Info::less(Info *stat1, Info *stat2)
160 {
161 const string &name1 = stat1->name;
162 const string &name2 = stat2->name;
163
164 vector<string> v1;
165 vector<string> v2;
166
167 tokenize(v1, name1, '.');
168 tokenize(v2, name2, '.');
169
170 size_type last = min(v1.size(), v2.size()) - 1;
171 for (off_type i = 0; i < last; ++i)
172 if (v1[i] != v2[i])
173 return v1[i] < v2[i];
174
175 // Special compare for last element.
176 if (v1[last] == v2[last])
177 return v1.size() < v2.size();
178 else
179 return v1[last] < v2[last];
180
181 return false;
182 }
183
184 bool
185 Info::baseCheck() const
186 {
187 if (!(flags & Stats::init)) {
188 #ifdef DEBUG
189 cprintf("this is stat number %d\n", id);
190 #endif
191 panic("Not all stats have been initialized");
192 return false;
193 }
194
195 if ((flags & print) && name.empty()) {
196 panic("all printable stats must be named");
197 return false;
198 }
199
200 return true;
201 }
202
203 void
204 Info::enable()
205 {
206 }
207
208 void
209 VectorInfo::enable()
210 {
211 size_type s = size();
212 if (subnames.size() < s)
213 subnames.resize(s);
214 if (subdescs.size() < s)
215 subdescs.resize(s);
216 }
217
218 void
219 VectorDistInfo::enable()
220 {
221 size_type s = size();
222 if (subnames.size() < s)
223 subnames.resize(s);
224 if (subdescs.size() < s)
225 subdescs.resize(s);
226 }
227
228 void
229 Vector2dInfo::enable()
230 {
231 if (subnames.size() < x)
232 subnames.resize(x);
233 if (subdescs.size() < x)
234 subdescs.resize(x);
235 if (y_subnames.size() < y)
236 y_subnames.resize(y);
237 }
238
239 Formula::Formula()
240 {
241 setInit();
242 }
243
244 Formula::Formula(Temp r)
245 {
246 root = r;
247 assert(size());
248 }
249
250 const Formula &
251 Formula::operator=(Temp r)
252 {
253 assert(!root && "Can't change formulas");
254 root = r;
255 assert(size());
256 return *this;
257 }
258
259 const Formula &
260 Formula::operator+=(Temp r)
261 {
262 if (root)
263 root = NodePtr(new BinaryNode<std::plus<Result> >(root, r));
264 else
265 root = r;
266 assert(size());
267 return *this;
268 }
269
270 void
271 Formula::result(VResult &vec) const
272 {
273 if (root)
274 vec = root->result();
275 }
276
277 Result
278 Formula::total() const
279 {
280 return root ? root->total() : 0.0;
281 }
282
283 size_type
284 Formula::size() const
285 {
286 if (!root)
287 return 0;
288 else
289 return root->size();
290 }
291
292 void
293 Formula::reset()
294 {
295 }
296
297 bool
298 Formula::zero() const
299 {
300 VResult vec;
301 result(vec);
302 for (VResult::size_type i = 0; i < vec.size(); ++i)
303 if (vec[i] != 0.0)
304 return false;
305 return true;
306 }
307
308 string
309 Formula::str() const
310 {
311 return root ? root->str() : "";
312 }
313
314 void
315 enable()
316 {
317 typedef list<Info *>::iterator iter_t;
318
319 iter_t i, end = statsList().end();
320 for (i = statsList().begin(); i != end; ++i) {
321 Info *info = *i;
322 assert(info);
323 if (!info->check() || !info->baseCheck())
324 panic("stat check failed for '%s' %d\n", info->name, info->id);
325 }
326
327 off_t j = 0;
328 for (i = statsList().begin(); i != end; ++i) {
329 Info *info = *i;
330 if (!(info->flags & print))
331 info->name = "__Stat" + to_string(j++);
332 }
333
334 statsList().sort(Info::less);
335
336 for (i = statsList().begin(); i != end; ++i) {
337 Info *info = *i;
338 info->enable();
339 }
340 }
341
342 void
343 prepare()
344 {
345 list<Info *>::iterator i = statsList().begin();
346 list<Info *>::iterator end = statsList().end();
347 while (i != end) {
348 Info *info = *i;
349 info->prepare();
350 ++i;
351 }
352 }
353
354 CallbackQueue resetQueue;
355
356 void
357 reset()
358 {
359 list<Info *>::iterator i = statsList().begin();
360 list<Info *>::iterator end = statsList().end();
361 while (i != end) {
362 Info *info = *i;
363 info->reset();
364 ++i;
365 }
366
367 resetQueue.process();
368 }
369
370 void
371 registerResetCallback(Callback *cb)
372 {
373 resetQueue.add(cb);
374 }
375
376 /* namespace Stats */ }