gem5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
pred_inst.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010, 2012-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  * Copyright (c) 2007-2008 The Florida State University
15  * All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions are
19  * met: redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer;
21  * redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in the
23  * documentation and/or other materials provided with the distribution;
24  * neither the name of the copyright holders nor the names of its
25  * contributors may be used to endorse or promote products derived from
26  * this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  *
40  * Authors: Stephen Hines
41  */
42 #ifndef __ARCH_ARM_INSTS_PREDINST_HH__
43 #define __ARCH_ARM_INSTS_PREDINST_HH__
44 
46 #include "base/trace.hh"
47 
48 namespace ArmISA
49 {
50 static inline uint32_t
51 rotate_imm(uint32_t immValue, uint32_t rotateValue)
52 {
53  rotateValue &= 31;
54  return rotateValue == 0 ? immValue :
55  (immValue >> rotateValue) | (immValue << (32 - rotateValue));
56 }
57 
58 static inline uint32_t
59 modified_imm(uint8_t ctrlImm, uint8_t dataImm)
60 {
61  uint32_t bigData = dataImm;
62  uint32_t bigCtrl = ctrlImm;
63  if (bigCtrl < 4) {
64  switch (bigCtrl) {
65  case 0:
66  return bigData;
67  case 1:
68  return bigData | (bigData << 16);
69  case 2:
70  return (bigData << 8) | (bigData << 24);
71  case 3:
72  return (bigData << 0) | (bigData << 8) |
73  (bigData << 16) | (bigData << 24);
74  }
75  }
76  bigCtrl = (bigCtrl << 1) | ((bigData >> 7) & 0x1);
77  bigData |= (1 << 7);
78  return bigData << (32 - bigCtrl);
79 }
80 
81 static inline uint64_t
82 simd_modified_imm(bool op, uint8_t cmode, uint8_t data, bool &immValid,
83  bool isAarch64 = false)
84 {
85  uint64_t bigData = data;
86  immValid = true;
87  switch (cmode) {
88  case 0x0:
89  case 0x1:
90  bigData = (bigData << 0) | (bigData << 32);
91  break;
92  case 0x2:
93  case 0x3:
94  bigData = (bigData << 8) | (bigData << 40);
95  break;
96  case 0x4:
97  case 0x5:
98  bigData = (bigData << 16) | (bigData << 48);
99  break;
100  case 0x6:
101  case 0x7:
102  bigData = (bigData << 24) | (bigData << 56);
103  break;
104  case 0x8:
105  case 0x9:
106  bigData = (bigData << 0) | (bigData << 16) |
107  (bigData << 32) | (bigData << 48);
108  break;
109  case 0xa:
110  case 0xb:
111  bigData = (bigData << 8) | (bigData << 24) |
112  (bigData << 40) | (bigData << 56);
113  break;
114  case 0xc:
115  bigData = (0xffULL << 0) | (bigData << 8) |
116  (0xffULL << 32) | (bigData << 40);
117  break;
118  case 0xd:
119  bigData = (0xffffULL << 0) | (bigData << 16) |
120  (0xffffULL << 32) | (bigData << 48);
121  break;
122  case 0xe:
123  if (op) {
124  bigData = 0;
125  for (int i = 7; i >= 0; i--) {
126  if (bits(data, i)) {
127  bigData |= (ULL(0xFF) << (i * 8));
128  }
129  }
130  } else {
131  bigData = (bigData << 0) | (bigData << 8) |
132  (bigData << 16) | (bigData << 24) |
133  (bigData << 32) | (bigData << 40) |
134  (bigData << 48) | (bigData << 56);
135  }
136  break;
137  case 0xf:
138  {
139  uint64_t bVal = 0;
140  if (!op) {
141  bVal = bits(bigData, 6) ? (0x1F) : (0x20);
142  bigData = (bits(bigData, 5, 0) << 19) |
143  (bVal << 25) | (bits(bigData, 7) << 31);
144  bigData |= (bigData << 32);
145  break;
146  } else if (isAarch64) {
147  bVal = bits(bigData, 6) ? (0x0FF) : (0x100);
148  bigData = (bits(bigData, 5, 0) << 48) |
149  (bVal << 54) | (bits(bigData, 7) << 63);
150  break;
151  }
152  }
153  // Fall through, immediate encoding is invalid.
154  default:
155  immValid = false;
156  break;
157  }
158  return bigData;
159 }
160 
161 static inline uint64_t
162 vfp_modified_imm(uint8_t data, bool wide)
163 {
164  uint64_t bigData = data;
165  uint64_t repData;
166  if (wide) {
167  repData = bits(data, 6) ? 0xFF : 0;
168  bigData = (bits(bigData, 5, 0) << 48) |
169  (repData << 54) | (bits(~bigData, 6) << 62) |
170  (bits(bigData, 7) << 63);
171  } else {
172  repData = bits(data, 6) ? 0x1F : 0;
173  bigData = (bits(bigData, 5, 0) << 19) |
174  (repData << 25) | (bits(~bigData, 6) << 30) |
175  (bits(bigData, 7) << 31);
176  }
177  return bigData;
178 }
179 
180 
184 class PredOp : public ArmStaticInst
185 {
186  protected:
187 
189 
191  PredOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass) :
192  ArmStaticInst(mnem, _machInst, __opClass)
193  {
194  if (machInst.aarch64)
195  condCode = COND_UC;
196  else if (machInst.itstateMask)
197  condCode = (ConditionCode)(uint8_t)machInst.itstateCond;
198  else
199  condCode = (ConditionCode)(unsigned)machInst.condCode;
200  }
201 };
202 
206 class PredImmOp : public PredOp
207 {
208  protected:
209 
210  uint32_t imm;
211  uint32_t rotated_imm;
212  uint32_t rotated_carry;
213  uint32_t rotate;
214 
216  PredImmOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass) :
217  PredOp(mnem, _machInst, __opClass),
219  rotate(machInst.rotate << 1)
220  {
222  if (rotate != 0)
224  }
225 
226  std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
227 };
228 
232 class PredIntOp : public PredOp
233 {
234  protected:
235 
236  uint32_t shift_size;
237  uint32_t shift;
238 
240  PredIntOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass) :
241  PredOp(mnem, _machInst, __opClass),
243  {
244  }
245 
246  std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
247 };
248 
249 class DataImmOp : public PredOp
250 {
251  protected:
253  uint32_t imm;
254  // Whether the carry flag should be modified if that's an option for
255  // this instruction.
256  bool rotC;
257 
258  DataImmOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass,
259  IntRegIndex _dest, IntRegIndex _op1, uint32_t _imm, bool _rotC) :
260  PredOp(mnem, _machInst, __opClass),
261  dest(_dest), op1(_op1), imm(_imm), rotC(_rotC)
262  {}
263 
264  std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
265 };
266 
267 class DataRegOp : public PredOp
268 {
269  protected:
271  int32_t shiftAmt;
273 
274  DataRegOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass,
275  IntRegIndex _dest, IntRegIndex _op1, IntRegIndex _op2,
276  int32_t _shiftAmt, ArmShiftType _shiftType) :
277  PredOp(mnem, _machInst, __opClass),
278  dest(_dest), op1(_op1), op2(_op2),
279  shiftAmt(_shiftAmt), shiftType(_shiftType)
280  {}
281 
282  std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
283 };
284 
285 class DataRegRegOp : public PredOp
286 {
287  protected:
290 
291  DataRegRegOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass,
292  IntRegIndex _dest, IntRegIndex _op1, IntRegIndex _op2,
293  IntRegIndex _shift, ArmShiftType _shiftType) :
294  PredOp(mnem, _machInst, __opClass),
295  dest(_dest), op1(_op1), op2(_op2), shift(_shift),
296  shiftType(_shiftType)
297  {}
298 
299  std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
300 };
301 
305 class PredMacroOp : public PredOp
306 {
307  protected:
308 
309  uint32_t numMicroops;
311 
313  PredMacroOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass) :
314  PredOp(mnem, _machInst, __opClass),
315  numMicroops(0), microOps(nullptr)
316  {
317  // We rely on the subclasses of this object to handle the
318  // initialization of the micro-operations, since they are
319  // all of variable length
320  flags[IsMacroop] = true;
321  }
322 
324  {
325  if (numMicroops)
326  delete [] microOps;
327  }
328 
330  fetchMicroop(MicroPC microPC) const
331  {
332  assert(microPC < numMicroops);
333  return microOps[microPC];
334  }
335 
336  std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
337 };
338 
342 class PredMicroop : public PredOp
343 {
345  PredMicroop(const char *mnem, ExtMachInst _machInst, OpClass __opClass) :
346  PredOp(mnem, _machInst, __opClass)
347  {
348  flags[IsMicroop] = true;
349  }
350 
351  void
352  advancePC(PCState &pcState) const
353  {
354  if (flags[IsLastMicroop])
355  pcState.uEnd();
356  else
357  pcState.uAdvance();
358  }
359 };
360 }
361 
362 #endif //__ARCH_ARM_INSTS_PREDINST_HH__
uint32_t rotated_imm
Definition: pred_inst.hh:211
uint32_t rotated_carry
Definition: pred_inst.hh:212
IntRegIndex
Definition: intregs.hh:53
Base class for predicated micro-operations.
Definition: pred_inst.hh:342
Bitfield< 7 > i
Definition: miscregs.hh:1378
Bitfield< 11, 7 > shiftSize
Definition: types.hh:121
static uint32_t rotate_imm(uint32_t immValue, uint32_t rotateValue)
Definition: pred_inst.hh:51
static uint64_t vfp_modified_imm(uint8_t data, bool wide)
Definition: pred_inst.hh:162
Base class for predicated integer operations.
Definition: pred_inst.hh:184
static uint64_t simd_modified_imm(bool op, uint8_t cmode, uint8_t data, bool &immValid, bool isAarch64=false)
Definition: pred_inst.hh:82
static uint32_t modified_imm(uint8_t ctrlImm, uint8_t dataImm)
Definition: pred_inst.hh:59
PredMicroop(const char *mnem, ExtMachInst _machInst, OpClass __opClass)
Constructor.
Definition: pred_inst.hh:345
const char data[]
Definition: circlebuf.cc:43
ConditionCode
Definition: ccregs.hh:64
Base class for predicated immediate operations.
Definition: pred_inst.hh:206
Base class for predicated integer operations.
Definition: pred_inst.hh:232
const ExtMachInst machInst
The binary machine instruction.
Definition: static_inst.hh:218
std::bitset< Num_Flags > flags
Flag values for this instruction.
Definition: static_inst.hh:84
PredImmOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass)
Constructor.
Definition: pred_inst.hh:216
ArmShiftType shiftType
Definition: pred_inst.hh:289
ConditionCode condCode
Definition: pred_inst.hh:188
IntRegIndex dest
Definition: pred_inst.hh:288
IntRegIndex op2
Definition: pred_inst.hh:270
uint16_t MicroPC
Definition: types.hh:144
uint32_t numMicroops
Definition: pred_inst.hh:309
ArmShiftType shiftType
Definition: pred_inst.hh:272
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
PredOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass)
Constructor.
Definition: pred_inst.hh:191
#define ULL(N)
uint64_t constant
Definition: types.hh:50
std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const
Internal function to generate disassembly string.
Definition: pred_inst.cc:65
DataRegOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _op1, IntRegIndex _op2, int32_t _shiftAmt, ArmShiftType _shiftType)
Definition: pred_inst.hh:274
uint32_t shift_size
Definition: pred_inst.hh:236
Base class for predicated macro-operations.
Definition: pred_inst.hh:305
PredMacroOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass)
Constructor.
Definition: pred_inst.hh:313
std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const
Internal function to generate disassembly string.
Definition: pred_inst.cc:97
IntRegIndex op1
Definition: pred_inst.hh:270
GenericISA::SimplePCState< MachInst > PCState
Definition: types.hh:43
std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const
Internal function to generate disassembly string.
Definition: pred_inst.cc:79
StaticInstPtr fetchMicroop(MicroPC microPC) const
Return the microop that goes with a particular micropc.
Definition: pred_inst.hh:330
PredIntOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass)
Constructor.
Definition: pred_inst.hh:240
IntRegIndex op1
Definition: pred_inst.hh:252
DataRegRegOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _op1, IntRegIndex _op2, IntRegIndex _shift, ArmShiftType _shiftType)
Definition: pred_inst.hh:291
TheISA::ExtMachInst ExtMachInst
Binary extended machine instruction type.
Definition: static_inst.hh:72
void advancePC(PCState &pcState) const
Definition: pred_inst.hh:352
IntReg pc
Definition: remote_gdb.hh:91
std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const
Internal function to generate disassembly string.
Definition: pred_inst.cc:48
IntRegIndex shift
Definition: pred_inst.hh:288
IntRegIndex dest
Definition: pred_inst.hh:270
StaticInstPtr * microOps
Definition: pred_inst.hh:310
Bitfield< 4 > op
Definition: types.hh:80
T bits(T val, int first, int last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it...
Definition: bitfield.hh:67
DataImmOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _op1, uint32_t _imm, bool _rotC)
Definition: pred_inst.hh:258
std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const
Internal function to generate disassembly string.
Definition: pred_inst.cc:106
ArmShiftType
Definition: types.hh:508
std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const
Internal function to generate disassembly string.
Definition: pred_inst.cc:88
IntRegIndex dest
Definition: pred_inst.hh:252

Generated on Fri Jun 9 2017 13:03:38 for gem5 by doxygen 1.8.6