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

Generated on Fri Jul 3 2020 15:52:59 for gem5 by doxygen 1.8.13