gem5  v21.2.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
rename_map.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015-2017 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 #ifndef __CPU_O3_RENAME_MAP_HH__
43 #define __CPU_O3_RENAME_MAP_HH__
44 
45 #include <iostream>
46 #include <utility>
47 #include <vector>
48 
49 #include "arch/generic/isa.hh"
50 #include "cpu/o3/free_list.hh"
51 #include "cpu/o3/regfile.hh"
52 #include "cpu/reg_class.hh"
53 
54 namespace gem5
55 {
56 
57 namespace o3
58 {
59 
68 {
69  private:
73  public:
74  using iterator = Arch2PhysMap::iterator;
75  using const_iterator = Arch2PhysMap::const_iterator;
76  private:
77 
83 
92 
93  public:
94 
96 
102  void init(const RegClass &reg_class, SimpleFreeList *_freeList);
103 
111 
119  RenameInfo rename(const RegId& arch_reg);
120 
127  lookup(const RegId& arch_reg) const
128  {
129  assert(arch_reg.flatIndex() <= map.size());
130  return map[arch_reg.flatIndex()];
131  }
132 
139  void
140  setEntry(const RegId& arch_reg, PhysRegIdPtr phys_reg)
141  {
142  assert(arch_reg.flatIndex() <= map.size());
143  map[arch_reg.flatIndex()] = phys_reg;
144  }
145 
147  unsigned numFreeEntries() const { return freeList->numFreeRegs(); }
148 
149  size_t numArchRegs() const { return map.size(); }
150 
153  iterator begin() { return map.begin(); }
154  const_iterator begin() const { return map.begin(); }
155  const_iterator cbegin() const { return map.cbegin(); }
160  iterator end() { return map.end(); }
161  const_iterator end() const { return map.end(); }
162  const_iterator cend() const { return map.cend(); }
164 };
165 
174 {
175  private:
178 
181 
184 
187 
190 
193 
199 
200  public:
201 
203 
205  UnifiedRenameMap() : regFile(nullptr) {};
206 
209 
211  void init(const BaseISA::RegClasses &regClasses,
212  PhysRegFile *_regFile, UnifiedFreeList *freeList);
213 
222  RenameInfo
223  rename(const RegId& arch_reg)
224  {
225  switch (arch_reg.classValue()) {
226  case IntRegClass:
227  return intMap.rename(arch_reg);
228  case FloatRegClass:
229  return floatMap.rename(arch_reg);
230  case VecRegClass:
231  return vecMap.rename(arch_reg);
232  case VecElemClass:
233  return vecElemMap.rename(arch_reg);
234  case VecPredRegClass:
235  return predMap.rename(arch_reg);
236  case CCRegClass:
237  return ccMap.rename(arch_reg);
238  case MiscRegClass:
239  {
240  // misc regs aren't really renamed, just remapped
241  PhysRegIdPtr phys_reg = lookup(arch_reg);
242  // Set the new register to the previous one to keep the same
243  // mapping throughout the execution.
244  return RenameInfo(phys_reg, phys_reg);
245  }
246 
247  default:
248  panic("rename rename(): unknown reg class %s\n",
249  arch_reg.className());
250  }
251  }
252 
261  lookup(const RegId& arch_reg) const
262  {
263  switch (arch_reg.classValue()) {
264  case IntRegClass:
265  return intMap.lookup(arch_reg);
266 
267  case FloatRegClass:
268  return floatMap.lookup(arch_reg);
269 
270  case VecRegClass:
271  return vecMap.lookup(arch_reg);
272 
273  case VecElemClass:
274  return vecElemMap.lookup(arch_reg);
275 
276  case VecPredRegClass:
277  return predMap.lookup(arch_reg);
278 
279  case CCRegClass:
280  return ccMap.lookup(arch_reg);
281 
282  case MiscRegClass:
283  // misc regs aren't really renamed, they keep the same
284  // mapping throughout the execution.
285  return regFile->getMiscRegId(arch_reg.flatIndex());
286 
287  default:
288  panic("rename lookup(): unknown reg class %s\n",
289  arch_reg.className());
290  }
291  }
292 
301  void
302  setEntry(const RegId& arch_reg, PhysRegIdPtr phys_reg)
303  {
304  assert(phys_reg->is(arch_reg.classValue()));
305  switch (arch_reg.classValue()) {
306  case IntRegClass:
307  return intMap.setEntry(arch_reg, phys_reg);
308 
309  case FloatRegClass:
310  return floatMap.setEntry(arch_reg, phys_reg);
311 
312  case VecRegClass:
313  return vecMap.setEntry(arch_reg, phys_reg);
314 
315  case VecElemClass:
316  return vecElemMap.setEntry(arch_reg, phys_reg);
317 
318  case VecPredRegClass:
319  return predMap.setEntry(arch_reg, phys_reg);
320 
321  case CCRegClass:
322  return ccMap.setEntry(arch_reg, phys_reg);
323 
324  case MiscRegClass:
325  // Misc registers do not actually rename, so don't change
326  // their mappings. We end up here when a commit or squash
327  // tries to update or undo a hardwired misc reg nmapping,
328  // which should always be setting it to what it already is.
329  assert(phys_reg == lookup(arch_reg));
330  return;
331 
332  default:
333  panic("rename setEntry(): unknown reg class %s\n",
334  arch_reg.className());
335  }
336  }
337 
344  unsigned
346  {
347  return std::min({intMap.numFreeEntries(),
352  }
353 
354  unsigned numFreeIntEntries() const { return intMap.numFreeEntries(); }
355  unsigned numFreeFloatEntries() const { return floatMap.numFreeEntries(); }
356  unsigned numFreeVecEntries() const { return vecMap.numFreeEntries(); }
357  unsigned
359  {
360  return vecElemMap.numFreeEntries();
361  }
362  unsigned numFreePredEntries() const { return predMap.numFreeEntries(); }
363  unsigned numFreeCCEntries() const { return ccMap.numFreeEntries(); }
364 
368  bool
369  canRename(uint32_t intRegs, uint32_t floatRegs, uint32_t vectorRegs,
370  uint32_t vecElemRegs, uint32_t vecPredRegs,
371  uint32_t ccRegs) const
372  {
373  return intRegs <= intMap.numFreeEntries() &&
374  floatRegs <= floatMap.numFreeEntries() &&
375  vectorRegs <= vecMap.numFreeEntries() &&
376  vecElemRegs <= vecElemMap.numFreeEntries() &&
377  vecPredRegs <= predMap.numFreeEntries() &&
378  ccRegs <= ccMap.numFreeEntries();
379  }
380 };
381 
382 } // namespace o3
383 } // namespace gem5
384 
385 #endif //__CPU_O3_RENAME_MAP_HH__
gem5::o3::UnifiedRenameMap::numFreePredEntries
unsigned numFreePredEntries() const
Definition: rename_map.hh:362
gem5::o3::SimpleRenameMap::zeroReg
RegId zeroReg
The architectural index of the zero register.
Definition: rename_map.hh:91
gem5::o3::UnifiedRenameMap::RenameInfo
SimpleRenameMap::RenameInfo RenameInfo
Definition: rename_map.hh:202
gem5::VecElemClass
@ VecElemClass
Vector Register Native Elem lane.
Definition: reg_class.hh:63
gem5::RegId::flatIndex
RegIndex flatIndex() const
Index flattening.
Definition: reg_class.hh:186
gem5::o3::SimpleFreeList
Free list for a single class of registers (e.g., integer or floating point).
Definition: free_list.hh:69
gem5::o3::UnifiedRenameMap::canRename
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.
Definition: rename_map.hh:369
gem5::CCRegClass
@ CCRegClass
Condition-code register.
Definition: reg_class.hh:65
gem5::o3::SimpleRenameMap::begin
const_iterator begin() const
Definition: rename_map.hh:154
gem5::o3::SimpleRenameMap::end
const_iterator end() const
Definition: rename_map.hh:161
gem5::o3::SimpleRenameMap::numFreeEntries
unsigned numFreeEntries() const
Return the number of free entries on the associated free list.
Definition: rename_map.hh:147
gem5::o3::SimpleRenameMap::freeList
SimpleFreeList * freeList
Pointer to the free list from which new physical registers should be allocated in rename()
Definition: rename_map.hh:82
gem5::o3::SimpleRenameMap::end
iterator end()
Forward end/cend to the map.
Definition: rename_map.hh:160
gem5::o3::SimpleRenameMap::iterator
Arch2PhysMap::iterator iterator
Definition: rename_map.hh:74
gem5::o3::UnifiedFreeList
FreeList class that simply holds the list of free integer and floating point registers.
Definition: free_list.hh:122
gem5::o3::UnifiedRenameMap::intMap
SimpleRenameMap intMap
The integer register rename map.
Definition: rename_map.hh:177
std::vector< PhysRegIdPtr >
gem5::o3::UnifiedRenameMap::numFreeFloatEntries
unsigned numFreeFloatEntries() const
Definition: rename_map.hh:355
gem5::o3::SimpleFreeList::numFreeRegs
unsigned numFreeRegs() const
Return the number of free registers on the list.
Definition: free_list.hh:102
gem5::o3::UnifiedRenameMap::vecElemMap
SimpleRenameMap vecElemMap
The vector element register rename map.
Definition: rename_map.hh:189
gem5::VecPredRegClass
@ VecPredRegClass
Definition: reg_class.hh:64
gem5::o3::UnifiedRenameMap::predMap
SimpleRenameMap predMap
The predicate register rename map.
Definition: rename_map.hh:192
gem5::FloatRegClass
@ FloatRegClass
Floating-point register.
Definition: reg_class.hh:59
gem5::o3::UnifiedRenameMap::ccMap
SimpleRenameMap ccMap
The condition-code register rename map.
Definition: rename_map.hh:183
gem5::o3::SimpleRenameMap::begin
iterator begin()
Forward begin/cbegin to the map.
Definition: rename_map.hh:153
gem5::o3::UnifiedRenameMap::numFreeVecElemEntries
unsigned numFreeVecElemEntries() const
Definition: rename_map.hh:358
gem5::o3::PhysRegFile
Simple physical register file class.
Definition: regfile.hh:65
gem5::o3::UnifiedRenameMap::numFreeIntEntries
unsigned numFreeIntEntries() const
Definition: rename_map.hh:354
gem5::o3::SimpleRenameMap::cend
const_iterator cend() const
Definition: rename_map.hh:162
gem5::o3::UnifiedRenameMap::vecMap
SimpleRenameMap vecMap
The vector register rename map.
Definition: rename_map.hh:186
gem5::o3::SimpleRenameMap::SimpleRenameMap
SimpleRenameMap()
Definition: rename_map.cc:56
gem5::o3::SimpleRenameMap::lookup
PhysRegIdPtr lookup(const RegId &arch_reg) const
Look up the physical register mapped to an architectural register.
Definition: rename_map.hh:127
gem5::o3::SimpleRenameMap::numArchRegs
size_t numArchRegs() const
Definition: rename_map.hh:149
gem5::o3::UnifiedRenameMap::UnifiedRenameMap
UnifiedRenameMap()
Default constructor.
Definition: rename_map.hh:205
gem5::o3::UnifiedRenameMap::~UnifiedRenameMap
~UnifiedRenameMap()
Destructor.
Definition: rename_map.hh:208
gem5::RegId::className
const char * className() const
Return a const char* with the register class name.
Definition: reg_class.hh:208
gem5::RegId::classValue
RegClassType classValue() const
Class accessor.
Definition: reg_class.hh:206
std::pair
STL pair class.
Definition: stl.hh:58
gem5::o3::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:74
regfile.hh
gem5::RegClass
Definition: reg_class.hh:83
gem5::o3::UnifiedRenameMap::numFreeCCEntries
unsigned numFreeCCEntries() const
Definition: rename_map.hh:363
gem5::o3::UnifiedRenameMap::floatMap
SimpleRenameMap floatMap
The floating-point register rename map.
Definition: rename_map.hh:180
gem5::o3::SimpleRenameMap::RenameInfo
std::pair< PhysRegIdPtr, PhysRegIdPtr > RenameInfo
Pair of a physical register and a physical register.
Definition: rename_map.hh:110
gem5::IntRegClass
@ IntRegClass
Integer register.
Definition: reg_class.hh:58
isa.hh
gem5::o3::SimpleRenameMap::init
void init(const RegClass &reg_class, SimpleFreeList *_freeList)
Because we have an array of rename maps (one per thread) in the CPU, it's awkward to initialize this ...
Definition: rename_map.cc:63
gem5::o3::UnifiedRenameMap::numFreeEntries
unsigned numFreeEntries() const
Return the minimum number of free entries across all of the register classes.
Definition: rename_map.hh:345
gem5::MiscRegClass
@ MiscRegClass
Control (misc) register.
Definition: reg_class.hh:66
gem5::o3::PhysRegFile::getMiscRegId
PhysRegIdPtr getMiscRegId(RegIndex reg_idx)
Gets a misc register PhysRegIdPtr.
Definition: regfile.hh:175
gem5::PhysRegId::is
bool is(RegClassType reg_class) const
Definition: reg_class.hh:176
reg_class.hh
gem5::o3::UnifiedRenameMap::lookup
PhysRegIdPtr lookup(const RegId &arch_reg) const
Look up the physical register mapped to an architectural register.
Definition: rename_map.hh:261
free_list.hh
gem5::o3::UnifiedRenameMap::numFreeVecEntries
unsigned numFreeVecEntries() const
Definition: rename_map.hh:356
gem5::o3::SimpleRenameMap::cbegin
const_iterator cbegin() const
Definition: rename_map.hh:155
gem5::PhysRegId
Physical register ID.
Definition: reg_class.hh:224
gem5::VecRegClass
@ VecRegClass
Vector Register.
Definition: reg_class.hh:61
gem5::o3::SimpleRenameMap::setEntry
void setEntry(const RegId &arch_reg, PhysRegIdPtr phys_reg)
Update rename map with a specific mapping.
Definition: rename_map.hh:140
gem5::o3::SimpleRenameMap::const_iterator
Arch2PhysMap::const_iterator const_iterator
Definition: rename_map.hh:75
gem5::o3::SimpleRenameMap
Register rename map for a single class of registers (e.g., integer or floating point).
Definition: rename_map.hh:67
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: tlb.cc:60
gem5::o3::UnifiedRenameMap::init
void init(const BaseISA::RegClasses &regClasses, PhysRegFile *_regFile, UnifiedFreeList *freeList)
Initializes rename map with given parameters.
Definition: rename_map.cc:112
gem5::o3::UnifiedRenameMap::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.hh:223
gem5::o3::SimpleRenameMap::map
Arch2PhysMap map
The acutal arch-to-phys register map.
Definition: rename_map.hh:72
gem5::o3::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:198
gem5::RegId
Register ID: describe an architectural register with its class and index.
Definition: reg_class.hh:113
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:178
gem5::o3::UnifiedRenameMap::setEntry
void setEntry(const RegId &arch_reg, PhysRegIdPtr phys_reg)
Update rename map with a specific mapping.
Definition: rename_map.hh:302
gem5::o3::UnifiedRenameMap
Unified register rename map for all classes of registers.
Definition: rename_map.hh:173

Generated on Tue Dec 21 2021 11:34:26 for gem5 by doxygen 1.8.17