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

Generated on Tue Sep 7 2021 14:53:44 for gem5 by doxygen 1.8.17