Go to the documentation of this file.
46 #include "arch/vecregs.hh"
48 #include "debug/Rename.hh"
69 map.resize(reg_class_info.
size());
84 renamed_reg = prev_reg;
91 renamed_reg = prev_reg;
101 DPRINTF(
Rename,
"Renamed reg %d to physical reg %d (%d) old mapping was"
135 "The free list is already tracking Vec elems");
138 "The free list has lost vector registers");
144 freeList->
addRegs(range.first, range.second);
147 }
else if (
vecMode == enums::Full) {
151 "The free list is already tracking full Vec");
154 "The free list has lost vector register elements");
168 if (newVecMode == enums::Elem &&
vecMode == enums::Full) {
178 for (
auto phys_elem = range.first;
179 phys_elem < range.second; idx++, phys_elem++) {
186 }
else if (newVecMode == enums::Full &&
vecMode == enums::Elem) {
199 const size_t elemsPerVec = numElems / numVecs;
200 for (uint32_t
i = 0;
i < numVecs;
i++) {
202 for (uint32_t
l = 0;
l < elemsPerVec;
l++) {
209 for (uint32_t
i = 0;
i < numVecs;
i++) {
215 for (uint32_t
i = 0;
i < numVecs;
i++) {
void switchMode(VecMode newVecMode)
Set vector mode to Full or Elem.
@ VecElemClass
Vector Register Native Elem lane.
RegId zeroReg
The architectural index of the zero register.
@ CCRegClass
Condition-code register.
const TheISA::VecElem & readVecElem(PhysRegIdPtr phys_reg) const
Reads a vector element.
int getNumPinnedWrites() const
bool hasFreeVecRegs() const
Checks if there are any free vector registers.
RegIndex flatIndex() const
Index flattening.
Free list for a single class of registers (e.g., integer or floating point).
int getNumPinnedWrites() const
SimpleFreeList * freeList
Pointer to the free list from which new physical registers should be allocated in rename()
@ FloatRegClass
Floating-point register.
FreeList class that simply holds the list of free integer and floating point registers.
SimpleRenameMap intMap
The integer register rename map.
SimpleFreeList vecElemList
The list of free vector element registers.
bool hasFreeVecElems() const
Checks if there are any free vector registers.
IdRange getRegIds(RegClass cls)
Get the PhysRegIds of the elems of all vector registers.
unsigned numFreeVecElems() const
Returns the number of free vector registers.
RegIndex index() const
Index accessors.
void init(const RegClassInfo ®_class_info, SimpleFreeList *_freeList)
Because we have an array of rename maps (one per thread) in the CPU, it's awkward to initialize this ...
SimpleRenameMap vecElemMap
The vector element register rename map.
PhysRegIdPtr getTrueId(PhysRegIdPtr reg)
Get the true physical register id.
SimpleFreeList floatList
The list of free floating point registers.
SimpleRenameMap predMap
The predicate register rename map.
void decrNumPinnedWrites()
const RegIndex & flatIndex() const
Flat index accessor.
SimpleFreeList predList
The list of free predicate registers.
SimpleRenameMap ccMap
The condition-code register rename map.
Simple physical register file class.
void switchFreeList(UnifiedFreeList *freeList)
Switch freeList of registers from Full to Elem or vicevers depending on vecMode (vector renaming mode...
SimpleRenameMap vecMap
The vector register rename map.
PhysRegIdPtr lookup(const RegId &arch_reg) const
Look up the physical register mapped to an architectural register.
size_t numArchRegs() const
void addRegs(InputIt first, InputIt last)
Adds a register back to the free list.
gem5::VecRegContainer< NumVecElemPerVecReg *sizeof(VecElem)> VecRegContainer
unsigned numFreeVecRegs() const
Returns the number of free vector registers.
void init(const BaseISA::RegClasses ®Classes, PhysRegFile *_regFile, UnifiedFreeList *freeList, VecMode _mode)
Initializes rename map with given parameters.
RenameInfo rename(const RegId &arch_reg)
Tell rename map to get a new free physical register to remap the specified architectural register.
PhysRegIdPtr getVecElem()
Gets a free vector elemenet register.
unsigned numVecPhysRegs() const
SimpleRenameMap floatMap
The floating-point register rename map.
std::pair< PhysRegIdPtr, PhysRegIdPtr > RenameInfo
Pair of a physical register and a physical register.
PhysRegIdPtr getReg()
Get the next available register from the free list.
PhysRegIdPtr getVecReg()
Gets a free vector register.
Rename handles both single threaded and SMT rename.
IdRange getRegElemIds(PhysRegIdPtr reg)
Get the PhysRegIds of the elems of a vector register.
@ VecRegClass
Vector Register.
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
SimpleFreeList ccList
The list of free condition-code registers.
void setNumPinnedWrites(int numWrites)
void setNumPinnedWritesToComplete(int numWrites)
void setVecReg(PhysRegIdPtr phys_reg, const TheISA::VecRegContainer &val)
Sets a vector register to the given value.
@ IntRegClass
Integer register.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
SimpleFreeList intList
The list of free integer registers.
RegIndex index() const
Visible RegId methods.
Arch2PhysMap map
The acutal arch-to-phys register map.
unsigned numVecElemPhysRegs() const
PhysRegFile * regFile
The register file object is used only to get PhysRegIdPtr on MiscRegs, as they are stored in it.
Register ID: describe an architectural register with its class and index.
enums::VecRegRenameMode VecMode
void setEntry(const RegId &arch_reg, PhysRegIdPtr phys_reg)
Update rename map with a specific mapping.
SimpleFreeList vecList
The following two are exclusive interfaces.
Generated on Wed Jul 28 2021 12:10:24 for gem5 by doxygen 1.8.17