gem5  v19.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  * Authors: Nathan Binkert
29  */
30 
31 #ifndef __BASE_STATS_INFO_HH__
32 #define __BASE_STATS_INFO_HH__
33 
34 #include "base/stats/types.hh"
35 #include "base/flags.hh"
36 
37 namespace Stats {
38 
39 class Group;
40 
41 typedef uint16_t FlagsType;
42 typedef ::Flags<FlagsType> Flags;
43 
45 const FlagsType none = 0x0000;
47 const FlagsType init = 0x0001;
49 const FlagsType display = 0x0002;
51 const FlagsType total = 0x0010;
53 const FlagsType pdf = 0x0020;
55 const FlagsType cdf = 0x0040;
57 const FlagsType dist = 0x0080;
59 const FlagsType nozero = 0x0100;
61 const FlagsType nonan = 0x0200;
63 const FlagsType oneline = 0x0400;
64 
66 const FlagsType __reserved = init | display;
67 
68 struct StorageParams;
69 struct Output;
70 
71 class Info
72 {
73  public:
75  std::string name;
77  static std::string separatorString;
79  std::string desc;
81  Flags flags;
83  int precision;
85  const Info *prereq;
90  static int id_count;
91  int id;
92 
93  public:
95 
96  public:
97  Info();
98  virtual ~Info();
99 
101  void setName(const std::string &name);
102  void setName(const Group *parent, const std::string &name);
103  void setSeparator(std::string _sep) { separatorString = _sep;}
104 
110  virtual bool check() const = 0;
111  bool baseCheck() const;
112 
116  virtual void enable();
117 
121  virtual void prepare() = 0;
122 
126  virtual void reset() = 0;
127 
132  virtual bool zero() const = 0;
133 
137  virtual void visit(Output &visitor) = 0;
138 
147  static bool less(Info *stat1, Info *stat2);
148 };
149 
150 class ScalarInfo : public Info
151 {
152  public:
153  virtual Counter value() const = 0;
154  virtual Result result() const = 0;
155  virtual Result total() const = 0;
156 };
157 
158 class VectorInfo : public Info
159 {
160  public:
164 
165  public:
166  void enable();
167 
168  public:
169  virtual size_type size() const = 0;
170  virtual const VCounter &value() const = 0;
171  virtual const VResult &result() const = 0;
172  virtual Result total() const = 0;
173 };
174 
176 
177 struct DistData
178 {
183 
193 };
194 
195 class DistInfo : public Info
196 {
197  public:
200 };
201 
202 class VectorDistInfo : public Info
203 {
204  public:
206 
210  void enable();
211 
212  protected:
214  mutable VResult rvec;
215 
216  public:
217  virtual size_type size() const = 0;
218 };
219 
220 class Vector2dInfo : public Info
221 {
222  public:
227 
230 
232  mutable VCounter cvec;
233 
234  void enable();
235 
236  virtual Result total() const = 0;
237 };
238 
239 class FormulaInfo : public VectorInfo
240 {
241  public:
242  virtual std::string str() const = 0;
243 };
244 
247 {
250 };
251 
252 
253 class SparseHistInfo : public Info
254 {
255  public:
258 };
259 
260 } // namespace Stats
261 
262 #endif // __BASE_STATS_INFO_HH__
double Result
All results are doubles.
Definition: types.hh:52
const FlagsType pdf
Print the percent of the total that this entry represents.
Definition: info.hh:53
std::map< Counter, int > MCounter
map of counters
Definition: types.hh:47
std::string name
The name of the stat.
Definition: info.hh:75
static int id_count
A unique stat ID for each stat in the simulator.
Definition: info.hh:90
VResult rvec
Local storage for the entry values, used for printing.
Definition: info.hh:214
bool baseCheck() const
Definition: statistics.cc:257
std::vector< std::string > subdescs
Definition: info.hh:209
std::vector< std::string > subdescs
Definition: info.hh:163
int id
Definition: info.hh:91
static std::string separatorString
The separator string used for vectors, dist, etc.
Definition: info.hh:77
virtual bool zero() const =0
const FlagsType nonan
Don&#39;t print if this is NAN.
Definition: info.hh:61
Counter min_val
Definition: info.hh:184
virtual void enable()
Enable the stat for use.
Definition: statistics.cc:279
DistType type
Definition: info.hh:179
std::vector< std::string > subnames
Names and descriptions of subfields.
Definition: info.hh:162
std::vector< std::string > y_subnames
Definition: info.hh:226
Counter max
Definition: info.hh:181
virtual void prepare()=0
Prepare the stat for dumping.
std::vector< std::string > subnames
Names and descriptions of subfields.
Definition: info.hh:224
unsigned int size_type
Definition: types.hh:56
Counter overflow
Definition: info.hh:187
virtual void reset()=0
Reset the stat to the default state.
double Counter
All counters are of 64-bit values.
Definition: types.hh:43
Data structure of sparse histogram.
Definition: info.hh:246
VCounter cvec
Local storage for the entry values, used for printing.
Definition: info.hh:232
Counter min
Definition: info.hh:180
const Info * prereq
A pointer to a prerequisite Stat.
Definition: info.hh:85
static bool less(Info *stat1, Info *stat2)
Checks if the first stat&#39;s name is alphabetically less than the second.
Definition: statistics.cc:231
Counter underflow
Definition: info.hh:186
Flags flags
The formatting flags.
Definition: info.hh:81
const FlagsType oneline
Print all values on a single line.
Definition: info.hh:63
DistType
Definition: info.hh:175
void setName(const std::string &name)
Set the name of this statistic.
std::vector< DistData > data
Definition: info.hh:205
const FlagsType display
Print this stat.
Definition: info.hh:49
const FlagsType none
Nothing extra to print.
Definition: info.hh:45
virtual ~Info()
Definition: statistics.cc:168
size_type x
Definition: info.hh:228
Counter logs
Definition: info.hh:191
Statistics container.
Definition: group.hh:85
int precision
The display precision.
Definition: info.hh:83
std::vector< std::string > subdescs
Definition: info.hh:225
const FlagsType total
Print the total.
Definition: info.hh:51
Counter samples
Definition: info.hh:192
const FlagsType __reserved
Mask of flags that can&#39;t be set directly.
Definition: info.hh:66
void setSeparator(std::string _sep)
Definition: info.hh:103
VCounter cvec
Definition: info.hh:188
uint16_t FlagsType
Definition: info.hh:39
size_type y
Definition: info.hh:229
virtual bool check() const =0
Check that this stat has been set up properly and is ready for use.
const StorageParams * storageParams
Definition: info.hh:94
Counter squares
Definition: info.hh:190
SparseHistData data
Local storage for the entry values, used for printing.
Definition: info.hh:257
Counter max_val
Definition: info.hh:185
Counter sum
Definition: info.hh:189
Counter bucket_size
Definition: info.hh:182
::Flags< FlagsType > Flags
Definition: info.hh:42
const FlagsType nozero
Don&#39;t print if this is zero.
Definition: info.hh:59
const FlagsType dist
Print the distribution.
Definition: info.hh:57
const FlagsType cdf
Print the cumulative percentage of total upto this entry.
Definition: info.hh:55
DistData data
Local storage for the entry values, used for printing.
Definition: info.hh:199
const FlagsType init
This Stat is Initialized.
Definition: info.hh:47
std::vector< std::string > subnames
Names and descriptions of subfields.
Definition: info.hh:208
virtual void visit(Output &visitor)=0
Visitor entry for outputing statistics data.
std::string desc
The description of the stat.
Definition: info.hh:79

Generated on Fri Feb 28 2020 16:26:58 for gem5 by doxygen 1.8.13