gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
statistics.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019-2020 Arm Limited
3  * All rights reserved.
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Copyright (c) 2003-2005 The Regents of The University of Michigan
15  * All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions are
19  * met: redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer;
21  * redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in the
23  * documentation and/or other materials provided with the distribution;
24  * neither the name of the copyright holders nor the names of its
25  * contributors may be used to endorse or promote products derived from
26  * this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  */
40 
41 #include "base/statistics.hh"
42 
43 #include <cassert>
44 #include <list>
45 #include <map>
46 #include <string>
47 #include <utility>
48 
49 #include "base/callback.hh"
50 #include "base/logging.hh"
51 #include "sim/root.hh"
52 
53 namespace Stats {
54 
55 // We wrap these in a function to make sure they're built in time.
58 {
59  static std::list<Info *> the_list;
60  return the_list;
61 }
62 
63 MapType &
65 {
66  static MapType the_map;
67  return the_map;
68 }
69 
70 void
72 {
73  panic_if(statsMap().find(this) != statsMap().end() ||
74  _info != nullptr,
75  "shouldn't register stat twice!");
76 
77  // New-style stats are reachable through the hierarchy and
78  // shouldn't be added to the global lists.
79  if (parent) {
80  _info = info;
81  return;
82  }
83 
84  statsList().push_back(info);
85 
86 #ifndef NDEBUG
88 #endif
89  statsMap().insert(std::make_pair(this, info));
90  assert(result.second && "this should never fail");
91  assert(statsMap().find(this) != statsMap().end());
92 }
93 
94 void
96 {
97  info()->storageParams = params;
98 }
99 
100 void
102 {
103  info()->flags.set(init);
104 }
105 
106 Info *
108 {
109  if (_info) {
110  // New-style stats
111  return _info;
112  } else {
113  // Legacy stats
114  MapType::const_iterator i = statsMap().find(this);
115  assert(i != statsMap().end());
116  return (*i).second;
117  }
118 }
119 
120 const Info *
121 InfoAccess::info() const
122 {
123  if (_info) {
124  // New-style stats
125  return _info;
126  } else {
127  // Legacy stats
128  MapType::const_iterator i = statsMap().find(this);
129  assert(i != statsMap().end());
130  return (*i).second;
131  }
132 }
133 
134 Formula::Formula(Group *parent, const char *name, const char *desc)
136  desc)
137 
138 {
139 }
140 
141 Formula::Formula(Group *parent, const char *name, const Units::Base *unit,
142  const char *desc)
143  : DataWrapVec<Formula, FormulaInfoProxy>(parent, name, unit, desc)
144 {
145 }
146 
147 Formula::Formula(Group *parent, const char *name, const char *desc,
148  const Temp &r)
150  desc)
151 {
152  *this = r;
153 }
154 
155 Formula::Formula(Group *parent, const char *name, const Units::Base *unit,
156  const char *desc, const Temp &r)
157  : DataWrapVec<Formula, FormulaInfoProxy>(parent, name, unit, desc)
158 {
159  *this = r;
160 }
161 
162 const Formula &
164 {
165  assert(!root && "Can't change formulas");
166  root = r.getNodePtr();
167  setInit();
168  assert(size());
169  return *this;
170 }
171 
172 const Formula &
174 {
175  if (root)
176  root = NodePtr(new BinaryNode<std::plus<Result> >(root, r));
177  else {
178  root = r.getNodePtr();
179  setInit();
180  }
181 
182  assert(size());
183  return *this;
184 }
185 
186 const Formula &
188 {
189  assert (root);
190  root = NodePtr(new BinaryNode<std::divides<Result> >(root, r));
191 
192  assert(size());
193  return *this;
194 }
195 
196 
197 void
199 {
200  if (root)
201  vec = root->result();
202 }
203 
204 Result
206 {
207  return root ? root->total() : 0.0;
208 }
209 
210 size_type
212 {
213  if (!root)
214  return 0;
215  else
216  return root->size();
217 }
218 
219 void
221 {
222 }
223 
224 bool
226 {
227  VResult vec;
228  result(vec);
229  for (VResult::size_type i = 0; i < vec.size(); ++i)
230  if (vec[i] != 0.0)
231  return false;
232  return true;
233 }
234 
235 std::string
237 {
238  return root ? root->str() : "";
239 }
240 
243 
244 void
245 registerHandlers(Handler reset_handler, Handler dump_handler)
246 {
247  resetHandler = reset_handler;
248  dumpHandler = dump_handler;
249 }
250 
253 
254 void
256 {
258 }
259 
260 void
262 {
263  dumpQueue.process();
264 }
265 
266 void
267 registerResetCallback(const std::function<void()> &callback)
268 {
269  resetQueue.push_back(callback);
270 }
271 
272 bool _enabled = false;
273 
274 bool
276 {
277  return _enabled;
278 }
279 
280 void
282 {
283  if (_enabled)
284  fatal("Stats are already enabled");
285 
286  _enabled = true;
287 }
288 
289 void
291 {
292  if (dumpHandler)
293  dumpHandler();
294  else
295  fatal("No registered Stats::dump handler");
296 }
297 
298 void
300 {
301  if (resetHandler)
302  resetHandler();
303  else
304  fatal("No registered Stats::reset handler");
305 }
306 
307 const Info *
308 resolve(const std::string &name)
309 {
310  const auto &it = nameMap().find(name);
311  if (it != nameMap().cend()) {
312  return it->second;
313  } else {
314  return Root::root()->resolveStat(name);
315  }
316 }
317 
318 void
319 registerDumpCallback(const std::function<void()> &callback)
320 {
321  dumpQueue.push_back(callback);
322 }
323 
324 } // namespace Stats
325 
326 void
328 {
329  Stats::dump();
330 }
Stats::_enabled
bool _enabled
Definition: statistics.cc:272
fatal
#define fatal(...)
This implements a cprintf based fatal() function.
Definition: logging.hh:183
Stats::init
const FlagsType init
This Stat is Initialized.
Definition: info.hh:46
Root::root
static Root * root()
Use this function to get a pointer to the single Root object in the simulation.
Definition: root.hh:87
Stats::Formula::operator+=
const Formula & operator+=(Temp r)
Add the given tree to the existing one.
Definition: statistics.cc:173
Stats::processResetQueue
void processResetQueue()
Process all the callbacks in the reset callbacks queue.
Definition: statistics.cc:255
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
Stats::enable
void enable()
Definition: statistics.cc:281
Stats::registerDumpCallback
void registerDumpCallback(const std::function< void()> &callback)
Register a callback that should be called whenever statistics are about to be dumped.
Definition: statistics.cc:319
Stats::InfoAccess::_info
Info * _info
Definition: statistics.hh:178
debugDumpStats
void debugDumpStats()
Definition: statistics.cc:327
Stats::Formula::str
std::string str() const
Definition: statistics.cc:236
Stats::Formula::reset
void reset()
Formulas don't need to be reset.
Definition: statistics.cc:220
std::vector< Result >
Stats::statsMap
MapType & statsMap()
Definition: statistics.cc:64
Stats::reset
void reset()
Definition: statistics.cc:299
CallbackQueue
Definition: callback.hh:35
root.hh
Stats::Formula::operator=
const Formula & operator=(const Temp &r)
Set an unitialized Formula to the given root.
Definition: statistics.cc:163
Stats::Formula::zero
bool zero() const
Definition: statistics.cc:225
Stats::BinaryNode
Definition: statistics.hh:1770
Stats::StorageParams
Definition: storage.hh:45
Stats::Info::storageParams
const StorageParams * storageParams
Definition: info.hh:95
Stats::Formula::total
Result total() const
Return the total Formula result.
Definition: statistics.cc:205
Stats::Temp
Helper class to construct formula node trees.
Definition: statistics.hh:2649
Stats::enabled
bool enabled()
Definition: statistics.cc:275
Stats::nameMap
NameMapType & nameMap()
Definition: info.cc:62
Stats::resetHandler
Handler resetHandler
Definition: statistics.cc:241
Stats::DataWrapVec
Definition: statistics.hh:361
Stats::InfoAccess::setInfo
void setInfo(Group *parent, Info *info)
Set up an info class for this statistic.
Definition: statistics.cc:71
Stats::Group::resolveStat
const Info * resolveStat(std::string name) const
Resolve a stat by its name within this group.
Definition: group.cc:121
Stats::Handler
void(* Handler)()
Register reset and dump handlers.
Definition: statistics.hh:2894
Stats::resolve
const Info * resolve(const std::string &name)
Definition: statistics.cc:308
Stats::registerResetCallback
void registerResetCallback(const std::function< void()> &callback)
Register a callback that should be called whenever statistics are reset.
Definition: statistics.cc:267
statistics.hh
Stats::Formula::root
NodePtr root
The root of the tree which represents the Formula.
Definition: statistics.hh:2542
MipsISA::r
r
Definition: pra_constants.hh:95
Flags::set
void set(Type mask)
Set all flag's bits matching the given mask.
Definition: flags.hh:113
Stats::Formula::Formula
Formula(Group *parent=nullptr, const char *name=nullptr, const char *desc=nullptr)
Create and initialize thie formula, and register it with the database.
Definition: statistics.cc:134
Stats::InfoAccess::info
Info * info()
Grab the information class for this statistic.
Definition: statistics.cc:107
Stats::statsList
std::list< Info * > & statsList()
Definition: statistics.cc:57
UNIT_UNSPECIFIED
#define UNIT_UNSPECIFIED
Definition: units.hh:51
std::pair
STL pair class.
Definition: stl.hh:58
name
const std::string & name()
Definition: trace.cc:48
Stats::Info
Definition: info.hh:70
Stats::Result
double Result
All results are doubles.
Definition: types.hh:50
panic_if
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Definition: logging.hh:197
Stats::InfoAccess::setInit
void setInit()
Save Storage class parameters if any.
Definition: statistics.cc:101
Stats::FormulaInfoProxy
Definition: statistics.hh:2375
Stats::processDumpQueue
void processDumpQueue()
Process all the callbacks in the dump callbacks queue.
Definition: statistics.cc:261
Stats::Units::Base
The Base class is the parent class of all unit classes.
Definition: units.hh:93
Stats::dump
void dump()
Dump all statistics data to the registered outputs.
Definition: statistics.cc:290
Stats::Info::flags
Flags flags
The formatting flags.
Definition: info.hh:82
CallbackQueue::process
void process()
Definition: callback.hh:46
Stats::Formula
A formula for statistics that is calculated when printed.
Definition: statistics.hh:2538
Stats::Group
Statistics container.
Definition: group.hh:87
Stats::resetQueue
CallbackQueue resetQueue
Definition: statistics.cc:252
logging.hh
Stats::Formula::result
void result(VResult &vec) const
Return the result of the Fomula in a vector.
Definition: statistics.cc:198
Stats
Definition: statistics.cc:53
Stats::InfoAccess::setParams
void setParams(const StorageParams *params)
Save Storage class parameters if any.
Definition: statistics.cc:95
Stats::Formula::operator/=
const Formula & operator/=(Temp r)
Divide the existing tree by the given one.
Definition: statistics.cc:187
Stats::size_type
unsigned int size_type
Definition: types.hh:54
Stats::MapType
std::map< const void *, Info * > MapType
Definition: statistics.hh:2922
std::list
STL list class.
Definition: stl.hh:51
Stats::Formula::size
size_type size() const
Return the number of elements in the tree.
Definition: statistics.cc:211
Stats::registerHandlers
void registerHandlers(Handler reset_handler, Handler dump_handler)
Definition: statistics.cc:245
Stats::dumpHandler
Handler dumpHandler
Definition: statistics.cc:242
Stats::dumpQueue
CallbackQueue dumpQueue
Definition: statistics.cc:251
callback.hh
Stats::NodePtr
std::shared_ptr< Node > NodePtr
Shared pointer to a function Node.
Definition: statistics.hh:1554

Generated on Tue Mar 23 2021 19:41:24 for gem5 by doxygen 1.8.17