49 unsigned _numPhysicalFloatRegs,
50 unsigned _numPhysicalVecRegs,
51 unsigned _numPhysicalVecPredRegs,
52 unsigned _numPhysicalCCRegs,
54 : intRegFile(_numPhysicalIntRegs),
55 floatRegFile(_numPhysicalFloatRegs),
56 vectorRegFile(_numPhysicalVecRegs),
57 vecPredRegFile(_numPhysicalVecPredRegs),
58 ccRegFile(_numPhysicalCCRegs),
59 numPhysicalIntRegs(_numPhysicalIntRegs),
60 numPhysicalFloatRegs(_numPhysicalFloatRegs),
61 numPhysicalVecRegs(_numPhysicalVecRegs),
62 numPhysicalVecElemRegs(_numPhysicalVecRegs *
64 numPhysicalVecPredRegs(_numPhysicalVecPredRegs),
65 numPhysicalCCRegs(_numPhysicalCCRegs),
66 totalNumRegs(_numPhysicalIntRegs
67 + _numPhysicalFloatRegs
70 + _numPhysicalVecPredRegs
71 + _numPhysicalCCRegs),
80 warn(
"Non-zero number of physical CC regs specified, even though\n" 81 " ISA does not use them.\n");
107 eIdx, flat_reg_idx++);
154 assert(
vecElemIds[reg_idx * NumVecElemPerVecReg +
155 elemIdx].
index() == reg_idx);
156 assert(
vecElemIds[reg_idx * NumVecElemPerVecReg +
157 elemIdx].elemIndex() == elemIdx);
187 "Trying to get elems of a %s register",
reg->className());
188 auto idx =
reg->index();
189 return std::make_pair(
191 vecElemIds.begin() + (idx+1) * NumVecElemPerVecReg);
215 return std::make_pair(PhysIds::iterator(),
216 PhysIds::iterator());
230 "Trying to get the register of a %s register", reg->
className());
std::vector< PhysRegId > floatRegIds
std::vector< PhysRegId > vecPredRegIds
RegClass
Enumerate the classes of registers.
constexpr unsigned NumVecElemPerVecReg
std::vector< VecRegContainer > vectorRegFile
Vector register file.
std::vector< PhysRegId > ccRegIds
const RegIndex & elemIndex() const
Elem accessor.
std::vector< PhysRegId > intRegIds
Vector Register Native Elem lane.
void initFreeList(UnifiedFreeList *freeList)
Initialize the free list.
PhysRegFile(unsigned _numPhysicalIntRegs, unsigned _numPhysicalFloatRegs, unsigned _numPhysicalVecRegs, unsigned _numPhysicalVecPredRegs, unsigned _numPhysicalCCRegs, VecMode vmode)
Constructs a physical register file with the specified amount of integer and floating point registers...
Enums::VecRegRenameMode VecMode
void addRegs(InputIt first, InputIt last)
Adds a register back to the free list.
unsigned numPhysicalCCRegs
Number of physical CC registers.
VecMode vecMode
Mode in which vector registers are addressed.
IdRange getRegIds(RegClass cls)
Get the PhysRegIds of the elems of all vector registers.
static constexpr auto NumVecElemPerVecReg
short int PhysRegIndex
Physical register index type.
std::vector< PhysRegId > vecRegIds
unsigned numPhysicalVecPredRegs
Number of physical predicate registers.
PhysRegIdPtr getTrueId(PhysRegIdPtr reg)
Get the true physical register id.
unsigned numPhysicalVecRegs
Number of physical vector registers.
FreeList class that simply holds the list of free integer and floating point registers.
uint16_t ElemIndex
Logical vector register elem index type.
unsigned numPhysicalFloatRegs
Number of physical floating point registers.
const RegClass & classValue() const
Class accessor.
const RegIndex & index() const
Index accessors.
std::vector< PhysRegId > vecElemIds
std::vector< PhysRegId > miscRegIds
Misc Reg Ids.
unsigned numPhysicalIntRegs
Number of physical general purpose registers.
IdRange getRegElemIds(PhysRegIdPtr reg)
Get the PhysRegIds of the elems of a vector register.
bool isVectorPhysElem() const
true if it is a vector element physical register.
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
const char * className() const
Return a const char* with the register class name.