gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
units.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2021 The Regents of the University of California.
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_UNITS_HH__
30 #define __BASE_STATS_UNITS_HH__
31 
32 #include <type_traits>
33 
34 #include "base/cprintf.hh"
35 
39 #define UNIT_CYCLE Stats::Units::Cycle::get()
40 #define UNIT_TICK Stats::Units::Tick::get()
41 #define UNIT_SECOND Stats::Units::Second::get()
42 #define UNIT_BIT Stats::Units::Bit::get()
43 #define UNIT_BYTE Stats::Units::Byte::get()
44 #define UNIT_JOULE Stats::Units::Joule::get()
45 #define UNIT_VOLT Stats::Units::Volt::get()
46 #define UNIT_CELSIUS Stats::Units::DegreeCelsius::get()
47 #define UNIT_RATE(T1, T2) Stats::Units::Rate<T1, T2>::get()
48 #define UNIT_RATIO Stats::Units::Ratio::get()
49 #define UNIT_COUNT Stats::Units::Count::get()
50 #define UNIT_WATT Stats::Units::Watt::get()
51 #define UNIT_UNSPECIFIED Stats::Units::Unspecified::get()
52 
53 namespace Stats {
54 
86 namespace Units {
87 
93 class Base
94 {
95  public:
96  virtual std::string getUnitString() const = 0;
97 };
98 
99 class Cycle : public Base
100 {
101  private:
102  Cycle() {}
103  public:
104  Cycle(Cycle const&) = delete;
105  void operator=(Cycle const&) = delete;
106  static Cycle*
107  get()
108  {
109  static Cycle instance;
110  return &instance;
111  }
112  static std::string toString() { return "Cycle"; }
113  std::string getUnitString() const override { return Cycle::toString(); }
114 };
115 
116 class Tick : public Base
117 {
118  private:
119  Tick() {}
120  public:
121  Tick(Tick const&) = delete;
122  void operator=(Tick const&) = delete;
123  static Tick*
124  get()
125  {
126  static Tick instance;
127  return &instance;
128  }
129  static std::string toString() { return "Tick"; }
130  std::string getUnitString() const override { return Tick::toString(); }
131 };
132 
133 class Second : public Base
134 {
135  private:
136  Second() {}
137  public:
138  Second(Second const&) = delete;
139  void operator=(Second const&) = delete;
140  static Second*
141  get()
142  {
143  static Second instance;
144  return &instance;
145  }
146  static std::string toString() { return "Second"; }
147  std::string getUnitString() const override { return Second::toString(); }
148 };
149 
150 class Bit : public Base
151 {
152  private:
153  Bit() {}
154  public:
155  Bit(Bit const&) = delete;
156  void operator=(Bit const&) = delete;
157  static Bit*
158  get()
159  {
160  static Bit instance;
161  return &instance;
162  }
163  static std::string toString() { return "Bit"; }
164  std::string getUnitString() const override { return Bit::toString(); }
165 };
166 
167 class Byte : public Base
168 {
169  private:
170  Byte() {}
171  public:
172  Byte(Byte const&) = delete;
173  void operator=(Byte const&) = delete;
174  static Byte*
175  get()
176  {
177  static Byte instance;
178  return &instance;
179  }
180  static std::string toString() { return "Byte"; }
181  std::string getUnitString() const override { return Byte::toString(); }
182 };
183 
184 class Watt : public Base
185 {
186  private:
187  Watt() {}
188  public:
189  Watt(Watt const&) = delete;
190  void operator=(Watt const&) = delete;
191  static Watt*
192  get()
193  {
194  static Watt instance;
195  return &instance;
196  }
197  static std::string toString() { return "Watt"; }
198  std::string getUnitString() const override { return Watt::toString(); }
199 };
200 
201 
202 class Joule : public Base
203 {
204  private:
205  Joule() {}
206  public:
207  Joule(Joule const&) = delete;
208  void operator=(Joule const&) = delete;
209  static Joule*
210  get()
211  {
212  static Joule instance;
213  return &instance;
214  }
215  static std::string toString() { return "Joule"; }
216  std::string getUnitString() const override { return Joule::toString(); }
217 };
218 
219 class Volt : public Base
220 {
221  private:
222  Volt() {}
223  public:
224  Volt(Volt const&) = delete;
225  void operator=(Volt const&) = delete;
226  static Volt*
227  get()
228  {
229  static Volt instance;
230  return &instance;
231  }
232  static std::string toString() { return "Volt"; }
233  std::string getUnitString() const override { return Volt::toString(); }
234 };
235 
236 class DegreeCelsius : public Base
237 {
238  private:
240  public:
241  DegreeCelsius(DegreeCelsius const&) = delete;
242  void operator=(DegreeCelsius const&) = delete;
243  static DegreeCelsius*
244  get()
245  {
246  static DegreeCelsius instance;
247  return &instance;
248  }
249  static std::string toString() { return "Celsius"; }
250  std::string
251  getUnitString() const override
252  {
253  return DegreeCelsius::toString();
254  }
255 };
256 
257 
258 class Count : public Base
259 {
260  private:
261  Count() {}
262  public:
263  Count(Count const&) = delete;
264  void operator=(Count const&) = delete;
265  static Count*
266  get()
267  {
268  static Count instance;
269  return &instance;
270  }
271  static std::string toString() { return "Count"; }
272  std::string getUnitString() const override { return Count::toString(); }
273 };
274 
275 template <typename T1, typename T2>
276 class Rate : public Base
277 {
278  static_assert(std::is_base_of<Base, T1>::value,
279  "Rate(T1,T2) must have T1 and T2 derived from"
280  "Stats::Units::Base");
281  static_assert(std::is_base_of<Base, T2>::value,
282  "Rate(T1,T2) must have T1 and T2 derived from"
283  "Stats::Units::Base");
284  private:
286  public:
287  Rate<T1,T2>(Rate<T1,T2> const&) = delete;
288  void operator=(Rate<T1,T2> const&) = delete;
289  static Rate<T1,T2>*
290  get()
291  {
292  static Rate<T1,T2> instance;
293  return &instance;
294  }
295  static std::string
297  {
298  return csprintf("(%s/%s)", T1::toString(), T2::toString());
299  }
300  std::string
301  getUnitString() const override
302  {
303  return Rate<T1,T2>::toString();
304  }
305 };
306 
307 class Ratio : public Base
308 {
309  private:
310  Ratio() {}
311  public:
312  Ratio(Ratio const&) = delete;
313  void operator=(Ratio const&) = delete;
314  static Ratio*
315  get()
316  {
317  static Ratio instance;
318  return &instance;
319  }
320  static std::string toString() { return "Ratio"; }
321  std::string getUnitString() const override { return Ratio::toString(); }
322 };
323 
324 class Unspecified : public Base
325 {
326  private:
328  public:
329  Unspecified(Unspecified const&) = delete;
330  void operator=(Unspecified const&) = delete;
331  static Unspecified*
332  get()
333  {
334  static Unspecified instance;
335  return &instance;
336  }
337  static std::string toString() { return "Unspecified"; }
338  std::string
339  getUnitString() const override
340  {
341  return Unspecified::toString();
342  }
343 };
344 
345 } // namespace Units
346 
347 } // namespace Stats
348 
349 #endif // __BASE_STATS_UNITS_HH__
Stats::Units::Tick::toString
static std::string toString()
Definition: units.hh:129
Stats::Units::Joule::Joule
Joule()
Definition: units.hh:205
Stats::Units::Joule::operator=
void operator=(Joule const &)=delete
Stats::Units::Unspecified
Definition: units.hh:324
Stats::Units::DegreeCelsius::getUnitString
std::string getUnitString() const override
Definition: units.hh:251
Stats::Units::DegreeCelsius::operator=
void operator=(DegreeCelsius const &)=delete
Stats::Units::Joule::getUnitString
std::string getUnitString() const override
Definition: units.hh:216
Stats::Units::Volt::get
static Volt * get()
Definition: units.hh:227
Stats::Units::Rate::toString
static std::string toString()
Definition: units.hh:296
Stats::Units::Cycle::getUnitString
std::string getUnitString() const override
Definition: units.hh:113
Stats::Units::Cycle::toString
static std::string toString()
Definition: units.hh:112
Stats::Units::Bit::getUnitString
std::string getUnitString() const override
Definition: units.hh:164
Stats::Units::Byte::toString
static std::string toString()
Definition: units.hh:180
Stats::Units::Cycle::get
static Cycle * get()
Definition: units.hh:107
Stats::Units::Tick
Definition: units.hh:116
Stats::Units::DegreeCelsius::get
static DegreeCelsius * get()
Definition: units.hh:244
Stats::Units::Volt::getUnitString
std::string getUnitString() const override
Definition: units.hh:233
Stats::Units::Watt::Watt
Watt()
Definition: units.hh:187
Stats::Units::Joule
Definition: units.hh:202
Stats::Units::Count::Count
Count()
Definition: units.hh:261
Stats::Units::Byte
Definition: units.hh:167
Stats::Units::Count::toString
static std::string toString()
Definition: units.hh:271
Stats::Units::Byte::getUnitString
std::string getUnitString() const override
Definition: units.hh:181
Stats::Units::Ratio
Definition: units.hh:307
Stats::Units::DegreeCelsius
Definition: units.hh:236
Stats::Units::Unspecified::getUnitString
std::string getUnitString() const override
Definition: units.hh:339
Stats::Units::Tick::operator=
void operator=(Tick const &)=delete
Stats::Units::Bit
Definition: units.hh:150
Stats::Units::Watt
Definition: units.hh:184
Stats::Units::Second
Definition: units.hh:133
Stats::Units::Volt::Volt
Volt()
Definition: units.hh:222
Stats::Units::Watt::operator=
void operator=(Watt const &)=delete
Stats::Units::Bit::Bit
Bit()
Definition: units.hh:153
Stats::Units::Second::get
static Second * get()
Definition: units.hh:141
Stats::Units::Count::get
static Count * get()
Definition: units.hh:266
Stats::Units::Second::operator=
void operator=(Second const &)=delete
Stats::Units::Tick::get
static Tick * get()
Definition: units.hh:124
Stats::Units::Tick::Tick
Tick()
Definition: units.hh:119
Stats::Units::Bit::toString
static std::string toString()
Definition: units.hh:163
Stats::Units::Rate::operator=
void operator=(Rate< T1, T2 > const &)=delete
Stats::Units::Count::getUnitString
std::string getUnitString() const override
Definition: units.hh:272
Stats::Units::Volt::operator=
void operator=(Volt const &)=delete
Stats::Units::Cycle::Cycle
Cycle()
Definition: units.hh:102
Stats::Units::Ratio::getUnitString
std::string getUnitString() const override
Definition: units.hh:321
Stats::Units::Watt::get
static Watt * get()
Definition: units.hh:192
cprintf.hh
Stats::Units::Count::operator=
void operator=(Count const &)=delete
Stats::Units::Bit::get
static Bit * get()
Definition: units.hh:158
Stats::Units::Ratio::Ratio
Ratio()
Definition: units.hh:310
Stats::Units::Unspecified::toString
static std::string toString()
Definition: units.hh:337
Stats::Units::Ratio::get
static Ratio * get()
Definition: units.hh:315
Stats::Units::Joule::get
static Joule * get()
Definition: units.hh:210
Stats::Units::Rate::get
static Rate< T1, T2 > * get()
Definition: units.hh:290
Stats::Units::Unspecified::operator=
void operator=(Unspecified const &)=delete
Stats::Units::Byte::Byte
Byte()
Definition: units.hh:170
Stats::Units::Tick::getUnitString
std::string getUnitString() const override
Definition: units.hh:130
Stats::Units::Watt::getUnitString
std::string getUnitString() const override
Definition: units.hh:198
Stats::Units::Cycle
Definition: units.hh:99
Stats::Units::Count
Definition: units.hh:258
Stats::Units::Watt::toString
static std::string toString()
Definition: units.hh:197
Stats::Units::Cycle::operator=
void operator=(Cycle const &)=delete
Stats::Units::DegreeCelsius::DegreeCelsius
DegreeCelsius()
Definition: units.hh:239
Stats::Units::Second::getUnitString
std::string getUnitString() const override
Definition: units.hh:147
Stats::Units::Second::Second
Second()
Definition: units.hh:136
Stats::Units::Base
The Base class is the parent class of all unit classes.
Definition: units.hh:93
Stats::Units::Ratio::toString
static std::string toString()
Definition: units.hh:320
Stats::Units::Joule::toString
static std::string toString()
Definition: units.hh:215
Stats::Units::Unspecified::get
static Unspecified * get()
Definition: units.hh:332
Stats::Units::DegreeCelsius::toString
static std::string toString()
Definition: units.hh:249
Stats::Units::Byte::get
static Byte * get()
Definition: units.hh:175
Stats::Units::Base::getUnitString
virtual std::string getUnitString() const =0
Stats::Units::Rate
Definition: units.hh:276
Stats::Units::Rate::getUnitString
std::string getUnitString() const override
Definition: units.hh:301
Stats::Units::Ratio::operator=
void operator=(Ratio const &)=delete
Stats
Definition: statistics.cc:53
Stats::Units::Unspecified::Unspecified
Unspecified()
Definition: units.hh:327
Stats::Units::Bit::operator=
void operator=(Bit const &)=delete
Stats::Units::Byte::operator=
void operator=(Byte const &)=delete
Stats::Units::Volt::toString
static std::string toString()
Definition: units.hh:232
Stats::Units::Volt
Definition: units.hh:219
csprintf
std::string csprintf(const char *format, const Args &...args)
Definition: cprintf.hh:158
Stats::Units::Second::toString
static std::string toString()
Definition: units.hh:146

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