gem5 v23.0.0.1
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 <cstddef>
45#include <iterator>
46#include <string>
47
48#include "base/cprintf.hh"
49#include "base/debug.hh"
50#include "base/intmath.hh"
51#include "base/types.hh"
52#include "debug/InvalidReg.hh"
53
54namespace gem5
55{
56
59{
71};
72
73// "Standard" register class names. Using these is encouraged but optional.
74inline constexpr char IntRegClassName[] = "integer";
75inline constexpr char FloatRegClassName[] = "floating_point";
76inline constexpr char VecRegClassName[] = "vector";
77inline constexpr char VecElemClassName[] = "vector_element";
78inline constexpr char VecPredRegClassName[] = "vector_predicate";
79inline constexpr char MatRegClassName[] = "matrix";
80inline constexpr char CCRegClassName[] = "condition_code";
81inline constexpr char MiscRegClassName[] = "miscellaneous";
82
83class RegClass;
85class BaseISA;
86
92class RegId
93{
94 protected:
95 const RegClass *_regClass = nullptr;
98
99 friend struct std::hash<RegId>;
100 friend class RegClassIterator;
101
102 public:
103 inline constexpr RegId();
104
105 constexpr RegId(const RegClass &reg_class, RegIndex reg_idx)
106 : _regClass(&reg_class), regIdx(reg_idx), numPinnedWrites(0)
107 {}
108
109 constexpr operator RegIndex() const
110 {
111 return index();
112 }
113
114 constexpr bool
115 operator==(const RegId& that) const
116 {
117 return classValue() == that.classValue() && regIdx == that.index();
118 }
119
120 constexpr bool
121 operator!=(const RegId& that) const
122 {
123 return !(*this==that);
124 }
125
129 constexpr bool
130 operator<(const RegId& that) const
131 {
132 return classValue() < that.classValue() ||
133 (classValue() == that.classValue() && (regIdx < that.index()));
134 }
135
139 constexpr bool
141 {
143 }
144
146 inline constexpr bool is(RegClassType reg_class) const;
147
150 constexpr RegIndex index() const { return regIdx; }
151
153 constexpr const RegClass &regClass() const { return *_regClass; }
154 inline constexpr RegClassType classValue() const;
156 inline constexpr const char* className() const;
157
158 inline constexpr bool isFlat() const;
159 inline RegId flatten(const BaseISA &isa) const;
160
161 int getNumPinnedWrites() const { return numPinnedWrites; }
162 void setNumPinnedWrites(int num_writes) { numPinnedWrites = num_writes; }
163
164 friend inline std::ostream& operator<<(std::ostream& os, const RegId& rid);
165};
166
168{
169 public:
171 virtual std::string regName(const RegId &id) const;
173 virtual std::string valString(const void *val, size_t size) const;
175 virtual RegId
176 flatten(const BaseISA &isa, const RegId &id) const
177 {
178 return id;
179 }
180};
181
182class RegClassIterator;
183
185{
186 private:
188 const char *_name;
189
190 size_t _numRegs;
191 size_t _regBytes = sizeof(RegVal);
192 // This is how much to shift an index by to get an offset of a register in
193 // a register file from the register index, which would otherwise need to
194 // be calculated with a multiply.
195 size_t _regShift = ceilLog2(sizeof(RegVal));
196
197 static inline RegClassOps defaultOps;
200
201 bool _flat = true;
202
203 public:
204 constexpr RegClass(RegClassType type, const char *new_name,
205 size_t num_regs, const debug::Flag &debug_flag) :
206 _type(type), _name(new_name), _numRegs(num_regs), debugFlag(debug_flag)
207 {}
208
209 constexpr RegClass
211 {
212 RegClass reg_class = *this;
213 reg_class._flat = false;
214 return reg_class;
215 }
216
217 constexpr RegClass
218 ops(const RegClassOps &new_ops) const
219 {
220 RegClass reg_class = *this;
221 reg_class._ops = &new_ops;
222 return reg_class;
223 }
224
225 template <class RegType>
226 constexpr RegClass
227 regType() const
228 {
229 RegClass reg_class = *this;
230 reg_class._regBytes = sizeof(RegType);
231 reg_class._regShift = ceilLog2(reg_class._regBytes);
232 return reg_class;
233 }
234
235 constexpr RegClassType type() const { return _type; }
236 constexpr const char *name() const { return _name; }
237 constexpr size_t numRegs() const { return _numRegs; }
238 constexpr size_t regBytes() const { return _regBytes; }
239 constexpr size_t regShift() const { return _regShift; }
240 constexpr const debug::Flag &debug() const { return debugFlag; }
241 constexpr bool isFlat() const { return _flat; }
242
243 std::string regName(const RegId &id) const { return _ops->regName(id); }
244 std::string
245 valString(const void *val) const
246 {
247 return _ops->valString(val, regBytes());
248 }
249 RegId
250 flatten(const BaseISA &isa, const RegId &id) const
251 {
252 return isFlat() ? id : _ops->flatten(isa, id);
253 }
254
256
257 inline iterator begin() const;
258 inline iterator end() const;
259
260 inline constexpr RegId operator[](RegIndex idx) const;
261};
262
263inline constexpr RegClass
264 invalidRegClass(InvalidRegClass, "invalid", 0, debug::InvalidReg);
265
267
268constexpr bool
269RegId::is(RegClassType reg_class) const
270{
271 return _regClass->type() == reg_class;
272}
273
274constexpr RegClassType RegId::classValue() const { return _regClass->type(); }
275constexpr const char* RegId::className() const { return _regClass->name(); }
276
277constexpr bool RegId::isFlat() const { return _regClass->isFlat(); }
278RegId
279RegId::flatten(const BaseISA &isa) const
280{
281 return _regClass->flatten(isa, *this);
282}
283
284std::ostream&
285operator<<(std::ostream& os, const RegId& rid)
286{
287 return os << rid.regClass().regName(rid);
288}
289
291{
292 private:
294
295 RegClassIterator(const RegClass &reg_class, RegIndex idx) :
296 id(reg_class, idx)
297 {}
298
299 friend class RegClass;
300
301 public:
302 using iterator_category = std::forward_iterator_tag;
303 using difference_type = std::size_t;
304 using value_type = const RegId;
307
308 reference operator*() const { return id; }
309 pointer operator->() { return &id; }
310
313 {
314 id.regIdx++;
315 return *this;
316 }
317
320 {
321 auto tmp = *this;
322 ++(*this);
323 return tmp;
324 }
325
326 bool
327 operator==(const RegClassIterator &other) const
328 {
329 return id == other.id;
330 }
331
332 bool
333 operator!=(const RegClassIterator &other) const
334 {
335 return id != other.id;
336 }
337};
338
339RegClassIterator
341{
342 return RegClassIterator(*this, 0);
343}
344
347{
348 return RegClassIterator(*this, numRegs());
349}
350
351constexpr RegId
353{
354 return RegId(*this, idx);
355}
356
357template <typename ValueType>
359{
360 public:
361 std::string
362 valString(const void *val, size_t size) const override
363 {
364 assert(size == sizeof(ValueType));
365 return csprintf("%s", *(const ValueType *)val);
366 }
367};
368
369template <typename ValueType>
370class VecElemRegClassOps : public TypedRegClassOps<ValueType>
371{
372 protected:
374
375 public:
376 explicit VecElemRegClassOps(size_t elems_per_vec) :
377 elemsPerVec(elems_per_vec)
378 {}
379
380 std::string
381 regName(const RegId &id) const override
382 {
383 RegIndex reg_idx = id.index() / elemsPerVec;
384 RegIndex elem_idx = id.index() % elemsPerVec;
385 return csprintf("v%d[%d]", reg_idx, elem_idx);
386 }
387};
388
393class PhysRegId : private RegId
394{
395 private:
398 bool pinned;
399
400 public:
401 explicit PhysRegId() : RegId(invalidRegClass, -1), flatIdx(-1),
403 {}
404
406 explicit PhysRegId(const RegClass &reg_class, RegIndex _regIdx,
407 RegIndex _flatIdx)
408 : RegId(reg_class, _regIdx), flatIdx(_flatIdx),
410 {}
411
414 using RegId::index;
415 using RegId::regClass;
416 using RegId::classValue;
417 using RegId::className;
418 using RegId::is;
425 bool
426 operator<(const PhysRegId& that) const
427 {
428 return RegId::operator<(that);
429 }
430
431 bool
432 operator==(const PhysRegId& that) const
433 {
434 return RegId::operator==(that);
435 }
436
437 bool
438 operator!=(const PhysRegId& that) const
439 {
440 return RegId::operator!=(that);
441 }
448 bool isFixedMapping() const { return !isRenameable(); }
449
451 const RegIndex& flatIndex() const { return flatIdx; }
452
453 int getNumPinnedWrites() const { return numPinnedWrites; }
454
455 void
456 setNumPinnedWrites(int numWrites)
457 {
458 // An instruction with a pinned destination reg can get
459 // squashed. The numPinnedWrites counter may be zero when
460 // the squash happens but we need to know if the dest reg
461 // was pinned originally in order to reset counters properly
462 // for a possible re-rename using the same physical reg (which
463 // may be required in case of a mem access order violation).
464 pinned = (numWrites != 0);
465 numPinnedWrites = numWrites;
466 }
467
470
471 bool isPinned() const { return pinned; }
472
473 int
475 {
477 }
478
479 void
481 {
482 numPinnedWritesToComplete = numWrites;
483 }
484
487};
488
490
491} // namespace gem5
492
493namespace std
494{
495template<>
496struct hash<gem5::RegId>
497{
498 size_t
499 operator()(const gem5::RegId& reg_id) const
500 {
501 // Extract unique integral values for the effective fields of a RegId.
502 const size_t index = static_cast<size_t>(reg_id.index());
503 const size_t class_num = static_cast<size_t>(reg_id.classValue());
504
505 const size_t shifted_class_num =
506 class_num << (sizeof(gem5::RegIndex) << 3);
507
508 // Concatenate the class_num to the end of the flat_index, in order to
509 // maximize information retained.
510 const size_t concatenated_hash = index | shifted_class_num;
511
512 // If RegIndex is larger than size_t, then class_num will not be
513 // considered by this hash function, so we may wish to perform a
514 // different operation to include that information in the hash.
515 static_assert(sizeof(gem5::RegIndex) < sizeof(size_t),
516 "sizeof(RegIndex) should be less than sizeof(size_t)");
517
518 return concatenated_hash;
519 }
520};
521} // namespace std
522
523#endif // __CPU__REG_CLASS_HH__
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,...
Physical register ID.
Definition reg_class.hh:394
PhysRegId(const RegClass &reg_class, RegIndex _regIdx, RegIndex _flatIdx)
Scalar PhysRegId constructor.
Definition reg_class.hh:406
int getNumPinnedWrites() const
Definition reg_class.hh:453
int numPinnedWritesToComplete
Definition reg_class.hh:397
bool operator<(const PhysRegId &that) const
Explicit forward methods, to prevent comparisons of PhysRegId with RegIds.
Definition reg_class.hh:426
bool operator!=(const PhysRegId &that) const
Definition reg_class.hh:438
const RegIndex & flatIndex() const
Flat index accessor.
Definition reg_class.hh:451
int getNumPinnedWritesToComplete() const
Definition reg_class.hh:474
bool operator==(const PhysRegId &that) const
Definition reg_class.hh:432
void incrNumPinnedWritesToComplete()
Definition reg_class.hh:486
void decrNumPinnedWrites()
Definition reg_class.hh:468
void setNumPinnedWrites(int numWrites)
Definition reg_class.hh:456
void incrNumPinnedWrites()
Definition reg_class.hh:469
void decrNumPinnedWritesToComplete()
Definition reg_class.hh:485
void setNumPinnedWritesToComplete(int numWrites)
Definition reg_class.hh:480
bool isPinned() const
Definition reg_class.hh:471
RegIndex flatIdx
Definition reg_class.hh:396
bool isFixedMapping() const
Returns true if this register is always associated to the same architectural register.
Definition reg_class.hh:448
std::forward_iterator_tag iterator_category
Definition reg_class.hh:302
RegClassIterator & operator++()
Definition reg_class.hh:312
RegClassIterator operator++(int)
Definition reg_class.hh:319
std::size_t difference_type
Definition reg_class.hh:303
bool operator!=(const RegClassIterator &other) const
Definition reg_class.hh:333
reference operator*() const
Definition reg_class.hh:308
bool operator==(const RegClassIterator &other) const
Definition reg_class.hh:327
RegClassIterator(const RegClass &reg_class, RegIndex idx)
Definition reg_class.hh:295
virtual std::string regName(const RegId &id) const
Print the name of the register specified in id.
Definition reg_class.cc:53
virtual RegId flatten(const BaseISA &isa, const RegId &id) const
Flatten register id id using information in the ISA object isa.
Definition reg_class.hh:176
virtual std::string valString(const void *val, size_t size) const
Print the value of a register pointed to by val of size size.
Definition reg_class.cc:59
RegId flatten(const BaseISA &isa, const RegId &id) const
Definition reg_class.hh:250
constexpr RegId operator[](RegIndex idx) const
Definition reg_class.hh:352
constexpr RegClass(RegClassType type, const char *new_name, size_t num_regs, const debug::Flag &debug_flag)
Definition reg_class.hh:204
constexpr RegClass ops(const RegClassOps &new_ops) const
Definition reg_class.hh:218
iterator begin() const
Definition reg_class.hh:340
constexpr size_t regShift() const
Definition reg_class.hh:239
std::string regName(const RegId &id) const
Definition reg_class.hh:243
constexpr size_t numRegs() const
Definition reg_class.hh:237
constexpr RegClass regType() const
Definition reg_class.hh:227
constexpr RegClass needsFlattening() const
Definition reg_class.hh:210
constexpr bool isFlat() const
Definition reg_class.hh:241
static RegClassOps defaultOps
Definition reg_class.hh:197
iterator end() const
Definition reg_class.hh:346
constexpr const char * name() const
Definition reg_class.hh:236
constexpr RegClassType type() const
Definition reg_class.hh:235
constexpr const debug::Flag & debug() const
Definition reg_class.hh:240
std::string valString(const void *val) const
Definition reg_class.hh:245
const debug::Flag & debugFlag
Definition reg_class.hh:199
RegClassType _type
Definition reg_class.hh:187
const char * _name
Definition reg_class.hh:188
const RegClassOps * _ops
Definition reg_class.hh:198
constexpr size_t regBytes() const
Definition reg_class.hh:238
Register ID: describe an architectural register with its class and index.
Definition reg_class.hh:93
constexpr RegId()
Definition reg_class.hh:266
constexpr bool isRenameable() const
Return true if this register can be renamed.
Definition reg_class.hh:140
constexpr bool operator<(const RegId &that) const
Order operator.
Definition reg_class.hh:130
constexpr RegClassType classValue() const
Definition reg_class.hh:274
constexpr bool operator==(const RegId &that) const
Definition reg_class.hh:115
constexpr bool operator!=(const RegId &that) const
Definition reg_class.hh:121
constexpr bool is(RegClassType reg_class) const
Definition reg_class.hh:269
constexpr const RegClass & regClass() const
Class accessor.
Definition reg_class.hh:153
constexpr RegId(const RegClass &reg_class, RegIndex reg_idx)
Definition reg_class.hh:105
void setNumPinnedWrites(int num_writes)
Definition reg_class.hh:162
constexpr RegIndex index() const
Index accessors.
Definition reg_class.hh:150
int getNumPinnedWrites() const
Definition reg_class.hh:161
constexpr bool isFlat() const
Definition reg_class.hh:277
const RegClass * _regClass
Definition reg_class.hh:95
int numPinnedWrites
Definition reg_class.hh:97
RegIndex regIdx
Definition reg_class.hh:96
RegId flatten(const BaseISA &isa) const
Definition reg_class.hh:279
constexpr const char * className() const
Return a const char* with the register class name.
Definition reg_class.hh:275
friend std::ostream & operator<<(std::ostream &os, const RegId &rid)
Definition reg_class.hh:285
std::string valString(const void *val, size_t size) const override
Print the value of a register pointed to by val of size size.
Definition reg_class.hh:362
std::string regName(const RegId &id) const override
Print the name of the register specified in id.
Definition reg_class.hh:381
VecElemRegClassOps(size_t elems_per_vec)
Definition reg_class.hh:376
static constexpr int ceilLog2(const T &n)
Definition intmath.hh:84
Bitfield< 33 > id
Bitfield< 24, 22 > is
Bitfield< 17 > os
Definition misc.hh:810
Bitfield< 63 > val
Definition misc.hh:776
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
constexpr char MiscRegClassName[]
Definition reg_class.hh:81
constexpr char CCRegClassName[]
Definition reg_class.hh:80
uint16_t RegIndex
Definition types.hh:176
constexpr char VecPredRegClassName[]
Definition reg_class.hh:78
constexpr char IntRegClassName[]
Definition reg_class.hh:74
std::ostream & operator<<(std::ostream &os, const ArmSemihosting::InPlaceArg &ipa)
constexpr char VecRegClassName[]
Definition reg_class.hh:76
constexpr RegClass invalidRegClass(InvalidRegClass, "invalid", 0, debug::InvalidReg)
uint64_t RegVal
Definition types.hh:173
std::string csprintf(const char *format, const Args &...args)
Definition cprintf.hh:161
constexpr char MatRegClassName[]
Definition reg_class.hh:79
RegClassType
Enumerate the classes of registers.
Definition reg_class.hh:59
@ VecPredRegClass
Definition reg_class.hh:66
@ MatRegClass
Matrix Register.
Definition reg_class.hh:67
@ FloatRegClass
Floating-point register.
Definition reg_class.hh:61
@ CCRegClass
Condition-code register.
Definition reg_class.hh:68
@ VecRegClass
Vector Register.
Definition reg_class.hh:63
@ IntRegClass
Integer register.
Definition reg_class.hh:60
@ InvalidRegClass
Definition reg_class.hh:70
@ MiscRegClass
Control (misc) register.
Definition reg_class.hh:69
@ VecElemClass
Vector Register Native Elem lane.
Definition reg_class.hh:65
constexpr char VecElemClassName[]
Definition reg_class.hh:77
constexpr char FloatRegClassName[]
Definition reg_class.hh:75
Overload hash function for BasicBlockRange type.
Definition misc.hh:2910
size_t operator()(const gem5::RegId &reg_id) const
Definition reg_class.hh:499

Generated on Mon Jul 10 2023 15:32:01 for gem5 by doxygen 1.9.7