gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
regfile.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016-2018 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/regfile.hh"
43 
44 #include "cpu/o3/free_list.hh"
45 #include "arch/generic/types.hh"
46 #include "cpu/o3/free_list.hh"
47 
48 PhysRegFile::PhysRegFile(unsigned _numPhysicalIntRegs,
49  unsigned _numPhysicalFloatRegs,
50  unsigned _numPhysicalVecRegs,
51  unsigned _numPhysicalVecPredRegs,
52  unsigned _numPhysicalCCRegs,
53  VecMode vmode)
54  : intRegFile(_numPhysicalIntRegs),
55  floatRegFile(_numPhysicalFloatRegs),
56  vectorRegFile(_numPhysicalVecRegs),
57  vecPredRegFile(_numPhysicalVecPredRegs),
58  ccRegFile(_numPhysicalCCRegs),
59  numPhysicalIntRegs(_numPhysicalIntRegs),
60  numPhysicalFloatRegs(_numPhysicalFloatRegs),
61  numPhysicalVecRegs(_numPhysicalVecRegs),
62  numPhysicalVecElemRegs(_numPhysicalVecRegs *
64  numPhysicalVecPredRegs(_numPhysicalVecPredRegs),
65  numPhysicalCCRegs(_numPhysicalCCRegs),
66  totalNumRegs(_numPhysicalIntRegs
67  + _numPhysicalFloatRegs
68  + _numPhysicalVecRegs
69  + _numPhysicalVecRegs * TheISA::NumVecElemPerVecReg
70  + _numPhysicalVecPredRegs
71  + _numPhysicalCCRegs),
72  vecMode(vmode)
73 {
74  PhysRegIndex phys_reg;
75  PhysRegIndex flat_reg_idx = 0;
76 
77  if (TheISA::NumCCRegs == 0 && _numPhysicalCCRegs != 0) {
78  // Just make this a warning and go ahead and allocate them
79  // anyway, to keep from having to add checks everywhere
80  warn("Non-zero number of physical CC regs specified, even though\n"
81  " ISA does not use them.\n");
82  }
83  // The initial batch of registers are the integer ones
84  for (phys_reg = 0; phys_reg < numPhysicalIntRegs; phys_reg++) {
85  intRegIds.emplace_back(IntRegClass, phys_reg, flat_reg_idx++);
86  }
87 
88  // The next batch of the registers are the floating-point physical
89  // registers; put them onto the floating-point free list.
90  for (phys_reg = 0; phys_reg < numPhysicalFloatRegs; phys_reg++) {
91  floatRegIds.emplace_back(FloatRegClass, phys_reg, flat_reg_idx++);
92  }
93 
94  // The next batch of the registers are the vector physical
95  // registers; put them onto the vector free list.
96  for (phys_reg = 0; phys_reg < numPhysicalVecRegs; phys_reg++) {
97  vectorRegFile[phys_reg].zero();
98  vecRegIds.emplace_back(VecRegClass, phys_reg, flat_reg_idx++);
99  }
100  // The next batch of the registers are the vector element physical
101  // registers; they refer to the same containers as the vector
102  // registers, just a different (and incompatible) way to access
103  // them; put them onto the vector free list.
104  for (phys_reg = 0; phys_reg < numPhysicalVecRegs; phys_reg++) {
105  for (ElemIndex eIdx = 0; eIdx < TheISA::NumVecElemPerVecReg; eIdx++) {
106  vecElemIds.emplace_back(VecElemClass, phys_reg,
107  eIdx, flat_reg_idx++);
108  }
109  }
110 
111  // The next batch of the registers are the predicate physical
112  // registers; put them onto the predicate free list.
113  for (phys_reg = 0; phys_reg < numPhysicalVecPredRegs; phys_reg++) {
114  vecPredRegIds.emplace_back(VecPredRegClass, phys_reg, flat_reg_idx++);
115  }
116 
117  // The rest of the registers are the condition-code physical
118  // registers; put them onto the condition-code free list.
119  for (phys_reg = 0; phys_reg < numPhysicalCCRegs; phys_reg++) {
120  ccRegIds.emplace_back(CCRegClass, phys_reg, flat_reg_idx++);
121  }
122 
123  // Misc regs have a fixed mapping but still need PhysRegIds.
124  for (phys_reg = 0; phys_reg < TheISA::NumMiscRegs; phys_reg++) {
125  miscRegIds.emplace_back(MiscRegClass, phys_reg, 0);
126  }
127 }
128 
129 
130 void
132 {
133  // Initialize the free lists.
134  int reg_idx = 0;
135 
136  // The initial batch of registers are the integer ones
137  for (reg_idx = 0; reg_idx < numPhysicalIntRegs; reg_idx++) {
138  assert(intRegIds[reg_idx].index() == reg_idx);
139  }
140  freeList->addRegs(intRegIds.begin(), intRegIds.end());
141 
142  // The next batch of the registers are the floating-point physical
143  // registers; put them onto the floating-point free list.
144  for (reg_idx = 0; reg_idx < numPhysicalFloatRegs; reg_idx++) {
145  assert(floatRegIds[reg_idx].index() == reg_idx);
146  }
147  freeList->addRegs(floatRegIds.begin(), floatRegIds.end());
148 
149  /* The next batch of the registers are the vector physical
150  * registers; put them onto the vector free list. */
151  for (reg_idx = 0; reg_idx < numPhysicalVecRegs; reg_idx++) {
152  assert(vecRegIds[reg_idx].index() == reg_idx);
153  for (ElemIndex elemIdx = 0; elemIdx < TheISA::NumVecElemPerVecReg;
154  elemIdx++) {
155  assert(vecElemIds[reg_idx * TheISA::NumVecElemPerVecReg +
156  elemIdx].index() == reg_idx);
157  assert(vecElemIds[reg_idx * TheISA::NumVecElemPerVecReg +
158  elemIdx].elemIndex() == elemIdx);
159  }
160  }
161 
162  /* depending on the mode we add the vector registers as whole units or
163  * as different elements. */
164  if (vecMode == Enums::Full)
165  freeList->addRegs(vecRegIds.begin(), vecRegIds.end());
166  else
167  freeList->addRegs(vecElemIds.begin(), vecElemIds.end());
168 
169  // The next batch of the registers are the predicate physical
170  // registers; put them onto the predicate free list.
171  for (reg_idx = 0; reg_idx < numPhysicalVecPredRegs; reg_idx++) {
172  assert(vecPredRegIds[reg_idx].index() == reg_idx);
173  }
174  freeList->addRegs(vecPredRegIds.begin(), vecPredRegIds.end());
175 
176  // The rest of the registers are the condition-code physical
177  // registers; put them onto the condition-code free list.
178  for (reg_idx = 0; reg_idx < numPhysicalCCRegs; reg_idx++) {
179  assert(ccRegIds[reg_idx].index() == reg_idx);
180  }
181  freeList->addRegs(ccRegIds.begin(), ccRegIds.end());
182 }
183 
186 {
187  panic_if(!reg->isVectorPhysReg(),
188  "Trying to get elems of a %s register", reg->className());
189  auto idx = reg->index();
190  return std::make_pair(
191  vecElemIds.begin() + idx * TheISA::NumVecElemPerVecReg,
192  vecElemIds.begin() + (idx+1) * TheISA::NumVecElemPerVecReg);
193 }
194 
197 {
198  switch (cls)
199  {
200  case IntRegClass:
201  return std::make_pair(intRegIds.begin(), intRegIds.end());
202  case FloatRegClass:
203  return std::make_pair(floatRegIds.begin(), floatRegIds.end());
204  case VecRegClass:
205  return std::make_pair(vecRegIds.begin(), vecRegIds.end());
206  case VecElemClass:
207  return std::make_pair(vecElemIds.begin(), vecElemIds.end());
208  case VecPredRegClass:
209  return std::make_pair(vecPredRegIds.begin(), vecPredRegIds.end());
210  case CCRegClass:
211  return std::make_pair(ccRegIds.begin(), ccRegIds.end());
212  case MiscRegClass:
213  return std::make_pair(miscRegIds.begin(), miscRegIds.end());
214  }
215  /* There is no way to make an empty iterator */
216  return std::make_pair(PhysIds::iterator(),
217  PhysIds::iterator());
218 }
219 
222 {
223  switch (reg->classValue()) {
224  case VecRegClass:
225  return &vecRegIds[reg->index()];
226  case VecElemClass:
227  return &vecElemIds[reg->index() * TheISA::NumVecElemPerVecReg +
228  reg->elemIndex()];
229  default:
230  panic_if(!reg->isVectorPhysElem(),
231  "Trying to get the register of a %s register", reg->className());
232  }
233  return nullptr;
234 }
235 
PhysRegFile::numPhysicalIntRegs
unsigned numPhysicalIntRegs
Number of physical general purpose registers.
Definition: regfile.hh:96
PhysRegFile::vecPredRegIds
std::vector< PhysRegId > vecPredRegIds
Definition: regfile.hh:84
warn
#define warn(...)
Definition: logging.hh:239
VecElemClass
@ VecElemClass
Vector Register Native Elem lane.
Definition: reg_class.hh:58
MipsISA::index
Bitfield< 30, 0 > index
Definition: pra_constants.hh:44
PhysRegFile::floatRegIds
std::vector< PhysRegId > floatRegIds
Definition: regfile.hh:75
UnifiedFreeList::addRegs
void addRegs(InputIt first, InputIt last)
Adds a register back to the free list.
Definition: free_list.hh:257
PhysRegFile::ccRegIds
std::vector< PhysRegId > ccRegIds
Definition: regfile.hh:88
TheISA
Definition: thread_context.hh:52
PhysRegFile::initFreeList
void initFreeList(UnifiedFreeList *freeList)
Initialize the free list.
Definition: regfile.cc:131
PhysRegFile::VecMode
Enums::VecRegRenameMode VecMode
Definition: regfile.hh:64
PhysRegFile::getRegElemIds
IdRange getRegElemIds(PhysRegIdPtr reg)
Get the PhysRegIds of the elems of a vector register.
Definition: regfile.cc:185
PhysRegFile::vectorRegFile
std::vector< TheISA::VecRegContainer > vectorRegFile
Vector register file.
Definition: regfile.hh:78
X86ISA::reg
Bitfield< 5, 3 > reg
Definition: types.hh:88
PhysRegFile::intRegIds
std::vector< PhysRegId > intRegIds
Definition: regfile.hh:71
PhysRegFile::vecRegIds
std::vector< PhysRegId > vecRegIds
Definition: regfile.hh:79
FloatRegClass
@ FloatRegClass
Floating-point register.
Definition: reg_class.hh:54
PhysRegFile::PhysRegFile
PhysRegFile(unsigned _numPhysicalIntRegs, unsigned _numPhysicalFloatRegs, unsigned _numPhysicalVecRegs, unsigned _numPhysicalVecPredRegs, unsigned _numPhysicalCCRegs, VecMode vmode)
Constructs a physical register file with the specified amount of integer and floating point registers...
Definition: regfile.cc:48
PhysRegFile::numPhysicalCCRegs
unsigned numPhysicalCCRegs
Number of physical CC registers.
Definition: regfile.hh:121
RegClass
RegClass
Enumerate the classes of registers.
Definition: reg_class.hh:52
ArmISA::NumVecElemPerVecReg
constexpr unsigned NumVecElemPerVecReg
Definition: registers.hh:58
UnifiedFreeList
FreeList class that simply holds the list of free integer and floating point registers.
Definition: free_list.hh:114
std::pair
STL pair class.
Definition: stl.hh:58
VecPredRegClass
@ VecPredRegClass
Definition: reg_class.hh:59
PhysRegIndex
short int PhysRegIndex
Physical register index type.
Definition: reg_class.hh:217
PhysRegFile::vecMode
VecMode vecMode
Mode in which vector registers are addressed.
Definition: regfile.hh:127
regfile.hh
IntRegClass
@ IntRegClass
Integer register.
Definition: reg_class.hh:53
PhysRegFile::numPhysicalVecPredRegs
unsigned numPhysicalVecPredRegs
Number of physical predicate registers.
Definition: regfile.hh:116
CCRegClass
@ CCRegClass
Condition-code register.
Definition: reg_class.hh:60
PhysRegFile::miscRegIds
std::vector< PhysRegId > miscRegIds
Misc Reg Ids.
Definition: regfile.hh:91
types.hh
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
MiscRegClass
@ MiscRegClass
Control (misc) register.
Definition: reg_class.hh:61
VecRegClass
@ VecRegClass
Vector Register.
Definition: reg_class.hh:56
PhysRegFile::numPhysicalVecRegs
unsigned numPhysicalVecRegs
Number of physical vector registers.
Definition: regfile.hh:106
ArmISA::NumCCRegs
const int NumCCRegs
Definition: registers.hh:76
ElemIndex
uint16_t ElemIndex
Logical vector register elem index type.
Definition: types.hh:55
PhysRegFile::getTrueId
PhysRegIdPtr getTrueId(PhysRegIdPtr reg)
Get the true physical register id.
Definition: regfile.cc:221
free_list.hh
PhysRegFile::numPhysicalFloatRegs
unsigned numPhysicalFloatRegs
Number of physical floating point registers.
Definition: regfile.hh:101
PhysRegId
Physical register ID.
Definition: reg_class.hh:223
PhysRegFile::vecElemIds
std::vector< PhysRegId > vecElemIds
Definition: regfile.hh:80
ArmISA::NumMiscRegs
const int NumMiscRegs
Definition: registers.hh:77
PhysRegFile::getRegIds
IdRange getRegIds(RegClass cls)
Get the PhysRegIds of the elems of all vector registers.
Definition: regfile.cc:196

Generated on Tue Mar 23 2021 19:41:25 for gem5 by doxygen 1.8.17