gem5  v21.0.1.0
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) 2019-2020 Arm Limited
3  * All rights reserved.
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Copyright (c) 2003-2005 The Regents of The University of Michigan
15  * Copyright (c) 2017, Centre National de la Recherche Scientifique
16  * All rights reserved.
17  *
18  * Redistribution and use in source and binary forms, with or without
19  * modification, are permitted provided that the following conditions are
20  * met: redistributions of source code must retain the above copyright
21  * notice, this list of conditions and the following disclaimer;
22  * redistributions in binary form must reproduce the above copyright
23  * notice, this list of conditions and the following disclaimer in the
24  * documentation and/or other materials provided with the distribution;
25  * neither the name of the copyright holders nor the names of its
26  * contributors may be used to endorse or promote products derived from
27  * this software without specific prior written permission.
28  *
29  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40  */
41 
58 #ifndef __BASE_STATISTICS_HH__
59 #define __BASE_STATISTICS_HH__
60 
61 #include <algorithm>
62 #include <cassert>
63 #ifdef __SUNPRO_CC
64 #include <math.h>
65 #endif
66 #include <cmath>
67 #include <functional>
68 #include <iosfwd>
69 #include <list>
70 #include <map>
71 #include <memory>
72 #include <string>
73 #include <vector>
74 
75 #include "base/cast.hh"
76 #include "base/cprintf.hh"
77 #include "base/intmath.hh"
78 #include "base/stats/group.hh"
79 #include "base/stats/info.hh"
80 #include "base/stats/output.hh"
81 #include "base/stats/storage.hh"
82 #include "base/stats/types.hh"
83 #include "base/stats/units.hh"
84 #include "base/str.hh"
85 #include "base/types.hh"
86 
87 /* A namespace for all of the Statistics */
88 namespace Stats {
89 
90 template <class Stat, class Base>
91 class InfoProxy : public Base
92 {
93  protected:
94  Stat &s;
95 
96  public:
97  InfoProxy(Stat &stat) : s(stat) {}
98 
99  bool check() const { return s.check(); }
100  void prepare() { s.prepare(); }
101  void reset() { s.reset(); }
102  void
103  visit(Output &visitor)
104  {
105  visitor.visit(*static_cast<Base *>(this));
106  }
107  bool zero() const { return s.zero(); }
108 };
109 
110 template <class Stat>
111 class ScalarInfoProxy : public InfoProxy<Stat, ScalarInfo>
112 {
113  public:
114  ScalarInfoProxy(Stat &stat) : InfoProxy<Stat, ScalarInfo>(stat) {}
115 
116  Counter value() const { return this->s.value(); }
117  Result result() const { return this->s.result(); }
118  Result total() const { return this->s.total(); }
119 };
120 
121 template <class Stat>
122 class VectorInfoProxy : public InfoProxy<Stat, VectorInfo>
123 {
124  protected:
125  mutable VCounter cvec;
126  mutable VResult rvec;
127 
128  public:
129  VectorInfoProxy(Stat &stat) : InfoProxy<Stat, VectorInfo>(stat) {}
130 
131  size_type size() const { return this->s.size(); }
132 
133  VCounter &
134  value() const
135  {
136  this->s.value(cvec);
137  return cvec;
138  }
139 
140  const VResult &
141  result() const
142  {
143  this->s.result(rvec);
144  return rvec;
145  }
146 
147  Result total() const { return this->s.total(); }
148 };
149 
150 template <class Stat>
151 class DistInfoProxy : public InfoProxy<Stat, DistInfo>
152 {
153  public:
154  DistInfoProxy(Stat &stat) : InfoProxy<Stat, DistInfo>(stat) {}
155 };
156 
157 template <class Stat>
158 class VectorDistInfoProxy : public InfoProxy<Stat, VectorDistInfo>
159 {
160  public:
161  VectorDistInfoProxy(Stat &stat) : InfoProxy<Stat, VectorDistInfo>(stat) {}
162 
163  size_type size() const { return this->s.size(); }
164 };
165 
166 template <class Stat>
167 class Vector2dInfoProxy : public InfoProxy<Stat, Vector2dInfo>
168 {
169  public:
170  Vector2dInfoProxy(Stat &stat) : InfoProxy<Stat, Vector2dInfo>(stat) {}
171 
172  Result total() const { return this->s.total(); }
173 };
174 
176 {
177  private:
179 
180  protected:
182  void setInfo(Group *parent, Info *info);
184  void setParams(const StorageParams *params);
186  void setInit();
187 
189  Info *info();
191  const Info *info() const;
192 
193  public:
195  : _info(nullptr) {};
196 
200  void reset() { }
201 
206  bool zero() const { return true; }
207 
213  bool check() const { return true; }
214 };
215 
216 template <class Derived, template <class> class InfoProxyType>
217 class DataWrap : public InfoAccess
218 {
219  public:
220  typedef InfoProxyType<Derived> Info;
221 
222  protected:
223  Derived &self() { return *static_cast<Derived *>(this); }
224 
225  protected:
226  Info *
228  {
229  return safe_cast<Info *>(InfoAccess::info());
230  }
231 
232  public:
233  const Info *
234  info() const
235  {
236  return safe_cast<const Info *>(InfoAccess::info());
237  }
238 
239  public:
240  DataWrap() = delete;
241  DataWrap(const DataWrap &) = delete;
242  DataWrap &operator=(const DataWrap &) = delete;
243 
244  DataWrap(Group *parent, const char *name, const Units::Base *unit,
245  const char *desc)
246  {
247  auto info = new Info(self());
248  this->setInfo(parent, info);
249 
250  if (parent)
251  parent->addStat(info);
252 
253  if (name) {
254  info->setName(parent, name);
255  info->flags.set(display);
256  }
257 
258  info->unit = unit;
259 
260  if (desc)
261  info->desc = desc;
262  }
263 
269  Derived &
270  name(const std::string &name)
271  {
272  Info *info = this->info();
273  info->setName(name);
274  info->flags.set(display);
275  return this->self();
276  }
277  const std::string &name() const { return this->info()->name; }
278 
285  Derived &
286  setSeparator(const std::string &_sep)
287  {
288  this->info()->setSeparator(_sep);
289  return this->self();
290  }
291  const std::string &setSeparator() const
292  {
293  return this->info()->separatorString;
294  }
295 
301  Derived &
302  unit(const Units::Base *_unit)
303  {
304  this->info()->unit = _unit;
305  return this->self();
306  }
307 
314  Derived &
315  desc(const std::string &_desc)
316  {
317  this->info()->desc = _desc;
318  return this->self();
319  }
320 
326  Derived &
327  precision(int _precision)
328  {
329  this->info()->precision = _precision;
330  return this->self();
331  }
332 
338  Derived &
339  flags(Flags _flags)
340  {
341  this->info()->flags.set(_flags);
342  return this->self();
343  }
344 
351  template <class Stat>
352  Derived &
353  prereq(const Stat &prereq)
354  {
355  this->info()->prereq = prereq.info();
356  return this->self();
357  }
358 };
359 
360 template <class Derived, template <class> class InfoProxyType>
361 class DataWrapVec : public DataWrap<Derived, InfoProxyType>
362 {
363  public:
364  typedef InfoProxyType<Derived> Info;
365 
366  DataWrapVec(Group *parent = nullptr, const char *name = nullptr,
368  const char *desc = nullptr)
369  : DataWrap<Derived, InfoProxyType>(parent, name, unit, desc)
370  {}
371 
372  // The following functions are specific to vectors. If you use them
373  // in a non vector context, you will get a nice compiler error!
374 
382  Derived &
383  subname(off_type index, const std::string &name)
384  {
385  Derived &self = this->self();
386  Info *info = self.info();
387 
388  std::vector<std::string> &subn = info->subnames;
389  if (subn.size() <= index)
390  subn.resize(index + 1);
391  subn[index] = name;
392  return self;
393  }
394 
395  // The following functions are specific to 2d vectors. If you use
396  // them in a non vector context, you will get a nice compiler
397  // error because info doesn't have the right variables.
398 
406  Derived &
407  subdesc(off_type index, const std::string &desc)
408  {
409  Info *info = this->info();
410 
411  std::vector<std::string> &subd = info->subdescs;
412  if (subd.size() <= index)
413  subd.resize(index + 1);
414  subd[index] = desc;
415 
416  return this->self();
417  }
418 
419  void
421  {
422  Derived &self = this->self();
423  Info *info = this->info();
424 
425  size_t size = self.size();
426  for (off_type i = 0; i < size; ++i)
427  self.data(i)->prepare(info);
428  }
429 
430  void
432  {
433  Derived &self = this->self();
434  Info *info = this->info();
435 
436  size_t size = self.size();
437  for (off_type i = 0; i < size; ++i)
438  self.data(i)->reset(info);
439  }
440 };
441 
442 template <class Derived, template <class> class InfoProxyType>
443 class DataWrapVec2d : public DataWrapVec<Derived, InfoProxyType>
444 {
445  public:
446  typedef InfoProxyType<Derived> Info;
447 
448  DataWrapVec2d(Group *parent, const char *name,
449  const Units::Base *unit, const char *desc)
450  : DataWrapVec<Derived, InfoProxyType>(parent, name, unit, desc)
451  {
452  }
453 
458  Derived &
459  ysubnames(const char **names)
460  {
461  Derived &self = this->self();
462  Info *info = this->info();
463 
464  info->y_subnames.resize(self.y);
465  for (off_type i = 0; i < self.y; ++i)
466  info->y_subnames[i] = names[i];
467  return self;
468  }
469 
470  Derived &
471  ysubname(off_type index, const std::string &subname)
472  {
473  Derived &self = this->self();
474  Info *info = this->info();
475 
476  assert(index < self.y);
477  info->y_subnames.resize(self.y);
478  info->y_subnames[index] = subname.c_str();
479  return self;
480  }
481 
482  std::string
484  {
485  return this->info()->y_subnames[i];
486  }
487 
488 };
489 
491 //
492 // Simple Statistics
493 //
495 
500 template <class Derived, class Stor>
501 class ScalarBase : public DataWrap<Derived, ScalarInfoProxy>
502 {
503  public:
504  typedef Stor Storage;
505  typedef typename Stor::Params Params;
506 
507  protected:
509  M5_ALIGNED(8) char storage[sizeof(Storage)];
510 
511  protected:
517  Storage *
519  {
520  return reinterpret_cast<Storage *>(storage);
521  }
522 
529  const Storage *
530  data() const
531  {
532  return reinterpret_cast<const Storage *>(storage);
533  }
534 
535  void
537  {
538  new (storage) Storage(this->info());
539  this->setInit();
540  }
541 
542  public:
543  ScalarBase(Group *parent = nullptr, const char *name = nullptr,
545  const char *desc = nullptr)
546  : DataWrap<Derived, ScalarInfoProxy>(parent, name, unit, desc)
547  {
548  this->doInit();
549  }
550 
551  public:
552  // Common operators for stats
557  void operator++() { data()->inc(1); }
562  void operator--() { data()->dec(1); }
563 
565  void operator++(int) { ++*this; }
567  void operator--(int) { --*this; }
568 
574  template <typename U>
575  void operator=(const U &v) { data()->set(v); }
576 
582  template <typename U>
583  void operator+=(const U &v) { data()->inc(v); }
584 
590  template <typename U>
591  void operator-=(const U &v) { data()->dec(v); }
592 
597  size_type size() const { return 1; }
598 
603  Counter value() const { return data()->value(); }
604 
605  Result result() const { return data()->result(); }
606 
607  Result total() const { return result(); }
608 
609  bool zero() const { return result() == 0.0; }
610 
611  void reset() { data()->reset(this->info()); }
612  void prepare() { data()->prepare(this->info()); }
613 };
614 
615 class ProxyInfo : public ScalarInfo
616 {
617  public:
618  std::string str() const { return std::to_string(value()); }
619  size_type size() const { return 1; }
620  bool check() const { return true; }
621  void prepare() { }
622  void reset() { }
623  bool zero() const { return value() == 0; }
624 
625  void visit(Output &visitor) { visitor.visit(*this); }
626 };
627 
628 template <class T>
629 class ValueProxy : public ProxyInfo
630 {
631  private:
632  T *scalar;
633 
634  public:
636  Counter value() const { return *scalar; }
637  Result result() const { return *scalar; }
638  Result total() const { return *scalar; }
639 };
640 
641 template <class T, class Enabled=void>
642 class FunctorProxy : public ProxyInfo
643 {
644  private:
646 
647  public:
648  FunctorProxy(T &func) : functor(&func) {}
649  Counter value() const { return (*functor)(); }
650  Result result() const { return (*functor)(); }
651  Result total() const { return (*functor)(); }
652 };
653 
660 template <class T>
661 class FunctorProxy<T,
662  typename std::enable_if_t<std::is_constructible<std::function<Result()>,
663  const T &>::value>> : public ProxyInfo
664 {
665  private:
666  std::function<Result()> functor;
667 
668  public:
669  FunctorProxy(const T &func) : functor(func) {}
670  Counter value() const { return functor(); }
671  Result result() const { return functor(); }
672  Result total() const { return functor(); }
673 };
674 
679 template <class T, class V>
680 class MethodProxy : public ProxyInfo
681 {
682  private:
683  T *object;
684  typedef V (T::*MethodPointer) () const;
686 
687  public:
688  MethodProxy(T *obj, MethodPointer meth) : object(obj), method(meth) {}
689  Counter value() const { return (object->*method)(); }
690  Result result() const { return (object->*method)(); }
691  Result total() const { return (object->*method)(); }
692 };
693 
694 template <class Derived>
695 class ValueBase : public DataWrap<Derived, ScalarInfoProxy>
696 {
697  private:
699 
700  public:
701  ValueBase(Group *parent, const char *name,
702  const Units::Base *unit,
703  const char *desc)
704  : DataWrap<Derived, ScalarInfoProxy>(parent, name, unit, desc),
705  proxy(NULL)
706  {
707  }
708 
709  ~ValueBase() { if (proxy) delete proxy; }
710 
711  template <class T>
712  Derived &
714  {
715  proxy = new ValueProxy<T>(value);
716  this->setInit();
717  return this->self();
718  }
719 
720  template <class T>
721  Derived &
722  functor(const T &func)
723  {
724  proxy = new FunctorProxy<T>(func);
725  this->setInit();
726  return this->self();
727  }
728 
729  template <class T>
730  Derived &
731  functor(T &func)
732  {
733  proxy = new FunctorProxy<T>(func);
734  this->setInit();
735  return this->self();
736  }
737 
745  template <class T, class V>
746  Derived &
747  method(T *obj, V (T::*method)() const)
748  {
749  proxy = new MethodProxy<T,V>(obj, method);
750  this->setInit();
751  return this->self();
752  }
753 
754  Counter value() { return proxy->value(); }
755  Result result() const { return proxy->result(); }
756  Result total() const { return proxy->total(); };
757  size_type size() const { return proxy->size(); }
758 
759  std::string str() const { return proxy->str(); }
760  bool zero() const { return proxy->zero(); }
761  bool check() const { return proxy != NULL; }
762  void prepare() { }
763  void reset() { }
764 };
765 
767 //
768 // Vector Statistics
769 //
771 
776 template <class Stat>
778 {
779  private:
781  Stat &stat;
782 
785 
786  public:
791  Counter value() const { return stat.data(index)->value(); }
792 
797  Result result() const { return stat.data(index)->result(); }
798 
799  public:
805  : stat(s), index(i)
806  {
807  }
808 
814  : stat(sp.stat), index(sp.index)
815  {}
816 
822  const ScalarProxy &
824  {
825  stat = sp.stat;
826  index = sp.index;
827  return *this;
828  }
829 
830  public:
831  // Common operators for stats
836  void operator++() { stat.data(index)->inc(1); }
841  void operator--() { stat.data(index)->dec(1); }
842 
844  void operator++(int) { ++*this; }
846  void operator--(int) { --*this; }
847 
853  template <typename U>
854  void
855  operator=(const U &v)
856  {
857  stat.data(index)->set(v);
858  }
859 
865  template <typename U>
866  void
867  operator+=(const U &v)
868  {
869  stat.data(index)->inc(v);
870  }
871 
877  template <typename U>
878  void
879  operator-=(const U &v)
880  {
881  stat.data(index)->dec(v);
882  }
883 
888  size_type size() const { return 1; }
889 
890  public:
891  std::string
892  str() const
893  {
894  return csprintf("%s[%d]", stat.info()->name, index);
895  }
896 };
897 
902 template <class Derived, class Stor>
903 class VectorBase : public DataWrapVec<Derived, VectorInfoProxy>
904 {
905  public:
906  typedef Stor Storage;
907  typedef typename Stor::Params Params;
908 
911  friend class ScalarProxy<Derived>;
912  friend class DataWrapVec<Derived, VectorInfoProxy>;
913 
914  protected:
918 
919  protected:
926 
932  const Storage *data(off_type index) const { return &storage[index]; }
933 
934  void
936  {
937  assert(s > 0 && "size must be positive!");
938  assert(!storage && "already initialized");
939  _size = s;
940 
941  char *ptr = new char[_size * sizeof(Storage)];
942  storage = reinterpret_cast<Storage *>(ptr);
943 
944  for (off_type i = 0; i < _size; ++i)
945  new (&storage[i]) Storage(this->info());
946 
947  this->setInit();
948  }
949 
950  public:
951  void
952  value(VCounter &vec) const
953  {
954  vec.resize(size());
955  for (off_type i = 0; i < size(); ++i)
956  vec[i] = data(i)->value();
957  }
958 
963  void
964  result(VResult &vec) const
965  {
966  vec.resize(size());
967  for (off_type i = 0; i < size(); ++i)
968  vec[i] = data(i)->result();
969  }
970 
975  Result
976  total() const
977  {
978  Result total = 0.0;
979  for (off_type i = 0; i < size(); ++i)
980  total += data(i)->result();
981  return total;
982  }
983 
987  size_type size() const { return _size; }
988 
989  bool
990  zero() const
991  {
992  for (off_type i = 0; i < size(); ++i)
993  if (data(i)->zero())
994  return false;
995  return true;
996  }
997 
998  bool
999  check() const
1000  {
1001  return storage != NULL;
1002  }
1003 
1004  public:
1005  VectorBase(Group *parent, const char *name,
1006  const Units::Base *unit,
1007  const char *desc)
1008  : DataWrapVec<Derived, VectorInfoProxy>(parent, name, unit, desc),
1009  storage(nullptr), _size(0)
1010  {}
1011 
1013  {
1014  if (!storage)
1015  return;
1016 
1017  for (off_type i = 0; i < _size; ++i)
1018  data(i)->~Storage();
1019  delete [] reinterpret_cast<char *>(storage);
1020  }
1021 
1027  Derived &
1029  {
1030  Derived &self = this->self();
1031  self.doInit(size);
1032  return self;
1033  }
1034 
1040  Proxy
1042  {
1043  assert (index < size());
1044  return Proxy(this->self(), index);
1045  }
1046 };
1047 
1048 template <class Stat>
1050 {
1051  private:
1052  Stat &stat;
1055 
1056  private:
1057  mutable VResult vec;
1058 
1059  typename Stat::Storage *
1061  {
1062  assert(index < len);
1063  return stat.data(offset + index);
1064  }
1065 
1066  const typename Stat::Storage *
1068  {
1069  assert(index < len);
1070  return stat.data(offset + index);
1071  }
1072 
1073  public:
1074  const VResult &
1075  result() const
1076  {
1077  vec.resize(size());
1078 
1079  for (off_type i = 0; i < size(); ++i)
1080  vec[i] = data(i)->result();
1081 
1082  return vec;
1083  }
1084 
1085  Result
1086  total() const
1087  {
1088  Result total = 0.0;
1089  for (off_type i = 0; i < size(); ++i)
1090  total += data(i)->result();
1091  return total;
1092  }
1093 
1094  public:
1096  : stat(s), offset(o), len(l)
1097  {
1098  }
1099 
1101  : stat(sp.stat), offset(sp.offset), len(sp.len)
1102  {
1103  }
1104 
1105  const VectorProxy &
1107  {
1108  stat = sp.stat;
1109  offset = sp.offset;
1110  len = sp.len;
1111  return *this;
1112  }
1113 
1116  {
1117  assert (index < size());
1118  return ScalarProxy<Stat>(stat, offset + index);
1119  }
1120 
1121  size_type size() const { return len; }
1122 };
1123 
1124 template <class Derived, class Stor>
1125 class Vector2dBase : public DataWrapVec2d<Derived, Vector2dInfoProxy>
1126 {
1127  public:
1129  typedef Stor Storage;
1130  typedef typename Stor::Params Params;
1132  friend class ScalarProxy<Derived>;
1133  friend class VectorProxy<Derived>;
1134  friend class DataWrapVec<Derived, Vector2dInfoProxy>;
1135  friend class DataWrapVec2d<Derived, Vector2dInfoProxy>;
1136 
1137  protected:
1142 
1143  protected:
1145  const Storage *data(off_type index) const { return &storage[index]; }
1146 
1147  public:
1148  Vector2dBase(Group *parent, const char *name,
1149  const Units::Base *unit,
1150  const char *desc)
1151  : DataWrapVec2d<Derived, Vector2dInfoProxy>(parent, name, unit, desc),
1152  x(0), y(0), _size(0), storage(nullptr)
1153  {}
1154 
1156  {
1157  if (!storage)
1158  return;
1159 
1160  for (off_type i = 0; i < _size; ++i)
1161  data(i)->~Storage();
1162  delete [] reinterpret_cast<char *>(storage);
1163  }
1164 
1165  Derived &
1167  {
1168  assert(_x > 0 && _y > 0 && "sizes must be positive!");
1169  assert(!storage && "already initialized");
1170 
1171  Derived &self = this->self();
1172  Info *info = this->info();
1173 
1174  x = _x;
1175  y = _y;
1176  info->x = _x;
1177  info->y = _y;
1178  _size = x * y;
1179 
1180  char *ptr = new char[_size * sizeof(Storage)];
1181  storage = reinterpret_cast<Storage *>(ptr);
1182 
1183  for (off_type i = 0; i < _size; ++i)
1184  new (&storage[i]) Storage(info);
1185 
1186  this->setInit();
1187 
1188  return self;
1189  }
1190 
1191  Proxy
1193  {
1194  off_type offset = index * y;
1195  assert (offset + y <= size());
1196  return Proxy(this->self(), offset, y);
1197  }
1198 
1199 
1200  size_type
1201  size() const
1202  {
1203  return _size;
1204  }
1205 
1206  bool
1207  zero() const
1208  {
1209  return data(0)->zero();
1210  }
1211 
1216  Result
1217  total() const
1218  {
1219  Result total = 0.0;
1220  for (off_type i = 0; i < size(); ++i)
1221  total += data(i)->result();
1222  return total;
1223  }
1224 
1225  void
1227  {
1228  Info *info = this->info();
1229  size_type size = this->size();
1230 
1231  for (off_type i = 0; i < size; ++i)
1232  data(i)->prepare(info);
1233 
1234  info->cvec.resize(size);
1235  for (off_type i = 0; i < size; ++i)
1236  info->cvec[i] = data(i)->value();
1237  }
1238 
1242  void
1244  {
1245  Info *info = this->info();
1246  size_type size = this->size();
1247  for (off_type i = 0; i < size; ++i)
1248  data(i)->reset(info);
1249  }
1250 
1251  bool
1252  check() const
1253  {
1254  return storage != NULL;
1255  }
1256 };
1257 
1259 //
1260 // Non formula statistics
1261 //
1263 
1268 template <class Derived, class Stor>
1269 class DistBase : public DataWrap<Derived, DistInfoProxy>
1270 {
1271  public:
1273  typedef Stor Storage;
1274  typedef typename Stor::Params Params;
1275 
1276  protected:
1278  M5_ALIGNED(8) char storage[sizeof(Storage)];
1279 
1280  protected:
1285  Storage *
1287  {
1288  return reinterpret_cast<Storage *>(storage);
1289  }
1290 
1295  const Storage *
1296  data() const
1297  {
1298  return reinterpret_cast<const Storage *>(storage);
1299  }
1300 
1301  void
1303  {
1304  new (storage) Storage(this->info());
1305  this->setInit();
1306  }
1307 
1308  public:
1309  DistBase(Group *parent, const char *name,
1310  const Units::Base *unit,
1311  const char *desc)
1312  : DataWrap<Derived, DistInfoProxy>(parent, name, unit, desc)
1313  {
1314  }
1315 
1322  template <typename U>
1323  void sample(const U &v, int n = 1) { data()->sample(v, n); }
1324 
1329  size_type size() const { return data()->size(); }
1334  bool zero() const { return data()->zero(); }
1335 
1336  void
1338  {
1339  Info *info = this->info();
1340  data()->prepare(info, info->data);
1341  }
1342 
1346  void
1348  {
1349  data()->reset(this->info());
1350  }
1351 
1355  void add(DistBase &d) { data()->add(d.data()); }
1356 };
1357 
1358 template <class Stat>
1360 
1361 template <class Derived, class Stor>
1362 class VectorDistBase : public DataWrapVec<Derived, VectorDistInfoProxy>
1363 {
1364  public:
1366  typedef Stor Storage;
1367  typedef typename Stor::Params Params;
1369  friend class DistProxy<Derived>;
1370  friend class DataWrapVec<Derived, VectorDistInfoProxy>;
1371 
1372  protected:
1375 
1376  protected:
1377  Storage *
1379  {
1380  return &storage[index];
1381  }
1382 
1383  const Storage *
1385  {
1386  return &storage[index];
1387  }
1388 
1389  void
1391  {
1392  assert(s > 0 && "size must be positive!");
1393  assert(!storage && "already initialized");
1394  _size = s;
1395 
1396  char *ptr = new char[_size * sizeof(Storage)];
1397  storage = reinterpret_cast<Storage *>(ptr);
1398 
1399  Info *info = this->info();
1400  for (off_type i = 0; i < _size; ++i)
1401  new (&storage[i]) Storage(info);
1402 
1403  this->setInit();
1404  }
1405 
1406  public:
1407  VectorDistBase(Group *parent, const char *name,
1408  const Units::Base *unit,
1409  const char *desc)
1410  : DataWrapVec<Derived, VectorDistInfoProxy>(parent, name, unit, desc),
1411  storage(NULL)
1412  {}
1413 
1415  {
1416  if (!storage)
1417  return ;
1418 
1419  for (off_type i = 0; i < _size; ++i)
1420  data(i)->~Storage();
1421  delete [] reinterpret_cast<char *>(storage);
1422  }
1423 
1425  {
1426  assert(index < size());
1427  return Proxy(this->self(), index);
1428  }
1429 
1430  size_type
1431  size() const
1432  {
1433  return _size;
1434  }
1435 
1436  bool
1437  zero() const
1438  {
1439  for (off_type i = 0; i < size(); ++i)
1440  if (!data(i)->zero())
1441  return false;
1442  return true;
1443  }
1444 
1445  void
1447  {
1448  Info *info = this->info();
1449  size_type size = this->size();
1450  info->data.resize(size);
1451  for (off_type i = 0; i < size; ++i)
1452  data(i)->prepare(info, info->data[i]);
1453  }
1454 
1455  bool
1456  check() const
1457  {
1458  return storage != NULL;
1459  }
1460 };
1461 
1462 template <class Stat>
1463 class DistProxy
1464 {
1465  private:
1466  Stat &stat;
1468 
1469  protected:
1470  typename Stat::Storage *data() { return stat.data(index); }
1471  const typename Stat::Storage *data() const { return stat.data(index); }
1472 
1473  public:
1475  : stat(s), index(i)
1476  {}
1477 
1479  : stat(sp.stat), index(sp.index)
1480  {}
1481 
1482  const DistProxy &
1484  {
1485  stat = sp.stat;
1486  index = sp.index;
1487  return *this;
1488  }
1489 
1490  public:
1491  template <typename U>
1492  void
1493  sample(const U &v, int n = 1)
1494  {
1495  data()->sample(v, n);
1496  }
1497 
1498  size_type
1499  size() const
1500  {
1501  return 1;
1502  }
1503 
1504  bool
1505  zero() const
1506  {
1507  return data()->zero();
1508  }
1509 
1513  void reset() { }
1514 };
1515 
1517 //
1518 // Formula Details
1519 //
1521 
1526 class Node
1527 {
1528  public:
1533  virtual size_type size() const = 0;
1538  virtual const VResult &result() const = 0;
1543  virtual Result total() const = 0;
1544 
1548  virtual std::string str() const = 0;
1549 
1550  virtual ~Node() {};
1551 };
1552 
1554 typedef std::shared_ptr<Node> NodePtr;
1555 
1556 class ScalarStatNode : public Node
1557 {
1558  private:
1560  mutable VResult vresult;
1561 
1562  public:
1564 
1565  const VResult &
1566  result() const
1567  {
1568  vresult[0] = data->result();
1569  return vresult;
1570  }
1571 
1572  Result total() const { return data->result(); };
1573 
1574  size_type size() const { return 1; }
1575 
1579  std::string str() const { return data->name; }
1580 };
1581 
1582 template <class Stat>
1583 class ScalarProxyNode : public Node
1584 {
1585  private:
1587  mutable VResult vresult;
1588 
1589  public:
1591  : proxy(p), vresult(1)
1592  { }
1593 
1594  const VResult &
1595  result() const
1596  {
1597  vresult[0] = proxy.result();
1598  return vresult;
1599  }
1600 
1601  Result
1602  total() const
1603  {
1604  return proxy.result();
1605  }
1606 
1607  size_type
1608  size() const
1609  {
1610  return 1;
1611  }
1612 
1616  std::string
1617  str() const
1618  {
1619  return proxy.str();
1620  }
1621 };
1622 
1623 class VectorStatNode : public Node
1624 {
1625  private:
1627 
1628  public:
1630  const VResult &result() const { return data->result(); }
1631  Result total() const { return data->total(); };
1632 
1633  size_type size() const { return data->size(); }
1634 
1635  std::string str() const { return data->name; }
1636 };
1637 
1638 template <class T>
1639 class ConstNode : public Node
1640 {
1641  private:
1643 
1644  public:
1645  ConstNode(T s) : vresult(1, (Result)s) {}
1646  const VResult &result() const { return vresult; }
1647  Result total() const { return vresult[0]; };
1648  size_type size() const { return 1; }
1649  std::string str() const { return std::to_string(vresult[0]); }
1650 };
1651 
1652 template <class T>
1653 class ConstVectorNode : public Node
1654 {
1655  private:
1657 
1658  public:
1659  ConstVectorNode(const T &s) : vresult(s.begin(), s.end()) {}
1660  const VResult &result() const { return vresult; }
1661 
1662  Result
1663  total() const
1664  {
1665  size_type size = this->size();
1666  Result tmp = 0;
1667  for (off_type i = 0; i < size; i++)
1668  tmp += vresult[i];
1669  return tmp;
1670  }
1671 
1672  size_type size() const { return vresult.size(); }
1673  std::string
1674  str() const
1675  {
1676  size_type size = this->size();
1677  std::string tmp = "(";
1678  for (off_type i = 0; i < size; i++)
1679  tmp += csprintf("%s ", std::to_string(vresult[i]));
1680  tmp += ")";
1681  return tmp;
1682  }
1683 };
1684 
1685 template <class Op>
1686 struct OpString;
1687 
1688 template<>
1689 struct OpString<std::plus<Result> >
1690 {
1691  static std::string str() { return "+"; }
1692 };
1693 
1694 template<>
1695 struct OpString<std::minus<Result> >
1696 {
1697  static std::string str() { return "-"; }
1698 };
1699 
1700 template<>
1701 struct OpString<std::multiplies<Result> >
1702 {
1703  static std::string str() { return "*"; }
1704 };
1705 
1706 template<>
1707 struct OpString<std::divides<Result> >
1708 {
1709  static std::string str() { return "/"; }
1710 };
1711 
1712 template<>
1713 struct OpString<std::modulus<Result> >
1714 {
1715  static std::string str() { return "%"; }
1716 };
1717 
1718 template<>
1719 struct OpString<std::negate<Result> >
1720 {
1721  static std::string str() { return "-"; }
1722 };
1723 
1724 template <class Op>
1725 class UnaryNode : public Node
1726 {
1727  public:
1729  mutable VResult vresult;
1730 
1731  public:
1733 
1734  const VResult &
1735  result() const
1736  {
1737  const VResult &lvec = l->result();
1738  size_type size = lvec.size();
1739 
1740  assert(size > 0);
1741 
1742  vresult.resize(size);
1743  Op op;
1744  for (off_type i = 0; i < size; ++i)
1745  vresult[i] = op(lvec[i]);
1746 
1747  return vresult;
1748  }
1749 
1750  Result
1751  total() const
1752  {
1753  const VResult &vec = this->result();
1754  Result total = 0.0;
1755  for (off_type i = 0; i < size(); i++)
1756  total += vec[i];
1757  return total;
1758  }
1759 
1760  size_type size() const { return l->size(); }
1761 
1762  std::string
1763  str() const
1764  {
1765  return OpString<Op>::str() + l->str();
1766  }
1767 };
1768 
1769 template <class Op>
1770 class BinaryNode : public Node
1771 {
1772  public:
1775  mutable VResult vresult;
1776 
1777  public:
1779 
1780  const VResult &
1781  result() const override
1782  {
1783  Op op;
1784  const VResult &lvec = l->result();
1785  const VResult &rvec = r->result();
1786 
1787  assert(lvec.size() > 0 && rvec.size() > 0);
1788 
1789  if (lvec.size() == 1 && rvec.size() == 1) {
1790  vresult.resize(1);
1791  vresult[0] = op(lvec[0], rvec[0]);
1792  } else if (lvec.size() == 1) {
1793  size_type size = rvec.size();
1794  vresult.resize(size);
1795  for (off_type i = 0; i < size; ++i)
1796  vresult[i] = op(lvec[0], rvec[i]);
1797  } else if (rvec.size() == 1) {
1798  size_type size = lvec.size();
1799  vresult.resize(size);
1800  for (off_type i = 0; i < size; ++i)
1801  vresult[i] = op(lvec[i], rvec[0]);
1802  } else if (rvec.size() == lvec.size()) {
1803  size_type size = rvec.size();
1804  vresult.resize(size);
1805  for (off_type i = 0; i < size; ++i)
1806  vresult[i] = op(lvec[i], rvec[i]);
1807  }
1808 
1809  return vresult;
1810  }
1811 
1812  Result
1813  total() const override
1814  {
1815  const VResult &vec = this->result();
1816  const VResult &lvec = l->result();
1817  const VResult &rvec = r->result();
1818  Result total = 0.0;
1819  Result lsum = 0.0;
1820  Result rsum = 0.0;
1821  Op op;
1822 
1823  assert(lvec.size() > 0 && rvec.size() > 0);
1824  assert(lvec.size() == rvec.size() ||
1825  lvec.size() == 1 || rvec.size() == 1);
1826 
1828  if (lvec.size() == rvec.size() && lvec.size() > 1) {
1829  for (off_type i = 0; i < size(); ++i) {
1830  lsum += lvec[i];
1831  rsum += rvec[i];
1832  }
1833  return op(lsum, rsum);
1834  }
1835 
1837  for (off_type i = 0; i < size(); ++i) {
1838  total += vec[i];
1839  }
1840 
1841  return total;
1842  }
1843 
1844  size_type
1845  size() const override
1846  {
1847  size_type ls = l->size();
1848  size_type rs = r->size();
1849  if (ls == 1) {
1850  return rs;
1851  } else if (rs == 1) {
1852  return ls;
1853  } else {
1854  assert(ls == rs && "Node vector sizes are not equal");
1855  return ls;
1856  }
1857  }
1858 
1859  std::string
1860  str() const override
1861  {
1862  return csprintf("(%s %s %s)", l->str(), OpString<Op>::str(), r->str());
1863  }
1864 };
1865 
1866 template <class Op>
1867 class SumNode : public Node
1868 {
1869  public:
1871  mutable VResult vresult;
1872 
1873  public:
1874  SumNode(NodePtr &p) : l(p), vresult(1) {}
1875 
1876  const VResult &
1877  result() const
1878  {
1879  const VResult &lvec = l->result();
1880  size_type size = lvec.size();
1881  assert(size > 0);
1882 
1883  vresult[0] = 0.0;
1884 
1885  Op op;
1886  for (off_type i = 0; i < size; ++i)
1887  vresult[0] = op(vresult[0], lvec[i]);
1888 
1889  return vresult;
1890  }
1891 
1892  Result
1893  total() const
1894  {
1895  const VResult &lvec = l->result();
1896  size_type size = lvec.size();
1897  assert(size > 0);
1898 
1899  Result result = 0.0;
1900 
1901  Op op;
1902  for (off_type i = 0; i < size; ++i)
1903  result = op(result, lvec[i]);
1904 
1905  return result;
1906  }
1907 
1908  size_type size() const { return 1; }
1909 
1910  std::string
1911  str() const
1912  {
1913  return csprintf("total(%s)", l->str());
1914  }
1915 };
1916 
1917 
1919 //
1920 // Visible Statistics Types
1921 //
1923 
1933 class Scalar : public ScalarBase<Scalar, StatStor>
1934 {
1935  public:
1937 
1938  Scalar(Group *parent = nullptr)
1939  : ScalarBase<Scalar, StatStor>(parent, nullptr, UNIT_UNSPECIFIED,
1940  nullptr)
1941  {
1942  }
1943 
1944  Scalar(Group *parent, const char *name, const char *desc = nullptr)
1946  {
1947  }
1948 
1949  Scalar(Group *parent, const char *name, const Units::Base *unit,
1950  const char *desc = nullptr)
1951  : ScalarBase<Scalar, StatStor>(parent, name, unit, desc)
1952  {
1953  }
1954 };
1955 
1960 class Average : public ScalarBase<Average, AvgStor>
1961 {
1962  public:
1964 
1965  Average(Group *parent = nullptr)
1966  : ScalarBase<Average, AvgStor>(parent, nullptr, UNIT_UNSPECIFIED,
1967  nullptr)
1968  {
1969  }
1970 
1971  Average(Group *parent, const char *name, const char *desc = nullptr)
1973  {
1974  }
1975 
1976  Average(Group *parent, const char *name, const Units::Base *unit,
1977  const char *desc = nullptr)
1978  : ScalarBase<Average, AvgStor>(parent, name, unit, desc)
1979  {
1980  }
1981 };
1982 
1983 class Value : public ValueBase<Value>
1984 {
1985  public:
1986  Value(Group *parent = nullptr)
1987  : ValueBase<Value>(parent, nullptr, UNIT_UNSPECIFIED, nullptr)
1988  {
1989  }
1990 
1991  Value(Group *parent, const char *name, const char *desc = nullptr)
1992  : ValueBase<Value>(parent, name, UNIT_UNSPECIFIED, desc)
1993  {
1994  }
1995 
1996  Value(Group *parent, const char *name, const Units::Base *unit,
1997  const char *desc = nullptr)
1998  : ValueBase<Value>(parent, name, unit, desc)
1999  {
2000  }
2001 };
2002 
2007 class Vector : public VectorBase<Vector, StatStor>
2008 {
2009  public:
2010  Vector(Group *parent = nullptr)
2011  : VectorBase<Vector, StatStor>(parent, nullptr, UNIT_UNSPECIFIED,
2012  nullptr)
2013  {
2014  }
2015 
2016  Vector(Group *parent, const char *name, const char *desc = nullptr)
2018  {
2019  }
2020 
2021  Vector(Group *parent, const char *name, const Units::Base *unit,
2022  const char *desc = nullptr)
2023  : VectorBase<Vector, StatStor>(parent, name, unit, desc)
2024  {
2025  }
2026 };
2027 
2032 class AverageVector : public VectorBase<AverageVector, AvgStor>
2033 {
2034  public:
2035  AverageVector(Group *parent = nullptr)
2036  : VectorBase<AverageVector, AvgStor>(parent, nullptr, UNIT_UNSPECIFIED,
2037  nullptr)
2038  {
2039  }
2040 
2041  AverageVector(Group *parent, const char *name, const char *desc = nullptr)
2043  desc)
2044  {
2045  }
2046 
2047  AverageVector(Group *parent, const char *name, const Units::Base *unit,
2048  const char *desc = nullptr)
2049  : VectorBase<AverageVector, AvgStor>(parent, name, unit, desc)
2050  {
2051  }
2052 };
2053 
2058 class Vector2d : public Vector2dBase<Vector2d, StatStor>
2059 {
2060  public:
2061  Vector2d(Group *parent = nullptr)
2062  : Vector2dBase<Vector2d, StatStor>(parent, nullptr, UNIT_UNSPECIFIED,
2063  nullptr)
2064  {
2065  }
2066 
2067  Vector2d(Group *parent, const char *name, const char *desc = nullptr)
2069  desc)
2070  {
2071  }
2072 
2073  Vector2d(Group *parent, const char *name, const Units::Base *unit,
2074  const char *desc = nullptr)
2075  : Vector2dBase<Vector2d, StatStor>(parent, name, unit, desc)
2076  {
2077  }
2078 };
2079 
2084 class Distribution : public DistBase<Distribution, DistStor>
2085 {
2086  public:
2087  Distribution(Group *parent = nullptr)
2088  : DistBase<Distribution, DistStor>(parent, nullptr, UNIT_UNSPECIFIED,
2089  nullptr)
2090  {
2091  }
2092 
2093  Distribution(Group *parent, const char *name, const char *desc = nullptr)
2095  desc)
2096  {
2097  }
2098 
2099  Distribution(Group *parent, const char *name, const Units::Base *unit,
2100  const char *desc = nullptr)
2101  : DistBase<Distribution, DistStor>(parent, name, unit, desc)
2102  {
2103  }
2104 
2112  Distribution &
2113  init(Counter min, Counter max, Counter bkt)
2114  {
2115  DistStor::Params *params = new DistStor::Params(min, max, bkt);
2116  this->setParams(params);
2117  this->doInit();
2118  return this->self();
2119  }
2120 };
2121 
2126 class Histogram : public DistBase<Histogram, HistStor>
2127 {
2128  public:
2129  Histogram(Group *parent = nullptr)
2130  : DistBase<Histogram, HistStor>(parent, nullptr, UNIT_UNSPECIFIED,
2131  nullptr)
2132  {
2133  }
2134 
2135  Histogram(Group *parent, const char *name,
2136  const char *desc = nullptr)
2138  {
2139  }
2140 
2141  Histogram(Group *parent, const char *name, const Units::Base *unit,
2142  const char *desc = nullptr)
2143  : DistBase<Histogram, HistStor>(parent, name, unit, desc)
2144  {
2145  }
2146 
2152  Histogram &
2154  {
2155  HistStor::Params *params = new HistStor::Params(size);
2156  this->setParams(params);
2157  this->doInit();
2158  return this->self();
2159  }
2160 };
2161 
2166 class StandardDeviation : public DistBase<StandardDeviation, SampleStor>
2167 {
2168  public:
2172  StandardDeviation(Group *parent = nullptr)
2173  : DistBase<StandardDeviation, SampleStor>(parent, nullptr,
2174  UNIT_UNSPECIFIED, nullptr)
2175  {
2176  SampleStor::Params *params = new SampleStor::Params;
2177  this->doInit();
2178  this->setParams(params);
2179  }
2180 
2181  StandardDeviation(Group *parent, const char *name,
2182  const char *desc = nullptr)
2185  {
2186  SampleStor::Params *params = new SampleStor::Params;
2187  this->doInit();
2188  this->setParams(params);
2189  }
2190 
2191  StandardDeviation(Group *parent, const char *name, const Units::Base *unit,
2192  const char *desc = nullptr)
2194  {
2195  SampleStor::Params *params = new SampleStor::Params;
2196  this->doInit();
2197  this->setParams(params);
2198  }
2199 };
2200 
2205 class AverageDeviation : public DistBase<AverageDeviation, AvgSampleStor>
2206 {
2207  public:
2211  AverageDeviation(Group *parent = nullptr)
2212  : DistBase<AverageDeviation, AvgSampleStor>(parent, nullptr,
2213  UNIT_UNSPECIFIED, nullptr)
2214  {
2216  this->doInit();
2217  this->setParams(params);
2218  }
2219 
2220  AverageDeviation(Group *parent, const char *name,
2221  const char *desc = nullptr)
2224  {
2226  this->doInit();
2227  this->setParams(params);
2228  }
2229 
2230  AverageDeviation(Group *parent, const char *name, const Units::Base *unit,
2231  const char *desc = nullptr)
2233  {
2235  this->doInit();
2236  this->setParams(params);
2237  }
2238 };
2239 
2244 class VectorDistribution : public VectorDistBase<VectorDistribution, DistStor>
2245 {
2246  public:
2247  VectorDistribution(Group *parent = nullptr)
2248  : VectorDistBase<VectorDistribution, DistStor>(parent, nullptr,
2249  UNIT_UNSPECIFIED, nullptr)
2250  {
2251  }
2252 
2253  VectorDistribution(Group *parent, const char *name,
2254  const char *desc = nullptr)
2257  {
2258  }
2259 
2260  VectorDistribution(Group *parent, const char *name,
2261  const Units::Base *unit,
2262  const char *desc = nullptr)
2264  desc)
2265  {
2266  }
2267 
2278  {
2279  DistStor::Params *params = new DistStor::Params(min, max, bkt);
2280  this->setParams(params);
2281  this->doInit(size);
2282  return this->self();
2283  }
2284 };
2285 
2291  : public VectorDistBase<VectorStandardDeviation, SampleStor>
2292 {
2293  public:
2294  VectorStandardDeviation(Group *parent = nullptr)
2296  UNIT_UNSPECIFIED, nullptr)
2297  {
2298  }
2299 
2300  VectorStandardDeviation(Group *parent, const char *name,
2301  const char *desc = nullptr)
2304  {
2305  }
2306 
2307  VectorStandardDeviation(Group *parent, const char *name,
2308  const Units::Base *unit,
2309  const char *desc = nullptr)
2311  unit, desc)
2312  {
2313  }
2314 
2322  {
2323  SampleStor::Params *params = new SampleStor::Params;
2324  this->doInit(size);
2325  this->setParams(params);
2326  return this->self();
2327  }
2328 };
2329 
2335  : public VectorDistBase<VectorAverageDeviation, AvgSampleStor>
2336 {
2337  public:
2338  VectorAverageDeviation(Group *parent = nullptr)
2340  nullptr, UNIT_UNSPECIFIED, nullptr)
2341  {
2342  }
2343 
2344  VectorAverageDeviation(Group *parent, const char *name,
2345  const char *desc = nullptr)
2348  {
2349  }
2350 
2351  VectorAverageDeviation(Group *parent, const char *name,
2352  const Units::Base *unit,
2353  const char *desc = nullptr)
2355  unit, desc)
2356  {
2357  }
2358 
2366  {
2368  this->doInit(size);
2369  this->setParams(params);
2370  return this->self();
2371  }
2372 };
2373 
2374 template <class Stat>
2375 class FormulaInfoProxy : public InfoProxy<Stat, FormulaInfo>
2376 {
2377  protected:
2378  mutable VResult vec;
2379  mutable VCounter cvec;
2380 
2381  public:
2382  FormulaInfoProxy(Stat &stat) : InfoProxy<Stat, FormulaInfo>(stat) {}
2383 
2384  size_type size() const { return this->s.size(); }
2385 
2386  const VResult &
2387  result() const
2388  {
2389  this->s.result(vec);
2390  return vec;
2391  }
2392  Result total() const { return this->s.total(); }
2393  VCounter &value() const { return cvec; }
2394 
2395  std::string str() const { return this->s.str(); }
2396 };
2397 
2398 template <class Stat>
2399 class SparseHistInfoProxy : public InfoProxy<Stat, SparseHistInfo>
2400 {
2401  public:
2402  SparseHistInfoProxy(Stat &stat) : InfoProxy<Stat, SparseHistInfo>(stat) {}
2403 };
2404 
2409 template <class Derived, class Stor>
2410 class SparseHistBase : public DataWrap<Derived, SparseHistInfoProxy>
2411 {
2412  public:
2414  typedef Stor Storage;
2415  typedef typename Stor::Params Params;
2416 
2417  protected:
2419  char storage[sizeof(Storage)];
2420 
2421  protected:
2426  Storage *
2428  {
2429  return reinterpret_cast<Storage *>(storage);
2430  }
2431 
2436  const Storage *
2437  data() const
2438  {
2439  return reinterpret_cast<const Storage *>(storage);
2440  }
2441 
2442  void
2444  {
2445  new (storage) Storage(this->info());
2446  this->setInit();
2447  }
2448 
2449  public:
2450  SparseHistBase(Group *parent, const char *name,
2451  const Units::Base *unit,
2452  const char *desc)
2453  : DataWrap<Derived, SparseHistInfoProxy>(parent, name, unit, desc)
2454  {
2455  }
2456 
2463  template <typename U>
2464  void sample(const U &v, int n = 1) { data()->sample(v, n); }
2465 
2470  size_type size() const { return data()->size(); }
2475  bool zero() const { return data()->zero(); }
2476 
2477  void
2479  {
2480  Info *info = this->info();
2481  data()->prepare(info, info->data);
2482  }
2483 
2487  void
2489  {
2490  data()->reset(this->info());
2491  }
2492 };
2493 
2494 class SparseHistogram : public SparseHistBase<SparseHistogram, SparseHistStor>
2495 {
2496  public:
2497  SparseHistogram(Group *parent = nullptr)
2498  : SparseHistBase<SparseHistogram, SparseHistStor>(parent, nullptr,
2499  UNIT_UNSPECIFIED, nullptr)
2500  {
2501  }
2502 
2503  SparseHistogram(Group *parent, const char *name,
2504  const char *desc = nullptr)
2507  {
2508  }
2509 
2510  SparseHistogram(Group *parent, const char *name, const Units::Base *unit,
2511  const char *desc = nullptr)
2513  desc)
2514  {
2515  }
2516 
2522  SparseHistogram &
2524  {
2526  this->setParams(params);
2527  this->doInit();
2528  return this->self();
2529  }
2530 };
2531 
2532 class Temp;
2538 class Formula : public DataWrapVec<Formula, FormulaInfoProxy>
2539 {
2540  protected:
2543  friend class Temp;
2544 
2545  public:
2549  Formula(Group *parent = nullptr, const char *name = nullptr,
2550  const char *desc = nullptr);
2551 
2552  Formula(Group *parent, const char *name, const Units::Base *unit,
2553  const char *desc = nullptr);
2554 
2555  Formula(Group *parent, const char *name, const char *desc,
2556  const Temp &r);
2557 
2558  Formula(Group *parent, const char *name, const Units::Base *unit,
2559  const char *desc, const Temp &r);
2560 
2566  const Formula &operator=(const Temp &r);
2567 
2568  template<typename T>
2569  const Formula &operator=(const T &v)
2570  {
2571  *this = Temp(v);
2572  return *this;
2573  }
2574 
2580  const Formula &operator+=(Temp r);
2581 
2587  const Formula &operator/=(Temp r);
2588 
2596  void result(VResult &vec) const;
2597 
2608  Result total() const;
2609 
2613  size_type size() const;
2614 
2615  void prepare() { }
2616 
2620  void reset();
2621 
2625  bool zero() const;
2626 
2627  std::string str() const;
2628 };
2629 
2630 class FormulaNode : public Node
2631 {
2632  private:
2634  mutable VResult vec;
2635 
2636  public:
2638 
2639  size_type size() const { return formula.size(); }
2640  const VResult &result() const { formula.result(vec); return vec; }
2641  Result total() const { return formula.total(); }
2642 
2643  std::string str() const { return formula.str(); }
2644 };
2645 
2649 class Temp
2650 {
2651  protected:
2656 
2657  public:
2662  Temp(const NodePtr &n) : node(n) { }
2663 
2664  Temp(NodePtr &&n) : node(std::move(n)) { }
2665 
2670  operator NodePtr&() { return node; }
2671 
2675  NodePtr getNodePtr() const { return node; }
2676 
2677  public:
2682  Temp(const Scalar &s)
2683  : node(new ScalarStatNode(s.info()))
2684  { }
2685 
2690  Temp(const Value &s)
2691  : node(new ScalarStatNode(s.info()))
2692  { }
2693 
2698  Temp(const Average &s)
2699  : node(new ScalarStatNode(s.info()))
2700  { }
2701 
2706  Temp(const Vector &s)
2707  : node(new VectorStatNode(s.info()))
2708  { }
2709 
2711  : node(new VectorStatNode(s.info()))
2712  { }
2713 
2717  Temp(const Formula &f)
2718  : node(new FormulaNode(f))
2719  { }
2720 
2725  template <class Stat>
2727  : node(new ScalarProxyNode<Stat>(p))
2728  { }
2729 
2734  Temp(signed char value)
2735  : node(new ConstNode<signed char>(value))
2736  { }
2737 
2742  Temp(unsigned char value)
2743  : node(new ConstNode<unsigned char>(value))
2744  { }
2745 
2750  Temp(signed short value)
2751  : node(new ConstNode<signed short>(value))
2752  { }
2753 
2758  Temp(unsigned short value)
2759  : node(new ConstNode<unsigned short>(value))
2760  { }
2761 
2766  Temp(signed int value)
2767  : node(new ConstNode<signed int>(value))
2768  { }
2769 
2774  Temp(unsigned int value)
2775  : node(new ConstNode<unsigned int>(value))
2776  { }
2777 
2782  Temp(signed long value)
2783  : node(new ConstNode<signed long>(value))
2784  { }
2785 
2790  Temp(unsigned long value)
2791  : node(new ConstNode<unsigned long>(value))
2792  { }
2793 
2798  Temp(signed long long value)
2799  : node(new ConstNode<signed long long>(value))
2800  { }
2801 
2806  Temp(unsigned long long value)
2807  : node(new ConstNode<unsigned long long>(value))
2808  { }
2809 
2814  Temp(float value)
2815  : node(new ConstNode<float>(value))
2816  { }
2817 
2822  Temp(double value)
2823  : node(new ConstNode<double>(value))
2824  { }
2825 };
2826 
2827 
2832 inline Temp
2834 {
2835  return Temp(std::make_shared<BinaryNode<std::plus<Result> > >(l, r));
2836 }
2837 
2838 inline Temp
2840 {
2841  return Temp(std::make_shared<BinaryNode<std::minus<Result> > >(l, r));
2842 }
2843 
2844 inline Temp
2846 {
2847  return Temp(std::make_shared<BinaryNode<std::multiplies<Result> > >(l, r));
2848 }
2849 
2850 inline Temp
2852 {
2853  return Temp(std::make_shared<BinaryNode<std::divides<Result> > >(l, r));
2854 }
2855 
2856 inline Temp
2858 {
2859  return Temp(std::make_shared<UnaryNode<std::negate<Result> > >(l));
2860 }
2861 
2862 template <typename T>
2863 inline Temp
2865 {
2866  return Temp(std::make_shared<ConstNode<T> >(val));
2867 }
2868 
2869 template <typename T>
2870 inline Temp
2872 {
2873  return Temp(std::make_shared<ConstVectorNode<T> >(val));
2874 }
2875 
2876 inline Temp
2878 {
2879  return Temp(std::make_shared<SumNode<std::plus<Result> > >(val));
2880 }
2881 
2883 void dump();
2884 void reset();
2885 void enable();
2886 bool enabled();
2887 const Info* resolve(const std::string &name);
2888 
2894 typedef void (*Handler)();
2895 
2896 void registerHandlers(Handler reset_handler, Handler dump_handler);
2897 
2902 void registerResetCallback(const std::function<void()> &callback);
2903 
2908 void registerDumpCallback(const std::function<void()> &callback);
2909 
2913 void processResetQueue();
2914 
2918 void processDumpQueue();
2919 
2921 
2922 typedef std::map<const void *, Info *> MapType;
2923 MapType &statsMap();
2924 
2925 } // namespace Stats
2926 
2927 void debugDumpStats();
2928 
2929 #endif // __BASE_STATISTICS_HH__
Stats::FormulaNode::total
Result total() const
Return the total of the result vector.
Definition: statistics.hh:2641
Stats::DataWrap::DataWrap
DataWrap(Group *parent, const char *name, const Units::Base *unit, const char *desc)
Definition: statistics.hh:244
Stats::Distribution::Distribution
Distribution(Group *parent, const char *name, const Units::Base *unit, const char *desc=nullptr)
Definition: statistics.hh:2099
Stats::ScalarProxy::ScalarProxy
ScalarProxy(Stat &s, off_type i)
Create and initialize this proxy, do not register it with the database.
Definition: statistics.hh:804
Stats::ScalarBase::data
const Storage * data() const
Retrieve a const pointer to the storage.
Definition: statistics.hh:530
Stats::MethodProxy::MethodPointer
V(T::* MethodPointer)() const
Definition: statistics.hh:684
Stats::VectorBase::Storage
Stor Storage
Definition: statistics.hh:906
Stats::MethodProxy::total
Result total() const
Definition: statistics.hh:691
Stats::ScalarProxy::operator++
void operator++()
Increment the stat by 1.
Definition: statistics.hh:836
Stats::Histogram::Histogram
Histogram(Group *parent, const char *name, const Units::Base *unit, const char *desc=nullptr)
Definition: statistics.hh:2141
Stats::OpString< std::minus< Result > >::str
static std::string str()
Definition: statistics.hh:1697
Stats::Vector2dBase::size
size_type size() const
Definition: statistics.hh:1201
Stats::StandardDeviation::StandardDeviation
StandardDeviation(Group *parent=nullptr)
Construct and initialize this distribution.
Definition: statistics.hh:2172
Stats::ValueBase::result
Result result() const
Definition: statistics.hh:755
types.hh
Stats::Temp::Temp
Temp(unsigned short value)
Create a ConstNode.
Definition: statistics.hh:2758
Stats::UnaryNode::l
NodePtr l
Definition: statistics.hh:1728
Stats::ValueBase::scalar
Derived & scalar(T &value)
Definition: statistics.hh:713
Stats::Vector2d::Vector2d
Vector2d(Group *parent=nullptr)
Definition: statistics.hh:2061
Stats::FormulaInfoProxy::vec
VResult vec
Definition: statistics.hh:2378
Stats::Vector2dBase::x
size_type x
Definition: statistics.hh:1138
Stats::Formula::operator+=
const Formula & operator+=(Temp r)
Add the given tree to the existing one.
Definition: statistics.cc:173
Stats::ValueBase::zero
bool zero() const
Definition: statistics.hh:760
Stats::VectorStatNode::result
const VResult & result() const
Return the result vector of this subtree.
Definition: statistics.hh:1630
Stats::SparseHistogram::SparseHistogram
SparseHistogram(Group *parent, const char *name, const char *desc=nullptr)
Definition: statistics.hh:2503
Stats::ScalarInfoProxy::result
Result result() const
Definition: statistics.hh:117
Stats::MethodProxy::object
T * object
Definition: statistics.hh:683
Stats::ValueBase::method
Derived & method(T *obj, V(T::*method)() const)
Extended functor that calls the specified method of the provided object.
Definition: statistics.hh:747
Stats::FormulaInfoProxy::FormulaInfoProxy
FormulaInfoProxy(Stat &stat)
Definition: statistics.hh:2382
Stats::OpString< std::divides< Result > >::str
static std::string str()
Definition: statistics.hh:1709
Stats::VectorBase::doInit
void doInit(size_type s)
Definition: statistics.hh:935
Stats::InfoProxy::prepare
void prepare()
Definition: statistics.hh:100
Stats::SumNode::total
Result total() const
Return the total of the result vector.
Definition: statistics.hh:1893
Stats::VectorStandardDeviation::VectorStandardDeviation
VectorStandardDeviation(Group *parent, const char *name, const Units::Base *unit, const char *desc=nullptr)
Definition: statistics.hh:2307
Stats::SparseHistogram::SparseHistogram
SparseHistogram(Group *parent=nullptr)
Definition: statistics.hh:2497
Stats::VectorStatNode::total
Result total() const
Return the total of the result vector.
Definition: statistics.hh:1631
Stats::SparseHistInfoProxy
Definition: statistics.hh:2399
Stats::Vector2dBase::operator[]
Proxy operator[](off_type index)
Definition: statistics.hh:1192
Stats::ScalarBase::operator++
void operator++(int)
Increment the stat by 1.
Definition: statistics.hh:565
Stats::ValueProxy::scalar
T * scalar
Definition: statistics.hh:632
Stats::ConstVectorNode::str
std::string str() const
Definition: statistics.hh:1674
Stats::processResetQueue
void processResetQueue()
Process all the callbacks in the reset callbacks queue.
Definition: statistics.cc:255
Stats::ValueProxy::value
Counter value() const
Definition: statistics.hh:636
Stats::Vector2d::Vector2d
Vector2d(Group *parent, const char *name, const Units::Base *unit, const char *desc=nullptr)
Definition: statistics.hh:2073
Stats::VectorDistribution::VectorDistribution
VectorDistribution(Group *parent, const char *name, const char *desc=nullptr)
Definition: statistics.hh:2253
Stats::VectorProxy::operator=
const VectorProxy & operator=(const VectorProxy &sp)
Definition: statistics.hh:1106
Stats::UnaryNode::UnaryNode
UnaryNode(NodePtr &p)
Definition: statistics.hh:1732
Stats::DistInfoProxy
Definition: statistics.hh:151
data
const char data[]
Definition: circlebuf.test.cc:47
Stats::VectorInfo
Definition: info.hh:159
Stats::operator+
Temp operator+(Temp l, Temp r)
Definition: statistics.hh:2833
MipsISA::index
Bitfield< 30, 0 > index
Definition: pra_constants.hh:44
Stats::VectorDistInfoProxy::size
size_type size() const
Definition: statistics.hh:163
Stats::ScalarProxy::operator=
void operator=(const U &v)
Set the data value to the given value.
Definition: statistics.hh:855
Stats::VectorDistBase::~VectorDistBase
~VectorDistBase()
Definition: statistics.hh:1414
Stats::VectorDistBase::VectorDistBase
VectorDistBase(Group *parent, const char *name, const Units::Base *unit, const char *desc)
Definition: statistics.hh:1407
Stats::VectorProxy::offset
off_type offset
Definition: statistics.hh:1053
Stats::ScalarStatNode
Definition: statistics.hh:1556
group.hh
Stats::AvgStor
Templatized storage and interface to a per-tick average stat.
Definition: storage.hh:123
Stats::VectorBase::Params
Stor::Params Params
Definition: statistics.hh:907
Stats::BinaryNode::total
Result total() const override
Return the total of the result vector.
Definition: statistics.hh:1813
Stats::off_type
unsigned int off_type
Definition: types.hh:55
Stats::DistProxy::data
const Stat::Storage * data() const
Definition: statistics.hh:1471
Stats::SparseHistBase::prepare
void prepare()
Definition: statistics.hh:2478
Stats::Vector2dBase::storage
Storage * storage
Definition: statistics.hh:1141
Stats::DataWrap::Info
InfoProxyType< Derived > Info
Definition: statistics.hh:220
Stats::DistBase::M5_ALIGNED
M5_ALIGNED(8) char storage[sizeof(Storage)]
The storage for this stat.
Stats::ConstVectorNode::total
Result total() const
Return the total of the result vector.
Definition: statistics.hh:1663
Stats::ValueBase::ValueBase
ValueBase(Group *parent, const char *name, const Units::Base *unit, const char *desc)
Definition: statistics.hh:701
Stats::FunctorProxy::value
Counter value() const
Definition: statistics.hh:649
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
Stats::FunctorProxy< T, typename std::enable_if_t< std::is_constructible< std::function< Result()>, const T & >::value > >::value
Counter value() const
Definition: statistics.hh:670
Stats::HistStor
Templatized storage and interface for a histogram stat.
Definition: storage.hh:395
Stats::enable
void enable()
Definition: statistics.cc:281
Stats::AverageVector::AverageVector
AverageVector(Group *parent, const char *name, const char *desc=nullptr)
Definition: statistics.hh:2041
Stats::DistProxy::DistProxy
DistProxy(Stat &s, off_type i)
Definition: statistics.hh:1474
Stats::VectorProxy::total
Result total() const
Definition: statistics.hh:1086
Stats::Temp::getNodePtr
NodePtr getNodePtr() const
Makde gcc < 4.6.3 happy and explicitly get the underlying node.
Definition: statistics.hh:2675
Stats::FormulaNode::str
std::string str() const
Definition: statistics.hh:2643
Stats::SumNode::vresult
VResult vresult
Definition: statistics.hh:1871
Stats::FunctorProxy::total
Result total() const
Definition: statistics.hh:651
Stats::DataWrapVec::reset
void reset()
Definition: statistics.hh:431
Stats::Temp::Temp
Temp(unsigned int value)
Create a ConstNode.
Definition: statistics.hh:2774
Stats::ScalarInfoProxy::ScalarInfoProxy
ScalarInfoProxy(Stat &stat)
Definition: statistics.hh:114
Stats::DataWrapVec::prepare
void prepare()
Definition: statistics.hh:420
Stats::ScalarBase::size
size_type size() const
Return the number of elements, always 1 for a scalar.
Definition: statistics.hh:597
Stats::VectorAverageDeviation::init
VectorAverageDeviation & init(size_type size)
Initialize storage for this distribution.
Definition: statistics.hh:2365
Flags< FlagsType >
Stats::ValueProxy::ValueProxy
ValueProxy(T &val)
Definition: statistics.hh:635
Stats::ScalarBase::doInit
void doInit()
Definition: statistics.hh:536
Stats::VectorAverageDeviation::VectorAverageDeviation
VectorAverageDeviation(Group *parent, const char *name, const Units::Base *unit, const char *desc=nullptr)
Definition: statistics.hh:2351
Stats::VectorBase
Implementation of a vector of stats.
Definition: statistics.hh:903
Stats::Temp::Temp
Temp(double value)
Create a ConstNode.
Definition: statistics.hh:2822
Stats::StandardDeviation::StandardDeviation
StandardDeviation(Group *parent, const char *name, const char *desc=nullptr)
Definition: statistics.hh:2181
Stats::DistBase::data
const Storage * data() const
Retrieve a const pointer to the storage.
Definition: statistics.hh:1296
Stats::ScalarProxyNode::size
size_type size() const
Return the number of nodes in the subtree starting at this node.
Definition: statistics.hh:1608
Stats::Value::Value
Value(Group *parent, const char *name, const Units::Base *unit, const char *desc=nullptr)
Definition: statistics.hh:1996
Stats::ProxyInfo::prepare
void prepare()
Prepare the stat for dumping.
Definition: statistics.hh:621
Stats::ValueBase::str
std::string str() const
Definition: statistics.hh:759
Stats::OpString
Definition: statistics.hh:1686
Stats::ScalarBase
Implementation of a scalar stat.
Definition: statistics.hh:501
Stats::Vector2dInfo
Definition: info.hh:221
Stats::registerDumpCallback
void registerDumpCallback(const std::function< void()> &callback)
Register a callback that should be called whenever statistics are about to be dumped.
Definition: statistics.cc:319
Stats::DistProxy::stat
Stat & stat
Definition: statistics.hh:1466
Stats::VectorDistBase::Proxy
DistProxy< Derived > Proxy
Definition: statistics.hh:1368
Stats::Vector2dInfoProxy::total
Result total() const
Definition: statistics.hh:172
Stats::InfoAccess::_info
Info * _info
Definition: statistics.hh:178
Stats::FormulaNode::formula
const Formula & formula
Definition: statistics.hh:2633
sc_dt::to_string
const std::string to_string(sc_enc enc)
Definition: sc_fxdefs.cc:91
Stats::DataWrap
Definition: statistics.hh:217
Stats::HistStor::Params
The parameters for a distribution stat.
Definition: storage.hh:456
Stats::Temp::Temp
Temp(float value)
Create a ConstNode.
Definition: statistics.hh:2814
Stats::FormulaInfoProxy::value
VCounter & value() const
Definition: statistics.hh:2393
Stats::BinaryNode::size
size_type size() const override
Return the number of nodes in the subtree starting at this node.
Definition: statistics.hh:1845
Stats::ScalarProxy::operator=
const ScalarProxy & operator=(const ScalarProxy &sp)
Set this proxy equal to the provided one.
Definition: statistics.hh:823
Stats::VectorDistBase::Params
Stor::Params Params
Definition: statistics.hh:1367
Stats::Formula::str
std::string str() const
Definition: statistics.cc:236
Stats::AvgSampleStor::Params
Definition: storage.hh:643
Stats::DataWrapVec2d::ysubname
Derived & ysubname(off_type index, const std::string &subname)
Definition: statistics.hh:471
Stats::ValueBase::functor
Derived & functor(const T &func)
Definition: statistics.hh:722
Stats::Temp::Temp
Temp(const NodePtr &n)
Copy the given pointer to this class.
Definition: statistics.hh:2662
Stats::Formula::reset
void reset()
Formulas don't need to be reset.
Definition: statistics.cc:220
Stats::ScalarProxy::size
size_type size() const
Return the number of elements, always 1 for a scalar.
Definition: statistics.hh:888
Stats::FunctorProxy< T, typename std::enable_if_t< std::is_constructible< std::function< Result()>, const T & >::value > >::functor
std::function< Result()> functor
Definition: statistics.hh:666
Stats::SparseHistBase::size
size_type size() const
Return the number of entries in this stat.
Definition: statistics.hh:2470
Stats::ProxyInfo::visit
void visit(Output &visitor)
Visitor entry for outputing statistics data.
Definition: statistics.hh:625
cast.hh
Stats::VectorProxy::size
size_type size() const
Definition: statistics.hh:1121
Stats::DistBase::size
size_type size() const
Return the number of entries in this stat.
Definition: statistics.hh:1329
Stats::SparseHistBase
Implementation of a sparse histogram stat.
Definition: statistics.hh:2410
Stats::Vector2dInfo::cvec
VCounter cvec
Local storage for the entry values, used for printing.
Definition: info.hh:233
Stats::ScalarBase::data
Storage * data()
Retrieve the storage.
Definition: statistics.hh:518
Stats::VectorStatNode
Definition: statistics.hh:1623
X86ISA::op
Bitfield< 4 > op
Definition: types.hh:79
Stats::VectorInfoProxy::result
const VResult & result() const
Definition: statistics.hh:141
Stats::ScalarProxyNode::total
Result total() const
Return the total of the result vector.
Definition: statistics.hh:1602
Stats::SampleStor::Params
Definition: storage.hh:567
Stats::ScalarProxy
A proxy class to access the stat at a given index in a VectorBase stat.
Definition: statistics.hh:777
Stats::ScalarBase::operator-=
void operator-=(const U &v)
Decrement the stat by the given value.
Definition: statistics.hh:591
Stats::VectorProxy::vec
VResult vec
Definition: statistics.hh:1057
Stats::Vector2dInfo::y_subnames
std::vector< std::string > y_subnames
Definition: info.hh:227
std::vector< Counter >
Stats::InfoProxy
Definition: statistics.hh:91
Stats::SumNode::str
std::string str() const
Definition: statistics.hh:1911
Stats::VectorBase::operator[]
Proxy operator[](off_type index)
Return a reference (ScalarProxy) to the stat at the given index.
Definition: statistics.hh:1041
Stats::InfoProxy::check
bool check() const
Definition: statistics.hh:99
Stats::InfoProxy::visit
void visit(Output &visitor)
Definition: statistics.hh:103
Stats::VectorInfoProxy::size
size_type size() const
Definition: statistics.hh:131
Stats::VectorBase::data
Storage * data(off_type index)
Retrieve the storage.
Definition: statistics.hh:925
Stats::Temp::Temp
Temp(signed char value)
Create a ConstNode.
Definition: statistics.hh:2734
Stats::AverageDeviation
Calculates the per tick mean and variance of the samples.
Definition: statistics.hh:2205
Stats::Value
Definition: statistics.hh:1983
Stats::BinaryNode::str
std::string str() const override
Definition: statistics.hh:1860
Stats::VectorDistBase::Info
VectorDistInfoProxy< Derived > Info
Definition: statistics.hh:1365
Stats::statsMap
MapType & statsMap()
Definition: statistics.cc:64
Stats::VectorBase::zero
bool zero() const
Definition: statistics.hh:990
Stats::VectorDistBase::doInit
void doInit(size_type s)
Definition: statistics.hh:1390
Stats::Temp::Temp
Temp(signed long long value)
Create a ConstNode.
Definition: statistics.hh:2798
Stats::UnaryNode::result
const VResult & result() const
Return the result vector of this subtree.
Definition: statistics.hh:1735
Stats::reset
void reset()
Definition: statistics.cc:299
Stats::UnaryNode::vresult
VResult vresult
Definition: statistics.hh:1729
Stats::display
const FlagsType display
Print this stat.
Definition: info.hh:48
Stats::VectorBase::data
const Storage * data(off_type index) const
Retrieve a const pointer to the storage.
Definition: statistics.hh:932
Stats::Vector2dBase::check
bool check() const
Definition: statistics.hh:1252
Stats::Node
Base class for formula statistic node.
Definition: statistics.hh:1526
Stats::Vector
A vector of scalar stats.
Definition: statistics.hh:2007
Stats::VectorProxy::VectorProxy
VectorProxy(const VectorProxy &sp)
Definition: statistics.hh:1100
Stats::ScalarProxy::result
Result result() const
Return the current value of this statas a result type.
Definition: statistics.hh:797
Stats::VectorAverageDeviation
This is a vector of AverageDeviation stats.
Definition: statistics.hh:2334
Stats::VectorDistribution
A vector of distributions.
Definition: statistics.hh:2244
Stats::VectorDistribution::VectorDistribution
VectorDistribution(Group *parent=nullptr)
Definition: statistics.hh:2247
Stats::OpString< std::multiplies< Result > >::str
static std::string str()
Definition: statistics.hh:1703
Stats::Formula::Temp
friend class Temp
Definition: statistics.hh:2543
Stats::ScalarInfo::result
virtual Result result() const =0
Stats::VectorDistBase::operator[]
Proxy operator[](off_type index)
Definition: statistics.hh:1424
Stats::DistStor
Templatized storage and interface for a distribution stat.
Definition: storage.hh:229
Stats::UnaryNode::str
std::string str() const
Definition: statistics.hh:1763
Stats::VectorBase::storage
Storage * storage
The storage of this stat.
Definition: statistics.hh:916
Stats::Formula::operator=
const Formula & operator=(const Temp &r)
Set an unitialized Formula to the given root.
Definition: statistics.cc:163
storage.hh
Stats::ConstNode::ConstNode
ConstNode(T s)
Definition: statistics.hh:1645
Stats::ScalarBase::Storage
Stor Storage
Definition: statistics.hh:504
Stats::VectorStatNode::VectorStatNode
VectorStatNode(const VectorInfo *d)
Definition: statistics.hh:1629
Stats::Vector::Vector
Vector(Group *parent, const char *name, const Units::Base *unit, const char *desc=nullptr)
Definition: statistics.hh:2021
Stats::ScalarProxy::value
Counter value() const
Return the current value of this stat as its base type.
Definition: statistics.hh:791
Stats::Temp::Temp
Temp(const Scalar &s)
Create a new ScalarStatNode.
Definition: statistics.hh:2682
Stats::Formula::zero
bool zero() const
Definition: statistics.cc:225
Stats::ScalarProxy::operator++
void operator++(int)
Increment the stat by 1.
Definition: statistics.hh:844
Stats::Temp::node
NodePtr node
Pointer to a Node object.
Definition: statistics.hh:2655
Stats::DataWrapVec::DataWrapVec
DataWrapVec(Group *parent=nullptr, const char *name=nullptr, const Units::Base *unit=UNIT_UNSPECIFIED, const char *desc=nullptr)
Definition: statistics.hh:366
Stats::BinaryNode
Definition: statistics.hh:1770
Stats::DataWrap::flags
Derived & flags(Flags _flags)
Set the flags and marks this stat to print at the end of simulation.
Definition: statistics.hh:339
Stats::Histogram
A simple histogram stat.
Definition: statistics.hh:2126
Stats::StorageParams
Definition: storage.hh:45
Stats::Node::total
virtual Result total() const =0
Return the total of the result vector.
Stats::VectorAverageDeviation::VectorAverageDeviation
VectorAverageDeviation(Group *parent, const char *name, const char *desc=nullptr)
Definition: statistics.hh:2344
Stats::DataWrapVec2d::DataWrapVec2d
DataWrapVec2d(Group *parent, const char *name, const Units::Base *unit, const char *desc)
Definition: statistics.hh:448
Stats::ScalarStatNode::total
Result total() const
Return the total of the result vector.
Definition: statistics.hh:1572
Stats::DataWrapVec2d::ysubnames
Derived & ysubnames(const char **names)
Definition: statistics.hh:459
Stats::ScalarInfo::total
virtual Result total() const =0
str.hh
Stats::Formula::total
Result total() const
Return the total Formula result.
Definition: statistics.cc:205
Stats::AverageVector::AverageVector
AverageVector(Group *parent, const char *name, const Units::Base *unit, const char *desc=nullptr)
Definition: statistics.hh:2047
Stats::VectorDistInfo
Definition: info.hh:203
Stats::AverageDeviation::AverageDeviation
AverageDeviation(Group *parent, const char *name, const Units::Base *unit, const char *desc=nullptr)
Definition: statistics.hh:2230
Stats::Vector::Vector
Vector(Group *parent=nullptr)
Definition: statistics.hh:2010
Stats::SumNode::size
size_type size() const
Return the number of nodes in the subtree starting at this node.
Definition: statistics.hh:1908
Stats::Scalar
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:1933
ArmISA::n
Bitfield< 31 > n
Definition: miscregs_types.hh:450
Stats::InfoProxy::zero
bool zero() const
Definition: statistics.hh:107
Stats::InfoAccess
Definition: statistics.hh:175
Stats::DistBase::doInit
void doInit()
Definition: statistics.hh:1302
Stats::VectorProxy::operator[]
ScalarProxy< Stat > operator[](off_type index)
Definition: statistics.hh:1115
Stats::VectorProxy::data
const Stat::Storage * data(off_type index) const
Definition: statistics.hh:1067
Stats::DistStor::Params
The parameters for a distribution stat.
Definition: storage.hh:258
info.hh
Stats::BinaryNode::l
NodePtr l
Definition: statistics.hh:1773
Stats::DistProxy::size
size_type size() const
Definition: statistics.hh:1499
Stats::Distribution::Distribution
Distribution(Group *parent, const char *name, const char *desc=nullptr)
Definition: statistics.hh:2093
Stats::DistInfo
Definition: info.hh:196
Stats::Vector2dBase::~Vector2dBase
~Vector2dBase()
Definition: statistics.hh:1155
Stats::VectorInfoProxy::value
VCounter & value() const
Definition: statistics.hh:134
Stats::ScalarInfo::value
virtual Counter value() const =0
Stats::ValueBase
Definition: statistics.hh:695
Stats::ScalarInfoProxy
Definition: statistics.hh:111
Stats::Temp
Helper class to construct formula node trees.
Definition: statistics.hh:2649
Stats::enabled
bool enabled()
Definition: statistics.cc:275
Stats::Node::result
virtual const VResult & result() const =0
Return the result vector of this subtree.
Stats::InfoProxy::reset
void reset()
Definition: statistics.hh:101
Stats::FormulaInfoProxy::cvec
VCounter cvec
Definition: statistics.hh:2379
ArmISA::a
Bitfield< 8 > a
Definition: miscregs_types.hh:62
Stats::DistBase::data
Storage * data()
Retrieve the storage.
Definition: statistics.hh:1286
Stats::Average::Average
Average(Group *parent=nullptr)
Definition: statistics.hh:1965
Stats::ScalarBase::value
Counter value() const
Return the current value of this stat as its base type.
Definition: statistics.hh:603
Stats::Temp::Temp
Temp(const AverageVector &s)
Definition: statistics.hh:2710
Stats::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:353
Stats::VectorDistInfoProxy::VectorDistInfoProxy
VectorDistInfoProxy(Stat &stat)
Definition: statistics.hh:161
Stats::DataWrapVec
Definition: statistics.hh:361
Stats::Vector::Vector
Vector(Group *parent, const char *name, const char *desc=nullptr)
Definition: statistics.hh:2016
Stats::Vector2dBase::Params
Stor::Params Params
Definition: statistics.hh:1130
Stats::InfoAccess::setInfo
void setInfo(Group *parent, Info *info)
Set up an info class for this statistic.
Definition: statistics.cc:71
Stats::ScalarStatNode::ScalarStatNode
ScalarStatNode(const ScalarInfo *d)
Definition: statistics.hh:1563
Stats::Temp::Temp
Temp(const ScalarProxy< Stat > &p)
Create a new ScalarProxyNode.
Definition: statistics.hh:2726
Stats::VectorDistBase::prepare
void prepare()
Definition: statistics.hh:1446
Stats::VectorDistBase::zero
bool zero() const
Definition: statistics.hh:1437
Stats::Handler
void(* Handler)()
Register reset and dump handlers.
Definition: statistics.hh:2894
Stats::resolve
const Info * resolve(const std::string &name)
Definition: statistics.cc:308
Stats::SparseHistBase::doInit
void doInit()
Definition: statistics.hh:2443
Stats::SparseHistBase::Params
Stor::Params Params
Definition: statistics.hh:2415
Stats::FormulaNode::FormulaNode
FormulaNode(const Formula &f)
Definition: statistics.hh:2637
Stats::ScalarProxy::stat
Stat & stat
Pointer to the parent Vector.
Definition: statistics.hh:781
Stats::VectorDistribution::VectorDistribution
VectorDistribution(Group *parent, const char *name, const Units::Base *unit, const char *desc=nullptr)
Definition: statistics.hh:2260
Stats::sum
Temp sum(Temp val)
Definition: statistics.hh:2877
ArmISA::d
Bitfield< 9 > d
Definition: miscregs_types.hh:60
Stats::registerResetCallback
void registerResetCallback(const std::function< void()> &callback)
Register a callback that should be called whenever statistics are reset.
Definition: statistics.cc:267
Stats::ScalarProxy::operator--
void operator--(int)
Decrement the stat by 1.
Definition: statistics.hh:846
Stats::Formula::root
NodePtr root
The root of the tree which represents the Formula.
Definition: statistics.hh:2542
Stats::DistProxy::data
Stat::Storage * data()
Definition: statistics.hh:1470
Stats::ValueProxy::total
Result total() const
Definition: statistics.hh:638
Stats::ProxyInfo::reset
void reset()
Reset the stat to the default state.
Definition: statistics.hh:622
Stats::ConstVectorNode::vresult
VResult vresult
Definition: statistics.hh:1656
Stats::VectorInfo::total
virtual Result total() const =0
Stats::MethodProxy::value
Counter value() const
Definition: statistics.hh:689
Stats::DataWrap::setSeparator
const std::string & setSeparator() const
Definition: statistics.hh:291
Stats::Vector2dBase::data
Storage * data(off_type index)
Definition: statistics.hh:1144
Stats::ScalarBase::M5_ALIGNED
M5_ALIGNED(8) char storage[sizeof(Storage)]
The storage of this stat.
Stats::DataWrap::operator=
DataWrap & operator=(const DataWrap &)=delete
MipsISA::r
r
Definition: pra_constants.hh:95
Stats::ValueBase::reset
void reset()
Definition: statistics.hh:763
Stats::Temp::Temp
Temp(signed long value)
Create a ConstNode.
Definition: statistics.hh:2782
Stats::DistProxy::zero
bool zero() const
Definition: statistics.hh:1505
Stats::Vector2dInfoProxy
Definition: statistics.hh:167
Stats::ConstNode::vresult
VResult vresult
Definition: statistics.hh:1642
Stats::SparseHistBase::zero
bool zero() const
Return true if no samples have been added.
Definition: statistics.hh:2475
Stats::VectorStandardDeviation::VectorStandardDeviation
VectorStandardDeviation(Group *parent, const char *name, const char *desc=nullptr)
Definition: statistics.hh:2300
Stats::DistBase::prepare
void prepare()
Definition: statistics.hh:1337
Stats::ConstVectorNode::ConstVectorNode
ConstVectorNode(const T &s)
Definition: statistics.hh:1659
Stats::SumNode::SumNode
SumNode(NodePtr &p)
Definition: statistics.hh:1874
Stats::SparseHistStor
Templatized storage and interface for a sparse histogram stat.
Definition: storage.hh:710
Stats::VectorInfoProxy::total
Result total() const
Definition: statistics.hh:147
Stats::SumNode
Definition: statistics.hh:1867
Stats::InfoAccess::reset
void reset()
Reset the stat to the default state.
Definition: statistics.hh:200
Stats::operator-
Temp operator-(Temp l, Temp r)
Definition: statistics.hh:2839
Stats::ScalarProxyNode::result
const VResult & result() const
Return the result vector of this subtree.
Definition: statistics.hh:1595
Stats::InfoAccess::check
bool check() const
Check that this stat has been set up properly and is ready for use.
Definition: statistics.hh:213
Stats::VectorInfo::result
virtual const VResult & result() const =0
Stats::BinaryNode::result
const VResult & result() const override
Return the result vector of this subtree.
Definition: statistics.hh:1781
Stats::Node::str
virtual std::string str() const =0
Stats::VectorProxy::VectorProxy
VectorProxy(Stat &s, off_type o, size_type l)
Definition: statistics.hh:1095
Stats::Formula::Formula
Formula(Group *parent=nullptr, const char *name=nullptr, const char *desc=nullptr)
Create and initialize thie formula, and register it with the database.
Definition: statistics.cc:134
Stats::Node::~Node
virtual ~Node()
Definition: statistics.hh:1550
Stats::ScalarBase::prepare
void prepare()
Definition: statistics.hh:612
Stats::DataWrapVec::Info
InfoProxyType< Derived > Info
Definition: statistics.hh:364
Stats::AverageVector::AverageVector
AverageVector(Group *parent=nullptr)
Definition: statistics.hh:2035
Stats::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:407
cprintf.hh
Stats::Vector2dBase::Info
Vector2dInfoProxy< Derived > Info
Definition: statistics.hh:1128
Stats::ScalarBase::Params
Stor::Params Params
Definition: statistics.hh:505
Stats::VectorBase::result
void result(VResult &vec) const
Copy the values to a local vector and return a reference to it.
Definition: statistics.hh:964
Stats::FunctorProxy::functor
T * functor
Definition: statistics.hh:645
Stats::Vector2dInfo::x
size_type x
Definition: info.hh:229
Stats::SparseHistBase::Info
SparseHistInfoProxy< Derived > Info
Definition: statistics.hh:2413
Stats::BinaryNode::r
NodePtr r
Definition: statistics.hh:1774
Stats::SparseHistStor::Params
The parameters for a sparse histogram stat.
Definition: storage.hh:720
Stats::ScalarBase::operator++
void operator++()
Increment the stat by 1.
Definition: statistics.hh:557
Stats::StandardDeviation
Calculates the mean and variance of all the samples.
Definition: statistics.hh:2166
Stats::MethodProxy
A proxy similar to the FunctorProxy, but allows calling a method of a bound object,...
Definition: statistics.hh:680
Stats::SparseHistInfo
Definition: info.hh:254
Stats::InfoAccess::info
Info * info()
Grab the information class for this statistic.
Definition: statistics.cc:107
Stats::AvgSampleStor
Templatized storage for distribution that calculates per tick mean and variance.
Definition: storage.hh:634
Stats::ScalarBase::zero
bool zero() const
Definition: statistics.hh:609
Stats::Temp::Temp
Temp(const Vector &s)
Create a new VectorStatNode.
Definition: statistics.hh:2706
Stats::BinaryNode::BinaryNode
BinaryNode(NodePtr &a, NodePtr &b)
Definition: statistics.hh:1778
Stats::OpString< std::plus< Result > >::str
static std::string str()
Definition: statistics.hh:1691
Stats::VectorDistBase::storage
Storage * storage
Definition: statistics.hh:1373
Stats::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:286
Stats::Average::Average
Average(Group *parent, const char *name, const Units::Base *unit, const char *desc=nullptr)
Definition: statistics.hh:1976
Stats::FunctorProxy< T, typename std::enable_if_t< std::is_constructible< std::function< Result()>, const T & >::value > >::total
Result total() const
Definition: statistics.hh:672
Stats::statsList
std::list< Info * > & statsList()
Definition: statistics.cc:57
Stats::VectorDistBase::Storage
Stor Storage
Definition: statistics.hh:1366
UNIT_UNSPECIFIED
#define UNIT_UNSPECIFIED
Definition: units.hh:51
Stats::Output
Definition: output.hh:58
X86ISA::val
Bitfield< 63 > val
Definition: misc.hh:769
Stats::ScalarInfoProxy::total
Result total() const
Definition: statistics.hh:118
Stats::SparseHistBase::data
Storage * data()
Retrieve the storage.
Definition: statistics.hh:2427
Stats::SampleStor
Templatized storage and interface for a distribution that calculates mean and variance.
Definition: storage.hh:556
ArmISA::sp
Bitfield< 0 > sp
Definition: miscregs_types.hh:71
Stats::Vector2dBase::Proxy
VectorProxy< Derived > Proxy
Definition: statistics.hh:1131
Stats::OpString< std::negate< Result > >::str
static std::string str()
Definition: statistics.hh:1721
Stats::VectorStandardDeviation::init
VectorStandardDeviation & init(size_type size)
Initialize storage for this distribution.
Definition: statistics.hh:2321
Stats::ValueBase::value
Counter value()
Definition: statistics.hh:754
Stats::VectorStandardDeviation::VectorStandardDeviation
VectorStandardDeviation(Group *parent=nullptr)
Definition: statistics.hh:2294
Stats::VectorInfo::size
virtual size_type size() const =0
Stats::VectorDistInfo::data
std::vector< DistData > data
Definition: info.hh:206
Stats::Distribution
A simple distribution stat.
Definition: statistics.hh:2084
Stats::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:270
Stats::constantVector
Temp constantVector(T val)
Definition: statistics.hh:2871
Stats::AverageDeviation::AverageDeviation
AverageDeviation(Group *parent, const char *name, const char *desc=nullptr)
Definition: statistics.hh:2220
Stats::ScalarInfoProxy::value
Counter value() const
Definition: statistics.hh:116
Stats::DataWrap::DataWrap
DataWrap()=delete
name
const std::string & name()
Definition: trace.cc:48
Stats::Formula::operator=
const Formula & operator=(const T &v)
Definition: statistics.hh:2569
Stats::VectorBase::init
Derived & init(size_type size)
Set this vector to have the given size.
Definition: statistics.hh:1028
Stats::DistInfoProxy::DistInfoProxy
DistInfoProxy(Stat &stat)
Definition: statistics.hh:154
Stats::ScalarBase::result
Result result() const
Definition: statistics.hh:605
Stats::ScalarStatNode::result
const VResult & result() const
Return the result vector of this subtree.
Definition: statistics.hh:1566
Stats::Vector2dBase
Definition: statistics.hh:1125
Stats::VectorInfoProxy::rvec
VResult rvec
Definition: statistics.hh:126
Stats::SparseHistBase::data
const Storage * data() const
Retrieve a const pointer to the storage.
Definition: statistics.hh:2437
Stats::DataWrapVec2d::ysubname
std::string ysubname(off_type i) const
Definition: statistics.hh:483
Stats::DataWrap::info
const Info * info() const
Definition: statistics.hh:234
Stats::VectorDistBase::check
bool check() const
Definition: statistics.hh:1456
Stats::Node::size
virtual size_type size() const =0
Return the number of nodes in the subtree starting at this node.
Stats::ScalarBase::operator+=
void operator+=(const U &v)
Increment the stat by the given value.
Definition: statistics.hh:583
Stats::Info
Definition: info.hh:70
Stats::VectorBase::~VectorBase
~VectorBase()
Definition: statistics.hh:1012
Stats::ScalarProxyNode
Definition: statistics.hh:1583
Stats::DistBase
Implementation of a distribution stat.
Definition: statistics.hh:1269
Stats::FormulaNode::size
size_type size() const
Return the number of nodes in the subtree starting at this node.
Definition: statistics.hh:2639
Stats::Result
double Result
All results are doubles.
Definition: types.hh:50
Stats::ScalarProxy::operator+=
void operator+=(const U &v)
Increment the stat by the given value.
Definition: statistics.hh:867
Stats::Output::visit
virtual void visit(const ScalarInfo &info)=0
Stats::ProxyInfo::zero
bool zero() const
Definition: statistics.hh:623
Stats::ScalarBase::ScalarBase
ScalarBase(Group *parent=nullptr, const char *name=nullptr, const Units::Base *unit=UNIT_UNSPECIFIED, const char *desc=nullptr)
Definition: statistics.hh:543
Stats::ScalarStatNode::vresult
VResult vresult
Definition: statistics.hh:1560
Stats::Scalar::Scalar
Scalar(Group *parent, const char *name, const char *desc=nullptr)
Definition: statistics.hh:1944
Stats::DataWrapVec2d
Definition: statistics.hh:443
Stats::operator/
Temp operator/(Temp l, Temp r)
Definition: statistics.hh:2851
Stats::FormulaNode::vec
VResult vec
Definition: statistics.hh:2634
Stats::Average
A stat that calculates the per tick average of a value.
Definition: statistics.hh:1960
Stats::SparseHistBase::sample
void sample(const U &v, int n=1)
Add a value to the distribtion n times.
Definition: statistics.hh:2464
Stats::Vector2dBase::Vector2dBase
Vector2dBase(Group *parent, const char *name, const Units::Base *unit, const char *desc)
Definition: statistics.hh:1148
Stats::Counter
double Counter
All counters are of 64-bit values.
Definition: types.hh:41
Stats::Temp::Temp
Temp(unsigned long value)
Create a ConstNode.
Definition: statistics.hh:2790
Stats::ConstVectorNode::size
size_type size() const
Return the number of nodes in the subtree starting at this node.
Definition: statistics.hh:1672
Stats::DistProxy::index
off_type index
Definition: statistics.hh:1467
Stats::ScalarBase::operator--
void operator--()
Decrement the stat by 1.
Definition: statistics.hh:562
Stats::ValueProxy
Definition: statistics.hh:629
Stats::ProxyInfo::str
std::string str() const
Definition: statistics.hh:618
Stats::VectorDistBase
Definition: statistics.hh:1362
Stats::ValueBase::proxy
ProxyInfo * proxy
Definition: statistics.hh:698
Stats::VectorBase::Proxy
ScalarProxy< Derived > Proxy
Proxy type.
Definition: statistics.hh:910
Stats::FunctorProxy::FunctorProxy
FunctorProxy(T &func)
Definition: statistics.hh:648
Stats::StatStor
Templatized storage and interface for a simple scalar stat.
Definition: storage.hh:53
Stats::Vector2dBase::reset
void reset()
Reset stat value to default.
Definition: statistics.hh:1243
Stats::ScalarBase::reset
void reset()
Definition: statistics.hh:611
Stats::FormulaInfo
Definition: info.hh:240
Stats::Vector2d::Vector2d
Vector2d(Group *parent, const char *name, const char *desc=nullptr)
Definition: statistics.hh:2067
Stats::VectorProxy::len
size_type len
Definition: statistics.hh:1054
Stats::ScalarBase::total
Result total() const
Definition: statistics.hh:607
Stats::SparseHistInfoProxy::SparseHistInfoProxy
SparseHistInfoProxy(Stat &stat)
Definition: statistics.hh:2402
Stats::InfoAccess::setInit
void setInit()
Save Storage class parameters if any.
Definition: statistics.cc:101
Stats::FormulaInfoProxy
Definition: statistics.hh:2375
Stats::ValueBase::functor
Derived & functor(T &func)
Definition: statistics.hh:731
Stats::DistProxy::sample
void sample(const U &v, int n=1)
Definition: statistics.hh:1493
Stats::Vector2dBase::_size
size_type _size
Definition: statistics.hh:1140
units.hh
Stats::DataWrap::info
Info * info()
Definition: statistics.hh:227
Stats::Histogram::Histogram
Histogram(Group *parent=nullptr)
Definition: statistics.hh:2129
Stats::VectorProxy::result
const VResult & result() const
Definition: statistics.hh:1075
Stats::Vector2dBase::data
const Storage * data(off_type index) const
Definition: statistics.hh:1145
Stats::processDumpQueue
void processDumpQueue()
Process all the callbacks in the dump callbacks queue.
Definition: statistics.cc:261
Stats::ScalarProxy::operator--
void operator--()
Decrement the stat by 1.
Definition: statistics.hh:841
Stats::ValueBase::prepare
void prepare()
Definition: statistics.hh:762
Stats::Vector2d
A 2-Dimensional vecto of scalar stats.
Definition: statistics.hh:2058
Stats::operator*
Temp operator*(Temp l, Temp r)
Definition: statistics.hh:2845
Stats::Info::setName
void setName(const std::string &name)
Set the name of this statistic.
Definition: info.cc:112
Stats::InfoProxy::InfoProxy
InfoProxy(Stat &stat)
Definition: statistics.hh:97
Stats::Temp::Temp
Temp(const Value &s)
Create a new ScalarStatNode.
Definition: statistics.hh:2690
Stats::ConstNode::result
const VResult & result() const
Return the result vector of this subtree.
Definition: statistics.hh:1646
ArmISA::b
Bitfield< 7 > b
Definition: miscregs_types.hh:376
Stats::ValueProxy::result
Result result() const
Definition: statistics.hh:637
Stats::AverageDeviation::AverageDeviation
AverageDeviation(Group *parent=nullptr)
Construct and initialize this distribution.
Definition: statistics.hh:2211
Stats::ScalarProxyNode::str
std::string str() const
Definition: statistics.hh:1617
Stats::ConstNode
Definition: statistics.hh:1639
Stats::VectorDistBase::data
const Storage * data(off_type index) const
Definition: statistics.hh:1384
Stats::ScalarBase::operator=
void operator=(const U &v)
Set the data value to the given value.
Definition: statistics.hh:575
Stats::FunctorProxy::result
Result result() const
Definition: statistics.hh:650
std
Overload hash function for BasicBlockRange type.
Definition: vec_reg.hh:587
Stats::VectorBase::_size
size_type _size
Definition: statistics.hh:917
Stats::DataWrap::precision
Derived & precision(int _precision)
Set the precision and marks this stat to print at the end of simulation.
Definition: statistics.hh:327
Stats::SumNode::l
NodePtr l
Definition: statistics.hh:1870
types.hh
Stats::Vector2dInfo::y
size_type y
Definition: info.hh:230
Stats::Distribution::init
Distribution & init(Counter min, Counter max, Counter bkt)
Set the parameters of this distribution.
Definition: statistics.hh:2113
Stats::Units::Base
The Base class is the parent class of all unit classes.
Definition: units.hh:93
Stats::Vector2dBase::Storage
Stor Storage
Definition: statistics.hh:1129
Stats::dump
void dump()
Dump all statistics data to the registered outputs.
Definition: statistics.cc:290
Stats::AverageVector
A vector of Average stats.
Definition: statistics.hh:2032
Stats::Formula
A formula for statistics that is calculated when printed.
Definition: statistics.hh:2538
Stats::Distribution::Distribution
Distribution(Group *parent=nullptr)
Definition: statistics.hh:2087
Stats::Temp::Temp
Temp(const Formula &f)
Definition: statistics.hh:2717
Stats::Group
Statistics container.
Definition: group.hh:87
Stats::VectorBase::VectorBase
VectorBase(Group *parent, const char *name, const Units::Base *unit, const char *desc)
Definition: statistics.hh:1005
Stats::ScalarBase::operator--
void operator--(int)
Decrement the stat by 1.
Definition: statistics.hh:567
Stats::DistBase::reset
void reset()
Reset stat value to default.
Definition: statistics.hh:1347
Stats::OpString< std::modulus< Result > >::str
static std::string str()
Definition: statistics.hh:1715
Stats::UnaryNode::total
Result total() const
Return the total of the result vector.
Definition: statistics.hh:1751
Stats::Info::name
std::string name
The name of the stat.
Definition: info.hh:74
Stats::SparseHistBase::storage
char storage[sizeof(Storage)]
The storage for this stat.
Definition: statistics.hh:2419
Stats::MethodProxy::result
Result result() const
Definition: statistics.hh:690
Stats::DistBase::add
void add(DistBase &d)
Add the argument distribution to the this distribution.
Definition: statistics.hh:1355
Stats::Temp::Temp
Temp(signed int value)
Create a ConstNode.
Definition: statistics.hh:2766
Stats::Temp::Temp
Temp(signed short value)
Create a ConstNode.
Definition: statistics.hh:2750
Stats::DistBase::Params
Stor::Params Params
Definition: statistics.hh:1274
Stats::DistInfo::data
DistData data
Local storage for the entry values, used for printing.
Definition: info.hh:200
Stats::VectorDistribution::init
VectorDistribution & init(size_type size, Counter min, Counter max, Counter bkt)
Initialize storage and parameters for this distribution.
Definition: statistics.hh:2277
Stats::UnaryNode
Definition: statistics.hh:1725
Stats::Formula::prepare
void prepare()
Definition: statistics.hh:2615
debugDumpStats
void debugDumpStats()
Definition: statistics.cc:327
Stats::DistProxy::operator=
const DistProxy & operator=(const DistProxy &sp)
Definition: statistics.hh:1483
Stats::ConstNode::str
std::string str() const
Definition: statistics.hh:1649
Stats::Vector2dBase::init
Derived & init(size_type _x, size_type _y)
Definition: statistics.hh:1166
output.hh
Stats::ScalarStatNode::str
std::string str() const
Definition: statistics.hh:1579
ArmISA::rs
Bitfield< 9, 8 > rs
Definition: miscregs_types.hh:372
Stats::ValueBase::size
size_type size() const
Definition: statistics.hh:757
Stats::DistBase::sample
void sample(const U &v, int n=1)
Add a value to the distribtion n times.
Definition: statistics.hh:1323
Stats::DistProxy::reset
void reset()
Proxy has no state.
Definition: statistics.hh:1513
Stats::ScalarInfo
Definition: info.hh:151
Stats::DataWrap::name
const std::string & name() const
Definition: statistics.hh:277
Stats::SparseHistInfo::data
SparseHistData data
Local storage for the entry values, used for printing.
Definition: info.hh:258
Stats::Temp::Temp
Temp(NodePtr &&n)
Definition: statistics.hh:2664
Stats::ValueBase::~ValueBase
~ValueBase()
Definition: statistics.hh:709
Stats::VectorInfoProxy
Definition: statistics.hh:122
Stats::SparseHistBase::Storage
Stor Storage
Definition: statistics.hh:2414
Stats::VectorInfoProxy::cvec
VCounter cvec
Definition: statistics.hh:125
Stats::UnaryNode::size
size_type size() const
Return the number of nodes in the subtree starting at this node.
Definition: statistics.hh:1760
Stats::FormulaNode::result
const VResult & result() const
Return the result vector of this subtree.
Definition: statistics.hh:2640
Stats::DistProxy
Definition: statistics.hh:1359
Stats::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:383
Stats::Formula::result
void result(VResult &vec) const
Return the result of the Fomula in a vector.
Definition: statistics.cc:198
Stats::SparseHistogram
Definition: statistics.hh:2494
Stats::DistBase::zero
bool zero() const
Return true if no samples have been added.
Definition: statistics.hh:1334
Stats
Definition: statistics.cc:53
Stats::ConstVectorNode
Definition: statistics.hh:1653
Stats::ValueBase::total
Result total() const
Definition: statistics.hh:756
Stats::InfoAccess::setParams
void setParams(const StorageParams *params)
Save Storage class parameters if any.
Definition: statistics.cc:95
Stats::DistBase::Info
DistInfoProxy< Derived > Info
Definition: statistics.hh:1272
Stats::Vector2dBase::total
Result total() const
Return a total of all entries in this vector.
Definition: statistics.hh:1217
Stats::Group::addStat
void addStat(Stats::Info *info)
Register a stat with this group.
Definition: group.cc:104
Stats::ScalarProxyNode::ScalarProxyNode
ScalarProxyNode(const ScalarProxy< Stat > &p)
Definition: statistics.hh:1590
Stats::ScalarStatNode::size
size_type size() const
Return the number of nodes in the subtree starting at this node.
Definition: statistics.hh:1574
Stats::SparseHistBase::SparseHistBase
SparseHistBase(Group *parent, const char *name, const Units::Base *unit, const char *desc)
Definition: statistics.hh:2450
Stats::VectorStatNode::str
std::string str() const
Definition: statistics.hh:1635
Stats::Formula::operator/=
const Formula & operator/=(Temp r)
Divide the existing tree by the given one.
Definition: statistics.cc:187
Stats::Scalar::Scalar
Scalar(Group *parent, const char *name, const Units::Base *unit, const char *desc=nullptr)
Definition: statistics.hh:1949
Stats::SparseHistogram::init
SparseHistogram & init(size_type size)
Set the parameters of this histogram.
Definition: statistics.hh:2523
Stats::ConstVectorNode::result
const VResult & result() const
Return the result vector of this subtree.
Definition: statistics.hh:1660
Stats::size_type
unsigned int size_type
Definition: types.hh:54
Stats::Vector2dBase::zero
bool zero() const
Definition: statistics.hh:1207
Stats::Scalar::Scalar
Scalar(Group *parent=nullptr)
Definition: statistics.hh:1938
Stats::FunctorProxy< T, typename std::enable_if_t< std::is_constructible< std::function< Result()>, const T & >::value > >::result
Result result() const
Definition: statistics.hh:671
Stats::Histogram::init
Histogram & init(size_type size)
Set the parameters of this histogram.
Definition: statistics.hh:2153
Stats::ScalarProxyNode::proxy
const ScalarProxy< Stat > proxy
Definition: statistics.hh:1586
Stats::StandardDeviation::StandardDeviation
StandardDeviation(Group *parent, const char *name, const Units::Base *unit, const char *desc=nullptr)
Definition: statistics.hh:2191
Stats::ValueBase::check
bool check() const
Definition: statistics.hh:761
Stats::FormulaInfoProxy::size
size_type size() const
Definition: statistics.hh:2384
Stats::FunctorProxy
Definition: statistics.hh:642
Stats::VectorProxy
Definition: statistics.hh:1049
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
Stats::MapType
std::map< const void *, Info * > MapType
Definition: statistics.hh:2922
std::list
STL list class.
Definition: stl.hh:51
Stats::Value::Value
Value(Group *parent=nullptr)
Definition: statistics.hh:1986
intmath.hh
Stats::InfoAccess::InfoAccess
InfoAccess()
Definition: statistics.hh:194
Stats::VectorDistBase::_size
size_type _size
Definition: statistics.hh:1374
Stats::Value::Value
Value(Group *parent, const char *name, const char *desc=nullptr)
Definition: statistics.hh:1991
Stats::VectorStatNode::size
size_type size() const
Return the number of nodes in the subtree starting at this node.
Definition: statistics.hh:1633
ArmISA::s
Bitfield< 4 > s
Definition: miscregs_types.hh:556
Stats::MethodProxy::MethodProxy
MethodProxy(T *obj, MethodPointer meth)
Definition: statistics.hh:688
Stats::ScalarProxy::operator-=
void operator-=(const U &v)
Decrement the stat by the given value.
Definition: statistics.hh:879
Stats::Vector2dInfoProxy::Vector2dInfoProxy
Vector2dInfoProxy(Stat &stat)
Definition: statistics.hh:170
Stats::VectorAverageDeviation::VectorAverageDeviation
VectorAverageDeviation(Group *parent=nullptr)
Definition: statistics.hh:2338
Stats::Formula::size
size_type size() const
Return the number of elements in the tree.
Definition: statistics.cc:211
Stats::Histogram::Histogram
Histogram(Group *parent, const char *name, const char *desc=nullptr)
Definition: statistics.hh:2135
Stats::registerHandlers
void registerHandlers(Handler reset_handler, Handler dump_handler)
Definition: statistics.cc:245
Stats::VectorStatNode::data
const VectorInfo * data
Definition: statistics.hh:1626
Stats::SparseHistBase::reset
void reset()
Reset stat value to default.
Definition: statistics.hh:2488
MipsISA::l
Bitfield< 5 > l
Definition: pra_constants.hh:320
Stats::FormulaInfoProxy::result
const VResult & result() const
Definition: statistics.hh:2387
Stats::FormulaInfoProxy::total
Result total() const
Definition: statistics.hh:2392
Stats::ScalarProxy::ScalarProxy
ScalarProxy(const ScalarProxy &sp)
Create a copy of the provided ScalarProxy.
Definition: statistics.hh:813
Stats::VectorBase::value
void value(VCounter &vec) const
Definition: statistics.hh:952
Stats::VectorDistBase::size
size_type size() const
Definition: statistics.hh:1431
Stats::SparseHistogram::SparseHistogram
SparseHistogram(Group *parent, const char *name, const Units::Base *unit, const char *desc=nullptr)
Definition: statistics.hh:2510
Stats::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:315
Stats::DistProxy::DistProxy
DistProxy(const DistProxy &sp)
Definition: statistics.hh:1478
Stats::Average::Average
Average(Group *parent, const char *name, const char *desc=nullptr)
Definition: statistics.hh:1971
Stats::VectorProxy::stat
Stat & stat
Definition: statistics.hh:1052
Stats::ScalarProxy::str
std::string str() const
Definition: statistics.hh:892
Stats::VectorDistInfoProxy
Definition: statistics.hh:158
Stats::VectorInfoProxy::VectorInfoProxy
VectorInfoProxy(Stat &stat)
Definition: statistics.hh:129
Stats::DataWrap::unit
Derived & unit(const Units::Base *_unit)
Set the unit of the stat.
Definition: statistics.hh:302
Stats::VectorProxy::data
Stat::Storage * data(off_type index)
Definition: statistics.hh:1060
Stats::InfoProxy::s
Stat & s
Definition: statistics.hh:94
Stats::DistBase::Storage
Stor Storage
Definition: statistics.hh:1273
Stats::VectorStandardDeviation
This is a vector of StandardDeviation stats.
Definition: statistics.hh:2290
Stats::MethodProxy::method
MethodPointer method
Definition: statistics.hh:685
Stats::FormulaInfoProxy::str
std::string str() const
Definition: statistics.hh:2395
Stats::BinaryNode::vresult
VResult vresult
Definition: statistics.hh:1775
Stats::Temp::Temp
Temp(unsigned char value)
Create a ConstNode.
Definition: statistics.hh:2742
Stats::FunctorProxy< T, typename std::enable_if_t< std::is_constructible< std::function< Result()>, const T & >::value > >::FunctorProxy
FunctorProxy(const T &func)
Definition: statistics.hh:669
csprintf
std::string csprintf(const char *format, const Args &...args)
Definition: cprintf.hh:158
Stats::Temp::Temp
Temp(const Average &s)
Create a new ScalarStatNode.
Definition: statistics.hh:2698
Stats::VectorBase::check
bool check() const
Definition: statistics.hh:999
Stats::Vector2dBase::prepare
void prepare()
Definition: statistics.hh:1226
ArmISA::v
Bitfield< 28 > v
Definition: miscregs_types.hh:51
Stats::ScalarProxy::index
off_type index
The index to access in the parent VectorBase.
Definition: statistics.hh:784
Stats::VectorBase::total
Result total() const
Return a total of all entries in this vector.
Definition: statistics.hh:976
Stats::Temp::Temp
Temp(unsigned long long value)
Create a ConstNode.
Definition: statistics.hh:2806
Stats::ConstNode::size
size_type size() const
Return the number of nodes in the subtree starting at this node.
Definition: statistics.hh:1648
Stats::SumNode::result
const VResult & result() const
Return the result vector of this subtree.
Definition: statistics.hh:1877
Stats::Vector2dBase::y
size_type y
Definition: statistics.hh:1139
Stats::DistBase::DistBase
DistBase(Group *parent, const char *name, const Units::Base *unit, const char *desc)
Definition: statistics.hh:1309
Stats::NodePtr
std::shared_ptr< Node > NodePtr
Shared pointer to a function Node.
Definition: statistics.hh:1554
Stats::ScalarStatNode::data
const ScalarInfo * data
Definition: statistics.hh:1559
Stats::InfoAccess::zero
bool zero() const
Definition: statistics.hh:206
Stats::DataWrapVec2d::Info
InfoProxyType< Derived > Info
Definition: statistics.hh:446
Stats::constant
Temp constant(T val)
Definition: statistics.hh:2864
Stats::VectorBase::size
size_type size() const
Definition: statistics.hh:987
Stats::ProxyInfo::size
size_type size() const
Definition: statistics.hh:619
Stats::ProxyInfo::check
bool check() const
Check that this stat has been set up properly and is ready for use.
Definition: statistics.hh:620
ArmISA::f
Bitfield< 6 > f
Definition: miscregs_types.hh:64
ArmISA::offset
Bitfield< 23, 0 > offset
Definition: types.hh:153
Stats::VectorDistBase::data
Storage * data(off_type index)
Definition: statistics.hh:1378
Stats::ConstNode::total
Result total() const
Return the total of the result vector.
Definition: statistics.hh:1647
Stats::ScalarProxyNode::vresult
VResult vresult
Definition: statistics.hh:1587
Stats::ProxyInfo
Definition: statistics.hh:615
Stats::FormulaNode
Definition: statistics.hh:2630

Generated on Tue Jun 22 2021 15:28:25 for gem5 by doxygen 1.8.17