gem5  v22.1.0.0
scalar_register_file.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015-2017 Advanced Micro Devices, Inc.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  *
8  * 1. Redistributions of source code must retain the above copyright notice,
9  * this list of conditions and the following disclaimer.
10  *
11  * 2. Redistributions in binary form must reproduce the above copyright notice,
12  * this list of conditions and the following disclaimer in the documentation
13  * and/or other materials provided with the distribution.
14  *
15  * 3. Neither the name of the copyright holder nor the names of its
16  * contributors may be used to endorse or promote products derived from this
17  * software without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
23  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29  * POSSIBILITY OF SUCH DAMAGE.
30  */
31 
32 #ifndef __GPU_COMPUTE_SCALAR_REGISTER_FILE_HH__
33 #define __GPU_COMPUTE_SCALAR_REGISTER_FILE_HH__
34 
35 #include "arch/gpu_isa.hh"
36 #include "base/statistics.hh"
37 #include "base/trace.hh"
38 #include "base/types.hh"
39 #include "debug/GPUSRF.hh"
41 #include "gpu-compute/wavefront.hh"
42 
43 namespace gem5
44 {
45 
46 struct ScalarRegisterFileParams;
47 
48 // Scalar Register File
50 {
51  public:
53 
54  ScalarRegisterFile(const ScalarRegisterFileParams &p);
56 
57  virtual bool operandsReady(Wavefront *w, GPUDynInstPtr ii) const override;
58  virtual void scheduleWriteOperands(Wavefront *w,
59  GPUDynInstPtr ii) override;
61  GPUDynInstPtr ii) override;
62  virtual void waveExecuteInst(Wavefront *w, GPUDynInstPtr ii) override;
63 
64  void
65  setParent(ComputeUnit *_computeUnit) override
66  {
67  RegisterFile::setParent(_computeUnit);
68  }
69 
70  // Read a register that is writeable (e.g., a DST operand)
72  readWriteable(int regIdx)
73  {
74  return regFile[regIdx];
75  }
76 
77  // Read a register that is not writeable (e.g., src operand)
79  read(int regIdx) const
80  {
81  return regFile[regIdx];
82  }
83 
84  // Write a register
85  void
86  write(int regIdx, ScalarRegU32 value)
87  {
88  regFile[regIdx] = value;
89  }
90 
91  void
92  printReg(Wavefront *wf, int regIdx) const
93  {
94  DPRINTF(GPUSRF, "WF[%d][%d]: Id%d s[%d] = %#x\n", wf->simdId,
95  wf->wfSlotId, wf->wfDynId, regIdx, regFile[regIdx]);
96  }
97 
98  private:
100 };
101 
102 } // namespace gem5
103 
104 #endif // __GPU_COMPUTE_SCALAR_REGISTER_FILE_HH__
#define DPRINTF(x,...)
Definition: trace.hh:186
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,...
virtual void setParent(ComputeUnit *_computeUnit)
void printReg(Wavefront *wf, int regIdx) const
virtual void scheduleWriteOperandsFromLoad(Wavefront *w, GPUDynInstPtr ii) override
ScalarRegisterFile(const ScalarRegisterFileParams &p)
void write(int regIdx, ScalarRegU32 value)
virtual bool operandsReady(Wavefront *w, GPUDynInstPtr ii) const override
ScalarRegU32 read(int regIdx) const
virtual void scheduleWriteOperands(Wavefront *w, GPUDynInstPtr ii) override
TheGpuISA::ScalarRegU32 ScalarRegU32
void setParent(ComputeUnit *_computeUnit) override
std::vector< ScalarRegU32 > regFile
virtual void waveExecuteInst(Wavefront *w, GPUDynInstPtr ii) override
ScalarRegU32 & readWriteable(int regIdx)
const int simdId
Definition: wavefront.hh:99
const int wfSlotId
Definition: wavefront.hh:96
uint64_t wfDynId
Definition: wavefront.hh:226
uint32_t ScalarRegU32
Bitfield< 6 > w
Definition: pagetable.hh:59
Bitfield< 54 > p
Definition: pagetable.hh:70
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
std::shared_ptr< GPUDynInst > GPUDynInstPtr
Definition: misc.hh:49
Declaration of Statistics objects.

Generated on Wed Dec 21 2022 10:22:35 for gem5 by doxygen 1.9.1