gem5  v20.0.0.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 using namespace std;
50 
51 /**** SimpleRenameMap methods ****/
52 
54  : freeList(NULL), zeroReg(IntRegClass,0)
55 {
56 }
57 
58 
59 void
60 SimpleRenameMap::init(unsigned size, SimpleFreeList *_freeList,
61  RegIndex _zeroReg)
62 {
63  assert(freeList == NULL);
64  assert(map.empty());
65 
66  map.resize(size);
67  freeList = _freeList;
68  zeroReg = RegId(IntRegClass, _zeroReg);
69 }
70 
73 {
74  PhysRegIdPtr renamed_reg;
75  // Record the current physical register that is renamed to the
76  // requested architected register.
77  PhysRegIdPtr prev_reg = map[arch_reg.flatIndex()];
78 
79  if (arch_reg == zeroReg) {
80  assert(prev_reg->isZeroReg());
81  renamed_reg = prev_reg;
82  } else if (prev_reg->getNumPinnedWrites() > 0) {
83  // Do not rename if the register is pinned
84  assert(arch_reg.getNumPinnedWrites() == 0); // Prevent pinning the
85  // same register twice
86  DPRINTF(Rename, "Renaming pinned reg, numPinnedWrites %d\n",
87  prev_reg->getNumPinnedWrites());
88  renamed_reg = prev_reg;
89  renamed_reg->decrNumPinnedWrites();
90  } else {
91  renamed_reg = freeList->getReg();
92  map[arch_reg.flatIndex()] = renamed_reg;
93  renamed_reg->setNumPinnedWrites(arch_reg.getNumPinnedWrites());
94  renamed_reg->setNumPinnedWritesToComplete(
95  arch_reg.getNumPinnedWrites() + 1);
96  }
97 
98  DPRINTF(Rename, "Renamed reg %d to physical reg %d (%d) old mapping was"
99  " %d (%d)\n",
100  arch_reg, renamed_reg->flatIndex(), renamed_reg->flatIndex(),
101  prev_reg->flatIndex(), prev_reg->flatIndex());
102 
103  return RenameInfo(renamed_reg, prev_reg);
104 }
105 
106 
107 /**** UnifiedRenameMap methods ****/
108 
109 void
111  RegIndex _intZeroReg,
112  RegIndex _floatZeroReg,
114  VecMode _mode)
115 {
116  regFile = _regFile;
117  vecMode = _mode;
118 
119  intMap.init(TheISA::NumIntRegs, &(freeList->intList), _intZeroReg);
120 
121  floatMap.init(TheISA::NumFloatRegs, &(freeList->floatList), _floatZeroReg);
122 
123  vecMap.init(TheISA::NumVecRegs, &(freeList->vecList), (RegIndex)-1);
124 
125  vecElemMap.init(TheISA::NumVecRegs * NVecElems,
126  &(freeList->vecElemList), (RegIndex)-1);
127 
128  predMap.init(TheISA::NumVecPredRegs, &(freeList->predList), (RegIndex)-1);
129 
130  ccMap.init(TheISA::NumCCRegs, &(freeList->ccList), (RegIndex)-1);
131 
132 }
133 
134 void
136 {
137  if (vecMode == Enums::Elem) {
138 
139  /* The free list should currently be tracking full registers. */
140  panic_if(freeList->hasFreeVecElems(),
141  "The free list is already tracking Vec elems");
142  panic_if(freeList->numFreeVecRegs() !=
143  regFile->numVecPhysRegs() - TheISA::NumVecRegs,
144  "The free list has lost vector registers");
145 
146  /* Split the free regs. */
147  while (freeList->hasFreeVecRegs()) {
148  auto vr = freeList->getVecReg();
149  auto range = this->regFile->getRegElemIds(vr);
150  freeList->addRegs(range.first, range.second);
151  }
152 
153  } else if (vecMode == Enums::Full) {
154 
155  /* The free list should currently be tracking register elems. */
156  panic_if(freeList->hasFreeVecRegs(),
157  "The free list is already tracking full Vec");
158  panic_if(freeList->numFreeVecElems() !=
159  regFile->numVecElemPhysRegs() -
161  "The free list has lost vector register elements");
162 
163  auto range = regFile->getRegIds(VecRegClass);
164  freeList->addRegs(range.first + TheISA::NumVecRegs, range.second);
165 
166  /* We remove the elems from the free list. */
167  while (freeList->hasFreeVecElems())
168  freeList->getVecElem();
169  }
170 }
171 
172 void
174 {
175  if (newVecMode == Enums::Elem && vecMode == Enums::Full) {
176 
177  /* Switch to vector element rename mode. */
178  vecMode = Enums::Elem;
179 
180  /* Split the mapping of each arch reg. */
181  int vec_idx = 0;
182  for (auto &vec: vecMap) {
183  PhysRegFile::IdRange range = this->regFile->getRegElemIds(vec);
184  auto idx = 0;
185  for (auto phys_elem = range.first;
186  phys_elem < range.second; idx++, phys_elem++) {
187 
188  setEntry(RegId(VecElemClass, vec_idx, idx), &(*phys_elem));
189  }
190  vec_idx++;
191  }
192 
193  } else if (newVecMode == Enums::Full && vecMode == Enums::Elem) {
194 
195  /* Switch to full vector register rename mode. */
196  vecMode = Enums::Full;
197 
198  /* To rebuild the arch regs we take the easy road:
199  * 1.- Stitch the elems together into vectors.
200  * 2.- Replace the contents of the register file with the vectors
201  * 3.- Set the remaining registers as free
202  */
204  for (uint32_t i = 0; i < TheISA::NumVecRegs; i++) {
205  VecReg dst = new_RF[i].as<TheISA::VecElem>();
206  for (uint32_t l = 0; l < NVecElems; l++) {
207  RegId s_rid(VecElemClass, i, l);
208  PhysRegIdPtr s_prid = vecElemMap.lookup(s_rid);
209  dst[l] = regFile->readVecElem(s_prid);
210  }
211  }
212 
213  for (uint32_t i = 0; i < TheISA::NumVecRegs; i++) {
214  PhysRegId pregId(VecRegClass, i, 0);
215  regFile->setVecReg(regFile->getTrueId(&pregId), new_RF[i]);
216  }
217 
218  auto range = regFile->getRegIds(VecRegClass);
219  for (uint32_t i = 0; i < TheISA::NumVecRegs; i++) {
220  setEntry(RegId(VecRegClass, i), &(*(range.first + i)));
221  }
222 
223  }
224 }
#define DPRINTF(x,...)
Definition: trace.hh:225
SimpleFreeList predList
The list of free predicate registers.
Definition: free_list.hh:139
int getNumPinnedWrites() const
Definition: reg_class.hh:204
Arch2PhysMap map
The acutal arch-to-phys register map.
Definition: rename_map.hh:68
SimpleFreeList floatList
The list of free floating point registers.
Definition: free_list.hh:127
void setNumPinnedWrites(int numWrites)
Definition: reg_class.hh:315
Bitfield< 7 > i
STL pair class.
Definition: stl.hh:58
Simple physical register file class.
Definition: regfile.hh:60
void setNumPinnedWritesToComplete(int numWrites)
Definition: reg_class.hh:337
bool hasFreeVecRegs() const
Checks if there are any free vector registers.
Definition: free_list.hh:226
SimpleFreeList intList
The list of free integer registers.
Definition: free_list.hh:124
Enums::VecRegRenameMode VecMode
Definition: rename_map.hh:192
const int NumFloatRegs
Definition: registers.hh:83
unsigned numFreeVecRegs() const
Returns the number of free vector registers.
Definition: free_list.hh:244
RegId zeroReg
The architectural index of the zero register.
Definition: rename_map.hh:87
constexpr unsigned NumVecElemPerVecReg
Definition: registers.hh:66
Overload hash function for BasicBlockRange type.
Definition: vec_reg.hh:587
uint32_t VecElem
Definition: registers.hh:68
SimpleFreeList vecList
The following two are exclusive interfaces.
Definition: free_list.hh:132
Free list for a single class of registers (e.g., integer or floating point).
Definition: free_list.hh:62
Vector Register Native Elem lane.
Definition: reg_class.hh:58
uint16_t RegIndex
Definition: types.hh:40
void addRegs(InputIt first, InputIt last)
Adds a register back to the free list.
Definition: free_list.hh:258
PhysRegIdPtr getVecReg()
Gets a free vector register.
Definition: free_list.hh:181
int getNumPinnedWrites() const
Definition: reg_class.hh:313
void setEntry(const RegId &arch_reg, PhysRegIdPtr phys_reg)
Update rename map with a specific mapping.
Definition: rename_map.hh:136
SimpleFreeList * freeList
Pointer to the free list from which new physical registers should be allocated in rename() ...
Definition: rename_map.hh:78
PhysRegIdPtr getVecElem()
Gets a free vector elemenet register.
Definition: free_list.hh:184
void init(unsigned size, SimpleFreeList *_freeList, RegIndex _zeroReg)
Because we have an array of rename maps (one per thread) in the CPU, it&#39;s awkward to initialize this ...
Definition: rename_map.cc:60
SimpleFreeList vecElemList
The list of free vector element registers.
Definition: free_list.hh:135
FreeList class that simply holds the list of free integer and floating point registers.
Definition: free_list.hh:115
TheISA::VecReg VecReg
Definition: rename_map.hh:171
SimpleFreeList ccList
The list of free condition-code registers.
Definition: free_list.hh:142
Physical register ID.
Definition: reg_class.hh:223
void decrNumPinnedWrites()
Definition: reg_class.hh:327
std::pair< PhysRegIdPtr, PhysRegIdPtr > RenameInfo
Pair of a physical register and a physical register.
Definition: rename_map.hh:108
void switchMode(VecMode newVecMode)
Set vector mode to Full or Elem.
Definition: rename_map.cc:173
const PhysRegIndex & flatIndex() const
Flat index accessor.
Definition: reg_class.hh:305
VecReg::Container VecRegContainer
Definition: registers.hh:71
const int NumIntRegs
Definition: registers.hh:82
const int NumCCRegs
Definition: registers.hh:84
RegIndex flatIndex() const
Index flattening.
Definition: reg_class.hh:179
const int NumVecPredRegs
Definition: registers.hh:98
void init(PhysRegFile *_regFile, RegIndex _intZeroReg, RegIndex _floatZeroReg, UnifiedFreeList *freeList, VecMode _mode)
Initializes rename map with given parameters.
Definition: rename_map.cc:110
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:72
Register ID: describe an architectural register with its class and index.
Definition: reg_class.hh:75
Integer register.
Definition: reg_class.hh:53
void switchFreeList(UnifiedFreeList *freeList)
Switch freeList of registers from Full to Elem or vicevers depending on vecMode (vector renaming mode...
Definition: rename_map.cc:135
Vector Register.
Definition: reg_class.hh:56
PhysRegIdPtr getReg()
Get the next available register from the free list.
Definition: free_list.hh:86
unsigned numFreeVecElems() const
Returns the number of free vector registers.
Definition: free_list.hh:247
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Definition: logging.hh:181
bool isZeroReg() const
Check if this is the zero register.
Definition: reg_class.hh:137
bool hasFreeVecElems() const
Checks if there are any free vector registers.
Definition: free_list.hh:229
Bitfield< 5 > l
const int NumVecRegs
Definition: registers.hh:97

Generated on Thu May 28 2020 16:21:31 for gem5 by doxygen 1.8.13