gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
types.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 
35 #ifndef __BASE_TYPES_HH__
36 #define __BASE_TYPES_HH__
37 
38 #include <inttypes.h>
39 
40 #include <cassert>
41 #include <memory>
42 #include <ostream>
43 #include <stdexcept>
44 
46 #define ULL(N) ((uint64_t)N##ULL)
47 
48 #define LL(N) ((int64_t)N##LL)
49 
54 typedef int64_t Counter;
55 
59 typedef uint64_t Tick;
60 
61 const Tick MaxTick = ULL(0xffffffffffffffff);
62 
79 class Cycles
80 {
81 
82  private:
83 
85  uint64_t c;
86 
87  public:
88 
90  explicit constexpr Cycles(uint64_t _c) : c(_c) { }
91 
93  Cycles() : c(0) { }
94 
96  constexpr operator uint64_t() const { return c; }
97 
99  Cycles& operator++() { ++c; return *this; }
100 
102  Cycles& operator--() { assert(c != 0); --c; return *this; }
103 
105  Cycles& operator+=(const Cycles& cc) { c += cc.c; return *this; }
106 
108  constexpr bool
109  operator>(const Cycles& cc) const
110  {
111  return c > cc.c;
112  }
113 
114  constexpr Cycles
115  operator+(const Cycles& b) const
116  {
117  return Cycles(c + b.c);
118  }
119 
120  constexpr Cycles
121  operator-(const Cycles& b) const
122  {
123  return c >= b.c ? Cycles(c - b.c) :
124  throw std::invalid_argument("RHS cycle value larger than LHS");
125  }
126 
127  constexpr Cycles
128  operator <<(const int32_t shift) const
129  {
130  return Cycles(c << shift);
131  }
132 
133  constexpr Cycles
134  operator >>(const int32_t shift) const
135  {
136  return Cycles(c >> shift);
137  }
138 
139  friend std::ostream& operator<<(std::ostream &out, const Cycles & cycles);
140 };
141 
148 typedef uint64_t Addr;
149 
150 typedef uint16_t MicroPC;
151 
152 static const MicroPC MicroPCRomBit = 1 << (sizeof(MicroPC) * 8 - 1);
153 
154 static inline MicroPC
156 {
157  return upc | MicroPCRomBit;
158 }
159 
160 static inline MicroPC
162 {
163  return upc & ~MicroPCRomBit;
164 }
165 
166 static inline bool
168 {
169  return MicroPCRomBit & upc;
170 }
171 
172 const Addr MaxAddr = (Addr)-1;
173 
174 typedef uint64_t RegVal;
175 
176 static inline uint32_t
178 {
179  union
180  {
181  float f;
182  uint32_t i;
183  } u;
184  u.f = val;
185  return u.i;
186 }
187 
188 static inline uint64_t
190 {
191  union
192  {
193  double f;
194  uint64_t i;
195  } u;
196  u.f = val;
197  return u.i;
198 }
199 
200 static inline uint64_t floatToBits(double val) { return floatToBits64(val); }
201 static inline uint32_t floatToBits(float val) { return floatToBits32(val); }
202 
203 static inline float
205 {
206  union
207  {
208  float f;
209  uint32_t i;
210  } u;
211  u.i = val;
212  return u.f;
213 }
214 
215 static inline double
217 {
218  union
219  {
220  double f;
221  uint64_t i;
222  } u;
223  u.i = val;
224  return u.f;
225 }
226 
227 static inline double bitsToFloat(uint64_t val) { return bitsToFloat64(val); }
228 static inline float bitsToFloat(uint32_t val) { return bitsToFloat32(val); }
229 
233 typedef int16_t ThreadID;
235 
237 typedef int ContextID;
239 
243 typedef int16_t PortID;
245 
246 class FaultBase;
247 typedef std::shared_ptr<FaultBase> Fault;
248 
249 // Rather than creating a shared_ptr instance and assigning it nullptr,
250 // we just create an alias.
251 constexpr decltype(nullptr) NoFault = nullptr;
252 
253 #endif // __BASE_TYPES_HH__
InvalidThreadID
const ThreadID InvalidThreadID
Definition: types.hh:234
Cycles::operator<<
constexpr Cycles operator<<(const int32_t shift) const
Definition: types.hh:128
InvalidPortID
const PortID InvalidPortID
Definition: types.hh:244
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
bitsToFloat32
static float bitsToFloat32(uint32_t val)
Definition: types.hh:204
ThreadID
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:233
romMicroPC
static MicroPC romMicroPC(MicroPC upc)
Definition: types.hh:155
ContextID
int ContextID
Globally unique thread context ID.
Definition: types.hh:237
Cycles::operator+=
Cycles & operator+=(const Cycles &cc)
In-place addition of cycles.
Definition: types.hh:105
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:59
PortID
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:243
InvalidContextID
const ContextID InvalidContextID
Definition: types.hh:238
MaxAddr
const Addr MaxAddr
Definition: types.hh:172
Cycles::operator+
constexpr Cycles operator+(const Cycles &b) const
Definition: types.hh:115
Cycles::operator++
Cycles & operator++()
Prefix increment operator.
Definition: types.hh:99
Cycles::operator-
constexpr Cycles operator-(const Cycles &b) const
Definition: types.hh:121
Counter
int64_t Counter
Statistics counter type.
Definition: types.hh:54
ArmISA::shift
Bitfield< 6, 5 > shift
Definition: types.hh:126
Cycles::operator--
Cycles & operator--()
Prefix decrement operator.
Definition: types.hh:102
Fault
std::shared_ptr< FaultBase > Fault
Definition: types.hh:246
MicroPCRomBit
static const MicroPC MicroPCRomBit
Definition: types.hh:152
Cycles::operator>>
constexpr Cycles operator>>(const int32_t shift) const
Definition: types.hh:134
Cycles::operator>
constexpr bool operator>(const Cycles &cc) const
Greater than comparison used for > Cycles(0).
Definition: types.hh:109
X86ISA::val
Bitfield< 63 > val
Definition: misc.hh:769
NoFault
constexpr decltype(nullptr) NoFault
Definition: types.hh:251
bitsToFloat64
static double bitsToFloat64(uint64_t val)
Definition: types.hh:216
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
isRomMicroPC
static bool isRomMicroPC(MicroPC upc)
Definition: types.hh:167
ArmISA::u
Bitfield< 22 > u
Definition: miscregs_types.hh:348
Cycles::Cycles
constexpr Cycles(uint64_t _c)
Explicit constructor assigning a value.
Definition: types.hh:90
ArmISA::b
Bitfield< 7 > b
Definition: miscregs_types.hh:376
bitsToFloat
static double bitsToFloat(uint64_t val)
Definition: types.hh:227
Cycles
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:79
normalMicroPC
static MicroPC normalMicroPC(MicroPC upc)
Definition: types.hh:161
Cycles::c
uint64_t c
Member holding the actual value.
Definition: types.hh:85
MicroPC
uint16_t MicroPC
Definition: types.hh:150
floatToBits
static uint64_t floatToBits(double val)
Definition: types.hh:200
floatToBits32
static uint32_t floatToBits32(float val)
Definition: types.hh:177
FaultBase
Definition: faults.hh:54
MaxTick
const Tick MaxTick
Definition: types.hh:61
Cycles::Cycles
Cycles()
Default constructor for parameter classes.
Definition: types.hh:93
ULL
#define ULL(N)
uint64_t constant
Definition: types.hh:46
RegVal
uint64_t RegVal
Definition: types.hh:174
floatToBits64
static uint64_t floatToBits64(double val)
Definition: types.hh:189
ArmISA::f
Bitfield< 6 > f
Definition: miscregs_types.hh:64

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