gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
info.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2003-2005 The Regents of The University of Michigan
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met: redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
29 #ifndef __BASE_STATS_INFO_HH__
30 #define __BASE_STATS_INFO_HH__
31 
32 #include "base/flags.hh"
33 #include "base/stats/types.hh"
34 #include "base/stats/units.hh"
35 
36 namespace Stats {
37 
38 class Group;
39 
40 typedef uint16_t FlagsType;
41 typedef ::Flags<FlagsType> Flags;
42 
44 const FlagsType none = 0x0000;
46 const FlagsType init = 0x0001;
48 const FlagsType display = 0x0002;
50 const FlagsType total = 0x0010;
52 const FlagsType pdf = 0x0020;
54 const FlagsType cdf = 0x0040;
56 const FlagsType dist = 0x0080;
58 const FlagsType nozero = 0x0100;
60 const FlagsType nonan = 0x0200;
62 const FlagsType oneline = 0x0400;
63 
66 
67 struct StorageParams;
68 struct Output;
69 
70 class Info
71 {
72  public:
74  std::string name;
76  static std::string separatorString;
80  std::string desc;
84  int precision;
86  const Info *prereq;
91  static int id_count;
92  int id;
93 
94  public:
96 
97  public:
98  Info();
99  virtual ~Info();
100 
102  void setName(const std::string &name);
103  void setName(const Group *parent, const std::string &name);
104  void setSeparator(std::string _sep) { separatorString = _sep;}
105 
111  virtual bool check() const = 0;
112  bool baseCheck() const;
113 
117  virtual void enable();
118 
122  virtual void prepare() = 0;
123 
127  virtual void reset() = 0;
128 
133  virtual bool zero() const = 0;
134 
138  virtual void visit(Output &visitor) = 0;
139 
148  static bool less(Info *stat1, Info *stat2);
149 };
150 
151 class ScalarInfo : public Info
152 {
153  public:
154  virtual Counter value() const = 0;
155  virtual Result result() const = 0;
156  virtual Result total() const = 0;
157 };
158 
159 class VectorInfo : public Info
160 {
161  public:
165 
166  public:
167  void enable();
168 
169  public:
170  virtual size_type size() const = 0;
171  virtual const VCounter &value() const = 0;
172  virtual const VResult &result() const = 0;
173  virtual Result total() const = 0;
174 };
175 
177 
178 struct DistData
179 {
184 
194 };
195 
196 class DistInfo : public Info
197 {
198  public:
201 };
202 
203 class VectorDistInfo : public Info
204 {
205  public:
207 
211  void enable();
212 
213  protected:
215  mutable VResult rvec;
216 
217  public:
218  virtual size_type size() const = 0;
219 };
220 
221 class Vector2dInfo : public Info
222 {
223  public:
228 
231 
233  mutable VCounter cvec;
234 
235  void enable();
236 
237  virtual Result total() const = 0;
238 };
239 
240 class FormulaInfo : public VectorInfo
241 {
242  public:
243  virtual std::string str() const = 0;
244 };
245 
248 {
251 };
252 
253 
254 class SparseHistInfo : public Info
255 {
256  public:
259 };
260 
261 typedef std::map<std::string, Info *> NameMapType;
263 
264 } // namespace Stats
265 
266 #endif // __BASE_STATS_INFO_HH__
Stats::VectorDistInfo::subnames
std::vector< std::string > subnames
Names and descriptions of subfields.
Definition: info.hh:209
Stats::Vector2dInfo::subdescs
std::vector< std::string > subdescs
Definition: info.hh:226
Stats::Info::~Info
virtual ~Info()
Definition: info.cc:76
Stats::VectorDistInfo::rvec
VResult rvec
Local storage for the entry values, used for printing.
Definition: info.hh:215
Stats::Flags
::Flags< FlagsType > Flags
Definition: info.hh:41
Stats::init
const FlagsType init
This Stat is Initialized.
Definition: info.hh:46
Stats::Info::zero
virtual bool zero() const =0
Stats::VectorInfo::value
virtual const VCounter & value() const =0
types.hh
Stats::Info::visit
virtual void visit(Output &visitor)=0
Visitor entry for outputing statistics data.
Stats::Deviation
@ Deviation
Definition: info.hh:176
Stats::Info::baseCheck
bool baseCheck() const
Definition: info.cc:165
Stats::FormulaInfo::str
virtual std::string str() const =0
Stats::VectorInfo
Definition: info.hh:159
Stats::SparseHistData
Data structure of sparse histogram.
Definition: info.hh:247
Stats::DistData::sum
Counter sum
Definition: info.hh:190
Stats::DistData::type
DistType type
Definition: info.hh:180
Flags< FlagsType >
Stats::DistData::samples
Counter samples
Definition: info.hh:193
Stats::NameMapType
std::map< std::string, Info * > NameMapType
Definition: info.hh:261
Stats::Vector2dInfo
Definition: info.hh:221
Stats::Info::Info
Info()
Definition: info.cc:68
Stats::VectorDistInfo::subdescs
std::vector< std::string > subdescs
Definition: info.hh:210
Stats::DistType
DistType
Definition: info.hh:176
Stats::Vector2dInfo::cvec
VCounter cvec
Local storage for the entry values, used for printing.
Definition: info.hh:233
Stats::Vector2dInfo::subnames
std::vector< std::string > subnames
Names and descriptions of subfields.
Definition: info.hh:225
Stats::Hist
@ Hist
Definition: info.hh:176
Stats::Vector2dInfo::y_subnames
std::vector< std::string > y_subnames
Definition: info.hh:227
std::vector< std::string >
Stats::MCounter
std::map< Counter, int > MCounter
map of counters
Definition: types.hh:45
Stats::DistData::underflow
Counter underflow
Definition: info.hh:187
Stats::display
const FlagsType display
Print this stat.
Definition: info.hh:48
Stats::Info::setSeparator
void setSeparator(std::string _sep)
Definition: info.hh:104
Stats::cdf
const FlagsType cdf
Print the cumulative percentage of total upto this entry.
Definition: info.hh:54
Stats::ScalarInfo::result
virtual Result result() const =0
Stats::Dist
@ Dist
Definition: info.hh:176
Stats::none
const FlagsType none
Nothing extra to print.
Definition: info.hh:44
Stats::Info::id_count
static int id_count
A unique stat ID for each stat in the simulator.
Definition: info.hh:91
Stats::StorageParams
Definition: storage.hh:45
Stats::Info::storageParams
const StorageParams * storageParams
Definition: info.hh:95
Stats::ScalarInfo::total
virtual Result total() const =0
Stats::DistData::logs
Counter logs
Definition: info.hh:192
Stats::VectorDistInfo
Definition: info.hh:203
Stats::Info::check
virtual bool check() const =0
Check that this stat has been set up properly and is ready for use.
Stats::VectorDistInfo::size
virtual size_type size() const =0
Stats::DistData::min_val
Counter min_val
Definition: info.hh:185
Stats::Info::id
int id
Definition: info.hh:92
Stats::Info::enable
virtual void enable()
Enable the stat for use.
Definition: info.cc:187
Stats::DistData::min
Counter min
Definition: info.hh:181
Stats::DistData::bucket_size
Counter bucket_size
Definition: info.hh:183
Stats::DistData
Definition: info.hh:178
Stats::DistInfo
Definition: info.hh:196
Stats::ScalarInfo::value
virtual Counter value() const =0
Stats::Info::unit
const Units::Base * unit
The unit of the stat.
Definition: info.hh:78
Stats::VectorDistInfo::enable
void enable()
Enable the stat for use.
Definition: info.cc:202
Stats::nameMap
NameMapType & nameMap()
Definition: info.cc:62
Stats::oneline
const FlagsType oneline
Print all values on a single line.
Definition: info.hh:62
Stats::Info::separatorString
static std::string separatorString
The separator string used for vectors, dist, etc.
Definition: info.hh:76
Stats::__reserved
const FlagsType __reserved
Mask of flags that can't be set directly.
Definition: info.hh:65
Stats::VectorInfo::total
virtual Result total() const =0
Stats::SparseHistData::cmap
MCounter cmap
Definition: info.hh:249
Stats::FlagsType
uint16_t FlagsType
Definition: info.hh:38
Stats::Vector2dInfo::total
virtual Result total() const =0
Stats::VectorInfo::result
virtual const VResult & result() const =0
Stats::DistData::squares
Counter squares
Definition: info.hh:191
Stats::VectorInfo::subdescs
std::vector< std::string > subdescs
Definition: info.hh:164
Stats::Info::prepare
virtual void prepare()=0
Prepare the stat for dumping.
Stats::Vector2dInfo::x
size_type x
Definition: info.hh:229
Stats::SparseHistInfo
Definition: info.hh:254
UNIT_UNSPECIFIED
#define UNIT_UNSPECIFIED
Definition: units.hh:51
Stats::Output
Definition: output.hh:58
Stats::Info::reset
virtual void reset()=0
Reset the stat to the default state.
Stats::VectorInfo::size
virtual size_type size() const =0
Stats::VectorDistInfo::data
std::vector< DistData > data
Definition: info.hh:206
Stats::dist
const FlagsType dist
Print the distribution.
Definition: info.hh:56
flags.hh
Stats::nozero
const FlagsType nozero
Don't print if this is zero.
Definition: info.hh:58
Stats::Info
Definition: info.hh:70
Stats::Result
double Result
All results are doubles.
Definition: types.hh:50
Stats::Counter
double Counter
All counters are of 64-bit values.
Definition: types.hh:41
Stats::VectorInfo::subnames
std::vector< std::string > subnames
Names and descriptions of subfields.
Definition: info.hh:163
Stats::FormulaInfo
Definition: info.hh:240
units.hh
Stats::Info::setName
void setName(const std::string &name)
Set the name of this statistic.
Definition: info.cc:112
Stats::Vector2dInfo::y
size_type y
Definition: info.hh:230
Stats::Units::Base
The Base class is the parent class of all unit classes.
Definition: units.hh:93
Stats::pdf
const FlagsType pdf
Print the percent of the total that this entry represents.
Definition: info.hh:52
Stats::Info::flags
Flags flags
The formatting flags.
Definition: info.hh:82
Stats::Group
Statistics container.
Definition: group.hh:87
Stats::Info::name
std::string name
The name of the stat.
Definition: info.hh:74
Stats::DistData::max
Counter max
Definition: info.hh:182
Stats::DistInfo::data
DistData data
Local storage for the entry values, used for printing.
Definition: info.hh:200
Stats::SparseHistData::samples
Counter samples
Definition: info.hh:250
Stats::Info::prereq
const Info * prereq
A pointer to a prerequisite Stat.
Definition: info.hh:86
Stats::ScalarInfo
Definition: info.hh:151
Stats::SparseHistInfo::data
SparseHistData data
Local storage for the entry values, used for printing.
Definition: info.hh:258
Stats::Info::precision
int precision
The display precision.
Definition: info.hh:84
Stats::Info::desc
std::string desc
The description of the stat.
Definition: info.hh:80
Stats::DistData::overflow
Counter overflow
Definition: info.hh:188
Stats::Info::less
static bool less(Info *stat1, Info *stat2)
Checks if the first stat's name is alphabetically less than the second.
Definition: info.cc:139
Stats
Definition: statistics.cc:53
Stats::Vector2dInfo::enable
void enable()
Enable the stat for use.
Definition: info.cc:212
Stats::size_type
unsigned int size_type
Definition: types.hh:54
Stats::total
const FlagsType total
Print the total.
Definition: info.hh:50
Stats::VectorInfo::enable
void enable()
Enable the stat for use.
Definition: info.cc:192
Stats::DistData::max_val
Counter max_val
Definition: info.hh:186
Stats::nonan
const FlagsType nonan
Don't print if this is NAN.
Definition: info.hh:60
Stats::DistData::cvec
VCounter cvec
Definition: info.hh:189

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