gem5  v19.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
data64.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011-2013 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  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  *
37  * Authors: Gabe Black
38  */
39 #ifndef __ARCH_ARM_INSTS_DATA64_HH__
40 #define __ARCH_ARM_INSTS_DATA64_HH__
41 
43 #include "base/trace.hh"
44 
45 namespace ArmISA
46 {
47 
48 class DataXImmOp : public ArmStaticInst
49 {
50  protected:
52  uint64_t imm;
53 
54  DataXImmOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass,
55  IntRegIndex _dest, IntRegIndex _op1, uint64_t _imm) :
56  ArmStaticInst(mnem, _machInst, __opClass),
57  dest(_dest), op1(_op1), imm(_imm)
58  {}
59 
60  std::string generateDisassembly(
61  Addr pc, const SymbolTable *symtab) const override;
62 };
63 
65 {
66  protected:
68  uint64_t imm;
69 
70  DataXImmOnlyOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass,
71  IntRegIndex _dest, uint64_t _imm) :
72  ArmStaticInst(mnem, _machInst, __opClass),
73  dest(_dest), imm(_imm)
74  {}
75 
76  std::string generateDisassembly(
77  Addr pc, const SymbolTable *symtab) const override;
78 };
79 
80 class DataXSRegOp : public ArmStaticInst
81 {
82  protected:
84  int32_t shiftAmt;
86 
87  DataXSRegOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass,
88  IntRegIndex _dest, IntRegIndex _op1, IntRegIndex _op2,
89  int32_t _shiftAmt, ArmShiftType _shiftType) :
90  ArmStaticInst(mnem, _machInst, __opClass),
91  dest(_dest), op1(_op1), op2(_op2),
92  shiftAmt(_shiftAmt), shiftType(_shiftType)
93  {}
94 
95  std::string generateDisassembly(
96  Addr pc, const SymbolTable *symtab) const override;
97 };
98 
99 class DataXERegOp : public ArmStaticInst
100 {
101  protected:
104  int32_t shiftAmt;
105 
106  DataXERegOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass,
107  IntRegIndex _dest, IntRegIndex _op1, IntRegIndex _op2,
108  ArmExtendType _extendType, int32_t _shiftAmt) :
109  ArmStaticInst(mnem, _machInst, __opClass),
110  dest(_dest), op1(_op1), op2(_op2),
111  extendType(_extendType), shiftAmt(_shiftAmt)
112  {}
113 
114  std::string generateDisassembly(
115  Addr pc, const SymbolTable *symtab) const override;
116 };
117 
119 {
120  protected:
122 
123  DataX1RegOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass,
124  IntRegIndex _dest, IntRegIndex _op1) :
125  ArmStaticInst(mnem, _machInst, __opClass), dest(_dest), op1(_op1)
126  {}
127 
128  std::string generateDisassembly(
129  Addr pc, const SymbolTable *symtab) const override;
130 };
131 
133 {
134  protected:
136  uint64_t imm;
137 
138  DataX1RegImmOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass,
139  IntRegIndex _dest, IntRegIndex _op1, uint64_t _imm) :
140  ArmStaticInst(mnem, _machInst, __opClass), dest(_dest), op1(_op1),
141  imm(_imm)
142  {}
143 
144  std::string generateDisassembly(
145  Addr pc, const SymbolTable *symtab) const override;
146 };
147 
149 {
150  protected:
152  uint64_t imm1, imm2;
153 
154  DataX1Reg2ImmOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass,
155  IntRegIndex _dest, IntRegIndex _op1, uint64_t _imm1,
156  uint64_t _imm2) :
157  ArmStaticInst(mnem, _machInst, __opClass), dest(_dest), op1(_op1),
158  imm1(_imm1), imm2(_imm2)
159  {}
160 
161  std::string generateDisassembly(
162  Addr pc, const SymbolTable *symtab) const override;
163 };
164 
166 {
167  protected:
169 
170  DataX2RegOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass,
171  IntRegIndex _dest, IntRegIndex _op1, IntRegIndex _op2) :
172  ArmStaticInst(mnem, _machInst, __opClass),
173  dest(_dest), op1(_op1), op2(_op2)
174  {}
175 
176  std::string generateDisassembly(
177  Addr pc, const SymbolTable *symtab) const override;
178 };
179 
181 {
182  protected:
184  uint64_t imm;
185 
186  DataX2RegImmOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass,
187  IntRegIndex _dest, IntRegIndex _op1, IntRegIndex _op2,
188  uint64_t _imm) :
189  ArmStaticInst(mnem, _machInst, __opClass),
190  dest(_dest), op1(_op1), op2(_op2), imm(_imm)
191  {}
192 
193  std::string generateDisassembly(
194  Addr pc, const SymbolTable *symtab) const override;
195 };
196 
198 {
199  protected:
201 
202  DataX3RegOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass,
203  IntRegIndex _dest, IntRegIndex _op1, IntRegIndex _op2,
204  IntRegIndex _op3) :
205  ArmStaticInst(mnem, _machInst, __opClass),
206  dest(_dest), op1(_op1), op2(_op2), op3(_op3)
207  {}
208 
209  std::string generateDisassembly(
210  Addr pc, const SymbolTable *symtab) const override;
211 };
212 
214 {
215  protected:
217  uint64_t imm;
219  uint8_t defCc;
220 
221  DataXCondCompImmOp(const char *mnem, ExtMachInst _machInst,
222  OpClass __opClass, IntRegIndex _op1, uint64_t _imm,
223  ConditionCode _condCode, uint8_t _defCc) :
224  ArmStaticInst(mnem, _machInst, __opClass),
225  op1(_op1), imm(_imm), condCode(_condCode), defCc(_defCc)
226  {}
227 
228  std::string generateDisassembly(
229  Addr pc, const SymbolTable *symtab) const override;
230 };
231 
233 {
234  protected:
237  uint8_t defCc;
238 
239  DataXCondCompRegOp(const char *mnem, ExtMachInst _machInst,
240  OpClass __opClass, IntRegIndex _op1, IntRegIndex _op2,
241  ConditionCode _condCode, uint8_t _defCc) :
242  ArmStaticInst(mnem, _machInst, __opClass),
243  op1(_op1), op2(_op2), condCode(_condCode), defCc(_defCc)
244  {}
245 
246  std::string generateDisassembly(
247  Addr pc, const SymbolTable *symtab) const override;
248 };
249 
251 {
252  protected:
255 
256  DataXCondSelOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass,
257  IntRegIndex _dest, IntRegIndex _op1, IntRegIndex _op2,
258  ConditionCode _condCode) :
259  ArmStaticInst(mnem, _machInst, __opClass),
260  dest(_dest), op1(_op1), op2(_op2), condCode(_condCode)
261  {}
262 
263  std::string generateDisassembly(
264  Addr pc, const SymbolTable *symtab) const override;
265 };
266 
267 }
268 
269 #endif //__ARCH_ARM_INSTS_PREDINST_HH__
ConditionCode condCode
Definition: data64.hh:254
IntRegIndex dest
Definition: data64.hh:67
IntRegIndex
Definition: intregs.hh:53
int32_t shiftAmt
Definition: data64.hh:84
DataX1RegImmOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _op1, uint64_t _imm)
Definition: data64.hh:138
DataXCondSelOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _op1, IntRegIndex _op2, ConditionCode _condCode)
Definition: data64.hh:256
ArmShiftType shiftType
Definition: data64.hh:85
DataX2RegOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _op1, IntRegIndex _op2)
Definition: data64.hh:170
IntRegIndex op2
Definition: data64.hh:253
Definition: ccregs.hh:42
std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition: data64.cc:46
IntRegIndex op2
Definition: data64.hh:183
int32_t shiftAmt
Definition: data64.hh:104
ConditionCode
Definition: ccregs.hh:64
DataXERegOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _op1, IntRegIndex _op2, ArmExtendType _extendType, int32_t _shiftAmt)
Definition: data64.hh:106
Bitfield< 4 > pc
DataXCondCompImmOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _op1, uint64_t _imm, ConditionCode _condCode, uint8_t _defCc)
Definition: data64.hh:221
IntRegIndex op1
Definition: data64.hh:51
DataXSRegOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _op1, IntRegIndex _op2, int32_t _shiftAmt, ArmShiftType _shiftType)
Definition: data64.hh:87
IntRegIndex op2
Definition: data64.hh:168
ConditionCode condCode
Definition: data64.hh:236
IntRegIndex op3
Definition: data64.hh:200
DataX1RegOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _op1)
Definition: data64.hh:123
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
ConditionCode condCode
Definition: data64.hh:218
DataX3RegOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _op1, IntRegIndex _op2, IntRegIndex _op3)
Definition: data64.hh:202
DataX1Reg2ImmOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _op1, uint64_t _imm1, uint64_t _imm2)
Definition: data64.hh:154
DataX2RegImmOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _op1, IntRegIndex _op2, uint64_t _imm)
Definition: data64.hh:186
IntRegIndex op2
Definition: data64.hh:102
IntRegIndex dest
Definition: data64.hh:51
IntRegIndex op1
Definition: data64.hh:121
uint64_t imm
Definition: data64.hh:52
ArmExtendType
Definition: types.hh:539
ArmExtendType extendType
Definition: data64.hh:103
TheISA::ExtMachInst ExtMachInst
Binary extended machine instruction type.
Definition: static_inst.hh:87
DataXImmOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _op1, uint64_t _imm)
Definition: data64.hh:54
IntRegIndex op2
Definition: data64.hh:83
DataXImmOnlyOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, uint64_t _imm)
Definition: data64.hh:70
IntRegIndex op1
Definition: data64.hh:135
DataXCondCompRegOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _op1, IntRegIndex _op2, ConditionCode _condCode, uint8_t _defCc)
Definition: data64.hh:239
ArmShiftType
Definition: types.hh:531

Generated on Fri Feb 28 2020 16:26:57 for gem5 by doxygen 1.8.13