gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
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/types.hh"
48 #include "base/trace.hh"
49 #include "config/the_isa.hh"
50 #include "cpu/o3/comm.hh"
51 #include "debug/IEW.hh"
52 #include "enums/VecRegRenameMode.hh"
53 
54 class UnifiedFreeList;
55 
60 {
61  private:
62 
64  using VecMode = Enums::VecRegRenameMode;
65  public:
66  using IdRange = std::pair<PhysIds::iterator,
67  PhysIds::iterator>;
68  private:
72 
76 
81 
85 
89 
92 
97 
102 
107 
112 
117 
122 
124  unsigned totalNumRegs;
125 
128 
129  public:
134  PhysRegFile(unsigned _numPhysicalIntRegs,
135  unsigned _numPhysicalFloatRegs,
136  unsigned _numPhysicalVecRegs,
137  unsigned _numPhysicalVecPredRegs,
138  unsigned _numPhysicalCCRegs,
139  VecMode vmode
140  );
141 
146 
148  void initFreeList(UnifiedFreeList *freeList);
149 
151  unsigned numIntPhysRegs() const { return numPhysicalIntRegs; }
152 
154  unsigned numFloatPhysRegs() const { return numPhysicalFloatRegs; }
156  unsigned numVecPhysRegs() const { return numPhysicalVecRegs; }
158  unsigned numPredPhysRegs() const { return numPhysicalVecPredRegs; }
159 
161  unsigned numVecElemPhysRegs() const { return numPhysicalVecElemRegs; }
162 
164  unsigned numCCPhysRegs() const { return numPhysicalCCRegs; }
165 
167  unsigned totalNumPhysRegs() const { return totalNumRegs; }
168 
171  return &miscRegIds[reg_idx];
172  }
173 
175  RegVal
176  readIntReg(PhysRegIdPtr phys_reg) const
177  {
178  assert(phys_reg->isIntPhysReg());
179 
180  DPRINTF(IEW, "RegFile: Access to int register %i, has data "
181  "%#x\n", phys_reg->index(), intRegFile[phys_reg->index()]);
182  return intRegFile[phys_reg->index()];
183  }
184 
185  RegVal
186  readFloatReg(PhysRegIdPtr phys_reg) const
187  {
188  assert(phys_reg->isFloatPhysReg());
189 
190  RegVal floatRegBits = floatRegFile[phys_reg->index()];
191 
192  DPRINTF(IEW, "RegFile: Access to float register %i as int, "
193  "has data %#x\n", phys_reg->index(), floatRegBits);
194 
195  return floatRegBits;
196  }
197 
200  readVecReg(PhysRegIdPtr phys_reg) const
201  {
202  assert(phys_reg->isVectorPhysReg());
203 
204  DPRINTF(IEW, "RegFile: Access to vector register %i, has "
205  "data %s\n", int(phys_reg->index()),
206  vectorRegFile[phys_reg->index()].print());
207 
208  return vectorRegFile[phys_reg->index()];
209  }
210 
214  {
215  /* const_cast for not duplicating code above. */
216  return const_cast<TheISA::VecRegContainer&>(readVecReg(phys_reg));
217  }
218 
220  template <typename VE, int LaneIdx>
222  readVecLane(PhysRegIdPtr phys_reg) const
223  {
224  return readVecReg(phys_reg).laneView<VE, LaneIdx>();
225  }
226 
228  template <typename VE>
230  readVecLane(PhysRegIdPtr phys_reg) const
231  {
232  return readVecReg(phys_reg).laneView<VE>(phys_reg->elemIndex());
233  }
234 
236  template <typename LD>
237  void
238  setVecLane(PhysRegIdPtr phys_reg, const LD& val)
239  {
240  assert(phys_reg->isVectorPhysReg());
241 
242  DPRINTF(IEW, "RegFile: Setting vector register %i[%d] to %lx\n",
243  int(phys_reg->index()), phys_reg->elemIndex(), val);
244 
245  vectorRegFile[phys_reg->index()].laneView<typename LD::UnderlyingType>(
246  phys_reg->elemIndex()) = val;
247  }
248 
250  const TheISA::VecElem &
251  readVecElem(PhysRegIdPtr phys_reg) const
252  {
253  assert(phys_reg->isVectorPhysElem());
254  auto ret = vectorRegFile[phys_reg->index()].as<TheISA::VecElem>();
255  const TheISA::VecElem& val = ret[phys_reg->elemIndex()];
256  DPRINTF(IEW, "RegFile: Access to element %d of vector register %i,"
257  " has data %#x\n", phys_reg->elemIndex(),
258  int(phys_reg->index()), val);
259 
260  return val;
261  }
262 
265  readVecPredReg(PhysRegIdPtr phys_reg) const
266  {
267  assert(phys_reg->isVecPredPhysReg());
268 
269  DPRINTF(IEW, "RegFile: Access to predicate register %i, has "
270  "data %s\n", int(phys_reg->index()),
271  vecPredRegFile[phys_reg->index()].print());
272 
273  return vecPredRegFile[phys_reg->index()];
274  }
275 
278  {
279  /* const_cast for not duplicating code above. */
280  return const_cast<TheISA::VecPredRegContainer&>(
281  readVecPredReg(phys_reg));
282  }
283 
285  RegVal
287  {
288  assert(phys_reg->isCCPhysReg());
289 
290  DPRINTF(IEW, "RegFile: Access to cc register %i, has "
291  "data %#x\n", phys_reg->index(),
292  ccRegFile[phys_reg->index()]);
293 
294  return ccRegFile[phys_reg->index()];
295  }
296 
298  void
300  {
301  assert(phys_reg->isIntPhysReg());
302 
303  DPRINTF(IEW, "RegFile: Setting int register %i to %#x\n",
304  phys_reg->index(), val);
305 
306  if (!phys_reg->isZeroReg())
307  intRegFile[phys_reg->index()] = val;
308  }
309 
310  void
312  {
313  assert(phys_reg->isFloatPhysReg());
314 
315  DPRINTF(IEW, "RegFile: Setting float register %i to %#x\n",
316  phys_reg->index(), (uint64_t)val);
317 
318  if (!phys_reg->isZeroReg())
319  floatRegFile[phys_reg->index()] = val;
320  }
321 
323  void
325  {
326  assert(phys_reg->isVectorPhysReg());
327 
328  DPRINTF(IEW, "RegFile: Setting vector register %i to %s\n",
329  int(phys_reg->index()), val.print());
330 
331  vectorRegFile[phys_reg->index()] = val;
332  }
333 
335  void
337  {
338  assert(phys_reg->isVectorPhysElem());
339 
340  DPRINTF(IEW, "RegFile: Setting element %d of vector register %i to"
341  " %#x\n", phys_reg->elemIndex(), int(phys_reg->index()), val);
342 
343  vectorRegFile[phys_reg->index()].as<TheISA::VecElem>()[
344  phys_reg->elemIndex()] = val;
345  }
346 
348  void
351  {
352  assert(phys_reg->isVecPredPhysReg());
353 
354  DPRINTF(IEW, "RegFile: Setting predicate register %i to %s\n",
355  int(phys_reg->index()), val.print());
356 
357  vecPredRegFile[phys_reg->index()] = val;
358  }
359 
361  void
363  {
364  assert(phys_reg->isCCPhysReg());
365 
366  DPRINTF(IEW, "RegFile: Setting cc register %i to %#x\n",
367  phys_reg->index(), (uint64_t)val);
368 
369  ccRegFile[phys_reg->index()] = val;
370  }
371 
376 
383 
390 };
391 
392 
393 #endif //__CPU_O3_REGFILE_HH__
PhysRegFile::readVecReg
const TheISA::VecRegContainer & readVecReg(PhysRegIdPtr phys_reg) const
Reads a vector register.
Definition: regfile.hh:200
PhysRegId::isFloatPhysReg
bool isFloatPhysReg() const
Definition: reg_class.hh:285
PhysRegFile::numPhysicalIntRegs
unsigned numPhysicalIntRegs
Number of physical general purpose registers.
Definition: regfile.hh:96
PhysRegFile::vecPredRegIds
std::vector< PhysRegId > vecPredRegIds
Definition: regfile.hh:84
PhysRegId::isVectorPhysElem
bool isVectorPhysElem() const
@Return true if it is a vector element physical register.
Definition: reg_class.hh:294
PhysRegFile::numVecElemPhysRegs
unsigned numVecElemPhysRegs() const
Definition: regfile.hh:161
ArmISA::VecRegContainer
VecReg::Container VecRegContainer
Definition: registers.hh:63
PhysRegFile::floatRegIds
std::vector< PhysRegId > floatRegIds
Definition: regfile.hh:75
PhysRegFile::totalNumRegs
unsigned totalNumRegs
Total number of physical registers.
Definition: regfile.hh:124
PhysRegFile::ccRegIds
std::vector< PhysRegId > ccRegIds
Definition: regfile.hh:88
PhysRegId::elemIndex
const RegIndex & elemIndex() const
Elem accessor.
Definition: reg_class.hh:197
PhysRegId::isZeroReg
bool isZeroReg() const
Check if this is the zero register.
Definition: reg_class.hh:143
ArmISA::VecPredRegContainer
VecPredReg::Container VecPredRegContainer
Definition: registers.hh:69
PhysRegId::isVectorPhysReg
bool isVectorPhysReg() const
@Return true if it is a vector physical register.
Definition: reg_class.hh:291
PhysRegFile::ccRegFile
std::vector< RegVal > ccRegFile
Condition-code register file.
Definition: regfile.hh:87
PhysRegFile
Simple physical register file class.
Definition: regfile.hh:59
PhysRegFile::initFreeList
void initFreeList(UnifiedFreeList *freeList)
Initialize the free list.
Definition: regfile.cc:131
std::vector< PhysRegId >
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::numPhysicalVecElemRegs
unsigned numPhysicalVecElemRegs
Number of physical vector element registers.
Definition: regfile.hh:111
PhysRegFile::intRegIds
std::vector< PhysRegId > intRegIds
Definition: regfile.hh:71
PhysRegFile::getMiscRegId
PhysRegIdPtr getMiscRegId(RegIndex reg_idx)
Gets a misc register PhysRegIdPtr.
Definition: regfile.hh:170
PhysRegFile::vecRegIds
std::vector< PhysRegId > vecRegIds
Definition: regfile.hh:79
PhysRegFile::~PhysRegFile
~PhysRegFile()
Destructor to free resources.
Definition: regfile.hh:145
PhysRegFile::setCCReg
void setCCReg(PhysRegIdPtr phys_reg, RegVal val)
Sets a condition-code register to the given value.
Definition: regfile.hh:362
PhysRegFile::numIntPhysRegs
unsigned numIntPhysRegs() const
Definition: regfile.hh:151
comm.hh
PhysRegFile::readVecElem
const TheISA::VecElem & readVecElem(PhysRegIdPtr phys_reg) const
Reads a vector element.
Definition: regfile.hh:251
PhysRegId::index
const RegIndex & index() const
Visible RegId methods.
Definition: reg_class.hh:171
PhysRegFile::numCCPhysRegs
unsigned numCCPhysRegs() const
Definition: regfile.hh:164
ArmISA::VecElem
uint32_t VecElem
Definition: registers.hh:60
PhysRegFile::setVecPredReg
void setVecPredReg(PhysRegIdPtr phys_reg, const TheISA::VecPredRegContainer &val)
Sets a predicate register to the given value.
Definition: regfile.hh:349
VecLaneT
Vector Lane abstraction Another view of a container.
Definition: vec_reg.hh:262
PhysRegFile::vecPredRegFile
std::vector< TheISA::VecPredRegContainer > vecPredRegFile
Predicate register file.
Definition: regfile.hh:83
PhysRegFile::readIntReg
RegVal readIntReg(PhysRegIdPtr phys_reg) const
Reads an integer register.
Definition: regfile.hh:176
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:237
PhysRegFile::setFloatReg
void setFloatReg(PhysRegIdPtr phys_reg, RegVal val)
Definition: regfile.hh:311
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
UnifiedFreeList
FreeList class that simply holds the list of free integer and floating point registers.
Definition: free_list.hh:114
PhysRegFile::readCCReg
RegVal readCCReg(PhysRegIdPtr phys_reg)
Reads a condition-code register.
Definition: regfile.hh:286
PhysRegFile::numFloatPhysRegs
unsigned numFloatPhysRegs() const
Definition: regfile.hh:154
PhysRegFile::numPredPhysRegs
unsigned numPredPhysRegs() const
Definition: regfile.hh:158
PhysRegId::isCCPhysReg
bool isCCPhysReg() const
@Return true if it is a condition-code physical register.
Definition: reg_class.hh:288
std::pair
STL pair class.
Definition: stl.hh:58
X86ISA::val
Bitfield< 63 > val
Definition: misc.hh:769
PhysRegFile::vecMode
VecMode vecMode
Mode in which vector registers are addressed.
Definition: regfile.hh:127
PhysRegId::isIntPhysReg
bool isIntPhysReg() const
Definition: reg_class.hh:282
PhysRegFile::numPhysicalVecPredRegs
unsigned numPhysicalVecPredRegs
Number of physical predicate registers.
Definition: regfile.hh:116
PhysRegFile::miscRegIds
std::vector< PhysRegId > miscRegIds
Misc Reg Ids.
Definition: regfile.hh:91
PhysRegFile::IdRange
std::pair< PhysIds::iterator, PhysIds::iterator > IdRange
Definition: regfile.hh:67
PhysRegFile::numPhysicalVecRegs
unsigned numPhysicalVecRegs
Number of physical vector registers.
Definition: regfile.hh:106
PhysRegFile::numVecPhysRegs
unsigned numVecPhysRegs() const
Definition: regfile.hh:156
RegIndex
uint16_t RegIndex
Definition: types.hh:52
PhysRegFile::totalNumPhysRegs
unsigned totalNumPhysRegs() const
Definition: regfile.hh:167
PhysRegFile::getWritableVecPredReg
TheISA::VecPredRegContainer & getWritableVecPredReg(PhysRegIdPtr phys_reg)
Definition: regfile.hh:277
PhysRegFile::getTrueId
PhysRegIdPtr getTrueId(PhysRegIdPtr reg)
Get the true physical register id.
Definition: regfile.cc:221
PhysRegFile::intRegFile
std::vector< RegVal > intRegFile
Integer register file.
Definition: regfile.hh:70
PhysRegFile::numPhysicalFloatRegs
unsigned numPhysicalFloatRegs
Number of physical floating point registers.
Definition: regfile.hh:101
PhysRegFile::floatRegFile
std::vector< RegVal > floatRegFile
Floating point register file.
Definition: regfile.hh:74
PhysRegId
Physical register ID.
Definition: reg_class.hh:223
trace.hh
PhysRegFile::vecElemIds
std::vector< PhysRegId > vecElemIds
Definition: regfile.hh:80
PhysRegFile::getWritableVecReg
TheISA::VecRegContainer & getWritableVecReg(PhysRegIdPtr phys_reg)
Reads a vector register for modification.
Definition: regfile.hh:213
PhysRegId::isVecPredPhysReg
bool isVecPredPhysReg() const
Definition: reg_class.hh:297
PhysRegFile::readVecPredReg
const TheISA::VecPredRegContainer & readVecPredReg(PhysRegIdPtr phys_reg) const
Reads a predicate register.
Definition: regfile.hh:265
PhysRegFile::readFloatReg
RegVal readFloatReg(PhysRegIdPtr phys_reg) const
Definition: regfile.hh:186
PhysRegFile::readVecLane
VecLaneT< VE, true > readVecLane(PhysRegIdPtr phys_reg) const
Reads a vector register lane.
Definition: regfile.hh:222
PhysRegFile::setIntReg
void setIntReg(PhysRegIdPtr phys_reg, RegVal val)
Sets an integer register to the given value.
Definition: regfile.hh:299
PhysRegFile::setVecElem
void setVecElem(PhysRegIdPtr phys_reg, const TheISA::VecElem val)
Sets a vector register to the given value.
Definition: regfile.hh:336
PhysRegFile::getRegIds
IdRange getRegIds(RegClass cls)
Get the PhysRegIds of the elems of all vector registers.
Definition: regfile.cc:196
PhysRegFile::readVecLane
VecLaneT< VE, true > readVecLane(PhysRegIdPtr phys_reg) const
Reads a vector register lane.
Definition: regfile.hh:230
RegVal
uint64_t RegVal
Definition: types.hh:174
PhysRegFile::setVecReg
void setVecReg(PhysRegIdPtr phys_reg, const TheISA::VecRegContainer &val)
Sets a vector register to the given value.
Definition: regfile.hh:324
PhysRegFile::setVecLane
void setVecLane(PhysRegIdPtr phys_reg, const LD &val)
Get a vector register lane for modification.
Definition: regfile.hh:238

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