blob: e4d7393bebdf6a0ce6cff926d9cd25864e722384 [file] [log] [blame]
Johnny Chenb68a3ee2010-04-02 22:27:38 +00001//===- ARMDisassembler.cpp - Disassembler for ARM/Thumb ISA -----*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
Johnny Chenb68a3ee2010-04-02 22:27:38 +00009
10#define DEBUG_TYPE "arm-disassembler"
11
12#include "ARMDisassembler.h"
Owen Anderson8d7d2e12011-08-09 20:55:18 +000013#include "ARM.h"
14#include "ARMRegisterInfo.h"
15#include "MCTargetDesc/ARMAddressingModes.h"
16#include "MCTargetDesc/ARMBaseInfo.h"
Sean Callanan9899f702010-04-13 21:21:57 +000017#include "llvm/MC/EDInstInfo.h"
Johnny Chenb68a3ee2010-04-02 22:27:38 +000018#include "llvm/MC/MCInst.h"
Owen Anderson8d7d2e12011-08-09 20:55:18 +000019#include "llvm/MC/MCExpr.h"
20#include "llvm/MC/MCContext.h"
Johnny Chenb68a3ee2010-04-02 22:27:38 +000021#include "llvm/Target/TargetRegistry.h"
22#include "llvm/Support/Debug.h"
23#include "llvm/Support/MemoryObject.h"
24#include "llvm/Support/ErrorHandling.h"
25#include "llvm/Support/raw_ostream.h"
26
Owen Anderson8d7d2e12011-08-09 20:55:18 +000027// Forward declare these because the autogenerated code will reference them.
28// Definitions are further down.
29static bool DecodeGPRRegisterClass(llvm::MCInst &Inst, unsigned RegNo,
30 uint64_t Address, const void *Decoder);
Owen Anderson51c98052011-08-09 22:48:45 +000031static bool DecodeGPRnopcRegisterClass(llvm::MCInst &Inst, unsigned RegNo,
32 uint64_t Address, const void *Decoder);
Owen Anderson8d7d2e12011-08-09 20:55:18 +000033static bool DecodetGPRRegisterClass(llvm::MCInst &Inst, unsigned RegNo,
34 uint64_t Address, const void *Decoder);
35static bool DecodetcGPRRegisterClass(llvm::MCInst &Inst, unsigned RegNo,
36 uint64_t Address, const void *Decoder);
37static bool DecoderGPRRegisterClass(llvm::MCInst &Inst, unsigned RegNo,
38 uint64_t Address, const void *Decoder);
39static bool DecodeSPRRegisterClass(llvm::MCInst &Inst, unsigned RegNo,
40 uint64_t Address, const void *Decoder);
41static bool DecodeDPRRegisterClass(llvm::MCInst &Inst, unsigned RegNo,
42 uint64_t Address, const void *Decoder);
43static bool DecodeDPR_8RegisterClass(llvm::MCInst &Inst, unsigned RegNo,
44 uint64_t Address, const void *Decoder);
45static bool DecodeDPR_VFP2RegisterClass(llvm::MCInst &Inst, unsigned RegNo,
46 uint64_t Address, const void *Decoder);
47static bool DecodeQPRRegisterClass(llvm::MCInst &Inst, unsigned RegNo,
48 uint64_t Address, const void *Decoder);
Johnny Chen270159f2010-08-12 01:40:54 +000049
Owen Anderson8d7d2e12011-08-09 20:55:18 +000050static bool DecodePredicateOperand(llvm::MCInst &Inst, unsigned Val,
51 uint64_t Address, const void *Decoder);
52static bool DecodeCCOutOperand(llvm::MCInst &Inst, unsigned Val,
53 uint64_t Address, const void *Decoder);
54static bool DecodeSOImmOperand(llvm::MCInst &Inst, unsigned Val,
55 uint64_t Address, const void *Decoder);
56static bool DecodeBLTargetOperand(llvm::MCInst &Inst, unsigned Val,
57 uint64_t Address, const void *Decoder);
58static bool DecodeRegListOperand(llvm::MCInst &Inst, unsigned Val,
59 uint64_t Address, const void *Decoder);
60static bool DecodeSPRRegListOperand(llvm::MCInst &Inst, unsigned Val,
61 uint64_t Address, const void *Decoder);
62static bool DecodeDPRRegListOperand(llvm::MCInst &Inst, unsigned Val,
63 uint64_t Address, const void *Decoder);
Johnny Chenb68a3ee2010-04-02 22:27:38 +000064
Owen Anderson8d7d2e12011-08-09 20:55:18 +000065static bool DecodeBitfieldMaskOperand(llvm::MCInst &Inst, unsigned Insn,
66 uint64_t Address, const void *Decoder);
67static bool DecodeCopMemInstruction(llvm::MCInst &Inst, unsigned Insn,
68 uint64_t Address, const void *Decoder);
69static bool DecodeAddrMode2IdxInstruction(llvm::MCInst &Inst, unsigned Insn,
70 uint64_t Address, const void *Decoder);
71static bool DecodeSORegMemOperand(llvm::MCInst &Inst, unsigned Insn,
72 uint64_t Address, const void *Decoder);
73static bool DecodeAddrMode3Instruction(llvm::MCInst &Inst, unsigned Insn,
74 uint64_t Address, const void *Decoder);
75static bool DecodeSORegImmOperand(llvm::MCInst &Inst, unsigned Insn,
76 uint64_t Address, const void *Decoder);
77static bool DecodeSORegRegOperand(llvm::MCInst &Inst, unsigned Insn,
78 uint64_t Address, const void *Decoder);
79
80static bool DecodeMemMultipleWritebackInstruction(llvm::MCInst & Inst,
81 unsigned Insn,
82 uint64_t Adddress,
83 const void *Decoder);
84static bool DecodeSMLAInstruction(llvm::MCInst &Inst, unsigned Insn,
85 uint64_t Address, const void *Decoder);
Owen Anderson35008c22011-08-09 23:05:39 +000086static bool DecodeCPSInstruction(llvm::MCInst &Inst, unsigned Insn,
87 uint64_t Address, const void *Decoder);
Owen Anderson8d7d2e12011-08-09 20:55:18 +000088static bool DecodeAddrModeImm12Operand(llvm::MCInst &Inst, unsigned Val,
89 uint64_t Address, const void *Decoder);
90static bool DecodeAddrMode5Operand(llvm::MCInst &Inst, unsigned Val,
91 uint64_t Address, const void *Decoder);
92static bool DecodeAddrMode7Operand(llvm::MCInst &Inst, unsigned Val,
93 uint64_t Address, const void *Decoder);
94static bool DecodeBranchImmInstruction(llvm::MCInst &Inst, unsigned Insn,
95 uint64_t Address, const void *Decoder);
96static bool DecodeVCVTImmOperand(llvm::MCInst &Inst, unsigned Val,
97 uint64_t Address, const void *Decoder);
98static bool DecodeAddrMode6Operand(llvm::MCInst &Inst, unsigned Val,
99 uint64_t Address, const void *Decoder);
100static bool DecodeVLDInstruction(llvm::MCInst &Inst, unsigned Val,
101 uint64_t Address, const void *Decoder);
102static bool DecodeVSTInstruction(llvm::MCInst &Inst, unsigned Val,
103 uint64_t Address, const void *Decoder);
104static bool DecodeVLD1DupInstruction(llvm::MCInst &Inst, unsigned Val,
105 uint64_t Address, const void *Decoder);
106static bool DecodeVLD2DupInstruction(llvm::MCInst &Inst, unsigned Val,
107 uint64_t Address, const void *Decoder);
108static bool DecodeVLD3DupInstruction(llvm::MCInst &Inst, unsigned Val,
109 uint64_t Address, const void *Decoder);
110static bool DecodeVLD4DupInstruction(llvm::MCInst &Inst, unsigned Val,
111 uint64_t Address, const void *Decoder);
112static bool DecodeNEONModImmInstruction(llvm::MCInst &Inst, unsigned Val,
113 uint64_t Address, const void *Decoder);
114static bool DecodeVSHLMaxInstruction(llvm::MCInst &Inst, unsigned Val,
115 uint64_t Address, const void *Decoder);
116static bool DecodeShiftRight8Imm(llvm::MCInst &Inst, unsigned Val,
117 uint64_t Address, const void *Decoder);
118static bool DecodeShiftRight16Imm(llvm::MCInst &Inst, unsigned Val,
119 uint64_t Address, const void *Decoder);
120static bool DecodeShiftRight32Imm(llvm::MCInst &Inst, unsigned Val,
121 uint64_t Address, const void *Decoder);
122static bool DecodeShiftRight64Imm(llvm::MCInst &Inst, unsigned Val,
123 uint64_t Address, const void *Decoder);
124static bool DecodeTBLInstruction(llvm::MCInst &Inst, unsigned Insn,
125 uint64_t Address, const void *Decoder);
126static bool DecodeVFPfpImm(llvm::MCInst &Inst, unsigned Val,
127 uint64_t Address, const void *Decoder);
128static bool DecodePostIdxReg(llvm::MCInst &Inst, unsigned Insn,
129 uint64_t Address, const void *Decoder);
130static bool DecodeCoprocessor(llvm::MCInst &Inst, unsigned Insn,
131 uint64_t Address, const void *Decoder);
132static bool DecodeAddrMode3Offset(llvm::MCInst &Inst, unsigned Insn,
133 uint64_t Address, const void *Decoder);
Owen Andersonc36481c2011-08-09 23:25:42 +0000134static bool DecodeMemBarrierOption(llvm::MCInst &Inst, unsigned Insn,
135 uint64_t Address, const void *Decoder);
Owen Anderson26d2f0a2011-08-11 20:21:46 +0000136static bool DecodeMSRMask(llvm::MCInst &Inst, unsigned Insn,
137 uint64_t Address, const void *Decoder);
Owen Andersoncbfc0442011-08-11 21:34:58 +0000138static bool DecodeDoubleRegExclusive(llvm::MCInst &Inst, unsigned Insn,
139 uint64_t Address, const void *Decoder);
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000140
141
142static bool DecodeThumbAddSpecialReg(llvm::MCInst &Inst, uint16_t Insn,
143 uint64_t Address, const void *Decoder);
144static bool DecodeThumbBROperand(llvm::MCInst &Inst, unsigned Val,
145 uint64_t Address, const void *Decoder);
146static bool DecodeT2BROperand(llvm::MCInst &Inst, unsigned Val,
147 uint64_t Address, const void *Decoder);
148static bool DecodeThumbCmpBROperand(llvm::MCInst &Inst, unsigned Val,
149 uint64_t Address, const void *Decoder);
150static bool DecodeThumbAddrModeRR(llvm::MCInst &Inst, unsigned Val,
151 uint64_t Address, const void *Decoder);
152static bool DecodeThumbAddrModeIS(llvm::MCInst &Inst, unsigned Val,
153 uint64_t Address, const void *Decoder);
154static bool DecodeThumbAddrModePC(llvm::MCInst &Inst, unsigned Val,
155 uint64_t Address, const void *Decoder);
156static bool DecodeThumbAddrModeSP(llvm::MCInst &Inst, unsigned Val,
157 uint64_t Address, const void *Decoder);
158static bool DecodeT2AddrModeSOReg(llvm::MCInst &Inst, unsigned Val,
159 uint64_t Address, const void *Decoder);
160static bool DecodeT2LoadShift(llvm::MCInst &Inst, unsigned Val,
161 uint64_t Address, const void *Decoder);
162static bool DecodeT2Imm8S4(llvm::MCInst &Inst, unsigned Val,
163 uint64_t Address, const void *Decoder);
164static bool DecodeT2AddrModeImm8s4(llvm::MCInst &Inst, unsigned Val,
165 uint64_t Address, const void *Decoder);
166static bool DecodeT2Imm8(llvm::MCInst &Inst, unsigned Val,
167 uint64_t Address, const void *Decoder);
168static bool DecodeT2AddrModeImm8(llvm::MCInst &Inst, unsigned Val,
169 uint64_t Address, const void *Decoder);
170static bool DecodeThumbAddSPImm(llvm::MCInst &Inst, uint16_t Val,
171 uint64_t Address, const void *Decoder);
172static bool DecodeThumbAddSPReg(llvm::MCInst &Inst, uint16_t Insn,
173 uint64_t Address, const void *Decoder);
174static bool DecodeThumbCPS(llvm::MCInst &Inst, uint16_t Insn,
175 uint64_t Address, const void *Decoder);
176static bool DecodeThumbBLXOffset(llvm::MCInst &Inst, unsigned Insn,
177 uint64_t Address, const void *Decoder);
178static bool DecodeT2AddrModeImm12(llvm::MCInst &Inst, unsigned Val,
179 uint64_t Address, const void *Decoder);
180static bool DecodeThumbSRImm(llvm::MCInst &Inst, unsigned Val,
181 uint64_t Address, const void *Decoder);
182static bool DecodeThumb2BCCInstruction(llvm::MCInst &Inst, unsigned Val,
183 uint64_t Address, const void *Decoder);
184static bool DecodeT2SOImm(llvm::MCInst &Inst, unsigned Val,
185 uint64_t Address, const void *Decoder);
186static bool DecodeThumbBCCTargetOperand(llvm::MCInst &Inst, unsigned Val,
187 uint64_t Address, const void *Decoder);
188static bool DecodeThumbBLTargetOperand(llvm::MCInst &Inst, unsigned Val,
189 uint64_t Address, const void *Decoder);
190
191#include "ARMGenDisassemblerTables.inc"
192#include "ARMGenInstrInfo.inc"
Oscar Fuentes38e13902010-09-28 11:48:19 +0000193#include "ARMGenEDInfo.inc"
Sean Callanan9899f702010-04-13 21:21:57 +0000194
195using namespace llvm;
Johnny Chenb68a3ee2010-04-02 22:27:38 +0000196
Johnny Chenb68a3ee2010-04-02 22:27:38 +0000197static MCDisassembler *createARMDisassembler(const Target &T) {
198 return new ARMDisassembler;
199}
200
201static MCDisassembler *createThumbDisassembler(const Target &T) {
202 return new ThumbDisassembler;
203}
204
Sean Callanan9899f702010-04-13 21:21:57 +0000205EDInstInfo *ARMDisassembler::getEDInfo() const {
206 return instInfoARM;
207}
208
209EDInstInfo *ThumbDisassembler::getEDInfo() const {
210 return instInfoARM;
211}
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000212
213
214bool ARMDisassembler::getInstruction(MCInst &MI, uint64_t &Size,
215 const MemoryObject &Region,
216 uint64_t Address,raw_ostream &os) const {
217 uint8_t bytes[4];
218
219 // We want to read exactly 4 bytes of data.
220 if (Region.readBytes(Address, 4, (uint8_t*)bytes, NULL) == -1)
221 return false;
222
223 // Encoded as a small-endian 32-bit word in the stream.
224 uint32_t insn = (bytes[3] << 24) |
225 (bytes[2] << 16) |
226 (bytes[1] << 8) |
227 (bytes[0] << 0);
228
229 // Calling the auto-generated decoder function.
230 bool result = decodeARMInstruction32(MI, insn, Address, this);
231 if (result) {
232 Size = 4;
233 return true;
234 }
235
236 // Instructions that are shared between ARM and Thumb modes.
237 // FIXME: This shouldn't really exist. It's an artifact of the
238 // fact that we fail to encode a few instructions properly for Thumb.
239 MI.clear();
240 result = decodeCommonInstruction32(MI, insn, Address, this);
241 if (result) {
242 Size = 4;
243 return true;
244 }
245
246 // VFP and NEON instructions, similarly, are shared between ARM
247 // and Thumb modes.
248 MI.clear();
249 result = decodeVFPInstruction32(MI, insn, Address, this);
250 if (result) {
251 Size = 4;
252 return true;
253 }
254
255 MI.clear();
Owen Anderson8533eba2011-08-10 19:01:10 +0000256 result = decodeNEONDataInstruction32(MI, insn, Address, this);
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000257 if (result) {
Owen Anderson8533eba2011-08-10 19:01:10 +0000258 Size = 4;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000259 // Add a fake predicate operand, because we share these instruction
260 // definitions with Thumb2 where these instructions are predicable.
261 if (!DecodePredicateOperand(MI, 0xE, Address, this)) return false;
Owen Anderson8533eba2011-08-10 19:01:10 +0000262 return true;
263 }
264
265 MI.clear();
266 result = decodeNEONLoadStoreInstruction32(MI, insn, Address, this);
267 if (result) {
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000268 Size = 4;
Owen Anderson8533eba2011-08-10 19:01:10 +0000269 // Add a fake predicate operand, because we share these instruction
270 // definitions with Thumb2 where these instructions are predicable.
271 if (!DecodePredicateOperand(MI, 0xE, Address, this)) return false;
272 return true;
273 }
274
275 MI.clear();
276 result = decodeNEONDupInstruction32(MI, insn, Address, this);
277 if (result) {
278 Size = 4;
279 // Add a fake predicate operand, because we share these instruction
280 // definitions with Thumb2 where these instructions are predicable.
281 if (!DecodePredicateOperand(MI, 0xE, Address, this)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000282 return true;
283 }
284
285 MI.clear();
286
287 return false;
288}
289
290namespace llvm {
291extern MCInstrDesc ARMInsts[];
292}
293
294// Thumb1 instructions don't have explicit S bits. Rather, they
295// implicitly set CPSR. Since it's not represented in the encoding, the
296// auto-generated decoder won't inject the CPSR operand. We need to fix
297// that as a post-pass.
298static void AddThumb1SBit(MCInst &MI, bool InITBlock) {
299 const MCOperandInfo *OpInfo = ARMInsts[MI.getOpcode()].OpInfo;
300 MCInst::iterator I = MI.begin();
Owen Anderson10cbaab2011-08-10 17:36:48 +0000301 for (unsigned i = 0, e = MI.size(); i < e; ++i, ++I) {
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000302 if (OpInfo[i].isOptionalDef() && OpInfo[i].RegClass == ARM::CCRRegClassID) {
303 MI.insert(I, MCOperand::CreateReg(InITBlock ? 0 : ARM::CPSR));
304 return;
305 }
306 }
307
308 if (OpInfo[MI.size()].isOptionalDef() &&
309 OpInfo[MI.size()].RegClass == ARM::CCRRegClassID)
310 MI.insert(MI.end(), MCOperand::CreateReg(InITBlock ? 0 : ARM::CPSR));
311}
312
313// Most Thumb instructions don't have explicit predicates in the
314// encoding, but rather get their predicates from IT context. We need
315// to fix up the predicate operands using this context information as a
316// post-pass.
317void ThumbDisassembler::AddThumbPredicate(MCInst &MI) const {
318 // A few instructions actually have predicates encoded in them. Don't
319 // try to overwrite it if we're seeing one of those.
320 switch (MI.getOpcode()) {
321 case ARM::tBcc:
322 case ARM::t2Bcc:
323 return;
324 default:
325 break;
326 }
327
328 // If we're in an IT block, base the predicate on that. Otherwise,
329 // assume a predicate of AL.
330 unsigned CC;
Owen Anderson10cbaab2011-08-10 17:36:48 +0000331 if (!ITBlock.empty()) {
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000332 CC = ITBlock.back();
333 ITBlock.pop_back();
334 } else
335 CC = ARMCC::AL;
336
337 const MCOperandInfo *OpInfo = ARMInsts[MI.getOpcode()].OpInfo;
338 MCInst::iterator I = MI.begin();
Owen Anderson10cbaab2011-08-10 17:36:48 +0000339 for (unsigned i = 0, e = MI.size(); i < e; ++i, ++I) {
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000340 if (OpInfo[i].isPredicate()) {
341 I = MI.insert(I, MCOperand::CreateImm(CC));
342 ++I;
343 if (CC == ARMCC::AL)
344 MI.insert(I, MCOperand::CreateReg(0));
345 else
346 MI.insert(I, MCOperand::CreateReg(ARM::CPSR));
347 return;
348 }
349 }
350
351 MI.insert(MI.end(), MCOperand::CreateImm(CC));
352 if (CC == ARMCC::AL)
353 MI.insert(MI.end(), MCOperand::CreateReg(0));
354 else
355 MI.insert(MI.end(), MCOperand::CreateReg(ARM::CPSR));
356}
357
358// Thumb VFP instructions are a special case. Because we share their
359// encodings between ARM and Thumb modes, and they are predicable in ARM
360// mode, the auto-generated decoder will give them an (incorrect)
361// predicate operand. We need to rewrite these operands based on the IT
362// context as a post-pass.
363void ThumbDisassembler::UpdateThumbVFPPredicate(MCInst &MI) const {
364 unsigned CC;
Owen Anderson10cbaab2011-08-10 17:36:48 +0000365 if (!ITBlock.empty()) {
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000366 CC = ITBlock.back();
367 ITBlock.pop_back();
368 } else
369 CC = ARMCC::AL;
370
371 const MCOperandInfo *OpInfo = ARMInsts[MI.getOpcode()].OpInfo;
372 MCInst::iterator I = MI.begin();
Owen Anderson10cbaab2011-08-10 17:36:48 +0000373 for (unsigned i = 0, e = MI.size(); i < e; ++i, ++I) {
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000374 if (OpInfo[i].isPredicate() ) {
375 I->setImm(CC);
376 ++I;
377 if (CC == ARMCC::AL)
378 I->setReg(0);
379 else
380 I->setReg(ARM::CPSR);
381 return;
382 }
383 }
384}
385
386
387bool ThumbDisassembler::getInstruction(MCInst &MI, uint64_t &Size,
388 const MemoryObject &Region,
389 uint64_t Address,raw_ostream &os) const {
390 uint8_t bytes[4];
391
392 // We want to read exactly 2 bytes of data.
393 if (Region.readBytes(Address, 2, (uint8_t*)bytes, NULL) == -1)
394 return false;
395
396 uint16_t insn16 = (bytes[1] << 8) | bytes[0];
397 bool result = decodeThumbInstruction16(MI, insn16, Address, this);
398 if (result) {
399 Size = 2;
Owen Anderson10cbaab2011-08-10 17:36:48 +0000400 bool InITBlock = !ITBlock.empty();
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000401 AddThumbPredicate(MI);
402 AddThumb1SBit(MI, InITBlock);
403 return true;
404 }
405
406 MI.clear();
407 result = decodeThumb2Instruction16(MI, insn16, Address, this);
408 if (result) {
409 Size = 2;
410 AddThumbPredicate(MI);
411
412 // If we find an IT instruction, we need to parse its condition
413 // code and mask operands so that we can apply them correctly
414 // to the subsequent instructions.
415 if (MI.getOpcode() == ARM::t2IT) {
416 unsigned firstcond = MI.getOperand(0).getImm();
417 uint32_t mask = MI.getOperand(1).getImm();
418 unsigned zeros = CountTrailingZeros_32(mask);
419 mask >>= zeros+1;
420
421 for (unsigned i = 0; i < 4 - (zeros+1); ++i) {
422 if (firstcond ^ (mask & 1))
423 ITBlock.push_back(firstcond ^ 1);
424 else
425 ITBlock.push_back(firstcond);
426 mask >>= 1;
427 }
428 ITBlock.push_back(firstcond);
429 }
430
431 return true;
432 }
433
434 // We want to read exactly 4 bytes of data.
435 if (Region.readBytes(Address, 4, (uint8_t*)bytes, NULL) == -1)
436 return false;
437
438 uint32_t insn32 = (bytes[3] << 8) |
439 (bytes[2] << 0) |
440 (bytes[1] << 24) |
441 (bytes[0] << 16);
442 MI.clear();
443 result = decodeThumbInstruction32(MI, insn32, Address, this);
444 if (result) {
445 Size = 4;
446 bool InITBlock = ITBlock.size();
447 AddThumbPredicate(MI);
448 AddThumb1SBit(MI, InITBlock);
449 return true;
450 }
451
452 MI.clear();
453 result = decodeThumb2Instruction32(MI, insn32, Address, this);
454 if (result) {
455 Size = 4;
456 AddThumbPredicate(MI);
457 return true;
458 }
459
460 MI.clear();
Owen Anderson8533eba2011-08-10 19:01:10 +0000461 result = decodeCommonInstruction32(MI, insn32, Address, this);
462 if (result) {
463 Size = 4;
464 AddThumbPredicate(MI);
465 return true;
466 }
467
468 MI.clear();
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000469 result = decodeVFPInstruction32(MI, insn32, Address, this);
470 if (result) {
471 Size = 4;
472 UpdateThumbVFPPredicate(MI);
473 return true;
474 }
475
476 MI.clear();
Owen Anderson8533eba2011-08-10 19:01:10 +0000477 if (fieldFromInstruction32(insn32, 24, 4) == 0xF) {
478 uint32_t NEONDataInsn = insn32;
479 NEONDataInsn &= 0xF0FFFFFF; // Clear bits 27-24
480 NEONDataInsn |= (NEONDataInsn & 0x10000000) >> 4; // Move bit 28 to bit 24
481 NEONDataInsn |= 0x12000000; // Set bits 28 and 25
482 result = decodeNEONDataInstruction32(MI, NEONDataInsn, Address, this);
483 if (result) {
484 Size = 4;
485 AddThumbPredicate(MI);
486 return true;
487 }
488 }
489
490 MI.clear();
491 result = decodeNEONLoadStoreInstruction32(MI, insn32, Address, this);
492 if (result) {
493 Size = 4;
494 AddThumbPredicate(MI);
495 return true;
496 }
497
498 MI.clear();
499 result = decodeNEONDupInstruction32(MI, insn32, Address, this);
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000500 if (result) {
501 Size = 4;
502 AddThumbPredicate(MI);
503 return true;
504 }
505
506 return false;
507}
508
509
510extern "C" void LLVMInitializeARMDisassembler() {
511 TargetRegistry::RegisterMCDisassembler(TheARMTarget,
512 createARMDisassembler);
513 TargetRegistry::RegisterMCDisassembler(TheThumbTarget,
514 createThumbDisassembler);
515}
516
517static const unsigned GPRDecoderTable[] = {
518 ARM::R0, ARM::R1, ARM::R2, ARM::R3,
519 ARM::R4, ARM::R5, ARM::R6, ARM::R7,
520 ARM::R8, ARM::R9, ARM::R10, ARM::R11,
521 ARM::R12, ARM::SP, ARM::LR, ARM::PC
522};
523
524static bool DecodeGPRRegisterClass(llvm::MCInst &Inst, unsigned RegNo,
525 uint64_t Address, const void *Decoder) {
526 if (RegNo > 15)
527 return false;
528
529 unsigned Register = GPRDecoderTable[RegNo];
530 Inst.addOperand(MCOperand::CreateReg(Register));
531 return true;
532}
533
Owen Anderson51c98052011-08-09 22:48:45 +0000534static bool DecodeGPRnopcRegisterClass(llvm::MCInst &Inst, unsigned RegNo,
535 uint64_t Address, const void *Decoder) {
536 if (RegNo == 15) return false;
537 return DecodeGPRRegisterClass(Inst, RegNo, Address, Decoder);
538}
539
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000540static bool DecodetGPRRegisterClass(llvm::MCInst &Inst, unsigned RegNo,
541 uint64_t Address, const void *Decoder) {
542 if (RegNo > 7)
543 return false;
544 return DecodeGPRRegisterClass(Inst, RegNo, Address, Decoder);
545}
546
547static bool DecodetcGPRRegisterClass(llvm::MCInst &Inst, unsigned RegNo,
548 uint64_t Address, const void *Decoder) {
549 unsigned Register = 0;
550 switch (RegNo) {
551 case 0:
552 Register = ARM::R0;
553 break;
554 case 1:
555 Register = ARM::R1;
556 break;
557 case 2:
558 Register = ARM::R2;
559 break;
560 case 3:
561 Register = ARM::R3;
562 break;
563 case 9:
564 Register = ARM::R9;
565 break;
566 case 12:
567 Register = ARM::R12;
568 break;
569 default:
570 return false;
571 }
572
573 Inst.addOperand(MCOperand::CreateReg(Register));
574 return true;
575}
576
577static bool DecoderGPRRegisterClass(llvm::MCInst &Inst, unsigned RegNo,
578 uint64_t Address, const void *Decoder) {
579 if (RegNo == 13 || RegNo == 15) return false;
580 return DecodeGPRRegisterClass(Inst, RegNo, Address, Decoder);
581}
582
583static const unsigned SPRDecoderTable[] = {
584 ARM::S0, ARM::S1, ARM::S2, ARM::S3,
585 ARM::S4, ARM::S5, ARM::S6, ARM::S7,
586 ARM::S8, ARM::S9, ARM::S10, ARM::S11,
587 ARM::S12, ARM::S13, ARM::S14, ARM::S15,
588 ARM::S16, ARM::S17, ARM::S18, ARM::S19,
589 ARM::S20, ARM::S21, ARM::S22, ARM::S23,
590 ARM::S24, ARM::S25, ARM::S26, ARM::S27,
591 ARM::S28, ARM::S29, ARM::S30, ARM::S31
592};
593
594static bool DecodeSPRRegisterClass(llvm::MCInst &Inst, unsigned RegNo,
595 uint64_t Address, const void *Decoder) {
596 if (RegNo > 31)
597 return false;
598
599 unsigned Register = SPRDecoderTable[RegNo];
600 Inst.addOperand(MCOperand::CreateReg(Register));
601 return true;
602}
603
604static const unsigned DPRDecoderTable[] = {
605 ARM::D0, ARM::D1, ARM::D2, ARM::D3,
606 ARM::D4, ARM::D5, ARM::D6, ARM::D7,
607 ARM::D8, ARM::D9, ARM::D10, ARM::D11,
608 ARM::D12, ARM::D13, ARM::D14, ARM::D15,
609 ARM::D16, ARM::D17, ARM::D18, ARM::D19,
610 ARM::D20, ARM::D21, ARM::D22, ARM::D23,
611 ARM::D24, ARM::D25, ARM::D26, ARM::D27,
612 ARM::D28, ARM::D29, ARM::D30, ARM::D31
613};
614
615static bool DecodeDPRRegisterClass(llvm::MCInst &Inst, unsigned RegNo,
616 uint64_t Address, const void *Decoder) {
617 if (RegNo > 31)
618 return false;
619
620 unsigned Register = DPRDecoderTable[RegNo];
621 Inst.addOperand(MCOperand::CreateReg(Register));
622 return true;
623}
624
625static bool DecodeDPR_8RegisterClass(llvm::MCInst &Inst, unsigned RegNo,
626 uint64_t Address, const void *Decoder) {
627 if (RegNo > 7)
628 return false;
629 return DecodeDPRRegisterClass(Inst, RegNo, Address, Decoder);
630}
631
632static bool DecodeDPR_VFP2RegisterClass(llvm::MCInst &Inst, unsigned RegNo,
633 uint64_t Address, const void *Decoder) {
634 if (RegNo > 15)
635 return false;
636 return DecodeDPRRegisterClass(Inst, RegNo, Address, Decoder);
637}
638
639static const unsigned QPRDecoderTable[] = {
640 ARM::Q0, ARM::Q1, ARM::Q2, ARM::Q3,
641 ARM::Q4, ARM::Q5, ARM::Q6, ARM::Q7,
642 ARM::Q8, ARM::Q9, ARM::Q10, ARM::Q11,
643 ARM::Q12, ARM::Q13, ARM::Q14, ARM::Q15
644};
645
646
647static bool DecodeQPRRegisterClass(llvm::MCInst &Inst, unsigned RegNo,
648 uint64_t Address, const void *Decoder) {
649 if (RegNo > 31)
650 return false;
651 RegNo >>= 1;
652
653 unsigned Register = QPRDecoderTable[RegNo];
654 Inst.addOperand(MCOperand::CreateReg(Register));
655 return true;
656}
657
658static bool DecodePredicateOperand(llvm::MCInst &Inst, unsigned Val,
659 uint64_t Address, const void *Decoder) {
660 if (Val == 0xF) return false;
Owen Andersonbd9091c2011-08-09 21:07:45 +0000661 // AL predicate is not allowed on Thumb1 branches.
662 if (Inst.getOpcode() == ARM::tBcc && Val == 0xE)
663 return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000664 Inst.addOperand(MCOperand::CreateImm(Val));
665 if (Val == ARMCC::AL) {
666 Inst.addOperand(MCOperand::CreateReg(0));
667 } else
668 Inst.addOperand(MCOperand::CreateReg(ARM::CPSR));
669 return true;
670}
671
672static bool DecodeCCOutOperand(llvm::MCInst &Inst, unsigned Val,
673 uint64_t Address, const void *Decoder) {
674 if (Val)
675 Inst.addOperand(MCOperand::CreateReg(ARM::CPSR));
676 else
677 Inst.addOperand(MCOperand::CreateReg(0));
678 return true;
679}
680
681static bool DecodeSOImmOperand(llvm::MCInst &Inst, unsigned Val,
682 uint64_t Address, const void *Decoder) {
683 uint32_t imm = Val & 0xFF;
684 uint32_t rot = (Val & 0xF00) >> 7;
685 uint32_t rot_imm = (imm >> rot) | (imm << (32-rot));
686 Inst.addOperand(MCOperand::CreateImm(rot_imm));
687 return true;
688}
689
690static bool DecodeBLTargetOperand(llvm::MCInst &Inst, unsigned Val,
691 uint64_t Address, const void *Decoder) {
692 Val <<= 2;
693 Inst.addOperand(MCOperand::CreateImm(SignExtend32<26>(Val)));
694 return true;
695}
696
697static bool DecodeSORegImmOperand(llvm::MCInst &Inst, unsigned Val,
698 uint64_t Address, const void *Decoder) {
699
700 unsigned Rm = fieldFromInstruction32(Val, 0, 4);
701 unsigned type = fieldFromInstruction32(Val, 5, 2);
702 unsigned imm = fieldFromInstruction32(Val, 7, 5);
703
704 // Register-immediate
Owen Andersonae0bc5d2011-08-11 18:24:51 +0000705 if (!DecodeGPRRegisterClass(Inst, Rm, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000706
707 ARM_AM::ShiftOpc Shift = ARM_AM::lsl;
708 switch (type) {
709 case 0:
710 Shift = ARM_AM::lsl;
711 break;
712 case 1:
713 Shift = ARM_AM::lsr;
714 break;
715 case 2:
716 Shift = ARM_AM::asr;
717 break;
718 case 3:
719 Shift = ARM_AM::ror;
720 break;
721 }
722
723 if (Shift == ARM_AM::ror && imm == 0)
724 Shift = ARM_AM::rrx;
725
726 unsigned Op = Shift | (imm << 3);
727 Inst.addOperand(MCOperand::CreateImm(Op));
728
729 return true;
730}
731
732static bool DecodeSORegRegOperand(llvm::MCInst &Inst, unsigned Val,
733 uint64_t Address, const void *Decoder) {
734
735 unsigned Rm = fieldFromInstruction32(Val, 0, 4);
736 unsigned type = fieldFromInstruction32(Val, 5, 2);
737 unsigned Rs = fieldFromInstruction32(Val, 8, 4);
738
739 // Register-register
Owen Andersonde317f42011-08-09 23:33:27 +0000740 if (!DecodeGPRnopcRegisterClass(Inst, Rm, Address, Decoder)) return false;
741 if (!DecodeGPRnopcRegisterClass(Inst, Rs, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000742
743 ARM_AM::ShiftOpc Shift = ARM_AM::lsl;
744 switch (type) {
745 case 0:
746 Shift = ARM_AM::lsl;
747 break;
748 case 1:
749 Shift = ARM_AM::lsr;
750 break;
751 case 2:
752 Shift = ARM_AM::asr;
753 break;
754 case 3:
755 Shift = ARM_AM::ror;
756 break;
757 }
758
759 Inst.addOperand(MCOperand::CreateImm(Shift));
760
761 return true;
762}
763
764static bool DecodeRegListOperand(llvm::MCInst &Inst, unsigned Val,
765 uint64_t Address, const void *Decoder) {
Owen Anderson26d2f0a2011-08-11 20:21:46 +0000766 // Empty register lists are not allowed.
767 if (CountPopulation_32(Val) == 0) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000768 for (unsigned i = 0; i < 16; ++i) {
Owen Andersonae0bc5d2011-08-11 18:24:51 +0000769 if (Val & (1 << i)) {
770 if (!DecodeGPRRegisterClass(Inst, i, Address, Decoder)) return false;
771 }
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000772 }
773
774 return true;
775}
776
777static bool DecodeSPRRegListOperand(llvm::MCInst &Inst, unsigned Val,
778 uint64_t Address, const void *Decoder) {
779 unsigned Vd = fieldFromInstruction32(Val, 8, 4);
780 unsigned regs = Val & 0xFF;
781
Owen Andersonae0bc5d2011-08-11 18:24:51 +0000782 if (!DecodeSPRRegisterClass(Inst, Vd, Address, Decoder)) return false;
783 for (unsigned i = 0; i < (regs - 1); ++i) {
784 if (!DecodeSPRRegisterClass(Inst, ++Vd, Address, Decoder)) return false;
785 }
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000786
787 return true;
788}
789
790static bool DecodeDPRRegListOperand(llvm::MCInst &Inst, unsigned Val,
791 uint64_t Address, const void *Decoder) {
792 unsigned Vd = fieldFromInstruction32(Val, 8, 4);
793 unsigned regs = (Val & 0xFF) / 2;
794
Owen Andersonae0bc5d2011-08-11 18:24:51 +0000795 if (!DecodeDPRRegisterClass(Inst, Vd, Address, Decoder)) return false;
796 for (unsigned i = 0; i < (regs - 1); ++i) {
797 if (!DecodeDPRRegisterClass(Inst, ++Vd, Address, Decoder)) return false;
798 }
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000799
800 return true;
801}
802
803static bool DecodeBitfieldMaskOperand(llvm::MCInst &Inst, unsigned Val,
804 uint64_t Address, const void *Decoder) {
Owen Anderson10cbaab2011-08-10 17:36:48 +0000805 // This operand encodes a mask of contiguous zeros between a specified MSB
806 // and LSB. To decode it, we create the mask of all bits MSB-and-lower,
807 // the mask of all bits LSB-and-lower, and then xor them to create
808 // the mask of that's all ones on [msb, lsb]. Finally we not it to
809 // create the final mask.
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000810 unsigned msb = fieldFromInstruction32(Val, 5, 5);
811 unsigned lsb = fieldFromInstruction32(Val, 0, 5);
812 uint32_t msb_mask = (1 << (msb+1)) - 1;
813 uint32_t lsb_mask = (1 << lsb) - 1;
814 Inst.addOperand(MCOperand::CreateImm(~(msb_mask ^ lsb_mask)));
815 return true;
816}
817
818static bool DecodeCopMemInstruction(llvm::MCInst &Inst, unsigned Insn,
819 uint64_t Address, const void *Decoder) {
820 unsigned pred = fieldFromInstruction32(Insn, 28, 4);
821 unsigned CRd = fieldFromInstruction32(Insn, 12, 4);
822 unsigned coproc = fieldFromInstruction32(Insn, 8, 4);
823 unsigned imm = fieldFromInstruction32(Insn, 0, 8);
824 unsigned Rn = fieldFromInstruction32(Insn, 16, 4);
825 unsigned U = fieldFromInstruction32(Insn, 23, 1);
826
827 switch (Inst.getOpcode()) {
828 case ARM::LDC_OFFSET:
829 case ARM::LDC_PRE:
830 case ARM::LDC_POST:
831 case ARM::LDC_OPTION:
832 case ARM::LDCL_OFFSET:
833 case ARM::LDCL_PRE:
834 case ARM::LDCL_POST:
835 case ARM::LDCL_OPTION:
836 case ARM::STC_OFFSET:
837 case ARM::STC_PRE:
838 case ARM::STC_POST:
839 case ARM::STC_OPTION:
840 case ARM::STCL_OFFSET:
841 case ARM::STCL_PRE:
842 case ARM::STCL_POST:
843 case ARM::STCL_OPTION:
844 if (coproc == 0xA || coproc == 0xB)
845 return false;
846 break;
847 default:
848 break;
849 }
850
851 Inst.addOperand(MCOperand::CreateImm(coproc));
852 Inst.addOperand(MCOperand::CreateImm(CRd));
Owen Andersonae0bc5d2011-08-11 18:24:51 +0000853 if (!DecodeGPRRegisterClass(Inst, Rn, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000854 switch (Inst.getOpcode()) {
855 case ARM::LDC_OPTION:
856 case ARM::LDCL_OPTION:
857 case ARM::LDC2_OPTION:
858 case ARM::LDC2L_OPTION:
859 case ARM::STC_OPTION:
860 case ARM::STCL_OPTION:
861 case ARM::STC2_OPTION:
862 case ARM::STC2L_OPTION:
863 case ARM::LDCL_POST:
864 case ARM::STCL_POST:
865 break;
866 default:
867 Inst.addOperand(MCOperand::CreateReg(0));
868 break;
869 }
870
871 unsigned P = fieldFromInstruction32(Insn, 24, 1);
872 unsigned W = fieldFromInstruction32(Insn, 21, 1);
873
874 bool writeback = (P == 0) || (W == 1);
875 unsigned idx_mode = 0;
876 if (P && writeback)
877 idx_mode = ARMII::IndexModePre;
878 else if (!P && writeback)
879 idx_mode = ARMII::IndexModePost;
880
881 switch (Inst.getOpcode()) {
882 case ARM::LDCL_POST:
883 case ARM::STCL_POST:
884 imm |= U << 8;
885 case ARM::LDC_OPTION:
886 case ARM::LDCL_OPTION:
887 case ARM::LDC2_OPTION:
888 case ARM::LDC2L_OPTION:
889 case ARM::STC_OPTION:
890 case ARM::STCL_OPTION:
891 case ARM::STC2_OPTION:
892 case ARM::STC2L_OPTION:
893 Inst.addOperand(MCOperand::CreateImm(imm));
894 break;
895 default:
896 if (U)
897 Inst.addOperand(MCOperand::CreateImm(
898 ARM_AM::getAM2Opc(ARM_AM::add, imm, ARM_AM::lsl, idx_mode)));
899 else
900 Inst.addOperand(MCOperand::CreateImm(
901 ARM_AM::getAM2Opc(ARM_AM::sub, imm, ARM_AM::lsl, idx_mode)));
902 break;
903 }
904
905 switch (Inst.getOpcode()) {
906 case ARM::LDC_OFFSET:
907 case ARM::LDC_PRE:
908 case ARM::LDC_POST:
909 case ARM::LDC_OPTION:
910 case ARM::LDCL_OFFSET:
911 case ARM::LDCL_PRE:
912 case ARM::LDCL_POST:
913 case ARM::LDCL_OPTION:
914 case ARM::STC_OFFSET:
915 case ARM::STC_PRE:
916 case ARM::STC_POST:
917 case ARM::STC_OPTION:
918 case ARM::STCL_OFFSET:
919 case ARM::STCL_PRE:
920 case ARM::STCL_POST:
921 case ARM::STCL_OPTION:
922 if (!DecodePredicateOperand(Inst, pred, Address, Decoder)) return false;
923 break;
924 default:
925 break;
926 }
927
928 return true;
929}
930
931static bool DecodeAddrMode2IdxInstruction(llvm::MCInst &Inst, unsigned Insn,
932 uint64_t Address, const void *Decoder) {
933 unsigned Rn = fieldFromInstruction32(Insn, 16, 4);
934 unsigned Rt = fieldFromInstruction32(Insn, 12, 4);
935 unsigned Rm = fieldFromInstruction32(Insn, 0, 4);
936 unsigned imm = fieldFromInstruction32(Insn, 0, 12);
937 unsigned pred = fieldFromInstruction32(Insn, 28, 4);
938 unsigned reg = fieldFromInstruction32(Insn, 25, 1);
939 unsigned P = fieldFromInstruction32(Insn, 24, 1);
940 unsigned W = fieldFromInstruction32(Insn, 21, 1);
941
942 // On stores, the writeback operand precedes Rt.
943 switch (Inst.getOpcode()) {
944 case ARM::STR_POST_IMM:
945 case ARM::STR_POST_REG:
Owen Anderson508e1d32011-08-11 20:47:56 +0000946 case ARM::STRB_POST_IMM:
947 case ARM::STRB_POST_REG:
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000948 case ARM::STRTr:
949 case ARM::STRTi:
Jim Grosbach10348e72011-08-11 20:04:56 +0000950 case ARM::STRBT_POST_REG:
951 case ARM::STRBT_POST_IMM:
Owen Andersonae0bc5d2011-08-11 18:24:51 +0000952 if (!DecodeGPRRegisterClass(Inst, Rn, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000953 break;
954 default:
955 break;
956 }
957
Owen Andersonae0bc5d2011-08-11 18:24:51 +0000958 if (!DecodeGPRRegisterClass(Inst, Rt, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000959
960 // On loads, the writeback operand comes after Rt.
961 switch (Inst.getOpcode()) {
962 case ARM::LDR_POST_IMM:
963 case ARM::LDR_POST_REG:
Owen Anderson508e1d32011-08-11 20:47:56 +0000964 case ARM::LDRB_POST_IMM:
965 case ARM::LDRB_POST_REG:
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000966 case ARM::LDR_PRE:
967 case ARM::LDRBT_POST_REG:
968 case ARM::LDRBT_POST_IMM:
Jim Grosbach59999262011-08-10 23:43:54 +0000969 case ARM::LDRT_POST_REG:
970 case ARM::LDRT_POST_IMM:
Owen Andersonae0bc5d2011-08-11 18:24:51 +0000971 if (!DecodeGPRRegisterClass(Inst, Rn, Address, Decoder))
972 return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000973 break;
974 default:
975 break;
976 }
977
Owen Andersonae0bc5d2011-08-11 18:24:51 +0000978 if (!DecodeGPRRegisterClass(Inst, Rn, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000979
980 ARM_AM::AddrOpc Op = ARM_AM::add;
981 if (!fieldFromInstruction32(Insn, 23, 1))
982 Op = ARM_AM::sub;
983
984 bool writeback = (P == 0) || (W == 1);
985 unsigned idx_mode = 0;
986 if (P && writeback)
987 idx_mode = ARMII::IndexModePre;
988 else if (!P && writeback)
989 idx_mode = ARMII::IndexModePost;
990
Owen Anderson71156a62011-08-11 19:00:18 +0000991 if (writeback && (Rn == 15 || Rn == Rt)) return false; // UNPREDICTABLE
992
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000993 if (reg) {
Owen Anderson2b7b2382011-08-11 18:55:42 +0000994 if (!DecodeGPRnopcRegisterClass(Inst, Rm, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000995 ARM_AM::ShiftOpc Opc = ARM_AM::lsl;
996 switch( fieldFromInstruction32(Insn, 5, 2)) {
997 case 0:
998 Opc = ARM_AM::lsl;
999 break;
1000 case 1:
1001 Opc = ARM_AM::lsr;
1002 break;
1003 case 2:
1004 Opc = ARM_AM::asr;
1005 break;
1006 case 3:
1007 Opc = ARM_AM::ror;
1008 break;
1009 default:
1010 return false;
1011 }
1012 unsigned amt = fieldFromInstruction32(Insn, 7, 5);
1013 unsigned imm = ARM_AM::getAM2Opc(Op, amt, Opc, idx_mode);
1014
1015 Inst.addOperand(MCOperand::CreateImm(imm));
1016 } else {
1017 Inst.addOperand(MCOperand::CreateReg(0));
1018 unsigned tmp = ARM_AM::getAM2Opc(Op, imm, ARM_AM::lsl, idx_mode);
1019 Inst.addOperand(MCOperand::CreateImm(tmp));
1020 }
1021
1022 if (!DecodePredicateOperand(Inst, pred, Address, Decoder)) return false;
1023
1024 return true;
1025}
1026
1027static bool DecodeSORegMemOperand(llvm::MCInst &Inst, unsigned Val,
1028 uint64_t Address, const void *Decoder) {
1029 unsigned Rn = fieldFromInstruction32(Val, 13, 4);
1030 unsigned Rm = fieldFromInstruction32(Val, 0, 4);
1031 unsigned type = fieldFromInstruction32(Val, 5, 2);
1032 unsigned imm = fieldFromInstruction32(Val, 7, 5);
1033 unsigned U = fieldFromInstruction32(Val, 12, 1);
1034
Owen Anderson51157d22011-08-09 21:38:14 +00001035 ARM_AM::ShiftOpc ShOp = ARM_AM::lsl;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001036 switch (type) {
1037 case 0:
1038 ShOp = ARM_AM::lsl;
1039 break;
1040 case 1:
1041 ShOp = ARM_AM::lsr;
1042 break;
1043 case 2:
1044 ShOp = ARM_AM::asr;
1045 break;
1046 case 3:
1047 ShOp = ARM_AM::ror;
1048 break;
1049 }
1050
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001051 if (!DecodeGPRRegisterClass(Inst, Rn, Address, Decoder)) return false;
1052 if (!DecodeGPRRegisterClass(Inst, Rm, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001053 unsigned shift;
1054 if (U)
1055 shift = ARM_AM::getAM2Opc(ARM_AM::add, imm, ShOp);
1056 else
1057 shift = ARM_AM::getAM2Opc(ARM_AM::sub, imm, ShOp);
1058 Inst.addOperand(MCOperand::CreateImm(shift));
1059
1060 return true;
1061}
1062
1063static bool DecodeAddrMode3Instruction(llvm::MCInst &Inst, unsigned Insn,
1064 uint64_t Address, const void *Decoder) {
1065 unsigned Rt = fieldFromInstruction32(Insn, 12, 4);
1066 unsigned Rn = fieldFromInstruction32(Insn, 16, 4);
1067 unsigned Rm = fieldFromInstruction32(Insn, 0, 4);
1068 unsigned type = fieldFromInstruction32(Insn, 22, 1);
1069 unsigned imm = fieldFromInstruction32(Insn, 8, 4);
1070 unsigned U = ((~fieldFromInstruction32(Insn, 23, 1)) & 1) << 8;
1071 unsigned pred = fieldFromInstruction32(Insn, 28, 4);
1072 unsigned W = fieldFromInstruction32(Insn, 21, 1);
1073 unsigned P = fieldFromInstruction32(Insn, 24, 1);
1074
1075 bool writeback = (W == 1) | (P == 0);
1076 if (writeback) { // Writeback
1077 if (P)
1078 U |= ARMII::IndexModePre << 9;
1079 else
1080 U |= ARMII::IndexModePost << 9;
1081
1082 // On stores, the writeback operand precedes Rt.
1083 switch (Inst.getOpcode()) {
1084 case ARM::STRD:
1085 case ARM::STRD_PRE:
1086 case ARM::STRD_POST:
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001087 if (!DecodeGPRRegisterClass(Inst, Rn, Address, Decoder))
1088 return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001089 break;
1090 default:
1091 break;
1092 }
1093 }
1094
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001095 if (!DecodeGPRRegisterClass(Inst, Rt, Address, Decoder))
1096 return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001097 switch (Inst.getOpcode()) {
1098 case ARM::STRD:
1099 case ARM::STRD_PRE:
1100 case ARM::STRD_POST:
1101 case ARM::LDRD:
1102 case ARM::LDRD_PRE:
1103 case ARM::LDRD_POST:
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001104 if (!DecodeGPRRegisterClass(Inst, Rt+1, Address, Decoder))
1105 return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001106 break;
1107 default:
1108 break;
1109 }
1110
1111 if (writeback) {
1112 // On loads, the writeback operand comes after Rt.
1113 switch (Inst.getOpcode()) {
1114 case ARM::LDRD:
1115 case ARM::LDRD_PRE:
1116 case ARM::LDRD_POST:
1117 case ARM::LDRHTr:
1118 case ARM::LDRSBTr:
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001119 if (!DecodeGPRRegisterClass(Inst, Rn, Address, Decoder))
1120 return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001121 break;
1122 default:
1123 break;
1124 }
1125 }
1126
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001127 if (!DecodeGPRRegisterClass(Inst, Rn, Address, Decoder))
1128 return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001129
1130 if (type) {
1131 Inst.addOperand(MCOperand::CreateReg(0));
1132 Inst.addOperand(MCOperand::CreateImm(U | (imm << 4) | Rm));
1133 } else {
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001134 if (!DecodeGPRRegisterClass(Inst, Rm, Address, Decoder))
1135 return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001136 Inst.addOperand(MCOperand::CreateImm(U));
1137 }
1138
1139 if (!DecodePredicateOperand(Inst, pred, Address, Decoder)) return false;
1140
1141 return true;
1142}
1143
1144static bool DecodeRFEInstruction(llvm::MCInst &Inst, unsigned Insn,
1145 uint64_t Address, const void *Decoder) {
1146 unsigned Rn = fieldFromInstruction32(Insn, 16, 4);
1147 unsigned mode = fieldFromInstruction32(Insn, 23, 2);
1148
1149 switch (mode) {
1150 case 0:
1151 mode = ARM_AM::da;
1152 break;
1153 case 1:
1154 mode = ARM_AM::ia;
1155 break;
1156 case 2:
1157 mode = ARM_AM::db;
1158 break;
1159 case 3:
1160 mode = ARM_AM::ib;
1161 break;
1162 }
1163
1164 Inst.addOperand(MCOperand::CreateImm(mode));
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001165 if (!DecodeGPRRegisterClass(Inst, Rn, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001166
1167 return true;
1168}
1169
1170static bool DecodeMemMultipleWritebackInstruction(llvm::MCInst &Inst,
1171 unsigned Insn,
1172 uint64_t Address, const void *Decoder) {
1173 unsigned Rn = fieldFromInstruction32(Insn, 16, 4);
1174 unsigned pred = fieldFromInstruction32(Insn, 28, 4);
1175 unsigned reglist = fieldFromInstruction32(Insn, 0, 16);
1176
1177 if (pred == 0xF) {
1178 switch (Inst.getOpcode()) {
1179 case ARM::STMDA:
1180 Inst.setOpcode(ARM::RFEDA);
1181 break;
1182 case ARM::STMDA_UPD:
1183 Inst.setOpcode(ARM::RFEDA_UPD);
1184 break;
1185 case ARM::STMDB:
1186 Inst.setOpcode(ARM::RFEDB);
1187 break;
1188 case ARM::STMDB_UPD:
1189 Inst.setOpcode(ARM::RFEDB_UPD);
1190 break;
1191 case ARM::STMIA:
1192 Inst.setOpcode(ARM::RFEIA);
1193 break;
1194 case ARM::STMIA_UPD:
1195 Inst.setOpcode(ARM::RFEIA_UPD);
1196 break;
1197 case ARM::STMIB:
1198 Inst.setOpcode(ARM::RFEIB);
1199 break;
1200 case ARM::STMIB_UPD:
1201 Inst.setOpcode(ARM::RFEIB_UPD);
1202 break;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001203 }
1204 return DecodeRFEInstruction(Inst, Insn, Address, Decoder);
1205 }
1206
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001207 if (!DecodeGPRRegisterClass(Inst, Rn, Address, Decoder) ||
1208 !DecodeGPRRegisterClass(Inst, Rn, Address, Decoder) || // Tied
1209 !DecodePredicateOperand(Inst, pred, Address, Decoder) ||
1210 !DecodeRegListOperand(Inst, reglist, Address, Decoder))
1211 return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001212
1213 return true;
1214}
1215
1216static bool DecodeCPSInstruction(llvm::MCInst &Inst, unsigned Insn,
1217 uint64_t Address, const void *Decoder) {
1218 unsigned imod = fieldFromInstruction32(Insn, 18, 2);
1219 unsigned M = fieldFromInstruction32(Insn, 17, 1);
1220 unsigned iflags = fieldFromInstruction32(Insn, 6, 3);
1221 unsigned mode = fieldFromInstruction32(Insn, 0, 5);
1222
Owen Anderson35008c22011-08-09 23:05:39 +00001223 // imod == '01' --> UNPREDICTABLE
1224 if (imod == 1) return false;
1225
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001226 if (M && mode && imod && iflags) {
1227 Inst.setOpcode(ARM::CPS3p);
1228 Inst.addOperand(MCOperand::CreateImm(imod));
1229 Inst.addOperand(MCOperand::CreateImm(iflags));
1230 Inst.addOperand(MCOperand::CreateImm(mode));
1231 return true;
1232 } else if (!mode && !M) {
1233 Inst.setOpcode(ARM::CPS2p);
1234 Inst.addOperand(MCOperand::CreateImm(imod));
1235 Inst.addOperand(MCOperand::CreateImm(iflags));
1236 return true;
1237 } else if (!imod && !iflags && M) {
1238 Inst.setOpcode(ARM::CPS1p);
1239 Inst.addOperand(MCOperand::CreateImm(mode));
1240 return true;
1241 }
1242
1243 return false;
1244}
1245
1246static bool DecodeSMLAInstruction(llvm::MCInst &Inst, unsigned Insn,
1247 uint64_t Address, const void *Decoder) {
1248 unsigned Rd = fieldFromInstruction32(Insn, 16, 4);
1249 unsigned Rn = fieldFromInstruction32(Insn, 0, 4);
1250 unsigned Rm = fieldFromInstruction32(Insn, 8, 4);
1251 unsigned Ra = fieldFromInstruction32(Insn, 12, 4);
1252 unsigned pred = fieldFromInstruction32(Insn, 28, 4);
1253
1254 if (pred == 0xF)
1255 return DecodeCPSInstruction(Inst, Insn, Address, Decoder);
1256
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001257 if (!DecodeGPRnopcRegisterClass(Inst, Rd, Address, Decoder) ||
1258 !DecodeGPRnopcRegisterClass(Inst, Rn, Address, Decoder) ||
1259 !DecodeGPRnopcRegisterClass(Inst, Rm, Address, Decoder) ||
1260 !DecodeGPRnopcRegisterClass(Inst, Ra, Address, Decoder))
1261 return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001262
1263 return true;
1264}
1265
1266static bool DecodeAddrModeImm12Operand(llvm::MCInst &Inst, unsigned Val,
1267 uint64_t Address, const void *Decoder) {
1268 unsigned add = fieldFromInstruction32(Val, 12, 1);
1269 unsigned imm = fieldFromInstruction32(Val, 0, 12);
1270 unsigned Rn = fieldFromInstruction32(Val, 13, 4);
1271
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001272 if (!DecodeGPRRegisterClass(Inst, Rn, Address, Decoder))
1273 return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001274
1275 if (!add) imm *= -1;
1276 if (imm == 0 && !add) imm = INT32_MIN;
1277 Inst.addOperand(MCOperand::CreateImm(imm));
1278
1279 return true;
1280}
1281
1282static bool DecodeAddrMode5Operand(llvm::MCInst &Inst, unsigned Val,
1283 uint64_t Address, const void *Decoder) {
1284 unsigned Rn = fieldFromInstruction32(Val, 9, 4);
1285 unsigned U = fieldFromInstruction32(Val, 8, 1);
1286 unsigned imm = fieldFromInstruction32(Val, 0, 8);
1287
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001288 if (!DecodeGPRRegisterClass(Inst, Rn, Address, Decoder))
1289 return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001290
1291 if (U)
1292 Inst.addOperand(MCOperand::CreateImm(ARM_AM::getAM5Opc(ARM_AM::add, imm)));
1293 else
1294 Inst.addOperand(MCOperand::CreateImm(ARM_AM::getAM5Opc(ARM_AM::sub, imm)));
1295
1296 return true;
1297}
1298
1299static bool DecodeAddrMode7Operand(llvm::MCInst &Inst, unsigned Val,
1300 uint64_t Address, const void *Decoder) {
1301 return DecodeGPRRegisterClass(Inst, Val, Address, Decoder);
1302}
1303
1304static bool DecodeBranchImmInstruction(llvm::MCInst &Inst, unsigned Insn,
1305 uint64_t Address, const void *Decoder) {
1306 unsigned pred = fieldFromInstruction32(Insn, 28, 4);
1307 unsigned imm = fieldFromInstruction32(Insn, 0, 24) << 2;
1308
1309 if (pred == 0xF) {
1310 Inst.setOpcode(ARM::BLXi);
1311 imm |= fieldFromInstruction32(Insn, 24, 1) << 1;
Benjamin Kramer793b8112011-08-09 22:02:50 +00001312 Inst.addOperand(MCOperand::CreateImm(SignExtend32<26>(imm)));
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001313 return true;
1314 }
1315
Benjamin Kramer793b8112011-08-09 22:02:50 +00001316 Inst.addOperand(MCOperand::CreateImm(SignExtend32<26>(imm)));
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001317 if (!DecodePredicateOperand(Inst, pred, Address, Decoder)) return false;
1318
1319 return true;
1320}
1321
1322
1323static bool DecodeVCVTImmOperand(llvm::MCInst &Inst, unsigned Val,
1324 uint64_t Address, const void *Decoder) {
1325 Inst.addOperand(MCOperand::CreateImm(64 - Val));
1326 return true;
1327}
1328
1329static bool DecodeAddrMode6Operand(llvm::MCInst &Inst, unsigned Val,
1330 uint64_t Address, const void *Decoder) {
1331 unsigned Rm = fieldFromInstruction32(Val, 0, 4);
1332 unsigned align = fieldFromInstruction32(Val, 4, 2);
1333
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001334 if (!DecodeGPRRegisterClass(Inst, Rm, Address, Decoder))
1335 return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001336 if (!align)
1337 Inst.addOperand(MCOperand::CreateImm(0));
1338 else
1339 Inst.addOperand(MCOperand::CreateImm(4 << align));
1340
1341 return true;
1342}
1343
1344static bool DecodeVLDInstruction(llvm::MCInst &Inst, unsigned Insn,
1345 uint64_t Address, const void *Decoder) {
1346 unsigned Rd = fieldFromInstruction32(Insn, 12, 4);
1347 Rd |= fieldFromInstruction32(Insn, 22, 1) << 4;
1348 unsigned wb = fieldFromInstruction32(Insn, 16, 4);
1349 unsigned Rn = fieldFromInstruction32(Insn, 16, 4);
1350 Rn |= fieldFromInstruction32(Insn, 4, 2) << 4;
1351 unsigned Rm = fieldFromInstruction32(Insn, 0, 4);
1352
1353 // First output register
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001354 if (!DecodeDPRRegisterClass(Inst, Rd, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001355
1356 // Second output register
1357 switch (Inst.getOpcode()) {
1358 case ARM::VLD1q8:
1359 case ARM::VLD1q16:
1360 case ARM::VLD1q32:
1361 case ARM::VLD1q64:
1362 case ARM::VLD1q8_UPD:
1363 case ARM::VLD1q16_UPD:
1364 case ARM::VLD1q32_UPD:
1365 case ARM::VLD1q64_UPD:
1366 case ARM::VLD1d8T:
1367 case ARM::VLD1d16T:
1368 case ARM::VLD1d32T:
1369 case ARM::VLD1d64T:
1370 case ARM::VLD1d8T_UPD:
1371 case ARM::VLD1d16T_UPD:
1372 case ARM::VLD1d32T_UPD:
1373 case ARM::VLD1d64T_UPD:
1374 case ARM::VLD1d8Q:
1375 case ARM::VLD1d16Q:
1376 case ARM::VLD1d32Q:
1377 case ARM::VLD1d64Q:
1378 case ARM::VLD1d8Q_UPD:
1379 case ARM::VLD1d16Q_UPD:
1380 case ARM::VLD1d32Q_UPD:
1381 case ARM::VLD1d64Q_UPD:
1382 case ARM::VLD2d8:
1383 case ARM::VLD2d16:
1384 case ARM::VLD2d32:
1385 case ARM::VLD2d8_UPD:
1386 case ARM::VLD2d16_UPD:
1387 case ARM::VLD2d32_UPD:
1388 case ARM::VLD2q8:
1389 case ARM::VLD2q16:
1390 case ARM::VLD2q32:
1391 case ARM::VLD2q8_UPD:
1392 case ARM::VLD2q16_UPD:
1393 case ARM::VLD2q32_UPD:
1394 case ARM::VLD3d8:
1395 case ARM::VLD3d16:
1396 case ARM::VLD3d32:
1397 case ARM::VLD3d8_UPD:
1398 case ARM::VLD3d16_UPD:
1399 case ARM::VLD3d32_UPD:
1400 case ARM::VLD4d8:
1401 case ARM::VLD4d16:
1402 case ARM::VLD4d32:
1403 case ARM::VLD4d8_UPD:
1404 case ARM::VLD4d16_UPD:
1405 case ARM::VLD4d32_UPD:
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001406 if (!DecodeDPRRegisterClass(Inst, (Rd+1)%32, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001407 break;
1408 case ARM::VLD2b8:
1409 case ARM::VLD2b16:
1410 case ARM::VLD2b32:
1411 case ARM::VLD2b8_UPD:
1412 case ARM::VLD2b16_UPD:
1413 case ARM::VLD2b32_UPD:
1414 case ARM::VLD3q8:
1415 case ARM::VLD3q16:
1416 case ARM::VLD3q32:
1417 case ARM::VLD3q8_UPD:
1418 case ARM::VLD3q16_UPD:
1419 case ARM::VLD3q32_UPD:
1420 case ARM::VLD4q8:
1421 case ARM::VLD4q16:
1422 case ARM::VLD4q32:
1423 case ARM::VLD4q8_UPD:
1424 case ARM::VLD4q16_UPD:
1425 case ARM::VLD4q32_UPD:
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001426 if (!DecodeDPRRegisterClass(Inst, (Rd+2)%32, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001427 default:
1428 break;
1429 }
1430
1431 // Third output register
1432 switch(Inst.getOpcode()) {
1433 case ARM::VLD1d8T:
1434 case ARM::VLD1d16T:
1435 case ARM::VLD1d32T:
1436 case ARM::VLD1d64T:
1437 case ARM::VLD1d8T_UPD:
1438 case ARM::VLD1d16T_UPD:
1439 case ARM::VLD1d32T_UPD:
1440 case ARM::VLD1d64T_UPD:
1441 case ARM::VLD1d8Q:
1442 case ARM::VLD1d16Q:
1443 case ARM::VLD1d32Q:
1444 case ARM::VLD1d64Q:
1445 case ARM::VLD1d8Q_UPD:
1446 case ARM::VLD1d16Q_UPD:
1447 case ARM::VLD1d32Q_UPD:
1448 case ARM::VLD1d64Q_UPD:
1449 case ARM::VLD2q8:
1450 case ARM::VLD2q16:
1451 case ARM::VLD2q32:
1452 case ARM::VLD2q8_UPD:
1453 case ARM::VLD2q16_UPD:
1454 case ARM::VLD2q32_UPD:
1455 case ARM::VLD3d8:
1456 case ARM::VLD3d16:
1457 case ARM::VLD3d32:
1458 case ARM::VLD3d8_UPD:
1459 case ARM::VLD3d16_UPD:
1460 case ARM::VLD3d32_UPD:
1461 case ARM::VLD4d8:
1462 case ARM::VLD4d16:
1463 case ARM::VLD4d32:
1464 case ARM::VLD4d8_UPD:
1465 case ARM::VLD4d16_UPD:
1466 case ARM::VLD4d32_UPD:
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001467 if (!DecodeDPRRegisterClass(Inst, (Rd+2)%32, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001468 break;
1469 case ARM::VLD3q8:
1470 case ARM::VLD3q16:
1471 case ARM::VLD3q32:
1472 case ARM::VLD3q8_UPD:
1473 case ARM::VLD3q16_UPD:
1474 case ARM::VLD3q32_UPD:
1475 case ARM::VLD4q8:
1476 case ARM::VLD4q16:
1477 case ARM::VLD4q32:
1478 case ARM::VLD4q8_UPD:
1479 case ARM::VLD4q16_UPD:
1480 case ARM::VLD4q32_UPD:
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001481 if (!DecodeDPRRegisterClass(Inst, (Rd+4)%32, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001482 break;
1483 default:
1484 break;
1485 }
1486
1487 // Fourth output register
1488 switch (Inst.getOpcode()) {
1489 case ARM::VLD1d8Q:
1490 case ARM::VLD1d16Q:
1491 case ARM::VLD1d32Q:
1492 case ARM::VLD1d64Q:
1493 case ARM::VLD1d8Q_UPD:
1494 case ARM::VLD1d16Q_UPD:
1495 case ARM::VLD1d32Q_UPD:
1496 case ARM::VLD1d64Q_UPD:
1497 case ARM::VLD2q8:
1498 case ARM::VLD2q16:
1499 case ARM::VLD2q32:
1500 case ARM::VLD2q8_UPD:
1501 case ARM::VLD2q16_UPD:
1502 case ARM::VLD2q32_UPD:
1503 case ARM::VLD4d8:
1504 case ARM::VLD4d16:
1505 case ARM::VLD4d32:
1506 case ARM::VLD4d8_UPD:
1507 case ARM::VLD4d16_UPD:
1508 case ARM::VLD4d32_UPD:
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001509 if (!DecodeDPRRegisterClass(Inst, (Rd+3)%32, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001510 break;
1511 case ARM::VLD4q8:
1512 case ARM::VLD4q16:
1513 case ARM::VLD4q32:
1514 case ARM::VLD4q8_UPD:
1515 case ARM::VLD4q16_UPD:
1516 case ARM::VLD4q32_UPD:
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001517 if (!DecodeDPRRegisterClass(Inst, (Rd+6)%32, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001518 break;
1519 default:
1520 break;
1521 }
1522
1523 // Writeback operand
1524 switch (Inst.getOpcode()) {
1525 case ARM::VLD1d8_UPD:
1526 case ARM::VLD1d16_UPD:
1527 case ARM::VLD1d32_UPD:
1528 case ARM::VLD1d64_UPD:
1529 case ARM::VLD1q8_UPD:
1530 case ARM::VLD1q16_UPD:
1531 case ARM::VLD1q32_UPD:
1532 case ARM::VLD1q64_UPD:
1533 case ARM::VLD1d8T_UPD:
1534 case ARM::VLD1d16T_UPD:
1535 case ARM::VLD1d32T_UPD:
1536 case ARM::VLD1d64T_UPD:
1537 case ARM::VLD1d8Q_UPD:
1538 case ARM::VLD1d16Q_UPD:
1539 case ARM::VLD1d32Q_UPD:
1540 case ARM::VLD1d64Q_UPD:
1541 case ARM::VLD2d8_UPD:
1542 case ARM::VLD2d16_UPD:
1543 case ARM::VLD2d32_UPD:
1544 case ARM::VLD2q8_UPD:
1545 case ARM::VLD2q16_UPD:
1546 case ARM::VLD2q32_UPD:
1547 case ARM::VLD2b8_UPD:
1548 case ARM::VLD2b16_UPD:
1549 case ARM::VLD2b32_UPD:
1550 case ARM::VLD3d8_UPD:
1551 case ARM::VLD3d16_UPD:
1552 case ARM::VLD3d32_UPD:
1553 case ARM::VLD3q8_UPD:
1554 case ARM::VLD3q16_UPD:
1555 case ARM::VLD3q32_UPD:
1556 case ARM::VLD4d8_UPD:
1557 case ARM::VLD4d16_UPD:
1558 case ARM::VLD4d32_UPD:
1559 case ARM::VLD4q8_UPD:
1560 case ARM::VLD4q16_UPD:
1561 case ARM::VLD4q32_UPD:
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001562 if (!DecodeGPRRegisterClass(Inst, wb, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001563 break;
1564 default:
1565 break;
1566 }
1567
1568 // AddrMode6 Base (register+alignment)
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001569 if (!DecodeAddrMode6Operand(Inst, Rn, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001570
1571 // AddrMode6 Offset (register)
1572 if (Rm == 0xD)
1573 Inst.addOperand(MCOperand::CreateReg(0));
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001574 else if (Rm != 0xF) {
1575 if (!DecodeGPRRegisterClass(Inst, Rm, Address, Decoder))
1576 return false;
1577 }
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001578
1579 return true;
1580}
1581
1582static bool DecodeVSTInstruction(llvm::MCInst &Inst, unsigned Insn,
1583 uint64_t Address, const void *Decoder) {
1584 unsigned Rd = fieldFromInstruction32(Insn, 12, 4);
1585 Rd |= fieldFromInstruction32(Insn, 22, 1) << 4;
1586 unsigned wb = fieldFromInstruction32(Insn, 16, 4);
1587 unsigned Rn = fieldFromInstruction32(Insn, 16, 4);
1588 Rn |= fieldFromInstruction32(Insn, 4, 2) << 4;
1589 unsigned Rm = fieldFromInstruction32(Insn, 0, 4);
1590
1591 // Writeback Operand
1592 switch (Inst.getOpcode()) {
1593 case ARM::VST1d8_UPD:
1594 case ARM::VST1d16_UPD:
1595 case ARM::VST1d32_UPD:
1596 case ARM::VST1d64_UPD:
1597 case ARM::VST1q8_UPD:
1598 case ARM::VST1q16_UPD:
1599 case ARM::VST1q32_UPD:
1600 case ARM::VST1q64_UPD:
1601 case ARM::VST1d8T_UPD:
1602 case ARM::VST1d16T_UPD:
1603 case ARM::VST1d32T_UPD:
1604 case ARM::VST1d64T_UPD:
1605 case ARM::VST1d8Q_UPD:
1606 case ARM::VST1d16Q_UPD:
1607 case ARM::VST1d32Q_UPD:
1608 case ARM::VST1d64Q_UPD:
1609 case ARM::VST2d8_UPD:
1610 case ARM::VST2d16_UPD:
1611 case ARM::VST2d32_UPD:
1612 case ARM::VST2q8_UPD:
1613 case ARM::VST2q16_UPD:
1614 case ARM::VST2q32_UPD:
1615 case ARM::VST2b8_UPD:
1616 case ARM::VST2b16_UPD:
1617 case ARM::VST2b32_UPD:
1618 case ARM::VST3d8_UPD:
1619 case ARM::VST3d16_UPD:
1620 case ARM::VST3d32_UPD:
1621 case ARM::VST3q8_UPD:
1622 case ARM::VST3q16_UPD:
1623 case ARM::VST3q32_UPD:
1624 case ARM::VST4d8_UPD:
1625 case ARM::VST4d16_UPD:
1626 case ARM::VST4d32_UPD:
1627 case ARM::VST4q8_UPD:
1628 case ARM::VST4q16_UPD:
1629 case ARM::VST4q32_UPD:
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001630 if (!DecodeGPRRegisterClass(Inst, wb, Address, Decoder))
1631 return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001632 break;
1633 default:
1634 break;
1635 }
1636
1637 // AddrMode6 Base (register+alignment)
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001638 if (!DecodeAddrMode6Operand(Inst, Rn, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001639
1640 // AddrMode6 Offset (register)
1641 if (Rm == 0xD)
1642 Inst.addOperand(MCOperand::CreateReg(0));
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001643 else if (Rm != 0xF) {
1644 if (!DecodeGPRRegisterClass(Inst, Rm, Address, Decoder)) return false;
1645 }
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001646
1647 // First input register
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001648 if (!DecodeDPRRegisterClass(Inst, Rd, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001649
1650 // Second input register
1651 switch (Inst.getOpcode()) {
1652 case ARM::VST1q8:
1653 case ARM::VST1q16:
1654 case ARM::VST1q32:
1655 case ARM::VST1q64:
1656 case ARM::VST1q8_UPD:
1657 case ARM::VST1q16_UPD:
1658 case ARM::VST1q32_UPD:
1659 case ARM::VST1q64_UPD:
1660 case ARM::VST1d8T:
1661 case ARM::VST1d16T:
1662 case ARM::VST1d32T:
1663 case ARM::VST1d64T:
1664 case ARM::VST1d8T_UPD:
1665 case ARM::VST1d16T_UPD:
1666 case ARM::VST1d32T_UPD:
1667 case ARM::VST1d64T_UPD:
1668 case ARM::VST1d8Q:
1669 case ARM::VST1d16Q:
1670 case ARM::VST1d32Q:
1671 case ARM::VST1d64Q:
1672 case ARM::VST1d8Q_UPD:
1673 case ARM::VST1d16Q_UPD:
1674 case ARM::VST1d32Q_UPD:
1675 case ARM::VST1d64Q_UPD:
1676 case ARM::VST2d8:
1677 case ARM::VST2d16:
1678 case ARM::VST2d32:
1679 case ARM::VST2d8_UPD:
1680 case ARM::VST2d16_UPD:
1681 case ARM::VST2d32_UPD:
1682 case ARM::VST2q8:
1683 case ARM::VST2q16:
1684 case ARM::VST2q32:
1685 case ARM::VST2q8_UPD:
1686 case ARM::VST2q16_UPD:
1687 case ARM::VST2q32_UPD:
1688 case ARM::VST3d8:
1689 case ARM::VST3d16:
1690 case ARM::VST3d32:
1691 case ARM::VST3d8_UPD:
1692 case ARM::VST3d16_UPD:
1693 case ARM::VST3d32_UPD:
1694 case ARM::VST4d8:
1695 case ARM::VST4d16:
1696 case ARM::VST4d32:
1697 case ARM::VST4d8_UPD:
1698 case ARM::VST4d16_UPD:
1699 case ARM::VST4d32_UPD:
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001700 if (!DecodeDPRRegisterClass(Inst, (Rd+1)%32, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001701 break;
1702 case ARM::VST2b8:
1703 case ARM::VST2b16:
1704 case ARM::VST2b32:
1705 case ARM::VST2b8_UPD:
1706 case ARM::VST2b16_UPD:
1707 case ARM::VST2b32_UPD:
1708 case ARM::VST3q8:
1709 case ARM::VST3q16:
1710 case ARM::VST3q32:
1711 case ARM::VST3q8_UPD:
1712 case ARM::VST3q16_UPD:
1713 case ARM::VST3q32_UPD:
1714 case ARM::VST4q8:
1715 case ARM::VST4q16:
1716 case ARM::VST4q32:
1717 case ARM::VST4q8_UPD:
1718 case ARM::VST4q16_UPD:
1719 case ARM::VST4q32_UPD:
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001720 if (!DecodeDPRRegisterClass(Inst, (Rd+2)%32, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001721 break;
1722 default:
1723 break;
1724 }
1725
1726 // Third input register
1727 switch (Inst.getOpcode()) {
1728 case ARM::VST1d8T:
1729 case ARM::VST1d16T:
1730 case ARM::VST1d32T:
1731 case ARM::VST1d64T:
1732 case ARM::VST1d8T_UPD:
1733 case ARM::VST1d16T_UPD:
1734 case ARM::VST1d32T_UPD:
1735 case ARM::VST1d64T_UPD:
1736 case ARM::VST1d8Q:
1737 case ARM::VST1d16Q:
1738 case ARM::VST1d32Q:
1739 case ARM::VST1d64Q:
1740 case ARM::VST1d8Q_UPD:
1741 case ARM::VST1d16Q_UPD:
1742 case ARM::VST1d32Q_UPD:
1743 case ARM::VST1d64Q_UPD:
1744 case ARM::VST2q8:
1745 case ARM::VST2q16:
1746 case ARM::VST2q32:
1747 case ARM::VST2q8_UPD:
1748 case ARM::VST2q16_UPD:
1749 case ARM::VST2q32_UPD:
1750 case ARM::VST3d8:
1751 case ARM::VST3d16:
1752 case ARM::VST3d32:
1753 case ARM::VST3d8_UPD:
1754 case ARM::VST3d16_UPD:
1755 case ARM::VST3d32_UPD:
1756 case ARM::VST4d8:
1757 case ARM::VST4d16:
1758 case ARM::VST4d32:
1759 case ARM::VST4d8_UPD:
1760 case ARM::VST4d16_UPD:
1761 case ARM::VST4d32_UPD:
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001762 if (!DecodeDPRRegisterClass(Inst, (Rd+2)%32, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001763 break;
1764 case ARM::VST3q8:
1765 case ARM::VST3q16:
1766 case ARM::VST3q32:
1767 case ARM::VST3q8_UPD:
1768 case ARM::VST3q16_UPD:
1769 case ARM::VST3q32_UPD:
1770 case ARM::VST4q8:
1771 case ARM::VST4q16:
1772 case ARM::VST4q32:
1773 case ARM::VST4q8_UPD:
1774 case ARM::VST4q16_UPD:
1775 case ARM::VST4q32_UPD:
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001776 if (!DecodeDPRRegisterClass(Inst, (Rd+4)%32, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001777 break;
1778 default:
1779 break;
1780 }
1781
1782 // Fourth input register
1783 switch (Inst.getOpcode()) {
1784 case ARM::VST1d8Q:
1785 case ARM::VST1d16Q:
1786 case ARM::VST1d32Q:
1787 case ARM::VST1d64Q:
1788 case ARM::VST1d8Q_UPD:
1789 case ARM::VST1d16Q_UPD:
1790 case ARM::VST1d32Q_UPD:
1791 case ARM::VST1d64Q_UPD:
1792 case ARM::VST2q8:
1793 case ARM::VST2q16:
1794 case ARM::VST2q32:
1795 case ARM::VST2q8_UPD:
1796 case ARM::VST2q16_UPD:
1797 case ARM::VST2q32_UPD:
1798 case ARM::VST4d8:
1799 case ARM::VST4d16:
1800 case ARM::VST4d32:
1801 case ARM::VST4d8_UPD:
1802 case ARM::VST4d16_UPD:
1803 case ARM::VST4d32_UPD:
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001804 if (!DecodeDPRRegisterClass(Inst, (Rd+3)%32, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001805 break;
1806 case ARM::VST4q8:
1807 case ARM::VST4q16:
1808 case ARM::VST4q32:
1809 case ARM::VST4q8_UPD:
1810 case ARM::VST4q16_UPD:
1811 case ARM::VST4q32_UPD:
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001812 if (!DecodeDPRRegisterClass(Inst, (Rd+6)%32, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001813 break;
1814 default:
1815 break;
1816 }
1817
1818 return true;
1819}
1820
1821static bool DecodeVLD1DupInstruction(llvm::MCInst &Inst, unsigned Insn,
1822 uint64_t Address, const void *Decoder) {
1823 unsigned Rd = fieldFromInstruction32(Insn, 12, 4);
1824 Rd |= fieldFromInstruction32(Insn, 22, 1) << 4;
1825 unsigned Rn = fieldFromInstruction32(Insn, 16, 4);
1826 unsigned Rm = fieldFromInstruction32(Insn, 0, 4);
1827 unsigned align = fieldFromInstruction32(Insn, 4, 1);
1828 unsigned size = fieldFromInstruction32(Insn, 6, 2);
1829 unsigned regs = fieldFromInstruction32(Insn, 5, 1) + 1;
1830
1831 align *= (1 << size);
1832
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001833 if (!DecodeDPRRegisterClass(Inst, Rd, Address, Decoder)) return false;
1834 if (regs == 2) {
1835 if (!DecodeDPRRegisterClass(Inst, (Rd+1)%32, Address, Decoder)) return false;
1836 }
1837 if (Rm == 0xD) {
1838 if (!DecodeGPRRegisterClass(Inst, Rn, Address, Decoder)) return false;
1839 }
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001840
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001841 if (!DecodeGPRRegisterClass(Inst, Rn, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001842 Inst.addOperand(MCOperand::CreateImm(align));
1843
1844 if (Rm == 0xD)
1845 Inst.addOperand(MCOperand::CreateReg(0));
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001846 else if (Rm != 0xF) {
1847 if (!DecodeGPRRegisterClass(Inst, Rm, Address, Decoder)) return false;
1848 }
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001849
1850 return true;
1851}
1852
1853static bool DecodeVLD2DupInstruction(llvm::MCInst &Inst, unsigned Insn,
1854 uint64_t Address, const void *Decoder) {
1855 unsigned Rd = fieldFromInstruction32(Insn, 12, 4);
1856 Rd |= fieldFromInstruction32(Insn, 22, 1) << 4;
1857 unsigned Rn = fieldFromInstruction32(Insn, 16, 4);
1858 unsigned Rm = fieldFromInstruction32(Insn, 0, 4);
1859 unsigned align = fieldFromInstruction32(Insn, 4, 1);
1860 unsigned size = 1 << fieldFromInstruction32(Insn, 6, 2);
1861 unsigned inc = fieldFromInstruction32(Insn, 5, 1) + 1;
1862 align *= 2*size;
1863
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001864 if (!DecodeDPRRegisterClass(Inst, Rd, Address, Decoder)) return false;
1865 if (!DecodeDPRRegisterClass(Inst, (Rd+inc)%32, Address, Decoder)) return false;
1866 if (Rm == 0xD) {
1867 if (!DecodeGPRRegisterClass(Inst, Rn, Address, Decoder)) return false;
1868 }
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001869
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001870 if (!DecodeGPRRegisterClass(Inst, Rn, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001871 Inst.addOperand(MCOperand::CreateImm(align));
1872
1873 if (Rm == 0xD)
1874 Inst.addOperand(MCOperand::CreateReg(0));
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001875 else if (Rm != 0xF) {
1876 if (!DecodeGPRRegisterClass(Inst, Rm, Address, Decoder)) return false;
1877 }
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001878
1879 return true;
1880}
1881
1882static bool DecodeVLD3DupInstruction(llvm::MCInst &Inst, unsigned Insn,
1883 uint64_t Address, const void *Decoder) {
1884 unsigned Rd = fieldFromInstruction32(Insn, 12, 4);
1885 Rd |= fieldFromInstruction32(Insn, 22, 1) << 4;
1886 unsigned Rn = fieldFromInstruction32(Insn, 16, 4);
1887 unsigned Rm = fieldFromInstruction32(Insn, 0, 4);
1888 unsigned inc = fieldFromInstruction32(Insn, 5, 1) + 1;
1889
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001890 if (!DecodeDPRRegisterClass(Inst, Rd, Address, Decoder) ||
1891 !DecodeDPRRegisterClass(Inst, (Rd+inc)%32, Address, Decoder) ||
1892 !DecodeDPRRegisterClass(Inst, (Rd+2*inc)%32, Address, Decoder))
1893 return false;
1894 if (Rm == 0xD) {
1895 if (!DecodeGPRRegisterClass(Inst, Rn, Address, Decoder)) return false;
1896 }
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001897
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001898 if (!DecodeGPRRegisterClass(Inst, Rn, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001899 Inst.addOperand(MCOperand::CreateImm(0));
1900
1901 if (Rm == 0xD)
1902 Inst.addOperand(MCOperand::CreateReg(0));
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001903 else if (Rm != 0xF) {
1904 if (!DecodeGPRRegisterClass(Inst, Rm, Address, Decoder)) return false;
1905 }
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001906
1907 return true;
1908}
1909
1910static bool DecodeVLD4DupInstruction(llvm::MCInst &Inst, unsigned Insn,
1911 uint64_t Address, const void *Decoder) {
1912 unsigned Rd = fieldFromInstruction32(Insn, 12, 4);
1913 Rd |= fieldFromInstruction32(Insn, 22, 1) << 4;
1914 unsigned Rn = fieldFromInstruction32(Insn, 16, 4);
1915 unsigned Rm = fieldFromInstruction32(Insn, 0, 4);
1916 unsigned size = fieldFromInstruction32(Insn, 6, 2);
1917 unsigned inc = fieldFromInstruction32(Insn, 5, 1) + 1;
1918 unsigned align = fieldFromInstruction32(Insn, 4, 1);
1919
1920 if (size == 0x3) {
1921 size = 4;
1922 align = 16;
1923 } else {
1924 if (size == 2) {
1925 size = 1 << size;
1926 align *= 8;
1927 } else {
1928 size = 1 << size;
1929 align *= 4*size;
1930 }
1931 }
1932
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001933 if (!DecodeDPRRegisterClass(Inst, Rd, Address, Decoder) ||
1934 !DecodeDPRRegisterClass(Inst, (Rd+inc)%32, Address, Decoder) ||
1935 !DecodeDPRRegisterClass(Inst, (Rd+2*inc)%32, Address, Decoder) ||
1936 !DecodeDPRRegisterClass(Inst, (Rd+3*inc)%32, Address, Decoder))
1937 return false;
1938 if (Rm == 0xD) {
1939 if (!DecodeGPRRegisterClass(Inst, Rn, Address, Decoder)) return false;
1940 }
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001941
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001942 if (!DecodeGPRRegisterClass(Inst, Rn, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001943 Inst.addOperand(MCOperand::CreateImm(align));
1944
1945 if (Rm == 0xD)
1946 Inst.addOperand(MCOperand::CreateReg(0));
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001947 else if (Rm != 0xF) {
1948 if (!DecodeGPRRegisterClass(Inst, Rm, Address, Decoder)) return false;
1949 }
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001950
1951 return true;
1952}
1953
1954static bool DecodeNEONModImmInstruction(llvm::MCInst &Inst, unsigned Insn,
1955 uint64_t Address, const void *Decoder) {
1956 unsigned Rd = fieldFromInstruction32(Insn, 12, 4);
1957 Rd |= fieldFromInstruction32(Insn, 22, 1) << 4;
1958 unsigned imm = fieldFromInstruction32(Insn, 0, 4);
1959 imm |= fieldFromInstruction32(Insn, 16, 3) << 4;
1960 imm |= fieldFromInstruction32(Insn, 24, 1) << 7;
1961 imm |= fieldFromInstruction32(Insn, 8, 4) << 8;
1962 imm |= fieldFromInstruction32(Insn, 5, 1) << 12;
1963 unsigned Q = fieldFromInstruction32(Insn, 6, 1);
1964
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001965 if (Q) {
1966 if (!DecodeQPRRegisterClass(Inst, Rd, Address, Decoder)) return false;
1967 } else {
1968 if (!DecodeDPRRegisterClass(Inst, Rd, Address, Decoder)) return false;
1969 }
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001970
1971 Inst.addOperand(MCOperand::CreateImm(imm));
1972
1973 switch (Inst.getOpcode()) {
1974 case ARM::VORRiv4i16:
1975 case ARM::VORRiv2i32:
1976 case ARM::VBICiv4i16:
1977 case ARM::VBICiv2i32:
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001978 if (!DecodeDPRRegisterClass(Inst, Rd, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001979 break;
1980 case ARM::VORRiv8i16:
1981 case ARM::VORRiv4i32:
1982 case ARM::VBICiv8i16:
1983 case ARM::VBICiv4i32:
Owen Andersonae0bc5d2011-08-11 18:24:51 +00001984 if (!DecodeQPRRegisterClass(Inst, Rd, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001985 break;
1986 default:
1987 break;
1988 }
1989
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001990 return true;
1991}
1992
1993static bool DecodeVSHLMaxInstruction(llvm::MCInst &Inst, unsigned Insn,
1994 uint64_t Address, const void *Decoder) {
1995 unsigned Rd = fieldFromInstruction32(Insn, 12, 4);
1996 Rd |= fieldFromInstruction32(Insn, 22, 1) << 4;
1997 unsigned Rm = fieldFromInstruction32(Insn, 0, 4);
1998 Rm |= fieldFromInstruction32(Insn, 5, 1) << 4;
1999 unsigned size = fieldFromInstruction32(Insn, 18, 2);
2000
Owen Andersonae0bc5d2011-08-11 18:24:51 +00002001 if (!DecodeQPRRegisterClass(Inst, Rd, Address, Decoder)) return false;
2002 if (!DecodeDPRRegisterClass(Inst, Rm, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00002003 Inst.addOperand(MCOperand::CreateImm(8 << size));
2004
2005 return true;
2006}
2007
2008static bool DecodeShiftRight8Imm(llvm::MCInst &Inst, unsigned Val,
2009 uint64_t Address, const void *Decoder) {
2010 Inst.addOperand(MCOperand::CreateImm(8 - Val));
2011 return true;
2012}
2013
2014static bool DecodeShiftRight16Imm(llvm::MCInst &Inst, unsigned Val,
2015 uint64_t Address, const void *Decoder) {
2016 Inst.addOperand(MCOperand::CreateImm(16 - Val));
2017 return true;
2018}
2019
2020static bool DecodeShiftRight32Imm(llvm::MCInst &Inst, unsigned Val,
2021 uint64_t Address, const void *Decoder) {
2022 Inst.addOperand(MCOperand::CreateImm(32 - Val));
2023 return true;
2024}
2025
2026static bool DecodeShiftRight64Imm(llvm::MCInst &Inst, unsigned Val,
2027 uint64_t Address, const void *Decoder) {
2028 Inst.addOperand(MCOperand::CreateImm(64 - Val));
2029 return true;
2030}
2031
2032static bool DecodeTBLInstruction(llvm::MCInst &Inst, unsigned Insn,
2033 uint64_t Address, const void *Decoder) {
2034 unsigned Rd = fieldFromInstruction32(Insn, 12, 4);
2035 Rd |= fieldFromInstruction32(Insn, 22, 1) << 4;
2036 unsigned Rn = fieldFromInstruction32(Insn, 16, 4);
2037 Rn |= fieldFromInstruction32(Insn, 7, 1) << 4;
2038 unsigned Rm = fieldFromInstruction32(Insn, 0, 4);
2039 Rm |= fieldFromInstruction32(Insn, 5, 1) << 4;
2040 unsigned op = fieldFromInstruction32(Insn, 6, 1);
2041 unsigned length = fieldFromInstruction32(Insn, 8, 2) + 1;
2042
Owen Andersonae0bc5d2011-08-11 18:24:51 +00002043 if (!DecodeDPRRegisterClass(Inst, Rd, Address, Decoder)) return false;
2044 if (op) {
2045 if (!DecodeDPRRegisterClass(Inst, Rd, Address, Decoder)) return false; // Writeback
2046 }
Owen Anderson8d7d2e12011-08-09 20:55:18 +00002047
Owen Andersonae0bc5d2011-08-11 18:24:51 +00002048 for (unsigned i = 0; i < length; ++i) {
2049 if (!DecodeDPRRegisterClass(Inst, (Rn+i)%32, Address, Decoder)) return false;
2050 }
Owen Anderson8d7d2e12011-08-09 20:55:18 +00002051
Owen Andersonae0bc5d2011-08-11 18:24:51 +00002052 if (!DecodeDPRRegisterClass(Inst, Rm, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00002053
2054 return true;
2055}
2056
2057static bool DecodeVFPfpImm(llvm::MCInst &Inst, unsigned Val,
2058 uint64_t Address, const void *Decoder) {
2059 // The immediate needs to be a fully instantiated float. However, the
2060 // auto-generated decoder is only able to fill in some of the bits
2061 // necessary. For instance, the 'b' bit is replicated multiple times,
2062 // and is even present in inverted form in one bit. We do a little
2063 // binary parsing here to fill in those missing bits, and then
2064 // reinterpret it all as a float.
2065 union {
2066 uint32_t integer;
2067 float fp;
2068 } fp_conv;
2069
2070 fp_conv.integer = Val;
2071 uint32_t b = fieldFromInstruction32(Val, 25, 1);
2072 fp_conv.integer |= b << 26;
2073 fp_conv.integer |= b << 27;
2074 fp_conv.integer |= b << 28;
2075 fp_conv.integer |= b << 29;
2076 fp_conv.integer |= (~b & 0x1) << 30;
2077
2078 Inst.addOperand(MCOperand::CreateFPImm(fp_conv.fp));
2079 return true;
2080}
2081
2082static bool DecodeThumbAddSpecialReg(llvm::MCInst &Inst, uint16_t Insn,
2083 uint64_t Address, const void *Decoder) {
2084 unsigned dst = fieldFromInstruction16(Insn, 8, 3);
2085 unsigned imm = fieldFromInstruction16(Insn, 0, 8);
2086
Owen Andersonae0bc5d2011-08-11 18:24:51 +00002087 if (!DecodetGPRRegisterClass(Inst, dst, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00002088
2089 if (Inst.getOpcode() == ARM::tADR)
2090 Inst.addOperand(MCOperand::CreateReg(ARM::PC));
2091 else if (Inst.getOpcode() == ARM::tADDrSPi)
2092 Inst.addOperand(MCOperand::CreateReg(ARM::SP));
2093 else
2094 return false;
2095
2096 Inst.addOperand(MCOperand::CreateImm(imm));
2097 return true;
2098}
2099
2100static bool DecodeThumbBROperand(llvm::MCInst &Inst, unsigned Val,
2101 uint64_t Address, const void *Decoder) {
2102 Inst.addOperand(MCOperand::CreateImm(SignExtend32<12>(Val << 1)));
2103 return true;
2104}
2105
2106static bool DecodeT2BROperand(llvm::MCInst &Inst, unsigned Val,
2107 uint64_t Address, const void *Decoder) {
2108 Inst.addOperand(MCOperand::CreateImm(SignExtend32<21>(Val)));
2109 return true;
2110}
2111
2112static bool DecodeThumbCmpBROperand(llvm::MCInst &Inst, unsigned Val,
2113 uint64_t Address, const void *Decoder) {
2114 Inst.addOperand(MCOperand::CreateImm(SignExtend32<7>(Val << 1)));
2115 return true;
2116}
2117
2118static bool DecodeThumbAddrModeRR(llvm::MCInst &Inst, unsigned Val,
2119 uint64_t Address, const void *Decoder) {
2120 unsigned Rn = fieldFromInstruction32(Val, 0, 3);
2121 unsigned Rm = fieldFromInstruction32(Val, 3, 3);
2122
Owen Andersonae0bc5d2011-08-11 18:24:51 +00002123 if (!DecodetGPRRegisterClass(Inst, Rn, Address, Decoder) ||
2124 !DecodetGPRRegisterClass(Inst, Rm, Address, Decoder))
2125 return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00002126
2127 return true;
2128}
2129
2130static bool DecodeThumbAddrModeIS(llvm::MCInst &Inst, unsigned Val,
2131 uint64_t Address, const void *Decoder) {
2132 unsigned Rn = fieldFromInstruction32(Val, 0, 3);
2133 unsigned imm = fieldFromInstruction32(Val, 3, 5);
2134
Owen Andersonae0bc5d2011-08-11 18:24:51 +00002135 if (!DecodetGPRRegisterClass(Inst, Rn, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00002136 Inst.addOperand(MCOperand::CreateImm(imm));
2137
2138 return true;
2139}
2140
2141static bool DecodeThumbAddrModePC(llvm::MCInst &Inst, unsigned Val,
2142 uint64_t Address, const void *Decoder) {
2143 Inst.addOperand(MCOperand::CreateImm(Val << 2));
2144
2145 return true;
2146}
2147
2148static bool DecodeThumbAddrModeSP(llvm::MCInst &Inst, unsigned Val,
2149 uint64_t Address, const void *Decoder) {
2150 Inst.addOperand(MCOperand::CreateReg(ARM::SP));
2151 Inst.addOperand(MCOperand::CreateImm(Val << 2));
2152
2153 return true;
2154}
2155
2156static bool DecodeT2AddrModeSOReg(llvm::MCInst &Inst, unsigned Val,
2157 uint64_t Address, const void *Decoder) {
2158 unsigned Rn = fieldFromInstruction32(Val, 6, 4);
2159 unsigned Rm = fieldFromInstruction32(Val, 2, 4);
2160 unsigned imm = fieldFromInstruction32(Val, 0, 2);
2161
Owen Andersonae0bc5d2011-08-11 18:24:51 +00002162 if (!DecodeGPRRegisterClass(Inst, Rn, Address, Decoder) ||
2163 !DecoderGPRRegisterClass(Inst, Rm, Address, Decoder))
2164 return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00002165 Inst.addOperand(MCOperand::CreateImm(imm));
2166
2167 return true;
2168}
2169
2170static bool DecodeT2LoadShift(llvm::MCInst &Inst, unsigned Insn,
2171 uint64_t Address, const void *Decoder) {
2172 if (Inst.getOpcode() != ARM::t2PLDs) {
2173 unsigned Rt = fieldFromInstruction32(Insn, 12, 4);
Owen Andersonae0bc5d2011-08-11 18:24:51 +00002174 if (!DecodeGPRRegisterClass(Inst, Rt, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00002175 }
2176
2177 unsigned Rn = fieldFromInstruction32(Insn, 16, 4);
2178 if (Rn == 0xF) {
2179 switch (Inst.getOpcode()) {
2180 case ARM::t2LDRBs:
2181 Inst.setOpcode(ARM::t2LDRBpci);
2182 break;
2183 case ARM::t2LDRHs:
2184 Inst.setOpcode(ARM::t2LDRHpci);
2185 break;
2186 case ARM::t2LDRSHs:
2187 Inst.setOpcode(ARM::t2LDRSHpci);
2188 break;
2189 case ARM::t2LDRSBs:
2190 Inst.setOpcode(ARM::t2LDRSBpci);
2191 break;
2192 case ARM::t2PLDs:
2193 Inst.setOpcode(ARM::t2PLDi12);
2194 Inst.addOperand(MCOperand::CreateReg(ARM::PC));
2195 break;
2196 default:
2197 return false;
2198 }
2199
2200 int imm = fieldFromInstruction32(Insn, 0, 12);
2201 if (!fieldFromInstruction32(Insn, 23, 1)) imm *= -1;
2202 Inst.addOperand(MCOperand::CreateImm(imm));
2203
2204 return true;
2205 }
2206
2207 unsigned addrmode = fieldFromInstruction32(Insn, 4, 2);
2208 addrmode |= fieldFromInstruction32(Insn, 0, 4) << 2;
2209 addrmode |= fieldFromInstruction32(Insn, 16, 4) << 6;
2210 DecodeT2AddrModeSOReg(Inst, addrmode, Address, Decoder);
2211
2212 return true;
2213}
2214
2215static bool DecodeT2Imm8S4(llvm::MCInst &Inst, unsigned Val,
Owen Anderson10cbaab2011-08-10 17:36:48 +00002216 uint64_t Address, const void *Decoder) {
Owen Anderson8d7d2e12011-08-09 20:55:18 +00002217 int imm = Val & 0xFF;
2218 if (!(Val & 0x100)) imm *= -1;
2219 Inst.addOperand(MCOperand::CreateImm(imm << 2));
2220
2221 return true;
2222}
2223
2224static bool DecodeT2AddrModeImm8s4(llvm::MCInst &Inst, unsigned Val,
2225 uint64_t Address, const void *Decoder) {
2226 unsigned Rn = fieldFromInstruction32(Val, 9, 4);
2227 unsigned imm = fieldFromInstruction32(Val, 0, 9);
2228
Owen Andersonae0bc5d2011-08-11 18:24:51 +00002229 if (!DecodeGPRRegisterClass(Inst, Rn, Address, Decoder) ||
2230 !DecodeT2Imm8S4(Inst, imm, Address, Decoder))
2231 return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00002232
2233 return true;
2234}
2235
2236static bool DecodeT2Imm8(llvm::MCInst &Inst, unsigned Val,
Owen Anderson10cbaab2011-08-10 17:36:48 +00002237 uint64_t Address, const void *Decoder) {
Owen Anderson8d7d2e12011-08-09 20:55:18 +00002238 int imm = Val & 0xFF;
2239 if (!(Val & 0x100)) imm *= -1;
2240 Inst.addOperand(MCOperand::CreateImm(imm));
2241
2242 return true;
2243}
2244
2245
2246static bool DecodeT2AddrModeImm8(llvm::MCInst &Inst, unsigned Val,
Owen Anderson10cbaab2011-08-10 17:36:48 +00002247 uint64_t Address, const void *Decoder) {
Owen Anderson8d7d2e12011-08-09 20:55:18 +00002248 unsigned Rn = fieldFromInstruction32(Val, 9, 4);
2249 unsigned imm = fieldFromInstruction32(Val, 0, 9);
2250
2251 // Some instructions always use an additive offset.
2252 switch (Inst.getOpcode()) {
2253 case ARM::t2LDRT:
2254 case ARM::t2LDRBT:
2255 case ARM::t2LDRHT:
2256 case ARM::t2LDRSBT:
2257 case ARM::t2LDRSHT:
2258 imm |= 0x100;
2259 break;
2260 default:
2261 break;
2262 }
2263
Owen Andersonae0bc5d2011-08-11 18:24:51 +00002264 if (!DecodeGPRRegisterClass(Inst, Rn, Address, Decoder) ||
2265 !DecodeT2Imm8(Inst, imm, Address, Decoder))
2266 return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00002267
2268 return true;
2269}
2270
2271
2272static bool DecodeT2AddrModeImm12(llvm::MCInst &Inst, unsigned Val,
Owen Anderson10cbaab2011-08-10 17:36:48 +00002273 uint64_t Address, const void *Decoder) {
Owen Anderson8d7d2e12011-08-09 20:55:18 +00002274 unsigned Rn = fieldFromInstruction32(Val, 13, 4);
2275 unsigned imm = fieldFromInstruction32(Val, 0, 12);
2276
Owen Andersonae0bc5d2011-08-11 18:24:51 +00002277 if (!DecodeGPRRegisterClass(Inst, Rn, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00002278 Inst.addOperand(MCOperand::CreateImm(imm));
2279
2280 return true;
2281}
2282
2283
2284static bool DecodeThumbAddSPImm(llvm::MCInst &Inst, uint16_t Insn,
Owen Anderson10cbaab2011-08-10 17:36:48 +00002285 uint64_t Address, const void *Decoder) {
Owen Anderson8d7d2e12011-08-09 20:55:18 +00002286 unsigned imm = fieldFromInstruction16(Insn, 0, 7);
2287
2288 Inst.addOperand(MCOperand::CreateReg(ARM::SP));
2289 Inst.addOperand(MCOperand::CreateReg(ARM::SP));
2290 Inst.addOperand(MCOperand::CreateImm(imm));
2291
2292 return true;
2293}
2294
2295static bool DecodeThumbAddSPReg(llvm::MCInst &Inst, uint16_t Insn,
Owen Anderson10cbaab2011-08-10 17:36:48 +00002296 uint64_t Address, const void *Decoder) {
Owen Anderson8d7d2e12011-08-09 20:55:18 +00002297 if (Inst.getOpcode() == ARM::tADDrSP) {
2298 unsigned Rdm = fieldFromInstruction16(Insn, 0, 3);
2299 Rdm |= fieldFromInstruction16(Insn, 7, 1) << 3;
2300
Owen Andersonae0bc5d2011-08-11 18:24:51 +00002301 if (!DecodeGPRRegisterClass(Inst, Rdm, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00002302 Inst.addOperand(MCOperand::CreateReg(ARM::SP));
Owen Andersonae0bc5d2011-08-11 18:24:51 +00002303 if (!DecodeGPRRegisterClass(Inst, Rdm, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00002304 } else if (Inst.getOpcode() == ARM::tADDspr) {
2305 unsigned Rm = fieldFromInstruction16(Insn, 3, 4);
2306
2307 Inst.addOperand(MCOperand::CreateReg(ARM::SP));
2308 Inst.addOperand(MCOperand::CreateReg(ARM::SP));
Owen Andersonae0bc5d2011-08-11 18:24:51 +00002309 if (!DecodeGPRRegisterClass(Inst, Rm, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00002310 }
2311
2312 return true;
2313}
2314
2315static bool DecodeThumbCPS(llvm::MCInst &Inst, uint16_t Insn,
Owen Anderson10cbaab2011-08-10 17:36:48 +00002316 uint64_t Address, const void *Decoder) {
Owen Anderson8d7d2e12011-08-09 20:55:18 +00002317 unsigned imod = fieldFromInstruction16(Insn, 4, 1) | 0x2;
2318 unsigned flags = fieldFromInstruction16(Insn, 0, 3);
2319
2320 Inst.addOperand(MCOperand::CreateImm(imod));
2321 Inst.addOperand(MCOperand::CreateImm(flags));
2322
2323 return true;
2324}
2325
2326static bool DecodePostIdxReg(llvm::MCInst &Inst, unsigned Insn,
Owen Anderson10cbaab2011-08-10 17:36:48 +00002327 uint64_t Address, const void *Decoder) {
Owen Anderson8d7d2e12011-08-09 20:55:18 +00002328 unsigned Rm = fieldFromInstruction32(Insn, 0, 4);
2329 unsigned add = fieldFromInstruction32(Insn, 4, 1);
2330
Owen Andersonae0bc5d2011-08-11 18:24:51 +00002331 if (!DecodeGPRRegisterClass(Inst, Rm, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00002332 Inst.addOperand(MCOperand::CreateImm(add));
2333
2334 return true;
2335}
2336
2337static bool DecodeThumbBLXOffset(llvm::MCInst &Inst, unsigned Val,
Owen Anderson10cbaab2011-08-10 17:36:48 +00002338 uint64_t Address, const void *Decoder) {
Owen Anderson8d7d2e12011-08-09 20:55:18 +00002339 Inst.addOperand(MCOperand::CreateImm(SignExtend32<22>(Val << 1)));
2340 return true;
2341}
2342
2343static bool DecodeCoprocessor(llvm::MCInst &Inst, unsigned Val,
2344 uint64_t Address, const void *Decoder) {
2345 if (Val == 0xA || Val == 0xB)
2346 return false;
2347
2348 Inst.addOperand(MCOperand::CreateImm(Val));
2349 return true;
2350}
2351
2352static bool DecodeThumbSRImm(llvm::MCInst &Inst, unsigned Val,
Owen Anderson10cbaab2011-08-10 17:36:48 +00002353 uint64_t Address, const void *Decoder) {
Owen Anderson8d7d2e12011-08-09 20:55:18 +00002354 if (Val == 0)
2355 Inst.addOperand(MCOperand::CreateImm(32));
2356 else
2357 Inst.addOperand(MCOperand::CreateImm(Val));
2358 return true;
2359}
2360
2361static bool DecodeThumb2BCCInstruction(llvm::MCInst &Inst, unsigned Insn,
2362 uint64_t Address, const void *Decoder) {
2363 unsigned pred = fieldFromInstruction32(Insn, 22, 4);
2364 if (pred == 0xE || pred == 0xF) {
2365 unsigned opc = fieldFromInstruction32(Insn, 4, 2);
2366 switch (opc) {
2367 default:
2368 return false;
2369 case 0:
2370 Inst.setOpcode(ARM::t2DSB);
2371 break;
2372 case 1:
2373 Inst.setOpcode(ARM::t2DMB);
2374 break;
2375 case 2:
2376 Inst.setOpcode(ARM::t2ISB);
2377 return true;
2378 }
2379
2380 unsigned imm = fieldFromInstruction32(Insn, 0, 4);
Owen Andersonc36481c2011-08-09 23:25:42 +00002381 return DecodeMemBarrierOption(Inst, imm, Address, Decoder);
Owen Anderson8d7d2e12011-08-09 20:55:18 +00002382 }
2383
2384 unsigned brtarget = fieldFromInstruction32(Insn, 0, 11) << 1;
2385 brtarget |= fieldFromInstruction32(Insn, 11, 1) << 19;
2386 brtarget |= fieldFromInstruction32(Insn, 13, 1) << 18;
2387 brtarget |= fieldFromInstruction32(Insn, 16, 6) << 12;
2388 brtarget |= fieldFromInstruction32(Insn, 26, 1) << 20;
2389
Owen Andersonae0bc5d2011-08-11 18:24:51 +00002390 if (!DecodeT2BROperand(Inst, brtarget, Address, Decoder) ||
2391 !DecodePredicateOperand(Inst, pred, Address, Decoder))
Owen Anderson8d7d2e12011-08-09 20:55:18 +00002392 return false;
2393
2394 return true;
2395}
2396
2397// Decode a shifted immediate operand. These basically consist
2398// of an 8-bit value, and a 4-bit directive that specifies either
2399// a splat operation or a rotation.
2400static bool DecodeT2SOImm(llvm::MCInst &Inst, unsigned Val,
2401 uint64_t Address, const void *Decoder) {
2402 unsigned ctrl = fieldFromInstruction32(Val, 10, 2);
2403 if (ctrl == 0) {
2404 unsigned byte = fieldFromInstruction32(Val, 8, 2);
2405 unsigned imm = fieldFromInstruction32(Val, 0, 8);
2406 switch (byte) {
2407 case 0:
2408 Inst.addOperand(MCOperand::CreateImm(imm));
2409 break;
2410 case 1:
2411 Inst.addOperand(MCOperand::CreateImm((imm << 16) | imm));
2412 break;
2413 case 2:
2414 Inst.addOperand(MCOperand::CreateImm((imm << 24) | (imm << 8)));
2415 break;
2416 case 3:
2417 Inst.addOperand(MCOperand::CreateImm((imm << 24) | (imm << 16) |
2418 (imm << 8) | imm));
2419 break;
2420 }
2421 } else {
2422 unsigned unrot = fieldFromInstruction32(Val, 0, 7) | 0x80;
2423 unsigned rot = fieldFromInstruction32(Val, 7, 5);
2424 unsigned imm = (unrot >> rot) | (unrot << ((32-rot)&31));
2425 Inst.addOperand(MCOperand::CreateImm(imm));
2426 }
2427
2428 return true;
2429}
2430
2431static bool DecodeThumbBCCTargetOperand(llvm::MCInst &Inst, unsigned Val,
2432 uint64_t Address, const void *Decoder){
2433 Inst.addOperand(MCOperand::CreateImm(Val << 1));
2434 return true;
2435}
2436
2437static bool DecodeThumbBLTargetOperand(llvm::MCInst &Inst, unsigned Val,
Owen Anderson10cbaab2011-08-10 17:36:48 +00002438 uint64_t Address, const void *Decoder){
Owen Anderson8d7d2e12011-08-09 20:55:18 +00002439 Inst.addOperand(MCOperand::CreateImm(SignExtend32<22>(Val << 1)));
2440 return true;
2441}
2442
2443static bool DecodeAddrMode3Offset(llvm::MCInst &Inst, unsigned Val,
2444 uint64_t Address, const void *Decoder) {
2445 bool isImm = fieldFromInstruction32(Val, 9, 1);
2446 bool isAdd = fieldFromInstruction32(Val, 8, 1);
2447 unsigned imm = fieldFromInstruction32(Val, 0, 8);
2448
2449 if (!isImm) {
Owen Andersonae0bc5d2011-08-11 18:24:51 +00002450 if (!DecodeGPRRegisterClass(Inst, imm, Address, Decoder)) return false;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00002451 Inst.addOperand(MCOperand::CreateImm(!isAdd << 8));
2452 } else {
2453 Inst.addOperand(MCOperand::CreateReg(0));
2454 Inst.addOperand(MCOperand::CreateImm(imm | (!isAdd << 8)));
2455 }
2456
2457 return true;
2458}
Owen Andersonc36481c2011-08-09 23:25:42 +00002459
2460static bool DecodeMemBarrierOption(llvm::MCInst &Inst, unsigned Val,
2461 uint64_t Address, const void *Decoder) {
2462 switch (Val) {
2463 default:
2464 return false;
2465 case 0xF: // SY
2466 case 0xE: // ST
2467 case 0xB: // ISH
2468 case 0xA: // ISHST
2469 case 0x7: // NSH
2470 case 0x6: // NSHST
2471 case 0x3: // OSH
2472 case 0x2: // OSHST
2473 break;
2474 }
2475
2476 Inst.addOperand(MCOperand::CreateImm(Val));
2477 return true;
2478}
2479
Owen Anderson26d2f0a2011-08-11 20:21:46 +00002480static bool DecodeMSRMask(llvm::MCInst &Inst, unsigned Val,
2481 uint64_t Address, const void *Decoder) {
2482 if (!Val) return false;
2483 Inst.addOperand(MCOperand::CreateImm(Val));
2484 return true;
2485}
Owen Andersoncbfc0442011-08-11 21:34:58 +00002486
2487static bool DecodeDoubleRegExclusive(llvm::MCInst &Inst, unsigned Insn,
2488 uint64_t Address, const void *Decoder) {
2489 unsigned Rd = fieldFromInstruction32(Insn, 12, 4);
2490 unsigned Rt = fieldFromInstruction32(Insn, 0, 4);
2491 unsigned Rn = fieldFromInstruction32(Insn, 16, 4);
2492
2493 if (Inst.getOpcode() == ARM::STREXD)
2494 if (!DecoderGPRRegisterClass(Inst, Rd, Address, Decoder)) return false;
2495
2496 if ((Rt & 1) || Rt == 0xE || Rn == 0xF) return false;
2497 if (Rd == Rn || Rd == Rt || Rd == Rt+1) return false;
2498
2499 if (!DecodeGPRRegisterClass(Inst, Rt, Address, Decoder)) return false;
2500 if (!DecodeGPRRegisterClass(Inst, Rt+1, Address, Decoder)) return false;
2501 if (!DecodeGPRRegisterClass(Inst, Rn, Address, Decoder)) return false;
2502
2503 return true;
2504}
2505
2506