gem5  v20.0.0.3
regfile.hh
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 #ifndef __CPU_O3_REGFILE_HH__
43 #define __CPU_O3_REGFILE_HH__
44 
45 #include <vector>
46 
47 #include "arch/isa_traits.hh"
48 #include "arch/types.hh"
49 #include "base/trace.hh"
50 #include "config/the_isa.hh"
51 #include "cpu/o3/comm.hh"
52 #include "debug/IEW.hh"
53 #include "enums/VecRegRenameMode.hh"
54 
55 class UnifiedFreeList;
56 
61 {
62  private:
63 
67  using VecMode = Enums::VecRegRenameMode;
69  public:
70  using IdRange = std::pair<PhysIds::iterator,
71  PhysIds::iterator>;
72  private:
74 
78 
82 
87 
91 
95 
98 
103 
108 
113 
118 
123 
128 
130  unsigned totalNumRegs;
131 
134 
135  public:
140  PhysRegFile(unsigned _numPhysicalIntRegs,
141  unsigned _numPhysicalFloatRegs,
142  unsigned _numPhysicalVecRegs,
143  unsigned _numPhysicalVecPredRegs,
144  unsigned _numPhysicalCCRegs,
145  VecMode vmode
146  );
147 
152 
154  void initFreeList(UnifiedFreeList *freeList);
155 
157  unsigned numIntPhysRegs() const { return numPhysicalIntRegs; }
158 
160  unsigned numFloatPhysRegs() const { return numPhysicalFloatRegs; }
162  unsigned numVecPhysRegs() const { return numPhysicalVecRegs; }
164  unsigned numPredPhysRegs() const { return numPhysicalVecPredRegs; }
165 
167  unsigned numVecElemPhysRegs() const { return numPhysicalVecElemRegs; }
168 
170  unsigned numCCPhysRegs() const { return numPhysicalCCRegs; }
171 
173  unsigned totalNumPhysRegs() const { return totalNumRegs; }
174 
177  return &miscRegIds[reg_idx];
178  }
179 
181  RegVal
182  readIntReg(PhysRegIdPtr phys_reg) const
183  {
184  assert(phys_reg->isIntPhysReg());
185 
186  DPRINTF(IEW, "RegFile: Access to int register %i, has data "
187  "%#x\n", phys_reg->index(), intRegFile[phys_reg->index()]);
188  return intRegFile[phys_reg->index()];
189  }
190 
191  RegVal
192  readFloatReg(PhysRegIdPtr phys_reg) const
193  {
194  assert(phys_reg->isFloatPhysReg());
195 
196  RegVal floatRegBits = floatRegFile[phys_reg->index()];
197 
198  DPRINTF(IEW, "RegFile: Access to float register %i as int, "
199  "has data %#x\n", phys_reg->index(), floatRegBits);
200 
201  return floatRegBits;
202  }
203 
205  const VecRegContainer &
206  readVecReg(PhysRegIdPtr phys_reg) const
207  {
208  assert(phys_reg->isVectorPhysReg());
209 
210  DPRINTF(IEW, "RegFile: Access to vector register %i, has "
211  "data %s\n", int(phys_reg->index()),
212  vectorRegFile[phys_reg->index()].print());
213 
214  return vectorRegFile[phys_reg->index()];
215  }
216 
220  {
221  /* const_cast for not duplicating code above. */
222  return const_cast<VecRegContainer&>(readVecReg(phys_reg));
223  }
224 
226  template <typename VecElem, int LaneIdx>
228  readVecLane(PhysRegIdPtr phys_reg) const
229  {
230  return readVecReg(phys_reg).laneView<VecElem, LaneIdx>();
231  }
232 
234  template <typename VecElem>
236  readVecLane(PhysRegIdPtr phys_reg) const
237  {
238  return readVecReg(phys_reg).laneView<VecElem>(phys_reg->elemIndex());
239  }
240 
242  template <typename LD>
243  void
244  setVecLane(PhysRegIdPtr phys_reg, const LD& val)
245  {
246  assert(phys_reg->isVectorPhysReg());
247 
248  DPRINTF(IEW, "RegFile: Setting vector register %i[%d] to %lx\n",
249  int(phys_reg->index()), phys_reg->elemIndex(), val);
250 
251  vectorRegFile[phys_reg->index()].laneView<typename LD::UnderlyingType>(
252  phys_reg->elemIndex()) = val;
253  }
254 
256  const VecElem &
257  readVecElem(PhysRegIdPtr phys_reg) const
258  {
259  assert(phys_reg->isVectorPhysElem());
260  auto ret = vectorRegFile[phys_reg->index()].as<VecElem>();
261  const VecElem& val = ret[phys_reg->elemIndex()];
262  DPRINTF(IEW, "RegFile: Access to element %d of vector register %i,"
263  " has data %#x\n", phys_reg->elemIndex(),
264  int(phys_reg->index()), val);
265 
266  return val;
267  }
268 
271  {
272  assert(phys_reg->isVecPredPhysReg());
273 
274  DPRINTF(IEW, "RegFile: Access to predicate register %i, has "
275  "data %s\n", int(phys_reg->index()),
276  vecPredRegFile[phys_reg->index()].print());
277 
278  return vecPredRegFile[phys_reg->index()];
279  }
280 
282  {
283  /* const_cast for not duplicating code above. */
284  return const_cast<VecPredRegContainer&>(readVecPredReg(phys_reg));
285  }
286 
288  RegVal
290  {
291  assert(phys_reg->isCCPhysReg());
292 
293  DPRINTF(IEW, "RegFile: Access to cc register %i, has "
294  "data %#x\n", phys_reg->index(),
295  ccRegFile[phys_reg->index()]);
296 
297  return ccRegFile[phys_reg->index()];
298  }
299 
301  void
303  {
304  assert(phys_reg->isIntPhysReg());
305 
306  DPRINTF(IEW, "RegFile: Setting int register %i to %#x\n",
307  phys_reg->index(), val);
308 
309  if (!phys_reg->isZeroReg())
310  intRegFile[phys_reg->index()] = val;
311  }
312 
313  void
315  {
316  assert(phys_reg->isFloatPhysReg());
317 
318  DPRINTF(IEW, "RegFile: Setting float register %i to %#x\n",
319  phys_reg->index(), (uint64_t)val);
320 
321  if (!phys_reg->isZeroReg())
322  floatRegFile[phys_reg->index()] = val;
323  }
324 
326  void
328  {
329  assert(phys_reg->isVectorPhysReg());
330 
331  DPRINTF(IEW, "RegFile: Setting vector register %i to %s\n",
332  int(phys_reg->index()), val.print());
333 
334  vectorRegFile[phys_reg->index()] = val;
335  }
336 
338  void
340  {
341  assert(phys_reg->isVectorPhysElem());
342 
343  DPRINTF(IEW, "RegFile: Setting element %d of vector register %i to"
344  " %#x\n", phys_reg->elemIndex(), int(phys_reg->index()), val);
345 
346  vectorRegFile[phys_reg->index()].as<VecElem>()[phys_reg->elemIndex()] =
347  val;
348  }
349 
352  {
353  assert(phys_reg->isVecPredPhysReg());
354 
355  DPRINTF(IEW, "RegFile: Setting predicate register %i to %s\n",
356  int(phys_reg->index()), val.print());
357 
358  vecPredRegFile[phys_reg->index()] = val;
359  }
360 
362  void
364  {
365  assert(phys_reg->isCCPhysReg());
366 
367  DPRINTF(IEW, "RegFile: Setting cc register %i to %#x\n",
368  phys_reg->index(), (uint64_t)val);
369 
370  ccRegFile[phys_reg->index()] = val;
371  }
372 
377 
384 
391 };
392 
393 
394 #endif //__CPU_O3_REGFILE_HH__
#define DPRINTF(x,...)
Definition: trace.hh:225
std::vector< VecPredRegContainer > vecPredRegFile
Predicate register file.
Definition: regfile.hh:89
void setVecLane(PhysRegIdPtr phys_reg, const LD &val)
Get a vector register lane for modification.
Definition: regfile.hh:244
Bitfield< 5, 3 > reg
Definition: types.hh:87
bool isCCPhysReg() const
true if it is a condition-code physical register.
Definition: reg_class.hh:281
STL pair class.
Definition: stl.hh:58
VecPredRegContainer & getWritableVecPredReg(PhysRegIdPtr phys_reg)
Definition: regfile.hh:281
Vector Register Abstraction This generic class is the model in a particularization of MVC...
Definition: vec_reg.hh:156
Simple physical register file class.
Definition: regfile.hh:60
bool isVectorPhysReg() const
true if it is a vector physical register.
Definition: reg_class.hh:284
std::vector< PhysRegId > floatRegIds
Definition: regfile.hh:81
const VecElem & readVecElem(PhysRegIdPtr phys_reg) const
Reads a vector element.
Definition: regfile.hh:257
std::vector< PhysRegId > vecPredRegIds
Definition: regfile.hh:90
RegClass
Enumerate the classes of registers.
Definition: reg_class.hh:52
VecLaneT< VecElem, true > readVecLane(PhysRegIdPtr phys_reg) const
Reads a vector register lane.
Definition: regfile.hh:228
void setCCReg(PhysRegIdPtr phys_reg, RegVal val)
Sets a condition-code register to the given value.
Definition: regfile.hh:363
unsigned totalNumRegs
Total number of physical registers.
Definition: regfile.hh:130
unsigned numIntPhysRegs() const
Definition: regfile.hh:157
uint64_t RegVal
Definition: types.hh:166
VecLaneT< VecElem, true > readVecLane(PhysRegIdPtr phys_reg) const
Reads a vector register lane.
Definition: regfile.hh:236
constexpr unsigned NumVecElemPerVecReg
Definition: registers.hh:66
std::vector< RegVal > ccRegFile
Condition-code register file.
Definition: regfile.hh:93
std::vector< VecRegContainer > vectorRegFile
Vector register file.
Definition: regfile.hh:84
uint32_t VecElem
Definition: registers.hh:68
RegVal readIntReg(PhysRegIdPtr phys_reg) const
Reads an integer register.
Definition: regfile.hh:182
std::vector< PhysRegId > ccRegIds
Definition: regfile.hh:94
Bitfield< 63 > val
Definition: misc.hh:769
unsigned numCCPhysRegs() const
Definition: regfile.hh:170
const RegIndex & elemIndex() const
Elem accessor.
Definition: reg_class.hh:198
bool isVecPredPhysReg() const
Definition: reg_class.hh:290
std::vector< PhysRegId > intRegIds
Definition: regfile.hh:77
PhysRegIdPtr getMiscRegId(RegIndex reg_idx)
Gets a misc register PhysRegIdPtr.
Definition: regfile.hh:176
void initFreeList(UnifiedFreeList *freeList)
Initialize the free list.
Definition: regfile.cc:131
VecRegContainer & getWritableVecReg(PhysRegIdPtr phys_reg)
Reads a vector register for modification.
Definition: regfile.hh:219
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
Enums::VecRegRenameMode VecMode
Definition: regfile.hh:67
uint16_t RegIndex
Definition: types.hh:40
void setVecPredReg(PhysRegIdPtr phys_reg, const VecPredRegContainer &val)
Sets a predicate register to the given value.
Definition: regfile.hh:351
unsigned numPhysicalCCRegs
Number of physical CC registers.
Definition: regfile.hh:127
VecMode vecMode
Mode in which vector registers are addressed.
Definition: regfile.hh:133
IdRange getRegIds(RegClass cls)
Get the PhysRegIds of the elems of all vector registers.
Definition: regfile.cc:195
unsigned numPhysicalVecElemRegs
Number of physical vector element registers.
Definition: regfile.hh:117
VecPredReg::Container VecPredRegContainer
Definition: registers.hh:77
static constexpr auto NumVecElemPerVecReg
Definition: regfile.hh:73
RegVal readCCReg(PhysRegIdPtr phys_reg)
Reads a condition-code register.
Definition: regfile.hh:289
std::vector< PhysRegId > vecRegIds
Definition: regfile.hh:85
~PhysRegFile()
Destructor to free resources.
Definition: regfile.hh:151
void setVecElem(PhysRegIdPtr phys_reg, const VecElem val)
Sets a vector register to the given value.
Definition: regfile.hh:339
void setFloatReg(PhysRegIdPtr phys_reg, RegVal val)
Definition: regfile.hh:314
void setVecReg(PhysRegIdPtr phys_reg, const VecRegContainer &val)
Sets a vector register to the given value.
Definition: regfile.hh:327
unsigned numVecPhysRegs() const
Definition: regfile.hh:162
unsigned numPhysicalVecPredRegs
Number of physical predicate registers.
Definition: regfile.hh:122
unsigned numPredPhysRegs() const
Definition: regfile.hh:164
PhysRegIdPtr getTrueId(PhysRegIdPtr reg)
Get the true physical register id.
Definition: regfile.cc:220
bool isFloatPhysReg() const
Definition: reg_class.hh:278
unsigned numPhysicalVecRegs
Number of physical vector registers.
Definition: regfile.hh:112
FreeList class that simply holds the list of free integer and floating point registers.
Definition: free_list.hh:115
Physical register ID.
Definition: reg_class.hh:223
const VecPredRegContainer & readVecPredReg(PhysRegIdPtr phys_reg) const
Reads a predicate register.
Definition: regfile.hh:270
unsigned numFloatPhysRegs() const
Definition: regfile.hh:160
bool isIntPhysReg() const
Definition: reg_class.hh:275
const std::string print() const
Returns a string representation of the register content.
VecReg::Container VecRegContainer
Definition: registers.hh:71
TheISA::VecElem VecElem
Definition: regfile.hh:64
const std::string print() const
Definition: vec_reg.hh:366
void setIntReg(PhysRegIdPtr phys_reg, RegVal val)
Sets an integer register to the given value.
Definition: regfile.hh:302
std::vector< RegVal > intRegFile
Integer register file.
Definition: regfile.hh:76
unsigned numPhysicalFloatRegs
Number of physical floating point registers.
Definition: regfile.hh:107
Generic predicate register container.
Definition: vec_pred_reg.hh:47
const VecRegContainer & readVecReg(PhysRegIdPtr phys_reg) const
Reads a vector register.
Definition: regfile.hh:206
const RegIndex & index() const
Index accessors.
Definition: reg_class.hh:173
unsigned totalNumPhysRegs() const
Definition: regfile.hh:173
std::vector< PhysRegId > vecElemIds
Definition: regfile.hh:86
std::vector< PhysRegId > miscRegIds
Misc Reg Ids.
Definition: regfile.hh:97
VecLaneT< VecElem, false > laneView()
View as the Nth lane of type VecElem.
Definition: vec_reg.hh:596
RegVal readFloatReg(PhysRegIdPtr phys_reg) const
Definition: regfile.hh:192
unsigned numPhysicalIntRegs
Number of physical general purpose registers.
Definition: regfile.hh:102
std::vector< RegVal > floatRegFile
Floating point register file.
Definition: regfile.hh:80
unsigned numVecElemPhysRegs() const
Definition: regfile.hh:167
IdRange getRegElemIds(PhysRegIdPtr reg)
Get the PhysRegIds of the elems of a vector register.
Definition: regfile.cc:184
Vector Lane abstraction Another view of a container.
Definition: vec_reg.hh:262
bool isVectorPhysElem() const
true if it is a vector element physical register.
Definition: reg_class.hh:287
bool isZeroReg() const
Check if this is the zero register.
Definition: reg_class.hh:137

Generated on Fri Jul 3 2020 15:53:00 for gem5 by doxygen 1.8.13