gem5
v20.0.0.3
|
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 | VecReg = TheISA::VecReg |
using | VecPredReg = TheISA::VecPredReg |
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... | |
Static Private Attributes | |
static constexpr uint32_t | NVecElems = TheISA::NumVecElemPerVecReg |
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 167 of file rename_map.hh.
Definition at line 203 of file rename_map.hh.
|
private |
Definition at line 192 of file rename_map.hh.
|
private |
Definition at line 172 of file rename_map.hh.
|
private |
Definition at line 171 of file rename_map.hh.
|
inline |
Default constructor.
init() must be called prior to use.
Definition at line 206 of file rename_map.hh.
|
inline |
Destructor.
Definition at line 209 of file rename_map.hh.
References SimpleRenameMap::freeList, and SimpleRenameMap::init().
|
inline |
Return whether there are enough registers to serve the request.
Definition at line 379 of file rename_map.hh.
References SimpleRenameMap::numFreeEntries().
void UnifiedRenameMap::init | ( | PhysRegFile * | _regFile, |
RegIndex | _intZeroReg, | ||
RegIndex | _floatZeroReg, | ||
UnifiedFreeList * | freeList, | ||
VecMode | _mode | ||
) |
Initializes rename map with given parameters.
Definition at line 110 of file rename_map.cc.
References UnifiedFreeList::ccList, UnifiedFreeList::floatList, UnifiedFreeList::intList, ArmISA::NumCCRegs, ArmISA::NumFloatRegs, ArmISA::NumIntRegs, ArmISA::NumVecPredRegs, ArmISA::NumVecRegs, UnifiedFreeList::predList, UnifiedFreeList::vecElemList, and UnifiedFreeList::vecList.
|
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 265 of file rename_map.hh.
References CCRegClass, RegId::className(), RegId::classValue(), RegId::flatIndex(), FloatRegClass, PhysRegFile::getMiscRegId(), IntRegClass, SimpleRenameMap::lookup(), MiscRegClass, panic, VecElemClass, VecPredRegClass, and VecRegClass.
|
inline |
Definition at line 374 of file rename_map.hh.
References 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 356 of file rename_map.hh.
References SimpleRenameMap::numFreeEntries().
|
inline |
Definition at line 366 of file rename_map.hh.
References SimpleRenameMap::numFreeEntries().
|
inline |
Definition at line 365 of file rename_map.hh.
References SimpleRenameMap::numFreeEntries().
|
inline |
Definition at line 373 of file rename_map.hh.
References SimpleRenameMap::numFreeEntries().
|
inline |
Definition at line 367 of file rename_map.hh.
References SimpleRenameMap::numFreeEntries().
|
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 226 of file rename_map.hh.
References CCRegClass, RegId::className(), RegId::classValue(), FloatRegClass, IntRegClass, SimpleRenameMap::lookup(), MiscRegClass, panic, SimpleRenameMap::rename(), VecElemClass, 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 CCRegClass, RegId::className(), RegId::classValue(), FloatRegClass, IntRegClass, PhysRegId::isCCPhysReg(), PhysRegId::isFloatPhysReg(), PhysRegId::isIntPhysReg(), PhysRegId::isVecPredPhysReg(), PhysRegId::isVectorPhysElem(), PhysRegId::isVectorPhysReg(), SimpleRenameMap::lookup(), MiscRegClass, panic, SimpleRenameMap::setEntry(), VecElemClass, VecPredRegClass, and VecRegClass.
void UnifiedRenameMap::switchFreeList | ( | UnifiedFreeList * | freeList | ) |
Switch freeList of registers from Full to Elem or vicevers depending on vecMode (vector renaming mode).
Definition at line 135 of file rename_map.cc.
References UnifiedFreeList::addRegs(), UnifiedFreeList::getVecElem(), UnifiedFreeList::getVecReg(), UnifiedFreeList::hasFreeVecElems(), UnifiedFreeList::hasFreeVecRegs(), UnifiedFreeList::numFreeVecElems(), UnifiedFreeList::numFreeVecRegs(), ArmISA::NumVecElemPerVecReg, ArmISA::NumVecRegs, panic_if, 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 173 of file rename_map.cc.
References ArmISA::i, MipsISA::l, ArmISA::NumVecRegs, SimpleRenameMap::setEntry(), VecElemClass, and VecRegClass.
|
private |
The condition-code register rename map.
Definition at line 181 of file rename_map.hh.
|
private |
The floating-point register rename map.
Definition at line 178 of file rename_map.hh.
|
private |
The integer register rename map.
Definition at line 175 of file rename_map.hh.
|
staticprivate |
Definition at line 170 of file rename_map.hh.
|
private |
The predicate register rename map.
Definition at line 190 of file rename_map.hh.
|
private |
The register file object is used only to get PhysRegIdPtr on MiscRegs, as they are stored in it.
Definition at line 199 of file rename_map.hh.
|
private |
The vector element register rename map.
Definition at line 187 of file rename_map.hh.
|
private |
The vector register rename map.
Definition at line 184 of file rename_map.hh.
|
private |
Definition at line 193 of file rename_map.hh.