gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
reg_class.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016-2019 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Copyright (c) 2013 Advanced Micro Devices, Inc.
15  * All rights reserved
16  *.
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions are
19  * met: redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer;
21  * redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in the
23  * documentation and/or other materials provided with the distribution;
24  * neither the name of the copyright holders nor the names of its
25  * contributors may be used to endorse or promote products derived from
26  * this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  */
40 
41 #ifndef __CPU__REG_CLASS_HH__
42 #define __CPU__REG_CLASS_HH__
43 
44 #include <cassert>
45 #include <cstddef>
46 
47 #include "arch/generic/types.hh"
48 #include "arch/registers.hh"
49 #include "config/the_isa.hh"
50 
52 enum RegClass {
55 
62 };
63 
68 const int NumRegClasses = MiscRegClass + 1;
69 
75 class RegId
76 {
77  protected:
78  static const char* regClassStrings[];
82  static constexpr size_t Scale = TheISA::NumVecElemPerVecReg;
84 
85  friend struct std::hash<RegId>;
86 
87  public:
88  RegId() : RegId(IntRegClass, 0) {}
89 
90  RegId(RegClass reg_class, RegIndex reg_idx)
91  : RegId(reg_class, reg_idx, ILLEGAL_ELEM_INDEX) {}
92 
93  explicit RegId(RegClass reg_class, RegIndex reg_idx, ElemIndex elem_idx)
94  : regClass(reg_class), regIdx(reg_idx), elemIdx(elem_idx),
96  {
97  if (elemIdx == ILLEGAL_ELEM_INDEX) {
99  "Creating vector physical index w/o element index");
100  } else {
102  "Creating non-vector physical index w/ element index");
103  }
104  }
105 
106  bool
107  operator==(const RegId& that) const
108  {
109  return regClass == that.classValue() && regIdx == that.index() &&
110  elemIdx == that.elemIndex();
111  }
112 
113  bool operator!=(const RegId& that) const { return !(*this==that); }
114 
118  bool
119  operator<(const RegId& that) const
120  {
121  return regClass < that.classValue() ||
122  (regClass == that.classValue() && (
123  regIdx < that.index() ||
124  (regIdx == that.index() && elemIdx < that.elemIndex())));
125  }
126 
130  bool
131  isRenameable() const
132  {
133  return regClass != MiscRegClass;
134  }
135 
142  inline bool
143  isZeroReg() const
144  {
145  return regClass == IntRegClass && regIdx == TheISA::ZeroReg;
146  }
147 
149  bool isIntReg() const { return regClass == IntRegClass; }
150 
152  bool isFloatReg() const { return regClass == FloatRegClass; }
153 
155  bool isVecReg() const { return regClass == VecRegClass; }
156 
158  bool isVecElem() const { return regClass == VecElemClass; }
159 
161  bool isVecPredReg() const { return regClass == VecPredRegClass; }
162 
164  bool isCCReg() const { return regClass == CCRegClass; }
165 
167  bool isMiscReg() const { return regClass == MiscRegClass; }
168 
171  const RegIndex& index() const { return regIdx; }
172  RegIndex& index() { return regIdx; }
173 
177  inline RegIndex
178  flatIndex() const
179  {
180  switch (regClass) {
181  case IntRegClass:
182  case FloatRegClass:
183  case VecRegClass:
184  case VecPredRegClass:
185  case CCRegClass:
186  case MiscRegClass:
187  return regIdx;
188  case VecElemClass:
189  return Scale * regIdx + elemIdx;
190  }
191  panic("Trying to flatten a register without class!");
192  return -1;
193  }
197  const RegIndex& elemIndex() const { return elemIdx; }
199  const RegClass& classValue() const { return regClass; }
201  const char* className() const { return regClassStrings[regClass]; }
202 
203  int getNumPinnedWrites() const { return numPinnedWrites; }
204  void setNumPinnedWrites(int num_writes) { numPinnedWrites = num_writes; }
205 
206  friend std::ostream&
207  operator<<(std::ostream& os, const RegId& rid)
208  {
209  return os << rid.className() << "{" << rid.index() << "}";
210  }
211 };
212 
217 using PhysRegIndex = short int;
218 
223 class PhysRegId : private RegId
224 {
225  private:
228  bool pinned;
229 
230  public:
231  explicit PhysRegId() : RegId(IntRegClass, -1), flatIdx(-1),
233  {}
234 
236  explicit PhysRegId(RegClass _regClass, PhysRegIndex _regIdx,
237  PhysRegIndex _flatIdx)
238  : RegId(_regClass, _regIdx), flatIdx(_flatIdx),
240  {}
241 
243  explicit PhysRegId(RegClass _regClass, PhysRegIndex _regIdx,
244  ElemIndex elem_idx, PhysRegIndex flat_idx)
245  : RegId(_regClass, _regIdx, elem_idx), flatIdx(flat_idx),
247  {}
248 
251  using RegId::index;
252  using RegId::classValue;
253  using RegId::isZeroReg;
254  using RegId::className;
255  using RegId::elemIndex;
262  bool
263  operator<(const PhysRegId& that) const
264  {
265  return RegId::operator<(that);
266  }
267 
268  bool
269  operator==(const PhysRegId& that) const
270  {
271  return RegId::operator==(that);
272  }
273 
274  bool
275  operator!=(const PhysRegId& that) const
276  {
277  return RegId::operator!=(that);
278  }
282  bool isIntPhysReg() const { return isIntReg(); }
283 
285  bool isFloatPhysReg() const { return isFloatReg(); }
286 
288  bool isCCPhysReg() const { return isCCReg(); }
289 
291  bool isVectorPhysReg() const { return isVecReg(); }
292 
294  bool isVectorPhysElem() const { return isVecElem(); }
295 
297  bool isVecPredPhysReg() const { return isVecPredReg(); }
298 
300  bool isMiscPhysReg() const { return isMiscReg(); }
301 
306  bool isFixedMapping() const { return !isRenameable(); }
307 
309  const PhysRegIndex& flatIndex() const { return flatIdx; }
310 
311  static PhysRegId
313  {
314  assert(vid->isVectorPhysReg());
315  return PhysRegId(VecElemClass, vid->index(), elem);
316  }
317 
318  int getNumPinnedWrites() const { return numPinnedWrites; }
319 
320  void
321  setNumPinnedWrites(int numWrites)
322  {
323  // An instruction with a pinned destination reg can get
324  // squashed. The numPinnedWrites counter may be zero when
325  // the squash happens but we need to know if the dest reg
326  // was pinned originally in order to reset counters properly
327  // for a possible re-rename using the same physical reg (which
328  // may be required in case of a mem access order violation).
329  pinned = (numWrites != 0);
330  numPinnedWrites = numWrites;
331  }
332 
335 
336  bool isPinned() const { return pinned; }
337 
338  int
340  {
342  }
343 
344  void
346  {
347  numPinnedWritesToComplete = numWrites;
348  }
349 
352 };
353 
355 
356 namespace std
357 {
358 template<>
359 struct hash<RegId>
360 {
361  size_t
362  operator()(const RegId& reg_id) const
363  {
364  // Extract unique integral values for the effective fields of a RegId.
365  const size_t flat_index = static_cast<size_t>(reg_id.flatIndex());
366  const size_t class_num = static_cast<size_t>(reg_id.regClass);
367 
368  const size_t shifted_class_num = class_num << (sizeof(RegIndex) << 3);
369 
370  // Concatenate the class_num to the end of the flat_index, in order to
371  // maximize information retained.
372  const size_t concatenated_hash = flat_index | shifted_class_num;
373 
374  // If RegIndex is larger than size_t, then class_num will not be
375  // considered by this hash function, so we may wish to perform a
376  // different operation to include that information in the hash.
377  static_assert(sizeof(RegIndex) < sizeof(size_t),
378  "sizeof(RegIndex) should be less than sizeof(size_t)");
379 
380  return concatenated_hash;
381  }
382 };
383 }
384 
385 #endif // __CPU__REG_CLASS_HH__
RegId::getNumPinnedWrites
int getNumPinnedWrites() const
Definition: reg_class.hh:203
PhysRegId::isFloatPhysReg
bool isFloatPhysReg() const
Definition: reg_class.hh:285
PhysRegId::elemId
static PhysRegId elemId(PhysRegId *vid, ElemIndex elem)
Definition: reg_class.hh:312
RegId::isMiscReg
bool isMiscReg() const
@Return true if it is a condition-code physical register.
Definition: reg_class.hh:167
RegId::isVecPredReg
bool isVecPredReg() const
@Return true if it is a predicate physical register.
Definition: reg_class.hh:161
PhysRegId::isVectorPhysElem
bool isVectorPhysElem() const
@Return true if it is a vector element physical register.
Definition: reg_class.hh:294
X86ISA::os
Bitfield< 17 > os
Definition: misc.hh:803
RegId::isZeroReg
bool isZeroReg() const
Check if this is the zero register.
Definition: reg_class.hh:143
RegId::RegId
RegId(RegClass reg_class, RegIndex reg_idx, ElemIndex elem_idx)
Definition: reg_class.hh:93
VecElemClass
@ VecElemClass
Vector Register Native Elem lane.
Definition: reg_class.hh:58
RegId::className
const char * className() const
Return a const char* with the register class name.
Definition: reg_class.hh:201
PhysRegId::incrNumPinnedWritesToComplete
void incrNumPinnedWritesToComplete()
Definition: reg_class.hh:351
RegId::RegId
RegId(RegClass reg_class, RegIndex reg_idx)
Definition: reg_class.hh:90
RegId::operator!=
bool operator!=(const RegId &that) const
Definition: reg_class.hh:113
NumRegClasses
const int NumRegClasses
Number of register classes.
Definition: reg_class.hh:68
RegId::regClass
RegClass regClass
Definition: reg_class.hh:79
PhysRegId::operator<
bool operator<(const PhysRegId &that) const
Explicit forward methods, to prevent comparisons of PhysRegId with RegIds.
Definition: reg_class.hh:263
PhysRegId::PhysRegId
PhysRegId(RegClass _regClass, PhysRegIndex _regIdx, ElemIndex elem_idx, PhysRegIndex flat_idx)
Vector PhysRegId constructor (w/ elemIndex).
Definition: reg_class.hh:243
PhysRegId::isVectorPhysReg
bool isVectorPhysReg() const
@Return true if it is a vector physical register.
Definition: reg_class.hh:291
PhysRegId::flatIndex
const PhysRegIndex & flatIndex() const
Flat index accessor.
Definition: reg_class.hh:309
PhysRegId::isFixedMapping
bool isFixedMapping() const
Returns true if this register is always associated to the same architectural register.
Definition: reg_class.hh:306
RegId::isCCReg
bool isCCReg() const
@Return true if it is a condition-code physical register.
Definition: reg_class.hh:164
RegId::elemIndex
const RegIndex & elemIndex() const
Elem accessor.
Definition: reg_class.hh:197
RegId::regClassStrings
static const char * regClassStrings[]
Definition: reg_class.hh:78
RegId
Register ID: describe an architectural register with its class and index.
Definition: reg_class.hh:75
PhysRegId::flatIdx
PhysRegIndex flatIdx
Definition: reg_class.hh:226
RegId::setNumPinnedWrites
void setNumPinnedWrites(int num_writes)
Definition: reg_class.hh:204
PhysRegId::index
const RegIndex & index() const
Visible RegId methods.
Definition: reg_class.hh:171
PhysRegId::incrNumPinnedWrites
void incrNumPinnedWrites()
Definition: reg_class.hh:334
RegId::isVecElem
bool isVecElem() const
@Return true if it is a condition-code physical register.
Definition: reg_class.hh:158
FloatRegClass
@ FloatRegClass
Floating-point register.
Definition: reg_class.hh:54
RegId::isFloatReg
bool isFloatReg() const
Definition: reg_class.hh:152
RegId::index
RegIndex & index()
Definition: reg_class.hh:172
RegId::Scale
static constexpr size_t Scale
Definition: reg_class.hh:82
RegId::isIntReg
bool isIntReg() const
Definition: reg_class.hh:149
RegClass
RegClass
Enumerate the classes of registers.
Definition: reg_class.hh:52
ArmISA::ZeroReg
const int ZeroReg
Definition: registers.hh:110
ArmISA::NumVecElemPerVecReg
constexpr unsigned NumVecElemPerVecReg
Definition: registers.hh:58
PhysRegId::setNumPinnedWritesToComplete
void setNumPinnedWritesToComplete(int numWrites)
Definition: reg_class.hh:345
PhysRegId::decrNumPinnedWrites
void decrNumPinnedWrites()
Definition: reg_class.hh:333
RegId::operator<<
friend std::ostream & operator<<(std::ostream &os, const RegId &rid)
Definition: reg_class.hh:207
PhysRegId::isCCPhysReg
bool isCCPhysReg() const
@Return true if it is a condition-code physical register.
Definition: reg_class.hh:288
VecPredRegClass
@ VecPredRegClass
Definition: reg_class.hh:59
PhysRegIndex
short int PhysRegIndex
Physical register index type.
Definition: reg_class.hh:217
PhysRegId::decrNumPinnedWritesToComplete
void decrNumPinnedWritesToComplete()
Definition: reg_class.hh:350
PhysRegId::getNumPinnedWrites
int getNumPinnedWrites() const
Definition: reg_class.hh:318
RegId::numPinnedWrites
int numPinnedWrites
Definition: reg_class.hh:83
PhysRegId::isIntPhysReg
bool isIntPhysReg() const
Definition: reg_class.hh:282
PhysRegId::numPinnedWritesToComplete
int numPinnedWritesToComplete
Definition: reg_class.hh:227
IntRegClass
@ IntRegClass
Integer register.
Definition: reg_class.hh:53
PhysRegId::operator==
bool operator==(const PhysRegId &that) const
Definition: reg_class.hh:269
RegId::RegId
RegId()
Definition: reg_class.hh:88
CCRegClass
@ CCRegClass
Condition-code register.
Definition: reg_class.hh:60
RegId::regIdx
RegIndex regIdx
Definition: reg_class.hh:80
types.hh
panic_if
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Definition: logging.hh:197
MiscRegClass
@ MiscRegClass
Control (misc) register.
Definition: reg_class.hh:61
VecRegClass
@ VecRegClass
Vector Register.
Definition: reg_class.hh:56
PhysRegId::isMiscPhysReg
bool isMiscPhysReg() const
@Return true if it is a condition-code physical register.
Definition: reg_class.hh:300
PhysRegId::pinned
bool pinned
Definition: reg_class.hh:228
PhysRegId::isPinned
bool isPinned() const
Definition: reg_class.hh:336
std
Overload hash function for BasicBlockRange type.
Definition: vec_reg.hh:587
RegIndex
uint16_t RegIndex
Definition: types.hh:52
PhysRegId::getNumPinnedWritesToComplete
int getNumPinnedWritesToComplete() const
Definition: reg_class.hh:339
PhysRegId::operator!=
bool operator!=(const PhysRegId &that) const
Definition: reg_class.hh:275
PhysRegId::setNumPinnedWrites
void setNumPinnedWrites(int numWrites)
Definition: reg_class.hh:321
ElemIndex
uint16_t ElemIndex
Logical vector register elem index type.
Definition: types.hh:55
PhysRegId::PhysRegId
PhysRegId()
Definition: reg_class.hh:231
PhysRegId::PhysRegId
PhysRegId(RegClass _regClass, PhysRegIndex _regIdx, PhysRegIndex _flatIdx)
Scalar PhysRegId constructor.
Definition: reg_class.hh:236
RegId::elemIdx
ElemIndex elemIdx
Definition: reg_class.hh:81
RegId::operator==
bool operator==(const RegId &that) const
Definition: reg_class.hh:107
RegId::isVecReg
bool isVecReg() const
@Return true if it is a condition-code physical register.
Definition: reg_class.hh:155
PhysRegId
Physical register ID.
Definition: reg_class.hh:223
RegId::isRenameable
bool isRenameable() const
Return true if this register can be renamed.
Definition: reg_class.hh:131
RegId::flatIndex
RegIndex flatIndex() const
Index flattening.
Definition: reg_class.hh:178
RegId::index
const RegIndex & index() const
Index accessors.
Definition: reg_class.hh:171
ILLEGAL_ELEM_INDEX
#define ILLEGAL_ELEM_INDEX
ElemIndex value that indicates that the register is not a vector.
Definition: types.hh:58
PhysRegId::isVecPredPhysReg
bool isVecPredPhysReg() const
Definition: reg_class.hh:297
std::hash< RegId >::operator()
size_t operator()(const RegId &reg_id) const
Definition: reg_class.hh:362
RegId::classValue
const RegClass & classValue() const
Class accessor.
Definition: reg_class.hh:199
RegId::operator<
bool operator<(const RegId &that) const
Order operator.
Definition: reg_class.hh:119
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171

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