gem5  v21.1.0.1
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
statistics.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2020 Inria
3  * Copyright (c) 2019-2020 Arm Limited
4  * All rights reserved.
5  *
6  * The license below extends only to copyright in the software and shall
7  * not be construed as granting a license to any other intellectual
8  * property including but not limited to intellectual property relating
9  * to a hardware implementation of the functionality of the software
10  * licensed hereunder. You may use the software subject to the license
11  * terms below provided that you ensure that this notice is replicated
12  * unmodified and in its entirety in all distributions of the software,
13  * modified or unmodified, in source code or in binary form.
14  *
15  * Copyright (c) 2003-2005 The Regents of The University of Michigan
16  * Copyright (c) 2017, Centre National de la Recherche Scientifique
17  * All rights reserved.
18  *
19  * Redistribution and use in source and binary forms, with or without
20  * modification, are permitted provided that the following conditions are
21  * met: redistributions of source code must retain the above copyright
22  * notice, this list of conditions and the following disclaimer;
23  * redistributions in binary form must reproduce the above copyright
24  * notice, this list of conditions and the following disclaimer in the
25  * documentation and/or other materials provided with the distribution;
26  * neither the name of the copyright holders nor the names of its
27  * contributors may be used to endorse or promote products derived from
28  * this software without specific prior written permission.
29  *
30  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
31  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
32  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
33  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
34  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
35  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
36  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
37  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
38  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
39  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
40  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
41  */
42 
59 #ifndef __BASE_STATISTICS_HH__
60 #define __BASE_STATISTICS_HH__
61 
62 #include <algorithm>
63 #include <cassert>
64 #ifdef __SUNPRO_CC
65 #include <math.h>
66 #endif
67 #include <cmath>
68 #include <functional>
69 #include <iosfwd>
70 #include <list>
71 #include <map>
72 #include <memory>
73 #include <string>
74 #include <vector>
75 
76 #include "base/cast.hh"
77 #include "base/compiler.hh"
78 #include "base/cprintf.hh"
79 #include "base/intmath.hh"
80 #include "base/logging.hh"
81 #include "base/stats/group.hh"
82 #include "base/stats/info.hh"
83 #include "base/stats/output.hh"
84 #include "base/stats/storage.hh"
85 #include "base/stats/types.hh"
86 #include "base/stats/units.hh"
87 #include "base/str.hh"
88 #include "base/types.hh"
89 
90 namespace gem5
91 {
92 
93 /* A namespace for all of the Statistics */
94 GEM5_DEPRECATED_NAMESPACE(Stats, statistics);
95 namespace statistics
96 {
97 
98 template <class Stat, class Base>
99 class InfoProxy : public Base
100 {
101  protected:
102  Stat &s;
103 
104  public:
105  InfoProxy(Stat &stat) : s(stat) {}
106 
107  bool check() const { return s.check(); }
108  void prepare() { s.prepare(); }
109  void reset() { s.reset(); }
110  void
111  visit(Output &visitor)
112  {
113  visitor.visit(*static_cast<Base *>(this));
114  }
115  bool zero() const { return s.zero(); }
116 };
117 
118 template <class Stat>
119 class ScalarInfoProxy : public InfoProxy<Stat, ScalarInfo>
120 {
121  public:
122  ScalarInfoProxy(Stat &stat) : InfoProxy<Stat, ScalarInfo>(stat) {}
123 
124  Counter value() const { return this->s.value(); }
125  Result result() const { return this->s.result(); }
126  Result total() const { return this->s.total(); }
127 };
128 
129 template <class Stat>
130 class VectorInfoProxy : public InfoProxy<Stat, VectorInfo>
131 {
132  protected:
133  mutable VCounter cvec;
134  mutable VResult rvec;
135 
136  public:
137  VectorInfoProxy(Stat &stat) : InfoProxy<Stat, VectorInfo>(stat) {}
138 
139  size_type size() const { return this->s.size(); }
140 
141  VCounter &
142  value() const
143  {
144  this->s.value(cvec);
145  return cvec;
146  }
147 
148  const VResult &
149  result() const
150  {
151  this->s.result(rvec);
152  return rvec;
153  }
154 
155  Result total() const { return this->s.total(); }
156 };
157 
158 template <class Stat>
159 class DistInfoProxy : public InfoProxy<Stat, DistInfo>
160 {
161  public:
162  DistInfoProxy(Stat &stat) : InfoProxy<Stat, DistInfo>(stat) {}
163 };
164 
165 template <class Stat>
166 class VectorDistInfoProxy : public InfoProxy<Stat, VectorDistInfo>
167 {
168  public:
169  VectorDistInfoProxy(Stat &stat) : InfoProxy<Stat, VectorDistInfo>(stat) {}
170 
171  size_type size() const { return this->s.size(); }
172 };
173 
174 template <class Stat>
175 class Vector2dInfoProxy : public InfoProxy<Stat, Vector2dInfo>
176 {
177  public:
178  Vector2dInfoProxy(Stat &stat) : InfoProxy<Stat, Vector2dInfo>(stat) {}
179 
180  Result total() const { return this->s.total(); }
181 };
182 
184 {
185  private:
187 
188  protected:
190  void setInfo(Group *parent, Info *info);
192  void setParams(const StorageParams *params);
194  void setInit();
195 
197  Info *info();
199  const Info *info() const;
200 
201  public:
203  : _info(nullptr) {};
204 
208  void reset() { }
209 
214  bool zero() const { return true; }
215 
221  bool check() const { return true; }
222 };
223 
224 template <class Derived, template <class> class InfoProxyType>
225 class DataWrap : public InfoAccess
226 {
227  public:
228  typedef InfoProxyType<Derived> Info;
229 
230  protected:
231  Derived &self() { return *static_cast<Derived *>(this); }
232 
233  protected:
234  Info *
236  {
237  return safe_cast<Info *>(InfoAccess::info());
238  }
239 
240  public:
241  const Info *
242  info() const
243  {
244  return safe_cast<const Info *>(InfoAccess::info());
245  }
246 
247  public:
248  DataWrap() = delete;
249  DataWrap(const DataWrap &) = delete;
250  DataWrap &operator=(const DataWrap &) = delete;
251 
252  DataWrap(Group *parent, const char *name, const units::Base *unit,
253  const char *desc)
254  {
255  auto info = new Info(self());
256  this->setInfo(parent, info);
257 
258  if (parent)
259  parent->addStat(info);
260 
261  if (name) {
262  info->setName(name, parent == nullptr);
263  info->flags.set(display);
264  }
265 
266  info->unit = unit;
267 
268  if (desc)
269  info->desc = desc;
270 
271  // Stat that does not belong to any statistics::Group is a legacy stat
272  std::string common_message = "Legacy stat is a stat that does not "
273  "belong to any statistics::Group. Legacy stat is deprecated.";
274  if (parent == nullptr && name != nullptr)
275  warn(csprintf("`%s` is a legacy stat. %s", name, common_message));
276  else if (parent == nullptr)
277  warn_once("One of the stats is a legacy stat. " + common_message);
278  }
279 
285  Derived &
286  name(const std::string &name)
287  {
288  Info *info = this->info();
289  info->setName(name);
290  info->flags.set(display);
291  return this->self();
292  }
293  const std::string &name() const { return this->info()->name; }
294 
301  Derived &
302  setSeparator(const std::string &_sep)
303  {
304  this->info()->setSeparator(_sep);
305  return this->self();
306  }
307  const std::string &setSeparator() const
308  {
309  return this->info()->separatorString;
310  }
311 
317  Derived &
318  unit(const units::Base *_unit)
319  {
320  this->info()->unit = _unit;
321  return this->self();
322  }
323 
330  Derived &
331  desc(const std::string &_desc)
332  {
333  this->info()->desc = _desc;
334  return this->self();
335  }
336 
342  Derived &
343  precision(int _precision)
344  {
345  this->info()->precision = _precision;
346  return this->self();
347  }
348 
354  Derived &
355  flags(Flags _flags)
356  {
357  this->info()->flags.set(_flags);
358  return this->self();
359  }
360 
367  template <class Stat>
368  Derived &
369  prereq(const Stat &prereq)
370  {
371  this->info()->prereq = prereq.info();
372  return this->self();
373  }
374 };
375 
376 template <class Derived, template <class> class InfoProxyType>
377 class DataWrapVec : public DataWrap<Derived, InfoProxyType>
378 {
379  public:
380  typedef InfoProxyType<Derived> Info;
381 
382  DataWrapVec(Group *parent = nullptr, const char *name = nullptr,
384  const char *desc = nullptr)
385  : DataWrap<Derived, InfoProxyType>(parent, name, unit, desc)
386  {}
387 
388  // The following functions are specific to vectors. If you use them
389  // in a non vector context, you will get a nice compiler error!
390 
398  Derived &
399  subname(off_type index, const std::string &name)
400  {
401  Derived &self = this->self();
402  Info *info = self.info();
403 
404  std::vector<std::string> &subn = info->subnames;
405  if (subn.size() <= index)
406  subn.resize(index + 1);
407  subn[index] = name;
408  return self;
409  }
410 
411  // The following functions are specific to 2d vectors. If you use
412  // them in a non vector context, you will get a nice compiler
413  // error because info doesn't have the right variables.
414 
422  Derived &
423  subdesc(off_type index, const std::string &desc)
424  {
425  Info *info = this->info();
426 
427  std::vector<std::string> &subd = info->subdescs;
428  if (subd.size() <= index)
429  subd.resize(index + 1);
430  subd[index] = desc;
431 
432  return this->self();
433  }
434 
435  void
437  {
438  Derived &self = this->self();
439  Info *info = this->info();
440 
441  size_t size = self.size();
442  for (off_type i = 0; i < size; ++i)
443  self.data(i)->prepare(info->getStorageParams());
444  }
445 
446  void
448  {
449  Derived &self = this->self();
450  Info *info = this->info();
451 
452  size_t size = self.size();
453  for (off_type i = 0; i < size; ++i)
454  self.data(i)->reset(info->getStorageParams());
455  }
456 };
457 
458 template <class Derived, template <class> class InfoProxyType>
459 class DataWrapVec2d : public DataWrapVec<Derived, InfoProxyType>
460 {
461  public:
462  typedef InfoProxyType<Derived> Info;
463 
464  DataWrapVec2d(Group *parent, const char *name,
465  const units::Base *unit, const char *desc)
466  : DataWrapVec<Derived, InfoProxyType>(parent, name, unit, desc)
467  {
468  }
469 
474  Derived &
475  ysubnames(const char **names)
476  {
477  Derived &self = this->self();
478  Info *info = this->info();
479 
480  info->y_subnames.resize(self.y);
481  for (off_type i = 0; i < self.y; ++i)
482  info->y_subnames[i] = names[i];
483  return self;
484  }
485 
486  Derived &
487  ysubname(off_type index, const std::string &subname)
488  {
489  Derived &self = this->self();
490  Info *info = this->info();
491 
492  assert(index < self.y);
493  info->y_subnames.resize(self.y);
494  info->y_subnames[index] = subname.c_str();
495  return self;
496  }
497 
498  std::string
500  {
501  return this->info()->y_subnames[i];
502  }
503 
504 };
505 
507 //
508 // Simple Statistics
509 //
511 
516 template <class Derived, class Stor>
517 class ScalarBase : public DataWrap<Derived, ScalarInfoProxy>
518 {
519  public:
520  typedef Stor Storage;
521  typedef typename Stor::Params Params;
522 
523  protected:
525  GEM5_ALIGNED(8) char storage[sizeof(Storage)];
526 
527  protected:
533  Storage *
535  {
536  return reinterpret_cast<Storage *>(storage);
537  }
538 
545  const Storage *
546  data() const
547  {
548  return reinterpret_cast<const Storage *>(storage);
549  }
550 
551  void
553  {
554  new (storage) Storage(this->info()->getStorageParams());
555  this->setInit();
556  }
557 
558  public:
559  ScalarBase(Group *parent = nullptr, const char *name = nullptr,
561  const char *desc = nullptr)
562  : DataWrap<Derived, ScalarInfoProxy>(parent, name, unit, desc)
563  {
564  this->doInit();
565  }
566 
567  public:
568  // Common operators for stats
573  void operator++() { data()->inc(1); }
578  void operator--() { data()->dec(1); }
579 
581  void operator++(int) { ++*this; }
583  void operator--(int) { --*this; }
584 
590  template <typename U>
591  void operator=(const U &v) { data()->set(v); }
592 
598  template <typename U>
599  void operator+=(const U &v) { data()->inc(v); }
600 
606  template <typename U>
607  void operator-=(const U &v) { data()->dec(v); }
608 
613  size_type size() const { return 1; }
614 
619  Counter value() const { return data()->value(); }
620 
621  Result result() const { return data()->result(); }
622 
623  Result total() const { return result(); }
624 
625  bool zero() const { return result() == 0.0; }
626 
627  void reset() { data()->reset(this->info()->getStorageParams()); }
628  void prepare() { data()->prepare(this->info()->getStorageParams()); }
629 };
630 
631 class ProxyInfo : public ScalarInfo
632 {
633  public:
634  std::string str() const { return std::to_string(value()); }
635  size_type size() const { return 1; }
636  bool check() const { return true; }
637  void prepare() { }
638  void reset() { }
639  bool zero() const { return value() == 0; }
640 
641  void visit(Output &visitor) { visitor.visit(*this); }
642 };
643 
644 template <class T>
645 class ValueProxy : public ProxyInfo
646 {
647  private:
648  T *scalar;
649 
650  public:
652  Counter value() const { return *scalar; }
653  Result result() const { return *scalar; }
654  Result total() const { return *scalar; }
655 };
656 
657 template <class T, class Enabled=void>
658 class FunctorProxy : public ProxyInfo
659 {
660  private:
662 
663  public:
664  FunctorProxy(T &func) : functor(&func) {}
665  Counter value() const { return (*functor)(); }
666  Result result() const { return (*functor)(); }
667  Result total() const { return (*functor)(); }
668 };
669 
676 template <class T>
677 class FunctorProxy<T,
678  typename std::enable_if_t<std::is_constructible<std::function<Result()>,
679  const T &>::value>> : public ProxyInfo
680 {
681  private:
682  std::function<Result()> functor;
683 
684  public:
685  FunctorProxy(const T &func) : functor(func) {}
686  Counter value() const { return functor(); }
687  Result result() const { return functor(); }
688  Result total() const { return functor(); }
689 };
690 
695 template <class T, class V>
696 class MethodProxy : public ProxyInfo
697 {
698  private:
699  T *object;
700  typedef V (T::*MethodPointer) () const;
702 
703  public:
704  MethodProxy(T *obj, MethodPointer meth) : object(obj), method(meth) {}
705  Counter value() const { return (object->*method)(); }
706  Result result() const { return (object->*method)(); }
707  Result total() const { return (object->*method)(); }
708 };
709 
710 template <class Derived>
711 class ValueBase : public DataWrap<Derived, ScalarInfoProxy>
712 {
713  private:
715 
716  public:
717  ValueBase(Group *parent, const char *name,
718  const units::Base *unit,
719  const char *desc)
720  : DataWrap<Derived, ScalarInfoProxy>(parent, name, unit, desc),
721  proxy(NULL)
722  {
723  }
724 
725  ~ValueBase() { if (proxy) delete proxy; }
726 
727  template <class T>
728  Derived &
730  {
731  proxy = new ValueProxy<T>(value);
732  this->setInit();
733  return this->self();
734  }
735 
736  template <class T>
737  Derived &
738  functor(const T &func)
739  {
740  proxy = new FunctorProxy<T>(func);
741  this->setInit();
742  return this->self();
743  }
744 
745  template <class T>
746  Derived &
747  functor(T &func)
748  {
749  proxy = new FunctorProxy<T>(func);
750  this->setInit();
751  return this->self();
752  }
753 
761  template <class T, class V>
762  Derived &
763  method(T *obj, V (T::*method)() const)
764  {
765  proxy = new MethodProxy<T,V>(obj, method);
766  this->setInit();
767  return this->self();
768  }
769 
770  Counter value() { return proxy->value(); }
771  Result result() const { return proxy->result(); }
772  Result total() const { return proxy->total(); };
773  size_type size() const { return proxy->size(); }
774 
775  std::string str() const { return proxy->str(); }
776  bool zero() const { return proxy->zero(); }
777  bool check() const { return proxy != NULL; }
778  void prepare() { }
779  void reset() { }
780 };
781 
783 //
784 // Vector Statistics
785 //
787 
792 template <class Stat>
794 {
795  private:
797  Stat &stat;
798 
801 
802  public:
807  Counter value() const { return stat.data(index)->value(); }
808 
813  Result result() const { return stat.data(index)->result(); }
814 
815  public:
821  : stat(s), index(i)
822  {
823  }
824 
830  : stat(sp.stat), index(sp.index)
831  {}
832 
838  const ScalarProxy &
840  {
841  stat = sp.stat;
842  index = sp.index;
843  return *this;
844  }
845 
846  public:
847  // Common operators for stats
852  void operator++() { stat.data(index)->inc(1); }
857  void operator--() { stat.data(index)->dec(1); }
858 
860  void operator++(int) { ++*this; }
862  void operator--(int) { --*this; }
863 
869  template <typename U>
870  void
871  operator=(const U &v)
872  {
873  stat.data(index)->set(v);
874  }
875 
881  template <typename U>
882  void
883  operator+=(const U &v)
884  {
885  stat.data(index)->inc(v);
886  }
887 
893  template <typename U>
894  void
895  operator-=(const U &v)
896  {
897  stat.data(index)->dec(v);
898  }
899 
904  size_type size() const { return 1; }
905 
906  public:
907  std::string
908  str() const
909  {
910  return csprintf("%s[%d]", stat.info()->name, index);
911  }
912 };
913 
918 template <class Derived, class Stor>
919 class VectorBase : public DataWrapVec<Derived, VectorInfoProxy>
920 {
921  public:
922  typedef Stor Storage;
923  typedef typename Stor::Params Params;
924 
927  friend class ScalarProxy<Derived>;
928  friend class DataWrapVec<Derived, VectorInfoProxy>;
929 
930  protected:
933 
934  protected:
941 
947  const Storage *data(off_type index) const { return storage[index]; }
948 
949  void
951  {
952  fatal_if(s <= 0, "Storage size must be positive");
953  fatal_if(check(), "Stat has already been initialized");
954 
955  storage.resize(s, new Storage(this->info()->getStorageParams()));
956  this->setInit();
957  }
958 
959  public:
960  void
962  {
963  vec.resize(size());
964  for (off_type i = 0; i < size(); ++i)
965  vec[i] = data(i)->value();
966  }
967 
972  void
974  {
975  vec.resize(size());
976  for (off_type i = 0; i < size(); ++i)
977  vec[i] = data(i)->result();
978  }
979 
984  Result
985  total() const
986  {
987  Result total = 0.0;
988  for (off_type i = 0; i < size(); ++i)
989  total += data(i)->result();
990  return total;
991  }
992 
996  size_type size() const { return storage.size(); }
997 
998  bool
999  zero() const
1000  {
1001  for (off_type i = 0; i < size(); ++i)
1002  if (data(i)->zero())
1003  return false;
1004  return true;
1005  }
1006 
1007  bool
1008  check() const
1009  {
1010  return size() > 0;
1011  }
1012 
1013  public:
1014  VectorBase(Group *parent, const char *name,
1015  const units::Base *unit,
1016  const char *desc)
1017  : DataWrapVec<Derived, VectorInfoProxy>(parent, name, unit, desc),
1018  storage()
1019  {}
1020 
1022  {
1023  for (auto& stor : storage) {
1024  delete stor;
1025  }
1026  }
1027 
1033  Derived &
1035  {
1036  Derived &self = this->self();
1037  self.doInit(size);
1038  return self;
1039  }
1040 
1046  Proxy
1048  {
1049  assert (index < size());
1050  return Proxy(this->self(), index);
1051  }
1052 };
1053 
1054 template <class Stat>
1056 {
1057  private:
1058  Stat &stat;
1061 
1062  private:
1063  mutable VResult vec;
1064 
1065  typename Stat::Storage *
1067  {
1068  assert(index < len);
1069  return stat.data(offset + index);
1070  }
1071 
1072  const typename Stat::Storage *
1074  {
1075  assert(index < len);
1076  return stat.data(offset + index);
1077  }
1078 
1079  public:
1080  const VResult &
1081  result() const
1082  {
1083  vec.resize(size());
1084 
1085  for (off_type i = 0; i < size(); ++i)
1086  vec[i] = data(i)->result();
1087 
1088  return vec;
1089  }
1090 
1091  Result
1092  total() const
1093  {
1094  Result total = 0.0;
1095  for (off_type i = 0; i < size(); ++i)
1096  total += data(i)->result();
1097  return total;
1098  }
1099 
1100  public:
1102  : stat(s), offset(o), len(l)
1103  {
1104  }
1105 
1107  : stat(sp.stat), offset(sp.offset), len(sp.len)
1108  {
1109  }
1110 
1111  const VectorProxy &
1113  {
1114  stat = sp.stat;
1115  offset = sp.offset;
1116  len = sp.len;
1117  return *this;
1118  }
1119 
1122  {
1123  assert (index < size());
1124  return ScalarProxy<Stat>(stat, offset + index);
1125  }
1126 
1127  size_type size() const { return len; }
1128 };
1129 
1130 template <class Derived, class Stor>
1131 class Vector2dBase : public DataWrapVec2d<Derived, Vector2dInfoProxy>
1132 {
1133  public:
1135  typedef Stor Storage;
1136  typedef typename Stor::Params Params;
1138  friend class ScalarProxy<Derived>;
1139  friend class VectorProxy<Derived>;
1140  friend class DataWrapVec<Derived, Vector2dInfoProxy>;
1141  friend class DataWrapVec2d<Derived, Vector2dInfoProxy>;
1142 
1143  protected:
1147 
1148  protected:
1150  const Storage *data(off_type index) const { return storage[index]; }
1151 
1152  public:
1153  Vector2dBase(Group *parent, const char *name,
1154  const units::Base *unit,
1155  const char *desc)
1156  : DataWrapVec2d<Derived, Vector2dInfoProxy>(parent, name, unit, desc),
1157  x(0), y(0), storage()
1158  {}
1159 
1161  {
1162  for (auto& stor : storage) {
1163  delete stor;
1164  }
1165  }
1166 
1167  Derived &
1169  {
1170  fatal_if((_x <= 0) || (_y <= 0), "Storage sizes must be positive");
1171  fatal_if(check(), "Stat has already been initialized");
1172 
1173  Derived &self = this->self();
1174  Info *info = this->info();
1175 
1176  x = _x;
1177  y = _y;
1178  info->x = _x;
1179  info->y = _y;
1180 
1181  storage.resize(x * y, new Storage(info->getStorageParams()));
1182  this->setInit();
1183 
1184  return self;
1185  }
1186 
1187  Proxy
1189  {
1190  off_type offset = index * y;
1191  assert (offset + y <= size());
1192  return Proxy(this->self(), offset, y);
1193  }
1194 
1195 
1196  size_type
1197  size() const
1198  {
1199  return storage.size();
1200  }
1201 
1202  bool
1203  zero() const
1204  {
1205  return data(0)->zero();
1206  }
1207 
1212  Result
1213  total() const
1214  {
1215  Result total = 0.0;
1216  for (off_type i = 0; i < size(); ++i)
1217  total += data(i)->result();
1218  return total;
1219  }
1220 
1221  void
1223  {
1224  Info *info = this->info();
1225  size_type size = this->size();
1226 
1227  for (off_type i = 0; i < size; ++i)
1228  data(i)->prepare(info->getStorageParams());
1229 
1230  info->cvec.resize(size);
1231  for (off_type i = 0; i < size; ++i)
1232  info->cvec[i] = data(i)->value();
1233  }
1234 
1238  void
1240  {
1241  Info *info = this->info();
1242  size_type size = this->size();
1243  for (off_type i = 0; i < size; ++i)
1244  data(i)->reset(info->getStorageParams());
1245  }
1246 
1247  bool
1248  check() const
1249  {
1250  return size() > 0;
1251  }
1252 };
1253 
1255 //
1256 // Non formula statistics
1257 //
1259 
1264 template <class Derived, class Stor>
1265 class DistBase : public DataWrap<Derived, DistInfoProxy>
1266 {
1267  public:
1269  typedef Stor Storage;
1270  typedef typename Stor::Params Params;
1271 
1272  protected:
1274  GEM5_ALIGNED(8) char storage[sizeof(Storage)];
1275 
1276  protected:
1281  Storage *
1283  {
1284  return reinterpret_cast<Storage *>(storage);
1285  }
1286 
1291  const Storage *
1292  data() const
1293  {
1294  return reinterpret_cast<const Storage *>(storage);
1295  }
1296 
1297  void
1299  {
1300  new (storage) Storage(this->info()->getStorageParams());
1301  this->setInit();
1302  }
1303 
1304  public:
1305  DistBase(Group *parent, const char *name,
1306  const units::Base *unit,
1307  const char *desc)
1308  : DataWrap<Derived, DistInfoProxy>(parent, name, unit, desc)
1309  {
1310  }
1311 
1318  template <typename U>
1319  void sample(const U &v, int n = 1) { data()->sample(v, n); }
1320 
1325  size_type size() const { return data()->size(); }
1330  bool zero() const { return data()->zero(); }
1331 
1332  void
1334  {
1335  Info *info = this->info();
1336  data()->prepare(info->getStorageParams(), info->data);
1337  }
1338 
1342  void
1344  {
1345  data()->reset(this->info()->getStorageParams());
1346  }
1347 
1351  void add(DistBase &d) { data()->add(d.data()); }
1352 };
1353 
1354 template <class Stat>
1356 
1357 template <class Derived, class Stor>
1358 class VectorDistBase : public DataWrapVec<Derived, VectorDistInfoProxy>
1359 {
1360  public:
1362  typedef Stor Storage;
1363  typedef typename Stor::Params Params;
1365  friend class DistProxy<Derived>;
1366  friend class DataWrapVec<Derived, VectorDistInfoProxy>;
1367 
1368  protected:
1370 
1371  protected:
1372  Storage *
1374  {
1375  return storage[index];
1376  }
1377 
1378  const Storage *
1380  {
1381  return storage[index];
1382  }
1383 
1384  void
1386  {
1387  fatal_if(s <= 0, "Storage size must be positive");
1388  fatal_if(check(), "Stat has already been initialized");
1389 
1390  storage.resize(s, new Storage(this->info()->getStorageParams()));
1391  this->setInit();
1392  }
1393 
1394  public:
1395  VectorDistBase(Group *parent, const char *name,
1396  const units::Base *unit,
1397  const char *desc)
1398  : DataWrapVec<Derived, VectorDistInfoProxy>(parent, name, unit, desc),
1399  storage()
1400  {}
1401 
1403  {
1404  for (auto& stor : storage) {
1405  delete stor;
1406  }
1407  }
1408 
1410  {
1411  assert(index < size());
1412  return Proxy(this->self(), index);
1413  }
1414 
1415  size_type
1416  size() const
1417  {
1418  return storage.size();
1419  }
1420 
1421  bool
1422  zero() const
1423  {
1424  for (off_type i = 0; i < size(); ++i)
1425  if (!data(i)->zero())
1426  return false;
1427  return true;
1428  }
1429 
1430  void
1432  {
1433  Info *info = this->info();
1434  size_type size = this->size();
1435  info->data.resize(size);
1436  for (off_type i = 0; i < size; ++i)
1437  data(i)->prepare(info->getStorageParams(), info->data[i]);
1438  }
1439 
1440  bool
1441  check() const
1442  {
1443  return size() > 0;
1444  }
1445 };
1446 
1447 template <class Stat>
1448 class DistProxy
1449 {
1450  private:
1451  Stat &stat;
1453 
1454  protected:
1455  typename Stat::Storage *data() { return stat.data(index); }
1456  const typename Stat::Storage *data() const { return stat.data(index); }
1457 
1458  public:
1460  : stat(s), index(i)
1461  {}
1462 
1464  : stat(sp.stat), index(sp.index)
1465  {}
1466 
1467  const DistProxy &
1469  {
1470  stat = sp.stat;
1471  index = sp.index;
1472  return *this;
1473  }
1474 
1475  public:
1476  template <typename U>
1477  void
1478  sample(const U &v, int n = 1)
1479  {
1480  data()->sample(v, n);
1481  }
1482 
1483  size_type
1484  size() const
1485  {
1486  return 1;
1487  }
1488 
1489  bool
1490  zero() const
1491  {
1492  return data()->zero();
1493  }
1494 
1498  void reset() { }
1499 };
1500 
1502 //
1503 // Formula Details
1504 //
1506 
1511 class Node
1512 {
1513  public:
1518  virtual size_type size() const = 0;
1523  virtual const VResult &result() const = 0;
1528  virtual Result total() const = 0;
1529 
1533  virtual std::string str() const = 0;
1534 
1535  virtual ~Node() {};
1536 };
1537 
1539 typedef std::shared_ptr<Node> NodePtr;
1540 
1541 class ScalarStatNode : public Node
1542 {
1543  private:
1545  mutable VResult vresult;
1546 
1547  public:
1549 
1550  const VResult &
1551  result() const
1552  {
1553  vresult[0] = data->result();
1554  return vresult;
1555  }
1556 
1557  Result total() const { return data->result(); };
1558 
1559  size_type size() const { return 1; }
1560 
1564  std::string str() const { return data->name; }
1565 };
1566 
1567 template <class Stat>
1568 class ScalarProxyNode : public Node
1569 {
1570  private:
1572  mutable VResult vresult;
1573 
1574  public:
1576  : proxy(p), vresult(1)
1577  { }
1578 
1579  const VResult &
1580  result() const
1581  {
1582  vresult[0] = proxy.result();
1583  return vresult;
1584  }
1585 
1586  Result
1587  total() const
1588  {
1589  return proxy.result();
1590  }
1591 
1592  size_type
1593  size() const
1594  {
1595  return 1;
1596  }
1597 
1601  std::string
1602  str() const
1603  {
1604  return proxy.str();
1605  }
1606 };
1607 
1608 class VectorStatNode : public Node
1609 {
1610  private:
1612 
1613  public:
1615  const VResult &result() const { return data->result(); }
1616  Result total() const { return data->total(); };
1617 
1618  size_type size() const { return data->size(); }
1619 
1620  std::string str() const { return data->name; }
1621 };
1622 
1623 template <class T>
1624 class ConstNode : public Node
1625 {
1626  private:
1628 
1629  public:
1630  ConstNode(T s) : vresult(1, (Result)s) {}
1631  const VResult &result() const { return vresult; }
1632  Result total() const { return vresult[0]; };
1633  size_type size() const { return 1; }
1634  std::string str() const { return std::to_string(vresult[0]); }
1635 };
1636 
1637 template <class T>
1638 class ConstVectorNode : public Node
1639 {
1640  private:
1642 
1643  public:
1644  ConstVectorNode(const T &s) : vresult(s.begin(), s.end()) {}
1645  const VResult &result() const { return vresult; }
1646 
1647  Result
1648  total() const
1649  {
1650  size_type size = this->size();
1651  Result tmp = 0;
1652  for (off_type i = 0; i < size; i++)
1653  tmp += vresult[i];
1654  return tmp;
1655  }
1656 
1657  size_type size() const { return vresult.size(); }
1658  std::string
1659  str() const
1660  {
1661  size_type size = this->size();
1662  std::string tmp = "(";
1663  for (off_type i = 0; i < size; i++)
1664  tmp += csprintf("%s ", std::to_string(vresult[i]));
1665  tmp += ")";
1666  return tmp;
1667  }
1668 };
1669 
1670 template <class Op>
1671 struct OpString;
1672 
1673 template<>
1674 struct OpString<std::plus<Result> >
1675 {
1676  static std::string str() { return "+"; }
1677 };
1678 
1679 template<>
1680 struct OpString<std::minus<Result> >
1681 {
1682  static std::string str() { return "-"; }
1683 };
1684 
1685 template<>
1686 struct OpString<std::multiplies<Result> >
1687 {
1688  static std::string str() { return "*"; }
1689 };
1690 
1691 template<>
1692 struct OpString<std::divides<Result> >
1693 {
1694  static std::string str() { return "/"; }
1695 };
1696 
1697 template<>
1698 struct OpString<std::modulus<Result> >
1699 {
1700  static std::string str() { return "%"; }
1701 };
1702 
1703 template<>
1704 struct OpString<std::negate<Result> >
1705 {
1706  static std::string str() { return "-"; }
1707 };
1708 
1709 template <class Op>
1710 class UnaryNode : public Node
1711 {
1712  public:
1714  mutable VResult vresult;
1715 
1716  public:
1718 
1719  const VResult &
1720  result() const
1721  {
1722  const VResult &lvec = l->result();
1723  size_type size = lvec.size();
1724 
1725  assert(size > 0);
1726 
1727  vresult.resize(size);
1728  Op op;
1729  for (off_type i = 0; i < size; ++i)
1730  vresult[i] = op(lvec[i]);
1731 
1732  return vresult;
1733  }
1734 
1735  Result
1736  total() const
1737  {
1738  const VResult &vec = this->result();
1739  Result total = 0.0;
1740  for (off_type i = 0; i < size(); i++)
1741  total += vec[i];
1742  return total;
1743  }
1744 
1745  size_type size() const { return l->size(); }
1746 
1747  std::string
1748  str() const
1749  {
1750  return OpString<Op>::str() + l->str();
1751  }
1752 };
1753 
1754 template <class Op>
1755 class BinaryNode : public Node
1756 {
1757  public:
1760  mutable VResult vresult;
1761 
1762  public:
1764 
1765  const VResult &
1766  result() const override
1767  {
1768  Op op;
1769  const VResult &lvec = l->result();
1770  const VResult &rvec = r->result();
1771 
1772  assert(lvec.size() > 0 && rvec.size() > 0);
1773 
1774  if (lvec.size() == 1 && rvec.size() == 1) {
1775  vresult.resize(1);
1776  vresult[0] = op(lvec[0], rvec[0]);
1777  } else if (lvec.size() == 1) {
1778  size_type size = rvec.size();
1779  vresult.resize(size);
1780  for (off_type i = 0; i < size; ++i)
1781  vresult[i] = op(lvec[0], rvec[i]);
1782  } else if (rvec.size() == 1) {
1783  size_type size = lvec.size();
1784  vresult.resize(size);
1785  for (off_type i = 0; i < size; ++i)
1786  vresult[i] = op(lvec[i], rvec[0]);
1787  } else if (rvec.size() == lvec.size()) {
1788  size_type size = rvec.size();
1789  vresult.resize(size);
1790  for (off_type i = 0; i < size; ++i)
1791  vresult[i] = op(lvec[i], rvec[i]);
1792  }
1793 
1794  return vresult;
1795  }
1796 
1797  Result
1798  total() const override
1799  {
1800  const VResult &vec = this->result();
1801  const VResult &lvec = l->result();
1802  const VResult &rvec = r->result();
1803  Result total = 0.0;
1804  Result lsum = 0.0;
1805  Result rsum = 0.0;
1806  Op op;
1807 
1808  assert(lvec.size() > 0 && rvec.size() > 0);
1809  assert(lvec.size() == rvec.size() ||
1810  lvec.size() == 1 || rvec.size() == 1);
1811 
1813  if (lvec.size() == rvec.size() && lvec.size() > 1) {
1814  for (off_type i = 0; i < size(); ++i) {
1815  lsum += lvec[i];
1816  rsum += rvec[i];
1817  }
1818  return op(lsum, rsum);
1819  }
1820 
1822  for (off_type i = 0; i < size(); ++i) {
1823  total += vec[i];
1824  }
1825 
1826  return total;
1827  }
1828 
1829  size_type
1830  size() const override
1831  {
1832  size_type ls = l->size();
1833  size_type rs = r->size();
1834  if (ls == 1) {
1835  return rs;
1836  } else if (rs == 1) {
1837  return ls;
1838  } else {
1839  assert(ls == rs && "Node vector sizes are not equal");
1840  return ls;
1841  }
1842  }
1843 
1844  std::string
1845  str() const override
1846  {
1847  return csprintf("(%s %s %s)", l->str(), OpString<Op>::str(), r->str());
1848  }
1849 };
1850 
1851 template <class Op>
1852 class SumNode : public Node
1853 {
1854  public:
1856  mutable VResult vresult;
1857 
1858  public:
1859  SumNode(NodePtr &p) : l(p), vresult(1) {}
1860 
1861  const VResult &
1862  result() const
1863  {
1864  const VResult &lvec = l->result();
1865  size_type size = lvec.size();
1866  assert(size > 0);
1867 
1868  vresult[0] = 0.0;
1869 
1870  Op op;
1871  for (off_type i = 0; i < size; ++i)
1872  vresult[0] = op(vresult[0], lvec[i]);
1873 
1874  return vresult;
1875  }
1876 
1877  Result
1878  total() const
1879  {
1880  const VResult &lvec = l->result();
1881  size_type size = lvec.size();
1882  assert(size > 0);
1883 
1884  Result result = 0.0;
1885 
1886  Op op;
1887  for (off_type i = 0; i < size; ++i)
1888  result = op(result, lvec[i]);
1889 
1890  return result;
1891  }
1892 
1893  size_type size() const { return 1; }
1894 
1895  std::string
1896  str() const
1897  {
1898  return csprintf("total(%s)", l->str());
1899  }
1900 };
1901 
1902 
1904 //
1905 // Visible Statistics Types
1906 //
1908 
1918 class Scalar : public ScalarBase<Scalar, StatStor>
1919 {
1920  public:
1922 
1923  Scalar(Group *parent = nullptr)
1925  parent, nullptr, units::Unspecified::get(), nullptr)
1926  {
1927  }
1928 
1929  Scalar(Group *parent, const char *name, const char *desc = nullptr)
1931  parent, name, units::Unspecified::get(), desc)
1932  {
1933  }
1934 
1935  Scalar(Group *parent, const char *name, const units::Base *unit,
1936  const char *desc = nullptr)
1937  : ScalarBase<Scalar, StatStor>(parent, name, unit, desc)
1938  {
1939  }
1940 };
1941 
1946 class Average : public ScalarBase<Average, AvgStor>
1947 {
1948  public:
1950 
1951  Average(Group *parent = nullptr)
1953  parent, nullptr, units::Unspecified::get(), nullptr)
1954  {
1955  }
1956 
1957  Average(Group *parent, const char *name, const char *desc = nullptr)
1959  parent, name, units::Unspecified::get(), desc)
1960  {
1961  }
1962 
1963  Average(Group *parent, const char *name, const units::Base *unit,
1964  const char *desc = nullptr)
1965  : ScalarBase<Average, AvgStor>(parent, name, unit, desc)
1966  {
1967  }
1968 };
1969 
1970 class Value : public ValueBase<Value>
1971 {
1972  public:
1973  Value(Group *parent = nullptr)
1974  : ValueBase<Value>(parent, nullptr, units::Unspecified::get(), nullptr)
1975  {
1976  }
1977 
1978  Value(Group *parent, const char *name, const char *desc = nullptr)
1979  : ValueBase<Value>(parent, name, units::Unspecified::get(), desc)
1980  {
1981  }
1982 
1983  Value(Group *parent, const char *name, const units::Base *unit,
1984  const char *desc = nullptr)
1985  : ValueBase<Value>(parent, name, unit, desc)
1986  {
1987  }
1988 };
1989 
1994 class Vector : public VectorBase<Vector, StatStor>
1995 {
1996  public:
1997  Vector(Group *parent = nullptr)
1999  parent, nullptr, units::Unspecified::get(), nullptr)
2000  {
2001  }
2002 
2003  Vector(Group *parent, const char *name, const char *desc = nullptr)
2005  parent, name, units::Unspecified::get(), desc)
2006  {
2007  }
2008 
2009  Vector(Group *parent, const char *name, const units::Base *unit,
2010  const char *desc = nullptr)
2011  : VectorBase<Vector, StatStor>(parent, name, unit, desc)
2012  {
2013  }
2014 };
2015 
2020 class AverageVector : public VectorBase<AverageVector, AvgStor>
2021 {
2022  public:
2023  AverageVector(Group *parent = nullptr)
2025  parent, nullptr, units::Unspecified::get(), nullptr)
2026  {
2027  }
2028 
2029  AverageVector(Group *parent, const char *name, const char *desc = nullptr)
2031  parent, name, units::Unspecified::get(), desc)
2032  {
2033  }
2034 
2035  AverageVector(Group *parent, const char *name, const units::Base *unit,
2036  const char *desc = nullptr)
2037  : VectorBase<AverageVector, AvgStor>(parent, name, unit, desc)
2038  {
2039  }
2040 };
2041 
2046 class Vector2d : public Vector2dBase<Vector2d, StatStor>
2047 {
2048  public:
2049  Vector2d(Group *parent = nullptr)
2051  parent, nullptr, units::Unspecified::get(), nullptr)
2052  {
2053  }
2054 
2055  Vector2d(Group *parent, const char *name, const char *desc = nullptr)
2057  parent, name, units::Unspecified::get(), desc)
2058  {
2059  }
2060 
2061  Vector2d(Group *parent, const char *name, const units::Base *unit,
2062  const char *desc = nullptr)
2063  : Vector2dBase<Vector2d, StatStor>(parent, name, unit, desc)
2064  {
2065  }
2066 };
2067 
2072 class Distribution : public DistBase<Distribution, DistStor>
2073 {
2074  public:
2075  Distribution(Group *parent = nullptr)
2077  parent, nullptr, units::Unspecified::get(), nullptr)
2078  {
2079  }
2080 
2081  Distribution(Group *parent, const char *name, const char *desc = nullptr)
2083  parent, name, units::Unspecified::get(), desc)
2084  {
2085  }
2086 
2087  Distribution(Group *parent, const char *name, const units::Base *unit,
2088  const char *desc = nullptr)
2089  : DistBase<Distribution, DistStor>(parent, name, unit, desc)
2090  {
2091  }
2092 
2100  Distribution &
2101  init(Counter min, Counter max, Counter bkt)
2102  {
2103  DistStor::Params *params = new DistStor::Params(min, max, bkt);
2104  this->setParams(params);
2105  this->doInit();
2106  return this->self();
2107  }
2108 };
2109 
2114 class Histogram : public DistBase<Histogram, HistStor>
2115 {
2116  public:
2117  Histogram(Group *parent = nullptr)
2119  parent, nullptr, units::Unspecified::get(), nullptr)
2120  {
2121  }
2122 
2123  Histogram(Group *parent, const char *name,
2124  const char *desc = nullptr)
2126  parent, name, units::Unspecified::get(), desc)
2127  {
2128  }
2129 
2130  Histogram(Group *parent, const char *name, const units::Base *unit,
2131  const char *desc = nullptr)
2132  : DistBase<Histogram, HistStor>(parent, name, unit, desc)
2133  {
2134  }
2135 
2141  Histogram &
2143  {
2144  HistStor::Params *params = new HistStor::Params(size);
2145  this->setParams(params);
2146  this->doInit();
2147  return this->self();
2148  }
2149 };
2150 
2155 class StandardDeviation : public DistBase<StandardDeviation, SampleStor>
2156 {
2157  public:
2161  StandardDeviation(Group *parent = nullptr)
2163  parent, nullptr, units::Unspecified::get(), nullptr)
2164  {
2165  SampleStor::Params *params = new SampleStor::Params;
2166  this->doInit();
2167  this->setParams(params);
2168  }
2169 
2170  StandardDeviation(Group *parent, const char *name,
2171  const char *desc = nullptr)
2173  parent, name, units::Unspecified::get(), desc)
2174  {
2175  SampleStor::Params *params = new SampleStor::Params;
2176  this->doInit();
2177  this->setParams(params);
2178  }
2179 
2180  StandardDeviation(Group *parent, const char *name, const units::Base *unit,
2181  const char *desc = nullptr)
2183  {
2184  SampleStor::Params *params = new SampleStor::Params;
2185  this->doInit();
2186  this->setParams(params);
2187  }
2188 };
2189 
2194 class AverageDeviation : public DistBase<AverageDeviation, AvgSampleStor>
2195 {
2196  public:
2200  AverageDeviation(Group *parent = nullptr)
2202  parent, nullptr, units::Unspecified::get(), nullptr)
2203  {
2205  this->doInit();
2206  this->setParams(params);
2207  }
2208 
2209  AverageDeviation(Group *parent, const char *name,
2210  const char *desc = nullptr)
2212  parent, name, units::Unspecified::get(), desc)
2213  {
2215  this->doInit();
2216  this->setParams(params);
2217  }
2218 
2219  AverageDeviation(Group *parent, const char *name, const units::Base *unit,
2220  const char *desc = nullptr)
2222  {
2224  this->doInit();
2225  this->setParams(params);
2226  }
2227 };
2228 
2233 class VectorDistribution : public VectorDistBase<VectorDistribution, DistStor>
2234 {
2235  public:
2236  VectorDistribution(Group *parent = nullptr)
2237  : VectorDistBase<VectorDistribution, DistStor>(parent, nullptr,
2238  units::Unspecified::get(), nullptr)
2239  {
2240  }
2241 
2242  VectorDistribution(Group *parent, const char *name,
2243  const char *desc = nullptr)
2245  parent, name, units::Unspecified::get(), desc)
2246  {
2247  }
2248 
2249  VectorDistribution(Group *parent, const char *name,
2250  const units::Base *unit,
2251  const char *desc = nullptr)
2253  desc)
2254  {
2255  }
2256 
2267  {
2268  DistStor::Params *params = new DistStor::Params(min, max, bkt);
2269  this->setParams(params);
2270  this->doInit(size);
2271  return this->self();
2272  }
2273 };
2274 
2280  : public VectorDistBase<VectorStandardDeviation, SampleStor>
2281 {
2282  public:
2283  VectorStandardDeviation(Group *parent = nullptr)
2285  units::Unspecified::get(), nullptr)
2286  {
2287  }
2288 
2289  VectorStandardDeviation(Group *parent, const char *name,
2290  const char *desc = nullptr)
2292  units::Unspecified::get(), desc)
2293  {
2294  }
2295 
2296  VectorStandardDeviation(Group *parent, const char *name,
2297  const units::Base *unit,
2298  const char *desc = nullptr)
2300  unit, desc)
2301  {
2302  }
2303 
2311  {
2312  SampleStor::Params *params = new SampleStor::Params;
2313  this->doInit(size);
2314  this->setParams(params);
2315  return this->self();
2316  }
2317 };
2318 
2324  : public VectorDistBase<VectorAverageDeviation, AvgSampleStor>
2325 {
2326  public:
2327  VectorAverageDeviation(Group *parent = nullptr)
2329  nullptr, units::Unspecified::get(), nullptr)
2330  {
2331  }
2332 
2333  VectorAverageDeviation(Group *parent, const char *name,
2334  const char *desc = nullptr)
2336  units::Unspecified::get(), desc)
2337  {
2338  }
2339 
2340  VectorAverageDeviation(Group *parent, const char *name,
2341  const units::Base *unit,
2342  const char *desc = nullptr)
2344  unit, desc)
2345  {
2346  }
2347 
2355  {
2357  this->doInit(size);
2358  this->setParams(params);
2359  return this->self();
2360  }
2361 };
2362 
2363 template <class Stat>
2364 class FormulaInfoProxy : public InfoProxy<Stat, FormulaInfo>
2365 {
2366  protected:
2367  mutable VResult vec;
2368  mutable VCounter cvec;
2369 
2370  public:
2371  FormulaInfoProxy(Stat &stat) : InfoProxy<Stat, FormulaInfo>(stat) {}
2372 
2373  size_type size() const { return this->s.size(); }
2374 
2375  const VResult &
2376  result() const
2377  {
2378  this->s.result(vec);
2379  return vec;
2380  }
2381  Result total() const { return this->s.total(); }
2382  VCounter &value() const { return cvec; }
2383 
2384  std::string str() const { return this->s.str(); }
2385 };
2386 
2387 template <class Stat>
2388 class SparseHistInfoProxy : public InfoProxy<Stat, SparseHistInfo>
2389 {
2390  public:
2391  SparseHistInfoProxy(Stat &stat) : InfoProxy<Stat, SparseHistInfo>(stat) {}
2392 };
2393 
2398 template <class Derived, class Stor>
2399 class SparseHistBase : public DataWrap<Derived, SparseHistInfoProxy>
2400 {
2401  public:
2403  typedef Stor Storage;
2404  typedef typename Stor::Params Params;
2405 
2406  protected:
2408  char storage[sizeof(Storage)];
2409 
2410  protected:
2415  Storage *
2417  {
2418  return reinterpret_cast<Storage *>(storage);
2419  }
2420 
2425  const Storage *
2426  data() const
2427  {
2428  return reinterpret_cast<const Storage *>(storage);
2429  }
2430 
2431  void
2433  {
2434  new (storage) Storage(this->info()->getStorageParams());
2435  this->setInit();
2436  }
2437 
2438  public:
2439  SparseHistBase(Group *parent, const char *name,
2440  const units::Base *unit,
2441  const char *desc)
2442  : DataWrap<Derived, SparseHistInfoProxy>(parent, name, unit, desc)
2443  {
2444  }
2445 
2452  template <typename U>
2453  void sample(const U &v, int n = 1) { data()->sample(v, n); }
2454 
2459  size_type size() const { return data()->size(); }
2464  bool zero() const { return data()->zero(); }
2465 
2466  void
2468  {
2469  Info *info = this->info();
2470  data()->prepare(info->getStorageParams(), info->data);
2471  }
2472 
2476  void
2478  {
2479  data()->reset(this->info()->getStorageParams());
2480  }
2481 };
2482 
2483 class SparseHistogram : public SparseHistBase<SparseHistogram, SparseHistStor>
2484 {
2485  public:
2486  SparseHistogram(Group *parent = nullptr)
2487  : SparseHistBase<SparseHistogram, SparseHistStor>(parent, nullptr,
2488  units::Unspecified::get(), nullptr)
2489  {
2490  }
2491 
2492  SparseHistogram(Group *parent, const char *name,
2493  const char *desc = nullptr)
2495  units::Unspecified::get(), desc)
2496  {
2497  }
2498 
2499  SparseHistogram(Group *parent, const char *name, const units::Base *unit,
2500  const char *desc = nullptr)
2502  desc)
2503  {
2504  }
2505 
2511  SparseHistogram &
2513  {
2515  this->setParams(params);
2516  this->doInit();
2517  return this->self();
2518  }
2519 };
2520 
2521 class Temp;
2527 class Formula : public DataWrapVec<Formula, FormulaInfoProxy>
2528 {
2529  protected:
2532  friend class Temp;
2533 
2534  public:
2538  Formula(Group *parent = nullptr, const char *name = nullptr,
2539  const char *desc = nullptr);
2540 
2541  Formula(Group *parent, const char *name, const units::Base *unit,
2542  const char *desc = nullptr);
2543 
2544  Formula(Group *parent, const char *name, const char *desc,
2545  const Temp &r);
2546 
2547  Formula(Group *parent, const char *name, const units::Base *unit,
2548  const char *desc, const Temp &r);
2549 
2555  const Formula &operator=(const Temp &r);
2556 
2557  template<typename T>
2558  const Formula &operator=(const T &v)
2559  {
2560  *this = Temp(v);
2561  return *this;
2562  }
2563 
2569  const Formula &operator+=(Temp r);
2570 
2576  const Formula &operator/=(Temp r);
2577 
2585  void result(VResult &vec) const;
2586 
2597  Result total() const;
2598 
2602  size_type size() const;
2603 
2604  void prepare() { }
2605 
2609  void reset();
2610 
2614  bool zero() const;
2615 
2616  std::string str() const;
2617 };
2618 
2619 class FormulaNode : public Node
2620 {
2621  private:
2623  mutable VResult vec;
2624 
2625  public:
2627 
2628  size_type size() const { return formula.size(); }
2629  const VResult &result() const { formula.result(vec); return vec; }
2630  Result total() const { return formula.total(); }
2631 
2632  std::string str() const { return formula.str(); }
2633 };
2634 
2638 class Temp
2639 {
2640  protected:
2645 
2646  public:
2651  Temp(const NodePtr &n) : node(n) { }
2652 
2653  Temp(NodePtr &&n) : node(std::move(n)) { }
2654 
2659  operator NodePtr&() { return node; }
2660 
2664  NodePtr getNodePtr() const { return node; }
2665 
2666  public:
2671  Temp(const Scalar &s)
2672  : node(new ScalarStatNode(s.info()))
2673  { }
2674 
2679  Temp(const Value &s)
2680  : node(new ScalarStatNode(s.info()))
2681  { }
2682 
2687  Temp(const Average &s)
2688  : node(new ScalarStatNode(s.info()))
2689  { }
2690 
2695  Temp(const Vector &s)
2696  : node(new VectorStatNode(s.info()))
2697  { }
2698 
2700  : node(new VectorStatNode(s.info()))
2701  { }
2702 
2706  Temp(const Formula &f)
2707  : node(new FormulaNode(f))
2708  { }
2709 
2714  template <class Stat>
2716  : node(new ScalarProxyNode<Stat>(p))
2717  { }
2718 
2723  Temp(signed char value)
2724  : node(new ConstNode<signed char>(value))
2725  { }
2726 
2731  Temp(unsigned char value)
2732  : node(new ConstNode<unsigned char>(value))
2733  { }
2734 
2739  Temp(signed short value)
2740  : node(new ConstNode<signed short>(value))
2741  { }
2742 
2747  Temp(unsigned short value)
2748  : node(new ConstNode<unsigned short>(value))
2749  { }
2750 
2755  Temp(signed int value)
2756  : node(new ConstNode<signed int>(value))
2757  { }
2758 
2763  Temp(unsigned int value)
2764  : node(new ConstNode<unsigned int>(value))
2765  { }
2766 
2771  Temp(signed long value)
2772  : node(new ConstNode<signed long>(value))
2773  { }
2774 
2779  Temp(unsigned long value)
2780  : node(new ConstNode<unsigned long>(value))
2781  { }
2782 
2787  Temp(signed long long value)
2788  : node(new ConstNode<signed long long>(value))
2789  { }
2790 
2795  Temp(unsigned long long value)
2796  : node(new ConstNode<unsigned long long>(value))
2797  { }
2798 
2803  Temp(float value)
2804  : node(new ConstNode<float>(value))
2805  { }
2806 
2811  Temp(double value)
2812  : node(new ConstNode<double>(value))
2813  { }
2814 };
2815 
2816 
2821 inline Temp
2823 {
2824  return Temp(std::make_shared<BinaryNode<std::plus<Result> > >(l, r));
2825 }
2826 
2827 inline Temp
2829 {
2830  return Temp(std::make_shared<BinaryNode<std::minus<Result> > >(l, r));
2831 }
2832 
2833 inline Temp
2835 {
2836  return Temp(std::make_shared<BinaryNode<std::multiplies<Result> > >(l, r));
2837 }
2838 
2839 inline Temp
2841 {
2842  return Temp(std::make_shared<BinaryNode<std::divides<Result> > >(l, r));
2843 }
2844 
2845 inline Temp
2847 {
2848  return Temp(std::make_shared<UnaryNode<std::negate<Result> > >(l));
2849 }
2850 
2851 template <typename T>
2852 inline Temp
2854 {
2855  return Temp(std::make_shared<ConstNode<T> >(val));
2856 }
2857 
2858 template <typename T>
2859 inline Temp
2861 {
2862  return Temp(std::make_shared<ConstVectorNode<T> >(val));
2863 }
2864 
2865 inline Temp
2867 {
2868  return Temp(std::make_shared<SumNode<std::plus<Result> > >(val));
2869 }
2870 
2872 void dump();
2873 void reset();
2874 void enable();
2875 bool enabled();
2876 const Info* resolve(const std::string &name);
2877 
2883 typedef void (*Handler)();
2884 
2885 void registerHandlers(Handler reset_handler, Handler dump_handler);
2886 
2891 void registerResetCallback(const std::function<void()> &callback);
2892 
2897 void registerDumpCallback(const std::function<void()> &callback);
2898 
2902 void processResetQueue();
2903 
2907 void processDumpQueue();
2908 
2910 
2911 typedef std::map<const void *, Info *> MapType;
2912 MapType &statsMap();
2913 
2914 } // namespace statistics
2915 
2916 void debugDumpStats();
2917 
2918 } // namespace gem5
2919 
2920 #endif // __BASE_STATISTICS_HH__
gem5::statistics::ValueBase::zero
bool zero() const
Definition: statistics.hh:776
gem5::statistics::ProxyInfo::check
bool check() const
Check that this stat has been set up properly and is ready for use.
Definition: statistics.hh:636
gem5::statistics::OpString< std::negate< Result > >::str
static std::string str()
Definition: statistics.hh:1706
gem5::statistics::Scalar
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:1918
gem5::statistics::DistInfoProxy
Definition: statistics.hh:159
gem5::statistics::DistProxy
Definition: statistics.hh:1355
gem5::statistics::DistBase
Implementation of a distribution stat.
Definition: statistics.hh:1265
gem5::statistics::BinaryNode::result
const VResult & result() const override
Return the result vector of this subtree.
Definition: statistics.hh:1766
gem5::statistics::SampleStor::Params
Definition: storage.hh:571
gem5::statistics::ScalarProxy::operator++
void operator++(int)
Increment the stat by 1.
Definition: statistics.hh:860
gem5::statistics::DistStor
Templatized storage and interface for a distribution stat.
Definition: storage.hh:233
gem5::statistics::Temp::Temp
Temp(unsigned long long value)
Create a ConstNode.
Definition: statistics.hh:2795
gem5::statistics::SparseHistInfoProxy
Definition: statistics.hh:2388
gem5::statistics::Vector2dBase::check
bool check() const
Definition: statistics.hh:1248
gem5::statistics::DataWrapVec2d::ysubname
Derived & ysubname(off_type index, const std::string &subname)
Definition: statistics.hh:487
gem5::statistics::DataWrap::DataWrap
DataWrap()=delete
gem5::statistics::FormulaInfoProxy::vec
VResult vec
Definition: statistics.hh:2367
gem5::statistics::ScalarBase::operator+=
void operator+=(const U &v)
Increment the stat by the given value.
Definition: statistics.hh:599
gem5::statistics::SparseHistStor
Templatized storage and interface for a sparse histogram stat.
Definition: storage.hh:714
gem5::statistics::FormulaNode::result
const VResult & result() const
Return the result vector of this subtree.
Definition: statistics.hh:2629
gem5::statistics::Node::total
virtual Result total() const =0
Return the total of the result vector.
gem5::statistics::Formula::reset
void reset()
Formulas don't need to be reset.
Definition: statistics.cc:225
gem5::statistics::DistBase::Params
Stor::Params Params
Definition: statistics.hh:1270
types.hh
gem5::statistics::DistBase::add
void add(DistBase &d)
Add the argument distribution to the this distribution.
Definition: statistics.hh:1351
gem5::statistics::UnaryNode::str
std::string str() const
Definition: statistics.hh:1748
gem5::statistics::BinaryNode::vresult
VResult vresult
Definition: statistics.hh:1760
gem5::statistics::operator+
Temp operator+(Temp l, Temp r)
Definition: statistics.hh:2822
gem5::statistics::InfoAccess::reset
void reset()
Reset the stat to the default state.
Definition: statistics.hh:208
gem5::statistics::ScalarStatNode
Definition: statistics.hh:1541
gem5::statistics::VectorProxy::VectorProxy
VectorProxy(Stat &s, off_type o, size_type l)
Definition: statistics.hh:1101
gem5::statistics::SparseHistBase::data
const Storage * data() const
Retrieve a const pointer to the storage.
Definition: statistics.hh:2426
warn
#define warn(...)
Definition: logging.hh:245
gem5::statistics::DistInfo
Definition: info.hh:201
gem5::statistics::Histogram::Histogram
Histogram(Group *parent, const char *name, const units::Base *unit, const char *desc=nullptr)
Definition: statistics.hh:2130
gem5::statistics::AvgSampleStor
Templatized storage for distribution that calculates per tick mean and variance.
Definition: storage.hh:638
gem5::statistics::OpString< std::modulus< Result > >::str
static std::string str()
Definition: statistics.hh:1700
gem5::statistics::units::Base
The Base class is the parent class of all unit classes.
Definition: units.hh:122
gem5::statistics::Vector2dBase::y
size_type y
Definition: statistics.hh:1145
gem5::statistics::VectorDistInfo::data
std::vector< DistData > data
Definition: info.hh:211
gem5::statistics::VectorDistBase::Proxy
DistProxy< Derived > Proxy
Definition: statistics.hh:1364
gem5::statistics::FormulaNode::str
std::string str() const
Definition: statistics.hh:2632
gem5::statistics::Distribution
A simple distribution stat.
Definition: statistics.hh:2072
gem5::statistics::SparseHistogram::SparseHistogram
SparseHistogram(Group *parent=nullptr)
Definition: statistics.hh:2486
gem5::statistics::Result
double Result
All results are doubles.
Definition: types.hh:56
gem5::statistics::FormulaNode::size
size_type size() const
Return the number of nodes in the subtree starting at this node.
Definition: statistics.hh:2628
gem5::statistics::StandardDeviation::StandardDeviation
StandardDeviation(Group *parent, const char *name, const units::Base *unit, const char *desc=nullptr)
Definition: statistics.hh:2180
gem5::statistics::ValueProxy::value
Counter value() const
Definition: statistics.hh:652
gem5::statistics::ConstVectorNode::vresult
VResult vresult
Definition: statistics.hh:1641
gem5::statistics::SparseHistBase::storage
char storage[sizeof(Storage)]
The storage for this stat.
Definition: statistics.hh:2408
data
const char data[]
Definition: circlebuf.test.cc:48
gem5::statistics::SampleStor
Templatized storage and interface for a distribution that calculates mean and variance.
Definition: storage.hh:560
gem5::statistics::DistBase::doInit
void doInit()
Definition: statistics.hh:1298
gem5::statistics::ConstNode::size
size_type size() const
Return the number of nodes in the subtree starting at this node.
Definition: statistics.hh:1633
gem5::statistics::SparseHistBase::zero
bool zero() const
Return true if no samples have been added.
Definition: statistics.hh:2464
gem5::statistics::SparseHistBase::Params
Stor::Params Params
Definition: statistics.hh:2404
group.hh
gem5::statistics::Vector::Vector
Vector(Group *parent, const char *name, const units::Base *unit, const char *desc=nullptr)
Definition: statistics.hh:2009
gem5::statistics::sum
Temp sum(Temp val)
Definition: statistics.hh:2866
gem5::statistics::VectorDistBase::storage
std::vector< Storage * > storage
Definition: statistics.hh:1369
gem5::statistics::MethodProxy
A proxy similar to the FunctorProxy, but allows calling a method of a bound object,...
Definition: statistics.hh:696
gem5::statistics::UnaryNode
Definition: statistics.hh:1710
gem5::statistics::ConstNode
Definition: statistics.hh:1624
gem5::statistics::Formula::Temp
friend class Temp
Definition: statistics.hh:2532
gem5::statistics::VectorBase::total
Result total() const
Return a total of all entries in this vector.
Definition: statistics.hh:985
gem5::statistics::VectorInfo
Definition: info.hh:184
gem5::statistics::resolve
const Info * resolve(const std::string &name)
Definition: statistics.cc:313
gem5::MipsISA::index
Bitfield< 30, 0 > index
Definition: pra_constants.hh:47
gem5::statistics::ScalarProxyNode::vresult
VResult vresult
Definition: statistics.hh:1572
gem5::statistics::Vector2dBase::Vector2dBase
Vector2dBase(Group *parent, const char *name, const units::Base *unit, const char *desc)
Definition: statistics.hh:1153
warn_once
#define warn_once(...)
Definition: logging.hh:249
gem5::statistics::Vector2dBase::init
Derived & init(size_type _x, size_type _y)
Definition: statistics.hh:1168
gem5::statistics::AvgSampleStor::Params
Definition: storage.hh:647
gem5::statistics::InfoProxy
Definition: statistics.hh:99
gem5::statistics::DistBase::GEM5_ALIGNED
GEM5_ALIGNED(8) char storage[sizeof(Storage)]
The storage for this stat.
gem5::statistics::VectorAverageDeviation::VectorAverageDeviation
VectorAverageDeviation(Group *parent, const char *name, const units::Base *unit, const char *desc=nullptr)
Definition: statistics.hh:2340
gem5::statistics::OpString< std::minus< Result > >::str
static std::string str()
Definition: statistics.hh:1682
gem5::statistics::ValueProxy::ValueProxy
ValueProxy(T &val)
Definition: statistics.hh:651
gem5::statistics::StandardDeviation::StandardDeviation
StandardDeviation(Group *parent, const char *name, const char *desc=nullptr)
Definition: statistics.hh:2170
gem5::statistics::Temp::Temp
Temp(const NodePtr &n)
Copy the given pointer to this class.
Definition: statistics.hh:2651
gem5::statistics::FormulaInfoProxy::size
size_type size() const
Definition: statistics.hh:2373
gem5::statistics::ScalarBase::reset
void reset()
Definition: statistics.hh:627
gem5::statistics::Temp::Temp
Temp(const Scalar &s)
Create a new ScalarStatNode.
Definition: statistics.hh:2671
gem5::statistics::VectorStatNode::total
Result total() const
Return the total of the result vector.
Definition: statistics.hh:1616
gem5::statistics::InfoAccess::_info
Info * _info
Definition: statistics.hh:186
gem5::ArmISA::f
Bitfield< 6 > f
Definition: misc_types.hh:67
gem5::statistics::VectorDistInfoProxy::VectorDistInfoProxy
VectorDistInfoProxy(Stat &stat)
Definition: statistics.hh:169
gem5::statistics::ConstVectorNode::ConstVectorNode
ConstVectorNode(const T &s)
Definition: statistics.hh:1644
gem5::statistics::ScalarBase::result
Result result() const
Definition: statistics.hh:621
gem5::statistics::Temp::Temp
Temp(double value)
Create a ConstNode.
Definition: statistics.hh:2811
gem5::statistics::InfoProxy::prepare
void prepare()
Definition: statistics.hh:108
gem5::statistics::VectorInfo::result
virtual const VResult & result() const =0
gem5::statistics::ProxyInfo::zero
bool zero() const
Definition: statistics.hh:639
gem5::statistics::BinaryNode::r
NodePtr r
Definition: statistics.hh:1759
gem5::statistics::VectorStandardDeviation::VectorStandardDeviation
VectorStandardDeviation(Group *parent, const char *name, const units::Base *unit, const char *desc=nullptr)
Definition: statistics.hh:2296
gem5::statistics::SparseHistBase::doInit
void doInit()
Definition: statistics.hh:2432
gem5::statistics::AverageDeviation::AverageDeviation
AverageDeviation(Group *parent=nullptr)
Construct and initialize this distribution.
Definition: statistics.hh:2200
gem5::statistics::DistProxy::size
size_type size() const
Definition: statistics.hh:1484
sc_dt::to_string
const std::string to_string(sc_enc enc)
Definition: sc_fxdefs.cc:91
gem5::statistics::VectorBase::data
const Storage * data(off_type index) const
Retrieve a const pointer to the storage.
Definition: statistics.hh:947
gem5::statistics::VectorStatNode::data
const VectorInfo * data
Definition: statistics.hh:1611
gem5::statistics::Temp
Helper class to construct formula node trees.
Definition: statistics.hh:2638
gem5::statistics::ScalarProxy::value
Counter value() const
Return the current value of this stat as its base type.
Definition: statistics.hh:807
gem5::statistics::ValueBase::size
size_type size() const
Definition: statistics.hh:773
gem5::statistics::BinaryNode::l
NodePtr l
Definition: statistics.hh:1758
gem5::statistics::Temp::Temp
Temp(const Vector &s)
Create a new VectorStatNode.
Definition: statistics.hh:2695
gem5::statistics::AverageDeviation::AverageDeviation
AverageDeviation(Group *parent, const char *name, const char *desc=nullptr)
Definition: statistics.hh:2209
gem5::statistics::DistProxy::data
Stat::Storage * data()
Definition: statistics.hh:1455
gem5::X86ISA::val
Bitfield< 63 > val
Definition: misc.hh:775
gem5::statistics::ScalarBase::total
Result total() const
Definition: statistics.hh:623
gem5::statistics::ConstNode::str
std::string str() const
Definition: statistics.hh:1634
gem5::ArmISA::a
Bitfield< 8 > a
Definition: misc_types.hh:65
gem5::statistics::DataWrapVec::subname
Derived & subname(off_type index, const std::string &name)
Set the subfield name for the given index, and marks this stat to print at the end of simulation.
Definition: statistics.hh:399
gem5::statistics::Average
A stat that calculates the per tick average of a value.
Definition: statistics.hh:1946
gem5::statistics::InfoAccess::InfoAccess
InfoAccess()
Definition: statistics.hh:202
cast.hh
gem5::statistics::StandardDeviation
Calculates the mean and variance of all the samples.
Definition: statistics.hh:2155
gem5::statistics::Vector2d
A 2-Dimensional vecto of scalar stats.
Definition: statistics.hh:2046
gem5::statistics::Temp::Temp
Temp(signed long long value)
Create a ConstNode.
Definition: statistics.hh:2787
gem5::statistics::ScalarProxy::operator++
void operator++()
Increment the stat by 1.
Definition: statistics.hh:852
gem5::statistics::VectorStandardDeviation::init
VectorStandardDeviation & init(size_type size)
Initialize storage for this distribution.
Definition: statistics.hh:2310
gem5::statistics::Vector2dBase::reset
void reset()
Reset stat value to default.
Definition: statistics.hh:1239
gem5::statistics::Vector2dInfo::y_subnames
std::vector< std::string > y_subnames
Definition: info.hh:232
gem5::statistics::UnaryNode::UnaryNode
UnaryNode(NodePtr &p)
Definition: statistics.hh:1717
gem5::statistics::VectorInfoProxy::cvec
VCounter cvec
Definition: statistics.hh:133
gem5::statistics::Vector
A vector of scalar stats.
Definition: statistics.hh:1994
gem5::statistics::ScalarInfo
Definition: info.hh:176
gem5::statistics::ScalarStatNode::result
const VResult & result() const
Return the result vector of this subtree.
Definition: statistics.hh:1551
gem5::statistics::VectorDistBase::Info
VectorDistInfoProxy< Derived > Info
Definition: statistics.hh:1361
gem5::statistics::ScalarProxyNode::result
const VResult & result() const
Return the result vector of this subtree.
Definition: statistics.hh:1580
gem5::statistics::VectorDistBase::~VectorDistBase
~VectorDistBase()
Definition: statistics.hh:1402
gem5::statistics::Formula
A formula for statistics that is calculated when printed.
Definition: statistics.hh:2527
gem5::statistics::Distribution::Distribution
Distribution(Group *parent=nullptr)
Definition: statistics.hh:2075
std::vector< Counter >
gem5::statistics::Temp::Temp
Temp(const Value &s)
Create a new ScalarStatNode.
Definition: statistics.hh:2679
gem5::statistics::DistBase::data
Storage * data()
Retrieve the storage.
Definition: statistics.hh:1282
gem5::statistics::DistBase::data
const Storage * data() const
Retrieve a const pointer to the storage.
Definition: statistics.hh:1292
gem5::statistics::ScalarStatNode::vresult
VResult vresult
Definition: statistics.hh:1545
gem5::csprintf
std::string csprintf(const char *format, const Args &...args)
Definition: cprintf.hh:161
gem5::statistics::Temp::Temp
Temp(unsigned short value)
Create a ConstNode.
Definition: statistics.hh:2747
gem5::statistics::ScalarBase
Implementation of a scalar stat.
Definition: statistics.hh:517
gem5::statistics::Vector2dBase::prepare
void prepare()
Definition: statistics.hh:1222
gem5::statistics::ValueBase::method
Derived & method(T *obj, V(T::*method)() const)
Extended functor that calls the specified method of the provided object.
Definition: statistics.hh:763
gem5::statistics::VectorDistBase::prepare
void prepare()
Definition: statistics.hh:1431
gem5::statistics::DataWrap
Definition: statistics.hh:225
gem5::statistics::FormulaNode::total
Result total() const
Return the total of the result vector.
Definition: statistics.hh:2630
gem5::statistics::DataWrapVec2d::DataWrapVec2d
DataWrapVec2d(Group *parent, const char *name, const units::Base *unit, const char *desc)
Definition: statistics.hh:464
gem5::statistics::units::Unspecified::get
static Unspecified * get()
Definition: units.hh:329
gem5::statistics::ScalarProxyNode::proxy
const ScalarProxy< Stat > proxy
Definition: statistics.hh:1571
gem5::statistics::ScalarProxy::operator-=
void operator-=(const U &v)
Decrement the stat by the given value.
Definition: statistics.hh:895
gem5::statistics::ScalarProxy::size
size_type size() const
Return the number of elements, always 1 for a scalar.
Definition: statistics.hh:904
gem5::statistics::ValueBase::total
Result total() const
Definition: statistics.hh:772
gem5::statistics::Temp::Temp
Temp(unsigned long value)
Create a ConstNode.
Definition: statistics.hh:2779
gem5::ArmISA::i
Bitfield< 7 > i
Definition: misc_types.hh:66
gem5::statistics::Node::str
virtual std::string str() const =0
gem5::statistics::Formula::operator/=
const Formula & operator/=(Temp r)
Divide the existing tree by the given one.
Definition: statistics.cc:192
gem5::statistics::DistProxy::index
off_type index
Definition: statistics.hh:1452
gem5::statistics::ScalarProxyNode::ScalarProxyNode
ScalarProxyNode(const ScalarProxy< Stat > &p)
Definition: statistics.hh:1575
gem5::statistics::Temp::Temp
Temp(const ScalarProxy< Stat > &p)
Create a new ScalarProxyNode.
Definition: statistics.hh:2715
gem5::statistics::FunctorProxy< T, typename std::enable_if_t< std::is_constructible< std::function< Result()>, const T & >::value > >::functor
std::function< Result()> functor
Definition: statistics.hh:682
gem5::statistics::Formula::result
void result(VResult &vec) const
Return the result of the Fomula in a vector.
Definition: statistics.cc:203
gem5::statistics::FunctorProxy< T, typename std::enable_if_t< std::is_constructible< std::function< Result()>, const T & >::value > >::total
Result total() const
Definition: statistics.hh:688
gem5::statistics::VectorAverageDeviation
This is a vector of AverageDeviation stats.
Definition: statistics.hh:2323
gem5::statistics::FunctorProxy< T, typename std::enable_if_t< std::is_constructible< std::function< Result()>, const T & >::value > >::result
Result result() const
Definition: statistics.hh:687
gem5::statistics::VectorStatNode::VectorStatNode
VectorStatNode(const VectorInfo *d)
Definition: statistics.hh:1614
gem5::statistics::InfoProxy::s
Stat & s
Definition: statistics.hh:102
gem5::statistics::HistStor::Params
The parameters for a distribution stat.
Definition: storage.hh:460
gem5::statistics::SumNode::str
std::string str() const
Definition: statistics.hh:1896
gem5::statistics::SparseHistBase::size
size_type size() const
Return the number of entries in this stat.
Definition: statistics.hh:2459
gem5::statistics::VectorDistInfoProxy
Definition: statistics.hh:166
gem5::statistics::DistBase::sample
void sample(const U &v, int n=1)
Add a value to the distribtion n times.
Definition: statistics.hh:1319
gem5::statistics::ValueProxy
Definition: statistics.hh:645
gem5::statistics::FormulaNode::formula
const Formula & formula
Definition: statistics.hh:2622
gem5::statistics::SumNode::size
size_type size() const
Return the number of nodes in the subtree starting at this node.
Definition: statistics.hh:1893
gem5::statistics::UnaryNode::total
Result total() const
Return the total of the result vector.
Definition: statistics.hh:1736
gem5::statistics::Temp::Temp
Temp(float value)
Create a ConstNode.
Definition: statistics.hh:2803
gem5::statistics::VectorBase
Implementation of a vector of stats.
Definition: statistics.hh:919
gem5::statistics::Temp::Temp
Temp(const Average &s)
Create a new ScalarStatNode.
Definition: statistics.hh:2687
storage.hh
gem5::statistics::Vector2dBase::data
const Storage * data(off_type index) const
Definition: statistics.hh:1150
gem5::statistics::ProxyInfo::str
std::string str() const
Definition: statistics.hh:634
gem5::statistics::VectorAverageDeviation::VectorAverageDeviation
VectorAverageDeviation(Group *parent, const char *name, const char *desc=nullptr)
Definition: statistics.hh:2333
gem5::statistics::constant
Temp constant(T val)
Definition: statistics.hh:2853
gem5::statistics::ScalarInfo::result
virtual Result result() const =0
gem5::statistics::registerHandlers
void registerHandlers(Handler reset_handler, Handler dump_handler)
Definition: statistics.cc:250
gem5::statistics::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:324
gem5::statistics::VectorBase::value
void value(VCounter &vec) const
Definition: statistics.hh:961
gem5::statistics::FunctorProxy::total
Result total() const
Definition: statistics.hh:667
gem5::statistics::Vector2dInfoProxy
Definition: statistics.hh:175
str.hh
gem5::statistics::ScalarStatNode::data
const ScalarInfo * data
Definition: statistics.hh:1544
gem5::statistics::Average::Average
Average(Group *parent, const char *name, const units::Base *unit, const char *desc=nullptr)
Definition: statistics.hh:1963
gem5::statistics::Histogram::Histogram
Histogram(Group *parent=nullptr)
Definition: statistics.hh:2117
gem5::statistics::DistBase::size
size_type size() const
Return the number of entries in this stat.
Definition: statistics.hh:1325
gem5::statistics::ProxyInfo::size
size_type size() const
Definition: statistics.hh:635
gem5::statistics::Scalar::Scalar
Scalar(Group *parent=nullptr)
Definition: statistics.hh:1923
gem5::statistics::VectorStatNode::result
const VResult & result() const
Return the result vector of this subtree.
Definition: statistics.hh:1615
gem5::statistics::Node::~Node
virtual ~Node()
Definition: statistics.hh:1535
gem5::statistics::FunctorProxy::FunctorProxy
FunctorProxy(T &func)
Definition: statistics.hh:664
gem5::statistics::ScalarProxy::stat
Stat & stat
Pointer to the parent Vector.
Definition: statistics.hh:797
gem5::statistics::Histogram
A simple histogram stat.
Definition: statistics.hh:2114
gem5::statistics::operator/
Temp operator/(Temp l, Temp r)
Definition: statistics.hh:2840
gem5::auxv::Base
@ Base
Definition: aux_vector.hh:76
info.hh
gem5::statistics::ScalarProxy::ScalarProxy
ScalarProxy(const ScalarProxy &sp)
Create a copy of the provided ScalarProxy.
Definition: statistics.hh:829
gem5::statistics::FunctorProxy::value
Counter value() const
Definition: statistics.hh:665
gem5::statistics::Vector2dBase::Params
Stor::Params Params
Definition: statistics.hh:1136
gem5::statistics::BinaryNode::size
size_type size() const override
Return the number of nodes in the subtree starting at this node.
Definition: statistics.hh:1830
gem5::statistics::DataWrap::operator=
DataWrap & operator=(const DataWrap &)=delete
gem5::statistics::ScalarBase::Storage
Stor Storage
Definition: statistics.hh:520
gem5::statistics::Node
Base class for formula statistic node.
Definition: statistics.hh:1511
gem5::Flags< FlagsType >
gem5::statistics::DataWrap::info
Info * info()
Definition: statistics.hh:235
gem5::statistics::OpString< std::plus< Result > >::str
static std::string str()
Definition: statistics.hh:1676
gem5::statistics::ScalarBase::operator--
void operator--(int)
Decrement the stat by 1.
Definition: statistics.hh:583
gem5::statistics::Vector2dBase::Proxy
VectorProxy< Derived > Proxy
Definition: statistics.hh:1137
gem5::statistics::DistBase::Storage
Stor Storage
Definition: statistics.hh:1269
gem5::statistics::VectorStatNode::str
std::string str() const
Definition: statistics.hh:1620
gem5::statistics::ScalarInfo::total
virtual Result total() const =0
gem5::statistics::InfoAccess::info
Info * info()
Grab the information class for this statistic.
Definition: statistics.cc:112
gem5::statistics::VectorDistribution::init
VectorDistribution & init(size_type size, Counter min, Counter max, Counter bkt)
Initialize storage and parameters for this distribution.
Definition: statistics.hh:2266
gem5::statistics::ScalarProxy::operator--
void operator--(int)
Decrement the stat by 1.
Definition: statistics.hh:862
gem5::statistics::SparseHistogram::init
SparseHistogram & init(size_type size)
Set the parameters of this histogram.
Definition: statistics.hh:2512
gem5::statistics::AverageVector
A vector of Average stats.
Definition: statistics.hh:2020
gem5::statistics::SparseHistBase::Info
SparseHistInfoProxy< Derived > Info
Definition: statistics.hh:2402
gem5::statistics::off_type
unsigned int off_type
Definition: types.hh:61
gem5::statistics::Temp::Temp
Temp(unsigned int value)
Create a ConstNode.
Definition: statistics.hh:2763
gem5::ArmISA::b
Bitfield< 7 > b
Definition: misc_types.hh:381
gem5::statistics::Vector2dInfo::cvec
VCounter cvec
Local storage for the entry values, used for printing.
Definition: info.hh:238
gem5::statistics::Output
Definition: output.hh:65
gem5::statistics::VectorStandardDeviation
This is a vector of StandardDeviation stats.
Definition: statistics.hh:2279
gem5::statistics::ScalarBase::operator++
void operator++(int)
Increment the stat by 1.
Definition: statistics.hh:581
gem5::statistics::DataWrap::name
Derived & name(const std::string &name)
Set the name and marks this stat to print at the end of simulation.
Definition: statistics.hh:286
gem5::statistics::Distribution::init
Distribution & init(Counter min, Counter max, Counter bkt)
Set the parameters of this distribution.
Definition: statistics.hh:2101
gem5::statistics::DistProxy::data
const Stat::Storage * data() const
Definition: statistics.hh:1456
gem5::statistics::FunctorProxy::functor
T * functor
Definition: statistics.hh:661
gem5::statistics::Vector2dBase::size
size_type size() const
Definition: statistics.hh:1197
gem5::statistics::Vector2dInfoProxy::total
Result total() const
Definition: statistics.hh:180
gem5::statistics::Value::Value
Value(Group *parent=nullptr)
Definition: statistics.hh:1973
gem5::statistics::MethodProxy::value
Counter value() const
Definition: statistics.hh:705
gem5::statistics::DataWrapVec2d::Info
InfoProxyType< Derived > Info
Definition: statistics.hh:462
gem5::statistics::VectorProxy::result
const VResult & result() const
Definition: statistics.hh:1081
gem5::statistics::VectorBase::doInit
void doInit(size_type s)
Definition: statistics.hh:950
gem5::statistics::SparseHistInfo
Definition: info.hh:251
gem5::statistics::ScalarBase::GEM5_ALIGNED
GEM5_ALIGNED(8) char storage[sizeof(Storage)]
The storage of this stat.
gem5::statistics::VectorInfoProxy::rvec
VResult rvec
Definition: statistics.hh:134
gem5::statistics::VectorDistBase::doInit
void doInit(size_type s)
Definition: statistics.hh:1385
gem5::statistics::Vector2dBase::total
Result total() const
Return a total of all entries in this vector.
Definition: statistics.hh:1213
gem5::statistics::statsMap
MapType & statsMap()
Definition: statistics.cc:69
gem5::statistics::VectorBase::Proxy
ScalarProxy< Derived > Proxy
Proxy type.
Definition: statistics.hh:926
gem5::statistics::Vector2dBase::data
Storage * data(off_type index)
Definition: statistics.hh:1149
gem5::statistics::enable
void enable()
Definition: statistics.cc:286
gem5::statistics::ScalarBase::operator-=
void operator-=(const U &v)
Decrement the stat by the given value.
Definition: statistics.hh:607
gem5::statistics::ValueBase::prepare
void prepare()
Definition: statistics.hh:778
gem5::statistics::DataWrap::unit
Derived & unit(const units::Base *_unit)
Set the unit of the stat.
Definition: statistics.hh:318
gem5::statistics::ValueBase
Definition: statistics.hh:711
gem5::statistics::ConstVectorNode
Definition: statistics.hh:1638
gem5::statistics::DataWrapVec::Info
InfoProxyType< Derived > Info
Definition: statistics.hh:380
gem5::ArmISA::d
Bitfield< 9 > d
Definition: misc_types.hh:63
gem5::statistics::VectorProxy
Definition: statistics.hh:1055
gem5::statistics::ValueBase::result
Result result() const
Definition: statistics.hh:771
gem5::statistics::UnaryNode::size
size_type size() const
Return the number of nodes in the subtree starting at this node.
Definition: statistics.hh:1745
gem5::statistics::VectorBase::result
void result(VResult &vec) const
Copy the values to a local vector and return a reference to it.
Definition: statistics.hh:973
gem5::statistics::VectorDistBase::Storage
Stor Storage
Definition: statistics.hh:1362
gem5::statistics::FormulaInfoProxy
Definition: statistics.hh:2364
gem5::statistics::ValueBase::check
bool check() const
Definition: statistics.hh:777
gem5::statistics::DataWrapVec::subdesc
Derived & subdesc(off_type index, const std::string &desc)
Set the subfield description for the given index and marks this stat to print at the end of simulatio...
Definition: statistics.hh:423
gem5::statistics::VectorProxy::operator[]
ScalarProxy< Stat > operator[](off_type index)
Definition: statistics.hh:1121
gem5::MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:326
gem5::statistics::Vector2d::Vector2d
Vector2d(Group *parent, const char *name, const units::Base *unit, const char *desc=nullptr)
Definition: statistics.hh:2061
gem5::statistics::ScalarProxy::operator=
const ScalarProxy & operator=(const ScalarProxy &sp)
Set this proxy equal to the provided one.
Definition: statistics.hh:839
gem5::statistics::SumNode::total
Result total() const
Return the total of the result vector.
Definition: statistics.hh:1878
gem5::statistics::ConstVectorNode::size
size_type size() const
Return the number of nodes in the subtree starting at this node.
Definition: statistics.hh:1657
gem5::statistics::DistProxy::reset
void reset()
Proxy has no state.
Definition: statistics.hh:1498
gem5::statistics::OpString
Definition: statistics.hh:1671
gem5::statistics::InfoAccess::zero
bool zero() const
Definition: statistics.hh:214
gem5::statistics::Temp::Temp
Temp(unsigned char value)
Create a ConstNode.
Definition: statistics.hh:2731
gem5::ArmISA::v
Bitfield< 28 > v
Definition: misc_types.hh:54
gem5::statistics::ScalarBase::Params
Stor::Params Params
Definition: statistics.hh:521
gem5::statistics::OpString< std::divides< Result > >::str
static std::string str()
Definition: statistics.hh:1694
gem5::statistics::Vector2dBase::zero
bool zero() const
Definition: statistics.hh:1203
gem5::ArmISA::s
Bitfield< 4 > s
Definition: misc_types.hh:561
gem5::statistics::SparseHistogram::SparseHistogram
SparseHistogram(Group *parent, const char *name, const char *desc=nullptr)
Definition: statistics.hh:2492
gem5::statistics::reset
void reset()
Definition: statistics.cc:304
gem5::statistics::dump
void dump()
Dump all statistics data to the registered outputs.
Definition: statistics.cc:295
gem5::statistics::ValueProxy::result
Result result() const
Definition: statistics.hh:653
gem5::statistics::Value::Value
Value(Group *parent, const char *name, const char *desc=nullptr)
Definition: statistics.hh:1978
gem5::statistics::display
const FlagsType display
Print this stat.
Definition: info.hh:58
gem5::statistics::DistInfo::data
DistData data
Local storage for the entry values, used for printing.
Definition: info.hh:205
gem5::statistics::ConstVectorNode::result
const VResult & result() const
Return the result vector of this subtree.
Definition: statistics.hh:1645
gem5::statistics::SparseHistBase::prepare
void prepare()
Definition: statistics.hh:2467
gem5::statistics::Temp::Temp
Temp(signed long value)
Create a ConstNode.
Definition: statistics.hh:2771
gem5::statistics::VectorStatNode
Definition: statistics.hh:1608
gem5::statistics::ValueProxy::scalar
T * scalar
Definition: statistics.hh:648
gem5::statistics::DistBase::DistBase
DistBase(Group *parent, const char *name, const units::Base *unit, const char *desc)
Definition: statistics.hh:1305
gem5::statistics::ScalarInfoProxy::total
Result total() const
Definition: statistics.hh:126
gem5::statistics::VectorDistribution::VectorDistribution
VectorDistribution(Group *parent, const char *name, const units::Base *unit, const char *desc=nullptr)
Definition: statistics.hh:2249
gem5::statistics::VectorBase::operator[]
Proxy operator[](off_type index)
Return a reference (ScalarProxy) to the stat at the given index.
Definition: statistics.hh:1047
gem5::statistics::VectorDistBase::size
size_type size() const
Definition: statistics.hh:1416
gem5::statistics::DistProxy::DistProxy
DistProxy(const DistProxy &sp)
Definition: statistics.hh:1463
gem5::statistics::ScalarBase::operator=
void operator=(const U &v)
Set the data value to the given value.
Definition: statistics.hh:591
gem5::statistics::DataWrapVec2d::ysubname
std::string ysubname(off_type i) const
Definition: statistics.hh:499
gem5::statistics::InfoAccess::setInit
void setInit()
Save Storage class parameters if any.
Definition: statistics.cc:106
gem5::MipsISA::l
Bitfield< 5 > l
Definition: pra_constants.hh:323
gem5::ArmISA::offset
Bitfield< 23, 0 > offset
Definition: types.hh:144
gem5::statistics::VectorStatNode::size
size_type size() const
Return the number of nodes in the subtree starting at this node.
Definition: statistics.hh:1618
gem5::statistics::registerResetCallback
void registerResetCallback(const std::function< void()> &callback)
Register a callback that should be called whenever statistics are reset.
Definition: statistics.cc:272
gem5::statistics::Node::result
virtual const VResult & result() const =0
Return the result vector of this subtree.
gem5::statistics::ValueBase::str
std::string str() const
Definition: statistics.hh:775
gem5::statistics::ScalarProxy::ScalarProxy
ScalarProxy(Stat &s, off_type i)
Create and initialize this proxy, do not register it with the database.
Definition: statistics.hh:820
cprintf.hh
gem5::statistics::processDumpQueue
void processDumpQueue()
Process all the callbacks in the dump callbacks queue.
Definition: statistics.cc:266
gem5::statistics::ScalarBase::data
const Storage * data() const
Retrieve a const pointer to the storage.
Definition: statistics.hh:546
gem5::statistics::ValueBase::proxy
ProxyInfo * proxy
Definition: statistics.hh:714
gem5::statistics::ConstVectorNode::total
Result total() const
Return the total of the result vector.
Definition: statistics.hh:1648
gem5::statistics::DataWrap::setSeparator
Derived & setSeparator(const std::string &_sep)
Set the character(s) used between the name and vector number on vectors, dist, etc.
Definition: statistics.hh:302
compiler.hh
gem5::statistics::SumNode
Definition: statistics.hh:1852
gem5::statistics::ValueBase::functor
Derived & functor(const T &func)
Definition: statistics.hh:738
gem5::statistics::Temp::Temp
Temp(const AverageVector &s)
Definition: statistics.hh:2699
gem5::statistics::Vector2dBase
Definition: statistics.hh:1131
gem5::statistics::SparseHistBase::Storage
Stor Storage
Definition: statistics.hh:2403
gem5::statistics::DataWrapVec2d
Definition: statistics.hh:459
gem5::statistics::VectorProxy::operator=
const VectorProxy & operator=(const VectorProxy &sp)
Definition: statistics.hh:1112
gem5::statistics::VectorProxy::offset
off_type offset
Definition: statistics.hh:1059
gem5::X86ISA::delivery_mode::names
static const char *const names[NumModes]
Definition: intmessage.hh:70
gem5::statistics::InfoProxy::zero
bool zero() const
Definition: statistics.hh:115
gem5::statistics::ScalarInfoProxy::ScalarInfoProxy
ScalarInfoProxy(Stat &stat)
Definition: statistics.hh:122
gem5::statistics::ScalarProxy::operator--
void operator--()
Decrement the stat by 1.
Definition: statistics.hh:857
gem5::statistics::VectorProxy::stat
Stat & stat
Definition: statistics.hh:1058
gem5::statistics::FunctorProxy< T, typename std::enable_if_t< std::is_constructible< std::function< Result()>, const T & >::value > >::FunctorProxy
FunctorProxy(const T &func)
Definition: statistics.hh:685
gem5::statistics::Vector2dBase::operator[]
Proxy operator[](off_type index)
Definition: statistics.hh:1188
gem5::statistics::ScalarBase::zero
bool zero() const
Definition: statistics.hh:625
gem5::statistics::ProxyInfo::prepare
void prepare()
Prepare the stat for dumping.
Definition: statistics.hh:637
gem5::statistics::VectorDistBase::operator[]
Proxy operator[](off_type index)
Definition: statistics.hh:1409
gem5::statistics::DataWrap::precision
Derived & precision(int _precision)
Set the precision and marks this stat to print at the end of simulation.
Definition: statistics.hh:343
gem5::statistics::size_type
unsigned int size_type
Definition: types.hh:60
gem5::statistics::Formula::root
NodePtr root
The root of the tree which represents the Formula.
Definition: statistics.hh:2531
gem5::statistics::Temp::node
NodePtr node
Pointer to a Node object.
Definition: statistics.hh:2644
gem5::statistics::SparseHistBase::sample
void sample(const U &v, int n=1)
Add a value to the distribtion n times.
Definition: statistics.hh:2453
gem5::statistics::Output::visit
virtual void visit(const ScalarInfo &info)=0
gem5::statistics::FormulaInfoProxy::total
Result total() const
Definition: statistics.hh:2381
gem5::statistics::UnaryNode::result
const VResult & result() const
Return the result vector of this subtree.
Definition: statistics.hh:1720
gem5::debugDumpStats
void debugDumpStats()
Definition: statistics.cc:332
gem5::statistics::SparseHistInfoProxy::SparseHistInfoProxy
SparseHistInfoProxy(Stat &stat)
Definition: statistics.hh:2391
gem5::statistics::Scalar::Scalar
Scalar(Group *parent, const char *name, const char *desc=nullptr)
Definition: statistics.hh:1929
gem5::statistics::VectorInfo::total
virtual Result total() const =0
gem5::statistics::BinaryNode::str
std::string str() const override
Definition: statistics.hh:1845
gem5::statistics::InfoAccess
Definition: statistics.hh:183
gem5::statistics::Temp::Temp
Temp(const Formula &f)
Definition: statistics.hh:2706
gem5::statistics::VectorBase::VectorBase
VectorBase(Group *parent, const char *name, const units::Base *unit, const char *desc)
Definition: statistics.hh:1014
gem5::statistics::Average::Average
Average(Group *parent=nullptr)
Definition: statistics.hh:1951
gem5::statistics::FormulaInfoProxy::str
std::string str() const
Definition: statistics.hh:2384
gem5::statistics::DistProxy::operator=
const DistProxy & operator=(const DistProxy &sp)
Definition: statistics.hh:1468
gem5::statistics::SumNode::SumNode
SumNode(NodePtr &p)
Definition: statistics.hh:1859
gem5::statistics::DistBase::zero
bool zero() const
Return true if no samples have been added.
Definition: statistics.hh:1330
gem5::statistics::Histogram::init
Histogram & init(size_type size)
Set the parameters of this histogram.
Definition: statistics.hh:2142
gem5::GEM5_DEPRECATED_NAMESPACE
GEM5_DEPRECATED_NAMESPACE(GuestABI, guest_abi)
gem5::statistics::Distribution::Distribution
Distribution(Group *parent, const char *name, const units::Base *unit, const char *desc=nullptr)
Definition: statistics.hh:2087
gem5::statistics::VectorBase::~VectorBase
~VectorBase()
Definition: statistics.hh:1021
gem5::statistics::ScalarStatNode::size
size_type size() const
Return the number of nodes in the subtree starting at this node.
Definition: statistics.hh:1559
gem5::statistics::Vector2dInfo::y
size_type y
Definition: info.hh:235
name
const std::string & name()
Definition: trace.cc:49
gem5::statistics::VectorBase::zero
bool zero() const
Definition: statistics.hh:999
gem5::statistics::FormulaNode::FormulaNode
FormulaNode(const Formula &f)
Definition: statistics.hh:2626
gem5::statistics::FormulaNode
Definition: statistics.hh:2619
gem5::statistics::Temp::getNodePtr
NodePtr getNodePtr() const
Makde gcc < 4.6.3 happy and explicitly get the underlying node.
Definition: statistics.hh:2664
gem5::statistics::Handler
void(* Handler)()
Register reset and dump handlers.
Definition: statistics.hh:2883
gem5::statistics::ValueBase::functor
Derived & functor(T &func)
Definition: statistics.hh:747
gem5::statistics::ConstNode::ConstNode
ConstNode(T s)
Definition: statistics.hh:1630
gem5::statistics::Value::Value
Value(Group *parent, const char *name, const units::Base *unit, const char *desc=nullptr)
Definition: statistics.hh:1983
gem5::statistics::ScalarProxyNode::size
size_type size() const
Return the number of nodes in the subtree starting at this node.
Definition: statistics.hh:1593
gem5::statistics::MethodProxy::MethodPointer
V(T::* MethodPointer)() const
Definition: statistics.hh:700
gem5::statistics::VectorProxy::data
const Stat::Storage * data(off_type index) const
Definition: statistics.hh:1073
gem5::statistics::DataWrap::DataWrap
DataWrap(Group *parent, const char *name, const units::Base *unit, const char *desc)
Definition: statistics.hh:252
gem5::statistics::Vector2dBase::~Vector2dBase
~Vector2dBase()
Definition: statistics.hh:1160
gem5::statistics::DataWrapVec::DataWrapVec
DataWrapVec(Group *parent=nullptr, const char *name=nullptr, const units::Base *unit=units::Unspecified::get(), const char *desc=nullptr)
Definition: statistics.hh:382
gem5::statistics::enabled
bool enabled()
Definition: statistics.cc:280
gem5::statistics::VectorDistBase::zero
bool zero() const
Definition: statistics.hh:1422
gem5::statistics::statsList
std::list< Info * > & statsList()
Definition: statistics.cc:62
gem5::statistics::VectorDistBase
Definition: statistics.hh:1358
gem5::statistics::ScalarBase::doInit
void doInit()
Definition: statistics.hh:552
gem5::statistics::Scalar::Scalar
Scalar(Group *parent, const char *name, const units::Base *unit, const char *desc=nullptr)
Definition: statistics.hh:1935
gem5::statistics::VectorDistBase::data
const Storage * data(off_type index) const
Definition: statistics.hh:1379
gem5::statistics::VectorStandardDeviation::VectorStandardDeviation
VectorStandardDeviation(Group *parent, const char *name, const char *desc=nullptr)
Definition: statistics.hh:2289
gem5::statistics::ScalarStatNode::total
Result total() const
Return the total of the result vector.
Definition: statistics.hh:1557
gem5::statistics::Vector2dInfoProxy::Vector2dInfoProxy
Vector2dInfoProxy(Stat &stat)
Definition: statistics.hh:178
gem5::statistics::FunctorProxy< T, typename std::enable_if_t< std::is_constructible< std::function< Result()>, const T & >::value > >::value
Counter value() const
Definition: statistics.hh:686
gem5::statistics::Info::setName
void setName(const std::string &name, bool old_style=true)
Set the name of this statistic.
Definition: info.cc:128
gem5::statistics::BinaryNode::total
Result total() const override
Return the total of the result vector.
Definition: statistics.hh:1798
gem5::statistics::ScalarBase::data
Storage * data()
Retrieve the storage.
Definition: statistics.hh:534
gem5::statistics::AverageVector::AverageVector
AverageVector(Group *parent, const char *name, const char *desc=nullptr)
Definition: statistics.hh:2029
gem5::statistics::Vector::Vector
Vector(Group *parent=nullptr)
Definition: statistics.hh:1997
gem5::statistics::Formula::str
std::string str() const
Definition: statistics.cc:241
gem5::statistics::BinaryNode::BinaryNode
BinaryNode(NodePtr &a, NodePtr &b)
Definition: statistics.hh:1763
gem5::statistics::ConstNode::total
Result total() const
Return the total of the result vector.
Definition: statistics.hh:1632
gem5::statistics::SumNode::vresult
VResult vresult
Definition: statistics.hh:1856
gem5::statistics::ValueBase::ValueBase
ValueBase(Group *parent, const char *name, const units::Base *unit, const char *desc)
Definition: statistics.hh:717
gem5::statistics::DistInfoProxy::DistInfoProxy
DistInfoProxy(Stat &stat)
Definition: statistics.hh:162
gem5::statistics::DataWrap::Info
InfoProxyType< Derived > Info
Definition: statistics.hh:228
gem5::statistics::InfoAccess::check
bool check() const
Check that this stat has been set up properly and is ready for use.
Definition: statistics.hh:221
units.hh
gem5::statistics::SumNode::result
const VResult & result() const
Return the result vector of this subtree.
Definition: statistics.hh:1862
gem5::statistics::VectorInfoProxy::total
Result total() const
Definition: statistics.hh:155
gem5::statistics::ScalarInfoProxy
Definition: statistics.hh:119
gem5::statistics::DataWrapVec::reset
void reset()
Definition: statistics.hh:447
gem5::statistics::DataWrap::desc
Derived & desc(const std::string &_desc)
Set the description and marks this stat to print at the end of simulation.
Definition: statistics.hh:331
gem5::statistics::ConstNode::result
const VResult & result() const
Return the result vector of this subtree.
Definition: statistics.hh:1631
gem5::statistics::SparseHistBase::reset
void reset()
Reset stat value to default.
Definition: statistics.hh:2477
gem5::statistics::MethodProxy::result
Result result() const
Definition: statistics.hh:706
gem5::statistics::SparseHistBase::SparseHistBase
SparseHistBase(Group *parent, const char *name, const units::Base *unit, const char *desc)
Definition: statistics.hh:2439
gem5::statistics::ScalarInfoProxy::value
Counter value() const
Definition: statistics.hh:124
gem5::statistics::Temp::Temp
Temp(signed int value)
Create a ConstNode.
Definition: statistics.hh:2755
gem5::statistics::VectorProxy::data
Stat::Storage * data(off_type index)
Definition: statistics.hh:1066
gem5::statistics::DataWrap::prereq
Derived & prereq(const Stat &prereq)
Set the prerequisite stat and marks this stat to print at the end of simulation.
Definition: statistics.hh:369
gem5::statistics::UnaryNode::l
NodePtr l
Definition: statistics.hh:1713
gem5::statistics::StorageParams
Definition: storage.hh:49
gem5::statistics::VectorDistInfo
Definition: info.hh:208
std
Overload hash function for BasicBlockRange type.
Definition: types.hh:111
gem5::statistics::VectorInfo::size
virtual size_type size() const =0
gem5::ArmISA::n
Bitfield< 31 > n
Definition: misc_types.hh:455
types.hh
gem5::statistics::VectorProxy::VectorProxy
VectorProxy(const VectorProxy &sp)
Definition: statistics.hh:1106
gem5::statistics::VectorDistInfoProxy::size
size_type size() const
Definition: statistics.hh:171
gem5::statistics::processResetQueue
void processResetQueue()
Process all the callbacks in the reset callbacks queue.
Definition: statistics.cc:260
gem5::statistics::VectorInfoProxy
Definition: statistics.hh:130
gem5::statistics::constantVector
Temp constantVector(T val)
Definition: statistics.hh:2860
gem5::statistics::DistBase::prepare
void prepare()
Definition: statistics.hh:1333
gem5::statistics::VectorDistBase::Params
Stor::Params Params
Definition: statistics.hh:1363
gem5::statistics::Formula::operator=
const Formula & operator=(const Temp &r)
Set an unitialized Formula to the given root.
Definition: statistics.cc:168
gem5::statistics::FormulaInfoProxy::value
VCounter & value() const
Definition: statistics.hh:2382
gem5::statistics::VectorDistBase::VectorDistBase
VectorDistBase(Group *parent, const char *name, const units::Base *unit, const char *desc)
Definition: statistics.hh:1395
gem5::statistics::ScalarProxy
A proxy class to access the stat at a given index in a VectorBase stat.
Definition: statistics.hh:793
gem5::statistics::MapType
std::map< const void *, Info * > MapType
Definition: statistics.hh:2911
gem5::PowerISA::vec
Bitfield< 25 > vec
Definition: misc.hh:108
gem5::statistics::Vector2dInfo::x
size_type x
Definition: info.hh:234
gem5::statistics::SparseHistInfo::data
SparseHistData data
Local storage for the entry values, used for printing.
Definition: info.hh:255
gem5::statistics::VectorDistBase::data
Storage * data(off_type index)
Definition: statistics.hh:1373
gem5::statistics::Value
Definition: statistics.hh:1970
gem5::statistics::SparseHistStor::Params
The parameters for a sparse histogram stat.
Definition: storage.hh:724
gem5::statistics::Node::size
virtual size_type size() const =0
Return the number of nodes in the subtree starting at this node.
gem5::statistics::VectorBase::Params
Stor::Params Params
Definition: statistics.hh:923
gem5::statistics::DataWrap::info
const Info * info() const
Definition: statistics.hh:242
gem5::statistics::DistProxy::sample
void sample(const U &v, int n=1)
Definition: statistics.hh:1478
gem5::statistics::NodePtr
std::shared_ptr< Node > NodePtr
Shared pointer to a function Node.
Definition: statistics.hh:1539
gem5::statistics::VectorAverageDeviation::init
VectorAverageDeviation & init(size_type size)
Initialize storage for this distribution.
Definition: statistics.hh:2354
gem5::statistics::Counter
double Counter
All counters are of 64-bit values.
Definition: types.hh:47
gem5::statistics::SparseHistogram
Definition: statistics.hh:2483
output.hh
gem5::statistics::AverageVector::AverageVector
AverageVector(Group *parent, const char *name, const units::Base *unit, const char *desc=nullptr)
Definition: statistics.hh:2035
gem5::statistics::ScalarInfo::value
virtual Counter value() const =0
gem5::statistics::ScalarBase::ScalarBase
ScalarBase(Group *parent=nullptr, const char *name=nullptr, const units::Base *unit=units::Unspecified::get(), const char *desc=nullptr)
Definition: statistics.hh:559
gem5::statistics::InfoProxy::visit
void visit(Output &visitor)
Definition: statistics.hh:111
gem5::statistics::ValueBase::reset
void reset()
Definition: statistics.hh:779
logging.hh
gem5::statistics::ScalarInfoProxy::result
Result result() const
Definition: statistics.hh:125
gem5::statistics::OpString< std::multiplies< Result > >::str
static std::string str()
Definition: statistics.hh:1688
gem5::statistics::VectorBase::size
size_type size() const
Definition: statistics.hh:996
gem5::statistics::Group
Statistics container.
Definition: group.hh:93
gem5::statistics::Group::addStat
void addStat(statistics::Info *info)
Register a stat with this group.
Definition: group.cc:109
gem5::statistics::FunctorProxy
Definition: statistics.hh:658
gem5::statistics::ValueBase::scalar
Derived & scalar(T &value)
Definition: statistics.hh:729
gem5::statistics::DataWrap::name
const std::string & name() const
Definition: statistics.hh:293
gem5::statistics::DataWrapVec2d::ysubnames
Derived & ysubnames(const char **names)
Definition: statistics.hh:475
gem5::statistics::DataWrapVec::prepare
void prepare()
Definition: statistics.hh:436
gem5::statistics::Formula::prepare
void prepare()
Definition: statistics.hh:2604
gem5::statistics::HistStor
Templatized storage and interface for a histogram stat.
Definition: storage.hh:399
gem5::statistics::AverageVector::AverageVector
AverageVector(Group *parent=nullptr)
Definition: statistics.hh:2023
gem5::statistics::SparseHistogram::SparseHistogram
SparseHistogram(Group *parent, const char *name, const units::Base *unit, const char *desc=nullptr)
Definition: statistics.hh:2499
gem5::statistics::InfoProxy::reset
void reset()
Definition: statistics.hh:109
gem5::statistics::ConstVectorNode::str
std::string str() const
Definition: statistics.hh:1659
gem5::statistics::FunctorProxy::result
Result result() const
Definition: statistics.hh:666
gem5::statistics::FormulaInfoProxy::FormulaInfoProxy
FormulaInfoProxy(Stat &stat)
Definition: statistics.hh:2371
gem5::MipsISA::r
r
Definition: pra_constants.hh:98
gem5::statistics::AverageDeviation::AverageDeviation
AverageDeviation(Group *parent, const char *name, const units::Base *unit, const char *desc=nullptr)
Definition: statistics.hh:2219
gem5::statistics::DataWrap::setSeparator
const std::string & setSeparator() const
Definition: statistics.hh:307
gem5::statistics::ScalarBase::operator--
void operator--()
Decrement the stat by 1.
Definition: statistics.hh:578
gem5::statistics::BinaryNode
Definition: statistics.hh:1755
gem5::statistics::Vector2d::Vector2d
Vector2d(Group *parent=nullptr)
Definition: statistics.hh:2049
gem5::statistics::ValueBase::value
Counter value()
Definition: statistics.hh:770
gem5::statistics::MethodProxy::object
T * object
Definition: statistics.hh:699
gem5::statistics::MethodProxy::method
MethodPointer method
Definition: statistics.hh:701
gem5::statistics::StatStor
Templatized storage and interface for a simple scalar stat.
Definition: storage.hh:57
gem5::statistics::FormulaInfoProxy::result
const VResult & result() const
Definition: statistics.hh:2376
gem5::statistics::ScalarBase::prepare
void prepare()
Definition: statistics.hh:628
gem5::statistics::ScalarStatNode::str
std::string str() const
Definition: statistics.hh:1564
gem5::statistics::DistBase::reset
void reset()
Reset stat value to default.
Definition: statistics.hh:1343
gem5::statistics::ScalarProxy::str
std::string str() const
Definition: statistics.hh:908
gem5::statistics::DistProxy::DistProxy
DistProxy(Stat &s, off_type i)
Definition: statistics.hh:1459
gem5::statistics::SumNode::l
NodePtr l
Definition: statistics.hh:1855
gem5::statistics::ScalarProxy::operator=
void operator=(const U &v)
Set the data value to the given value.
Definition: statistics.hh:871
gem5::statistics::VectorDistribution
A vector of distributions.
Definition: statistics.hh:2233
gem5::statistics::VectorBase::check
bool check() const
Definition: statistics.hh:1008
gem5::statistics::DataWrap::flags
Derived & flags(Flags _flags)
Set the flags and marks this stat to print at the end of simulation.
Definition: statistics.hh:355
gem5::statistics::Average::Average
Average(Group *parent, const char *name, const char *desc=nullptr)
Definition: statistics.hh:1957
gem5::statistics::VectorProxy::len
size_type len
Definition: statistics.hh:1060
gem5::statistics::Vector::Vector
Vector(Group *parent, const char *name, const char *desc=nullptr)
Definition: statistics.hh:2003
gem5::statistics::Vector2dBase::Storage
Stor Storage
Definition: statistics.hh:1135
gem5::statistics::InfoAccess::setInfo
void setInfo(Group *parent, Info *info)
Set up an info class for this statistic.
Definition: statistics.cc:76
gem5::statistics::Vector2d::Vector2d
Vector2d(Group *parent, const char *name, const char *desc=nullptr)
Definition: statistics.hh:2055
gem5::statistics::VectorInfoProxy::value
VCounter & value() const
Definition: statistics.hh:142
gem5::statistics::FormulaInfoProxy::cvec
VCounter cvec
Definition: statistics.hh:2368
std::list
STL list class.
Definition: stl.hh:51
gem5::ArmISA::sp
Bitfield< 0 > sp
Definition: misc_types.hh:74
gem5::statistics::Formula::operator+=
const Formula & operator+=(Temp r)
Add the given tree to the existing one.
Definition: statistics.cc:178
gem5::statistics::Vector2dBase::storage
std::vector< Storage * > storage
Definition: statistics.hh:1146
intmath.hh
gem5::statistics::DistProxy::stat
Stat & stat
Definition: statistics.hh:1451
gem5::statistics::Temp::Temp
Temp(NodePtr &&n)
Definition: statistics.hh:2653
gem5::statistics::SparseHistBase::data
Storage * data()
Retrieve the storage.
Definition: statistics.hh:2416
gem5::statistics::ScalarProxyNode::str
std::string str() const
Definition: statistics.hh:1602
gem5::statistics::VectorProxy::vec
VResult vec
Definition: statistics.hh:1063
gem5::statistics::VectorDistribution::VectorDistribution
VectorDistribution(Group *parent=nullptr)
Definition: statistics.hh:2236
gem5::statistics::Temp::Temp
Temp(signed short value)
Create a ConstNode.
Definition: statistics.hh:2739
gem5::statistics::ScalarBase::operator++
void operator++()
Increment the stat by 1.
Definition: statistics.hh:573
gem5::statistics::ValueBase::~ValueBase
~ValueBase()
Definition: statistics.hh:725
fatal_if
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Definition: logging.hh:225
gem5::statistics::ValueProxy::total
Result total() const
Definition: statistics.hh:654
gem5::statistics::DistBase::Info
DistInfoProxy< Derived > Info
Definition: statistics.hh:1268
gem5::statistics::ProxyInfo
Definition: statistics.hh:631
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: decoder.cc:40
gem5::statistics::DistStor::Params
The parameters for a distribution stat.
Definition: storage.hh:262
gem5::statistics::Formula::total
Result total() const
Return the total Formula result.
Definition: statistics.cc:210
gem5::statistics::VectorInfoProxy::size
size_type size() const
Definition: statistics.hh:139
gem5::statistics::DataWrapVec
Definition: statistics.hh:377
gem5::statistics::ScalarProxy::operator+=
void operator+=(const U &v)
Increment the stat by the given value.
Definition: statistics.hh:883
gem5::statistics::SparseHistBase
Implementation of a sparse histogram stat.
Definition: statistics.hh:2399
gem5::statistics::VectorBase::init
Derived & init(size_type size)
Set this vector to have the given size.
Definition: statistics.hh:1034
gem5::statistics::InfoAccess::setParams
void setParams(const StorageParams *params)
Save Storage class parameters if any.
Definition: statistics.cc:100
gem5::statistics::operator*
Temp operator*(Temp l, Temp r)
Definition: statistics.hh:2834
gem5::statistics::VectorProxy::total
Result total() const
Definition: statistics.hh:1092
gem5::statistics::ScalarBase::size
size_type size() const
Return the number of elements, always 1 for a scalar.
Definition: statistics.hh:613
gem5::statistics::VectorAverageDeviation::VectorAverageDeviation
VectorAverageDeviation(Group *parent=nullptr)
Definition: statistics.hh:2327
gem5::statistics::VectorInfoProxy::VectorInfoProxy
VectorInfoProxy(Stat &stat)
Definition: statistics.hh:137
gem5::statistics::ScalarProxyNode::total
Result total() const
Return the total of the result vector.
Definition: statistics.hh:1587
gem5::statistics::MethodProxy::MethodProxy
MethodProxy(T *obj, MethodPointer meth)
Definition: statistics.hh:704
gem5::statistics::AverageDeviation
Calculates the per tick mean and variance of the samples.
Definition: statistics.hh:2194
gem5::statistics::Info::getStorageParams
StorageParams const * getStorageParams() const
Getter for the storage params.
Definition: info.cc:85
gem5::statistics::VectorStandardDeviation::VectorStandardDeviation
VectorStandardDeviation(Group *parent=nullptr)
Definition: statistics.hh:2283
gem5::statistics::FormulaNode::vec
VResult vec
Definition: statistics.hh:2623
gem5::statistics::ScalarProxy::result
Result result() const
Return the current value of this statas a result type.
Definition: statistics.hh:813
gem5::statistics::ProxyInfo::visit
void visit(Output &visitor)
Visitor entry for outputing statistics data.
Definition: statistics.hh:641
gem5::X86ISA::op
Bitfield< 4 > op
Definition: types.hh:83
gem5::statistics::VectorProxy::size
size_type size() const
Definition: statistics.hh:1127
gem5::statistics::Formula::size
size_type size() const
Return the number of elements in the tree.
Definition: statistics.cc:216
gem5::statistics::ScalarProxyNode
Definition: statistics.hh:1568
gem5::statistics::Vector2dBase::Info
Vector2dInfoProxy< Derived > Info
Definition: statistics.hh:1134
gem5::statistics::VectorDistBase::check
bool check() const
Definition: statistics.hh:1441
gem5::statistics::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:139
gem5::statistics::VectorDistribution::VectorDistribution
VectorDistribution(Group *parent, const char *name, const char *desc=nullptr)
Definition: statistics.hh:2242
gem5::statistics::InfoProxy::InfoProxy
InfoProxy(Stat &stat)
Definition: statistics.hh:105
gem5::statistics::VectorBase::Storage
Stor Storage
Definition: statistics.hh:922
gem5::statistics::Formula::operator=
const Formula & operator=(const T &v)
Definition: statistics.hh:2558
gem5::ArmISA::rs
Bitfield< 9, 8 > rs
Definition: misc_types.hh:376
gem5::statistics::Histogram::Histogram
Histogram(Group *parent, const char *name, const char *desc=nullptr)
Definition: statistics.hh:2123
gem5::statistics::DistProxy::zero
bool zero() const
Definition: statistics.hh:1490
gem5::statistics::ScalarStatNode::ScalarStatNode
ScalarStatNode(const ScalarInfo *d)
Definition: statistics.hh:1548
gem5::statistics::Distribution::Distribution
Distribution(Group *parent, const char *name, const char *desc=nullptr)
Definition: statistics.hh:2081
gem5::statistics::Info::name
std::string name
The name of the stat.
Definition: info.hh:84
gem5::statistics::UnaryNode::vresult
VResult vresult
Definition: statistics.hh:1714
gem5::statistics::FormulaInfo
Definition: info.hh:245
gem5::statistics::VectorBase::data
Storage * data(off_type index)
Retrieve the storage.
Definition: statistics.hh:940
gem5::statistics::Vector2dInfo
Definition: info.hh:226
gem5::statistics::Temp::Temp
Temp(signed char value)
Create a ConstNode.
Definition: statistics.hh:2723
gem5::statistics::Formula::zero
bool zero() const
Definition: statistics.cc:230
gem5::statistics::Vector2dBase::x
size_type x
Definition: statistics.hh:1144
gem5::statistics::InfoProxy::check
bool check() const
Definition: statistics.hh:107
gem5::statistics::StandardDeviation::StandardDeviation
StandardDeviation(Group *parent=nullptr)
Construct and initialize this distribution.
Definition: statistics.hh:2161
gem5::statistics::ScalarProxy::index
off_type index
The index to access in the parent VectorBase.
Definition: statistics.hh:800
gem5::statistics::Info
Definition: info.hh:80
gem5::statistics::MethodProxy::total
Result total() const
Definition: statistics.hh:707
gem5::statistics::ConstNode::vresult
VResult vresult
Definition: statistics.hh:1627
gem5::statistics::ProxyInfo::reset
void reset()
Reset the stat to the default state.
Definition: statistics.hh:638
gem5::statistics::operator-
Temp operator-(Temp l, Temp r)
Definition: statistics.hh:2828
gem5::statistics::AvgStor
Templatized storage and interface to a per-tick average stat.
Definition: storage.hh:127
gem5::statistics::ScalarBase::value
Counter value() const
Return the current value of this stat as its base type.
Definition: statistics.hh:619
gem5::statistics::VectorBase::storage
std::vector< Storage * > storage
The storage of this stat.
Definition: statistics.hh:932
gem5::statistics::VectorInfoProxy::result
const VResult & result() const
Definition: statistics.hh:149

Generated on Tue Sep 7 2021 14:53:43 for gem5 by doxygen 1.8.17