Go to the documentation of this file.
42 #ifndef __CPU_O3_REGFILE_HH__
43 #define __CPU_O3_REGFILE_HH__
47 #include "arch/types.hh"
49 #include "config/the_isa.hh"
51 #include "debug/IEW.hh"
52 #include "enums/VecRegRenameMode.hh"
135 unsigned _numPhysicalFloatRegs,
136 unsigned _numPhysicalVecRegs,
137 unsigned _numPhysicalVecPredRegs,
138 unsigned _numPhysicalCCRegs,
180 DPRINTF(IEW,
"RegFile: Access to int register %i, has data "
192 DPRINTF(IEW,
"RegFile: Access to float register %i as int, "
193 "has data %#x\n", phys_reg->
index(), floatRegBits);
204 DPRINTF(IEW,
"RegFile: Access to vector register %i, has "
205 "data %s\n",
int(phys_reg->
index()),
220 template <
typename VE,
int LaneIdx>
224 return readVecReg(phys_reg).laneView<VE, LaneIdx>();
228 template <
typename VE>
236 template <
typename LD>
242 DPRINTF(IEW,
"RegFile: Setting vector register %i[%d] to %lx\n",
256 DPRINTF(IEW,
"RegFile: Access to element %d of vector register %i,"
257 " has data %#x\n", phys_reg->
elemIndex(),
269 DPRINTF(IEW,
"RegFile: Access to predicate register %i, has "
270 "data %s\n",
int(phys_reg->
index()),
290 DPRINTF(IEW,
"RegFile: Access to cc register %i, has "
291 "data %#x\n", phys_reg->
index(),
303 DPRINTF(IEW,
"RegFile: Setting int register %i to %#x\n",
315 DPRINTF(IEW,
"RegFile: Setting float register %i to %#x\n",
328 DPRINTF(IEW,
"RegFile: Setting vector register %i to %s\n",
329 int(phys_reg->
index()),
val.print());
340 DPRINTF(IEW,
"RegFile: Setting element %d of vector register %i to"
354 DPRINTF(IEW,
"RegFile: Setting predicate register %i to %s\n",
355 int(phys_reg->
index()),
val.print());
366 DPRINTF(IEW,
"RegFile: Setting cc register %i to %#x\n",
393 #endif //__CPU_O3_REGFILE_HH__
const TheISA::VecRegContainer & readVecReg(PhysRegIdPtr phys_reg) const
Reads a vector register.
bool isFloatPhysReg() const
unsigned numPhysicalIntRegs
Number of physical general purpose registers.
std::vector< PhysRegId > vecPredRegIds
bool isVectorPhysElem() const
@Return true if it is a vector element physical register.
unsigned numVecElemPhysRegs() const
VecReg::Container VecRegContainer
std::vector< PhysRegId > floatRegIds
unsigned totalNumRegs
Total number of physical registers.
std::vector< PhysRegId > ccRegIds
const RegIndex & elemIndex() const
Elem accessor.
bool isZeroReg() const
Check if this is the zero register.
VecPredReg::Container VecPredRegContainer
bool isVectorPhysReg() const
@Return true if it is a vector physical register.
std::vector< RegVal > ccRegFile
Condition-code register file.
Simple physical register file class.
void initFreeList(UnifiedFreeList *freeList)
Initialize the free list.
Enums::VecRegRenameMode VecMode
IdRange getRegElemIds(PhysRegIdPtr reg)
Get the PhysRegIds of the elems of a vector register.
std::vector< TheISA::VecRegContainer > vectorRegFile
Vector register file.
unsigned numPhysicalVecElemRegs
Number of physical vector element registers.
std::vector< PhysRegId > intRegIds
PhysRegIdPtr getMiscRegId(RegIndex reg_idx)
Gets a misc register PhysRegIdPtr.
std::vector< PhysRegId > vecRegIds
~PhysRegFile()
Destructor to free resources.
void setCCReg(PhysRegIdPtr phys_reg, RegVal val)
Sets a condition-code register to the given value.
unsigned numIntPhysRegs() const
const TheISA::VecElem & readVecElem(PhysRegIdPtr phys_reg) const
Reads a vector element.
const RegIndex & index() const
Visible RegId methods.
unsigned numCCPhysRegs() const
void setVecPredReg(PhysRegIdPtr phys_reg, const TheISA::VecPredRegContainer &val)
Sets a predicate register to the given value.
Vector Lane abstraction Another view of a container.
std::vector< TheISA::VecPredRegContainer > vecPredRegFile
Predicate register file.
RegVal readIntReg(PhysRegIdPtr phys_reg) const
Reads an integer register.
void setFloatReg(PhysRegIdPtr phys_reg, RegVal val)
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...
unsigned numPhysicalCCRegs
Number of physical CC registers.
RegClass
Enumerate the classes of registers.
FreeList class that simply holds the list of free integer and floating point registers.
RegVal readCCReg(PhysRegIdPtr phys_reg)
Reads a condition-code register.
unsigned numFloatPhysRegs() const
unsigned numPredPhysRegs() const
bool isCCPhysReg() const
@Return true if it is a condition-code physical register.
VecMode vecMode
Mode in which vector registers are addressed.
bool isIntPhysReg() const
unsigned numPhysicalVecPredRegs
Number of physical predicate registers.
std::vector< PhysRegId > miscRegIds
Misc Reg Ids.
std::pair< PhysIds::iterator, PhysIds::iterator > IdRange
unsigned numPhysicalVecRegs
Number of physical vector registers.
unsigned numVecPhysRegs() const
unsigned totalNumPhysRegs() const
TheISA::VecPredRegContainer & getWritableVecPredReg(PhysRegIdPtr phys_reg)
PhysRegIdPtr getTrueId(PhysRegIdPtr reg)
Get the true physical register id.
std::vector< RegVal > intRegFile
Integer register file.
unsigned numPhysicalFloatRegs
Number of physical floating point registers.
std::vector< RegVal > floatRegFile
Floating point register file.
std::vector< PhysRegId > vecElemIds
TheISA::VecRegContainer & getWritableVecReg(PhysRegIdPtr phys_reg)
Reads a vector register for modification.
bool isVecPredPhysReg() const
const TheISA::VecPredRegContainer & readVecPredReg(PhysRegIdPtr phys_reg) const
Reads a predicate register.
RegVal readFloatReg(PhysRegIdPtr phys_reg) const
VecLaneT< VE, true > readVecLane(PhysRegIdPtr phys_reg) const
Reads a vector register lane.
void setIntReg(PhysRegIdPtr phys_reg, RegVal val)
Sets an integer register to the given value.
void setVecElem(PhysRegIdPtr phys_reg, const TheISA::VecElem val)
Sets a vector register to the given value.
IdRange getRegIds(RegClass cls)
Get the PhysRegIds of the elems of all vector registers.
VecLaneT< VE, true > readVecLane(PhysRegIdPtr phys_reg) const
Reads a vector register lane.
void setVecReg(PhysRegIdPtr phys_reg, const TheISA::VecRegContainer &val)
Sets a vector register to the given value.
void setVecLane(PhysRegIdPtr phys_reg, const LD &val)
Get a vector register lane for modification.
Generated on Tue Mar 23 2021 19:41:25 for gem5 by doxygen 1.8.17