gpu_static_inst.hh (11308:7d8836fd043d) gpu_static_inst.hh (11690:3027d6c34fa4)
1/*
2 * Copyright (c) 2015 Advanced Micro Devices, Inc.
3 * All rights reserved.
4 *
5 * For use for simulation and test purposes only
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are met:
9 *
10 * 1. Redistributions of source code must retain the above copyright notice,
11 * this list of conditions and the following disclaimer.
12 *
13 * 2. Redistributions in binary form must reproduce the above copyright notice,
14 * this list of conditions and the following disclaimer in the documentation
15 * and/or other materials provided with the distribution.
16 *
17 * 3. Neither the name of the copyright holder nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE.
32 *
33 * Author: Anthony Gutierrez
34 */
35
36#ifndef __GPU_STATIC_INST_HH__
37#define __GPU_STATIC_INST_HH__
38
39/*
40 * @file gpu_static_inst.hh
41 *
42 * Defines the base class representing static instructions for the GPU. The
43 * instructions are "static" because they contain no dynamic instruction
44 * information. GPUStaticInst corresponds to the StaticInst class for the CPU
45 * models.
46 */
47
48#include <cstdint>
49#include <string>
50
51#include "enums/OpType.hh"
52#include "enums/StorageClassType.hh"
53#include "gpu-compute/gpu_dyn_inst.hh"
54#include "gpu-compute/misc.hh"
55
56class BaseOperand;
57class BaseRegOperand;
58class Wavefront;
59
60class GPUStaticInst
61{
62 public:
63 GPUStaticInst(const std::string &opcode);
64
65 void instNum(int num) { _instNum = num; }
66
67 int instNum() { return _instNum; }
68
69 void ipdInstNum(int num) { _ipdInstNum = num; }
70
71 int ipdInstNum() const { return _ipdInstNum; }
72
73 virtual void execute(GPUDynInstPtr gpuDynInst) = 0;
74 virtual void generateDisassembly() = 0;
75 virtual const std::string &disassemble() = 0;
76 virtual int getNumOperands() = 0;
77 virtual bool isCondRegister(int operandIndex) = 0;
78 virtual bool isScalarRegister(int operandIndex) = 0;
79 virtual bool isVectorRegister(int operandIndex) = 0;
80 virtual bool isSrcOperand(int operandIndex) = 0;
81 virtual bool isDstOperand(int operandIndex) = 0;
82 virtual int getOperandSize(int operandIndex) = 0;
83 virtual int getRegisterIndex(int operandIndex) = 0;
84 virtual int numDstRegOperands() = 0;
85 virtual int numSrcRegOperands() = 0;
86
1/*
2 * Copyright (c) 2015 Advanced Micro Devices, Inc.
3 * All rights reserved.
4 *
5 * For use for simulation and test purposes only
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are met:
9 *
10 * 1. Redistributions of source code must retain the above copyright notice,
11 * this list of conditions and the following disclaimer.
12 *
13 * 2. Redistributions in binary form must reproduce the above copyright notice,
14 * this list of conditions and the following disclaimer in the documentation
15 * and/or other materials provided with the distribution.
16 *
17 * 3. Neither the name of the copyright holder nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE.
32 *
33 * Author: Anthony Gutierrez
34 */
35
36#ifndef __GPU_STATIC_INST_HH__
37#define __GPU_STATIC_INST_HH__
38
39/*
40 * @file gpu_static_inst.hh
41 *
42 * Defines the base class representing static instructions for the GPU. The
43 * instructions are "static" because they contain no dynamic instruction
44 * information. GPUStaticInst corresponds to the StaticInst class for the CPU
45 * models.
46 */
47
48#include <cstdint>
49#include <string>
50
51#include "enums/OpType.hh"
52#include "enums/StorageClassType.hh"
53#include "gpu-compute/gpu_dyn_inst.hh"
54#include "gpu-compute/misc.hh"
55
56class BaseOperand;
57class BaseRegOperand;
58class Wavefront;
59
60class GPUStaticInst
61{
62 public:
63 GPUStaticInst(const std::string &opcode);
64
65 void instNum(int num) { _instNum = num; }
66
67 int instNum() { return _instNum; }
68
69 void ipdInstNum(int num) { _ipdInstNum = num; }
70
71 int ipdInstNum() const { return _ipdInstNum; }
72
73 virtual void execute(GPUDynInstPtr gpuDynInst) = 0;
74 virtual void generateDisassembly() = 0;
75 virtual const std::string &disassemble() = 0;
76 virtual int getNumOperands() = 0;
77 virtual bool isCondRegister(int operandIndex) = 0;
78 virtual bool isScalarRegister(int operandIndex) = 0;
79 virtual bool isVectorRegister(int operandIndex) = 0;
80 virtual bool isSrcOperand(int operandIndex) = 0;
81 virtual bool isDstOperand(int operandIndex) = 0;
82 virtual int getOperandSize(int operandIndex) = 0;
83 virtual int getRegisterIndex(int operandIndex) = 0;
84 virtual int numDstRegOperands() = 0;
85 virtual int numSrcRegOperands() = 0;
86
87 virtual bool isValid() const = 0;
88
87 /*
88 * Most instructions (including all HSAIL instructions)
89 * are vector ops, so _scalarOp will be false by default.
90 * Derived instruction objects that are scalar ops must
91 * set _scalarOp to true in their constructors.
92 */
93 bool scalarOp() const { return _scalarOp; }
94
95 virtual bool isLocalMem() const
96 {
97 fatal("calling isLocalMem() on non-memory instruction.\n");
98
99 return false;
100 }
101
102 bool isArgLoad() { return false; }
103 virtual uint32_t instSize() = 0;
104
105 // only used for memory instructions
106 virtual void
107 initiateAcc(GPUDynInstPtr gpuDynInst)
108 {
109 fatal("calling initiateAcc() on a non-memory instruction.\n");
110 }
111
89 /*
90 * Most instructions (including all HSAIL instructions)
91 * are vector ops, so _scalarOp will be false by default.
92 * Derived instruction objects that are scalar ops must
93 * set _scalarOp to true in their constructors.
94 */
95 bool scalarOp() const { return _scalarOp; }
96
97 virtual bool isLocalMem() const
98 {
99 fatal("calling isLocalMem() on non-memory instruction.\n");
100
101 return false;
102 }
103
104 bool isArgLoad() { return false; }
105 virtual uint32_t instSize() = 0;
106
107 // only used for memory instructions
108 virtual void
109 initiateAcc(GPUDynInstPtr gpuDynInst)
110 {
111 fatal("calling initiateAcc() on a non-memory instruction.\n");
112 }
113
114 // only used for memory instructions
115 virtual void
116 completeAcc(GPUDynInstPtr gpuDynInst)
117 {
118 fatal("calling completeAcc() on a non-memory instruction.\n");
119 }
120
112 virtual uint32_t getTargetPc() { return 0; }
113
114 /**
115 * Query whether the instruction is an unconditional jump i.e., the jump
116 * is always executed because there is no condition to be evaluated.
117 *
118 * If the instruction is not of branch type, the result is always false.
119 *
120 * @return True if the instruction is an unconditional jump.
121 */
122 virtual bool unconditionalJumpInstruction() { return false; }
123
124 static uint64_t dynamic_id_count;
125
126 Enums::OpType o_type;
127 // For flat memory accesses
128 Enums::StorageClassType executed_as;
129
130 protected:
131 virtual void
132 execLdAcq(GPUDynInstPtr gpuDynInst)
133 {
134 fatal("calling execLdAcq() on a non-load instruction.\n");
135 }
136
137 virtual void
138 execSt(GPUDynInstPtr gpuDynInst)
139 {
140 fatal("calling execLdAcq() on a non-load instruction.\n");
141 }
142
143 virtual void
144 execAtomic(GPUDynInstPtr gpuDynInst)
145 {
146 fatal("calling execAtomic() on a non-atomic instruction.\n");
147 }
148
149 virtual void
150 execAtomicAcq(GPUDynInstPtr gpuDynInst)
151 {
152 fatal("calling execAtomicAcq() on a non-atomic instruction.\n");
153 }
154
155 const std::string opcode;
156 std::string disassembly;
157 int _instNum;
158 /**
159 * Identifier of the immediate post-dominator instruction.
160 */
161 int _ipdInstNum;
162
163 bool _scalarOp;
164};
165
166#endif // __GPU_STATIC_INST_HH__
121 virtual uint32_t getTargetPc() { return 0; }
122
123 /**
124 * Query whether the instruction is an unconditional jump i.e., the jump
125 * is always executed because there is no condition to be evaluated.
126 *
127 * If the instruction is not of branch type, the result is always false.
128 *
129 * @return True if the instruction is an unconditional jump.
130 */
131 virtual bool unconditionalJumpInstruction() { return false; }
132
133 static uint64_t dynamic_id_count;
134
135 Enums::OpType o_type;
136 // For flat memory accesses
137 Enums::StorageClassType executed_as;
138
139 protected:
140 virtual void
141 execLdAcq(GPUDynInstPtr gpuDynInst)
142 {
143 fatal("calling execLdAcq() on a non-load instruction.\n");
144 }
145
146 virtual void
147 execSt(GPUDynInstPtr gpuDynInst)
148 {
149 fatal("calling execLdAcq() on a non-load instruction.\n");
150 }
151
152 virtual void
153 execAtomic(GPUDynInstPtr gpuDynInst)
154 {
155 fatal("calling execAtomic() on a non-atomic instruction.\n");
156 }
157
158 virtual void
159 execAtomicAcq(GPUDynInstPtr gpuDynInst)
160 {
161 fatal("calling execAtomicAcq() on a non-atomic instruction.\n");
162 }
163
164 const std::string opcode;
165 std::string disassembly;
166 int _instNum;
167 /**
168 * Identifier of the immediate post-dominator instruction.
169 */
170 int _ipdInstNum;
171
172 bool _scalarOp;
173};
174
175#endif // __GPU_STATIC_INST_HH__