gem5  v21.2.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/generic/isa.hh"
48 #include "arch/vecregs.hh"
49 #include "base/trace.hh"
50 #include "config/the_isa.hh"
51 #include "cpu/o3/comm.hh"
52 #include "debug/IEW.hh"
53 
54 namespace gem5
55 {
56 
57 namespace o3
58 {
59 
60 class UnifiedFreeList;
61 
66 {
67  private:
68 
70  public:
71  using IdRange = std::pair<PhysIds::iterator,
72  PhysIds::iterator>;
73  private:
78 
82 
86 
90 
94 
98 
101 
106 
111 
116 
121 
126 
131 
133  unsigned totalNumRegs;
134 
135  public:
140  PhysRegFile(unsigned _numPhysicalIntRegs,
141  unsigned _numPhysicalFloatRegs,
142  unsigned _numPhysicalVecRegs,
143  unsigned _numPhysicalVecPredRegs,
144  unsigned _numPhysicalCCRegs,
145  const BaseISA::RegClasses &regClasses);
146 
151 
153  void initFreeList(UnifiedFreeList *freeList);
154 
156  unsigned numIntPhysRegs() const { return numPhysicalIntRegs; }
157 
159  unsigned numFloatPhysRegs() const { return numPhysicalFloatRegs; }
161  unsigned numVecPhysRegs() const { return numPhysicalVecRegs; }
163  unsigned numPredPhysRegs() const { return numPhysicalVecPredRegs; }
164 
166  unsigned numVecElemPhysRegs() const { return numPhysicalVecElemRegs; }
167 
169  unsigned numCCPhysRegs() const { return numPhysicalCCRegs; }
170 
172  unsigned totalNumPhysRegs() const { return totalNumRegs; }
173 
176  return &miscRegIds[reg_idx];
177  }
178 
180  RegVal
181  readIntReg(PhysRegIdPtr phys_reg) const
182  {
183  assert(phys_reg->is(IntRegClass));
184 
185  DPRINTF(IEW, "RegFile: Access to int register %i, has data "
186  "%#x\n", phys_reg->index(), intRegFile[phys_reg->index()]);
187  return intRegFile[phys_reg->index()];
188  }
189 
190  RegVal
191  readFloatReg(PhysRegIdPtr phys_reg) const
192  {
193  assert(phys_reg->is(FloatRegClass));
194 
195  RegVal floatRegBits = floatRegFile[phys_reg->index()];
196 
197  DPRINTF(IEW, "RegFile: Access to float register %i as int, "
198  "has data %#x\n", phys_reg->index(), floatRegBits);
199 
200  return floatRegBits;
201  }
202 
205  readVecReg(PhysRegIdPtr phys_reg) const
206  {
207  assert(phys_reg->is(VecRegClass));
208 
209  DPRINTF(IEW, "RegFile: Access to vector register %i, has "
210  "data %s\n", int(phys_reg->index()),
211  vectorRegFile[phys_reg->index()]);
212 
213  return vectorRegFile[phys_reg->index()];
214  }
215 
219  {
220  /* const_cast for not duplicating code above. */
221  return const_cast<TheISA::VecRegContainer&>(readVecReg(phys_reg));
222  }
223 
225  RegVal
226  readVecElem(PhysRegIdPtr phys_reg) const
227  {
228  assert(phys_reg->is(VecElemClass));
230  phys_reg->index() * TheISA::NumVecElemPerVecReg +
231  phys_reg->elemIndex()];
232  DPRINTF(IEW, "RegFile: Access to element %d of vector register %i,"
233  " has data %#x\n", phys_reg->elemIndex(),
234  phys_reg->index(), val);
235 
236  return val;
237  }
238 
241  readVecPredReg(PhysRegIdPtr phys_reg) const
242  {
243  assert(phys_reg->is(VecPredRegClass));
244 
245  DPRINTF(IEW, "RegFile: Access to predicate register %i, has "
246  "data %s\n", int(phys_reg->index()),
247  vecPredRegFile[phys_reg->index()]);
248 
249  return vecPredRegFile[phys_reg->index()];
250  }
251 
254  {
255  /* const_cast for not duplicating code above. */
256  return const_cast<TheISA::VecPredRegContainer&>(
257  readVecPredReg(phys_reg));
258  }
259 
261  RegVal
263  {
264  assert(phys_reg->is(CCRegClass));
265 
266  DPRINTF(IEW, "RegFile: Access to cc register %i, has "
267  "data %#x\n", phys_reg->index(),
268  ccRegFile[phys_reg->index()]);
269 
270  return ccRegFile[phys_reg->index()];
271  }
272 
274  void
276  {
277  assert(phys_reg->is(IntRegClass));
278 
279  DPRINTF(IEW, "RegFile: Setting int register %i to %#x\n",
280  phys_reg->index(), val);
281 
282  if (phys_reg->index() != zeroReg.index())
283  intRegFile[phys_reg->index()] = val;
284  }
285 
286  void
288  {
289  assert(phys_reg->is(FloatRegClass));
290 
291  DPRINTF(IEW, "RegFile: Setting float register %i to %#x\n",
292  phys_reg->index(), (uint64_t)val);
293 
294  floatRegFile[phys_reg->index()] = val;
295  }
296 
298  void
300  {
301  assert(phys_reg->is(VecRegClass));
302 
303  DPRINTF(IEW, "RegFile: Setting vector register %i to %s\n",
304  int(phys_reg->index()), val);
305 
306  vectorRegFile[phys_reg->index()] = val;
307  }
308 
310  void
312  {
313  assert(phys_reg->is(VecElemClass));
314 
315  DPRINTF(IEW, "RegFile: Setting element %d of vector register %i to"
316  " %#x\n", phys_reg->elemIndex(), int(phys_reg->index()), val);
317 
319  phys_reg->elemIndex()] = val;
320  }
321 
323  void
326  {
327  assert(phys_reg->is(VecPredRegClass));
328 
329  DPRINTF(IEW, "RegFile: Setting predicate register %i to %s\n",
330  int(phys_reg->index()), val);
331 
332  vecPredRegFile[phys_reg->index()] = val;
333  }
334 
336  void
338  {
339  assert(phys_reg->is(CCRegClass));
340 
341  DPRINTF(IEW, "RegFile: Setting cc register %i to %#x\n",
342  phys_reg->index(), (uint64_t)val);
343 
344  ccRegFile[phys_reg->index()] = val;
345  }
346 
353 
360 };
361 
362 } // namespace o3
363 } // namespace gem5
364 
365 #endif //__CPU_O3_REGFILE_HH__
gem5::o3::PhysRegFile::setCCReg
void setCCReg(PhysRegIdPtr phys_reg, RegVal val)
Sets a condition-code register to the given value.
Definition: regfile.hh:337
gem5::ArmISA::NumVecElemPerVecReg
constexpr unsigned NumVecElemPerVecReg
Definition: vec.hh:58
gem5::o3::PhysRegFile::getWritableVecReg
TheISA::VecRegContainer & getWritableVecReg(PhysRegIdPtr phys_reg)
Reads a vector register for modification.
Definition: regfile.hh:218
gem5::o3::PhysRegFile::setVecElem
void setVecElem(PhysRegIdPtr phys_reg, RegVal val)
Sets a vector register to the given value.
Definition: regfile.hh:311
gem5::RegVal
uint64_t RegVal
Definition: types.hh:173
gem5::o3::PhysRegFile::readVecReg
const TheISA::VecRegContainer & readVecReg(PhysRegIdPtr phys_reg) const
Reads a vector register.
Definition: regfile.hh:205
gem5::ArmISA::VecPredRegContainer
VecPredReg::Container VecPredRegContainer
Definition: vec.hh:68
gem5::o3::PhysRegFile::numPhysicalVecElemRegs
unsigned numPhysicalVecElemRegs
Number of physical vector element registers.
Definition: regfile.hh:120
gem5::o3::PhysRegFile::zeroReg
RegId zeroReg
Definition: regfile.hh:77
gem5::o3::PhysRegFile::setVecPredReg
void setVecPredReg(PhysRegIdPtr phys_reg, const TheISA::VecPredRegContainer &val)
Sets a predicate register to the given value.
Definition: regfile.hh:324
gem5::VecElemClass
@ VecElemClass
Vector Register Native Elem lane.
Definition: reg_class.hh:63
gem5::o3::PhysRegFile::numIntPhysRegs
unsigned numIntPhysRegs() const
Definition: regfile.hh:156
gem5::o3::PhysRegFile::readFloatReg
RegVal readFloatReg(PhysRegIdPtr phys_reg) const
Definition: regfile.hh:191
gem5::o3::PhysRegFile::getRegIds
IdRange getRegIds(RegClassType cls)
Get the PhysRegIds of the elems of all vector registers.
Definition: regfile.cc:181
gem5::o3::PhysRegFile::intRegFile
std::vector< RegVal > intRegFile
Integer register file.
Definition: regfile.hh:75
gem5::o3::PhysRegFile::readIntReg
RegVal readIntReg(PhysRegIdPtr phys_reg) const
Reads an integer register.
Definition: regfile.hh:181
gem5::CCRegClass
@ CCRegClass
Condition-code register.
Definition: reg_class.hh:65
gem5::o3::PhysRegFile::numFloatPhysRegs
unsigned numFloatPhysRegs() const
Definition: regfile.hh:159
gem5::X86ISA::val
Bitfield< 63 > val
Definition: misc.hh:775
gem5::o3::UnifiedFreeList
FreeList class that simply holds the list of free integer and floating point registers.
Definition: free_list.hh:122
gem5::o3::PhysRegFile::ccRegIds
std::vector< PhysRegId > ccRegIds
Definition: regfile.hh:97
std::vector
STL vector class.
Definition: stl.hh:37
gem5::o3::PhysRegFile::getWritableVecPredReg
TheISA::VecPredRegContainer & getWritableVecPredReg(PhysRegIdPtr phys_reg)
Definition: regfile.hh:253
gem5::RegId::index
RegIndex index() const
Index accessors.
Definition: reg_class.hh:180
gem5::VecPredRegClass
@ VecPredRegClass
Definition: reg_class.hh:64
gem5::o3::PhysRegFile::getTrueId
PhysRegIdPtr getTrueId(PhysRegIdPtr reg)
Get the true physical register id.
Definition: regfile.cc:206
gem5::o3::PhysRegFile::numPhysicalVecRegs
unsigned numPhysicalVecRegs
Number of physical vector registers.
Definition: regfile.hh:115
gem5::o3::PhysRegFile::numCCPhysRegs
unsigned numCCPhysRegs() const
Definition: regfile.hh:169
gem5::o3::PhysRegFile::floatRegIds
std::vector< PhysRegId > floatRegIds
Definition: regfile.hh:81
comm.hh
gem5::FloatRegClass
@ FloatRegClass
Floating-point register.
Definition: reg_class.hh:59
gem5::o3::PhysRegFile::miscRegIds
std::vector< PhysRegId > miscRegIds
Misc Reg Ids.
Definition: regfile.hh:100
gem5::o3::PhysRegFile::vecElemIds
std::vector< PhysRegId > vecElemIds
Definition: regfile.hh:89
gem5::o3::PhysRegFile::readVecElem
RegVal readVecElem(PhysRegIdPtr phys_reg) const
Reads a vector element.
Definition: regfile.hh:226
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:186
gem5::o3::PhysRegFile
Simple physical register file class.
Definition: regfile.hh:65
gem5::o3::PhysRegFile::numPredPhysRegs
unsigned numPredPhysRegs() const
Definition: regfile.hh:163
gem5::o3::IEW
IEW handles both single threaded and SMT IEW (issue/execute/writeback).
Definition: iew.hh:87
gem5::o3::PhysRegFile::vecRegIds
std::vector< PhysRegId > vecRegIds
Definition: regfile.hh:85
gem5::ArmISA::VecRegContainer
gem5::VecRegContainer< NumVecElemPerVecReg *sizeof(VecElem)> VecRegContainer
Definition: vec.hh:62
gem5::o3::PhysRegFile::IdRange
std::pair< PhysIds::iterator, PhysIds::iterator > IdRange
Definition: regfile.hh:72
std::pair
STL pair class.
Definition: stl.hh:58
gem5::o3::PhysRegFile::intRegIds
std::vector< PhysRegId > intRegIds
Definition: regfile.hh:76
gem5::o3::PhysRegFile::vecPredRegFile
std::vector< TheISA::VecPredRegContainer > vecPredRegFile
Predicate register file.
Definition: regfile.hh:92
gem5::o3::PhysRegFile::vectorRegFile
std::vector< TheISA::VecRegContainer > vectorRegFile
Vector register file.
Definition: regfile.hh:84
gem5::o3::PhysRegFile::numPhysicalIntRegs
unsigned numPhysicalIntRegs
Number of physical general purpose registers.
Definition: regfile.hh:105
gem5::o3::PhysRegFile::numVecPhysRegs
unsigned numVecPhysRegs() const
Definition: regfile.hh:161
gem5::o3::PhysRegFile::~PhysRegFile
~PhysRegFile()
Destructor to free resources.
Definition: regfile.hh:150
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:125
gem5::IntRegClass
@ IntRegClass
Integer register.
Definition: reg_class.hh:58
isa.hh
gem5::PhysRegId::elemIndex
RegIndex elemIndex() const
Elem accessor.
Definition: reg_class.hh:204
gem5::RegClassType
RegClassType
Enumerate the classes of registers.
Definition: reg_class.hh:56
gem5::o3::PhysRegFile::PhysRegFile
PhysRegFile(unsigned _numPhysicalIntRegs, unsigned _numPhysicalFloatRegs, unsigned _numPhysicalVecRegs, unsigned _numPhysicalVecPredRegs, unsigned _numPhysicalCCRegs, const BaseISA::RegClasses &regClasses)
Constructs a physical register file with the specified amount of integer and floating point registers...
Definition: regfile.cc:52
gem5::o3::PhysRegFile::getMiscRegId
PhysRegIdPtr getMiscRegId(RegIndex reg_idx)
Gets a misc register PhysRegIdPtr.
Definition: regfile.hh:175
gem5::o3::PhysRegFile::floatRegFile
std::vector< RegVal > floatRegFile
Floating point register file.
Definition: regfile.hh:80
gem5::o3::PhysRegFile::totalNumRegs
unsigned totalNumRegs
Total number of physical registers.
Definition: regfile.hh:133
gem5::o3::PhysRegFile::numPhysicalCCRegs
unsigned numPhysicalCCRegs
Number of physical CC registers.
Definition: regfile.hh:130
gem5::PhysRegId::is
bool is(RegClassType reg_class) const
Definition: reg_class.hh:176
gem5::o3::PhysRegFile::readVecPredReg
const TheISA::VecPredRegContainer & readVecPredReg(PhysRegIdPtr phys_reg) const
Reads a predicate register.
Definition: regfile.hh:241
gem5::o3::PhysRegFile::initFreeList
void initFreeList(UnifiedFreeList *freeList)
Initialize the free list.
Definition: regfile.cc:132
gem5::o3::PhysRegFile::vecPredRegIds
std::vector< PhysRegId > vecPredRegIds
Definition: regfile.hh:93
gem5::PhysRegId
Physical register ID.
Definition: reg_class.hh:224
gem5::o3::PhysRegFile::setFloatReg
void setFloatReg(PhysRegIdPtr phys_reg, RegVal val)
Definition: regfile.hh:287
gem5::o3::PhysRegFile::setIntReg
void setIntReg(PhysRegIdPtr phys_reg, RegVal val)
Sets an integer register to the given value.
Definition: regfile.hh:275
gem5::o3::PhysRegFile::ccRegFile
std::vector< RegVal > ccRegFile
Condition-code register file.
Definition: regfile.hh:96
trace.hh
gem5::o3::PhysRegFile::numPhysicalFloatRegs
unsigned numPhysicalFloatRegs
Number of physical floating point registers.
Definition: regfile.hh:110
gem5::VecRegClass
@ VecRegClass
Vector Register.
Definition: reg_class.hh:61
gem5::RegIndex
uint16_t RegIndex
Definition: types.hh:176
gem5::o3::PhysRegFile::setVecReg
void setVecReg(PhysRegIdPtr phys_reg, const TheISA::VecRegContainer &val)
Sets a vector register to the given value.
Definition: regfile.hh:299
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: tlb.cc:60
gem5::o3::PhysRegFile::readCCReg
RegVal readCCReg(PhysRegIdPtr phys_reg)
Reads a condition-code register.
Definition: regfile.hh:262
gem5::o3::PhysRegFile::vectorElemRegFile
std::vector< RegVal > vectorElemRegFile
Vector element register file.
Definition: regfile.hh:88
gem5::PhysRegId::index
RegIndex index() const
Visible RegId methods.
Definition: reg_class.hh:180
gem5::o3::PhysRegFile::numVecElemPhysRegs
unsigned numVecElemPhysRegs() const
Definition: regfile.hh:166
gem5::RegId
Register ID: describe an architectural register with its class and index.
Definition: reg_class.hh:113
gem5::o3::PhysRegFile::totalNumPhysRegs
unsigned totalNumPhysRegs() const
Definition: regfile.hh:172

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