gem5 [DEVELOP-FOR-25.0]
Loading...
Searching...
No Matches
vector_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 __VECTOR_REGISTER_FILE_HH__
33#define __VECTOR_REGISTER_FILE_HH__
34
35#include "arch/gpu_isa.hh"
36#include "config/the_gpu_isa.hh"
37#include "debug/GPUTrace.hh"
38#include "debug/GPUVRF.hh"
41
42namespace gem5
43{
44
45struct VectorRegisterFileParams;
46
47// Vector Register File
49{
50 public:
51 using VecRegContainer = TheGpuISA::VecRegContainerU32;
52
53 VectorRegisterFile(const VectorRegisterFileParams &p);
55
56 virtual bool operandsReady(Wavefront *w, GPUDynInstPtr ii) const override;
57 virtual void scheduleWriteOperands(Wavefront *w,
58 GPUDynInstPtr ii) override;
60 GPUDynInstPtr ii) override;
61 virtual void waveExecuteInst(Wavefront *w, GPUDynInstPtr ii) override;
62
63 void
64 setParent(ComputeUnit *_computeUnit) override
65 {
66 RegisterFile::setParent(_computeUnit);
67 }
68
69 // Read a register that is writeable (e.g., a DST operand)
71 readWriteable(int regIdx)
72 {
73 return regFile[regIdx];
74 }
75
76 // Read a register that is not writeable (e.g., src operand)
77 const VecRegContainer&
78 read(int regIdx) const
79 {
80 return regFile[regIdx];
81 }
82
83 // Write a register
84 void
85 write(int regIdx, const VecRegContainer &value)
86 {
87 regFile[regIdx] = value;
88 }
89
90 void
91 printReg(Wavefront *wf, int regIdx) const
92 {
93#ifndef NDEBUG
94 const auto &vec_reg_cont = regFile[regIdx];
95 auto vgpr = vec_reg_cont.as<TheGpuISA::VecElemU32>();
96
97 for (int lane = 0; lane < TheGpuISA::NumVecElemPerVecReg; ++lane) {
98 if (wf->execMask(lane)) {
99 DPRINTF(GPUVRF, "WF[%d][%d]: WV[%d] v[%d][%d] = %#x\n",
100 wf->simdId, wf->wfSlotId, wf->wfDynId, regIdx, lane,
101 vgpr[lane]);
102 DPRINTF(GPUTrace, "WF[%d][%d]: WV[%d] v[%d][%d] = %#x (%f)\n",
103 wf->simdId, wf->wfSlotId, wf->wfDynId, regIdx, lane,
104 vgpr[lane], *reinterpret_cast<const float*>(&vgpr[lane]));
105 }
106 }
107#endif
108 }
109
110 private:
112};
113
114} // namespace gem5
115
116#endif // __VECTOR_REGISTER_FILE_HH__
#define DPRINTF(x,...)
Definition trace.hh:209
RegisterFile(const RegisterFileParams &p)
virtual void setParent(ComputeUnit *_computeUnit)
Vector Register Abstraction This generic class is the model in a particularization of MVC,...
Definition vec_reg.hh:126
virtual void scheduleWriteOperands(Wavefront *w, GPUDynInstPtr ii) override
void printReg(Wavefront *wf, int regIdx) const
VectorRegisterFile(const VectorRegisterFileParams &p)
VecRegContainer & readWriteable(int regIdx)
virtual bool operandsReady(Wavefront *w, GPUDynInstPtr ii) const override
const VecRegContainer & read(int regIdx) const
void write(int regIdx, const VecRegContainer &value)
std::vector< VecRegContainer > regFile
TheGpuISA::VecRegContainerU32 VecRegContainer
void setParent(ComputeUnit *_computeUnit) override
virtual void waveExecuteInst(Wavefront *w, GPUDynInstPtr ii) override
virtual void scheduleWriteOperandsFromLoad(Wavefront *w, GPUDynInstPtr ii) override
const int simdId
Definition wavefront.hh:102
const int wfSlotId
Definition wavefront.hh:99
VectorMask & execMask()
uint64_t wfDynId
Definition wavefront.hh:235
STL vector class.
Definition stl.hh:37
Bitfield< 0 > p
Bitfield< 0 > w
Copyright (c) 2024 Arm Limited All rights reserved.
Definition binary32.hh:36
std::shared_ptr< GPUDynInst > GPUDynInstPtr
Definition misc.hh:49

Generated on Mon May 26 2025 09:19:11 for gem5 by doxygen 1.13.2