gem5
v21.0.0.0
|
Unified register rename map for all classes of registers. More...
#include <rename_map.hh>
Public Types | |
typedef SimpleRenameMap::RenameInfo | RenameInfo |
Public Member Functions | |
UnifiedRenameMap () | |
Default constructor. More... | |
~UnifiedRenameMap () | |
Destructor. More... | |
void | init (PhysRegFile *_regFile, RegIndex _intZeroReg, RegIndex _floatZeroReg, UnifiedFreeList *freeList, VecMode _mode) |
Initializes rename map with given parameters. More... | |
RenameInfo | rename (const RegId &arch_reg) |
Tell rename map to get a new free physical register to remap the specified architectural register. More... | |
PhysRegIdPtr | lookup (const RegId &arch_reg) const |
Look up the physical register mapped to an architectural register. More... | |
void | setEntry (const RegId &arch_reg, PhysRegIdPtr phys_reg) |
Update rename map with a specific mapping. More... | |
unsigned | numFreeEntries () const |
Return the minimum number of free entries across all of the register classes. More... | |
unsigned | numFreeIntEntries () const |
unsigned | numFreeFloatEntries () const |
unsigned | numFreeVecEntries () const |
unsigned | numFreePredEntries () const |
unsigned | numFreeCCEntries () const |
bool | canRename (uint32_t intRegs, uint32_t floatRegs, uint32_t vectorRegs, uint32_t vecElemRegs, uint32_t vecPredRegs, uint32_t ccRegs) const |
Return whether there are enough registers to serve the request. More... | |
void | switchMode (VecMode newVecMode) |
Set vector mode to Full or Elem. More... | |
void | switchFreeList (UnifiedFreeList *freeList) |
Switch freeList of registers from Full to Elem or vicevers depending on vecMode (vector renaming mode). More... | |
Private Types | |
using | VecMode = Enums::VecRegRenameMode |
Private Attributes | |
SimpleRenameMap | intMap |
The integer register rename map. More... | |
SimpleRenameMap | floatMap |
The floating-point register rename map. More... | |
SimpleRenameMap | ccMap |
The condition-code register rename map. More... | |
SimpleRenameMap | vecMap |
The vector register rename map. More... | |
SimpleRenameMap | vecElemMap |
The vector element register rename map. More... | |
SimpleRenameMap | predMap |
The predicate register rename map. More... | |
VecMode | vecMode |
PhysRegFile * | regFile |
The register file object is used only to get PhysRegIdPtr on MiscRegs, as they are stored in it. More... | |
Unified register rename map for all classes of registers.
Wraps a set of class-specific rename maps. Methods that do not specify a register class (e.g., rename()) take register ids, while methods that do specify a register class (e.g., renameInt()) take register indices.
Definition at line 169 of file rename_map.hh.
Definition at line 201 of file rename_map.hh.
|
private |
Definition at line 190 of file rename_map.hh.
|
inline |
Default constructor.
init() must be called prior to use.
Definition at line 204 of file rename_map.hh.
|
inline |
Destructor.
Definition at line 207 of file rename_map.hh.
|
inline |
Return whether there are enough registers to serve the request.
Definition at line 382 of file rename_map.hh.
References ccMap, floatMap, intMap, SimpleRenameMap::numFreeEntries(), predMap, vecElemMap, and vecMap.
void UnifiedRenameMap::init | ( | PhysRegFile * | _regFile, |
RegIndex | _intZeroReg, | ||
RegIndex | _floatZeroReg, | ||
UnifiedFreeList * | freeList, | ||
VecMode | _mode | ||
) |
Initializes rename map with given parameters.
Definition at line 108 of file rename_map.cc.
References UnifiedFreeList::ccList, ccMap, UnifiedFreeList::floatList, floatMap, SimpleRenameMap::init(), UnifiedFreeList::intList, intMap, ArmISA::NumCCRegs, ArmISA::NumFloatRegs, ArmISA::NumIntRegs, ArmISA::NumVecElemPerVecReg, ArmISA::NumVecPredRegs, ArmISA::NumVecRegs, UnifiedFreeList::predList, predMap, regFile, UnifiedFreeList::vecElemList, vecElemMap, UnifiedFreeList::vecList, vecMap, and vecMode.
|
inline |
Look up the physical register mapped to an architectural register.
This version takes a flattened architectural register id and calls the appropriate class-specific rename table.
arch_reg | The architectural register to look up. |
Definition at line 264 of file rename_map.hh.
References ccMap, CCRegClass, RegId::className(), RegId::classValue(), RegId::flatIndex(), floatMap, FloatRegClass, PhysRegFile::getMiscRegId(), intMap, IntRegClass, SimpleRenameMap::lookup(), MiscRegClass, panic, predMap, regFile, VecElemClass, vecElemMap, vecMap, vecMode, VecPredRegClass, and VecRegClass.
Referenced by rename(), and setEntry().
|
inline |
Definition at line 376 of file rename_map.hh.
References ccMap, and SimpleRenameMap::numFreeEntries().
|
inline |
Return the minimum number of free entries across all of the register classes.
The minimum is used so we guarantee that this number of entries is available regardless of which class of registers is requested.
Definition at line 357 of file rename_map.hh.
References floatMap, intMap, SimpleRenameMap::numFreeEntries(), predMap, vecElemMap, vecMap, and vecMode.
|
inline |
Definition at line 367 of file rename_map.hh.
References floatMap, and SimpleRenameMap::numFreeEntries().
|
inline |
Definition at line 366 of file rename_map.hh.
References intMap, and SimpleRenameMap::numFreeEntries().
|
inline |
Definition at line 375 of file rename_map.hh.
References SimpleRenameMap::numFreeEntries(), and predMap.
|
inline |
Definition at line 369 of file rename_map.hh.
References SimpleRenameMap::numFreeEntries(), vecElemMap, vecMap, and vecMode.
|
inline |
Tell rename map to get a new free physical register to remap the specified architectural register.
This version takes a RegId and reads the appropriate class-specific rename table.
arch_reg | The architectural register id to remap. |
Definition at line 224 of file rename_map.hh.
References ccMap, CCRegClass, RegId::className(), RegId::classValue(), floatMap, FloatRegClass, intMap, IntRegClass, lookup(), MiscRegClass, panic, predMap, SimpleRenameMap::rename(), VecElemClass, vecElemMap, vecMap, vecMode, VecPredRegClass, and VecRegClass.
|
inline |
Update rename map with a specific mapping.
Generally used to roll back to old mappings on a squash. This version takes a flattened architectural register id and calls the appropriate class-specific rename table.
arch_reg | The architectural register to remap. |
phys_reg | The physical register to remap it to. |
Definition at line 307 of file rename_map.hh.
References ccMap, CCRegClass, RegId::className(), RegId::classValue(), floatMap, FloatRegClass, intMap, IntRegClass, PhysRegId::isCCPhysReg(), PhysRegId::isFloatPhysReg(), PhysRegId::isIntPhysReg(), PhysRegId::isVecPredPhysReg(), PhysRegId::isVectorPhysElem(), PhysRegId::isVectorPhysReg(), lookup(), MiscRegClass, panic, predMap, SimpleRenameMap::setEntry(), VecElemClass, vecElemMap, vecMap, vecMode, VecPredRegClass, and VecRegClass.
Referenced by switchMode().
void UnifiedRenameMap::switchFreeList | ( | UnifiedFreeList * | freeList | ) |
Switch freeList of registers from Full to Elem or vicevers depending on vecMode (vector renaming mode).
Definition at line 133 of file rename_map.cc.
References UnifiedFreeList::addRegs(), PhysRegFile::getRegElemIds(), PhysRegFile::getRegIds(), UnifiedFreeList::getVecElem(), UnifiedFreeList::getVecReg(), UnifiedFreeList::hasFreeVecElems(), UnifiedFreeList::hasFreeVecRegs(), UnifiedFreeList::numFreeVecElems(), UnifiedFreeList::numFreeVecRegs(), ArmISA::NumVecElemPerVecReg, PhysRegFile::numVecElemPhysRegs(), PhysRegFile::numVecPhysRegs(), ArmISA::NumVecRegs, panic_if, regFile, vecMode, and VecRegClass.
void UnifiedRenameMap::switchMode | ( | VecMode | newVecMode | ) |
Set vector mode to Full or Elem.
Ignore 'silent' modifications.
newVecMode | new vector renaming mode |
Definition at line 171 of file rename_map.cc.
References PhysRegFile::getRegElemIds(), PhysRegFile::getRegIds(), PhysRegFile::getTrueId(), ArmISA::i, MipsISA::l, SimpleRenameMap::lookup(), ArmISA::NumVecElemPerVecReg, ArmISA::NumVecRegs, PhysRegFile::readVecElem(), regFile, setEntry(), PhysRegFile::setVecReg(), VecElemClass, vecElemMap, vecMap, vecMode, and VecRegClass.
|
private |
The condition-code register rename map.
Definition at line 179 of file rename_map.hh.
Referenced by canRename(), init(), lookup(), numFreeCCEntries(), rename(), and setEntry().
|
private |
The floating-point register rename map.
Definition at line 176 of file rename_map.hh.
Referenced by canRename(), init(), lookup(), numFreeEntries(), numFreeFloatEntries(), rename(), and setEntry().
|
private |
The integer register rename map.
Definition at line 173 of file rename_map.hh.
Referenced by canRename(), init(), lookup(), numFreeEntries(), numFreeIntEntries(), rename(), and setEntry().
|
private |
The predicate register rename map.
Definition at line 188 of file rename_map.hh.
Referenced by canRename(), init(), lookup(), numFreeEntries(), numFreePredEntries(), rename(), and setEntry().
|
private |
The register file object is used only to get PhysRegIdPtr on MiscRegs, as they are stored in it.
Definition at line 197 of file rename_map.hh.
Referenced by init(), lookup(), switchFreeList(), and switchMode().
|
private |
The vector element register rename map.
Definition at line 185 of file rename_map.hh.
Referenced by canRename(), init(), lookup(), numFreeEntries(), numFreeVecEntries(), rename(), setEntry(), and switchMode().
|
private |
The vector register rename map.
Definition at line 182 of file rename_map.hh.
Referenced by canRename(), init(), lookup(), numFreeEntries(), numFreeVecEntries(), rename(), setEntry(), and switchMode().
|
private |
Definition at line 191 of file rename_map.hh.
Referenced by init(), lookup(), numFreeEntries(), numFreeVecEntries(), rename(), setEntry(), switchFreeList(), and switchMode().