gem5
v20.0.0.3
|
Simple physical register file class. More...
#include <regfile.hh>
Public Types | |
using | IdRange = std::pair< PhysIds::iterator, PhysIds::iterator > |
Public Member Functions | |
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. More... | |
~PhysRegFile () | |
Destructor to free resources. More... | |
void | initFreeList (UnifiedFreeList *freeList) |
Initialize the free list. More... | |
unsigned | numIntPhysRegs () const |
unsigned | numFloatPhysRegs () const |
unsigned | numVecPhysRegs () const |
unsigned | numPredPhysRegs () const |
unsigned | numVecElemPhysRegs () const |
unsigned | numCCPhysRegs () const |
unsigned | totalNumPhysRegs () const |
PhysRegIdPtr | getMiscRegId (RegIndex reg_idx) |
Gets a misc register PhysRegIdPtr. More... | |
RegVal | readIntReg (PhysRegIdPtr phys_reg) const |
Reads an integer register. More... | |
RegVal | readFloatReg (PhysRegIdPtr phys_reg) const |
const VecRegContainer & | readVecReg (PhysRegIdPtr phys_reg) const |
Reads a vector register. More... | |
VecRegContainer & | getWritableVecReg (PhysRegIdPtr phys_reg) |
Reads a vector register for modification. More... | |
template<typename VecElem , int LaneIdx> | |
VecLaneT< VecElem, true > | readVecLane (PhysRegIdPtr phys_reg) const |
Reads a vector register lane. More... | |
template<typename VecElem > | |
VecLaneT< VecElem, true > | readVecLane (PhysRegIdPtr phys_reg) const |
Reads a vector register lane. More... | |
template<typename LD > | |
void | setVecLane (PhysRegIdPtr phys_reg, const LD &val) |
Get a vector register lane for modification. More... | |
const VecElem & | readVecElem (PhysRegIdPtr phys_reg) const |
Reads a vector element. More... | |
const VecPredRegContainer & | readVecPredReg (PhysRegIdPtr phys_reg) const |
Reads a predicate register. More... | |
VecPredRegContainer & | getWritableVecPredReg (PhysRegIdPtr phys_reg) |
RegVal | readCCReg (PhysRegIdPtr phys_reg) |
Reads a condition-code register. More... | |
void | setIntReg (PhysRegIdPtr phys_reg, RegVal val) |
Sets an integer register to the given value. More... | |
void | setFloatReg (PhysRegIdPtr phys_reg, RegVal val) |
void | setVecReg (PhysRegIdPtr phys_reg, const VecRegContainer &val) |
Sets a vector register to the given value. More... | |
void | setVecElem (PhysRegIdPtr phys_reg, const VecElem val) |
Sets a vector register to the given value. More... | |
void | setVecPredReg (PhysRegIdPtr phys_reg, const VecPredRegContainer &val) |
Sets a predicate register to the given value. More... | |
void | setCCReg (PhysRegIdPtr phys_reg, RegVal val) |
Sets a condition-code register to the given value. More... | |
IdRange | getRegElemIds (PhysRegIdPtr reg) |
Get the PhysRegIds of the elems of a vector register. More... | |
IdRange | getRegIds (RegClass cls) |
Get the PhysRegIds of the elems of all vector registers. More... | |
PhysRegIdPtr | getTrueId (PhysRegIdPtr reg) |
Get the true physical register id. More... | |
Private Types | |
using | VecElem = TheISA::VecElem |
using | VecRegContainer = TheISA::VecRegContainer |
using | PhysIds = std::vector< PhysRegId > |
using | VecMode = Enums::VecRegRenameMode |
using | VecPredRegContainer = TheISA::VecPredRegContainer |
Private Attributes | |
std::vector< RegVal > | intRegFile |
Integer register file. More... | |
std::vector< PhysRegId > | intRegIds |
std::vector< RegVal > | floatRegFile |
Floating point register file. More... | |
std::vector< PhysRegId > | floatRegIds |
std::vector< VecRegContainer > | vectorRegFile |
Vector register file. More... | |
std::vector< PhysRegId > | vecRegIds |
std::vector< PhysRegId > | vecElemIds |
std::vector< VecPredRegContainer > | vecPredRegFile |
Predicate register file. More... | |
std::vector< PhysRegId > | vecPredRegIds |
std::vector< RegVal > | ccRegFile |
Condition-code register file. More... | |
std::vector< PhysRegId > | ccRegIds |
std::vector< PhysRegId > | miscRegIds |
Misc Reg Ids. More... | |
unsigned | numPhysicalIntRegs |
Number of physical general purpose registers. More... | |
unsigned | numPhysicalFloatRegs |
Number of physical floating point registers. More... | |
unsigned | numPhysicalVecRegs |
Number of physical vector registers. More... | |
unsigned | numPhysicalVecElemRegs |
Number of physical vector element registers. More... | |
unsigned | numPhysicalVecPredRegs |
Number of physical predicate registers. More... | |
unsigned | numPhysicalCCRegs |
Number of physical CC registers. More... | |
unsigned | totalNumRegs |
Total number of physical registers. More... | |
VecMode | vecMode |
Mode in which vector registers are addressed. More... | |
Static Private Attributes | |
static constexpr auto | NumVecElemPerVecReg = TheISA::NumVecElemPerVecReg |
Simple physical register file class.
Definition at line 60 of file regfile.hh.
using PhysRegFile::IdRange = std::pair<PhysIds::iterator, PhysIds::iterator> |
Definition at line 71 of file regfile.hh.
|
private |
Definition at line 66 of file regfile.hh.
|
private |
Definition at line 64 of file regfile.hh.
|
private |
Definition at line 67 of file regfile.hh.
|
private |
Definition at line 68 of file regfile.hh.
|
private |
Definition at line 65 of file regfile.hh.
PhysRegFile::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.
Definition at line 48 of file regfile.cc.
References CCRegClass, ccRegIds, FloatRegClass, floatRegIds, IntRegClass, intRegIds, MiscRegClass, miscRegIds, ArmISA::NumCCRegs, ArmISA::NumMiscRegs, numPhysicalCCRegs, numPhysicalFloatRegs, numPhysicalIntRegs, numPhysicalVecPredRegs, numPhysicalVecRegs, NumVecElemPerVecReg, VecElemClass, vecElemIds, VecPredRegClass, vecPredRegIds, VecRegClass, vecRegIds, vectorRegFile, and warn.
|
inline |
|
inline |
Gets a misc register PhysRegIdPtr.
Definition at line 176 of file regfile.hh.
Referenced by UnifiedRenameMap::lookup().
auto PhysRegFile::getRegElemIds | ( | PhysRegIdPtr | reg | ) |
Get the PhysRegIds of the elems of a vector register.
Auxiliary function to transition from Full vector mode to Elem mode.
Definition at line 184 of file regfile.cc.
References NumVecElemPerVecReg, panic_if, X86ISA::reg, and vecElemIds.
Referenced by setCCReg().
auto PhysRegFile::getRegIds | ( | RegClass | cls | ) |
Get the PhysRegIds of the elems of all vector registers.
Auxiliary function to transition from Full vector mode to Elem mode and to initialise the rename map.
Definition at line 195 of file regfile.cc.
References CCRegClass, ccRegIds, FloatRegClass, floatRegIds, IntRegClass, intRegIds, MiscRegClass, miscRegIds, VecElemClass, vecElemIds, VecPredRegClass, vecPredRegIds, VecRegClass, and vecRegIds.
Referenced by setCCReg().
PhysRegIdPtr PhysRegFile::getTrueId | ( | PhysRegIdPtr | reg | ) |
Get the true physical register id.
As many parts work with PhysRegIdPtr, we need to be able to produce the pointer out of just class and register idx.
Definition at line 220 of file regfile.cc.
References RegId::className(), RegId::classValue(), RegId::elemIndex(), RegId::index(), PhysRegId::isVectorPhysElem(), NumVecElemPerVecReg, panic_if, VecElemClass, vecElemIds, VecRegClass, and vecRegIds.
Referenced by setCCReg().
|
inline |
Definition at line 281 of file regfile.hh.
References readVecPredReg().
Referenced by FullO3CPU< O3CPUImpl >::getWritableVecPredReg().
|
inline |
Reads a vector register for modification.
Definition at line 219 of file regfile.hh.
References readVecReg().
Referenced by FullO3CPU< O3CPUImpl >::getWritableVecReg().
void PhysRegFile::initFreeList | ( | UnifiedFreeList * | freeList | ) |
Initialize the free list.
Definition at line 131 of file regfile.cc.
References UnifiedFreeList::addRegs(), ccRegIds, floatRegIds, MipsISA::index, intRegIds, numPhysicalCCRegs, numPhysicalFloatRegs, numPhysicalIntRegs, numPhysicalVecPredRegs, numPhysicalVecRegs, NumVecElemPerVecReg, vecElemIds, vecMode, vecPredRegIds, and vecRegIds.
Referenced by UnifiedFreeList::UnifiedFreeList(), and ~PhysRegFile().
|
inline |
Definition at line 170 of file regfile.hh.
References numPhysicalCCRegs.
|
inline |
Definition at line 160 of file regfile.hh.
References numPhysicalFloatRegs.
|
inline |
Definition at line 157 of file regfile.hh.
References numPhysicalIntRegs.
|
inline |
Definition at line 164 of file regfile.hh.
References numPhysicalVecPredRegs.
|
inline |
Definition at line 167 of file regfile.hh.
References numPhysicalVecElemRegs.
|
inline |
Definition at line 162 of file regfile.hh.
References numPhysicalVecRegs.
|
inline |
Reads a condition-code register.
Definition at line 289 of file regfile.hh.
References DPRINTF, RegId::index(), and PhysRegId::isCCPhysReg().
Referenced by FullO3CPU< O3CPUImpl >::readArchCCReg(), and FullO3CPU< O3CPUImpl >::readCCReg().
|
inline |
Definition at line 192 of file regfile.hh.
References DPRINTF, RegId::index(), and PhysRegId::isFloatPhysReg().
Referenced by FullO3CPU< O3CPUImpl >::readArchFloatReg(), and FullO3CPU< O3CPUImpl >::readFloatReg().
|
inline |
Reads an integer register.
Definition at line 182 of file regfile.hh.
References DPRINTF, RegId::index(), and PhysRegId::isIntPhysReg().
Referenced by FullO3CPU< O3CPUImpl >::readArchIntReg(), and FullO3CPU< O3CPUImpl >::readIntReg().
|
inline |
Reads a vector element.
Definition at line 257 of file regfile.hh.
References DPRINTF, RegId::elemIndex(), RegId::index(), PhysRegId::isVectorPhysElem(), and X86ISA::val.
Referenced by FullO3CPU< O3CPUImpl >::readVecElem().
|
inline |
Reads a vector register lane.
Definition at line 228 of file regfile.hh.
References VecRegContainer< SIZE >::laneView(), and readVecReg().
|
inline |
Reads a vector register lane.
Definition at line 236 of file regfile.hh.
References RegId::elemIndex(), VecRegContainer< SIZE >::laneView(), and readVecReg().
|
inline |
Reads a predicate register.
Definition at line 270 of file regfile.hh.
References DPRINTF, RegId::index(), and PhysRegId::isVecPredPhysReg().
Referenced by getWritableVecPredReg(), and FullO3CPU< O3CPUImpl >::readVecPredReg().
|
inline |
Reads a vector register.
Definition at line 206 of file regfile.hh.
References DPRINTF, RegId::index(), and PhysRegId::isVectorPhysReg().
Referenced by getWritableVecReg(), readVecLane(), and FullO3CPU< O3CPUImpl >::readVecReg().
|
inline |
Sets a condition-code register to the given value.
Definition at line 363 of file regfile.hh.
References DPRINTF, getRegElemIds(), getRegIds(), getTrueId(), RegId::index(), PhysRegId::isCCPhysReg(), X86ISA::reg, and X86ISA::val.
Referenced by FullO3CPU< O3CPUImpl >::setArchCCReg(), and FullO3CPU< O3CPUImpl >::setCCReg().
|
inline |
Definition at line 314 of file regfile.hh.
References DPRINTF, RegId::index(), PhysRegId::isFloatPhysReg(), RegId::isZeroReg(), and X86ISA::val.
Referenced by FullO3CPU< O3CPUImpl >::setArchFloatReg(), and FullO3CPU< O3CPUImpl >::setFloatReg().
|
inline |
Sets an integer register to the given value.
Definition at line 302 of file regfile.hh.
References DPRINTF, RegId::index(), PhysRegId::isIntPhysReg(), RegId::isZeroReg(), and X86ISA::val.
Referenced by FullO3CPU< O3CPUImpl >::setArchIntReg(), and FullO3CPU< O3CPUImpl >::setIntReg().
|
inline |
Sets a vector register to the given value.
Definition at line 339 of file regfile.hh.
References DPRINTF, RegId::elemIndex(), RegId::index(), PhysRegId::isVectorPhysElem(), and X86ISA::val.
Referenced by FullO3CPU< O3CPUImpl >::setVecElem().
|
inline |
Get a vector register lane for modification.
Definition at line 244 of file regfile.hh.
References DPRINTF, RegId::elemIndex(), RegId::index(), PhysRegId::isVectorPhysReg(), and X86ISA::val.
|
inline |
Sets a predicate register to the given value.
Definition at line 351 of file regfile.hh.
References DPRINTF, RegId::index(), PhysRegId::isVecPredPhysReg(), VecPredRegContainer< NumBits, Packed >::print(), and X86ISA::val.
Referenced by FullO3CPU< O3CPUImpl >::setVecPredReg().
|
inline |
Sets a vector register to the given value.
Definition at line 327 of file regfile.hh.
References DPRINTF, RegId::index(), PhysRegId::isVectorPhysReg(), VecRegContainer< SIZE >::print(), and X86ISA::val.
Referenced by FullO3CPU< O3CPUImpl >::setVecReg().
|
inline |
Definition at line 173 of file regfile.hh.
References totalNumRegs.
Referenced by FullO3CPU< O3CPUImpl >::FullO3CPU().
|
private |
Condition-code register file.
Definition at line 93 of file regfile.hh.
|
private |
Definition at line 94 of file regfile.hh.
Referenced by getRegIds(), initFreeList(), and PhysRegFile().
|
private |
Floating point register file.
Definition at line 80 of file regfile.hh.
|
private |
Definition at line 81 of file regfile.hh.
Referenced by getRegIds(), initFreeList(), and PhysRegFile().
|
private |
Integer register file.
Definition at line 76 of file regfile.hh.
|
private |
Definition at line 77 of file regfile.hh.
Referenced by getRegIds(), initFreeList(), and PhysRegFile().
|
private |
Misc Reg Ids.
Definition at line 97 of file regfile.hh.
Referenced by getRegIds(), and PhysRegFile().
|
private |
Number of physical CC registers.
Definition at line 127 of file regfile.hh.
Referenced by initFreeList(), numCCPhysRegs(), and PhysRegFile().
|
private |
Number of physical floating point registers.
Definition at line 107 of file regfile.hh.
Referenced by initFreeList(), numFloatPhysRegs(), and PhysRegFile().
|
private |
Number of physical general purpose registers.
Definition at line 102 of file regfile.hh.
Referenced by initFreeList(), numIntPhysRegs(), and PhysRegFile().
|
private |
Number of physical vector element registers.
Definition at line 117 of file regfile.hh.
Referenced by numVecElemPhysRegs().
|
private |
Number of physical predicate registers.
Definition at line 122 of file regfile.hh.
Referenced by initFreeList(), numPredPhysRegs(), and PhysRegFile().
|
private |
Number of physical vector registers.
Definition at line 112 of file regfile.hh.
Referenced by initFreeList(), numVecPhysRegs(), and PhysRegFile().
|
staticprivate |
Definition at line 73 of file regfile.hh.
Referenced by getRegElemIds(), getTrueId(), initFreeList(), and PhysRegFile().
|
private |
Total number of physical registers.
Definition at line 130 of file regfile.hh.
Referenced by totalNumPhysRegs().
|
private |
Definition at line 86 of file regfile.hh.
Referenced by getRegElemIds(), getRegIds(), getTrueId(), initFreeList(), and PhysRegFile().
|
private |
Mode in which vector registers are addressed.
Definition at line 133 of file regfile.hh.
Referenced by initFreeList().
|
private |
Predicate register file.
Definition at line 89 of file regfile.hh.
|
private |
Definition at line 90 of file regfile.hh.
Referenced by getRegIds(), initFreeList(), and PhysRegFile().
|
private |
Definition at line 85 of file regfile.hh.
Referenced by getRegIds(), getTrueId(), initFreeList(), and PhysRegFile().
|
private |