gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
rename_map.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016-2018,2019 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Copyright (c) 2004-2005 The Regents of The University of Michigan
15  * Copyright (c) 2013 Advanced Micro Devices, Inc.
16  * All rights reserved.
17  *
18  * Redistribution and use in source and binary forms, with or without
19  * modification, are permitted provided that the following conditions are
20  * met: redistributions of source code must retain the above copyright
21  * notice, this list of conditions and the following disclaimer;
22  * redistributions in binary form must reproduce the above copyright
23  * notice, this list of conditions and the following disclaimer in the
24  * documentation and/or other materials provided with the distribution;
25  * neither the name of the copyright holders nor the names of its
26  * contributors may be used to endorse or promote products derived from
27  * this software without specific prior written permission.
28  *
29  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40  */
41 
42 #include "cpu/o3/rename_map.hh"
43 
44 #include <vector>
45 
46 #include "cpu/reg_class.hh"
47 #include "debug/Rename.hh"
48 
49 /**** SimpleRenameMap methods ****/
50 
52  : freeList(NULL), zeroReg(IntRegClass,0)
53 {
54 }
55 
56 
57 void
58 SimpleRenameMap::init(unsigned size, SimpleFreeList *_freeList,
59  RegIndex _zeroReg)
60 {
61  assert(freeList == NULL);
62  assert(map.empty());
63 
64  map.resize(size);
65  freeList = _freeList;
66  zeroReg = RegId(IntRegClass, _zeroReg);
67 }
68 
71 {
72  PhysRegIdPtr renamed_reg;
73  // Record the current physical register that is renamed to the
74  // requested architected register.
75  PhysRegIdPtr prev_reg = map[arch_reg.flatIndex()];
76 
77  if (arch_reg == zeroReg) {
78  assert(prev_reg->isZeroReg());
79  renamed_reg = prev_reg;
80  } else if (prev_reg->getNumPinnedWrites() > 0) {
81  // Do not rename if the register is pinned
82  assert(arch_reg.getNumPinnedWrites() == 0); // Prevent pinning the
83  // same register twice
84  DPRINTF(Rename, "Renaming pinned reg, numPinnedWrites %d\n",
85  prev_reg->getNumPinnedWrites());
86  renamed_reg = prev_reg;
87  renamed_reg->decrNumPinnedWrites();
88  } else {
89  renamed_reg = freeList->getReg();
90  map[arch_reg.flatIndex()] = renamed_reg;
91  renamed_reg->setNumPinnedWrites(arch_reg.getNumPinnedWrites());
92  renamed_reg->setNumPinnedWritesToComplete(
93  arch_reg.getNumPinnedWrites() + 1);
94  }
95 
96  DPRINTF(Rename, "Renamed reg %d to physical reg %d (%d) old mapping was"
97  " %d (%d)\n",
98  arch_reg, renamed_reg->flatIndex(), renamed_reg->flatIndex(),
99  prev_reg->flatIndex(), prev_reg->flatIndex());
100 
101  return RenameInfo(renamed_reg, prev_reg);
102 }
103 
104 
105 /**** UnifiedRenameMap methods ****/
106 
107 void
109  RegIndex _intZeroReg,
110  RegIndex _floatZeroReg,
111  UnifiedFreeList *freeList,
112  VecMode _mode)
113 {
114  regFile = _regFile;
115  vecMode = _mode;
116 
117  intMap.init(TheISA::NumIntRegs, &(freeList->intList), _intZeroReg);
118 
119  floatMap.init(TheISA::NumFloatRegs, &(freeList->floatList), _floatZeroReg);
120 
121  vecMap.init(TheISA::NumVecRegs, &(freeList->vecList), (RegIndex)-1);
122 
124  &(freeList->vecElemList), (RegIndex)-1);
125 
127 
128  ccMap.init(TheISA::NumCCRegs, &(freeList->ccList), (RegIndex)-1);
129 
130 }
131 
132 void
134 {
135  if (vecMode == Enums::Elem) {
136 
137  /* The free list should currently be tracking full registers. */
138  panic_if(freeList->hasFreeVecElems(),
139  "The free list is already tracking Vec elems");
140  panic_if(freeList->numFreeVecRegs() !=
142  "The free list has lost vector registers");
143 
144  /* Split the free regs. */
145  while (freeList->hasFreeVecRegs()) {
146  auto vr = freeList->getVecReg();
147  auto range = this->regFile->getRegElemIds(vr);
148  freeList->addRegs(range.first, range.second);
149  }
150 
151  } else if (vecMode == Enums::Full) {
152 
153  /* The free list should currently be tracking register elems. */
154  panic_if(freeList->hasFreeVecRegs(),
155  "The free list is already tracking full Vec");
156  panic_if(freeList->numFreeVecElems() !=
159  "The free list has lost vector register elements");
160 
161  auto range = regFile->getRegIds(VecRegClass);
162  freeList->addRegs(range.first + TheISA::NumVecRegs, range.second);
163 
164  /* We remove the elems from the free list. */
165  while (freeList->hasFreeVecElems())
166  freeList->getVecElem();
167  }
168 }
169 
170 void
172 {
173  if (newVecMode == Enums::Elem && vecMode == Enums::Full) {
174 
175  /* Switch to vector element rename mode. */
176  vecMode = Enums::Elem;
177 
178  /* Split the mapping of each arch reg. */
179  int vec_idx = 0;
180  for (auto &vec: vecMap) {
181  PhysRegFile::IdRange range = this->regFile->getRegElemIds(vec);
182  auto idx = 0;
183  for (auto phys_elem = range.first;
184  phys_elem < range.second; idx++, phys_elem++) {
185 
186  setEntry(RegId(VecElemClass, vec_idx, idx), &(*phys_elem));
187  }
188  vec_idx++;
189  }
190 
191  } else if (newVecMode == Enums::Full && vecMode == Enums::Elem) {
192 
193  /* Switch to full vector register rename mode. */
194  vecMode = Enums::Full;
195 
196  /* To rebuild the arch regs we take the easy road:
197  * 1.- Stitch the elems together into vectors.
198  * 2.- Replace the contents of the register file with the vectors
199  * 3.- Set the remaining registers as free
200  */
202  for (uint32_t i = 0; i < TheISA::NumVecRegs; i++) {
203  TheISA::VecReg dst = new_RF[i].as<TheISA::VecElem>();
204  for (uint32_t l = 0; l < TheISA::NumVecElemPerVecReg; l++) {
205  RegId s_rid(VecElemClass, i, l);
206  PhysRegIdPtr s_prid = vecElemMap.lookup(s_rid);
207  dst[l] = regFile->readVecElem(s_prid);
208  }
209  }
210 
211  for (uint32_t i = 0; i < TheISA::NumVecRegs; i++) {
212  PhysRegId pregId(VecRegClass, i, 0);
213  regFile->setVecReg(regFile->getTrueId(&pregId), new_RF[i]);
214  }
215 
216  auto range = regFile->getRegIds(VecRegClass);
217  for (uint32_t i = 0; i < TheISA::NumVecRegs; i++) {
218  setEntry(RegId(VecRegClass, i), &(*(range.first + i)));
219  }
220 
221  }
222 }
RegId::getNumPinnedWrites
int getNumPinnedWrites() const
Definition: reg_class.hh:203
ArmISA::VecReg
::VecRegT< VecElem, NumVecElemPerVecReg, false > VecReg
Definition: registers.hh:61
PhysRegFile::numVecElemPhysRegs
unsigned numVecElemPhysRegs() const
Definition: regfile.hh:161
SimpleRenameMap::freeList
SimpleFreeList * freeList
Pointer to the free list from which new physical registers should be allocated in rename()
Definition: rename_map.hh:78
ArmISA::VecRegContainer
VecReg::Container VecRegContainer
Definition: registers.hh:63
VecElemClass
@ VecElemClass
Vector Register Native Elem lane.
Definition: reg_class.hh:58
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
UnifiedFreeList::addRegs
void addRegs(InputIt first, InputIt last)
Adds a register back to the free list.
Definition: free_list.hh:257
UnifiedRenameMap::intMap
SimpleRenameMap intMap
The integer register rename map.
Definition: rename_map.hh:173
UnifiedFreeList::ccList
SimpleFreeList ccList
The list of free condition-code registers.
Definition: free_list.hh:141
PhysRegId::isZeroReg
bool isZeroReg() const
Check if this is the zero register.
Definition: reg_class.hh:143
UnifiedRenameMap::switchFreeList
void switchFreeList(UnifiedFreeList *freeList)
Switch freeList of registers from Full to Elem or vicevers depending on vecMode (vector renaming mode...
Definition: rename_map.cc:133
PhysRegId::flatIndex
const PhysRegIndex & flatIndex() const
Flat index accessor.
Definition: reg_class.hh:309
UnifiedRenameMap::regFile
PhysRegFile * regFile
The register file object is used only to get PhysRegIdPtr on MiscRegs, as they are stored in it.
Definition: rename_map.hh:197
PhysRegFile
Simple physical register file class.
Definition: regfile.hh:59
UnifiedFreeList::vecList
SimpleFreeList vecList
The following two are exclusive interfaces.
Definition: free_list.hh:131
UnifiedRenameMap::switchMode
void switchMode(VecMode newVecMode)
Set vector mode to Full or Elem.
Definition: rename_map.cc:171
UnifiedRenameMap::setEntry
void setEntry(const RegId &arch_reg, PhysRegIdPtr phys_reg)
Update rename map with a specific mapping.
Definition: rename_map.hh:307
PhysRegFile::getRegElemIds
IdRange getRegElemIds(PhysRegIdPtr reg)
Get the PhysRegIds of the elems of a vector register.
Definition: regfile.cc:185
UnifiedFreeList::floatList
SimpleFreeList floatList
The list of free floating point registers.
Definition: free_list.hh:126
RegId
Register ID: describe an architectural register with its class and index.
Definition: reg_class.hh:75
SimpleRenameMap::init
void init(unsigned size, SimpleFreeList *_freeList, RegIndex _zeroReg)
Because we have an array of rename maps (one per thread) in the CPU, it's awkward to initialize this ...
Definition: rename_map.cc:58
UnifiedRenameMap::vecMap
SimpleRenameMap vecMap
The vector register rename map.
Definition: rename_map.hh:182
PhysRegFile::readVecElem
const TheISA::VecElem & readVecElem(PhysRegIdPtr phys_reg) const
Reads a vector element.
Definition: regfile.hh:251
ArmISA::VecElem
uint32_t VecElem
Definition: registers.hh:60
UnifiedRenameMap::vecElemMap
SimpleRenameMap vecElemMap
The vector element register rename map.
Definition: rename_map.hh:185
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:237
UnifiedRenameMap::init
void init(PhysRegFile *_regFile, RegIndex _intZeroReg, RegIndex _floatZeroReg, UnifiedFreeList *freeList, VecMode _mode)
Initializes rename map with given parameters.
Definition: rename_map.cc:108
ArmISA::NumVecElemPerVecReg
constexpr unsigned NumVecElemPerVecReg
Definition: registers.hh:58
PhysRegId::setNumPinnedWritesToComplete
void setNumPinnedWritesToComplete(int numWrites)
Definition: reg_class.hh:345
UnifiedFreeList
FreeList class that simply holds the list of free integer and floating point registers.
Definition: free_list.hh:114
PhysRegId::decrNumPinnedWrites
void decrNumPinnedWrites()
Definition: reg_class.hh:333
UnifiedRenameMap::ccMap
SimpleRenameMap ccMap
The condition-code register rename map.
Definition: rename_map.hh:179
UnifiedFreeList::numFreeVecRegs
unsigned numFreeVecRegs() const
Returns the number of free vector registers.
Definition: free_list.hh:243
ArmISA::NumVecPredRegs
const int NumVecPredRegs
Definition: registers.hh:90
SimpleRenameMap::lookup
PhysRegIdPtr lookup(const RegId &arch_reg) const
Look up the physical register mapped to an architectural register.
Definition: rename_map.hh:125
SimpleRenameMap::RenameInfo
std::pair< PhysRegIdPtr, PhysRegIdPtr > RenameInfo
Pair of a physical register and a physical register.
Definition: rename_map.hh:108
ArmISA::NumFloatRegs
const int NumFloatRegs
Definition: registers.hh:75
std::pair
STL pair class.
Definition: stl.hh:58
UnifiedRenameMap::floatMap
SimpleRenameMap floatMap
The floating-point register rename map.
Definition: rename_map.hh:176
rename_map.hh
UnifiedRenameMap::predMap
SimpleRenameMap predMap
The predicate register rename map.
Definition: rename_map.hh:188
ArmISA::NumIntRegs
const int NumIntRegs
Definition: registers.hh:74
PhysRegId::getNumPinnedWrites
int getNumPinnedWrites() const
Definition: reg_class.hh:318
UnifiedFreeList::numFreeVecElems
unsigned numFreeVecElems() const
Returns the number of free vector registers.
Definition: free_list.hh:246
IntRegClass
@ IntRegClass
Integer register.
Definition: reg_class.hh:53
UnifiedRenameMap::VecMode
Enums::VecRegRenameMode VecMode
Definition: rename_map.hh:190
UnifiedFreeList::hasFreeVecElems
bool hasFreeVecElems() const
Checks if there are any free vector registers.
Definition: free_list.hh:228
UnifiedRenameMap::vecMode
VecMode vecMode
Definition: rename_map.hh:191
panic_if
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Definition: logging.hh:197
VecRegClass
@ VecRegClass
Vector Register.
Definition: reg_class.hh:56
ArmISA::NumCCRegs
const int NumCCRegs
Definition: registers.hh:76
SimpleRenameMap::rename
RenameInfo rename(const RegId &arch_reg)
Tell rename map to get a new free physical register to remap the specified architectural register.
Definition: rename_map.cc:70
PhysRegFile::numVecPhysRegs
unsigned numVecPhysRegs() const
Definition: regfile.hh:156
UnifiedFreeList::predList
SimpleFreeList predList
The list of free predicate registers.
Definition: free_list.hh:138
RegIndex
uint16_t RegIndex
Definition: types.hh:52
SimpleRenameMap::map
Arch2PhysMap map
The acutal arch-to-phys register map.
Definition: rename_map.hh:68
SimpleRenameMap::SimpleRenameMap
SimpleRenameMap()
Definition: rename_map.cc:51
SimpleFreeList::getReg
PhysRegIdPtr getReg()
Get the next available register from the free list.
Definition: free_list.hh:85
PhysRegId::setNumPinnedWrites
void setNumPinnedWrites(int numWrites)
Definition: reg_class.hh:321
reg_class.hh
PhysRegFile::getTrueId
PhysRegIdPtr getTrueId(PhysRegIdPtr reg)
Get the true physical register id.
Definition: regfile.cc:221
PhysRegId
Physical register ID.
Definition: reg_class.hh:223
RegId::flatIndex
RegIndex flatIndex() const
Index flattening.
Definition: reg_class.hh:178
ArmISA::NumVecRegs
const int NumVecRegs
Definition: registers.hh:89
UnifiedFreeList::hasFreeVecRegs
bool hasFreeVecRegs() const
Checks if there are any free vector registers.
Definition: free_list.hh:225
UnifiedFreeList::vecElemList
SimpleFreeList vecElemList
The list of free vector element registers.
Definition: free_list.hh:134
MipsISA::l
Bitfield< 5 > l
Definition: pra_constants.hh:320
UnifiedFreeList::intList
SimpleFreeList intList
The list of free integer registers.
Definition: free_list.hh:123
UnifiedFreeList::getVecElem
PhysRegIdPtr getVecElem()
Gets a free vector elemenet register.
Definition: free_list.hh:183
SimpleRenameMap::zeroReg
RegId zeroReg
The architectural index of the zero register.
Definition: rename_map.hh:87
SimpleFreeList
Free list for a single class of registers (e.g., integer or floating point).
Definition: free_list.hh:61
PhysRegFile::getRegIds
IdRange getRegIds(RegClass cls)
Get the PhysRegIds of the elems of all vector registers.
Definition: regfile.cc:196
PhysRegFile::setVecReg
void setVecReg(PhysRegIdPtr phys_reg, const TheISA::VecRegContainer &val)
Sets a vector register to the given value.
Definition: regfile.hh:324
UnifiedFreeList::getVecReg
PhysRegIdPtr getVecReg()
Gets a free vector register.
Definition: free_list.hh:180

Generated on Tue Jun 22 2021 15:28:26 for gem5 by doxygen 1.8.17