blob: 34dadf88238ca23a421383665d1fe6c30dcfabe5 [file] [log] [blame]
Kevin Enderbyca9c42c2009-09-15 00:27:25 +00001//===-- ARMAsmParser.cpp - Parse ARM assembly to MCInst instructions ------===//
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//===----------------------------------------------------------------------===//
9
Evan Cheng94b95502011-07-26 00:24:13 +000010#include "MCTargetDesc/ARMBaseInfo.h"
Evan Chengee04a6d2011-07-20 23:34:39 +000011#include "MCTargetDesc/ARMAddressingModes.h"
12#include "MCTargetDesc/ARMMCExpr.h"
Chris Lattnerc6ef2772010-01-22 01:44:57 +000013#include "llvm/MC/MCParser/MCAsmLexer.h"
14#include "llvm/MC/MCParser/MCAsmParser.h"
15#include "llvm/MC/MCParser/MCParsedAsmOperand.h"
Rafael Espindola64695402011-05-16 16:17:21 +000016#include "llvm/MC/MCAsmInfo.h"
Jim Grosbach642fc9c2010-11-05 22:33:53 +000017#include "llvm/MC/MCContext.h"
Kevin Enderbyca9c42c2009-09-15 00:27:25 +000018#include "llvm/MC/MCStreamer.h"
19#include "llvm/MC/MCExpr.h"
20#include "llvm/MC/MCInst.h"
Evan Cheng78011362011-08-23 20:15:21 +000021#include "llvm/MC/MCInstrDesc.h"
Evan Cheng94b95502011-07-26 00:24:13 +000022#include "llvm/MC/MCRegisterInfo.h"
Evan Chengebdeeab2011-07-08 01:53:10 +000023#include "llvm/MC/MCSubtargetInfo.h"
Evan Cheng94b95502011-07-26 00:24:13 +000024#include "llvm/MC/MCTargetAsmParser.h"
Jim Grosbach89df9962011-08-26 21:43:41 +000025#include "llvm/Support/MathExtras.h"
Chris Lattnerc6ef2772010-01-22 01:44:57 +000026#include "llvm/Support/SourceMgr.h"
Evan Cheng3e74d6f2011-08-24 18:08:43 +000027#include "llvm/Support/TargetRegistry.h"
Daniel Dunbarfa315de2010-08-11 06:37:12 +000028#include "llvm/Support/raw_ostream.h"
Jim Grosbach11e03e72011-08-22 18:50:36 +000029#include "llvm/ADT/BitVector.h"
Benjamin Kramer75ca4b92011-07-08 21:06:23 +000030#include "llvm/ADT/OwningPtr.h"
Evan Cheng94b95502011-07-26 00:24:13 +000031#include "llvm/ADT/STLExtras.h"
Chris Lattnerc6ef2772010-01-22 01:44:57 +000032#include "llvm/ADT/SmallVector.h"
Daniel Dunbar345a9a62010-08-11 06:37:20 +000033#include "llvm/ADT/StringSwitch.h"
Chris Lattnerc6ef2772010-01-22 01:44:57 +000034#include "llvm/ADT/Twine.h"
Evan Chengebdeeab2011-07-08 01:53:10 +000035
Kevin Enderbyca9c42c2009-09-15 00:27:25 +000036using namespace llvm;
37
Chris Lattner3a697562010-10-28 17:20:03 +000038namespace {
Bill Wendling146018f2010-11-06 21:42:12 +000039
40class ARMOperand;
Jim Grosbach16c74252010-10-29 14:46:02 +000041
Jim Grosbach7636bf62011-12-02 00:35:16 +000042enum VectorLaneTy { NoLanes, AllLanes, IndexedLane };
Jim Grosbach98b05a52011-11-30 01:09:44 +000043
Evan Cheng94b95502011-07-26 00:24:13 +000044class ARMAsmParser : public MCTargetAsmParser {
Evan Chengffc0e732011-07-09 05:47:46 +000045 MCSubtargetInfo &STI;
Kevin Enderbyca9c42c2009-09-15 00:27:25 +000046 MCAsmParser &Parser;
Jim Grosbach28f08c92012-03-05 19:33:30 +000047 const MCRegisterInfo *MRI;
Kevin Enderbyca9c42c2009-09-15 00:27:25 +000048
Jim Grosbacha39cda72011-12-14 02:16:11 +000049 // Map of register aliases registers via the .req directive.
50 StringMap<unsigned> RegisterReqs;
51
Jim Grosbachf8e1e3e2011-08-29 22:24:09 +000052 struct {
53 ARMCC::CondCodes Cond; // Condition for IT block.
54 unsigned Mask:4; // Condition mask for instructions.
55 // Starting at first 1 (from lsb).
56 // '1' condition as indicated in IT.
57 // '0' inverse of condition (else).
58 // Count of instructions in IT block is
59 // 4 - trailingzeroes(mask)
60
61 bool FirstCond; // Explicit flag for when we're parsing the
62 // First instruction in the IT block. It's
63 // implied in the mask, so needs special
64 // handling.
65
66 unsigned CurPosition; // Current position in parsing of IT
67 // block. In range [0,3]. Initialized
68 // according to count of instructions in block.
69 // ~0U if no active IT block.
70 } ITState;
71 bool inITBlock() { return ITState.CurPosition != ~0U;}
Jim Grosbacha1109882011-09-02 23:22:08 +000072 void forwardITPosition() {
73 if (!inITBlock()) return;
74 // Move to the next instruction in the IT block, if there is one. If not,
75 // mark the block as done.
76 unsigned TZ = CountTrailingZeros_32(ITState.Mask);
77 if (++ITState.CurPosition == 5 - TZ)
78 ITState.CurPosition = ~0U; // Done with the IT block after this.
79 }
Jim Grosbachf8e1e3e2011-08-29 22:24:09 +000080
81
Kevin Enderbyca9c42c2009-09-15 00:27:25 +000082 MCAsmParser &getParser() const { return Parser; }
Kevin Enderbyca9c42c2009-09-15 00:27:25 +000083 MCAsmLexer &getLexer() const { return Parser.getLexer(); }
84
85 void Warning(SMLoc L, const Twine &Msg) { Parser.Warning(L, Msg); }
Kevin Enderbyca9c42c2009-09-15 00:27:25 +000086 bool Error(SMLoc L, const Twine &Msg) { return Parser.Error(L, Msg); }
87
Jim Grosbach1355cf12011-07-26 17:10:22 +000088 int tryParseRegister();
89 bool tryParseRegisterWithWriteBack(SmallVectorImpl<MCParsedAsmOperand*> &);
Jim Grosbach0d87ec22011-07-26 20:41:24 +000090 int tryParseShiftRegister(SmallVectorImpl<MCParsedAsmOperand*> &);
Jim Grosbach1355cf12011-07-26 17:10:22 +000091 bool parseRegisterList(SmallVectorImpl<MCParsedAsmOperand*> &);
Jim Grosbach7ce05792011-08-03 23:50:40 +000092 bool parseMemory(SmallVectorImpl<MCParsedAsmOperand*> &);
Jim Grosbach1355cf12011-07-26 17:10:22 +000093 bool parseOperand(SmallVectorImpl<MCParsedAsmOperand*> &, StringRef Mnemonic);
94 bool parsePrefix(ARMMCExpr::VariantKind &RefKind);
Jim Grosbach7ce05792011-08-03 23:50:40 +000095 bool parseMemRegOffsetShift(ARM_AM::ShiftOpc &ShiftType,
96 unsigned &ShiftAmount);
Jim Grosbach1355cf12011-07-26 17:10:22 +000097 bool parseDirectiveWord(unsigned Size, SMLoc L);
98 bool parseDirectiveThumb(SMLoc L);
Jim Grosbach9a70df92011-12-07 18:04:19 +000099 bool parseDirectiveARM(SMLoc L);
Jim Grosbach1355cf12011-07-26 17:10:22 +0000100 bool parseDirectiveThumbFunc(SMLoc L);
101 bool parseDirectiveCode(SMLoc L);
102 bool parseDirectiveSyntax(SMLoc L);
Jim Grosbacha39cda72011-12-14 02:16:11 +0000103 bool parseDirectiveReq(StringRef Name, SMLoc L);
104 bool parseDirectiveUnreq(SMLoc L);
Jason W Kimd7c9e082011-12-20 17:38:12 +0000105 bool parseDirectiveArch(SMLoc L);
106 bool parseDirectiveEabiAttr(SMLoc L);
Kevin Enderby515d5092009-10-15 20:48:48 +0000107
Jim Grosbach1355cf12011-07-26 17:10:22 +0000108 StringRef splitMnemonic(StringRef Mnemonic, unsigned &PredicationCode,
Jim Grosbach89df9962011-08-26 21:43:41 +0000109 bool &CarrySetting, unsigned &ProcessorIMod,
110 StringRef &ITMask);
Jim Grosbach1355cf12011-07-26 17:10:22 +0000111 void getMnemonicAcceptInfo(StringRef Mnemonic, bool &CanAcceptCarrySet,
Bruno Cardoso Lopesfdcee772011-01-18 20:55:11 +0000112 bool &CanAcceptPredicationCode);
Jim Grosbach16c74252010-10-29 14:46:02 +0000113
Evan Chengebdeeab2011-07-08 01:53:10 +0000114 bool isThumb() const {
115 // FIXME: Can tablegen auto-generate this?
Evan Chengffc0e732011-07-09 05:47:46 +0000116 return (STI.getFeatureBits() & ARM::ModeThumb) != 0;
Evan Chengebdeeab2011-07-08 01:53:10 +0000117 }
Evan Chengebdeeab2011-07-08 01:53:10 +0000118 bool isThumbOne() const {
Evan Chengffc0e732011-07-09 05:47:46 +0000119 return isThumb() && (STI.getFeatureBits() & ARM::FeatureThumb2) == 0;
Evan Chengebdeeab2011-07-08 01:53:10 +0000120 }
Jim Grosbach47a0d522011-08-16 20:45:50 +0000121 bool isThumbTwo() const {
122 return isThumb() && (STI.getFeatureBits() & ARM::FeatureThumb2);
123 }
Jim Grosbach194bd892011-08-16 22:20:01 +0000124 bool hasV6Ops() const {
125 return STI.getFeatureBits() & ARM::HasV6Ops;
126 }
James Molloyacad68d2011-09-28 14:21:38 +0000127 bool hasV7Ops() const {
128 return STI.getFeatureBits() & ARM::HasV7Ops;
129 }
Evan Cheng32869202011-07-08 22:36:29 +0000130 void SwitchMode() {
Evan Chengffc0e732011-07-09 05:47:46 +0000131 unsigned FB = ComputeAvailableFeatures(STI.ToggleFeature(ARM::ModeThumb));
132 setAvailableFeatures(FB);
Evan Cheng32869202011-07-08 22:36:29 +0000133 }
James Molloyacad68d2011-09-28 14:21:38 +0000134 bool isMClass() const {
135 return STI.getFeatureBits() & ARM::FeatureMClass;
136 }
Evan Chengebdeeab2011-07-08 01:53:10 +0000137
Kevin Enderbya7ba3a82009-10-06 22:26:42 +0000138 /// @name Auto-generated Match Functions
139 /// {
Daniel Dunbar3483aca2010-08-11 05:24:50 +0000140
Chris Lattner0692ee62010-09-06 19:11:01 +0000141#define GET_ASSEMBLER_HEADER
142#include "ARMGenAsmMatcher.inc"
Kevin Enderbya7ba3a82009-10-06 22:26:42 +0000143
Kevin Enderbya7ba3a82009-10-06 22:26:42 +0000144 /// }
145
Jim Grosbach89df9962011-08-26 21:43:41 +0000146 OperandMatchResultTy parseITCondCode(SmallVectorImpl<MCParsedAsmOperand*>&);
Jim Grosbach43904292011-07-25 20:14:50 +0000147 OperandMatchResultTy parseCoprocNumOperand(
Jim Grosbachf922c472011-02-12 01:34:40 +0000148 SmallVectorImpl<MCParsedAsmOperand*>&);
Jim Grosbach43904292011-07-25 20:14:50 +0000149 OperandMatchResultTy parseCoprocRegOperand(
Jim Grosbachf922c472011-02-12 01:34:40 +0000150 SmallVectorImpl<MCParsedAsmOperand*>&);
Jim Grosbach9b8f2a02011-10-12 17:34:41 +0000151 OperandMatchResultTy parseCoprocOptionOperand(
152 SmallVectorImpl<MCParsedAsmOperand*>&);
Jim Grosbach43904292011-07-25 20:14:50 +0000153 OperandMatchResultTy parseMemBarrierOptOperand(
Bruno Cardoso Lopes8bba1a52011-02-18 19:49:06 +0000154 SmallVectorImpl<MCParsedAsmOperand*>&);
Jim Grosbach43904292011-07-25 20:14:50 +0000155 OperandMatchResultTy parseProcIFlagsOperand(
Bruno Cardoso Lopes8bba1a52011-02-18 19:49:06 +0000156 SmallVectorImpl<MCParsedAsmOperand*>&);
Jim Grosbach43904292011-07-25 20:14:50 +0000157 OperandMatchResultTy parseMSRMaskOperand(
Bruno Cardoso Lopes8bba1a52011-02-18 19:49:06 +0000158 SmallVectorImpl<MCParsedAsmOperand*>&);
Jim Grosbachf6c05252011-07-21 17:23:04 +0000159 OperandMatchResultTy parsePKHImm(SmallVectorImpl<MCParsedAsmOperand*> &O,
160 StringRef Op, int Low, int High);
161 OperandMatchResultTy parsePKHLSLImm(SmallVectorImpl<MCParsedAsmOperand*> &O) {
162 return parsePKHImm(O, "lsl", 0, 31);
163 }
164 OperandMatchResultTy parsePKHASRImm(SmallVectorImpl<MCParsedAsmOperand*> &O) {
165 return parsePKHImm(O, "asr", 1, 32);
166 }
Jim Grosbachc27d4f92011-07-22 17:44:50 +0000167 OperandMatchResultTy parseSetEndImm(SmallVectorImpl<MCParsedAsmOperand*>&);
Jim Grosbach580f4a92011-07-25 22:20:28 +0000168 OperandMatchResultTy parseShifterImm(SmallVectorImpl<MCParsedAsmOperand*>&);
Jim Grosbach7e1547e2011-07-27 20:15:40 +0000169 OperandMatchResultTy parseRotImm(SmallVectorImpl<MCParsedAsmOperand*>&);
Jim Grosbach293a2ee2011-07-28 21:34:26 +0000170 OperandMatchResultTy parseBitfield(SmallVectorImpl<MCParsedAsmOperand*>&);
Jim Grosbach7ce05792011-08-03 23:50:40 +0000171 OperandMatchResultTy parsePostIdxReg(SmallVectorImpl<MCParsedAsmOperand*>&);
Jim Grosbach251bf252011-08-10 21:56:18 +0000172 OperandMatchResultTy parseAM3Offset(SmallVectorImpl<MCParsedAsmOperand*>&);
Jim Grosbach9d390362011-10-03 23:38:36 +0000173 OperandMatchResultTy parseFPImm(SmallVectorImpl<MCParsedAsmOperand*>&);
Jim Grosbach862019c2011-10-18 23:02:30 +0000174 OperandMatchResultTy parseVectorList(SmallVectorImpl<MCParsedAsmOperand*>&);
Jim Grosbach7636bf62011-12-02 00:35:16 +0000175 OperandMatchResultTy parseVectorLane(VectorLaneTy &LaneKind, unsigned &Index);
Bruno Cardoso Lopesae085542011-03-31 23:26:08 +0000176
177 // Asm Match Converter Methods
Jim Grosbacha77295d2011-09-08 22:07:06 +0000178 bool cvtT2LdrdPre(MCInst &Inst, unsigned Opcode,
179 const SmallVectorImpl<MCParsedAsmOperand*> &);
180 bool cvtT2StrdPre(MCInst &Inst, unsigned Opcode,
181 const SmallVectorImpl<MCParsedAsmOperand*> &);
Jim Grosbacheeec0252011-09-08 00:39:19 +0000182 bool cvtLdWriteBackRegT2AddrModeImm8(MCInst &Inst, unsigned Opcode,
183 const SmallVectorImpl<MCParsedAsmOperand*> &);
Jim Grosbachee2c2a42011-09-16 21:55:56 +0000184 bool cvtStWriteBackRegT2AddrModeImm8(MCInst &Inst, unsigned Opcode,
185 const SmallVectorImpl<MCParsedAsmOperand*> &);
Jim Grosbach1355cf12011-07-26 17:10:22 +0000186 bool cvtLdWriteBackRegAddrMode2(MCInst &Inst, unsigned Opcode,
Bruno Cardoso Lopesae085542011-03-31 23:26:08 +0000187 const SmallVectorImpl<MCParsedAsmOperand*> &);
Owen Anderson9ab0f252011-08-26 20:43:14 +0000188 bool cvtLdWriteBackRegAddrModeImm12(MCInst &Inst, unsigned Opcode,
189 const SmallVectorImpl<MCParsedAsmOperand*> &);
Jim Grosbach548340c2011-08-11 19:22:40 +0000190 bool cvtStWriteBackRegAddrModeImm12(MCInst &Inst, unsigned Opcode,
191 const SmallVectorImpl<MCParsedAsmOperand*> &);
Jim Grosbach1355cf12011-07-26 17:10:22 +0000192 bool cvtStWriteBackRegAddrMode2(MCInst &Inst, unsigned Opcode,
Bruno Cardoso Lopesae085542011-03-31 23:26:08 +0000193 const SmallVectorImpl<MCParsedAsmOperand*> &);
Jim Grosbach7b8f46c2011-08-11 21:17:22 +0000194 bool cvtStWriteBackRegAddrMode3(MCInst &Inst, unsigned Opcode,
195 const SmallVectorImpl<MCParsedAsmOperand*> &);
Jim Grosbach7ce05792011-08-03 23:50:40 +0000196 bool cvtLdExtTWriteBackImm(MCInst &Inst, unsigned Opcode,
197 const SmallVectorImpl<MCParsedAsmOperand*> &);
198 bool cvtLdExtTWriteBackReg(MCInst &Inst, unsigned Opcode,
199 const SmallVectorImpl<MCParsedAsmOperand*> &);
200 bool cvtStExtTWriteBackImm(MCInst &Inst, unsigned Opcode,
201 const SmallVectorImpl<MCParsedAsmOperand*> &);
202 bool cvtStExtTWriteBackReg(MCInst &Inst, unsigned Opcode,
203 const SmallVectorImpl<MCParsedAsmOperand*> &);
Jim Grosbach2fd2b872011-08-10 20:29:19 +0000204 bool cvtLdrdPre(MCInst &Inst, unsigned Opcode,
205 const SmallVectorImpl<MCParsedAsmOperand*> &);
Jim Grosbach14605d12011-08-11 20:28:23 +0000206 bool cvtStrdPre(MCInst &Inst, unsigned Opcode,
207 const SmallVectorImpl<MCParsedAsmOperand*> &);
Jim Grosbach623a4542011-08-10 22:42:16 +0000208 bool cvtLdWriteBackRegAddrMode3(MCInst &Inst, unsigned Opcode,
209 const SmallVectorImpl<MCParsedAsmOperand*> &);
Jim Grosbach88ae2bc2011-08-19 22:07:46 +0000210 bool cvtThumbMultiply(MCInst &Inst, unsigned Opcode,
211 const SmallVectorImpl<MCParsedAsmOperand*> &);
Jim Grosbach12431322011-10-24 22:16:58 +0000212 bool cvtVLDwbFixed(MCInst &Inst, unsigned Opcode,
213 const SmallVectorImpl<MCParsedAsmOperand*> &);
214 bool cvtVLDwbRegister(MCInst &Inst, unsigned Opcode,
215 const SmallVectorImpl<MCParsedAsmOperand*> &);
Jim Grosbach4334e032011-10-31 21:50:31 +0000216 bool cvtVSTwbFixed(MCInst &Inst, unsigned Opcode,
217 const SmallVectorImpl<MCParsedAsmOperand*> &);
218 bool cvtVSTwbRegister(MCInst &Inst, unsigned Opcode,
219 const SmallVectorImpl<MCParsedAsmOperand*> &);
Jim Grosbach189610f2011-07-26 18:25:39 +0000220
221 bool validateInstruction(MCInst &Inst,
222 const SmallVectorImpl<MCParsedAsmOperand*> &Ops);
Jim Grosbach83ec8772011-11-10 23:42:14 +0000223 bool processInstruction(MCInst &Inst,
Jim Grosbachf8fce712011-08-11 17:35:48 +0000224 const SmallVectorImpl<MCParsedAsmOperand*> &Ops);
Jim Grosbachd54b4e62011-08-16 21:12:37 +0000225 bool shouldOmitCCOutOperand(StringRef Mnemonic,
226 SmallVectorImpl<MCParsedAsmOperand*> &Operands);
Jim Grosbach189610f2011-07-26 18:25:39 +0000227
Kevin Enderbyca9c42c2009-09-15 00:27:25 +0000228public:
Jim Grosbach47a0d522011-08-16 20:45:50 +0000229 enum ARMMatchResultTy {
Jim Grosbach194bd892011-08-16 22:20:01 +0000230 Match_RequiresITBlock = FIRST_TARGET_MATCH_RESULT_TY,
Jim Grosbachf8e1e3e2011-08-29 22:24:09 +0000231 Match_RequiresNotITBlock,
Jim Grosbach194bd892011-08-16 22:20:01 +0000232 Match_RequiresV6,
233 Match_RequiresThumb2
Jim Grosbach47a0d522011-08-16 20:45:50 +0000234 };
235
Evan Chengffc0e732011-07-09 05:47:46 +0000236 ARMAsmParser(MCSubtargetInfo &_STI, MCAsmParser &_Parser)
Evan Cheng94b95502011-07-26 00:24:13 +0000237 : MCTargetAsmParser(), STI(_STI), Parser(_Parser) {
Evan Chengebdeeab2011-07-08 01:53:10 +0000238 MCAsmParserExtension::Initialize(_Parser);
Evan Cheng32869202011-07-08 22:36:29 +0000239
Jim Grosbach28f08c92012-03-05 19:33:30 +0000240 // Cache the MCRegisterInfo.
241 MRI = &getContext().getRegisterInfo();
242
Evan Chengebdeeab2011-07-08 01:53:10 +0000243 // Initialize the set of available features.
Evan Chengffc0e732011-07-09 05:47:46 +0000244 setAvailableFeatures(ComputeAvailableFeatures(STI.getFeatureBits()));
Jim Grosbachf8e1e3e2011-08-29 22:24:09 +0000245
246 // Not in an ITBlock to start with.
247 ITState.CurPosition = ~0U;
Evan Chengebdeeab2011-07-08 01:53:10 +0000248 }
Kevin Enderbyca9c42c2009-09-15 00:27:25 +0000249
Jim Grosbach1355cf12011-07-26 17:10:22 +0000250 // Implementation of the MCTargetAsmParser interface:
251 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc);
252 bool ParseInstruction(StringRef Name, SMLoc NameLoc,
Jim Grosbach189610f2011-07-26 18:25:39 +0000253 SmallVectorImpl<MCParsedAsmOperand*> &Operands);
Jim Grosbach1355cf12011-07-26 17:10:22 +0000254 bool ParseDirective(AsmToken DirectiveID);
255
Jim Grosbach47a0d522011-08-16 20:45:50 +0000256 unsigned checkTargetMatchPredicate(MCInst &Inst);
257
Jim Grosbach1355cf12011-07-26 17:10:22 +0000258 bool MatchAndEmitInstruction(SMLoc IDLoc,
259 SmallVectorImpl<MCParsedAsmOperand*> &Operands,
260 MCStreamer &Out);
Kevin Enderbyca9c42c2009-09-15 00:27:25 +0000261};
Jim Grosbach16c74252010-10-29 14:46:02 +0000262} // end anonymous namespace
263
Chris Lattner3a697562010-10-28 17:20:03 +0000264namespace {
265
Kevin Enderbya7ba3a82009-10-06 22:26:42 +0000266/// ARMOperand - Instances of this class represent a parsed ARM machine
267/// instruction.
Bill Wendling146018f2010-11-06 21:42:12 +0000268class ARMOperand : public MCParsedAsmOperand {
Sean Callanan76264762010-04-02 22:27:05 +0000269 enum KindTy {
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000270 k_CondCode,
271 k_CCOut,
272 k_ITCondMask,
273 k_CoprocNum,
274 k_CoprocReg,
Jim Grosbach9b8f2a02011-10-12 17:34:41 +0000275 k_CoprocOption,
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000276 k_Immediate,
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000277 k_MemBarrierOpt,
278 k_Memory,
279 k_PostIndexRegister,
280 k_MSRMask,
281 k_ProcIFlags,
Jim Grosbach460a9052011-10-07 23:56:00 +0000282 k_VectorIndex,
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000283 k_Register,
284 k_RegisterList,
285 k_DPRRegisterList,
286 k_SPRRegisterList,
Jim Grosbach862019c2011-10-18 23:02:30 +0000287 k_VectorList,
Jim Grosbach98b05a52011-11-30 01:09:44 +0000288 k_VectorListAllLanes,
Jim Grosbach7636bf62011-12-02 00:35:16 +0000289 k_VectorListIndexed,
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000290 k_ShiftedRegister,
291 k_ShiftedImmediate,
292 k_ShifterImmediate,
293 k_RotateImmediate,
294 k_BitfieldDescriptor,
295 k_Token
Kevin Enderbya7ba3a82009-10-06 22:26:42 +0000296 } Kind;
297
Sean Callanan76264762010-04-02 22:27:05 +0000298 SMLoc StartLoc, EndLoc;
Bill Wendling24d22d22010-11-18 21:50:54 +0000299 SmallVector<unsigned, 8> Registers;
Kevin Enderbya7ba3a82009-10-06 22:26:42 +0000300
301 union {
302 struct {
Daniel Dunbar8462b302010-08-11 06:36:53 +0000303 ARMCC::CondCodes Val;
304 } CC;
305
306 struct {
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +0000307 unsigned Val;
308 } Cop;
309
310 struct {
Jim Grosbach9b8f2a02011-10-12 17:34:41 +0000311 unsigned Val;
312 } CoprocOption;
313
314 struct {
Jim Grosbach89df9962011-08-26 21:43:41 +0000315 unsigned Mask:4;
316 } ITMask;
317
318 struct {
319 ARM_MB::MemBOpt Val;
320 } MBOpt;
321
322 struct {
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000323 ARM_PROC::IFlags Val;
324 } IFlags;
325
326 struct {
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +0000327 unsigned Val;
328 } MMask;
329
330 struct {
Kevin Enderbya7ba3a82009-10-06 22:26:42 +0000331 const char *Data;
332 unsigned Length;
333 } Tok;
334
335 struct {
336 unsigned RegNum;
337 } Reg;
338
Jim Grosbach862019c2011-10-18 23:02:30 +0000339 // A vector register list is a sequential list of 1 to 4 registers.
340 struct {
341 unsigned RegNum;
342 unsigned Count;
Jim Grosbach7636bf62011-12-02 00:35:16 +0000343 unsigned LaneIndex;
Jim Grosbach0aaf4cd2011-12-15 21:44:33 +0000344 bool isDoubleSpaced;
Jim Grosbach862019c2011-10-18 23:02:30 +0000345 } VectorList;
346
Bill Wendling8155e5b2010-11-06 22:19:43 +0000347 struct {
Jim Grosbach460a9052011-10-07 23:56:00 +0000348 unsigned Val;
349 } VectorIndex;
350
351 struct {
Kevin Enderbycfe07242009-10-13 22:19:02 +0000352 const MCExpr *Val;
353 } Imm;
Jim Grosbach16c74252010-10-29 14:46:02 +0000354
Daniel Dunbar6a5c22e2011-01-10 15:26:21 +0000355 /// Combined record for all forms of ARM address expressions.
Kevin Enderbya7ba3a82009-10-06 22:26:42 +0000356 struct {
357 unsigned BaseRegNum;
Jim Grosbach7ce05792011-08-03 23:50:40 +0000358 // Offset is in OffsetReg or OffsetImm. If both are zero, no offset
359 // was specified.
360 const MCConstantExpr *OffsetImm; // Offset immediate value
361 unsigned OffsetRegNum; // Offset register num, when OffsetImm == NULL
362 ARM_AM::ShiftOpc ShiftType; // Shift type for OffsetReg
Jim Grosbach57dcb852011-10-11 17:29:55 +0000363 unsigned ShiftImm; // shift for OffsetReg.
364 unsigned Alignment; // 0 = no alignment specified
Jim Grosbacheeaf1c12011-12-19 18:31:43 +0000365 // n = alignment in bytes (2, 4, 8, 16, or 32)
Jim Grosbach7ce05792011-08-03 23:50:40 +0000366 unsigned isNegative : 1; // Negated OffsetReg? (~'U' bit)
Jim Grosbache53c87b2011-10-11 15:59:20 +0000367 } Memory;
Owen Anderson00828302011-03-18 22:50:18 +0000368
369 struct {
Jim Grosbach7ce05792011-08-03 23:50:40 +0000370 unsigned RegNum;
Jim Grosbachf4fa3d62011-08-05 21:28:30 +0000371 bool isAdd;
372 ARM_AM::ShiftOpc ShiftTy;
373 unsigned ShiftImm;
Jim Grosbach7ce05792011-08-03 23:50:40 +0000374 } PostIdxReg;
375
376 struct {
Jim Grosbach580f4a92011-07-25 22:20:28 +0000377 bool isASR;
Jim Grosbache8606dc2011-07-13 17:50:29 +0000378 unsigned Imm;
Jim Grosbach580f4a92011-07-25 22:20:28 +0000379 } ShifterImm;
Jim Grosbache8606dc2011-07-13 17:50:29 +0000380 struct {
381 ARM_AM::ShiftOpc ShiftTy;
382 unsigned SrcReg;
383 unsigned ShiftReg;
384 unsigned ShiftImm;
Jim Grosbachaf6981f2011-07-25 20:49:51 +0000385 } RegShiftedReg;
Owen Anderson92a20222011-07-21 18:54:16 +0000386 struct {
387 ARM_AM::ShiftOpc ShiftTy;
388 unsigned SrcReg;
389 unsigned ShiftImm;
Jim Grosbachaf6981f2011-07-25 20:49:51 +0000390 } RegShiftedImm;
Jim Grosbach7e1547e2011-07-27 20:15:40 +0000391 struct {
392 unsigned Imm;
393 } RotImm;
Jim Grosbach293a2ee2011-07-28 21:34:26 +0000394 struct {
395 unsigned LSB;
396 unsigned Width;
397 } Bitfield;
Kevin Enderbya7ba3a82009-10-06 22:26:42 +0000398 };
Jim Grosbach16c74252010-10-29 14:46:02 +0000399
Bill Wendling146018f2010-11-06 21:42:12 +0000400 ARMOperand(KindTy K) : MCParsedAsmOperand(), Kind(K) {}
401public:
Sean Callanan76264762010-04-02 22:27:05 +0000402 ARMOperand(const ARMOperand &o) : MCParsedAsmOperand() {
403 Kind = o.Kind;
404 StartLoc = o.StartLoc;
405 EndLoc = o.EndLoc;
406 switch (Kind) {
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000407 case k_CondCode:
Daniel Dunbar8462b302010-08-11 06:36:53 +0000408 CC = o.CC;
409 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000410 case k_ITCondMask:
Jim Grosbach89df9962011-08-26 21:43:41 +0000411 ITMask = o.ITMask;
412 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000413 case k_Token:
Daniel Dunbar8462b302010-08-11 06:36:53 +0000414 Tok = o.Tok;
Sean Callanan76264762010-04-02 22:27:05 +0000415 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000416 case k_CCOut:
417 case k_Register:
Sean Callanan76264762010-04-02 22:27:05 +0000418 Reg = o.Reg;
419 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000420 case k_RegisterList:
421 case k_DPRRegisterList:
422 case k_SPRRegisterList:
Bill Wendling24d22d22010-11-18 21:50:54 +0000423 Registers = o.Registers;
Bill Wendling8d5acb72010-11-06 19:56:04 +0000424 break;
Jim Grosbach862019c2011-10-18 23:02:30 +0000425 case k_VectorList:
Jim Grosbach98b05a52011-11-30 01:09:44 +0000426 case k_VectorListAllLanes:
Jim Grosbach7636bf62011-12-02 00:35:16 +0000427 case k_VectorListIndexed:
Jim Grosbach862019c2011-10-18 23:02:30 +0000428 VectorList = o.VectorList;
429 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000430 case k_CoprocNum:
431 case k_CoprocReg:
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +0000432 Cop = o.Cop;
433 break;
Jim Grosbach9b8f2a02011-10-12 17:34:41 +0000434 case k_CoprocOption:
435 CoprocOption = o.CoprocOption;
436 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000437 case k_Immediate:
Sean Callanan76264762010-04-02 22:27:05 +0000438 Imm = o.Imm;
439 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000440 case k_MemBarrierOpt:
Bruno Cardoso Lopes706d9462011-02-07 22:09:15 +0000441 MBOpt = o.MBOpt;
442 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000443 case k_Memory:
Jim Grosbache53c87b2011-10-11 15:59:20 +0000444 Memory = o.Memory;
Sean Callanan76264762010-04-02 22:27:05 +0000445 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000446 case k_PostIndexRegister:
Jim Grosbach7ce05792011-08-03 23:50:40 +0000447 PostIdxReg = o.PostIdxReg;
448 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000449 case k_MSRMask:
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +0000450 MMask = o.MMask;
451 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000452 case k_ProcIFlags:
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000453 IFlags = o.IFlags;
Owen Anderson00828302011-03-18 22:50:18 +0000454 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000455 case k_ShifterImmediate:
Jim Grosbach580f4a92011-07-25 22:20:28 +0000456 ShifterImm = o.ShifterImm;
Owen Anderson00828302011-03-18 22:50:18 +0000457 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000458 case k_ShiftedRegister:
Jim Grosbachaf6981f2011-07-25 20:49:51 +0000459 RegShiftedReg = o.RegShiftedReg;
Jim Grosbache8606dc2011-07-13 17:50:29 +0000460 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000461 case k_ShiftedImmediate:
Jim Grosbachaf6981f2011-07-25 20:49:51 +0000462 RegShiftedImm = o.RegShiftedImm;
Owen Anderson92a20222011-07-21 18:54:16 +0000463 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000464 case k_RotateImmediate:
Jim Grosbach7e1547e2011-07-27 20:15:40 +0000465 RotImm = o.RotImm;
466 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000467 case k_BitfieldDescriptor:
Jim Grosbach293a2ee2011-07-28 21:34:26 +0000468 Bitfield = o.Bitfield;
469 break;
Jim Grosbach460a9052011-10-07 23:56:00 +0000470 case k_VectorIndex:
471 VectorIndex = o.VectorIndex;
472 break;
Sean Callanan76264762010-04-02 22:27:05 +0000473 }
474 }
Jim Grosbach16c74252010-10-29 14:46:02 +0000475
Sean Callanan76264762010-04-02 22:27:05 +0000476 /// getStartLoc - Get the location of the first token of this operand.
477 SMLoc getStartLoc() const { return StartLoc; }
478 /// getEndLoc - Get the location of the last token of this operand.
479 SMLoc getEndLoc() const { return EndLoc; }
Kevin Enderbya7ba3a82009-10-06 22:26:42 +0000480
Daniel Dunbar8462b302010-08-11 06:36:53 +0000481 ARMCC::CondCodes getCondCode() const {
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000482 assert(Kind == k_CondCode && "Invalid access!");
Daniel Dunbar8462b302010-08-11 06:36:53 +0000483 return CC.Val;
484 }
485
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +0000486 unsigned getCoproc() const {
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000487 assert((Kind == k_CoprocNum || Kind == k_CoprocReg) && "Invalid access!");
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +0000488 return Cop.Val;
489 }
490
Kevin Enderbya7ba3a82009-10-06 22:26:42 +0000491 StringRef getToken() const {
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000492 assert(Kind == k_Token && "Invalid access!");
Kevin Enderbya7ba3a82009-10-06 22:26:42 +0000493 return StringRef(Tok.Data, Tok.Length);
494 }
495
496 unsigned getReg() const {
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000497 assert((Kind == k_Register || Kind == k_CCOut) && "Invalid access!");
Bill Wendling7729e062010-11-09 22:44:22 +0000498 return Reg.RegNum;
Kevin Enderbya7ba3a82009-10-06 22:26:42 +0000499 }
500
Bill Wendling5fa22a12010-11-09 23:28:44 +0000501 const SmallVectorImpl<unsigned> &getRegList() const {
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000502 assert((Kind == k_RegisterList || Kind == k_DPRRegisterList ||
503 Kind == k_SPRRegisterList) && "Invalid access!");
Bill Wendling24d22d22010-11-18 21:50:54 +0000504 return Registers;
Bill Wendling8d5acb72010-11-06 19:56:04 +0000505 }
506
Kevin Enderbycfe07242009-10-13 22:19:02 +0000507 const MCExpr *getImm() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000508 assert(isImm() && "Invalid access!");
Kevin Enderbycfe07242009-10-13 22:19:02 +0000509 return Imm.Val;
510 }
511
Jim Grosbach460a9052011-10-07 23:56:00 +0000512 unsigned getVectorIndex() const {
513 assert(Kind == k_VectorIndex && "Invalid access!");
514 return VectorIndex.Val;
515 }
516
Bruno Cardoso Lopes706d9462011-02-07 22:09:15 +0000517 ARM_MB::MemBOpt getMemBarrierOpt() const {
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000518 assert(Kind == k_MemBarrierOpt && "Invalid access!");
Bruno Cardoso Lopes706d9462011-02-07 22:09:15 +0000519 return MBOpt.Val;
520 }
521
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000522 ARM_PROC::IFlags getProcIFlags() const {
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000523 assert(Kind == k_ProcIFlags && "Invalid access!");
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000524 return IFlags.Val;
525 }
526
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +0000527 unsigned getMSRMask() const {
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000528 assert(Kind == k_MSRMask && "Invalid access!");
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +0000529 return MMask.Val;
530 }
531
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000532 bool isCoprocNum() const { return Kind == k_CoprocNum; }
533 bool isCoprocReg() const { return Kind == k_CoprocReg; }
Jim Grosbach9b8f2a02011-10-12 17:34:41 +0000534 bool isCoprocOption() const { return Kind == k_CoprocOption; }
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000535 bool isCondCode() const { return Kind == k_CondCode; }
536 bool isCCOut() const { return Kind == k_CCOut; }
537 bool isITMask() const { return Kind == k_ITCondMask; }
538 bool isITCondCode() const { return Kind == k_CondCode; }
539 bool isImm() const { return Kind == k_Immediate; }
Jim Grosbach51222d12012-01-20 18:09:51 +0000540 bool isFPImm() const {
541 if (!isImm()) return false;
542 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
543 if (!CE) return false;
544 int Val = ARM_AM::getFP32Imm(APInt(32, CE->getValue()));
545 return Val != -1;
546 }
Jim Grosbach4050bc42011-12-22 22:19:05 +0000547 bool isFBits16() const {
548 if (!isImm()) return false;
549 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
550 if (!CE) return false;
551 int64_t Value = CE->getValue();
552 return Value >= 0 && Value <= 16;
553 }
554 bool isFBits32() const {
555 if (!isImm()) return false;
556 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
557 if (!CE) return false;
558 int64_t Value = CE->getValue();
559 return Value >= 1 && Value <= 32;
560 }
Jim Grosbacha77295d2011-09-08 22:07:06 +0000561 bool isImm8s4() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000562 if (!isImm()) return false;
Jim Grosbacha77295d2011-09-08 22:07:06 +0000563 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
564 if (!CE) return false;
565 int64_t Value = CE->getValue();
566 return ((Value & 3) == 0) && Value >= -1020 && Value <= 1020;
567 }
Jim Grosbach72f39f82011-08-24 21:22:15 +0000568 bool isImm0_1020s4() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000569 if (!isImm()) return false;
Jim Grosbach72f39f82011-08-24 21:22:15 +0000570 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
571 if (!CE) return false;
572 int64_t Value = CE->getValue();
573 return ((Value & 3) == 0) && Value >= 0 && Value <= 1020;
574 }
575 bool isImm0_508s4() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000576 if (!isImm()) return false;
Jim Grosbach72f39f82011-08-24 21:22:15 +0000577 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
578 if (!CE) return false;
579 int64_t Value = CE->getValue();
580 return ((Value & 3) == 0) && Value >= 0 && Value <= 508;
581 }
Jim Grosbach4e53fe82012-04-05 20:57:13 +0000582 bool isImm0_508s4Neg() const {
583 if (!isImm()) return false;
584 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
585 if (!CE) return false;
586 int64_t Value = -CE->getValue();
587 // explicitly exclude zero. we want that to use the normal 0_508 version.
588 return ((Value & 3) == 0) && Value > 0 && Value <= 508;
589 }
Jim Grosbach6b8f1e32011-06-27 23:54:06 +0000590 bool isImm0_255() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000591 if (!isImm()) return false;
Jim Grosbach6b8f1e32011-06-27 23:54:06 +0000592 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
593 if (!CE) return false;
594 int64_t Value = CE->getValue();
595 return Value >= 0 && Value < 256;
596 }
Jim Grosbach4e53fe82012-04-05 20:57:13 +0000597 bool isImm0_4095() const {
598 if (!isImm()) return false;
599 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
600 if (!CE) return false;
601 int64_t Value = CE->getValue();
602 return Value >= 0 && Value < 4096;
603 }
604 bool isImm0_4095Neg() const {
605 if (!isImm()) return false;
606 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
607 if (!CE) return false;
608 int64_t Value = -CE->getValue();
609 return Value > 0 && Value < 4096;
610 }
Jim Grosbach587f5062011-12-02 23:34:39 +0000611 bool isImm0_1() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000612 if (!isImm()) return false;
Jim Grosbach587f5062011-12-02 23:34:39 +0000613 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
614 if (!CE) return false;
615 int64_t Value = CE->getValue();
616 return Value >= 0 && Value < 2;
617 }
618 bool isImm0_3() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000619 if (!isImm()) return false;
Jim Grosbach587f5062011-12-02 23:34:39 +0000620 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
621 if (!CE) return false;
622 int64_t Value = CE->getValue();
623 return Value >= 0 && Value < 4;
624 }
Jim Grosbach83ab0702011-07-13 22:01:08 +0000625 bool isImm0_7() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000626 if (!isImm()) return false;
Jim Grosbach83ab0702011-07-13 22:01:08 +0000627 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
628 if (!CE) return false;
629 int64_t Value = CE->getValue();
630 return Value >= 0 && Value < 8;
631 }
632 bool isImm0_15() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000633 if (!isImm()) return false;
Jim Grosbach83ab0702011-07-13 22:01:08 +0000634 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
635 if (!CE) return false;
636 int64_t Value = CE->getValue();
637 return Value >= 0 && Value < 16;
638 }
Jim Grosbach7c6e42e2011-07-21 23:26:25 +0000639 bool isImm0_31() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000640 if (!isImm()) return false;
Jim Grosbach7c6e42e2011-07-21 23:26:25 +0000641 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
642 if (!CE) return false;
643 int64_t Value = CE->getValue();
644 return Value >= 0 && Value < 32;
645 }
Jim Grosbach730fe6c2011-12-08 01:30:04 +0000646 bool isImm0_63() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000647 if (!isImm()) return false;
Jim Grosbach730fe6c2011-12-08 01:30:04 +0000648 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
649 if (!CE) return false;
650 int64_t Value = CE->getValue();
651 return Value >= 0 && Value < 64;
652 }
Jim Grosbach3b8991c2011-12-07 01:07:24 +0000653 bool isImm8() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000654 if (!isImm()) return false;
Jim Grosbach3b8991c2011-12-07 01:07:24 +0000655 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
656 if (!CE) return false;
657 int64_t Value = CE->getValue();
658 return Value == 8;
659 }
660 bool isImm16() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000661 if (!isImm()) return false;
Jim Grosbach3b8991c2011-12-07 01:07:24 +0000662 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
663 if (!CE) return false;
664 int64_t Value = CE->getValue();
665 return Value == 16;
666 }
667 bool isImm32() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000668 if (!isImm()) return false;
Jim Grosbach3b8991c2011-12-07 01:07:24 +0000669 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
670 if (!CE) return false;
671 int64_t Value = CE->getValue();
672 return Value == 32;
673 }
Jim Grosbach6b044c22011-12-08 22:06:06 +0000674 bool isShrImm8() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000675 if (!isImm()) return false;
Jim Grosbach6b044c22011-12-08 22:06:06 +0000676 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
677 if (!CE) return false;
678 int64_t Value = CE->getValue();
679 return Value > 0 && Value <= 8;
680 }
681 bool isShrImm16() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000682 if (!isImm()) return false;
Jim Grosbach6b044c22011-12-08 22:06:06 +0000683 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
684 if (!CE) return false;
685 int64_t Value = CE->getValue();
686 return Value > 0 && Value <= 16;
687 }
688 bool isShrImm32() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000689 if (!isImm()) return false;
Jim Grosbach6b044c22011-12-08 22:06:06 +0000690 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
691 if (!CE) return false;
692 int64_t Value = CE->getValue();
693 return Value > 0 && Value <= 32;
694 }
695 bool isShrImm64() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000696 if (!isImm()) return false;
Jim Grosbach6b044c22011-12-08 22:06:06 +0000697 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
698 if (!CE) return false;
699 int64_t Value = CE->getValue();
700 return Value > 0 && Value <= 64;
701 }
Jim Grosbach3b8991c2011-12-07 01:07:24 +0000702 bool isImm1_7() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000703 if (!isImm()) return false;
Jim Grosbach3b8991c2011-12-07 01:07:24 +0000704 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
705 if (!CE) return false;
706 int64_t Value = CE->getValue();
707 return Value > 0 && Value < 8;
708 }
709 bool isImm1_15() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000710 if (!isImm()) return false;
Jim Grosbach3b8991c2011-12-07 01:07:24 +0000711 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
712 if (!CE) return false;
713 int64_t Value = CE->getValue();
714 return Value > 0 && Value < 16;
715 }
716 bool isImm1_31() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000717 if (!isImm()) return false;
Jim Grosbach3b8991c2011-12-07 01:07:24 +0000718 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
719 if (!CE) return false;
720 int64_t Value = CE->getValue();
721 return Value > 0 && Value < 32;
722 }
Jim Grosbachf4943352011-07-25 23:09:14 +0000723 bool isImm1_16() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000724 if (!isImm()) return false;
Jim Grosbachf4943352011-07-25 23:09:14 +0000725 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
726 if (!CE) return false;
727 int64_t Value = CE->getValue();
728 return Value > 0 && Value < 17;
729 }
Jim Grosbach4a5ffb32011-07-22 23:16:18 +0000730 bool isImm1_32() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000731 if (!isImm()) return false;
Jim Grosbach4a5ffb32011-07-22 23:16:18 +0000732 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
733 if (!CE) return false;
734 int64_t Value = CE->getValue();
735 return Value > 0 && Value < 33;
736 }
Jim Grosbachee10ff82011-11-10 19:18:01 +0000737 bool isImm0_32() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000738 if (!isImm()) return false;
Jim Grosbachee10ff82011-11-10 19:18:01 +0000739 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
740 if (!CE) return false;
741 int64_t Value = CE->getValue();
742 return Value >= 0 && Value < 33;
743 }
Jim Grosbachfff76ee2011-07-13 20:10:10 +0000744 bool isImm0_65535() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000745 if (!isImm()) return false;
Jim Grosbachfff76ee2011-07-13 20:10:10 +0000746 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
747 if (!CE) return false;
748 int64_t Value = CE->getValue();
749 return Value >= 0 && Value < 65536;
750 }
Jim Grosbachffa32252011-07-19 19:13:28 +0000751 bool isImm0_65535Expr() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000752 if (!isImm()) return false;
Jim Grosbachffa32252011-07-19 19:13:28 +0000753 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
754 // If it's not a constant expression, it'll generate a fixup and be
755 // handled later.
756 if (!CE) return true;
757 int64_t Value = CE->getValue();
758 return Value >= 0 && Value < 65536;
759 }
Jim Grosbached838482011-07-26 16:24:27 +0000760 bool isImm24bit() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000761 if (!isImm()) return false;
Jim Grosbached838482011-07-26 16:24:27 +0000762 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
763 if (!CE) return false;
764 int64_t Value = CE->getValue();
765 return Value >= 0 && Value <= 0xffffff;
766 }
Jim Grosbach70939ee2011-08-17 21:51:27 +0000767 bool isImmThumbSR() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000768 if (!isImm()) return false;
Jim Grosbach70939ee2011-08-17 21:51:27 +0000769 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
770 if (!CE) return false;
771 int64_t Value = CE->getValue();
772 return Value > 0 && Value < 33;
773 }
Jim Grosbachf6c05252011-07-21 17:23:04 +0000774 bool isPKHLSLImm() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000775 if (!isImm()) return false;
Jim Grosbachf6c05252011-07-21 17:23:04 +0000776 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
777 if (!CE) return false;
778 int64_t Value = CE->getValue();
779 return Value >= 0 && Value < 32;
780 }
781 bool isPKHASRImm() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000782 if (!isImm()) return false;
Jim Grosbachf6c05252011-07-21 17:23:04 +0000783 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
784 if (!CE) return false;
785 int64_t Value = CE->getValue();
786 return Value > 0 && Value <= 32;
787 }
Jim Grosbach6bc1dbc2011-07-19 16:50:30 +0000788 bool isARMSOImm() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000789 if (!isImm()) return false;
Jim Grosbach6bc1dbc2011-07-19 16:50:30 +0000790 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
791 if (!CE) return false;
792 int64_t Value = CE->getValue();
793 return ARM_AM::getSOImmVal(Value) != -1;
794 }
Jim Grosbache70ec842011-10-28 22:50:54 +0000795 bool isARMSOImmNot() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000796 if (!isImm()) return false;
Jim Grosbache70ec842011-10-28 22:50:54 +0000797 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
798 if (!CE) return false;
799 int64_t Value = CE->getValue();
800 return ARM_AM::getSOImmVal(~Value) != -1;
801 }
Jim Grosbach3bc8a3d2011-12-08 00:31:07 +0000802 bool isARMSOImmNeg() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000803 if (!isImm()) return false;
Jim Grosbach3bc8a3d2011-12-08 00:31:07 +0000804 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
805 if (!CE) return false;
806 int64_t Value = CE->getValue();
Jim Grosbachad353c62012-03-30 19:59:02 +0000807 // Only use this when not representable as a plain so_imm.
808 return ARM_AM::getSOImmVal(Value) == -1 &&
809 ARM_AM::getSOImmVal(-Value) != -1;
Jim Grosbach3bc8a3d2011-12-08 00:31:07 +0000810 }
Jim Grosbach6b8f1e32011-06-27 23:54:06 +0000811 bool isT2SOImm() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000812 if (!isImm()) return false;
Jim Grosbach6b8f1e32011-06-27 23:54:06 +0000813 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
814 if (!CE) return false;
815 int64_t Value = CE->getValue();
816 return ARM_AM::getT2SOImmVal(Value) != -1;
817 }
Jim Grosbach89a63372011-10-28 22:36:30 +0000818 bool isT2SOImmNot() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000819 if (!isImm()) return false;
Jim Grosbach89a63372011-10-28 22:36:30 +0000820 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
821 if (!CE) return false;
822 int64_t Value = CE->getValue();
823 return ARM_AM::getT2SOImmVal(~Value) != -1;
824 }
Jim Grosbach3bc8a3d2011-12-08 00:31:07 +0000825 bool isT2SOImmNeg() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000826 if (!isImm()) return false;
Jim Grosbach3bc8a3d2011-12-08 00:31:07 +0000827 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
828 if (!CE) return false;
829 int64_t Value = CE->getValue();
Jim Grosbachad353c62012-03-30 19:59:02 +0000830 // Only use this when not representable as a plain so_imm.
831 return ARM_AM::getT2SOImmVal(Value) == -1 &&
832 ARM_AM::getT2SOImmVal(-Value) != -1;
Jim Grosbach3bc8a3d2011-12-08 00:31:07 +0000833 }
Jim Grosbachc27d4f92011-07-22 17:44:50 +0000834 bool isSetEndImm() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000835 if (!isImm()) return false;
Jim Grosbachc27d4f92011-07-22 17:44:50 +0000836 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
837 if (!CE) return false;
838 int64_t Value = CE->getValue();
839 return Value == 1 || Value == 0;
840 }
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000841 bool isReg() const { return Kind == k_Register; }
842 bool isRegList() const { return Kind == k_RegisterList; }
843 bool isDPRRegList() const { return Kind == k_DPRRegisterList; }
844 bool isSPRRegList() const { return Kind == k_SPRRegisterList; }
845 bool isToken() const { return Kind == k_Token; }
846 bool isMemBarrierOpt() const { return Kind == k_MemBarrierOpt; }
847 bool isMemory() const { return Kind == k_Memory; }
848 bool isShifterImm() const { return Kind == k_ShifterImmediate; }
849 bool isRegShiftedReg() const { return Kind == k_ShiftedRegister; }
850 bool isRegShiftedImm() const { return Kind == k_ShiftedImmediate; }
851 bool isRotImm() const { return Kind == k_RotateImmediate; }
852 bool isBitfield() const { return Kind == k_BitfieldDescriptor; }
853 bool isPostIdxRegShifted() const { return Kind == k_PostIndexRegister; }
Jim Grosbachf4fa3d62011-08-05 21:28:30 +0000854 bool isPostIdxReg() const {
Jim Grosbach430052b2011-11-14 17:52:47 +0000855 return Kind == k_PostIndexRegister && PostIdxReg.ShiftTy ==ARM_AM::no_shift;
Jim Grosbachf4fa3d62011-08-05 21:28:30 +0000856 }
Jim Grosbach57dcb852011-10-11 17:29:55 +0000857 bool isMemNoOffset(bool alignOK = false) const {
Jim Grosbachf6c35c52011-10-10 23:06:42 +0000858 if (!isMemory())
Bruno Cardoso Lopesae085542011-03-31 23:26:08 +0000859 return false;
Jim Grosbach7ce05792011-08-03 23:50:40 +0000860 // No offset of any kind.
Jim Grosbach57dcb852011-10-11 17:29:55 +0000861 return Memory.OffsetRegNum == 0 && Memory.OffsetImm == 0 &&
862 (alignOK || Memory.Alignment == 0);
863 }
Jim Grosbach0b4c6732012-01-18 22:46:46 +0000864 bool isMemPCRelImm12() const {
865 if (!isMemory() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
866 return false;
867 // Base register must be PC.
868 if (Memory.BaseRegNum != ARM::PC)
869 return false;
870 // Immediate offset in range [-4095, 4095].
871 if (!Memory.OffsetImm) return true;
872 int64_t Val = Memory.OffsetImm->getValue();
873 return (Val > -4096 && Val < 4096) || (Val == INT32_MIN);
874 }
Jim Grosbach57dcb852011-10-11 17:29:55 +0000875 bool isAlignedMemory() const {
876 return isMemNoOffset(true);
Bruno Cardoso Lopesae085542011-03-31 23:26:08 +0000877 }
Jim Grosbach7ce05792011-08-03 23:50:40 +0000878 bool isAddrMode2() const {
Jim Grosbach57dcb852011-10-11 17:29:55 +0000879 if (!isMemory() || Memory.Alignment != 0) return false;
Jim Grosbach7ce05792011-08-03 23:50:40 +0000880 // Check for register offset.
Jim Grosbache53c87b2011-10-11 15:59:20 +0000881 if (Memory.OffsetRegNum) return true;
Jim Grosbach7ce05792011-08-03 23:50:40 +0000882 // Immediate offset in range [-4095, 4095].
Jim Grosbache53c87b2011-10-11 15:59:20 +0000883 if (!Memory.OffsetImm) return true;
884 int64_t Val = Memory.OffsetImm->getValue();
Jim Grosbach7ce05792011-08-03 23:50:40 +0000885 return Val > -4096 && Val < 4096;
Bruno Cardoso Lopesac79e4c2011-04-04 17:18:19 +0000886 }
Jim Grosbach039c2e12011-08-04 23:01:30 +0000887 bool isAM2OffsetImm() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +0000888 if (!isImm()) return false;
Jim Grosbach039c2e12011-08-04 23:01:30 +0000889 // Immediate offset in range [-4095, 4095].
890 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
891 if (!CE) return false;
892 int64_t Val = CE->getValue();
893 return Val > -4096 && Val < 4096;
894 }
Jim Grosbach2fd2b872011-08-10 20:29:19 +0000895 bool isAddrMode3() const {
Jim Grosbach2f196742011-12-19 23:06:24 +0000896 // If we have an immediate that's not a constant, treat it as a label
897 // reference needing a fixup. If it is a constant, it's something else
898 // and we reject it.
Jim Grosbach21bcca82011-12-22 22:02:35 +0000899 if (isImm() && !isa<MCConstantExpr>(getImm()))
Jim Grosbach2f196742011-12-19 23:06:24 +0000900 return true;
Jim Grosbach57dcb852011-10-11 17:29:55 +0000901 if (!isMemory() || Memory.Alignment != 0) return false;
Jim Grosbach2fd2b872011-08-10 20:29:19 +0000902 // No shifts are legal for AM3.
Jim Grosbache53c87b2011-10-11 15:59:20 +0000903 if (Memory.ShiftType != ARM_AM::no_shift) return false;
Jim Grosbach2fd2b872011-08-10 20:29:19 +0000904 // Check for register offset.
Jim Grosbache53c87b2011-10-11 15:59:20 +0000905 if (Memory.OffsetRegNum) return true;
Jim Grosbach2fd2b872011-08-10 20:29:19 +0000906 // Immediate offset in range [-255, 255].
Jim Grosbache53c87b2011-10-11 15:59:20 +0000907 if (!Memory.OffsetImm) return true;
908 int64_t Val = Memory.OffsetImm->getValue();
Jim Grosbach2fd2b872011-08-10 20:29:19 +0000909 return Val > -256 && Val < 256;
910 }
911 bool isAM3Offset() const {
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000912 if (Kind != k_Immediate && Kind != k_PostIndexRegister)
Jim Grosbach2fd2b872011-08-10 20:29:19 +0000913 return false;
Jim Grosbach21ff17c2011-10-07 23:24:09 +0000914 if (Kind == k_PostIndexRegister)
Jim Grosbach2fd2b872011-08-10 20:29:19 +0000915 return PostIdxReg.ShiftTy == ARM_AM::no_shift;
916 // Immediate offset in range [-255, 255].
917 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
918 if (!CE) return false;
919 int64_t Val = CE->getValue();
Jim Grosbach251bf252011-08-10 21:56:18 +0000920 // Special case, #-0 is INT32_MIN.
921 return (Val > -256 && Val < 256) || Val == INT32_MIN;
Jim Grosbach2fd2b872011-08-10 20:29:19 +0000922 }
Jim Grosbach7ce05792011-08-03 23:50:40 +0000923 bool isAddrMode5() const {
Jim Grosbach681460f2011-11-01 01:24:45 +0000924 // If we have an immediate that's not a constant, treat it as a label
925 // reference needing a fixup. If it is a constant, it's something else
926 // and we reject it.
Jim Grosbach21bcca82011-12-22 22:02:35 +0000927 if (isImm() && !isa<MCConstantExpr>(getImm()))
Jim Grosbach681460f2011-11-01 01:24:45 +0000928 return true;
Jim Grosbach57dcb852011-10-11 17:29:55 +0000929 if (!isMemory() || Memory.Alignment != 0) return false;
Jim Grosbach7ce05792011-08-03 23:50:40 +0000930 // Check for register offset.
Jim Grosbache53c87b2011-10-11 15:59:20 +0000931 if (Memory.OffsetRegNum) return false;
Jim Grosbach7ce05792011-08-03 23:50:40 +0000932 // Immediate offset in range [-1020, 1020] and a multiple of 4.
Jim Grosbache53c87b2011-10-11 15:59:20 +0000933 if (!Memory.OffsetImm) return true;
934 int64_t Val = Memory.OffsetImm->getValue();
Owen Anderson0da10cf2011-08-29 19:36:44 +0000935 return (Val >= -1020 && Val <= 1020 && ((Val & 3) == 0)) ||
Jim Grosbach681460f2011-11-01 01:24:45 +0000936 Val == INT32_MIN;
Bill Wendling87f4f9a2010-11-08 23:49:57 +0000937 }
Jim Grosbach7f739be2011-09-19 22:21:13 +0000938 bool isMemTBB() const {
Jim Grosbache53c87b2011-10-11 15:59:20 +0000939 if (!isMemory() || !Memory.OffsetRegNum || Memory.isNegative ||
Jim Grosbach57dcb852011-10-11 17:29:55 +0000940 Memory.ShiftType != ARM_AM::no_shift || Memory.Alignment != 0)
Jim Grosbach7f739be2011-09-19 22:21:13 +0000941 return false;
942 return true;
943 }
944 bool isMemTBH() const {
Jim Grosbache53c87b2011-10-11 15:59:20 +0000945 if (!isMemory() || !Memory.OffsetRegNum || Memory.isNegative ||
Jim Grosbach57dcb852011-10-11 17:29:55 +0000946 Memory.ShiftType != ARM_AM::lsl || Memory.ShiftImm != 1 ||
947 Memory.Alignment != 0 )
Jim Grosbach7f739be2011-09-19 22:21:13 +0000948 return false;
949 return true;
950 }
Jim Grosbach7ce05792011-08-03 23:50:40 +0000951 bool isMemRegOffset() const {
Jim Grosbach57dcb852011-10-11 17:29:55 +0000952 if (!isMemory() || !Memory.OffsetRegNum || Memory.Alignment != 0)
Bill Wendlingf4caf692010-12-14 03:36:38 +0000953 return false;
Daniel Dunbard3df5f32011-01-18 05:34:11 +0000954 return true;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000955 }
Jim Grosbachab899c12011-09-07 23:10:15 +0000956 bool isT2MemRegOffset() const {
Jim Grosbach57dcb852011-10-11 17:29:55 +0000957 if (!isMemory() || !Memory.OffsetRegNum || Memory.isNegative ||
958 Memory.Alignment != 0)
Jim Grosbachab899c12011-09-07 23:10:15 +0000959 return false;
960 // Only lsl #{0, 1, 2, 3} allowed.
Jim Grosbache53c87b2011-10-11 15:59:20 +0000961 if (Memory.ShiftType == ARM_AM::no_shift)
Jim Grosbachab899c12011-09-07 23:10:15 +0000962 return true;
Jim Grosbache53c87b2011-10-11 15:59:20 +0000963 if (Memory.ShiftType != ARM_AM::lsl || Memory.ShiftImm > 3)
Jim Grosbachab899c12011-09-07 23:10:15 +0000964 return false;
965 return true;
966 }
Jim Grosbach7ce05792011-08-03 23:50:40 +0000967 bool isMemThumbRR() const {
968 // Thumb reg+reg addressing is simple. Just two registers, a base and
969 // an offset. No shifts, negations or any other complicating factors.
Jim Grosbache53c87b2011-10-11 15:59:20 +0000970 if (!isMemory() || !Memory.OffsetRegNum || Memory.isNegative ||
Jim Grosbach57dcb852011-10-11 17:29:55 +0000971 Memory.ShiftType != ARM_AM::no_shift || Memory.Alignment != 0)
Bill Wendlingef4a68b2010-11-30 07:44:32 +0000972 return false;
Jim Grosbache53c87b2011-10-11 15:59:20 +0000973 return isARMLowRegister(Memory.BaseRegNum) &&
974 (!Memory.OffsetRegNum || isARMLowRegister(Memory.OffsetRegNum));
Jim Grosbach60f91a32011-08-19 17:55:24 +0000975 }
976 bool isMemThumbRIs4() const {
Jim Grosbache53c87b2011-10-11 15:59:20 +0000977 if (!isMemory() || Memory.OffsetRegNum != 0 ||
Jim Grosbach57dcb852011-10-11 17:29:55 +0000978 !isARMLowRegister(Memory.BaseRegNum) || Memory.Alignment != 0)
Jim Grosbach60f91a32011-08-19 17:55:24 +0000979 return false;
980 // Immediate offset, multiple of 4 in range [0, 124].
Jim Grosbache53c87b2011-10-11 15:59:20 +0000981 if (!Memory.OffsetImm) return true;
982 int64_t Val = Memory.OffsetImm->getValue();
Jim Grosbachecd85892011-08-19 18:13:48 +0000983 return Val >= 0 && Val <= 124 && (Val % 4) == 0;
984 }
Jim Grosbach38466302011-08-19 18:55:51 +0000985 bool isMemThumbRIs2() const {
Jim Grosbache53c87b2011-10-11 15:59:20 +0000986 if (!isMemory() || Memory.OffsetRegNum != 0 ||
Jim Grosbach57dcb852011-10-11 17:29:55 +0000987 !isARMLowRegister(Memory.BaseRegNum) || Memory.Alignment != 0)
Jim Grosbach38466302011-08-19 18:55:51 +0000988 return false;
989 // Immediate offset, multiple of 4 in range [0, 62].
Jim Grosbache53c87b2011-10-11 15:59:20 +0000990 if (!Memory.OffsetImm) return true;
991 int64_t Val = Memory.OffsetImm->getValue();
Jim Grosbach38466302011-08-19 18:55:51 +0000992 return Val >= 0 && Val <= 62 && (Val % 2) == 0;
993 }
Jim Grosbach48ff5ff2011-08-19 18:49:59 +0000994 bool isMemThumbRIs1() const {
Jim Grosbache53c87b2011-10-11 15:59:20 +0000995 if (!isMemory() || Memory.OffsetRegNum != 0 ||
Jim Grosbach57dcb852011-10-11 17:29:55 +0000996 !isARMLowRegister(Memory.BaseRegNum) || Memory.Alignment != 0)
Jim Grosbach48ff5ff2011-08-19 18:49:59 +0000997 return false;
998 // Immediate offset in range [0, 31].
Jim Grosbache53c87b2011-10-11 15:59:20 +0000999 if (!Memory.OffsetImm) return true;
1000 int64_t Val = Memory.OffsetImm->getValue();
Jim Grosbach48ff5ff2011-08-19 18:49:59 +00001001 return Val >= 0 && Val <= 31;
1002 }
Jim Grosbachecd85892011-08-19 18:13:48 +00001003 bool isMemThumbSPI() const {
Jim Grosbach57dcb852011-10-11 17:29:55 +00001004 if (!isMemory() || Memory.OffsetRegNum != 0 ||
1005 Memory.BaseRegNum != ARM::SP || Memory.Alignment != 0)
Jim Grosbachecd85892011-08-19 18:13:48 +00001006 return false;
1007 // Immediate offset, multiple of 4 in range [0, 1020].
Jim Grosbache53c87b2011-10-11 15:59:20 +00001008 if (!Memory.OffsetImm) return true;
1009 int64_t Val = Memory.OffsetImm->getValue();
Jim Grosbachecd85892011-08-19 18:13:48 +00001010 return Val >= 0 && Val <= 1020 && (Val % 4) == 0;
Bill Wendlingef4a68b2010-11-30 07:44:32 +00001011 }
Jim Grosbacha77295d2011-09-08 22:07:06 +00001012 bool isMemImm8s4Offset() const {
Jim Grosbach2f196742011-12-19 23:06:24 +00001013 // If we have an immediate that's not a constant, treat it as a label
1014 // reference needing a fixup. If it is a constant, it's something else
1015 // and we reject it.
Jim Grosbach21bcca82011-12-22 22:02:35 +00001016 if (isImm() && !isa<MCConstantExpr>(getImm()))
Jim Grosbach2f196742011-12-19 23:06:24 +00001017 return true;
Jim Grosbach57dcb852011-10-11 17:29:55 +00001018 if (!isMemory() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
Jim Grosbacha77295d2011-09-08 22:07:06 +00001019 return false;
1020 // Immediate offset a multiple of 4 in range [-1020, 1020].
Jim Grosbache53c87b2011-10-11 15:59:20 +00001021 if (!Memory.OffsetImm) return true;
1022 int64_t Val = Memory.OffsetImm->getValue();
Jim Grosbacha77295d2011-09-08 22:07:06 +00001023 return Val >= -1020 && Val <= 1020 && (Val & 3) == 0;
1024 }
Jim Grosbachb6aed502011-09-09 18:37:27 +00001025 bool isMemImm0_1020s4Offset() const {
Jim Grosbach57dcb852011-10-11 17:29:55 +00001026 if (!isMemory() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
Jim Grosbachb6aed502011-09-09 18:37:27 +00001027 return false;
1028 // Immediate offset a multiple of 4 in range [0, 1020].
Jim Grosbache53c87b2011-10-11 15:59:20 +00001029 if (!Memory.OffsetImm) return true;
1030 int64_t Val = Memory.OffsetImm->getValue();
Jim Grosbachb6aed502011-09-09 18:37:27 +00001031 return Val >= 0 && Val <= 1020 && (Val & 3) == 0;
1032 }
Jim Grosbach7ce05792011-08-03 23:50:40 +00001033 bool isMemImm8Offset() const {
Jim Grosbach57dcb852011-10-11 17:29:55 +00001034 if (!isMemory() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
Jim Grosbach7ce05792011-08-03 23:50:40 +00001035 return false;
Jim Grosbach0b4c6732012-01-18 22:46:46 +00001036 // Base reg of PC isn't allowed for these encodings.
1037 if (Memory.BaseRegNum == ARM::PC) return false;
Jim Grosbach7ce05792011-08-03 23:50:40 +00001038 // Immediate offset in range [-255, 255].
Jim Grosbache53c87b2011-10-11 15:59:20 +00001039 if (!Memory.OffsetImm) return true;
1040 int64_t Val = Memory.OffsetImm->getValue();
Owen Anderson4d2a0012011-09-23 22:25:02 +00001041 return (Val == INT32_MIN) || (Val > -256 && Val < 256);
Jim Grosbach7ce05792011-08-03 23:50:40 +00001042 }
Jim Grosbachf0eee6e2011-09-07 23:39:14 +00001043 bool isMemPosImm8Offset() const {
Jim Grosbach57dcb852011-10-11 17:29:55 +00001044 if (!isMemory() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
Jim Grosbachf0eee6e2011-09-07 23:39:14 +00001045 return false;
1046 // Immediate offset in range [0, 255].
Jim Grosbache53c87b2011-10-11 15:59:20 +00001047 if (!Memory.OffsetImm) return true;
1048 int64_t Val = Memory.OffsetImm->getValue();
Jim Grosbachf0eee6e2011-09-07 23:39:14 +00001049 return Val >= 0 && Val < 256;
1050 }
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001051 bool isMemNegImm8Offset() const {
Jim Grosbach57dcb852011-10-11 17:29:55 +00001052 if (!isMemory() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001053 return false;
Jim Grosbach0b4c6732012-01-18 22:46:46 +00001054 // Base reg of PC isn't allowed for these encodings.
1055 if (Memory.BaseRegNum == ARM::PC) return false;
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001056 // Immediate offset in range [-255, -1].
Jim Grosbachdf33e0d2011-12-06 04:49:29 +00001057 if (!Memory.OffsetImm) return false;
Jim Grosbache53c87b2011-10-11 15:59:20 +00001058 int64_t Val = Memory.OffsetImm->getValue();
Jim Grosbachdf33e0d2011-12-06 04:49:29 +00001059 return (Val == INT32_MIN) || (Val > -256 && Val < 0);
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001060 }
1061 bool isMemUImm12Offset() const {
Jim Grosbach57dcb852011-10-11 17:29:55 +00001062 if (!isMemory() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001063 return false;
1064 // Immediate offset in range [0, 4095].
Jim Grosbache53c87b2011-10-11 15:59:20 +00001065 if (!Memory.OffsetImm) return true;
1066 int64_t Val = Memory.OffsetImm->getValue();
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001067 return (Val >= 0 && Val < 4096);
1068 }
Jim Grosbach7ce05792011-08-03 23:50:40 +00001069 bool isMemImm12Offset() const {
Jim Grosbach09176e12011-08-08 20:59:31 +00001070 // If we have an immediate that's not a constant, treat it as a label
1071 // reference needing a fixup. If it is a constant, it's something else
1072 // and we reject it.
Jim Grosbach21bcca82011-12-22 22:02:35 +00001073 if (isImm() && !isa<MCConstantExpr>(getImm()))
Jim Grosbach09176e12011-08-08 20:59:31 +00001074 return true;
1075
Jim Grosbach57dcb852011-10-11 17:29:55 +00001076 if (!isMemory() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
Jim Grosbach7ce05792011-08-03 23:50:40 +00001077 return false;
1078 // Immediate offset in range [-4095, 4095].
Jim Grosbache53c87b2011-10-11 15:59:20 +00001079 if (!Memory.OffsetImm) return true;
1080 int64_t Val = Memory.OffsetImm->getValue();
Owen Anderson0da10cf2011-08-29 19:36:44 +00001081 return (Val > -4096 && Val < 4096) || (Val == INT32_MIN);
Jim Grosbach7ce05792011-08-03 23:50:40 +00001082 }
1083 bool isPostIdxImm8() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +00001084 if (!isImm()) return false;
Jim Grosbach7ce05792011-08-03 23:50:40 +00001085 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1086 if (!CE) return false;
1087 int64_t Val = CE->getValue();
Owen Anderson63553c72011-08-29 17:17:09 +00001088 return (Val > -256 && Val < 256) || (Val == INT32_MIN);
Jim Grosbach7ce05792011-08-03 23:50:40 +00001089 }
Jim Grosbach2bd01182011-10-11 21:55:36 +00001090 bool isPostIdxImm8s4() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +00001091 if (!isImm()) return false;
Jim Grosbach2bd01182011-10-11 21:55:36 +00001092 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1093 if (!CE) return false;
1094 int64_t Val = CE->getValue();
1095 return ((Val & 3) == 0 && Val >= -1020 && Val <= 1020) ||
1096 (Val == INT32_MIN);
1097 }
Jim Grosbach7ce05792011-08-03 23:50:40 +00001098
Jim Grosbach21ff17c2011-10-07 23:24:09 +00001099 bool isMSRMask() const { return Kind == k_MSRMask; }
1100 bool isProcIFlags() const { return Kind == k_ProcIFlags; }
Daniel Dunbar3483aca2010-08-11 05:24:50 +00001101
Jim Grosbach0e387b22011-10-17 22:26:03 +00001102 // NEON operands.
Jim Grosbach0aaf4cd2011-12-15 21:44:33 +00001103 bool isSingleSpacedVectorList() const {
1104 return Kind == k_VectorList && !VectorList.isDoubleSpaced;
1105 }
1106 bool isDoubleSpacedVectorList() const {
1107 return Kind == k_VectorList && VectorList.isDoubleSpaced;
1108 }
Jim Grosbach862019c2011-10-18 23:02:30 +00001109 bool isVecListOneD() const {
Jim Grosbach0aaf4cd2011-12-15 21:44:33 +00001110 if (!isSingleSpacedVectorList()) return false;
Jim Grosbach862019c2011-10-18 23:02:30 +00001111 return VectorList.Count == 1;
1112 }
1113
Jim Grosbach28f08c92012-03-05 19:33:30 +00001114 bool isVecListDPair() const {
1115 if (!isSingleSpacedVectorList()) return false;
1116 return (ARMMCRegisterClasses[ARM::DPairRegClassID]
1117 .contains(VectorList.RegNum));
1118 }
1119
Jim Grosbachcdcfa282011-10-21 20:02:19 +00001120 bool isVecListThreeD() const {
Jim Grosbach0aaf4cd2011-12-15 21:44:33 +00001121 if (!isSingleSpacedVectorList()) return false;
Jim Grosbachcdcfa282011-10-21 20:02:19 +00001122 return VectorList.Count == 3;
1123 }
1124
Jim Grosbachb6310312011-10-21 20:35:01 +00001125 bool isVecListFourD() const {
Jim Grosbach0aaf4cd2011-12-15 21:44:33 +00001126 if (!isSingleSpacedVectorList()) return false;
Jim Grosbachb6310312011-10-21 20:35:01 +00001127 return VectorList.Count == 4;
1128 }
1129
Jim Grosbachc3384c92012-03-05 21:43:40 +00001130 bool isVecListDPairSpaced() const {
Kevin Enderby9f2e1602012-03-20 17:41:51 +00001131 if (isSingleSpacedVectorList()) return false;
Jim Grosbachc3384c92012-03-05 21:43:40 +00001132 return (ARMMCRegisterClasses[ARM::DPairSpcRegClassID]
1133 .contains(VectorList.RegNum));
1134 }
1135
Jim Grosbachc387fc62012-01-23 23:20:46 +00001136 bool isVecListThreeQ() const {
1137 if (!isDoubleSpacedVectorList()) return false;
1138 return VectorList.Count == 3;
1139 }
1140
Jim Grosbach7945ead2012-01-24 00:43:12 +00001141 bool isVecListFourQ() const {
1142 if (!isDoubleSpacedVectorList()) return false;
1143 return VectorList.Count == 4;
1144 }
1145
Jim Grosbach3471d4f2011-12-21 00:38:54 +00001146 bool isSingleSpacedVectorAllLanes() const {
1147 return Kind == k_VectorListAllLanes && !VectorList.isDoubleSpaced;
1148 }
1149 bool isDoubleSpacedVectorAllLanes() const {
1150 return Kind == k_VectorListAllLanes && VectorList.isDoubleSpaced;
1151 }
Jim Grosbach98b05a52011-11-30 01:09:44 +00001152 bool isVecListOneDAllLanes() const {
Jim Grosbach3471d4f2011-12-21 00:38:54 +00001153 if (!isSingleSpacedVectorAllLanes()) return false;
Jim Grosbach98b05a52011-11-30 01:09:44 +00001154 return VectorList.Count == 1;
1155 }
1156
Jim Grosbachc0fc4502012-03-06 22:01:44 +00001157 bool isVecListDPairAllLanes() const {
Jim Grosbach3471d4f2011-12-21 00:38:54 +00001158 if (!isSingleSpacedVectorAllLanes()) return false;
Jim Grosbachc0fc4502012-03-06 22:01:44 +00001159 return (ARMMCRegisterClasses[ARM::DPairRegClassID]
1160 .contains(VectorList.RegNum));
Jim Grosbach3471d4f2011-12-21 00:38:54 +00001161 }
1162
Jim Grosbach4d0983a2012-03-06 23:10:38 +00001163 bool isVecListDPairSpacedAllLanes() const {
Jim Grosbach3471d4f2011-12-21 00:38:54 +00001164 if (!isDoubleSpacedVectorAllLanes()) return false;
Jim Grosbach13af2222011-11-30 18:21:25 +00001165 return VectorList.Count == 2;
1166 }
1167
Jim Grosbach5e59f7e2012-01-24 23:47:04 +00001168 bool isVecListThreeDAllLanes() const {
1169 if (!isSingleSpacedVectorAllLanes()) return false;
1170 return VectorList.Count == 3;
1171 }
1172
1173 bool isVecListThreeQAllLanes() const {
1174 if (!isDoubleSpacedVectorAllLanes()) return false;
1175 return VectorList.Count == 3;
1176 }
1177
Jim Grosbacha57a36a2012-01-25 00:01:08 +00001178 bool isVecListFourDAllLanes() const {
1179 if (!isSingleSpacedVectorAllLanes()) return false;
1180 return VectorList.Count == 4;
1181 }
1182
1183 bool isVecListFourQAllLanes() const {
1184 if (!isDoubleSpacedVectorAllLanes()) return false;
1185 return VectorList.Count == 4;
1186 }
1187
Jim Grosbach95fad1c2011-12-20 19:21:26 +00001188 bool isSingleSpacedVectorIndexed() const {
1189 return Kind == k_VectorListIndexed && !VectorList.isDoubleSpaced;
1190 }
1191 bool isDoubleSpacedVectorIndexed() const {
1192 return Kind == k_VectorListIndexed && VectorList.isDoubleSpaced;
1193 }
Jim Grosbach7636bf62011-12-02 00:35:16 +00001194 bool isVecListOneDByteIndexed() const {
Jim Grosbach95fad1c2011-12-20 19:21:26 +00001195 if (!isSingleSpacedVectorIndexed()) return false;
Jim Grosbach7636bf62011-12-02 00:35:16 +00001196 return VectorList.Count == 1 && VectorList.LaneIndex <= 7;
1197 }
1198
Jim Grosbach799ca9d2011-12-14 23:35:06 +00001199 bool isVecListOneDHWordIndexed() const {
Jim Grosbach95fad1c2011-12-20 19:21:26 +00001200 if (!isSingleSpacedVectorIndexed()) return false;
Jim Grosbach799ca9d2011-12-14 23:35:06 +00001201 return VectorList.Count == 1 && VectorList.LaneIndex <= 3;
1202 }
1203
1204 bool isVecListOneDWordIndexed() const {
Jim Grosbach95fad1c2011-12-20 19:21:26 +00001205 if (!isSingleSpacedVectorIndexed()) return false;
Jim Grosbach799ca9d2011-12-14 23:35:06 +00001206 return VectorList.Count == 1 && VectorList.LaneIndex <= 1;
1207 }
1208
Jim Grosbach9b1b3902011-12-14 23:25:46 +00001209 bool isVecListTwoDByteIndexed() const {
Jim Grosbach95fad1c2011-12-20 19:21:26 +00001210 if (!isSingleSpacedVectorIndexed()) return false;
Jim Grosbach9b1b3902011-12-14 23:25:46 +00001211 return VectorList.Count == 2 && VectorList.LaneIndex <= 7;
1212 }
1213
Jim Grosbach799ca9d2011-12-14 23:35:06 +00001214 bool isVecListTwoDHWordIndexed() const {
Jim Grosbach95fad1c2011-12-20 19:21:26 +00001215 if (!isSingleSpacedVectorIndexed()) return false;
1216 return VectorList.Count == 2 && VectorList.LaneIndex <= 3;
1217 }
1218
1219 bool isVecListTwoQWordIndexed() const {
1220 if (!isDoubleSpacedVectorIndexed()) return false;
1221 return VectorList.Count == 2 && VectorList.LaneIndex <= 1;
1222 }
1223
1224 bool isVecListTwoQHWordIndexed() const {
1225 if (!isDoubleSpacedVectorIndexed()) return false;
Jim Grosbach799ca9d2011-12-14 23:35:06 +00001226 return VectorList.Count == 2 && VectorList.LaneIndex <= 3;
1227 }
1228
1229 bool isVecListTwoDWordIndexed() const {
Jim Grosbach95fad1c2011-12-20 19:21:26 +00001230 if (!isSingleSpacedVectorIndexed()) return false;
Jim Grosbach799ca9d2011-12-14 23:35:06 +00001231 return VectorList.Count == 2 && VectorList.LaneIndex <= 1;
1232 }
1233
Jim Grosbach3a678af2012-01-23 21:53:26 +00001234 bool isVecListThreeDByteIndexed() const {
1235 if (!isSingleSpacedVectorIndexed()) return false;
1236 return VectorList.Count == 3 && VectorList.LaneIndex <= 7;
1237 }
1238
1239 bool isVecListThreeDHWordIndexed() const {
1240 if (!isSingleSpacedVectorIndexed()) return false;
1241 return VectorList.Count == 3 && VectorList.LaneIndex <= 3;
1242 }
1243
1244 bool isVecListThreeQWordIndexed() const {
1245 if (!isDoubleSpacedVectorIndexed()) return false;
1246 return VectorList.Count == 3 && VectorList.LaneIndex <= 1;
1247 }
1248
1249 bool isVecListThreeQHWordIndexed() const {
1250 if (!isDoubleSpacedVectorIndexed()) return false;
1251 return VectorList.Count == 3 && VectorList.LaneIndex <= 3;
1252 }
1253
1254 bool isVecListThreeDWordIndexed() const {
1255 if (!isSingleSpacedVectorIndexed()) return false;
1256 return VectorList.Count == 3 && VectorList.LaneIndex <= 1;
1257 }
1258
Jim Grosbache983a132012-01-24 18:37:25 +00001259 bool isVecListFourDByteIndexed() const {
1260 if (!isSingleSpacedVectorIndexed()) return false;
1261 return VectorList.Count == 4 && VectorList.LaneIndex <= 7;
1262 }
1263
1264 bool isVecListFourDHWordIndexed() const {
1265 if (!isSingleSpacedVectorIndexed()) return false;
1266 return VectorList.Count == 4 && VectorList.LaneIndex <= 3;
1267 }
1268
1269 bool isVecListFourQWordIndexed() const {
1270 if (!isDoubleSpacedVectorIndexed()) return false;
1271 return VectorList.Count == 4 && VectorList.LaneIndex <= 1;
1272 }
1273
1274 bool isVecListFourQHWordIndexed() const {
1275 if (!isDoubleSpacedVectorIndexed()) return false;
1276 return VectorList.Count == 4 && VectorList.LaneIndex <= 3;
1277 }
1278
1279 bool isVecListFourDWordIndexed() const {
1280 if (!isSingleSpacedVectorIndexed()) return false;
1281 return VectorList.Count == 4 && VectorList.LaneIndex <= 1;
1282 }
1283
Jim Grosbach460a9052011-10-07 23:56:00 +00001284 bool isVectorIndex8() const {
1285 if (Kind != k_VectorIndex) return false;
1286 return VectorIndex.Val < 8;
1287 }
1288 bool isVectorIndex16() const {
1289 if (Kind != k_VectorIndex) return false;
1290 return VectorIndex.Val < 4;
1291 }
1292 bool isVectorIndex32() const {
1293 if (Kind != k_VectorIndex) return false;
1294 return VectorIndex.Val < 2;
1295 }
1296
Jim Grosbach0e387b22011-10-17 22:26:03 +00001297 bool isNEONi8splat() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +00001298 if (!isImm()) return false;
Jim Grosbach0e387b22011-10-17 22:26:03 +00001299 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1300 // Must be a constant.
1301 if (!CE) return false;
1302 int64_t Value = CE->getValue();
1303 // i8 value splatted across 8 bytes. The immediate is just the 8 byte
1304 // value.
Jim Grosbach0e387b22011-10-17 22:26:03 +00001305 return Value >= 0 && Value < 256;
1306 }
Jim Grosbach460a9052011-10-07 23:56:00 +00001307
Jim Grosbachea461102011-10-17 23:09:09 +00001308 bool isNEONi16splat() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +00001309 if (!isImm()) return false;
Jim Grosbachea461102011-10-17 23:09:09 +00001310 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1311 // Must be a constant.
1312 if (!CE) return false;
1313 int64_t Value = CE->getValue();
1314 // i16 value in the range [0,255] or [0x0100, 0xff00]
1315 return (Value >= 0 && Value < 256) || (Value >= 0x0100 && Value <= 0xff00);
1316 }
1317
Jim Grosbach6248a542011-10-18 00:22:00 +00001318 bool isNEONi32splat() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +00001319 if (!isImm()) return false;
Jim Grosbach6248a542011-10-18 00:22:00 +00001320 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1321 // Must be a constant.
1322 if (!CE) return false;
1323 int64_t Value = CE->getValue();
1324 // i32 value with set bits only in one byte X000, 0X00, 00X0, or 000X.
1325 return (Value >= 0 && Value < 256) ||
1326 (Value >= 0x0100 && Value <= 0xff00) ||
1327 (Value >= 0x010000 && Value <= 0xff0000) ||
1328 (Value >= 0x01000000 && Value <= 0xff000000);
1329 }
1330
1331 bool isNEONi32vmov() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +00001332 if (!isImm()) return false;
Jim Grosbach6248a542011-10-18 00:22:00 +00001333 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1334 // Must be a constant.
1335 if (!CE) return false;
1336 int64_t Value = CE->getValue();
1337 // i32 value with set bits only in one byte X000, 0X00, 00X0, or 000X,
1338 // for VMOV/VMVN only, 00Xf or 0Xff are also accepted.
1339 return (Value >= 0 && Value < 256) ||
1340 (Value >= 0x0100 && Value <= 0xff00) ||
1341 (Value >= 0x010000 && Value <= 0xff0000) ||
1342 (Value >= 0x01000000 && Value <= 0xff000000) ||
1343 (Value >= 0x01ff && Value <= 0xffff && (Value & 0xff) == 0xff) ||
1344 (Value >= 0x01ffff && Value <= 0xffffff && (Value & 0xffff) == 0xffff);
1345 }
Jim Grosbach9b087852011-12-19 23:51:07 +00001346 bool isNEONi32vmovNeg() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +00001347 if (!isImm()) return false;
Jim Grosbach9b087852011-12-19 23:51:07 +00001348 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1349 // Must be a constant.
1350 if (!CE) return false;
1351 int64_t Value = ~CE->getValue();
1352 // i32 value with set bits only in one byte X000, 0X00, 00X0, or 000X,
1353 // for VMOV/VMVN only, 00Xf or 0Xff are also accepted.
1354 return (Value >= 0 && Value < 256) ||
1355 (Value >= 0x0100 && Value <= 0xff00) ||
1356 (Value >= 0x010000 && Value <= 0xff0000) ||
1357 (Value >= 0x01000000 && Value <= 0xff000000) ||
1358 (Value >= 0x01ff && Value <= 0xffff && (Value & 0xff) == 0xff) ||
1359 (Value >= 0x01ffff && Value <= 0xffffff && (Value & 0xffff) == 0xffff);
1360 }
Jim Grosbach6248a542011-10-18 00:22:00 +00001361
Jim Grosbachf2f5bc62011-10-18 16:18:11 +00001362 bool isNEONi64splat() const {
Jim Grosbach21bcca82011-12-22 22:02:35 +00001363 if (!isImm()) return false;
Jim Grosbachf2f5bc62011-10-18 16:18:11 +00001364 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1365 // Must be a constant.
1366 if (!CE) return false;
1367 uint64_t Value = CE->getValue();
1368 // i64 value with each byte being either 0 or 0xff.
1369 for (unsigned i = 0; i < 8; ++i)
1370 if ((Value & 0xff) != 0 && (Value & 0xff) != 0xff) return false;
1371 return true;
1372 }
1373
Daniel Dunbar3483aca2010-08-11 05:24:50 +00001374 void addExpr(MCInst &Inst, const MCExpr *Expr) const {
Chris Lattner14b93852010-10-29 00:27:31 +00001375 // Add as immediates when possible. Null MCExpr = 0.
1376 if (Expr == 0)
1377 Inst.addOperand(MCOperand::CreateImm(0));
1378 else if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr))
Daniel Dunbar3483aca2010-08-11 05:24:50 +00001379 Inst.addOperand(MCOperand::CreateImm(CE->getValue()));
1380 else
1381 Inst.addOperand(MCOperand::CreateExpr(Expr));
1382 }
1383
Daniel Dunbar8462b302010-08-11 06:36:53 +00001384 void addCondCodeOperands(MCInst &Inst, unsigned N) const {
Daniel Dunbar345a9a62010-08-11 06:37:20 +00001385 assert(N == 2 && "Invalid number of operands!");
Daniel Dunbar8462b302010-08-11 06:36:53 +00001386 Inst.addOperand(MCOperand::CreateImm(unsigned(getCondCode())));
Jim Grosbach04f74942010-12-06 18:30:57 +00001387 unsigned RegNum = getCondCode() == ARMCC::AL ? 0: ARM::CPSR;
1388 Inst.addOperand(MCOperand::CreateReg(RegNum));
Daniel Dunbar8462b302010-08-11 06:36:53 +00001389 }
1390
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +00001391 void addCoprocNumOperands(MCInst &Inst, unsigned N) const {
1392 assert(N == 1 && "Invalid number of operands!");
1393 Inst.addOperand(MCOperand::CreateImm(getCoproc()));
1394 }
1395
Jim Grosbach9b8f2a02011-10-12 17:34:41 +00001396 void addCoprocRegOperands(MCInst &Inst, unsigned N) const {
1397 assert(N == 1 && "Invalid number of operands!");
1398 Inst.addOperand(MCOperand::CreateImm(getCoproc()));
1399 }
1400
1401 void addCoprocOptionOperands(MCInst &Inst, unsigned N) const {
1402 assert(N == 1 && "Invalid number of operands!");
1403 Inst.addOperand(MCOperand::CreateImm(CoprocOption.Val));
1404 }
1405
Jim Grosbach89df9962011-08-26 21:43:41 +00001406 void addITMaskOperands(MCInst &Inst, unsigned N) const {
1407 assert(N == 1 && "Invalid number of operands!");
1408 Inst.addOperand(MCOperand::CreateImm(ITMask.Mask));
1409 }
1410
1411 void addITCondCodeOperands(MCInst &Inst, unsigned N) const {
1412 assert(N == 1 && "Invalid number of operands!");
1413 Inst.addOperand(MCOperand::CreateImm(unsigned(getCondCode())));
1414 }
1415
Jim Grosbachd67641b2010-12-06 18:21:12 +00001416 void addCCOutOperands(MCInst &Inst, unsigned N) const {
1417 assert(N == 1 && "Invalid number of operands!");
1418 Inst.addOperand(MCOperand::CreateReg(getReg()));
1419 }
1420
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00001421 void addRegOperands(MCInst &Inst, unsigned N) const {
1422 assert(N == 1 && "Invalid number of operands!");
1423 Inst.addOperand(MCOperand::CreateReg(getReg()));
1424 }
1425
Jim Grosbachaf6981f2011-07-25 20:49:51 +00001426 void addRegShiftedRegOperands(MCInst &Inst, unsigned N) const {
Jim Grosbache8606dc2011-07-13 17:50:29 +00001427 assert(N == 3 && "Invalid number of operands!");
Jim Grosbach430052b2011-11-14 17:52:47 +00001428 assert(isRegShiftedReg() &&
1429 "addRegShiftedRegOperands() on non RegShiftedReg!");
Jim Grosbachaf6981f2011-07-25 20:49:51 +00001430 Inst.addOperand(MCOperand::CreateReg(RegShiftedReg.SrcReg));
1431 Inst.addOperand(MCOperand::CreateReg(RegShiftedReg.ShiftReg));
Jim Grosbache8606dc2011-07-13 17:50:29 +00001432 Inst.addOperand(MCOperand::CreateImm(
Jim Grosbachaf6981f2011-07-25 20:49:51 +00001433 ARM_AM::getSORegOpc(RegShiftedReg.ShiftTy, RegShiftedReg.ShiftImm)));
Jim Grosbache8606dc2011-07-13 17:50:29 +00001434 }
1435
Jim Grosbachaf6981f2011-07-25 20:49:51 +00001436 void addRegShiftedImmOperands(MCInst &Inst, unsigned N) const {
Owen Anderson152d4a42011-07-21 23:38:37 +00001437 assert(N == 2 && "Invalid number of operands!");
Jim Grosbach430052b2011-11-14 17:52:47 +00001438 assert(isRegShiftedImm() &&
1439 "addRegShiftedImmOperands() on non RegShiftedImm!");
Jim Grosbachaf6981f2011-07-25 20:49:51 +00001440 Inst.addOperand(MCOperand::CreateReg(RegShiftedImm.SrcReg));
Owen Anderson92a20222011-07-21 18:54:16 +00001441 Inst.addOperand(MCOperand::CreateImm(
Jim Grosbachaf6981f2011-07-25 20:49:51 +00001442 ARM_AM::getSORegOpc(RegShiftedImm.ShiftTy, RegShiftedImm.ShiftImm)));
Owen Anderson92a20222011-07-21 18:54:16 +00001443 }
1444
Jim Grosbach580f4a92011-07-25 22:20:28 +00001445 void addShifterImmOperands(MCInst &Inst, unsigned N) const {
Owen Anderson00828302011-03-18 22:50:18 +00001446 assert(N == 1 && "Invalid number of operands!");
Jim Grosbach580f4a92011-07-25 22:20:28 +00001447 Inst.addOperand(MCOperand::CreateImm((ShifterImm.isASR << 5) |
1448 ShifterImm.Imm));
Owen Anderson00828302011-03-18 22:50:18 +00001449 }
1450
Bill Wendling87f4f9a2010-11-08 23:49:57 +00001451 void addRegListOperands(MCInst &Inst, unsigned N) const {
Bill Wendling7729e062010-11-09 22:44:22 +00001452 assert(N == 1 && "Invalid number of operands!");
Bill Wendling5fa22a12010-11-09 23:28:44 +00001453 const SmallVectorImpl<unsigned> &RegList = getRegList();
1454 for (SmallVectorImpl<unsigned>::const_iterator
Bill Wendling7729e062010-11-09 22:44:22 +00001455 I = RegList.begin(), E = RegList.end(); I != E; ++I)
1456 Inst.addOperand(MCOperand::CreateReg(*I));
Bill Wendling87f4f9a2010-11-08 23:49:57 +00001457 }
1458
Bill Wendling0f630752010-11-17 04:32:08 +00001459 void addDPRRegListOperands(MCInst &Inst, unsigned N) const {
1460 addRegListOperands(Inst, N);
1461 }
1462
1463 void addSPRRegListOperands(MCInst &Inst, unsigned N) const {
1464 addRegListOperands(Inst, N);
1465 }
1466
Jim Grosbach7e1547e2011-07-27 20:15:40 +00001467 void addRotImmOperands(MCInst &Inst, unsigned N) const {
1468 assert(N == 1 && "Invalid number of operands!");
1469 // Encoded as val>>3. The printer handles display as 8, 16, 24.
1470 Inst.addOperand(MCOperand::CreateImm(RotImm.Imm >> 3));
1471 }
1472
Jim Grosbach293a2ee2011-07-28 21:34:26 +00001473 void addBitfieldOperands(MCInst &Inst, unsigned N) const {
1474 assert(N == 1 && "Invalid number of operands!");
1475 // Munge the lsb/width into a bitfield mask.
1476 unsigned lsb = Bitfield.LSB;
1477 unsigned width = Bitfield.Width;
1478 // Make a 32-bit mask w/ the referenced bits clear and all other bits set.
1479 uint32_t Mask = ~(((uint32_t)0xffffffff >> lsb) << (32 - width) >>
1480 (32 - (lsb + width)));
1481 Inst.addOperand(MCOperand::CreateImm(Mask));
1482 }
1483
Daniel Dunbar3483aca2010-08-11 05:24:50 +00001484 void addImmOperands(MCInst &Inst, unsigned N) const {
1485 assert(N == 1 && "Invalid number of operands!");
1486 addExpr(Inst, getImm());
1487 }
Jim Grosbach16c74252010-10-29 14:46:02 +00001488
Jim Grosbach4050bc42011-12-22 22:19:05 +00001489 void addFBits16Operands(MCInst &Inst, unsigned N) const {
1490 assert(N == 1 && "Invalid number of operands!");
1491 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1492 Inst.addOperand(MCOperand::CreateImm(16 - CE->getValue()));
1493 }
1494
1495 void addFBits32Operands(MCInst &Inst, unsigned N) const {
1496 assert(N == 1 && "Invalid number of operands!");
1497 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1498 Inst.addOperand(MCOperand::CreateImm(32 - CE->getValue()));
1499 }
1500
Jim Grosbach9d390362011-10-03 23:38:36 +00001501 void addFPImmOperands(MCInst &Inst, unsigned N) const {
1502 assert(N == 1 && "Invalid number of operands!");
Jim Grosbach51222d12012-01-20 18:09:51 +00001503 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1504 int Val = ARM_AM::getFP32Imm(APInt(32, CE->getValue()));
1505 Inst.addOperand(MCOperand::CreateImm(Val));
Jim Grosbach9d390362011-10-03 23:38:36 +00001506 }
1507
Jim Grosbacha77295d2011-09-08 22:07:06 +00001508 void addImm8s4Operands(MCInst &Inst, unsigned N) const {
1509 assert(N == 1 && "Invalid number of operands!");
1510 // FIXME: We really want to scale the value here, but the LDRD/STRD
1511 // instruction don't encode operands that way yet.
1512 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1513 Inst.addOperand(MCOperand::CreateImm(CE->getValue()));
1514 }
1515
Jim Grosbach72f39f82011-08-24 21:22:15 +00001516 void addImm0_1020s4Operands(MCInst &Inst, unsigned N) const {
1517 assert(N == 1 && "Invalid number of operands!");
1518 // The immediate is scaled by four in the encoding and is stored
1519 // in the MCInst as such. Lop off the low two bits here.
1520 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1521 Inst.addOperand(MCOperand::CreateImm(CE->getValue() / 4));
1522 }
1523
Jim Grosbach4e53fe82012-04-05 20:57:13 +00001524 void addImm0_508s4NegOperands(MCInst &Inst, unsigned N) const {
1525 assert(N == 1 && "Invalid number of operands!");
1526 // The immediate is scaled by four in the encoding and is stored
1527 // in the MCInst as such. Lop off the low two bits here.
1528 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1529 Inst.addOperand(MCOperand::CreateImm(-(CE->getValue() / 4)));
1530 }
1531
Jim Grosbach72f39f82011-08-24 21:22:15 +00001532 void addImm0_508s4Operands(MCInst &Inst, unsigned N) const {
1533 assert(N == 1 && "Invalid number of operands!");
1534 // The immediate is scaled by four in the encoding and is stored
1535 // in the MCInst as such. Lop off the low two bits here.
1536 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1537 Inst.addOperand(MCOperand::CreateImm(CE->getValue() / 4));
1538 }
1539
Jim Grosbachf4943352011-07-25 23:09:14 +00001540 void addImm1_16Operands(MCInst &Inst, unsigned N) const {
1541 assert(N == 1 && "Invalid number of operands!");
1542 // The constant encodes as the immediate-1, and we store in the instruction
1543 // the bits as encoded, so subtract off one here.
1544 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1545 Inst.addOperand(MCOperand::CreateImm(CE->getValue() - 1));
1546 }
1547
Jim Grosbach4a5ffb32011-07-22 23:16:18 +00001548 void addImm1_32Operands(MCInst &Inst, unsigned N) const {
1549 assert(N == 1 && "Invalid number of operands!");
1550 // The constant encodes as the immediate-1, and we store in the instruction
1551 // the bits as encoded, so subtract off one here.
1552 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1553 Inst.addOperand(MCOperand::CreateImm(CE->getValue() - 1));
1554 }
1555
Jim Grosbach70939ee2011-08-17 21:51:27 +00001556 void addImmThumbSROperands(MCInst &Inst, unsigned N) const {
1557 assert(N == 1 && "Invalid number of operands!");
1558 // The constant encodes as the immediate, except for 32, which encodes as
1559 // zero.
1560 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1561 unsigned Imm = CE->getValue();
1562 Inst.addOperand(MCOperand::CreateImm((Imm == 32 ? 0 : Imm)));
1563 }
1564
Jim Grosbachf6c05252011-07-21 17:23:04 +00001565 void addPKHASRImmOperands(MCInst &Inst, unsigned N) const {
1566 assert(N == 1 && "Invalid number of operands!");
1567 // An ASR value of 32 encodes as 0, so that's how we want to add it to
1568 // the instruction as well.
1569 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1570 int Val = CE->getValue();
1571 Inst.addOperand(MCOperand::CreateImm(Val == 32 ? 0 : Val));
1572 }
1573
Jim Grosbach89a63372011-10-28 22:36:30 +00001574 void addT2SOImmNotOperands(MCInst &Inst, unsigned N) const {
1575 assert(N == 1 && "Invalid number of operands!");
1576 // The operand is actually a t2_so_imm, but we have its bitwise
1577 // negation in the assembly source, so twiddle it here.
1578 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1579 Inst.addOperand(MCOperand::CreateImm(~CE->getValue()));
1580 }
1581
Jim Grosbach3bc8a3d2011-12-08 00:31:07 +00001582 void addT2SOImmNegOperands(MCInst &Inst, unsigned N) const {
1583 assert(N == 1 && "Invalid number of operands!");
1584 // The operand is actually a t2_so_imm, but we have its
1585 // negation in the assembly source, so twiddle it here.
1586 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1587 Inst.addOperand(MCOperand::CreateImm(-CE->getValue()));
1588 }
1589
Jim Grosbach4e53fe82012-04-05 20:57:13 +00001590 void addImm0_4095NegOperands(MCInst &Inst, unsigned N) const {
1591 assert(N == 1 && "Invalid number of operands!");
1592 // The operand is actually an imm0_4095, but we have its
1593 // negation in the assembly source, so twiddle it here.
1594 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1595 Inst.addOperand(MCOperand::CreateImm(-CE->getValue()));
1596 }
1597
Jim Grosbache70ec842011-10-28 22:50:54 +00001598 void addARMSOImmNotOperands(MCInst &Inst, unsigned N) const {
1599 assert(N == 1 && "Invalid number of operands!");
1600 // The operand is actually a so_imm, but we have its bitwise
1601 // negation in the assembly source, so twiddle it here.
1602 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1603 Inst.addOperand(MCOperand::CreateImm(~CE->getValue()));
1604 }
1605
Jim Grosbach3bc8a3d2011-12-08 00:31:07 +00001606 void addARMSOImmNegOperands(MCInst &Inst, unsigned N) const {
1607 assert(N == 1 && "Invalid number of operands!");
1608 // The operand is actually a so_imm, but we have its
1609 // negation in the assembly source, so twiddle it here.
1610 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1611 Inst.addOperand(MCOperand::CreateImm(-CE->getValue()));
1612 }
1613
Bruno Cardoso Lopes706d9462011-02-07 22:09:15 +00001614 void addMemBarrierOptOperands(MCInst &Inst, unsigned N) const {
1615 assert(N == 1 && "Invalid number of operands!");
1616 Inst.addOperand(MCOperand::CreateImm(unsigned(getMemBarrierOpt())));
1617 }
1618
Jim Grosbach7ce05792011-08-03 23:50:40 +00001619 void addMemNoOffsetOperands(MCInst &Inst, unsigned N) const {
1620 assert(N == 1 && "Invalid number of operands!");
Jim Grosbache53c87b2011-10-11 15:59:20 +00001621 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Bruno Cardoso Lopes505f3cd2011-03-24 21:04:58 +00001622 }
1623
Jim Grosbach0b4c6732012-01-18 22:46:46 +00001624 void addMemPCRelImm12Operands(MCInst &Inst, unsigned N) const {
1625 assert(N == 1 && "Invalid number of operands!");
1626 int32_t Imm = Memory.OffsetImm->getValue();
1627 // FIXME: Handle #-0
1628 if (Imm == INT32_MIN) Imm = 0;
1629 Inst.addOperand(MCOperand::CreateImm(Imm));
1630 }
1631
Jim Grosbach57dcb852011-10-11 17:29:55 +00001632 void addAlignedMemoryOperands(MCInst &Inst, unsigned N) const {
1633 assert(N == 2 && "Invalid number of operands!");
1634 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
1635 Inst.addOperand(MCOperand::CreateImm(Memory.Alignment));
1636 }
1637
Jim Grosbach7ce05792011-08-03 23:50:40 +00001638 void addAddrMode2Operands(MCInst &Inst, unsigned N) const {
1639 assert(N == 3 && "Invalid number of operands!");
Jim Grosbache53c87b2011-10-11 15:59:20 +00001640 int32_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0;
1641 if (!Memory.OffsetRegNum) {
Jim Grosbach7ce05792011-08-03 23:50:40 +00001642 ARM_AM::AddrOpc AddSub = Val < 0 ? ARM_AM::sub : ARM_AM::add;
1643 // Special case for #-0
1644 if (Val == INT32_MIN) Val = 0;
1645 if (Val < 0) Val = -Val;
1646 Val = ARM_AM::getAM2Opc(AddSub, Val, ARM_AM::no_shift);
1647 } else {
1648 // For register offset, we encode the shift type and negation flag
1649 // here.
Jim Grosbache53c87b2011-10-11 15:59:20 +00001650 Val = ARM_AM::getAM2Opc(Memory.isNegative ? ARM_AM::sub : ARM_AM::add,
1651 Memory.ShiftImm, Memory.ShiftType);
Bruno Cardoso Lopesae085542011-03-31 23:26:08 +00001652 }
Jim Grosbache53c87b2011-10-11 15:59:20 +00001653 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
1654 Inst.addOperand(MCOperand::CreateReg(Memory.OffsetRegNum));
Jim Grosbach7ce05792011-08-03 23:50:40 +00001655 Inst.addOperand(MCOperand::CreateImm(Val));
Bruno Cardoso Lopesae085542011-03-31 23:26:08 +00001656 }
1657
Jim Grosbach039c2e12011-08-04 23:01:30 +00001658 void addAM2OffsetImmOperands(MCInst &Inst, unsigned N) const {
1659 assert(N == 2 && "Invalid number of operands!");
1660 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1661 assert(CE && "non-constant AM2OffsetImm operand!");
1662 int32_t Val = CE->getValue();
1663 ARM_AM::AddrOpc AddSub = Val < 0 ? ARM_AM::sub : ARM_AM::add;
1664 // Special case for #-0
1665 if (Val == INT32_MIN) Val = 0;
1666 if (Val < 0) Val = -Val;
1667 Val = ARM_AM::getAM2Opc(AddSub, Val, ARM_AM::no_shift);
1668 Inst.addOperand(MCOperand::CreateReg(0));
1669 Inst.addOperand(MCOperand::CreateImm(Val));
1670 }
1671
Jim Grosbach2fd2b872011-08-10 20:29:19 +00001672 void addAddrMode3Operands(MCInst &Inst, unsigned N) const {
1673 assert(N == 3 && "Invalid number of operands!");
Jim Grosbach2f196742011-12-19 23:06:24 +00001674 // If we have an immediate that's not a constant, treat it as a label
1675 // reference needing a fixup. If it is a constant, it's something else
1676 // and we reject it.
1677 if (isImm()) {
1678 Inst.addOperand(MCOperand::CreateExpr(getImm()));
1679 Inst.addOperand(MCOperand::CreateReg(0));
1680 Inst.addOperand(MCOperand::CreateImm(0));
1681 return;
1682 }
1683
Jim Grosbache53c87b2011-10-11 15:59:20 +00001684 int32_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0;
1685 if (!Memory.OffsetRegNum) {
Jim Grosbach2fd2b872011-08-10 20:29:19 +00001686 ARM_AM::AddrOpc AddSub = Val < 0 ? ARM_AM::sub : ARM_AM::add;
1687 // Special case for #-0
1688 if (Val == INT32_MIN) Val = 0;
1689 if (Val < 0) Val = -Val;
1690 Val = ARM_AM::getAM3Opc(AddSub, Val);
1691 } else {
1692 // For register offset, we encode the shift type and negation flag
1693 // here.
Jim Grosbache53c87b2011-10-11 15:59:20 +00001694 Val = ARM_AM::getAM3Opc(Memory.isNegative ? ARM_AM::sub : ARM_AM::add, 0);
Jim Grosbach2fd2b872011-08-10 20:29:19 +00001695 }
Jim Grosbache53c87b2011-10-11 15:59:20 +00001696 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
1697 Inst.addOperand(MCOperand::CreateReg(Memory.OffsetRegNum));
Jim Grosbach2fd2b872011-08-10 20:29:19 +00001698 Inst.addOperand(MCOperand::CreateImm(Val));
1699 }
1700
1701 void addAM3OffsetOperands(MCInst &Inst, unsigned N) const {
1702 assert(N == 2 && "Invalid number of operands!");
Jim Grosbach21ff17c2011-10-07 23:24:09 +00001703 if (Kind == k_PostIndexRegister) {
Jim Grosbach2fd2b872011-08-10 20:29:19 +00001704 int32_t Val =
1705 ARM_AM::getAM3Opc(PostIdxReg.isAdd ? ARM_AM::add : ARM_AM::sub, 0);
1706 Inst.addOperand(MCOperand::CreateReg(PostIdxReg.RegNum));
1707 Inst.addOperand(MCOperand::CreateImm(Val));
Jim Grosbach251bf252011-08-10 21:56:18 +00001708 return;
Jim Grosbach2fd2b872011-08-10 20:29:19 +00001709 }
1710
1711 // Constant offset.
1712 const MCConstantExpr *CE = static_cast<const MCConstantExpr*>(getImm());
1713 int32_t Val = CE->getValue();
1714 ARM_AM::AddrOpc AddSub = Val < 0 ? ARM_AM::sub : ARM_AM::add;
1715 // Special case for #-0
1716 if (Val == INT32_MIN) Val = 0;
1717 if (Val < 0) Val = -Val;
Jim Grosbach251bf252011-08-10 21:56:18 +00001718 Val = ARM_AM::getAM3Opc(AddSub, Val);
Jim Grosbach2fd2b872011-08-10 20:29:19 +00001719 Inst.addOperand(MCOperand::CreateReg(0));
1720 Inst.addOperand(MCOperand::CreateImm(Val));
1721 }
1722
Jim Grosbach7ce05792011-08-03 23:50:40 +00001723 void addAddrMode5Operands(MCInst &Inst, unsigned N) const {
1724 assert(N == 2 && "Invalid number of operands!");
Jim Grosbach681460f2011-11-01 01:24:45 +00001725 // If we have an immediate that's not a constant, treat it as a label
1726 // reference needing a fixup. If it is a constant, it's something else
1727 // and we reject it.
1728 if (isImm()) {
1729 Inst.addOperand(MCOperand::CreateExpr(getImm()));
1730 Inst.addOperand(MCOperand::CreateImm(0));
1731 return;
1732 }
1733
Jim Grosbach7ce05792011-08-03 23:50:40 +00001734 // The lower two bits are always zero and as such are not encoded.
Jim Grosbache53c87b2011-10-11 15:59:20 +00001735 int32_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() / 4 : 0;
Jim Grosbach7ce05792011-08-03 23:50:40 +00001736 ARM_AM::AddrOpc AddSub = Val < 0 ? ARM_AM::sub : ARM_AM::add;
1737 // Special case for #-0
1738 if (Val == INT32_MIN) Val = 0;
1739 if (Val < 0) Val = -Val;
1740 Val = ARM_AM::getAM5Opc(AddSub, Val);
Jim Grosbache53c87b2011-10-11 15:59:20 +00001741 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Jim Grosbach7ce05792011-08-03 23:50:40 +00001742 Inst.addOperand(MCOperand::CreateImm(Val));
Bruno Cardoso Lopesac79e4c2011-04-04 17:18:19 +00001743 }
1744
Jim Grosbacha77295d2011-09-08 22:07:06 +00001745 void addMemImm8s4OffsetOperands(MCInst &Inst, unsigned N) const {
1746 assert(N == 2 && "Invalid number of operands!");
Jim Grosbach2f196742011-12-19 23:06:24 +00001747 // If we have an immediate that's not a constant, treat it as a label
1748 // reference needing a fixup. If it is a constant, it's something else
1749 // and we reject it.
1750 if (isImm()) {
1751 Inst.addOperand(MCOperand::CreateExpr(getImm()));
1752 Inst.addOperand(MCOperand::CreateImm(0));
1753 return;
1754 }
1755
Jim Grosbache53c87b2011-10-11 15:59:20 +00001756 int64_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0;
1757 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Jim Grosbacha77295d2011-09-08 22:07:06 +00001758 Inst.addOperand(MCOperand::CreateImm(Val));
1759 }
1760
Jim Grosbachb6aed502011-09-09 18:37:27 +00001761 void addMemImm0_1020s4OffsetOperands(MCInst &Inst, unsigned N) const {
1762 assert(N == 2 && "Invalid number of operands!");
1763 // The lower two bits are always zero and as such are not encoded.
Jim Grosbache53c87b2011-10-11 15:59:20 +00001764 int32_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() / 4 : 0;
1765 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Jim Grosbachb6aed502011-09-09 18:37:27 +00001766 Inst.addOperand(MCOperand::CreateImm(Val));
1767 }
1768
Jim Grosbach7ce05792011-08-03 23:50:40 +00001769 void addMemImm8OffsetOperands(MCInst &Inst, unsigned N) const {
1770 assert(N == 2 && "Invalid number of operands!");
Jim Grosbache53c87b2011-10-11 15:59:20 +00001771 int64_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0;
1772 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Jim Grosbach7ce05792011-08-03 23:50:40 +00001773 Inst.addOperand(MCOperand::CreateImm(Val));
Chris Lattner14b93852010-10-29 00:27:31 +00001774 }
Daniel Dunbar3483aca2010-08-11 05:24:50 +00001775
Jim Grosbachf0eee6e2011-09-07 23:39:14 +00001776 void addMemPosImm8OffsetOperands(MCInst &Inst, unsigned N) const {
1777 addMemImm8OffsetOperands(Inst, N);
1778 }
1779
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001780 void addMemNegImm8OffsetOperands(MCInst &Inst, unsigned N) const {
Jim Grosbachf0eee6e2011-09-07 23:39:14 +00001781 addMemImm8OffsetOperands(Inst, N);
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001782 }
1783
1784 void addMemUImm12OffsetOperands(MCInst &Inst, unsigned N) const {
1785 assert(N == 2 && "Invalid number of operands!");
1786 // If this is an immediate, it's a label reference.
Jim Grosbach21bcca82011-12-22 22:02:35 +00001787 if (isImm()) {
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001788 addExpr(Inst, getImm());
1789 Inst.addOperand(MCOperand::CreateImm(0));
1790 return;
1791 }
1792
1793 // Otherwise, it's a normal memory reg+offset.
Jim Grosbache53c87b2011-10-11 15:59:20 +00001794 int64_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0;
1795 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001796 Inst.addOperand(MCOperand::CreateImm(Val));
1797 }
1798
Jim Grosbach7ce05792011-08-03 23:50:40 +00001799 void addMemImm12OffsetOperands(MCInst &Inst, unsigned N) const {
1800 assert(N == 2 && "Invalid number of operands!");
Jim Grosbach09176e12011-08-08 20:59:31 +00001801 // If this is an immediate, it's a label reference.
Jim Grosbach21bcca82011-12-22 22:02:35 +00001802 if (isImm()) {
Jim Grosbach09176e12011-08-08 20:59:31 +00001803 addExpr(Inst, getImm());
1804 Inst.addOperand(MCOperand::CreateImm(0));
1805 return;
1806 }
1807
1808 // Otherwise, it's a normal memory reg+offset.
Jim Grosbache53c87b2011-10-11 15:59:20 +00001809 int64_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0;
1810 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Jim Grosbach7ce05792011-08-03 23:50:40 +00001811 Inst.addOperand(MCOperand::CreateImm(Val));
Bill Wendlingf4caf692010-12-14 03:36:38 +00001812 }
Bill Wendlingef4a68b2010-11-30 07:44:32 +00001813
Jim Grosbach7f739be2011-09-19 22:21:13 +00001814 void addMemTBBOperands(MCInst &Inst, unsigned N) const {
1815 assert(N == 2 && "Invalid number of operands!");
Jim Grosbache53c87b2011-10-11 15:59:20 +00001816 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
1817 Inst.addOperand(MCOperand::CreateReg(Memory.OffsetRegNum));
Jim Grosbach7f739be2011-09-19 22:21:13 +00001818 }
1819
1820 void addMemTBHOperands(MCInst &Inst, unsigned N) const {
1821 assert(N == 2 && "Invalid number of operands!");
Jim Grosbache53c87b2011-10-11 15:59:20 +00001822 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
1823 Inst.addOperand(MCOperand::CreateReg(Memory.OffsetRegNum));
Jim Grosbach7f739be2011-09-19 22:21:13 +00001824 }
1825
Jim Grosbach7ce05792011-08-03 23:50:40 +00001826 void addMemRegOffsetOperands(MCInst &Inst, unsigned N) const {
1827 assert(N == 3 && "Invalid number of operands!");
Jim Grosbach430052b2011-11-14 17:52:47 +00001828 unsigned Val =
1829 ARM_AM::getAM2Opc(Memory.isNegative ? ARM_AM::sub : ARM_AM::add,
1830 Memory.ShiftImm, Memory.ShiftType);
Jim Grosbache53c87b2011-10-11 15:59:20 +00001831 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
1832 Inst.addOperand(MCOperand::CreateReg(Memory.OffsetRegNum));
Jim Grosbach7ce05792011-08-03 23:50:40 +00001833 Inst.addOperand(MCOperand::CreateImm(Val));
1834 }
1835
Jim Grosbachab899c12011-09-07 23:10:15 +00001836 void addT2MemRegOffsetOperands(MCInst &Inst, unsigned N) const {
1837 assert(N == 3 && "Invalid number of operands!");
Jim Grosbache53c87b2011-10-11 15:59:20 +00001838 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
1839 Inst.addOperand(MCOperand::CreateReg(Memory.OffsetRegNum));
1840 Inst.addOperand(MCOperand::CreateImm(Memory.ShiftImm));
Jim Grosbachab899c12011-09-07 23:10:15 +00001841 }
1842
Jim Grosbach7ce05792011-08-03 23:50:40 +00001843 void addMemThumbRROperands(MCInst &Inst, unsigned N) const {
1844 assert(N == 2 && "Invalid number of operands!");
Jim Grosbache53c87b2011-10-11 15:59:20 +00001845 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
1846 Inst.addOperand(MCOperand::CreateReg(Memory.OffsetRegNum));
Jim Grosbach7ce05792011-08-03 23:50:40 +00001847 }
1848
Jim Grosbach60f91a32011-08-19 17:55:24 +00001849 void addMemThumbRIs4Operands(MCInst &Inst, unsigned N) const {
1850 assert(N == 2 && "Invalid number of operands!");
Jim Grosbache53c87b2011-10-11 15:59:20 +00001851 int64_t Val = Memory.OffsetImm ? (Memory.OffsetImm->getValue() / 4) : 0;
1852 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Jim Grosbach60f91a32011-08-19 17:55:24 +00001853 Inst.addOperand(MCOperand::CreateImm(Val));
1854 }
1855
Jim Grosbach38466302011-08-19 18:55:51 +00001856 void addMemThumbRIs2Operands(MCInst &Inst, unsigned N) const {
1857 assert(N == 2 && "Invalid number of operands!");
Jim Grosbache53c87b2011-10-11 15:59:20 +00001858 int64_t Val = Memory.OffsetImm ? (Memory.OffsetImm->getValue() / 2) : 0;
1859 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Jim Grosbach38466302011-08-19 18:55:51 +00001860 Inst.addOperand(MCOperand::CreateImm(Val));
1861 }
1862
Jim Grosbach48ff5ff2011-08-19 18:49:59 +00001863 void addMemThumbRIs1Operands(MCInst &Inst, unsigned N) const {
1864 assert(N == 2 && "Invalid number of operands!");
Jim Grosbache53c87b2011-10-11 15:59:20 +00001865 int64_t Val = Memory.OffsetImm ? (Memory.OffsetImm->getValue()) : 0;
1866 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Jim Grosbach48ff5ff2011-08-19 18:49:59 +00001867 Inst.addOperand(MCOperand::CreateImm(Val));
1868 }
1869
Jim Grosbachecd85892011-08-19 18:13:48 +00001870 void addMemThumbSPIOperands(MCInst &Inst, unsigned N) const {
1871 assert(N == 2 && "Invalid number of operands!");
Jim Grosbache53c87b2011-10-11 15:59:20 +00001872 int64_t Val = Memory.OffsetImm ? (Memory.OffsetImm->getValue() / 4) : 0;
1873 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Jim Grosbachecd85892011-08-19 18:13:48 +00001874 Inst.addOperand(MCOperand::CreateImm(Val));
1875 }
1876
Jim Grosbach7ce05792011-08-03 23:50:40 +00001877 void addPostIdxImm8Operands(MCInst &Inst, unsigned N) const {
1878 assert(N == 1 && "Invalid number of operands!");
1879 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1880 assert(CE && "non-constant post-idx-imm8 operand!");
1881 int Imm = CE->getValue();
1882 bool isAdd = Imm >= 0;
Owen Anderson63553c72011-08-29 17:17:09 +00001883 if (Imm == INT32_MIN) Imm = 0;
Jim Grosbach7ce05792011-08-03 23:50:40 +00001884 Imm = (Imm < 0 ? -Imm : Imm) | (int)isAdd << 8;
1885 Inst.addOperand(MCOperand::CreateImm(Imm));
1886 }
1887
Jim Grosbach2bd01182011-10-11 21:55:36 +00001888 void addPostIdxImm8s4Operands(MCInst &Inst, unsigned N) const {
1889 assert(N == 1 && "Invalid number of operands!");
1890 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1891 assert(CE && "non-constant post-idx-imm8s4 operand!");
1892 int Imm = CE->getValue();
1893 bool isAdd = Imm >= 0;
1894 if (Imm == INT32_MIN) Imm = 0;
1895 // Immediate is scaled by 4.
1896 Imm = ((Imm < 0 ? -Imm : Imm) / 4) | (int)isAdd << 8;
1897 Inst.addOperand(MCOperand::CreateImm(Imm));
1898 }
1899
Jim Grosbach7ce05792011-08-03 23:50:40 +00001900 void addPostIdxRegOperands(MCInst &Inst, unsigned N) const {
1901 assert(N == 2 && "Invalid number of operands!");
1902 Inst.addOperand(MCOperand::CreateReg(PostIdxReg.RegNum));
Jim Grosbachf4fa3d62011-08-05 21:28:30 +00001903 Inst.addOperand(MCOperand::CreateImm(PostIdxReg.isAdd));
1904 }
1905
1906 void addPostIdxRegShiftedOperands(MCInst &Inst, unsigned N) const {
1907 assert(N == 2 && "Invalid number of operands!");
1908 Inst.addOperand(MCOperand::CreateReg(PostIdxReg.RegNum));
1909 // The sign, shift type, and shift amount are encoded in a single operand
1910 // using the AM2 encoding helpers.
1911 ARM_AM::AddrOpc opc = PostIdxReg.isAdd ? ARM_AM::add : ARM_AM::sub;
1912 unsigned Imm = ARM_AM::getAM2Opc(opc, PostIdxReg.ShiftImm,
1913 PostIdxReg.ShiftTy);
1914 Inst.addOperand(MCOperand::CreateImm(Imm));
Bill Wendlingef4a68b2010-11-30 07:44:32 +00001915 }
1916
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +00001917 void addMSRMaskOperands(MCInst &Inst, unsigned N) const {
1918 assert(N == 1 && "Invalid number of operands!");
1919 Inst.addOperand(MCOperand::CreateImm(unsigned(getMSRMask())));
1920 }
1921
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00001922 void addProcIFlagsOperands(MCInst &Inst, unsigned N) const {
1923 assert(N == 1 && "Invalid number of operands!");
1924 Inst.addOperand(MCOperand::CreateImm(unsigned(getProcIFlags())));
1925 }
1926
Jim Grosbach6029b6d2011-11-29 23:51:09 +00001927 void addVecListOperands(MCInst &Inst, unsigned N) const {
Jim Grosbach862019c2011-10-18 23:02:30 +00001928 assert(N == 1 && "Invalid number of operands!");
1929 Inst.addOperand(MCOperand::CreateReg(VectorList.RegNum));
1930 }
1931
Jim Grosbach7636bf62011-12-02 00:35:16 +00001932 void addVecListIndexedOperands(MCInst &Inst, unsigned N) const {
1933 assert(N == 2 && "Invalid number of operands!");
1934 Inst.addOperand(MCOperand::CreateReg(VectorList.RegNum));
1935 Inst.addOperand(MCOperand::CreateImm(VectorList.LaneIndex));
1936 }
1937
Jim Grosbach460a9052011-10-07 23:56:00 +00001938 void addVectorIndex8Operands(MCInst &Inst, unsigned N) const {
1939 assert(N == 1 && "Invalid number of operands!");
1940 Inst.addOperand(MCOperand::CreateImm(getVectorIndex()));
1941 }
1942
1943 void addVectorIndex16Operands(MCInst &Inst, unsigned N) const {
1944 assert(N == 1 && "Invalid number of operands!");
1945 Inst.addOperand(MCOperand::CreateImm(getVectorIndex()));
1946 }
1947
1948 void addVectorIndex32Operands(MCInst &Inst, unsigned N) const {
1949 assert(N == 1 && "Invalid number of operands!");
1950 Inst.addOperand(MCOperand::CreateImm(getVectorIndex()));
1951 }
1952
Jim Grosbach0e387b22011-10-17 22:26:03 +00001953 void addNEONi8splatOperands(MCInst &Inst, unsigned N) const {
1954 assert(N == 1 && "Invalid number of operands!");
1955 // The immediate encodes the type of constant as well as the value.
1956 // Mask in that this is an i8 splat.
1957 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1958 Inst.addOperand(MCOperand::CreateImm(CE->getValue() | 0xe00));
1959 }
1960
Jim Grosbachea461102011-10-17 23:09:09 +00001961 void addNEONi16splatOperands(MCInst &Inst, unsigned N) const {
1962 assert(N == 1 && "Invalid number of operands!");
1963 // The immediate encodes the type of constant as well as the value.
1964 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1965 unsigned Value = CE->getValue();
1966 if (Value >= 256)
1967 Value = (Value >> 8) | 0xa00;
1968 else
1969 Value |= 0x800;
1970 Inst.addOperand(MCOperand::CreateImm(Value));
1971 }
1972
Jim Grosbach6248a542011-10-18 00:22:00 +00001973 void addNEONi32splatOperands(MCInst &Inst, unsigned N) const {
1974 assert(N == 1 && "Invalid number of operands!");
1975 // The immediate encodes the type of constant as well as the value.
1976 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1977 unsigned Value = CE->getValue();
1978 if (Value >= 256 && Value <= 0xff00)
1979 Value = (Value >> 8) | 0x200;
1980 else if (Value > 0xffff && Value <= 0xff0000)
1981 Value = (Value >> 16) | 0x400;
1982 else if (Value > 0xffffff)
1983 Value = (Value >> 24) | 0x600;
1984 Inst.addOperand(MCOperand::CreateImm(Value));
1985 }
1986
1987 void addNEONi32vmovOperands(MCInst &Inst, unsigned N) const {
1988 assert(N == 1 && "Invalid number of operands!");
1989 // The immediate encodes the type of constant as well as the value.
1990 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1991 unsigned Value = CE->getValue();
1992 if (Value >= 256 && Value <= 0xffff)
1993 Value = (Value >> 8) | ((Value & 0xff) ? 0xc00 : 0x200);
1994 else if (Value > 0xffff && Value <= 0xffffff)
1995 Value = (Value >> 16) | ((Value & 0xff) ? 0xd00 : 0x400);
1996 else if (Value > 0xffffff)
1997 Value = (Value >> 24) | 0x600;
1998 Inst.addOperand(MCOperand::CreateImm(Value));
1999 }
2000
Jim Grosbach9b087852011-12-19 23:51:07 +00002001 void addNEONi32vmovNegOperands(MCInst &Inst, unsigned N) const {
2002 assert(N == 1 && "Invalid number of operands!");
2003 // The immediate encodes the type of constant as well as the value.
2004 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2005 unsigned Value = ~CE->getValue();
2006 if (Value >= 256 && Value <= 0xffff)
2007 Value = (Value >> 8) | ((Value & 0xff) ? 0xc00 : 0x200);
2008 else if (Value > 0xffff && Value <= 0xffffff)
2009 Value = (Value >> 16) | ((Value & 0xff) ? 0xd00 : 0x400);
2010 else if (Value > 0xffffff)
2011 Value = (Value >> 24) | 0x600;
2012 Inst.addOperand(MCOperand::CreateImm(Value));
2013 }
2014
Jim Grosbachf2f5bc62011-10-18 16:18:11 +00002015 void addNEONi64splatOperands(MCInst &Inst, unsigned N) const {
2016 assert(N == 1 && "Invalid number of operands!");
2017 // The immediate encodes the type of constant as well as the value.
2018 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2019 uint64_t Value = CE->getValue();
2020 unsigned Imm = 0;
2021 for (unsigned i = 0; i < 8; ++i, Value >>= 8) {
2022 Imm |= (Value & 1) << i;
2023 }
2024 Inst.addOperand(MCOperand::CreateImm(Imm | 0x1e00));
2025 }
2026
Jim Grosbachb7f689b2011-07-13 15:34:57 +00002027 virtual void print(raw_ostream &OS) const;
Daniel Dunbarb3cb6962010-08-11 06:37:04 +00002028
Jim Grosbach89df9962011-08-26 21:43:41 +00002029 static ARMOperand *CreateITMask(unsigned Mask, SMLoc S) {
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002030 ARMOperand *Op = new ARMOperand(k_ITCondMask);
Jim Grosbach89df9962011-08-26 21:43:41 +00002031 Op->ITMask.Mask = Mask;
2032 Op->StartLoc = S;
2033 Op->EndLoc = S;
2034 return Op;
2035 }
2036
Chris Lattner3a697562010-10-28 17:20:03 +00002037 static ARMOperand *CreateCondCode(ARMCC::CondCodes CC, SMLoc S) {
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002038 ARMOperand *Op = new ARMOperand(k_CondCode);
Daniel Dunbar345a9a62010-08-11 06:37:20 +00002039 Op->CC.Val = CC;
2040 Op->StartLoc = S;
2041 Op->EndLoc = S;
Chris Lattner3a697562010-10-28 17:20:03 +00002042 return Op;
Daniel Dunbar345a9a62010-08-11 06:37:20 +00002043 }
2044
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +00002045 static ARMOperand *CreateCoprocNum(unsigned CopVal, SMLoc S) {
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002046 ARMOperand *Op = new ARMOperand(k_CoprocNum);
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +00002047 Op->Cop.Val = CopVal;
2048 Op->StartLoc = S;
2049 Op->EndLoc = S;
2050 return Op;
2051 }
2052
2053 static ARMOperand *CreateCoprocReg(unsigned CopVal, SMLoc S) {
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002054 ARMOperand *Op = new ARMOperand(k_CoprocReg);
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +00002055 Op->Cop.Val = CopVal;
2056 Op->StartLoc = S;
2057 Op->EndLoc = S;
2058 return Op;
2059 }
2060
Jim Grosbach9b8f2a02011-10-12 17:34:41 +00002061 static ARMOperand *CreateCoprocOption(unsigned Val, SMLoc S, SMLoc E) {
2062 ARMOperand *Op = new ARMOperand(k_CoprocOption);
2063 Op->Cop.Val = Val;
2064 Op->StartLoc = S;
2065 Op->EndLoc = E;
2066 return Op;
2067 }
2068
Jim Grosbachd67641b2010-12-06 18:21:12 +00002069 static ARMOperand *CreateCCOut(unsigned RegNum, SMLoc S) {
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002070 ARMOperand *Op = new ARMOperand(k_CCOut);
Jim Grosbachd67641b2010-12-06 18:21:12 +00002071 Op->Reg.RegNum = RegNum;
2072 Op->StartLoc = S;
2073 Op->EndLoc = S;
2074 return Op;
2075 }
2076
Chris Lattner3a697562010-10-28 17:20:03 +00002077 static ARMOperand *CreateToken(StringRef Str, SMLoc S) {
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002078 ARMOperand *Op = new ARMOperand(k_Token);
Sean Callanan76264762010-04-02 22:27:05 +00002079 Op->Tok.Data = Str.data();
2080 Op->Tok.Length = Str.size();
2081 Op->StartLoc = S;
2082 Op->EndLoc = S;
Chris Lattner3a697562010-10-28 17:20:03 +00002083 return Op;
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00002084 }
2085
Bill Wendling50d0f582010-11-18 23:43:05 +00002086 static ARMOperand *CreateReg(unsigned RegNum, SMLoc S, SMLoc E) {
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002087 ARMOperand *Op = new ARMOperand(k_Register);
Sean Callanan76264762010-04-02 22:27:05 +00002088 Op->Reg.RegNum = RegNum;
Sean Callanan76264762010-04-02 22:27:05 +00002089 Op->StartLoc = S;
2090 Op->EndLoc = E;
Chris Lattner3a697562010-10-28 17:20:03 +00002091 return Op;
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00002092 }
2093
Jim Grosbache8606dc2011-07-13 17:50:29 +00002094 static ARMOperand *CreateShiftedRegister(ARM_AM::ShiftOpc ShTy,
2095 unsigned SrcReg,
2096 unsigned ShiftReg,
2097 unsigned ShiftImm,
2098 SMLoc S, SMLoc E) {
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002099 ARMOperand *Op = new ARMOperand(k_ShiftedRegister);
Jim Grosbachaf6981f2011-07-25 20:49:51 +00002100 Op->RegShiftedReg.ShiftTy = ShTy;
2101 Op->RegShiftedReg.SrcReg = SrcReg;
2102 Op->RegShiftedReg.ShiftReg = ShiftReg;
2103 Op->RegShiftedReg.ShiftImm = ShiftImm;
Jim Grosbache8606dc2011-07-13 17:50:29 +00002104 Op->StartLoc = S;
2105 Op->EndLoc = E;
2106 return Op;
2107 }
2108
Owen Anderson92a20222011-07-21 18:54:16 +00002109 static ARMOperand *CreateShiftedImmediate(ARM_AM::ShiftOpc ShTy,
2110 unsigned SrcReg,
2111 unsigned ShiftImm,
2112 SMLoc S, SMLoc E) {
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002113 ARMOperand *Op = new ARMOperand(k_ShiftedImmediate);
Jim Grosbachaf6981f2011-07-25 20:49:51 +00002114 Op->RegShiftedImm.ShiftTy = ShTy;
2115 Op->RegShiftedImm.SrcReg = SrcReg;
2116 Op->RegShiftedImm.ShiftImm = ShiftImm;
Owen Anderson92a20222011-07-21 18:54:16 +00002117 Op->StartLoc = S;
2118 Op->EndLoc = E;
2119 return Op;
2120 }
2121
Jim Grosbach580f4a92011-07-25 22:20:28 +00002122 static ARMOperand *CreateShifterImm(bool isASR, unsigned Imm,
Owen Anderson00828302011-03-18 22:50:18 +00002123 SMLoc S, SMLoc E) {
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002124 ARMOperand *Op = new ARMOperand(k_ShifterImmediate);
Jim Grosbach580f4a92011-07-25 22:20:28 +00002125 Op->ShifterImm.isASR = isASR;
2126 Op->ShifterImm.Imm = Imm;
Owen Anderson00828302011-03-18 22:50:18 +00002127 Op->StartLoc = S;
2128 Op->EndLoc = E;
2129 return Op;
2130 }
2131
Jim Grosbach7e1547e2011-07-27 20:15:40 +00002132 static ARMOperand *CreateRotImm(unsigned Imm, SMLoc S, SMLoc E) {
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002133 ARMOperand *Op = new ARMOperand(k_RotateImmediate);
Jim Grosbach7e1547e2011-07-27 20:15:40 +00002134 Op->RotImm.Imm = Imm;
2135 Op->StartLoc = S;
2136 Op->EndLoc = E;
2137 return Op;
2138 }
2139
Jim Grosbach293a2ee2011-07-28 21:34:26 +00002140 static ARMOperand *CreateBitfield(unsigned LSB, unsigned Width,
2141 SMLoc S, SMLoc E) {
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002142 ARMOperand *Op = new ARMOperand(k_BitfieldDescriptor);
Jim Grosbach293a2ee2011-07-28 21:34:26 +00002143 Op->Bitfield.LSB = LSB;
2144 Op->Bitfield.Width = Width;
2145 Op->StartLoc = S;
2146 Op->EndLoc = E;
2147 return Op;
2148 }
2149
Bill Wendling7729e062010-11-09 22:44:22 +00002150 static ARMOperand *
Bill Wendling5fa22a12010-11-09 23:28:44 +00002151 CreateRegList(const SmallVectorImpl<std::pair<unsigned, SMLoc> > &Regs,
Matt Beaumont-Gaycc8d10e2010-11-10 00:08:58 +00002152 SMLoc StartLoc, SMLoc EndLoc) {
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002153 KindTy Kind = k_RegisterList;
Bill Wendling0f630752010-11-17 04:32:08 +00002154
Jim Grosbachd300b942011-09-13 22:56:44 +00002155 if (ARMMCRegisterClasses[ARM::DPRRegClassID].contains(Regs.front().first))
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002156 Kind = k_DPRRegisterList;
Jim Grosbachd300b942011-09-13 22:56:44 +00002157 else if (ARMMCRegisterClasses[ARM::SPRRegClassID].
Evan Cheng275944a2011-07-25 21:32:49 +00002158 contains(Regs.front().first))
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002159 Kind = k_SPRRegisterList;
Bill Wendling0f630752010-11-17 04:32:08 +00002160
2161 ARMOperand *Op = new ARMOperand(Kind);
Bill Wendling5fa22a12010-11-09 23:28:44 +00002162 for (SmallVectorImpl<std::pair<unsigned, SMLoc> >::const_iterator
Bill Wendling7729e062010-11-09 22:44:22 +00002163 I = Regs.begin(), E = Regs.end(); I != E; ++I)
Bill Wendling24d22d22010-11-18 21:50:54 +00002164 Op->Registers.push_back(I->first);
Bill Wendlingcb21d1c2010-11-19 00:38:19 +00002165 array_pod_sort(Op->Registers.begin(), Op->Registers.end());
Matt Beaumont-Gaycc8d10e2010-11-10 00:08:58 +00002166 Op->StartLoc = StartLoc;
2167 Op->EndLoc = EndLoc;
Bill Wendling8d5acb72010-11-06 19:56:04 +00002168 return Op;
2169 }
2170
Jim Grosbach862019c2011-10-18 23:02:30 +00002171 static ARMOperand *CreateVectorList(unsigned RegNum, unsigned Count,
Jim Grosbach0aaf4cd2011-12-15 21:44:33 +00002172 bool isDoubleSpaced, SMLoc S, SMLoc E) {
Jim Grosbach862019c2011-10-18 23:02:30 +00002173 ARMOperand *Op = new ARMOperand(k_VectorList);
2174 Op->VectorList.RegNum = RegNum;
2175 Op->VectorList.Count = Count;
Jim Grosbach0aaf4cd2011-12-15 21:44:33 +00002176 Op->VectorList.isDoubleSpaced = isDoubleSpaced;
Jim Grosbach862019c2011-10-18 23:02:30 +00002177 Op->StartLoc = S;
2178 Op->EndLoc = E;
2179 return Op;
2180 }
2181
Jim Grosbach98b05a52011-11-30 01:09:44 +00002182 static ARMOperand *CreateVectorListAllLanes(unsigned RegNum, unsigned Count,
Jim Grosbach3471d4f2011-12-21 00:38:54 +00002183 bool isDoubleSpaced,
Jim Grosbach98b05a52011-11-30 01:09:44 +00002184 SMLoc S, SMLoc E) {
2185 ARMOperand *Op = new ARMOperand(k_VectorListAllLanes);
2186 Op->VectorList.RegNum = RegNum;
2187 Op->VectorList.Count = Count;
Jim Grosbach3471d4f2011-12-21 00:38:54 +00002188 Op->VectorList.isDoubleSpaced = isDoubleSpaced;
Jim Grosbach98b05a52011-11-30 01:09:44 +00002189 Op->StartLoc = S;
2190 Op->EndLoc = E;
2191 return Op;
2192 }
2193
Jim Grosbach7636bf62011-12-02 00:35:16 +00002194 static ARMOperand *CreateVectorListIndexed(unsigned RegNum, unsigned Count,
Jim Grosbach95fad1c2011-12-20 19:21:26 +00002195 unsigned Index,
2196 bool isDoubleSpaced,
2197 SMLoc S, SMLoc E) {
Jim Grosbach7636bf62011-12-02 00:35:16 +00002198 ARMOperand *Op = new ARMOperand(k_VectorListIndexed);
2199 Op->VectorList.RegNum = RegNum;
2200 Op->VectorList.Count = Count;
2201 Op->VectorList.LaneIndex = Index;
Jim Grosbach95fad1c2011-12-20 19:21:26 +00002202 Op->VectorList.isDoubleSpaced = isDoubleSpaced;
Jim Grosbach7636bf62011-12-02 00:35:16 +00002203 Op->StartLoc = S;
2204 Op->EndLoc = E;
2205 return Op;
2206 }
2207
Jim Grosbach460a9052011-10-07 23:56:00 +00002208 static ARMOperand *CreateVectorIndex(unsigned Idx, SMLoc S, SMLoc E,
2209 MCContext &Ctx) {
2210 ARMOperand *Op = new ARMOperand(k_VectorIndex);
2211 Op->VectorIndex.Val = Idx;
2212 Op->StartLoc = S;
2213 Op->EndLoc = E;
2214 return Op;
2215 }
2216
Chris Lattner3a697562010-10-28 17:20:03 +00002217 static ARMOperand *CreateImm(const MCExpr *Val, SMLoc S, SMLoc E) {
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002218 ARMOperand *Op = new ARMOperand(k_Immediate);
Sean Callanan76264762010-04-02 22:27:05 +00002219 Op->Imm.Val = Val;
Sean Callanan76264762010-04-02 22:27:05 +00002220 Op->StartLoc = S;
2221 Op->EndLoc = E;
Chris Lattner3a697562010-10-28 17:20:03 +00002222 return Op;
Kevin Enderbycfe07242009-10-13 22:19:02 +00002223 }
2224
Jim Grosbach7ce05792011-08-03 23:50:40 +00002225 static ARMOperand *CreateMem(unsigned BaseRegNum,
2226 const MCConstantExpr *OffsetImm,
2227 unsigned OffsetRegNum,
2228 ARM_AM::ShiftOpc ShiftType,
Jim Grosbach0d6fac32011-08-05 22:03:36 +00002229 unsigned ShiftImm,
Jim Grosbach57dcb852011-10-11 17:29:55 +00002230 unsigned Alignment,
Jim Grosbach7ce05792011-08-03 23:50:40 +00002231 bool isNegative,
Chris Lattner3a697562010-10-28 17:20:03 +00002232 SMLoc S, SMLoc E) {
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002233 ARMOperand *Op = new ARMOperand(k_Memory);
Jim Grosbache53c87b2011-10-11 15:59:20 +00002234 Op->Memory.BaseRegNum = BaseRegNum;
2235 Op->Memory.OffsetImm = OffsetImm;
2236 Op->Memory.OffsetRegNum = OffsetRegNum;
2237 Op->Memory.ShiftType = ShiftType;
2238 Op->Memory.ShiftImm = ShiftImm;
Jim Grosbach57dcb852011-10-11 17:29:55 +00002239 Op->Memory.Alignment = Alignment;
Jim Grosbache53c87b2011-10-11 15:59:20 +00002240 Op->Memory.isNegative = isNegative;
Jim Grosbach7ce05792011-08-03 23:50:40 +00002241 Op->StartLoc = S;
2242 Op->EndLoc = E;
2243 return Op;
2244 }
Jim Grosbach16c74252010-10-29 14:46:02 +00002245
Jim Grosbachf4fa3d62011-08-05 21:28:30 +00002246 static ARMOperand *CreatePostIdxReg(unsigned RegNum, bool isAdd,
2247 ARM_AM::ShiftOpc ShiftTy,
2248 unsigned ShiftImm,
Jim Grosbach7ce05792011-08-03 23:50:40 +00002249 SMLoc S, SMLoc E) {
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002250 ARMOperand *Op = new ARMOperand(k_PostIndexRegister);
Jim Grosbach7ce05792011-08-03 23:50:40 +00002251 Op->PostIdxReg.RegNum = RegNum;
Jim Grosbachf4fa3d62011-08-05 21:28:30 +00002252 Op->PostIdxReg.isAdd = isAdd;
2253 Op->PostIdxReg.ShiftTy = ShiftTy;
2254 Op->PostIdxReg.ShiftImm = ShiftImm;
Sean Callanan76264762010-04-02 22:27:05 +00002255 Op->StartLoc = S;
2256 Op->EndLoc = E;
Chris Lattner3a697562010-10-28 17:20:03 +00002257 return Op;
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00002258 }
Bruno Cardoso Lopes706d9462011-02-07 22:09:15 +00002259
2260 static ARMOperand *CreateMemBarrierOpt(ARM_MB::MemBOpt Opt, SMLoc S) {
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002261 ARMOperand *Op = new ARMOperand(k_MemBarrierOpt);
Bruno Cardoso Lopes706d9462011-02-07 22:09:15 +00002262 Op->MBOpt.Val = Opt;
2263 Op->StartLoc = S;
2264 Op->EndLoc = S;
2265 return Op;
2266 }
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00002267
2268 static ARMOperand *CreateProcIFlags(ARM_PROC::IFlags IFlags, SMLoc S) {
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002269 ARMOperand *Op = new ARMOperand(k_ProcIFlags);
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00002270 Op->IFlags.Val = IFlags;
2271 Op->StartLoc = S;
2272 Op->EndLoc = S;
2273 return Op;
2274 }
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +00002275
2276 static ARMOperand *CreateMSRMask(unsigned MMask, SMLoc S) {
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002277 ARMOperand *Op = new ARMOperand(k_MSRMask);
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +00002278 Op->MMask.Val = MMask;
2279 Op->StartLoc = S;
2280 Op->EndLoc = S;
2281 return Op;
2282 }
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00002283};
2284
2285} // end anonymous namespace.
2286
Jim Grosbachb7f689b2011-07-13 15:34:57 +00002287void ARMOperand::print(raw_ostream &OS) const {
Daniel Dunbarfa315de2010-08-11 06:37:12 +00002288 switch (Kind) {
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002289 case k_CondCode:
Daniel Dunbar6a5c22e2011-01-10 15:26:21 +00002290 OS << "<ARMCC::" << ARMCondCodeToString(getCondCode()) << ">";
Daniel Dunbarfa315de2010-08-11 06:37:12 +00002291 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002292 case k_CCOut:
Jim Grosbachd67641b2010-12-06 18:21:12 +00002293 OS << "<ccout " << getReg() << ">";
2294 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002295 case k_ITCondMask: {
Benjamin Kramer1a2f9882011-10-22 16:50:00 +00002296 static const char *MaskStr[] = {
2297 "()", "(t)", "(e)", "(tt)", "(et)", "(te)", "(ee)", "(ttt)", "(ett)",
2298 "(tet)", "(eet)", "(tte)", "(ete)", "(tee)", "(eee)"
2299 };
Jim Grosbach89df9962011-08-26 21:43:41 +00002300 assert((ITMask.Mask & 0xf) == ITMask.Mask);
2301 OS << "<it-mask " << MaskStr[ITMask.Mask] << ">";
2302 break;
2303 }
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002304 case k_CoprocNum:
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +00002305 OS << "<coprocessor number: " << getCoproc() << ">";
2306 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002307 case k_CoprocReg:
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +00002308 OS << "<coprocessor register: " << getCoproc() << ">";
2309 break;
Jim Grosbach9b8f2a02011-10-12 17:34:41 +00002310 case k_CoprocOption:
2311 OS << "<coprocessor option: " << CoprocOption.Val << ">";
2312 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002313 case k_MSRMask:
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +00002314 OS << "<mask: " << getMSRMask() << ">";
2315 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002316 case k_Immediate:
Daniel Dunbarfa315de2010-08-11 06:37:12 +00002317 getImm()->print(OS);
2318 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002319 case k_MemBarrierOpt:
Bruno Cardoso Lopes706d9462011-02-07 22:09:15 +00002320 OS << "<ARM_MB::" << MemBOptToString(getMemBarrierOpt()) << ">";
2321 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002322 case k_Memory:
Daniel Dunbar6ec56202011-01-18 05:55:21 +00002323 OS << "<memory "
Jim Grosbache53c87b2011-10-11 15:59:20 +00002324 << " base:" << Memory.BaseRegNum;
Daniel Dunbar6ec56202011-01-18 05:55:21 +00002325 OS << ">";
Daniel Dunbarfa315de2010-08-11 06:37:12 +00002326 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002327 case k_PostIndexRegister:
Jim Grosbachf4fa3d62011-08-05 21:28:30 +00002328 OS << "post-idx register " << (PostIdxReg.isAdd ? "" : "-")
2329 << PostIdxReg.RegNum;
2330 if (PostIdxReg.ShiftTy != ARM_AM::no_shift)
2331 OS << ARM_AM::getShiftOpcStr(PostIdxReg.ShiftTy) << " "
2332 << PostIdxReg.ShiftImm;
2333 OS << ">";
Jim Grosbach7ce05792011-08-03 23:50:40 +00002334 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002335 case k_ProcIFlags: {
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00002336 OS << "<ARM_PROC::";
2337 unsigned IFlags = getProcIFlags();
2338 for (int i=2; i >= 0; --i)
2339 if (IFlags & (1 << i))
2340 OS << ARM_PROC::IFlagsToString(1 << i);
2341 OS << ">";
2342 break;
2343 }
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002344 case k_Register:
Bill Wendling50d0f582010-11-18 23:43:05 +00002345 OS << "<register " << getReg() << ">";
Daniel Dunbarfa315de2010-08-11 06:37:12 +00002346 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002347 case k_ShifterImmediate:
Jim Grosbach580f4a92011-07-25 22:20:28 +00002348 OS << "<shift " << (ShifterImm.isASR ? "asr" : "lsl")
2349 << " #" << ShifterImm.Imm << ">";
Jim Grosbache8606dc2011-07-13 17:50:29 +00002350 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002351 case k_ShiftedRegister:
Owen Anderson92a20222011-07-21 18:54:16 +00002352 OS << "<so_reg_reg "
Jim Grosbachefed3d12011-11-16 21:46:50 +00002353 << RegShiftedReg.SrcReg << " "
2354 << ARM_AM::getShiftOpcStr(RegShiftedReg.ShiftTy)
2355 << " " << RegShiftedReg.ShiftReg << ">";
Owen Anderson00828302011-03-18 22:50:18 +00002356 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002357 case k_ShiftedImmediate:
Owen Anderson92a20222011-07-21 18:54:16 +00002358 OS << "<so_reg_imm "
Jim Grosbachefed3d12011-11-16 21:46:50 +00002359 << RegShiftedImm.SrcReg << " "
2360 << ARM_AM::getShiftOpcStr(RegShiftedImm.ShiftTy)
2361 << " #" << RegShiftedImm.ShiftImm << ">";
Owen Anderson92a20222011-07-21 18:54:16 +00002362 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002363 case k_RotateImmediate:
Jim Grosbach7e1547e2011-07-27 20:15:40 +00002364 OS << "<ror " << " #" << (RotImm.Imm * 8) << ">";
2365 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002366 case k_BitfieldDescriptor:
Jim Grosbach293a2ee2011-07-28 21:34:26 +00002367 OS << "<bitfield " << "lsb: " << Bitfield.LSB
2368 << ", width: " << Bitfield.Width << ">";
2369 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002370 case k_RegisterList:
2371 case k_DPRRegisterList:
2372 case k_SPRRegisterList: {
Bill Wendling8d5acb72010-11-06 19:56:04 +00002373 OS << "<register_list ";
Bill Wendling8d5acb72010-11-06 19:56:04 +00002374
Bill Wendling5fa22a12010-11-09 23:28:44 +00002375 const SmallVectorImpl<unsigned> &RegList = getRegList();
2376 for (SmallVectorImpl<unsigned>::const_iterator
Bill Wendling7729e062010-11-09 22:44:22 +00002377 I = RegList.begin(), E = RegList.end(); I != E; ) {
2378 OS << *I;
2379 if (++I < E) OS << ", ";
Bill Wendling8d5acb72010-11-06 19:56:04 +00002380 }
2381
2382 OS << ">";
2383 break;
2384 }
Jim Grosbach862019c2011-10-18 23:02:30 +00002385 case k_VectorList:
2386 OS << "<vector_list " << VectorList.Count << " * "
2387 << VectorList.RegNum << ">";
2388 break;
Jim Grosbach98b05a52011-11-30 01:09:44 +00002389 case k_VectorListAllLanes:
2390 OS << "<vector_list(all lanes) " << VectorList.Count << " * "
2391 << VectorList.RegNum << ">";
2392 break;
Jim Grosbach7636bf62011-12-02 00:35:16 +00002393 case k_VectorListIndexed:
2394 OS << "<vector_list(lane " << VectorList.LaneIndex << ") "
2395 << VectorList.Count << " * " << VectorList.RegNum << ">";
2396 break;
Jim Grosbach21ff17c2011-10-07 23:24:09 +00002397 case k_Token:
Daniel Dunbarfa315de2010-08-11 06:37:12 +00002398 OS << "'" << getToken() << "'";
2399 break;
Jim Grosbach460a9052011-10-07 23:56:00 +00002400 case k_VectorIndex:
2401 OS << "<vectorindex " << getVectorIndex() << ">";
2402 break;
Daniel Dunbarfa315de2010-08-11 06:37:12 +00002403 }
2404}
Daniel Dunbar3483aca2010-08-11 05:24:50 +00002405
2406/// @name Auto-generated Match Functions
2407/// {
2408
2409static unsigned MatchRegisterName(StringRef Name);
2410
2411/// }
2412
Bob Wilson69df7232011-02-03 21:46:10 +00002413bool ARMAsmParser::ParseRegister(unsigned &RegNo,
2414 SMLoc &StartLoc, SMLoc &EndLoc) {
Jim Grosbacha39cda72011-12-14 02:16:11 +00002415 StartLoc = Parser.getTok().getLoc();
Jim Grosbach1355cf12011-07-26 17:10:22 +00002416 RegNo = tryParseRegister();
Jim Grosbacha39cda72011-12-14 02:16:11 +00002417 EndLoc = Parser.getTok().getLoc();
Roman Divackybf755322011-01-27 17:14:22 +00002418
2419 return (RegNo == (unsigned)-1);
2420}
2421
Kevin Enderby9c41fa82009-10-30 22:55:57 +00002422/// Try to parse a register name. The token must be an Identifier when called,
Chris Lattnere5658fa2010-10-30 04:09:10 +00002423/// and if it is a register name the token is eaten and the register number is
2424/// returned. Otherwise return -1.
2425///
Jim Grosbach1355cf12011-07-26 17:10:22 +00002426int ARMAsmParser::tryParseRegister() {
Chris Lattnere5658fa2010-10-30 04:09:10 +00002427 const AsmToken &Tok = Parser.getTok();
Jim Grosbach7ce05792011-08-03 23:50:40 +00002428 if (Tok.isNot(AsmToken::Identifier)) return -1;
Jim Grosbachd4462a52010-11-01 16:44:21 +00002429
Benjamin Kramer59085362011-11-06 20:37:06 +00002430 std::string lowerCase = Tok.getString().lower();
Owen Anderson0c9f2502011-01-13 22:50:36 +00002431 unsigned RegNum = MatchRegisterName(lowerCase);
2432 if (!RegNum) {
2433 RegNum = StringSwitch<unsigned>(lowerCase)
2434 .Case("r13", ARM::SP)
2435 .Case("r14", ARM::LR)
2436 .Case("r15", ARM::PC)
2437 .Case("ip", ARM::R12)
Jim Grosbach40e28552011-12-08 19:27:38 +00002438 // Additional register name aliases for 'gas' compatibility.
2439 .Case("a1", ARM::R0)
2440 .Case("a2", ARM::R1)
2441 .Case("a3", ARM::R2)
2442 .Case("a4", ARM::R3)
2443 .Case("v1", ARM::R4)
2444 .Case("v2", ARM::R5)
2445 .Case("v3", ARM::R6)
2446 .Case("v4", ARM::R7)
2447 .Case("v5", ARM::R8)
2448 .Case("v6", ARM::R9)
2449 .Case("v7", ARM::R10)
2450 .Case("v8", ARM::R11)
2451 .Case("sb", ARM::R9)
2452 .Case("sl", ARM::R10)
2453 .Case("fp", ARM::R11)
Owen Anderson0c9f2502011-01-13 22:50:36 +00002454 .Default(0);
2455 }
Jim Grosbacha39cda72011-12-14 02:16:11 +00002456 if (!RegNum) {
Jim Grosbachaee718b2011-12-20 23:11:00 +00002457 // Check for aliases registered via .req. Canonicalize to lower case.
2458 // That's more consistent since register names are case insensitive, and
2459 // it's how the original entry was passed in from MC/MCParser/AsmParser.
2460 StringMap<unsigned>::const_iterator Entry = RegisterReqs.find(lowerCase);
Jim Grosbacha39cda72011-12-14 02:16:11 +00002461 // If no match, return failure.
2462 if (Entry == RegisterReqs.end())
2463 return -1;
2464 Parser.Lex(); // Eat identifier token.
2465 return Entry->getValue();
2466 }
Bob Wilson69df7232011-02-03 21:46:10 +00002467
Chris Lattnere5658fa2010-10-30 04:09:10 +00002468 Parser.Lex(); // Eat identifier token.
Jim Grosbach460a9052011-10-07 23:56:00 +00002469
Chris Lattnere5658fa2010-10-30 04:09:10 +00002470 return RegNum;
2471}
Jim Grosbachd4462a52010-11-01 16:44:21 +00002472
Jim Grosbach19906722011-07-13 18:49:30 +00002473// Try to parse a shifter (e.g., "lsl <amt>"). On success, return 0.
2474// If a recoverable error occurs, return 1. If an irrecoverable error
2475// occurs, return -1. An irrecoverable error is one where tokens have been
2476// consumed in the process of trying to parse the shifter (i.e., when it is
2477// indeed a shifter operand, but malformed).
Jim Grosbach0d87ec22011-07-26 20:41:24 +00002478int ARMAsmParser::tryParseShiftRegister(
Owen Anderson00828302011-03-18 22:50:18 +00002479 SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
2480 SMLoc S = Parser.getTok().getLoc();
2481 const AsmToken &Tok = Parser.getTok();
2482 assert(Tok.is(AsmToken::Identifier) && "Token is not an Identifier");
2483
Benjamin Kramer59085362011-11-06 20:37:06 +00002484 std::string lowerCase = Tok.getString().lower();
Owen Anderson00828302011-03-18 22:50:18 +00002485 ARM_AM::ShiftOpc ShiftTy = StringSwitch<ARM_AM::ShiftOpc>(lowerCase)
Jim Grosbachaf4edea2011-12-07 23:40:58 +00002486 .Case("asl", ARM_AM::lsl)
Owen Anderson00828302011-03-18 22:50:18 +00002487 .Case("lsl", ARM_AM::lsl)
2488 .Case("lsr", ARM_AM::lsr)
2489 .Case("asr", ARM_AM::asr)
2490 .Case("ror", ARM_AM::ror)
2491 .Case("rrx", ARM_AM::rrx)
2492 .Default(ARM_AM::no_shift);
2493
2494 if (ShiftTy == ARM_AM::no_shift)
Jim Grosbach19906722011-07-13 18:49:30 +00002495 return 1;
Owen Anderson00828302011-03-18 22:50:18 +00002496
Jim Grosbache8606dc2011-07-13 17:50:29 +00002497 Parser.Lex(); // Eat the operator.
Owen Anderson00828302011-03-18 22:50:18 +00002498
Jim Grosbache8606dc2011-07-13 17:50:29 +00002499 // The source register for the shift has already been added to the
2500 // operand list, so we need to pop it off and combine it into the shifted
2501 // register operand instead.
Benjamin Kramereac07962011-07-14 18:41:22 +00002502 OwningPtr<ARMOperand> PrevOp((ARMOperand*)Operands.pop_back_val());
Jim Grosbache8606dc2011-07-13 17:50:29 +00002503 if (!PrevOp->isReg())
2504 return Error(PrevOp->getStartLoc(), "shift must be of a register");
2505 int SrcReg = PrevOp->getReg();
2506 int64_t Imm = 0;
2507 int ShiftReg = 0;
2508 if (ShiftTy == ARM_AM::rrx) {
2509 // RRX Doesn't have an explicit shift amount. The encoder expects
2510 // the shift register to be the same as the source register. Seems odd,
2511 // but OK.
2512 ShiftReg = SrcReg;
2513 } else {
2514 // Figure out if this is shifted by a constant or a register (for non-RRX).
Jim Grosbach8a12e3b2011-12-09 22:25:03 +00002515 if (Parser.getTok().is(AsmToken::Hash) ||
2516 Parser.getTok().is(AsmToken::Dollar)) {
Jim Grosbache8606dc2011-07-13 17:50:29 +00002517 Parser.Lex(); // Eat hash.
2518 SMLoc ImmLoc = Parser.getTok().getLoc();
2519 const MCExpr *ShiftExpr = 0;
Jim Grosbach19906722011-07-13 18:49:30 +00002520 if (getParser().ParseExpression(ShiftExpr)) {
2521 Error(ImmLoc, "invalid immediate shift value");
2522 return -1;
2523 }
Jim Grosbache8606dc2011-07-13 17:50:29 +00002524 // The expression must be evaluatable as an immediate.
2525 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ShiftExpr);
Jim Grosbach19906722011-07-13 18:49:30 +00002526 if (!CE) {
2527 Error(ImmLoc, "invalid immediate shift value");
2528 return -1;
2529 }
Jim Grosbache8606dc2011-07-13 17:50:29 +00002530 // Range check the immediate.
2531 // lsl, ror: 0 <= imm <= 31
2532 // lsr, asr: 0 <= imm <= 32
2533 Imm = CE->getValue();
2534 if (Imm < 0 ||
2535 ((ShiftTy == ARM_AM::lsl || ShiftTy == ARM_AM::ror) && Imm > 31) ||
2536 ((ShiftTy == ARM_AM::lsr || ShiftTy == ARM_AM::asr) && Imm > 32)) {
Jim Grosbach19906722011-07-13 18:49:30 +00002537 Error(ImmLoc, "immediate shift value out of range");
2538 return -1;
Jim Grosbache8606dc2011-07-13 17:50:29 +00002539 }
Jim Grosbachde626ad2011-12-22 17:37:00 +00002540 // shift by zero is a nop. Always send it through as lsl.
2541 // ('as' compatibility)
2542 if (Imm == 0)
2543 ShiftTy = ARM_AM::lsl;
Jim Grosbache8606dc2011-07-13 17:50:29 +00002544 } else if (Parser.getTok().is(AsmToken::Identifier)) {
Jim Grosbach1355cf12011-07-26 17:10:22 +00002545 ShiftReg = tryParseRegister();
Jim Grosbache8606dc2011-07-13 17:50:29 +00002546 SMLoc L = Parser.getTok().getLoc();
Jim Grosbach19906722011-07-13 18:49:30 +00002547 if (ShiftReg == -1) {
2548 Error (L, "expected immediate or register in shift operand");
2549 return -1;
2550 }
2551 } else {
2552 Error (Parser.getTok().getLoc(),
Jim Grosbache8606dc2011-07-13 17:50:29 +00002553 "expected immediate or register in shift operand");
Jim Grosbach19906722011-07-13 18:49:30 +00002554 return -1;
2555 }
Jim Grosbache8606dc2011-07-13 17:50:29 +00002556 }
2557
Owen Anderson92a20222011-07-21 18:54:16 +00002558 if (ShiftReg && ShiftTy != ARM_AM::rrx)
2559 Operands.push_back(ARMOperand::CreateShiftedRegister(ShiftTy, SrcReg,
Jim Grosbachaf6981f2011-07-25 20:49:51 +00002560 ShiftReg, Imm,
Owen Anderson00828302011-03-18 22:50:18 +00002561 S, Parser.getTok().getLoc()));
Owen Anderson92a20222011-07-21 18:54:16 +00002562 else
2563 Operands.push_back(ARMOperand::CreateShiftedImmediate(ShiftTy, SrcReg, Imm,
2564 S, Parser.getTok().getLoc()));
Owen Anderson00828302011-03-18 22:50:18 +00002565
Jim Grosbach19906722011-07-13 18:49:30 +00002566 return 0;
Owen Anderson00828302011-03-18 22:50:18 +00002567}
2568
2569
Bill Wendling50d0f582010-11-18 23:43:05 +00002570/// Try to parse a register name. The token must be an Identifier when called.
2571/// If it's a register, an AsmOperand is created. Another AsmOperand is created
2572/// if there is a "writeback". 'true' if it's not a register.
Chris Lattner3a697562010-10-28 17:20:03 +00002573///
Kevin Enderby9c41fa82009-10-30 22:55:57 +00002574/// TODO this is likely to change to allow different register types and or to
2575/// parse for a specific register type.
Bill Wendling50d0f582010-11-18 23:43:05 +00002576bool ARMAsmParser::
Jim Grosbach1355cf12011-07-26 17:10:22 +00002577tryParseRegisterWithWriteBack(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Chris Lattnere5658fa2010-10-30 04:09:10 +00002578 SMLoc S = Parser.getTok().getLoc();
Jim Grosbach1355cf12011-07-26 17:10:22 +00002579 int RegNo = tryParseRegister();
Bill Wendlinge7176102010-11-06 22:36:58 +00002580 if (RegNo == -1)
Bill Wendling50d0f582010-11-18 23:43:05 +00002581 return true;
Jim Grosbachd4462a52010-11-01 16:44:21 +00002582
Bill Wendling50d0f582010-11-18 23:43:05 +00002583 Operands.push_back(ARMOperand::CreateReg(RegNo, S, Parser.getTok().getLoc()));
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00002584
Chris Lattnere5658fa2010-10-30 04:09:10 +00002585 const AsmToken &ExclaimTok = Parser.getTok();
2586 if (ExclaimTok.is(AsmToken::Exclaim)) {
Bill Wendling50d0f582010-11-18 23:43:05 +00002587 Operands.push_back(ARMOperand::CreateToken(ExclaimTok.getString(),
2588 ExclaimTok.getLoc()));
Chris Lattnere5658fa2010-10-30 04:09:10 +00002589 Parser.Lex(); // Eat exclaim token
Jim Grosbach460a9052011-10-07 23:56:00 +00002590 return false;
2591 }
2592
2593 // Also check for an index operand. This is only legal for vector registers,
2594 // but that'll get caught OK in operand matching, so we don't need to
2595 // explicitly filter everything else out here.
2596 if (Parser.getTok().is(AsmToken::LBrac)) {
2597 SMLoc SIdx = Parser.getTok().getLoc();
2598 Parser.Lex(); // Eat left bracket token.
2599
2600 const MCExpr *ImmVal;
Jim Grosbach460a9052011-10-07 23:56:00 +00002601 if (getParser().ParseExpression(ImmVal))
Jim Grosbach24dda212012-01-31 23:51:09 +00002602 return true;
Jim Grosbach460a9052011-10-07 23:56:00 +00002603 const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(ImmVal);
Jim Grosbachef4d3eb2012-01-26 15:56:45 +00002604 if (!MCE)
2605 return TokError("immediate value expected for vector index");
Jim Grosbach460a9052011-10-07 23:56:00 +00002606
2607 SMLoc E = Parser.getTok().getLoc();
Jim Grosbachef4d3eb2012-01-26 15:56:45 +00002608 if (Parser.getTok().isNot(AsmToken::RBrac))
2609 return Error(E, "']' expected");
Jim Grosbach460a9052011-10-07 23:56:00 +00002610
2611 Parser.Lex(); // Eat right bracket token.
2612
2613 Operands.push_back(ARMOperand::CreateVectorIndex(MCE->getValue(),
2614 SIdx, E,
2615 getContext()));
Kevin Enderby99e6d4e2009-10-07 18:01:35 +00002616 }
2617
Bill Wendling50d0f582010-11-18 23:43:05 +00002618 return false;
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00002619}
2620
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +00002621/// MatchCoprocessorOperandName - Try to parse an coprocessor related
2622/// instruction with a symbolic operand name. Example: "p1", "p7", "c3",
2623/// "c5", ...
2624static int MatchCoprocessorOperandName(StringRef Name, char CoprocOp) {
Owen Andersone4e5e2a2011-01-13 21:46:02 +00002625 // Use the same layout as the tablegen'erated register name matcher. Ugly,
2626 // but efficient.
2627 switch (Name.size()) {
David Blaikie4d6ccb52012-01-20 21:51:11 +00002628 default: return -1;
Owen Andersone4e5e2a2011-01-13 21:46:02 +00002629 case 2:
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +00002630 if (Name[0] != CoprocOp)
Owen Andersone4e5e2a2011-01-13 21:46:02 +00002631 return -1;
2632 switch (Name[1]) {
2633 default: return -1;
2634 case '0': return 0;
2635 case '1': return 1;
2636 case '2': return 2;
2637 case '3': return 3;
2638 case '4': return 4;
2639 case '5': return 5;
2640 case '6': return 6;
2641 case '7': return 7;
2642 case '8': return 8;
2643 case '9': return 9;
2644 }
Owen Andersone4e5e2a2011-01-13 21:46:02 +00002645 case 3:
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +00002646 if (Name[0] != CoprocOp || Name[1] != '1')
Owen Andersone4e5e2a2011-01-13 21:46:02 +00002647 return -1;
2648 switch (Name[2]) {
2649 default: return -1;
2650 case '0': return 10;
2651 case '1': return 11;
2652 case '2': return 12;
2653 case '3': return 13;
2654 case '4': return 14;
2655 case '5': return 15;
2656 }
Owen Andersone4e5e2a2011-01-13 21:46:02 +00002657 }
Owen Andersone4e5e2a2011-01-13 21:46:02 +00002658}
2659
Jim Grosbach89df9962011-08-26 21:43:41 +00002660/// parseITCondCode - Try to parse a condition code for an IT instruction.
2661ARMAsmParser::OperandMatchResultTy ARMAsmParser::
2662parseITCondCode(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
2663 SMLoc S = Parser.getTok().getLoc();
2664 const AsmToken &Tok = Parser.getTok();
2665 if (!Tok.is(AsmToken::Identifier))
2666 return MatchOperand_NoMatch;
2667 unsigned CC = StringSwitch<unsigned>(Tok.getString())
2668 .Case("eq", ARMCC::EQ)
2669 .Case("ne", ARMCC::NE)
2670 .Case("hs", ARMCC::HS)
2671 .Case("cs", ARMCC::HS)
2672 .Case("lo", ARMCC::LO)
2673 .Case("cc", ARMCC::LO)
2674 .Case("mi", ARMCC::MI)
2675 .Case("pl", ARMCC::PL)
2676 .Case("vs", ARMCC::VS)
2677 .Case("vc", ARMCC::VC)
2678 .Case("hi", ARMCC::HI)
2679 .Case("ls", ARMCC::LS)
2680 .Case("ge", ARMCC::GE)
2681 .Case("lt", ARMCC::LT)
2682 .Case("gt", ARMCC::GT)
2683 .Case("le", ARMCC::LE)
2684 .Case("al", ARMCC::AL)
2685 .Default(~0U);
2686 if (CC == ~0U)
2687 return MatchOperand_NoMatch;
2688 Parser.Lex(); // Eat the token.
2689
2690 Operands.push_back(ARMOperand::CreateCondCode(ARMCC::CondCodes(CC), S));
2691
2692 return MatchOperand_Success;
2693}
2694
Jim Grosbach43904292011-07-25 20:14:50 +00002695/// parseCoprocNumOperand - Try to parse an coprocessor number operand. The
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +00002696/// token must be an Identifier when called, and if it is a coprocessor
2697/// number, the token is eaten and the operand is added to the operand list.
Jim Grosbachf922c472011-02-12 01:34:40 +00002698ARMAsmParser::OperandMatchResultTy ARMAsmParser::
Jim Grosbach43904292011-07-25 20:14:50 +00002699parseCoprocNumOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Owen Andersone4e5e2a2011-01-13 21:46:02 +00002700 SMLoc S = Parser.getTok().getLoc();
2701 const AsmToken &Tok = Parser.getTok();
Jim Grosbachc66e7af2011-10-12 20:54:17 +00002702 if (Tok.isNot(AsmToken::Identifier))
2703 return MatchOperand_NoMatch;
Owen Andersone4e5e2a2011-01-13 21:46:02 +00002704
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +00002705 int Num = MatchCoprocessorOperandName(Tok.getString(), 'p');
Owen Andersone4e5e2a2011-01-13 21:46:02 +00002706 if (Num == -1)
Jim Grosbachf922c472011-02-12 01:34:40 +00002707 return MatchOperand_NoMatch;
Owen Andersone4e5e2a2011-01-13 21:46:02 +00002708
2709 Parser.Lex(); // Eat identifier token.
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +00002710 Operands.push_back(ARMOperand::CreateCoprocNum(Num, S));
Jim Grosbachf922c472011-02-12 01:34:40 +00002711 return MatchOperand_Success;
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +00002712}
2713
Jim Grosbach43904292011-07-25 20:14:50 +00002714/// parseCoprocRegOperand - Try to parse an coprocessor register operand. The
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +00002715/// token must be an Identifier when called, and if it is a coprocessor
2716/// number, the token is eaten and the operand is added to the operand list.
Jim Grosbachf922c472011-02-12 01:34:40 +00002717ARMAsmParser::OperandMatchResultTy ARMAsmParser::
Jim Grosbach43904292011-07-25 20:14:50 +00002718parseCoprocRegOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +00002719 SMLoc S = Parser.getTok().getLoc();
2720 const AsmToken &Tok = Parser.getTok();
Jim Grosbachc66e7af2011-10-12 20:54:17 +00002721 if (Tok.isNot(AsmToken::Identifier))
2722 return MatchOperand_NoMatch;
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +00002723
2724 int Reg = MatchCoprocessorOperandName(Tok.getString(), 'c');
2725 if (Reg == -1)
Jim Grosbachf922c472011-02-12 01:34:40 +00002726 return MatchOperand_NoMatch;
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +00002727
2728 Parser.Lex(); // Eat identifier token.
2729 Operands.push_back(ARMOperand::CreateCoprocReg(Reg, S));
Jim Grosbachf922c472011-02-12 01:34:40 +00002730 return MatchOperand_Success;
Owen Andersone4e5e2a2011-01-13 21:46:02 +00002731}
2732
Jim Grosbach9b8f2a02011-10-12 17:34:41 +00002733/// parseCoprocOptionOperand - Try to parse an coprocessor option operand.
2734/// coproc_option : '{' imm0_255 '}'
2735ARMAsmParser::OperandMatchResultTy ARMAsmParser::
2736parseCoprocOptionOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
2737 SMLoc S = Parser.getTok().getLoc();
2738
2739 // If this isn't a '{', this isn't a coprocessor immediate operand.
2740 if (Parser.getTok().isNot(AsmToken::LCurly))
2741 return MatchOperand_NoMatch;
2742 Parser.Lex(); // Eat the '{'
2743
2744 const MCExpr *Expr;
2745 SMLoc Loc = Parser.getTok().getLoc();
2746 if (getParser().ParseExpression(Expr)) {
2747 Error(Loc, "illegal expression");
2748 return MatchOperand_ParseFail;
2749 }
2750 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr);
2751 if (!CE || CE->getValue() < 0 || CE->getValue() > 255) {
2752 Error(Loc, "coprocessor option must be an immediate in range [0, 255]");
2753 return MatchOperand_ParseFail;
2754 }
2755 int Val = CE->getValue();
2756
2757 // Check for and consume the closing '}'
2758 if (Parser.getTok().isNot(AsmToken::RCurly))
2759 return MatchOperand_ParseFail;
2760 SMLoc E = Parser.getTok().getLoc();
2761 Parser.Lex(); // Eat the '}'
2762
2763 Operands.push_back(ARMOperand::CreateCoprocOption(Val, S, E));
2764 return MatchOperand_Success;
2765}
2766
Jim Grosbachd0588e22011-09-14 18:08:35 +00002767// For register list parsing, we need to map from raw GPR register numbering
2768// to the enumeration values. The enumeration values aren't sorted by
2769// register number due to our using "sp", "lr" and "pc" as canonical names.
2770static unsigned getNextRegister(unsigned Reg) {
2771 // If this is a GPR, we need to do it manually, otherwise we can rely
2772 // on the sort ordering of the enumeration since the other reg-classes
2773 // are sane.
2774 if (!ARMMCRegisterClasses[ARM::GPRRegClassID].contains(Reg))
2775 return Reg + 1;
2776 switch(Reg) {
Craig Topperbc219812012-02-07 02:50:20 +00002777 default: llvm_unreachable("Invalid GPR number!");
Jim Grosbachd0588e22011-09-14 18:08:35 +00002778 case ARM::R0: return ARM::R1; case ARM::R1: return ARM::R2;
2779 case ARM::R2: return ARM::R3; case ARM::R3: return ARM::R4;
2780 case ARM::R4: return ARM::R5; case ARM::R5: return ARM::R6;
2781 case ARM::R6: return ARM::R7; case ARM::R7: return ARM::R8;
2782 case ARM::R8: return ARM::R9; case ARM::R9: return ARM::R10;
2783 case ARM::R10: return ARM::R11; case ARM::R11: return ARM::R12;
2784 case ARM::R12: return ARM::SP; case ARM::SP: return ARM::LR;
2785 case ARM::LR: return ARM::PC; case ARM::PC: return ARM::R0;
2786 }
2787}
2788
Jim Grosbachce485e72011-11-11 21:27:40 +00002789// Return the low-subreg of a given Q register.
2790static unsigned getDRegFromQReg(unsigned QReg) {
2791 switch (QReg) {
2792 default: llvm_unreachable("expected a Q register!");
2793 case ARM::Q0: return ARM::D0;
2794 case ARM::Q1: return ARM::D2;
2795 case ARM::Q2: return ARM::D4;
2796 case ARM::Q3: return ARM::D6;
2797 case ARM::Q4: return ARM::D8;
2798 case ARM::Q5: return ARM::D10;
2799 case ARM::Q6: return ARM::D12;
2800 case ARM::Q7: return ARM::D14;
2801 case ARM::Q8: return ARM::D16;
Jim Grosbach25e0a872011-11-15 21:01:30 +00002802 case ARM::Q9: return ARM::D18;
Jim Grosbachce485e72011-11-11 21:27:40 +00002803 case ARM::Q10: return ARM::D20;
2804 case ARM::Q11: return ARM::D22;
2805 case ARM::Q12: return ARM::D24;
2806 case ARM::Q13: return ARM::D26;
2807 case ARM::Q14: return ARM::D28;
2808 case ARM::Q15: return ARM::D30;
2809 }
2810}
2811
Jim Grosbachd0588e22011-09-14 18:08:35 +00002812/// Parse a register list.
Bill Wendling50d0f582010-11-18 23:43:05 +00002813bool ARMAsmParser::
Jim Grosbach1355cf12011-07-26 17:10:22 +00002814parseRegisterList(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Sean Callanan18b83232010-01-19 21:44:56 +00002815 assert(Parser.getTok().is(AsmToken::LCurly) &&
Bill Wendlinga60f1572010-11-06 10:48:18 +00002816 "Token is not a Left Curly Brace");
Bill Wendlinge7176102010-11-06 22:36:58 +00002817 SMLoc S = Parser.getTok().getLoc();
Jim Grosbachd0588e22011-09-14 18:08:35 +00002818 Parser.Lex(); // Eat '{' token.
2819 SMLoc RegLoc = Parser.getTok().getLoc();
Kevin Enderbyd7894f12009-10-09 21:12:28 +00002820
Jim Grosbachd0588e22011-09-14 18:08:35 +00002821 // Check the first register in the list to see what register class
2822 // this is a list of.
2823 int Reg = tryParseRegister();
2824 if (Reg == -1)
2825 return Error(RegLoc, "register expected");
2826
Jim Grosbachce485e72011-11-11 21:27:40 +00002827 // The reglist instructions have at most 16 registers, so reserve
2828 // space for that many.
2829 SmallVector<std::pair<unsigned, SMLoc>, 16> Registers;
2830
2831 // Allow Q regs and just interpret them as the two D sub-registers.
2832 if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(Reg)) {
2833 Reg = getDRegFromQReg(Reg);
2834 Registers.push_back(std::pair<unsigned, SMLoc>(Reg, RegLoc));
2835 ++Reg;
2836 }
Benjamin Kramer1a2f9882011-10-22 16:50:00 +00002837 const MCRegisterClass *RC;
Jim Grosbachd0588e22011-09-14 18:08:35 +00002838 if (ARMMCRegisterClasses[ARM::GPRRegClassID].contains(Reg))
2839 RC = &ARMMCRegisterClasses[ARM::GPRRegClassID];
2840 else if (ARMMCRegisterClasses[ARM::DPRRegClassID].contains(Reg))
2841 RC = &ARMMCRegisterClasses[ARM::DPRRegClassID];
2842 else if (ARMMCRegisterClasses[ARM::SPRRegClassID].contains(Reg))
2843 RC = &ARMMCRegisterClasses[ARM::SPRRegClassID];
2844 else
2845 return Error(RegLoc, "invalid register in register list");
2846
Jim Grosbachce485e72011-11-11 21:27:40 +00002847 // Store the register.
Jim Grosbachd0588e22011-09-14 18:08:35 +00002848 Registers.push_back(std::pair<unsigned, SMLoc>(Reg, RegLoc));
Kevin Enderbyd7894f12009-10-09 21:12:28 +00002849
Jim Grosbachd0588e22011-09-14 18:08:35 +00002850 // This starts immediately after the first register token in the list,
2851 // so we can see either a comma or a minus (range separator) as a legal
2852 // next token.
2853 while (Parser.getTok().is(AsmToken::Comma) ||
2854 Parser.getTok().is(AsmToken::Minus)) {
2855 if (Parser.getTok().is(AsmToken::Minus)) {
Jim Grosbache43862b2011-11-15 23:19:15 +00002856 Parser.Lex(); // Eat the minus.
Jim Grosbachd0588e22011-09-14 18:08:35 +00002857 SMLoc EndLoc = Parser.getTok().getLoc();
2858 int EndReg = tryParseRegister();
2859 if (EndReg == -1)
2860 return Error(EndLoc, "register expected");
Jim Grosbachce485e72011-11-11 21:27:40 +00002861 // Allow Q regs and just interpret them as the two D sub-registers.
2862 if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(EndReg))
2863 EndReg = getDRegFromQReg(EndReg) + 1;
Jim Grosbachd0588e22011-09-14 18:08:35 +00002864 // If the register is the same as the start reg, there's nothing
2865 // more to do.
2866 if (Reg == EndReg)
2867 continue;
2868 // The register must be in the same register class as the first.
2869 if (!RC->contains(EndReg))
2870 return Error(EndLoc, "invalid register in register list");
2871 // Ranges must go from low to high.
2872 if (getARMRegisterNumbering(Reg) > getARMRegisterNumbering(EndReg))
2873 return Error(EndLoc, "bad range in register list");
Kevin Enderbyd7894f12009-10-09 21:12:28 +00002874
Jim Grosbachd0588e22011-09-14 18:08:35 +00002875 // Add all the registers in the range to the register list.
2876 while (Reg != EndReg) {
2877 Reg = getNextRegister(Reg);
2878 Registers.push_back(std::pair<unsigned, SMLoc>(Reg, RegLoc));
2879 }
2880 continue;
2881 }
2882 Parser.Lex(); // Eat the comma.
2883 RegLoc = Parser.getTok().getLoc();
2884 int OldReg = Reg;
Jim Grosbacha62d11e2011-12-08 21:34:20 +00002885 const AsmToken RegTok = Parser.getTok();
Jim Grosbachd0588e22011-09-14 18:08:35 +00002886 Reg = tryParseRegister();
2887 if (Reg == -1)
Jim Grosbach2d539692011-09-12 23:36:42 +00002888 return Error(RegLoc, "register expected");
Jim Grosbachce485e72011-11-11 21:27:40 +00002889 // Allow Q regs and just interpret them as the two D sub-registers.
2890 bool isQReg = false;
2891 if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(Reg)) {
2892 Reg = getDRegFromQReg(Reg);
2893 isQReg = true;
2894 }
Jim Grosbachd0588e22011-09-14 18:08:35 +00002895 // The register must be in the same register class as the first.
2896 if (!RC->contains(Reg))
2897 return Error(RegLoc, "invalid register in register list");
2898 // List must be monotonically increasing.
Jim Grosbachbe7cf2b2012-03-16 20:48:38 +00002899 if (getARMRegisterNumbering(Reg) < getARMRegisterNumbering(OldReg)) {
2900 if (ARMMCRegisterClasses[ARM::GPRRegClassID].contains(Reg))
2901 Warning(RegLoc, "register list not in ascending order");
2902 else
2903 return Error(RegLoc, "register list not in ascending order");
2904 }
Jim Grosbacha62d11e2011-12-08 21:34:20 +00002905 if (getARMRegisterNumbering(Reg) == getARMRegisterNumbering(OldReg)) {
2906 Warning(RegLoc, "duplicated register (" + RegTok.getString() +
2907 ") in register list");
2908 continue;
2909 }
Jim Grosbachd0588e22011-09-14 18:08:35 +00002910 // VFP register lists must also be contiguous.
2911 // It's OK to use the enumeration values directly here rather, as the
2912 // VFP register classes have the enum sorted properly.
2913 if (RC != &ARMMCRegisterClasses[ARM::GPRRegClassID] &&
2914 Reg != OldReg + 1)
2915 return Error(RegLoc, "non-contiguous register range");
2916 Registers.push_back(std::pair<unsigned, SMLoc>(Reg, RegLoc));
Jim Grosbachce485e72011-11-11 21:27:40 +00002917 if (isQReg)
2918 Registers.push_back(std::pair<unsigned, SMLoc>(++Reg, RegLoc));
Bill Wendlinge7176102010-11-06 22:36:58 +00002919 }
2920
Jim Grosbachd0588e22011-09-14 18:08:35 +00002921 SMLoc E = Parser.getTok().getLoc();
2922 if (Parser.getTok().isNot(AsmToken::RCurly))
2923 return Error(E, "'}' expected");
2924 Parser.Lex(); // Eat '}' token.
2925
Jim Grosbach27debd62011-12-13 21:48:29 +00002926 // Push the register list operand.
Bill Wendling50d0f582010-11-18 23:43:05 +00002927 Operands.push_back(ARMOperand::CreateRegList(Registers, S, E));
Jim Grosbach27debd62011-12-13 21:48:29 +00002928
2929 // The ARM system instruction variants for LDM/STM have a '^' token here.
2930 if (Parser.getTok().is(AsmToken::Caret)) {
2931 Operands.push_back(ARMOperand::CreateToken("^",Parser.getTok().getLoc()));
2932 Parser.Lex(); // Eat '^' token.
2933 }
2934
Bill Wendling50d0f582010-11-18 23:43:05 +00002935 return false;
Kevin Enderbyd7894f12009-10-09 21:12:28 +00002936}
2937
Jim Grosbach98b05a52011-11-30 01:09:44 +00002938// Helper function to parse the lane index for vector lists.
2939ARMAsmParser::OperandMatchResultTy ARMAsmParser::
Jim Grosbach7636bf62011-12-02 00:35:16 +00002940parseVectorLane(VectorLaneTy &LaneKind, unsigned &Index) {
2941 Index = 0; // Always return a defined index value.
Jim Grosbach98b05a52011-11-30 01:09:44 +00002942 if (Parser.getTok().is(AsmToken::LBrac)) {
2943 Parser.Lex(); // Eat the '['.
2944 if (Parser.getTok().is(AsmToken::RBrac)) {
2945 // "Dn[]" is the 'all lanes' syntax.
2946 LaneKind = AllLanes;
2947 Parser.Lex(); // Eat the ']'.
2948 return MatchOperand_Success;
2949 }
Jim Grosbachceee9842012-03-19 20:39:53 +00002950
2951 // There's an optional '#' token here. Normally there wouldn't be, but
2952 // inline assemble puts one in, and it's friendly to accept that.
2953 if (Parser.getTok().is(AsmToken::Hash))
2954 Parser.Lex(); // Eat the '#'
2955
Jim Grosbachc9313252011-12-21 01:19:23 +00002956 const MCExpr *LaneIndex;
2957 SMLoc Loc = Parser.getTok().getLoc();
2958 if (getParser().ParseExpression(LaneIndex)) {
2959 Error(Loc, "illegal expression");
2960 return MatchOperand_ParseFail;
Jim Grosbach7636bf62011-12-02 00:35:16 +00002961 }
Jim Grosbachc9313252011-12-21 01:19:23 +00002962 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(LaneIndex);
2963 if (!CE) {
2964 Error(Loc, "lane index must be empty or an integer");
2965 return MatchOperand_ParseFail;
2966 }
2967 if (Parser.getTok().isNot(AsmToken::RBrac)) {
2968 Error(Parser.getTok().getLoc(), "']' expected");
2969 return MatchOperand_ParseFail;
2970 }
2971 Parser.Lex(); // Eat the ']'.
2972 int64_t Val = CE->getValue();
2973
2974 // FIXME: Make this range check context sensitive for .8, .16, .32.
2975 if (Val < 0 || Val > 7) {
2976 Error(Parser.getTok().getLoc(), "lane index out of range");
2977 return MatchOperand_ParseFail;
2978 }
2979 Index = Val;
2980 LaneKind = IndexedLane;
2981 return MatchOperand_Success;
Jim Grosbach98b05a52011-11-30 01:09:44 +00002982 }
2983 LaneKind = NoLanes;
2984 return MatchOperand_Success;
2985}
2986
Jim Grosbach862019c2011-10-18 23:02:30 +00002987// parse a vector register list
2988ARMAsmParser::OperandMatchResultTy ARMAsmParser::
2989parseVectorList(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Jim Grosbach98b05a52011-11-30 01:09:44 +00002990 VectorLaneTy LaneKind;
Jim Grosbach7636bf62011-12-02 00:35:16 +00002991 unsigned LaneIndex;
Jim Grosbach5c984e42011-11-15 21:45:55 +00002992 SMLoc S = Parser.getTok().getLoc();
2993 // As an extension (to match gas), support a plain D register or Q register
2994 // (without encosing curly braces) as a single or double entry list,
2995 // respectively.
2996 if (Parser.getTok().is(AsmToken::Identifier)) {
2997 int Reg = tryParseRegister();
2998 if (Reg == -1)
2999 return MatchOperand_NoMatch;
3000 SMLoc E = Parser.getTok().getLoc();
3001 if (ARMMCRegisterClasses[ARM::DPRRegClassID].contains(Reg)) {
Jim Grosbach7636bf62011-12-02 00:35:16 +00003002 OperandMatchResultTy Res = parseVectorLane(LaneKind, LaneIndex);
Jim Grosbach98b05a52011-11-30 01:09:44 +00003003 if (Res != MatchOperand_Success)
3004 return Res;
3005 switch (LaneKind) {
Jim Grosbach98b05a52011-11-30 01:09:44 +00003006 case NoLanes:
3007 E = Parser.getTok().getLoc();
Jim Grosbach0aaf4cd2011-12-15 21:44:33 +00003008 Operands.push_back(ARMOperand::CreateVectorList(Reg, 1, false, S, E));
Jim Grosbach98b05a52011-11-30 01:09:44 +00003009 break;
3010 case AllLanes:
3011 E = Parser.getTok().getLoc();
Jim Grosbach3471d4f2011-12-21 00:38:54 +00003012 Operands.push_back(ARMOperand::CreateVectorListAllLanes(Reg, 1, false,
3013 S, E));
Jim Grosbach98b05a52011-11-30 01:09:44 +00003014 break;
Jim Grosbach7636bf62011-12-02 00:35:16 +00003015 case IndexedLane:
3016 Operands.push_back(ARMOperand::CreateVectorListIndexed(Reg, 1,
Jim Grosbach95fad1c2011-12-20 19:21:26 +00003017 LaneIndex,
3018 false, S, E));
Jim Grosbach7636bf62011-12-02 00:35:16 +00003019 break;
Jim Grosbach98b05a52011-11-30 01:09:44 +00003020 }
Jim Grosbach5c984e42011-11-15 21:45:55 +00003021 return MatchOperand_Success;
3022 }
3023 if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(Reg)) {
3024 Reg = getDRegFromQReg(Reg);
Jim Grosbach7636bf62011-12-02 00:35:16 +00003025 OperandMatchResultTy Res = parseVectorLane(LaneKind, LaneIndex);
Jim Grosbach98b05a52011-11-30 01:09:44 +00003026 if (Res != MatchOperand_Success)
3027 return Res;
3028 switch (LaneKind) {
Jim Grosbach98b05a52011-11-30 01:09:44 +00003029 case NoLanes:
3030 E = Parser.getTok().getLoc();
Jim Grosbach28f08c92012-03-05 19:33:30 +00003031 Reg = MRI->getMatchingSuperReg(Reg, ARM::dsub_0,
Jim Grosbachc0fc4502012-03-06 22:01:44 +00003032 &ARMMCRegisterClasses[ARM::DPairRegClassID]);
Jim Grosbach0aaf4cd2011-12-15 21:44:33 +00003033 Operands.push_back(ARMOperand::CreateVectorList(Reg, 2, false, S, E));
Jim Grosbach98b05a52011-11-30 01:09:44 +00003034 break;
3035 case AllLanes:
3036 E = Parser.getTok().getLoc();
Jim Grosbachc0fc4502012-03-06 22:01:44 +00003037 Reg = MRI->getMatchingSuperReg(Reg, ARM::dsub_0,
3038 &ARMMCRegisterClasses[ARM::DPairRegClassID]);
Jim Grosbach3471d4f2011-12-21 00:38:54 +00003039 Operands.push_back(ARMOperand::CreateVectorListAllLanes(Reg, 2, false,
3040 S, E));
Jim Grosbach98b05a52011-11-30 01:09:44 +00003041 break;
Jim Grosbach7636bf62011-12-02 00:35:16 +00003042 case IndexedLane:
3043 Operands.push_back(ARMOperand::CreateVectorListIndexed(Reg, 2,
Jim Grosbach95fad1c2011-12-20 19:21:26 +00003044 LaneIndex,
3045 false, S, E));
Jim Grosbach7636bf62011-12-02 00:35:16 +00003046 break;
Jim Grosbach98b05a52011-11-30 01:09:44 +00003047 }
Jim Grosbach5c984e42011-11-15 21:45:55 +00003048 return MatchOperand_Success;
3049 }
3050 Error(S, "vector register expected");
3051 return MatchOperand_ParseFail;
3052 }
3053
3054 if (Parser.getTok().isNot(AsmToken::LCurly))
Jim Grosbach862019c2011-10-18 23:02:30 +00003055 return MatchOperand_NoMatch;
3056
Jim Grosbach862019c2011-10-18 23:02:30 +00003057 Parser.Lex(); // Eat '{' token.
3058 SMLoc RegLoc = Parser.getTok().getLoc();
3059
3060 int Reg = tryParseRegister();
3061 if (Reg == -1) {
3062 Error(RegLoc, "register expected");
3063 return MatchOperand_ParseFail;
3064 }
Jim Grosbach862019c2011-10-18 23:02:30 +00003065 unsigned Count = 1;
Jim Grosbach276ed032011-12-15 21:54:55 +00003066 int Spacing = 0;
Jim Grosbachc73d73e2011-10-28 00:06:50 +00003067 unsigned FirstReg = Reg;
3068 // The list is of D registers, but we also allow Q regs and just interpret
3069 // them as the two D sub-registers.
3070 if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(Reg)) {
3071 FirstReg = Reg = getDRegFromQReg(Reg);
Jim Grosbach0aaf4cd2011-12-15 21:44:33 +00003072 Spacing = 1; // double-spacing requires explicit D registers, otherwise
3073 // it's ambiguous with four-register single spaced.
Jim Grosbachc73d73e2011-10-28 00:06:50 +00003074 ++Reg;
3075 ++Count;
3076 }
Jim Grosbach7636bf62011-12-02 00:35:16 +00003077 if (parseVectorLane(LaneKind, LaneIndex) != MatchOperand_Success)
Jim Grosbach98b05a52011-11-30 01:09:44 +00003078 return MatchOperand_ParseFail;
Jim Grosbachc73d73e2011-10-28 00:06:50 +00003079
Jim Grosbache43862b2011-11-15 23:19:15 +00003080 while (Parser.getTok().is(AsmToken::Comma) ||
3081 Parser.getTok().is(AsmToken::Minus)) {
3082 if (Parser.getTok().is(AsmToken::Minus)) {
Jim Grosbach0aaf4cd2011-12-15 21:44:33 +00003083 if (!Spacing)
3084 Spacing = 1; // Register range implies a single spaced list.
3085 else if (Spacing == 2) {
3086 Error(Parser.getTok().getLoc(),
3087 "sequential registers in double spaced list");
3088 return MatchOperand_ParseFail;
3089 }
Jim Grosbache43862b2011-11-15 23:19:15 +00003090 Parser.Lex(); // Eat the minus.
3091 SMLoc EndLoc = Parser.getTok().getLoc();
3092 int EndReg = tryParseRegister();
3093 if (EndReg == -1) {
3094 Error(EndLoc, "register expected");
3095 return MatchOperand_ParseFail;
3096 }
3097 // Allow Q regs and just interpret them as the two D sub-registers.
3098 if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(EndReg))
3099 EndReg = getDRegFromQReg(EndReg) + 1;
3100 // If the register is the same as the start reg, there's nothing
3101 // more to do.
3102 if (Reg == EndReg)
3103 continue;
3104 // The register must be in the same register class as the first.
3105 if (!ARMMCRegisterClasses[ARM::DPRRegClassID].contains(EndReg)) {
3106 Error(EndLoc, "invalid register in register list");
3107 return MatchOperand_ParseFail;
3108 }
3109 // Ranges must go from low to high.
3110 if (Reg > EndReg) {
3111 Error(EndLoc, "bad range in register list");
3112 return MatchOperand_ParseFail;
3113 }
Jim Grosbach98b05a52011-11-30 01:09:44 +00003114 // Parse the lane specifier if present.
3115 VectorLaneTy NextLaneKind;
Jim Grosbach7636bf62011-12-02 00:35:16 +00003116 unsigned NextLaneIndex;
3117 if (parseVectorLane(NextLaneKind, NextLaneIndex) != MatchOperand_Success)
Jim Grosbach98b05a52011-11-30 01:09:44 +00003118 return MatchOperand_ParseFail;
Jim Grosbach7636bf62011-12-02 00:35:16 +00003119 if (NextLaneKind != LaneKind || LaneIndex != NextLaneIndex) {
Jim Grosbach98b05a52011-11-30 01:09:44 +00003120 Error(EndLoc, "mismatched lane index in register list");
3121 return MatchOperand_ParseFail;
3122 }
3123 EndLoc = Parser.getTok().getLoc();
Jim Grosbache43862b2011-11-15 23:19:15 +00003124
3125 // Add all the registers in the range to the register list.
3126 Count += EndReg - Reg;
3127 Reg = EndReg;
3128 continue;
3129 }
Jim Grosbach862019c2011-10-18 23:02:30 +00003130 Parser.Lex(); // Eat the comma.
3131 RegLoc = Parser.getTok().getLoc();
3132 int OldReg = Reg;
3133 Reg = tryParseRegister();
3134 if (Reg == -1) {
3135 Error(RegLoc, "register expected");
3136 return MatchOperand_ParseFail;
3137 }
Jim Grosbachc73d73e2011-10-28 00:06:50 +00003138 // vector register lists must be contiguous.
Jim Grosbach862019c2011-10-18 23:02:30 +00003139 // It's OK to use the enumeration values directly here rather, as the
3140 // VFP register classes have the enum sorted properly.
Jim Grosbachc73d73e2011-10-28 00:06:50 +00003141 //
3142 // The list is of D registers, but we also allow Q regs and just interpret
3143 // them as the two D sub-registers.
3144 if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(Reg)) {
Jim Grosbach0aaf4cd2011-12-15 21:44:33 +00003145 if (!Spacing)
3146 Spacing = 1; // Register range implies a single spaced list.
3147 else if (Spacing == 2) {
3148 Error(RegLoc,
3149 "invalid register in double-spaced list (must be 'D' register')");
3150 return MatchOperand_ParseFail;
3151 }
Jim Grosbachc73d73e2011-10-28 00:06:50 +00003152 Reg = getDRegFromQReg(Reg);
3153 if (Reg != OldReg + 1) {
3154 Error(RegLoc, "non-contiguous register range");
3155 return MatchOperand_ParseFail;
3156 }
3157 ++Reg;
3158 Count += 2;
Jim Grosbach98b05a52011-11-30 01:09:44 +00003159 // Parse the lane specifier if present.
3160 VectorLaneTy NextLaneKind;
Jim Grosbach7636bf62011-12-02 00:35:16 +00003161 unsigned NextLaneIndex;
Jim Grosbach98b05a52011-11-30 01:09:44 +00003162 SMLoc EndLoc = Parser.getTok().getLoc();
Jim Grosbach7636bf62011-12-02 00:35:16 +00003163 if (parseVectorLane(NextLaneKind, NextLaneIndex) != MatchOperand_Success)
Jim Grosbach98b05a52011-11-30 01:09:44 +00003164 return MatchOperand_ParseFail;
Jim Grosbach7636bf62011-12-02 00:35:16 +00003165 if (NextLaneKind != LaneKind || LaneIndex != NextLaneIndex) {
Jim Grosbach98b05a52011-11-30 01:09:44 +00003166 Error(EndLoc, "mismatched lane index in register list");
3167 return MatchOperand_ParseFail;
3168 }
Jim Grosbachc73d73e2011-10-28 00:06:50 +00003169 continue;
3170 }
Jim Grosbach0aaf4cd2011-12-15 21:44:33 +00003171 // Normal D register.
3172 // Figure out the register spacing (single or double) of the list if
3173 // we don't know it already.
3174 if (!Spacing)
3175 Spacing = 1 + (Reg == OldReg + 2);
3176
3177 // Just check that it's contiguous and keep going.
3178 if (Reg != OldReg + Spacing) {
Jim Grosbach862019c2011-10-18 23:02:30 +00003179 Error(RegLoc, "non-contiguous register range");
3180 return MatchOperand_ParseFail;
3181 }
Jim Grosbach862019c2011-10-18 23:02:30 +00003182 ++Count;
Jim Grosbach98b05a52011-11-30 01:09:44 +00003183 // Parse the lane specifier if present.
3184 VectorLaneTy NextLaneKind;
Jim Grosbach7636bf62011-12-02 00:35:16 +00003185 unsigned NextLaneIndex;
Jim Grosbach98b05a52011-11-30 01:09:44 +00003186 SMLoc EndLoc = Parser.getTok().getLoc();
Jim Grosbach7636bf62011-12-02 00:35:16 +00003187 if (parseVectorLane(NextLaneKind, NextLaneIndex) != MatchOperand_Success)
Jim Grosbach98b05a52011-11-30 01:09:44 +00003188 return MatchOperand_ParseFail;
Jim Grosbach7636bf62011-12-02 00:35:16 +00003189 if (NextLaneKind != LaneKind || LaneIndex != NextLaneIndex) {
Jim Grosbach98b05a52011-11-30 01:09:44 +00003190 Error(EndLoc, "mismatched lane index in register list");
3191 return MatchOperand_ParseFail;
3192 }
Jim Grosbach862019c2011-10-18 23:02:30 +00003193 }
3194
3195 SMLoc E = Parser.getTok().getLoc();
3196 if (Parser.getTok().isNot(AsmToken::RCurly)) {
3197 Error(E, "'}' expected");
3198 return MatchOperand_ParseFail;
3199 }
3200 Parser.Lex(); // Eat '}' token.
3201
Jim Grosbach98b05a52011-11-30 01:09:44 +00003202 switch (LaneKind) {
Jim Grosbach98b05a52011-11-30 01:09:44 +00003203 case NoLanes:
Jim Grosbachc0fc4502012-03-06 22:01:44 +00003204 // Two-register operands have been converted to the
Jim Grosbachc3384c92012-03-05 21:43:40 +00003205 // composite register classes.
3206 if (Count == 2) {
3207 const MCRegisterClass *RC = (Spacing == 1) ?
3208 &ARMMCRegisterClasses[ARM::DPairRegClassID] :
3209 &ARMMCRegisterClasses[ARM::DPairSpcRegClassID];
3210 FirstReg = MRI->getMatchingSuperReg(FirstReg, ARM::dsub_0, RC);
3211 }
Jim Grosbach28f08c92012-03-05 19:33:30 +00003212
Jim Grosbach0aaf4cd2011-12-15 21:44:33 +00003213 Operands.push_back(ARMOperand::CreateVectorList(FirstReg, Count,
3214 (Spacing == 2), S, E));
Jim Grosbach98b05a52011-11-30 01:09:44 +00003215 break;
3216 case AllLanes:
Jim Grosbachc0fc4502012-03-06 22:01:44 +00003217 // Two-register operands have been converted to the
3218 // composite register classes.
Jim Grosbach4d0983a2012-03-06 23:10:38 +00003219 if (Count == 2) {
3220 const MCRegisterClass *RC = (Spacing == 1) ?
3221 &ARMMCRegisterClasses[ARM::DPairRegClassID] :
3222 &ARMMCRegisterClasses[ARM::DPairSpcRegClassID];
Jim Grosbachc0fc4502012-03-06 22:01:44 +00003223 FirstReg = MRI->getMatchingSuperReg(FirstReg, ARM::dsub_0, RC);
3224 }
Jim Grosbach98b05a52011-11-30 01:09:44 +00003225 Operands.push_back(ARMOperand::CreateVectorListAllLanes(FirstReg, Count,
Jim Grosbach3471d4f2011-12-21 00:38:54 +00003226 (Spacing == 2),
Jim Grosbach98b05a52011-11-30 01:09:44 +00003227 S, E));
3228 break;
Jim Grosbach7636bf62011-12-02 00:35:16 +00003229 case IndexedLane:
3230 Operands.push_back(ARMOperand::CreateVectorListIndexed(FirstReg, Count,
Jim Grosbach95fad1c2011-12-20 19:21:26 +00003231 LaneIndex,
3232 (Spacing == 2),
3233 S, E));
Jim Grosbach7636bf62011-12-02 00:35:16 +00003234 break;
Jim Grosbach98b05a52011-11-30 01:09:44 +00003235 }
Jim Grosbach862019c2011-10-18 23:02:30 +00003236 return MatchOperand_Success;
3237}
3238
Jim Grosbach43904292011-07-25 20:14:50 +00003239/// parseMemBarrierOptOperand - Try to parse DSB/DMB data barrier options.
Jim Grosbachf922c472011-02-12 01:34:40 +00003240ARMAsmParser::OperandMatchResultTy ARMAsmParser::
Jim Grosbach43904292011-07-25 20:14:50 +00003241parseMemBarrierOptOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Bruno Cardoso Lopes706d9462011-02-07 22:09:15 +00003242 SMLoc S = Parser.getTok().getLoc();
3243 const AsmToken &Tok = Parser.getTok();
3244 assert(Tok.is(AsmToken::Identifier) && "Token is not an Identifier");
3245 StringRef OptStr = Tok.getString();
3246
3247 unsigned Opt = StringSwitch<unsigned>(OptStr.slice(0, OptStr.size()))
3248 .Case("sy", ARM_MB::SY)
3249 .Case("st", ARM_MB::ST)
Jim Grosbach032434d2011-07-13 23:40:38 +00003250 .Case("sh", ARM_MB::ISH)
Bruno Cardoso Lopes706d9462011-02-07 22:09:15 +00003251 .Case("ish", ARM_MB::ISH)
Jim Grosbach032434d2011-07-13 23:40:38 +00003252 .Case("shst", ARM_MB::ISHST)
Bruno Cardoso Lopes706d9462011-02-07 22:09:15 +00003253 .Case("ishst", ARM_MB::ISHST)
3254 .Case("nsh", ARM_MB::NSH)
Jim Grosbach032434d2011-07-13 23:40:38 +00003255 .Case("un", ARM_MB::NSH)
Bruno Cardoso Lopes706d9462011-02-07 22:09:15 +00003256 .Case("nshst", ARM_MB::NSHST)
Jim Grosbach032434d2011-07-13 23:40:38 +00003257 .Case("unst", ARM_MB::NSHST)
Bruno Cardoso Lopes706d9462011-02-07 22:09:15 +00003258 .Case("osh", ARM_MB::OSH)
3259 .Case("oshst", ARM_MB::OSHST)
3260 .Default(~0U);
3261
3262 if (Opt == ~0U)
Jim Grosbachf922c472011-02-12 01:34:40 +00003263 return MatchOperand_NoMatch;
Bruno Cardoso Lopes706d9462011-02-07 22:09:15 +00003264
3265 Parser.Lex(); // Eat identifier token.
3266 Operands.push_back(ARMOperand::CreateMemBarrierOpt((ARM_MB::MemBOpt)Opt, S));
Jim Grosbachf922c472011-02-12 01:34:40 +00003267 return MatchOperand_Success;
Bruno Cardoso Lopes706d9462011-02-07 22:09:15 +00003268}
3269
Jim Grosbach43904292011-07-25 20:14:50 +00003270/// parseProcIFlagsOperand - Try to parse iflags from CPS instruction.
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00003271ARMAsmParser::OperandMatchResultTy ARMAsmParser::
Jim Grosbach43904292011-07-25 20:14:50 +00003272parseProcIFlagsOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00003273 SMLoc S = Parser.getTok().getLoc();
3274 const AsmToken &Tok = Parser.getTok();
3275 assert(Tok.is(AsmToken::Identifier) && "Token is not an Identifier");
3276 StringRef IFlagsStr = Tok.getString();
3277
Owen Anderson2dbb46a2011-10-05 17:16:40 +00003278 // An iflags string of "none" is interpreted to mean that none of the AIF
3279 // bits are set. Not a terribly useful instruction, but a valid encoding.
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00003280 unsigned IFlags = 0;
Owen Anderson2dbb46a2011-10-05 17:16:40 +00003281 if (IFlagsStr != "none") {
3282 for (int i = 0, e = IFlagsStr.size(); i != e; ++i) {
3283 unsigned Flag = StringSwitch<unsigned>(IFlagsStr.substr(i, 1))
3284 .Case("a", ARM_PROC::A)
3285 .Case("i", ARM_PROC::I)
3286 .Case("f", ARM_PROC::F)
3287 .Default(~0U);
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00003288
Owen Anderson2dbb46a2011-10-05 17:16:40 +00003289 // If some specific iflag is already set, it means that some letter is
3290 // present more than once, this is not acceptable.
3291 if (Flag == ~0U || (IFlags & Flag))
3292 return MatchOperand_NoMatch;
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00003293
Owen Anderson2dbb46a2011-10-05 17:16:40 +00003294 IFlags |= Flag;
3295 }
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00003296 }
3297
3298 Parser.Lex(); // Eat identifier token.
3299 Operands.push_back(ARMOperand::CreateProcIFlags((ARM_PROC::IFlags)IFlags, S));
3300 return MatchOperand_Success;
3301}
3302
Jim Grosbach43904292011-07-25 20:14:50 +00003303/// parseMSRMaskOperand - Try to parse mask flags from MSR instruction.
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +00003304ARMAsmParser::OperandMatchResultTy ARMAsmParser::
Jim Grosbach43904292011-07-25 20:14:50 +00003305parseMSRMaskOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +00003306 SMLoc S = Parser.getTok().getLoc();
3307 const AsmToken &Tok = Parser.getTok();
3308 assert(Tok.is(AsmToken::Identifier) && "Token is not an Identifier");
3309 StringRef Mask = Tok.getString();
3310
James Molloyacad68d2011-09-28 14:21:38 +00003311 if (isMClass()) {
3312 // See ARMv6-M 10.1.1
Jim Grosbachb84ad4a2012-03-15 21:34:14 +00003313 std::string Name = Mask.lower();
3314 unsigned FlagsVal = StringSwitch<unsigned>(Name)
James Molloyacad68d2011-09-28 14:21:38 +00003315 .Case("apsr", 0)
3316 .Case("iapsr", 1)
3317 .Case("eapsr", 2)
3318 .Case("xpsr", 3)
3319 .Case("ipsr", 5)
3320 .Case("epsr", 6)
3321 .Case("iepsr", 7)
3322 .Case("msp", 8)
3323 .Case("psp", 9)
3324 .Case("primask", 16)
3325 .Case("basepri", 17)
3326 .Case("basepri_max", 18)
3327 .Case("faultmask", 19)
3328 .Case("control", 20)
3329 .Default(~0U);
Jim Grosbach18c8d122011-12-22 17:17:10 +00003330
James Molloyacad68d2011-09-28 14:21:38 +00003331 if (FlagsVal == ~0U)
3332 return MatchOperand_NoMatch;
3333
3334 if (!hasV7Ops() && FlagsVal >= 17 && FlagsVal <= 19)
3335 // basepri, basepri_max and faultmask only valid for V7m.
3336 return MatchOperand_NoMatch;
Jim Grosbach18c8d122011-12-22 17:17:10 +00003337
James Molloyacad68d2011-09-28 14:21:38 +00003338 Parser.Lex(); // Eat identifier token.
3339 Operands.push_back(ARMOperand::CreateMSRMask(FlagsVal, S));
3340 return MatchOperand_Success;
3341 }
3342
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +00003343 // Split spec_reg from flag, example: CPSR_sxf => "CPSR" and "sxf"
3344 size_t Start = 0, Next = Mask.find('_');
3345 StringRef Flags = "";
Benjamin Kramer59085362011-11-06 20:37:06 +00003346 std::string SpecReg = Mask.slice(Start, Next).lower();
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +00003347 if (Next != StringRef::npos)
3348 Flags = Mask.slice(Next+1, Mask.size());
3349
3350 // FlagsVal contains the complete mask:
3351 // 3-0: Mask
3352 // 4: Special Reg (cpsr, apsr => 0; spsr => 1)
3353 unsigned FlagsVal = 0;
3354
3355 if (SpecReg == "apsr") {
3356 FlagsVal = StringSwitch<unsigned>(Flags)
Jim Grosbachb29b4dd2011-07-19 22:45:10 +00003357 .Case("nzcvq", 0x8) // same as CPSR_f
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +00003358 .Case("g", 0x4) // same as CPSR_s
3359 .Case("nzcvqg", 0xc) // same as CPSR_fs
3360 .Default(~0U);
3361
Joerg Sonnenberger4b19c982011-02-19 00:43:45 +00003362 if (FlagsVal == ~0U) {
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +00003363 if (!Flags.empty())
3364 return MatchOperand_NoMatch;
3365 else
Jim Grosbachbf841cf2011-09-14 20:03:46 +00003366 FlagsVal = 8; // No flag
Joerg Sonnenberger4b19c982011-02-19 00:43:45 +00003367 }
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +00003368 } else if (SpecReg == "cpsr" || SpecReg == "spsr") {
Jim Grosbachb657a902012-04-05 03:17:53 +00003369 // cpsr_all is an alias for cpsr_fc, as is plain cpsr.
3370 if (Flags == "all" || Flags == "")
Bruno Cardoso Lopes56926a32011-05-25 00:35:03 +00003371 Flags = "fc";
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +00003372 for (int i = 0, e = Flags.size(); i != e; ++i) {
3373 unsigned Flag = StringSwitch<unsigned>(Flags.substr(i, 1))
3374 .Case("c", 1)
3375 .Case("x", 2)
3376 .Case("s", 4)
3377 .Case("f", 8)
3378 .Default(~0U);
3379
3380 // If some specific flag is already set, it means that some letter is
3381 // present more than once, this is not acceptable.
3382 if (FlagsVal == ~0U || (FlagsVal & Flag))
3383 return MatchOperand_NoMatch;
3384 FlagsVal |= Flag;
3385 }
3386 } else // No match for special register.
3387 return MatchOperand_NoMatch;
3388
Owen Anderson7784f1d2011-10-21 18:43:28 +00003389 // Special register without flags is NOT equivalent to "fc" flags.
3390 // NOTE: This is a divergence from gas' behavior. Uncommenting the following
3391 // two lines would enable gas compatibility at the expense of breaking
3392 // round-tripping.
3393 //
3394 // if (!FlagsVal)
3395 // FlagsVal = 0x9;
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +00003396
3397 // Bit 4: Special Reg (cpsr, apsr => 0; spsr => 1)
3398 if (SpecReg == "spsr")
3399 FlagsVal |= 16;
3400
3401 Parser.Lex(); // Eat identifier token.
3402 Operands.push_back(ARMOperand::CreateMSRMask(FlagsVal, S));
3403 return MatchOperand_Success;
3404}
3405
Jim Grosbachf6c05252011-07-21 17:23:04 +00003406ARMAsmParser::OperandMatchResultTy ARMAsmParser::
3407parsePKHImm(SmallVectorImpl<MCParsedAsmOperand*> &Operands, StringRef Op,
3408 int Low, int High) {
3409 const AsmToken &Tok = Parser.getTok();
3410 if (Tok.isNot(AsmToken::Identifier)) {
3411 Error(Parser.getTok().getLoc(), Op + " operand expected.");
3412 return MatchOperand_ParseFail;
3413 }
3414 StringRef ShiftName = Tok.getString();
Benjamin Kramer59085362011-11-06 20:37:06 +00003415 std::string LowerOp = Op.lower();
3416 std::string UpperOp = Op.upper();
Jim Grosbachf6c05252011-07-21 17:23:04 +00003417 if (ShiftName != LowerOp && ShiftName != UpperOp) {
3418 Error(Parser.getTok().getLoc(), Op + " operand expected.");
3419 return MatchOperand_ParseFail;
3420 }
3421 Parser.Lex(); // Eat shift type token.
3422
3423 // There must be a '#' and a shift amount.
Jim Grosbach8a12e3b2011-12-09 22:25:03 +00003424 if (Parser.getTok().isNot(AsmToken::Hash) &&
3425 Parser.getTok().isNot(AsmToken::Dollar)) {
Jim Grosbachf6c05252011-07-21 17:23:04 +00003426 Error(Parser.getTok().getLoc(), "'#' expected");
3427 return MatchOperand_ParseFail;
3428 }
3429 Parser.Lex(); // Eat hash token.
3430
3431 const MCExpr *ShiftAmount;
3432 SMLoc Loc = Parser.getTok().getLoc();
3433 if (getParser().ParseExpression(ShiftAmount)) {
3434 Error(Loc, "illegal expression");
3435 return MatchOperand_ParseFail;
3436 }
3437 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ShiftAmount);
3438 if (!CE) {
3439 Error(Loc, "constant expression expected");
3440 return MatchOperand_ParseFail;
3441 }
3442 int Val = CE->getValue();
3443 if (Val < Low || Val > High) {
3444 Error(Loc, "immediate value out of range");
3445 return MatchOperand_ParseFail;
3446 }
3447
3448 Operands.push_back(ARMOperand::CreateImm(CE, Loc, Parser.getTok().getLoc()));
3449
3450 return MatchOperand_Success;
3451}
3452
Jim Grosbachc27d4f92011-07-22 17:44:50 +00003453ARMAsmParser::OperandMatchResultTy ARMAsmParser::
3454parseSetEndImm(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
3455 const AsmToken &Tok = Parser.getTok();
3456 SMLoc S = Tok.getLoc();
3457 if (Tok.isNot(AsmToken::Identifier)) {
3458 Error(Tok.getLoc(), "'be' or 'le' operand expected");
3459 return MatchOperand_ParseFail;
3460 }
3461 int Val = StringSwitch<int>(Tok.getString())
3462 .Case("be", 1)
3463 .Case("le", 0)
3464 .Default(-1);
3465 Parser.Lex(); // Eat the token.
3466
3467 if (Val == -1) {
3468 Error(Tok.getLoc(), "'be' or 'le' operand expected");
3469 return MatchOperand_ParseFail;
3470 }
3471 Operands.push_back(ARMOperand::CreateImm(MCConstantExpr::Create(Val,
3472 getContext()),
3473 S, Parser.getTok().getLoc()));
3474 return MatchOperand_Success;
3475}
3476
Jim Grosbach580f4a92011-07-25 22:20:28 +00003477/// parseShifterImm - Parse the shifter immediate operand for SSAT/USAT
3478/// instructions. Legal values are:
3479/// lsl #n 'n' in [0,31]
3480/// asr #n 'n' in [1,32]
3481/// n == 32 encoded as n == 0.
3482ARMAsmParser::OperandMatchResultTy ARMAsmParser::
3483parseShifterImm(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
3484 const AsmToken &Tok = Parser.getTok();
3485 SMLoc S = Tok.getLoc();
3486 if (Tok.isNot(AsmToken::Identifier)) {
3487 Error(S, "shift operator 'asr' or 'lsl' expected");
3488 return MatchOperand_ParseFail;
3489 }
3490 StringRef ShiftName = Tok.getString();
3491 bool isASR;
3492 if (ShiftName == "lsl" || ShiftName == "LSL")
3493 isASR = false;
3494 else if (ShiftName == "asr" || ShiftName == "ASR")
3495 isASR = true;
3496 else {
3497 Error(S, "shift operator 'asr' or 'lsl' expected");
3498 return MatchOperand_ParseFail;
3499 }
3500 Parser.Lex(); // Eat the operator.
3501
3502 // A '#' and a shift amount.
Jim Grosbach8a12e3b2011-12-09 22:25:03 +00003503 if (Parser.getTok().isNot(AsmToken::Hash) &&
3504 Parser.getTok().isNot(AsmToken::Dollar)) {
Jim Grosbach580f4a92011-07-25 22:20:28 +00003505 Error(Parser.getTok().getLoc(), "'#' expected");
3506 return MatchOperand_ParseFail;
3507 }
3508 Parser.Lex(); // Eat hash token.
3509
3510 const MCExpr *ShiftAmount;
3511 SMLoc E = Parser.getTok().getLoc();
3512 if (getParser().ParseExpression(ShiftAmount)) {
3513 Error(E, "malformed shift expression");
3514 return MatchOperand_ParseFail;
3515 }
3516 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ShiftAmount);
3517 if (!CE) {
3518 Error(E, "shift amount must be an immediate");
3519 return MatchOperand_ParseFail;
3520 }
3521
3522 int64_t Val = CE->getValue();
3523 if (isASR) {
3524 // Shift amount must be in [1,32]
3525 if (Val < 1 || Val > 32) {
3526 Error(E, "'asr' shift amount must be in range [1,32]");
3527 return MatchOperand_ParseFail;
3528 }
Owen Anderson0afa0092011-09-26 21:06:22 +00003529 // asr #32 encoded as asr #0, but is not allowed in Thumb2 mode.
3530 if (isThumb() && Val == 32) {
3531 Error(E, "'asr #32' shift amount not allowed in Thumb mode");
3532 return MatchOperand_ParseFail;
3533 }
Jim Grosbach580f4a92011-07-25 22:20:28 +00003534 if (Val == 32) Val = 0;
3535 } else {
3536 // Shift amount must be in [1,32]
3537 if (Val < 0 || Val > 31) {
3538 Error(E, "'lsr' shift amount must be in range [0,31]");
3539 return MatchOperand_ParseFail;
3540 }
3541 }
3542
3543 E = Parser.getTok().getLoc();
3544 Operands.push_back(ARMOperand::CreateShifterImm(isASR, Val, S, E));
3545
3546 return MatchOperand_Success;
3547}
3548
Jim Grosbach7e1547e2011-07-27 20:15:40 +00003549/// parseRotImm - Parse the shifter immediate operand for SXTB/UXTB family
3550/// of instructions. Legal values are:
3551/// ror #n 'n' in {0, 8, 16, 24}
3552ARMAsmParser::OperandMatchResultTy ARMAsmParser::
3553parseRotImm(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
3554 const AsmToken &Tok = Parser.getTok();
3555 SMLoc S = Tok.getLoc();
Jim Grosbach326efe52011-09-19 20:29:33 +00003556 if (Tok.isNot(AsmToken::Identifier))
3557 return MatchOperand_NoMatch;
Jim Grosbach7e1547e2011-07-27 20:15:40 +00003558 StringRef ShiftName = Tok.getString();
Jim Grosbach326efe52011-09-19 20:29:33 +00003559 if (ShiftName != "ror" && ShiftName != "ROR")
3560 return MatchOperand_NoMatch;
Jim Grosbach7e1547e2011-07-27 20:15:40 +00003561 Parser.Lex(); // Eat the operator.
3562
3563 // A '#' and a rotate amount.
Jim Grosbach8a12e3b2011-12-09 22:25:03 +00003564 if (Parser.getTok().isNot(AsmToken::Hash) &&
3565 Parser.getTok().isNot(AsmToken::Dollar)) {
Jim Grosbach7e1547e2011-07-27 20:15:40 +00003566 Error(Parser.getTok().getLoc(), "'#' expected");
3567 return MatchOperand_ParseFail;
3568 }
3569 Parser.Lex(); // Eat hash token.
3570
3571 const MCExpr *ShiftAmount;
3572 SMLoc E = Parser.getTok().getLoc();
3573 if (getParser().ParseExpression(ShiftAmount)) {
3574 Error(E, "malformed rotate expression");
3575 return MatchOperand_ParseFail;
3576 }
3577 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ShiftAmount);
3578 if (!CE) {
3579 Error(E, "rotate amount must be an immediate");
3580 return MatchOperand_ParseFail;
3581 }
3582
3583 int64_t Val = CE->getValue();
3584 // Shift amount must be in {0, 8, 16, 24} (0 is undocumented extension)
3585 // normally, zero is represented in asm by omitting the rotate operand
3586 // entirely.
3587 if (Val != 8 && Val != 16 && Val != 24 && Val != 0) {
3588 Error(E, "'ror' rotate amount must be 8, 16, or 24");
3589 return MatchOperand_ParseFail;
3590 }
3591
3592 E = Parser.getTok().getLoc();
3593 Operands.push_back(ARMOperand::CreateRotImm(Val, S, E));
3594
3595 return MatchOperand_Success;
3596}
3597
Jim Grosbach293a2ee2011-07-28 21:34:26 +00003598ARMAsmParser::OperandMatchResultTy ARMAsmParser::
3599parseBitfield(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
3600 SMLoc S = Parser.getTok().getLoc();
3601 // The bitfield descriptor is really two operands, the LSB and the width.
Jim Grosbach8a12e3b2011-12-09 22:25:03 +00003602 if (Parser.getTok().isNot(AsmToken::Hash) &&
3603 Parser.getTok().isNot(AsmToken::Dollar)) {
Jim Grosbach293a2ee2011-07-28 21:34:26 +00003604 Error(Parser.getTok().getLoc(), "'#' expected");
3605 return MatchOperand_ParseFail;
3606 }
3607 Parser.Lex(); // Eat hash token.
3608
3609 const MCExpr *LSBExpr;
3610 SMLoc E = Parser.getTok().getLoc();
3611 if (getParser().ParseExpression(LSBExpr)) {
3612 Error(E, "malformed immediate expression");
3613 return MatchOperand_ParseFail;
3614 }
3615 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(LSBExpr);
3616 if (!CE) {
3617 Error(E, "'lsb' operand must be an immediate");
3618 return MatchOperand_ParseFail;
3619 }
3620
3621 int64_t LSB = CE->getValue();
3622 // The LSB must be in the range [0,31]
3623 if (LSB < 0 || LSB > 31) {
3624 Error(E, "'lsb' operand must be in the range [0,31]");
3625 return MatchOperand_ParseFail;
3626 }
3627 E = Parser.getTok().getLoc();
3628
3629 // Expect another immediate operand.
3630 if (Parser.getTok().isNot(AsmToken::Comma)) {
3631 Error(Parser.getTok().getLoc(), "too few operands");
3632 return MatchOperand_ParseFail;
3633 }
3634 Parser.Lex(); // Eat hash token.
Jim Grosbach8a12e3b2011-12-09 22:25:03 +00003635 if (Parser.getTok().isNot(AsmToken::Hash) &&
3636 Parser.getTok().isNot(AsmToken::Dollar)) {
Jim Grosbach293a2ee2011-07-28 21:34:26 +00003637 Error(Parser.getTok().getLoc(), "'#' expected");
3638 return MatchOperand_ParseFail;
3639 }
3640 Parser.Lex(); // Eat hash token.
3641
3642 const MCExpr *WidthExpr;
3643 if (getParser().ParseExpression(WidthExpr)) {
3644 Error(E, "malformed immediate expression");
3645 return MatchOperand_ParseFail;
3646 }
3647 CE = dyn_cast<MCConstantExpr>(WidthExpr);
3648 if (!CE) {
3649 Error(E, "'width' operand must be an immediate");
3650 return MatchOperand_ParseFail;
3651 }
3652
3653 int64_t Width = CE->getValue();
3654 // The LSB must be in the range [1,32-lsb]
3655 if (Width < 1 || Width > 32 - LSB) {
3656 Error(E, "'width' operand must be in the range [1,32-lsb]");
3657 return MatchOperand_ParseFail;
3658 }
3659 E = Parser.getTok().getLoc();
3660
3661 Operands.push_back(ARMOperand::CreateBitfield(LSB, Width, S, E));
3662
3663 return MatchOperand_Success;
3664}
3665
Jim Grosbach7ce05792011-08-03 23:50:40 +00003666ARMAsmParser::OperandMatchResultTy ARMAsmParser::
3667parsePostIdxReg(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
3668 // Check for a post-index addressing register operand. Specifically:
Jim Grosbachf4fa3d62011-08-05 21:28:30 +00003669 // postidx_reg := '+' register {, shift}
3670 // | '-' register {, shift}
3671 // | register {, shift}
Jim Grosbach7ce05792011-08-03 23:50:40 +00003672
3673 // This method must return MatchOperand_NoMatch without consuming any tokens
3674 // in the case where there is no match, as other alternatives take other
3675 // parse methods.
3676 AsmToken Tok = Parser.getTok();
3677 SMLoc S = Tok.getLoc();
3678 bool haveEaten = false;
Jim Grosbach16578b52011-08-05 16:11:38 +00003679 bool isAdd = true;
Jim Grosbach7ce05792011-08-03 23:50:40 +00003680 int Reg = -1;
3681 if (Tok.is(AsmToken::Plus)) {
3682 Parser.Lex(); // Eat the '+' token.
3683 haveEaten = true;
3684 } else if (Tok.is(AsmToken::Minus)) {
3685 Parser.Lex(); // Eat the '-' token.
Jim Grosbach16578b52011-08-05 16:11:38 +00003686 isAdd = false;
Jim Grosbach7ce05792011-08-03 23:50:40 +00003687 haveEaten = true;
3688 }
3689 if (Parser.getTok().is(AsmToken::Identifier))
3690 Reg = tryParseRegister();
3691 if (Reg == -1) {
3692 if (!haveEaten)
3693 return MatchOperand_NoMatch;
3694 Error(Parser.getTok().getLoc(), "register expected");
3695 return MatchOperand_ParseFail;
3696 }
3697 SMLoc E = Parser.getTok().getLoc();
3698
Jim Grosbachf4fa3d62011-08-05 21:28:30 +00003699 ARM_AM::ShiftOpc ShiftTy = ARM_AM::no_shift;
3700 unsigned ShiftImm = 0;
Jim Grosbach0d6fac32011-08-05 22:03:36 +00003701 if (Parser.getTok().is(AsmToken::Comma)) {
3702 Parser.Lex(); // Eat the ','.
3703 if (parseMemRegOffsetShift(ShiftTy, ShiftImm))
3704 return MatchOperand_ParseFail;
3705 }
Jim Grosbachf4fa3d62011-08-05 21:28:30 +00003706
3707 Operands.push_back(ARMOperand::CreatePostIdxReg(Reg, isAdd, ShiftTy,
3708 ShiftImm, S, E));
Jim Grosbach7ce05792011-08-03 23:50:40 +00003709
3710 return MatchOperand_Success;
3711}
3712
Jim Grosbach251bf252011-08-10 21:56:18 +00003713ARMAsmParser::OperandMatchResultTy ARMAsmParser::
3714parseAM3Offset(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
3715 // Check for a post-index addressing register operand. Specifically:
3716 // am3offset := '+' register
3717 // | '-' register
3718 // | register
3719 // | # imm
3720 // | # + imm
3721 // | # - imm
3722
3723 // This method must return MatchOperand_NoMatch without consuming any tokens
3724 // in the case where there is no match, as other alternatives take other
3725 // parse methods.
3726 AsmToken Tok = Parser.getTok();
3727 SMLoc S = Tok.getLoc();
3728
3729 // Do immediates first, as we always parse those if we have a '#'.
Jim Grosbach8a12e3b2011-12-09 22:25:03 +00003730 if (Parser.getTok().is(AsmToken::Hash) ||
3731 Parser.getTok().is(AsmToken::Dollar)) {
Jim Grosbach251bf252011-08-10 21:56:18 +00003732 Parser.Lex(); // Eat the '#'.
3733 // Explicitly look for a '-', as we need to encode negative zero
3734 // differently.
3735 bool isNegative = Parser.getTok().is(AsmToken::Minus);
3736 const MCExpr *Offset;
3737 if (getParser().ParseExpression(Offset))
3738 return MatchOperand_ParseFail;
3739 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Offset);
3740 if (!CE) {
3741 Error(S, "constant expression expected");
3742 return MatchOperand_ParseFail;
3743 }
3744 SMLoc E = Tok.getLoc();
3745 // Negative zero is encoded as the flag value INT32_MIN.
3746 int32_t Val = CE->getValue();
3747 if (isNegative && Val == 0)
3748 Val = INT32_MIN;
3749
3750 Operands.push_back(
3751 ARMOperand::CreateImm(MCConstantExpr::Create(Val, getContext()), S, E));
3752
3753 return MatchOperand_Success;
3754 }
3755
3756
3757 bool haveEaten = false;
3758 bool isAdd = true;
3759 int Reg = -1;
3760 if (Tok.is(AsmToken::Plus)) {
3761 Parser.Lex(); // Eat the '+' token.
3762 haveEaten = true;
3763 } else if (Tok.is(AsmToken::Minus)) {
3764 Parser.Lex(); // Eat the '-' token.
3765 isAdd = false;
3766 haveEaten = true;
3767 }
3768 if (Parser.getTok().is(AsmToken::Identifier))
3769 Reg = tryParseRegister();
3770 if (Reg == -1) {
3771 if (!haveEaten)
3772 return MatchOperand_NoMatch;
3773 Error(Parser.getTok().getLoc(), "register expected");
3774 return MatchOperand_ParseFail;
3775 }
3776 SMLoc E = Parser.getTok().getLoc();
3777
3778 Operands.push_back(ARMOperand::CreatePostIdxReg(Reg, isAdd, ARM_AM::no_shift,
3779 0, S, E));
3780
3781 return MatchOperand_Success;
3782}
3783
Jim Grosbacha77295d2011-09-08 22:07:06 +00003784/// cvtT2LdrdPre - Convert parsed operands to MCInst.
3785/// Needed here because the Asm Gen Matcher can't handle properly tied operands
3786/// when they refer multiple MIOperands inside a single one.
3787bool ARMAsmParser::
3788cvtT2LdrdPre(MCInst &Inst, unsigned Opcode,
3789 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
3790 // Rt, Rt2
3791 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
3792 ((ARMOperand*)Operands[3])->addRegOperands(Inst, 1);
3793 // Create a writeback register dummy placeholder.
3794 Inst.addOperand(MCOperand::CreateReg(0));
3795 // addr
3796 ((ARMOperand*)Operands[4])->addMemImm8s4OffsetOperands(Inst, 2);
3797 // pred
3798 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
3799 return true;
3800}
3801
3802/// cvtT2StrdPre - Convert parsed operands to MCInst.
3803/// Needed here because the Asm Gen Matcher can't handle properly tied operands
3804/// when they refer multiple MIOperands inside a single one.
3805bool ARMAsmParser::
3806cvtT2StrdPre(MCInst &Inst, unsigned Opcode,
3807 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
3808 // Create a writeback register dummy placeholder.
3809 Inst.addOperand(MCOperand::CreateReg(0));
3810 // Rt, Rt2
3811 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
3812 ((ARMOperand*)Operands[3])->addRegOperands(Inst, 1);
3813 // addr
3814 ((ARMOperand*)Operands[4])->addMemImm8s4OffsetOperands(Inst, 2);
3815 // pred
3816 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
3817 return true;
3818}
3819
Jim Grosbacheeec0252011-09-08 00:39:19 +00003820/// cvtLdWriteBackRegT2AddrModeImm8 - Convert parsed operands to MCInst.
3821/// Needed here because the Asm Gen Matcher can't handle properly tied operands
3822/// when they refer multiple MIOperands inside a single one.
3823bool ARMAsmParser::
3824cvtLdWriteBackRegT2AddrModeImm8(MCInst &Inst, unsigned Opcode,
3825 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
3826 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
3827
3828 // Create a writeback register dummy placeholder.
3829 Inst.addOperand(MCOperand::CreateImm(0));
3830
3831 ((ARMOperand*)Operands[3])->addMemImm8OffsetOperands(Inst, 2);
3832 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
3833 return true;
3834}
3835
Jim Grosbachee2c2a42011-09-16 21:55:56 +00003836/// cvtStWriteBackRegT2AddrModeImm8 - Convert parsed operands to MCInst.
3837/// Needed here because the Asm Gen Matcher can't handle properly tied operands
3838/// when they refer multiple MIOperands inside a single one.
3839bool ARMAsmParser::
3840cvtStWriteBackRegT2AddrModeImm8(MCInst &Inst, unsigned Opcode,
3841 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
3842 // Create a writeback register dummy placeholder.
3843 Inst.addOperand(MCOperand::CreateImm(0));
3844 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
3845 ((ARMOperand*)Operands[3])->addMemImm8OffsetOperands(Inst, 2);
3846 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
3847 return true;
3848}
3849
Jim Grosbach1355cf12011-07-26 17:10:22 +00003850/// cvtLdWriteBackRegAddrMode2 - Convert parsed operands to MCInst.
Bruno Cardoso Lopesae085542011-03-31 23:26:08 +00003851/// Needed here because the Asm Gen Matcher can't handle properly tied operands
3852/// when they refer multiple MIOperands inside a single one.
3853bool ARMAsmParser::
Jim Grosbach1355cf12011-07-26 17:10:22 +00003854cvtLdWriteBackRegAddrMode2(MCInst &Inst, unsigned Opcode,
Bruno Cardoso Lopesae085542011-03-31 23:26:08 +00003855 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
3856 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
3857
3858 // Create a writeback register dummy placeholder.
3859 Inst.addOperand(MCOperand::CreateImm(0));
3860
Jim Grosbach7ce05792011-08-03 23:50:40 +00003861 ((ARMOperand*)Operands[3])->addAddrMode2Operands(Inst, 3);
Bruno Cardoso Lopesae085542011-03-31 23:26:08 +00003862 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
3863 return true;
3864}
3865
Owen Anderson9ab0f252011-08-26 20:43:14 +00003866/// cvtLdWriteBackRegAddrModeImm12 - Convert parsed operands to MCInst.
3867/// Needed here because the Asm Gen Matcher can't handle properly tied operands
3868/// when they refer multiple MIOperands inside a single one.
3869bool ARMAsmParser::
3870cvtLdWriteBackRegAddrModeImm12(MCInst &Inst, unsigned Opcode,
3871 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
3872 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
3873
3874 // Create a writeback register dummy placeholder.
3875 Inst.addOperand(MCOperand::CreateImm(0));
3876
3877 ((ARMOperand*)Operands[3])->addMemImm12OffsetOperands(Inst, 2);
3878 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
3879 return true;
3880}
3881
3882
Jim Grosbach548340c2011-08-11 19:22:40 +00003883/// cvtStWriteBackRegAddrModeImm12 - Convert parsed operands to MCInst.
3884/// Needed here because the Asm Gen Matcher can't handle properly tied operands
3885/// when they refer multiple MIOperands inside a single one.
3886bool ARMAsmParser::
3887cvtStWriteBackRegAddrModeImm12(MCInst &Inst, unsigned Opcode,
3888 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
3889 // Create a writeback register dummy placeholder.
3890 Inst.addOperand(MCOperand::CreateImm(0));
3891 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
3892 ((ARMOperand*)Operands[3])->addMemImm12OffsetOperands(Inst, 2);
3893 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
3894 return true;
3895}
3896
Jim Grosbach1355cf12011-07-26 17:10:22 +00003897/// cvtStWriteBackRegAddrMode2 - Convert parsed operands to MCInst.
Bruno Cardoso Lopesae085542011-03-31 23:26:08 +00003898/// Needed here because the Asm Gen Matcher can't handle properly tied operands
3899/// when they refer multiple MIOperands inside a single one.
3900bool ARMAsmParser::
Jim Grosbach1355cf12011-07-26 17:10:22 +00003901cvtStWriteBackRegAddrMode2(MCInst &Inst, unsigned Opcode,
Bruno Cardoso Lopesae085542011-03-31 23:26:08 +00003902 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
3903 // Create a writeback register dummy placeholder.
3904 Inst.addOperand(MCOperand::CreateImm(0));
Jim Grosbach548340c2011-08-11 19:22:40 +00003905 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
3906 ((ARMOperand*)Operands[3])->addAddrMode2Operands(Inst, 3);
3907 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
Jim Grosbach7ce05792011-08-03 23:50:40 +00003908 return true;
3909}
3910
Jim Grosbach7b8f46c2011-08-11 21:17:22 +00003911/// cvtStWriteBackRegAddrMode3 - Convert parsed operands to MCInst.
3912/// Needed here because the Asm Gen Matcher can't handle properly tied operands
3913/// when they refer multiple MIOperands inside a single one.
3914bool ARMAsmParser::
3915cvtStWriteBackRegAddrMode3(MCInst &Inst, unsigned Opcode,
3916 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
3917 // Create a writeback register dummy placeholder.
3918 Inst.addOperand(MCOperand::CreateImm(0));
3919 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
3920 ((ARMOperand*)Operands[3])->addAddrMode3Operands(Inst, 3);
3921 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
3922 return true;
3923}
3924
Jim Grosbach7ce05792011-08-03 23:50:40 +00003925/// cvtLdExtTWriteBackImm - Convert parsed operands to MCInst.
3926/// Needed here because the Asm Gen Matcher can't handle properly tied operands
3927/// when they refer multiple MIOperands inside a single one.
3928bool ARMAsmParser::
3929cvtLdExtTWriteBackImm(MCInst &Inst, unsigned Opcode,
3930 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
3931 // Rt
Bruno Cardoso Lopesae085542011-03-31 23:26:08 +00003932 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
Jim Grosbach7ce05792011-08-03 23:50:40 +00003933 // Create a writeback register dummy placeholder.
3934 Inst.addOperand(MCOperand::CreateImm(0));
3935 // addr
3936 ((ARMOperand*)Operands[3])->addMemNoOffsetOperands(Inst, 1);
3937 // offset
3938 ((ARMOperand*)Operands[4])->addPostIdxImm8Operands(Inst, 1);
3939 // pred
Bruno Cardoso Lopesae085542011-03-31 23:26:08 +00003940 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
3941 return true;
3942}
3943
Jim Grosbach7ce05792011-08-03 23:50:40 +00003944/// cvtLdExtTWriteBackReg - Convert parsed operands to MCInst.
Bruno Cardoso Lopesac79e4c2011-04-04 17:18:19 +00003945/// Needed here because the Asm Gen Matcher can't handle properly tied operands
3946/// when they refer multiple MIOperands inside a single one.
3947bool ARMAsmParser::
Jim Grosbach7ce05792011-08-03 23:50:40 +00003948cvtLdExtTWriteBackReg(MCInst &Inst, unsigned Opcode,
3949 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
3950 // Rt
Owen Andersonaa3402e2011-07-28 17:18:57 +00003951 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
Bruno Cardoso Lopesac79e4c2011-04-04 17:18:19 +00003952 // Create a writeback register dummy placeholder.
3953 Inst.addOperand(MCOperand::CreateImm(0));
Jim Grosbach7ce05792011-08-03 23:50:40 +00003954 // addr
3955 ((ARMOperand*)Operands[3])->addMemNoOffsetOperands(Inst, 1);
3956 // offset
3957 ((ARMOperand*)Operands[4])->addPostIdxRegOperands(Inst, 2);
3958 // pred
Bruno Cardoso Lopesac79e4c2011-04-04 17:18:19 +00003959 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
3960 return true;
3961}
3962
Jim Grosbach7ce05792011-08-03 23:50:40 +00003963/// cvtStExtTWriteBackImm - Convert parsed operands to MCInst.
Bruno Cardoso Lopesac79e4c2011-04-04 17:18:19 +00003964/// Needed here because the Asm Gen Matcher can't handle properly tied operands
3965/// when they refer multiple MIOperands inside a single one.
3966bool ARMAsmParser::
Jim Grosbach7ce05792011-08-03 23:50:40 +00003967cvtStExtTWriteBackImm(MCInst &Inst, unsigned Opcode,
3968 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Bruno Cardoso Lopesac79e4c2011-04-04 17:18:19 +00003969 // Create a writeback register dummy placeholder.
3970 Inst.addOperand(MCOperand::CreateImm(0));
Jim Grosbach7ce05792011-08-03 23:50:40 +00003971 // Rt
Bruno Cardoso Lopesac79e4c2011-04-04 17:18:19 +00003972 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
Jim Grosbach7ce05792011-08-03 23:50:40 +00003973 // addr
3974 ((ARMOperand*)Operands[3])->addMemNoOffsetOperands(Inst, 1);
3975 // offset
3976 ((ARMOperand*)Operands[4])->addPostIdxImm8Operands(Inst, 1);
3977 // pred
3978 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
3979 return true;
3980}
3981
3982/// cvtStExtTWriteBackReg - Convert parsed operands to MCInst.
3983/// Needed here because the Asm Gen Matcher can't handle properly tied operands
3984/// when they refer multiple MIOperands inside a single one.
3985bool ARMAsmParser::
3986cvtStExtTWriteBackReg(MCInst &Inst, unsigned Opcode,
3987 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
3988 // Create a writeback register dummy placeholder.
3989 Inst.addOperand(MCOperand::CreateImm(0));
3990 // Rt
3991 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
3992 // addr
3993 ((ARMOperand*)Operands[3])->addMemNoOffsetOperands(Inst, 1);
3994 // offset
3995 ((ARMOperand*)Operands[4])->addPostIdxRegOperands(Inst, 2);
3996 // pred
Bruno Cardoso Lopesac79e4c2011-04-04 17:18:19 +00003997 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
3998 return true;
3999}
4000
Jim Grosbach2fd2b872011-08-10 20:29:19 +00004001/// cvtLdrdPre - Convert parsed operands to MCInst.
4002/// Needed here because the Asm Gen Matcher can't handle properly tied operands
4003/// when they refer multiple MIOperands inside a single one.
4004bool ARMAsmParser::
4005cvtLdrdPre(MCInst &Inst, unsigned Opcode,
4006 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
4007 // Rt, Rt2
4008 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
4009 ((ARMOperand*)Operands[3])->addRegOperands(Inst, 1);
4010 // Create a writeback register dummy placeholder.
4011 Inst.addOperand(MCOperand::CreateImm(0));
4012 // addr
4013 ((ARMOperand*)Operands[4])->addAddrMode3Operands(Inst, 3);
4014 // pred
4015 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
4016 return true;
4017}
4018
Jim Grosbach14605d12011-08-11 20:28:23 +00004019/// cvtStrdPre - Convert parsed operands to MCInst.
4020/// Needed here because the Asm Gen Matcher can't handle properly tied operands
4021/// when they refer multiple MIOperands inside a single one.
4022bool ARMAsmParser::
4023cvtStrdPre(MCInst &Inst, unsigned Opcode,
4024 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
4025 // Create a writeback register dummy placeholder.
4026 Inst.addOperand(MCOperand::CreateImm(0));
4027 // Rt, Rt2
4028 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
4029 ((ARMOperand*)Operands[3])->addRegOperands(Inst, 1);
4030 // addr
4031 ((ARMOperand*)Operands[4])->addAddrMode3Operands(Inst, 3);
4032 // pred
4033 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
4034 return true;
4035}
4036
Jim Grosbach623a4542011-08-10 22:42:16 +00004037/// cvtLdWriteBackRegAddrMode3 - Convert parsed operands to MCInst.
4038/// Needed here because the Asm Gen Matcher can't handle properly tied operands
4039/// when they refer multiple MIOperands inside a single one.
4040bool ARMAsmParser::
4041cvtLdWriteBackRegAddrMode3(MCInst &Inst, unsigned Opcode,
4042 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
4043 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
4044 // Create a writeback register dummy placeholder.
4045 Inst.addOperand(MCOperand::CreateImm(0));
4046 ((ARMOperand*)Operands[3])->addAddrMode3Operands(Inst, 3);
4047 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
4048 return true;
4049}
4050
Jim Grosbach88ae2bc2011-08-19 22:07:46 +00004051/// cvtThumbMultiple- Convert parsed operands to MCInst.
4052/// Needed here because the Asm Gen Matcher can't handle properly tied operands
4053/// when they refer multiple MIOperands inside a single one.
4054bool ARMAsmParser::
4055cvtThumbMultiply(MCInst &Inst, unsigned Opcode,
4056 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
4057 // The second source operand must be the same register as the destination
4058 // operand.
4059 if (Operands.size() == 6 &&
Jim Grosbach7a010692011-08-19 22:30:46 +00004060 (((ARMOperand*)Operands[3])->getReg() !=
4061 ((ARMOperand*)Operands[5])->getReg()) &&
4062 (((ARMOperand*)Operands[3])->getReg() !=
4063 ((ARMOperand*)Operands[4])->getReg())) {
Jim Grosbach88ae2bc2011-08-19 22:07:46 +00004064 Error(Operands[3]->getStartLoc(),
Jim Grosbach7a010692011-08-19 22:30:46 +00004065 "destination register must match source register");
Jim Grosbach88ae2bc2011-08-19 22:07:46 +00004066 return false;
4067 }
4068 ((ARMOperand*)Operands[3])->addRegOperands(Inst, 1);
4069 ((ARMOperand*)Operands[1])->addCCOutOperands(Inst, 1);
Jim Grosbach1b332862011-11-10 22:10:12 +00004070 // If we have a three-operand form, make sure to set Rn to be the operand
4071 // that isn't the same as Rd.
4072 unsigned RegOp = 4;
4073 if (Operands.size() == 6 &&
4074 ((ARMOperand*)Operands[4])->getReg() ==
4075 ((ARMOperand*)Operands[3])->getReg())
4076 RegOp = 5;
4077 ((ARMOperand*)Operands[RegOp])->addRegOperands(Inst, 1);
4078 Inst.addOperand(Inst.getOperand(0));
Jim Grosbach88ae2bc2011-08-19 22:07:46 +00004079 ((ARMOperand*)Operands[2])->addCondCodeOperands(Inst, 2);
4080
4081 return true;
4082}
Jim Grosbach623a4542011-08-10 22:42:16 +00004083
Jim Grosbach12431322011-10-24 22:16:58 +00004084bool ARMAsmParser::
4085cvtVLDwbFixed(MCInst &Inst, unsigned Opcode,
4086 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
4087 // Vd
Jim Grosbach6029b6d2011-11-29 23:51:09 +00004088 ((ARMOperand*)Operands[3])->addVecListOperands(Inst, 1);
Jim Grosbach12431322011-10-24 22:16:58 +00004089 // Create a writeback register dummy placeholder.
4090 Inst.addOperand(MCOperand::CreateImm(0));
4091 // Vn
4092 ((ARMOperand*)Operands[4])->addAlignedMemoryOperands(Inst, 2);
4093 // pred
4094 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
4095 return true;
4096}
4097
4098bool ARMAsmParser::
4099cvtVLDwbRegister(MCInst &Inst, unsigned Opcode,
4100 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
4101 // Vd
Jim Grosbach6029b6d2011-11-29 23:51:09 +00004102 ((ARMOperand*)Operands[3])->addVecListOperands(Inst, 1);
Jim Grosbach12431322011-10-24 22:16:58 +00004103 // Create a writeback register dummy placeholder.
4104 Inst.addOperand(MCOperand::CreateImm(0));
4105 // Vn
4106 ((ARMOperand*)Operands[4])->addAlignedMemoryOperands(Inst, 2);
4107 // Vm
4108 ((ARMOperand*)Operands[5])->addRegOperands(Inst, 1);
4109 // pred
4110 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
4111 return true;
4112}
4113
Jim Grosbach4334e032011-10-31 21:50:31 +00004114bool ARMAsmParser::
4115cvtVSTwbFixed(MCInst &Inst, unsigned Opcode,
4116 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
4117 // Create a writeback register dummy placeholder.
4118 Inst.addOperand(MCOperand::CreateImm(0));
4119 // Vn
4120 ((ARMOperand*)Operands[4])->addAlignedMemoryOperands(Inst, 2);
4121 // Vt
Jim Grosbach6029b6d2011-11-29 23:51:09 +00004122 ((ARMOperand*)Operands[3])->addVecListOperands(Inst, 1);
Jim Grosbach4334e032011-10-31 21:50:31 +00004123 // pred
4124 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
4125 return true;
4126}
4127
4128bool ARMAsmParser::
4129cvtVSTwbRegister(MCInst &Inst, unsigned Opcode,
4130 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
4131 // Create a writeback register dummy placeholder.
4132 Inst.addOperand(MCOperand::CreateImm(0));
4133 // Vn
4134 ((ARMOperand*)Operands[4])->addAlignedMemoryOperands(Inst, 2);
4135 // Vm
4136 ((ARMOperand*)Operands[5])->addRegOperands(Inst, 1);
4137 // Vt
Jim Grosbach6029b6d2011-11-29 23:51:09 +00004138 ((ARMOperand*)Operands[3])->addVecListOperands(Inst, 1);
Jim Grosbach4334e032011-10-31 21:50:31 +00004139 // pred
4140 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
4141 return true;
4142}
4143
Bill Wendlinge7176102010-11-06 22:36:58 +00004144/// Parse an ARM memory expression, return false if successful else return true
Kevin Enderby9c41fa82009-10-30 22:55:57 +00004145/// or an error. The first token must be a '[' when called.
Bill Wendling50d0f582010-11-18 23:43:05 +00004146bool ARMAsmParser::
Jim Grosbach7ce05792011-08-03 23:50:40 +00004147parseMemory(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Sean Callanan76264762010-04-02 22:27:05 +00004148 SMLoc S, E;
Sean Callanan18b83232010-01-19 21:44:56 +00004149 assert(Parser.getTok().is(AsmToken::LBrac) &&
Bill Wendlinga60f1572010-11-06 10:48:18 +00004150 "Token is not a Left Bracket");
Sean Callanan76264762010-04-02 22:27:05 +00004151 S = Parser.getTok().getLoc();
Sean Callananb9a25b72010-01-19 20:27:46 +00004152 Parser.Lex(); // Eat left bracket token.
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00004153
Sean Callanan18b83232010-01-19 21:44:56 +00004154 const AsmToken &BaseRegTok = Parser.getTok();
Jim Grosbach1355cf12011-07-26 17:10:22 +00004155 int BaseRegNum = tryParseRegister();
Jim Grosbach7ce05792011-08-03 23:50:40 +00004156 if (BaseRegNum == -1)
4157 return Error(BaseRegTok.getLoc(), "register expected");
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00004158
Daniel Dunbar05710932011-01-18 05:34:17 +00004159 // The next token must either be a comma or a closing bracket.
4160 const AsmToken &Tok = Parser.getTok();
4161 if (!Tok.is(AsmToken::Comma) && !Tok.is(AsmToken::RBrac))
Jim Grosbach7ce05792011-08-03 23:50:40 +00004162 return Error(Tok.getLoc(), "malformed memory operand");
Daniel Dunbar05710932011-01-18 05:34:17 +00004163
Jim Grosbach7ce05792011-08-03 23:50:40 +00004164 if (Tok.is(AsmToken::RBrac)) {
Sean Callanan76264762010-04-02 22:27:05 +00004165 E = Tok.getLoc();
Sean Callananb9a25b72010-01-19 20:27:46 +00004166 Parser.Lex(); // Eat right bracket token.
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00004167
Jim Grosbach7ce05792011-08-03 23:50:40 +00004168 Operands.push_back(ARMOperand::CreateMem(BaseRegNum, 0, 0, ARM_AM::no_shift,
Jim Grosbach57dcb852011-10-11 17:29:55 +00004169 0, 0, false, S, E));
Jim Grosbach03f44a02010-11-29 23:18:01 +00004170
Jim Grosbachfb12f352011-09-19 18:42:21 +00004171 // If there's a pre-indexing writeback marker, '!', just add it as a token
4172 // operand. It's rather odd, but syntactically valid.
4173 if (Parser.getTok().is(AsmToken::Exclaim)) {
4174 Operands.push_back(ARMOperand::CreateToken("!",Parser.getTok().getLoc()));
4175 Parser.Lex(); // Eat the '!'.
4176 }
4177
Jim Grosbach7ce05792011-08-03 23:50:40 +00004178 return false;
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00004179 }
Daniel Dunbar05d8b712011-01-18 05:34:24 +00004180
Jim Grosbach7ce05792011-08-03 23:50:40 +00004181 assert(Tok.is(AsmToken::Comma) && "Lost comma in memory operand?!");
4182 Parser.Lex(); // Eat the comma.
Daniel Dunbar05d8b712011-01-18 05:34:24 +00004183
Jim Grosbach57dcb852011-10-11 17:29:55 +00004184 // If we have a ':', it's an alignment specifier.
4185 if (Parser.getTok().is(AsmToken::Colon)) {
4186 Parser.Lex(); // Eat the ':'.
4187 E = Parser.getTok().getLoc();
4188
4189 const MCExpr *Expr;
4190 if (getParser().ParseExpression(Expr))
4191 return true;
4192
4193 // The expression has to be a constant. Memory references with relocations
4194 // don't come through here, as they use the <label> forms of the relevant
4195 // instructions.
4196 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr);
4197 if (!CE)
4198 return Error (E, "constant expression expected");
4199
4200 unsigned Align = 0;
4201 switch (CE->getValue()) {
4202 default:
Jim Grosbacheeaf1c12011-12-19 18:31:43 +00004203 return Error(E,
4204 "alignment specifier must be 16, 32, 64, 128, or 256 bits");
4205 case 16: Align = 2; break;
4206 case 32: Align = 4; break;
Jim Grosbach57dcb852011-10-11 17:29:55 +00004207 case 64: Align = 8; break;
4208 case 128: Align = 16; break;
4209 case 256: Align = 32; break;
4210 }
4211
4212 // Now we should have the closing ']'
4213 E = Parser.getTok().getLoc();
4214 if (Parser.getTok().isNot(AsmToken::RBrac))
4215 return Error(E, "']' expected");
4216 Parser.Lex(); // Eat right bracket token.
4217
4218 // Don't worry about range checking the value here. That's handled by
4219 // the is*() predicates.
4220 Operands.push_back(ARMOperand::CreateMem(BaseRegNum, 0, 0,
4221 ARM_AM::no_shift, 0, Align,
4222 false, S, E));
4223
4224 // If there's a pre-indexing writeback marker, '!', just add it as a token
4225 // operand.
4226 if (Parser.getTok().is(AsmToken::Exclaim)) {
4227 Operands.push_back(ARMOperand::CreateToken("!",Parser.getTok().getLoc()));
4228 Parser.Lex(); // Eat the '!'.
4229 }
4230
4231 return false;
4232 }
4233
4234 // If we have a '#', it's an immediate offset, else assume it's a register
Jim Grosbach6cb4b082011-11-15 22:14:41 +00004235 // offset. Be friendly and also accept a plain integer (without a leading
4236 // hash) for gas compatibility.
4237 if (Parser.getTok().is(AsmToken::Hash) ||
Jim Grosbach8a12e3b2011-12-09 22:25:03 +00004238 Parser.getTok().is(AsmToken::Dollar) ||
Jim Grosbach6cb4b082011-11-15 22:14:41 +00004239 Parser.getTok().is(AsmToken::Integer)) {
Jim Grosbach8a12e3b2011-12-09 22:25:03 +00004240 if (Parser.getTok().isNot(AsmToken::Integer))
Jim Grosbach6cb4b082011-11-15 22:14:41 +00004241 Parser.Lex(); // Eat the '#'.
Jim Grosbach7ce05792011-08-03 23:50:40 +00004242 E = Parser.getTok().getLoc();
Daniel Dunbar05d8b712011-01-18 05:34:24 +00004243
Owen Anderson0da10cf2011-08-29 19:36:44 +00004244 bool isNegative = getParser().getTok().is(AsmToken::Minus);
Jim Grosbach7ce05792011-08-03 23:50:40 +00004245 const MCExpr *Offset;
Kevin Enderby9c41fa82009-10-30 22:55:57 +00004246 if (getParser().ParseExpression(Offset))
4247 return true;
Jim Grosbach7ce05792011-08-03 23:50:40 +00004248
4249 // The expression has to be a constant. Memory references with relocations
4250 // don't come through here, as they use the <label> forms of the relevant
4251 // instructions.
4252 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Offset);
4253 if (!CE)
4254 return Error (E, "constant expression expected");
4255
Owen Anderson0da10cf2011-08-29 19:36:44 +00004256 // If the constant was #-0, represent it as INT32_MIN.
4257 int32_t Val = CE->getValue();
4258 if (isNegative && Val == 0)
4259 CE = MCConstantExpr::Create(INT32_MIN, getContext());
4260
Jim Grosbach7ce05792011-08-03 23:50:40 +00004261 // Now we should have the closing ']'
4262 E = Parser.getTok().getLoc();
4263 if (Parser.getTok().isNot(AsmToken::RBrac))
4264 return Error(E, "']' expected");
4265 Parser.Lex(); // Eat right bracket token.
4266
4267 // Don't worry about range checking the value here. That's handled by
4268 // the is*() predicates.
4269 Operands.push_back(ARMOperand::CreateMem(BaseRegNum, CE, 0,
Jim Grosbach57dcb852011-10-11 17:29:55 +00004270 ARM_AM::no_shift, 0, 0,
4271 false, S, E));
Jim Grosbach7ce05792011-08-03 23:50:40 +00004272
4273 // If there's a pre-indexing writeback marker, '!', just add it as a token
4274 // operand.
4275 if (Parser.getTok().is(AsmToken::Exclaim)) {
4276 Operands.push_back(ARMOperand::CreateToken("!",Parser.getTok().getLoc()));
4277 Parser.Lex(); // Eat the '!'.
4278 }
4279
4280 return false;
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00004281 }
Jim Grosbach7ce05792011-08-03 23:50:40 +00004282
4283 // The register offset is optionally preceded by a '+' or '-'
4284 bool isNegative = false;
4285 if (Parser.getTok().is(AsmToken::Minus)) {
4286 isNegative = true;
4287 Parser.Lex(); // Eat the '-'.
4288 } else if (Parser.getTok().is(AsmToken::Plus)) {
4289 // Nothing to do.
4290 Parser.Lex(); // Eat the '+'.
4291 }
4292
4293 E = Parser.getTok().getLoc();
4294 int OffsetRegNum = tryParseRegister();
4295 if (OffsetRegNum == -1)
4296 return Error(E, "register expected");
4297
4298 // If there's a shift operator, handle it.
4299 ARM_AM::ShiftOpc ShiftType = ARM_AM::no_shift;
Jim Grosbach0d6fac32011-08-05 22:03:36 +00004300 unsigned ShiftImm = 0;
Jim Grosbach7ce05792011-08-03 23:50:40 +00004301 if (Parser.getTok().is(AsmToken::Comma)) {
4302 Parser.Lex(); // Eat the ','.
Jim Grosbach0d6fac32011-08-05 22:03:36 +00004303 if (parseMemRegOffsetShift(ShiftType, ShiftImm))
Jim Grosbach7ce05792011-08-03 23:50:40 +00004304 return true;
4305 }
4306
4307 // Now we should have the closing ']'
4308 E = Parser.getTok().getLoc();
4309 if (Parser.getTok().isNot(AsmToken::RBrac))
4310 return Error(E, "']' expected");
4311 Parser.Lex(); // Eat right bracket token.
4312
4313 Operands.push_back(ARMOperand::CreateMem(BaseRegNum, 0, OffsetRegNum,
Jim Grosbach57dcb852011-10-11 17:29:55 +00004314 ShiftType, ShiftImm, 0, isNegative,
Jim Grosbach7ce05792011-08-03 23:50:40 +00004315 S, E));
4316
Jim Grosbachf4fa3d62011-08-05 21:28:30 +00004317 // If there's a pre-indexing writeback marker, '!', just add it as a token
4318 // operand.
4319 if (Parser.getTok().is(AsmToken::Exclaim)) {
4320 Operands.push_back(ARMOperand::CreateToken("!",Parser.getTok().getLoc()));
4321 Parser.Lex(); // Eat the '!'.
4322 }
Jim Grosbach7ce05792011-08-03 23:50:40 +00004323
Kevin Enderby9c41fa82009-10-30 22:55:57 +00004324 return false;
4325}
4326
Jim Grosbach7ce05792011-08-03 23:50:40 +00004327/// parseMemRegOffsetShift - one of these two:
Kevin Enderby9c41fa82009-10-30 22:55:57 +00004328/// ( lsl | lsr | asr | ror ) , # shift_amount
4329/// rrx
Jim Grosbach7ce05792011-08-03 23:50:40 +00004330/// return true if it parses a shift otherwise it returns false.
4331bool ARMAsmParser::parseMemRegOffsetShift(ARM_AM::ShiftOpc &St,
4332 unsigned &Amount) {
4333 SMLoc Loc = Parser.getTok().getLoc();
Sean Callanan18b83232010-01-19 21:44:56 +00004334 const AsmToken &Tok = Parser.getTok();
Kevin Enderby9c41fa82009-10-30 22:55:57 +00004335 if (Tok.isNot(AsmToken::Identifier))
4336 return true;
Benjamin Kramer38e59892010-07-14 22:38:02 +00004337 StringRef ShiftName = Tok.getString();
Jim Grosbachaf4edea2011-12-07 23:40:58 +00004338 if (ShiftName == "lsl" || ShiftName == "LSL" ||
4339 ShiftName == "asl" || ShiftName == "ASL")
Owen Anderson00828302011-03-18 22:50:18 +00004340 St = ARM_AM::lsl;
Kevin Enderby9c41fa82009-10-30 22:55:57 +00004341 else if (ShiftName == "lsr" || ShiftName == "LSR")
Owen Anderson00828302011-03-18 22:50:18 +00004342 St = ARM_AM::lsr;
Kevin Enderby9c41fa82009-10-30 22:55:57 +00004343 else if (ShiftName == "asr" || ShiftName == "ASR")
Owen Anderson00828302011-03-18 22:50:18 +00004344 St = ARM_AM::asr;
Kevin Enderby9c41fa82009-10-30 22:55:57 +00004345 else if (ShiftName == "ror" || ShiftName == "ROR")
Owen Anderson00828302011-03-18 22:50:18 +00004346 St = ARM_AM::ror;
Kevin Enderby9c41fa82009-10-30 22:55:57 +00004347 else if (ShiftName == "rrx" || ShiftName == "RRX")
Owen Anderson00828302011-03-18 22:50:18 +00004348 St = ARM_AM::rrx;
Kevin Enderby9c41fa82009-10-30 22:55:57 +00004349 else
Jim Grosbach7ce05792011-08-03 23:50:40 +00004350 return Error(Loc, "illegal shift operator");
Sean Callananb9a25b72010-01-19 20:27:46 +00004351 Parser.Lex(); // Eat shift type token.
Kevin Enderby9c41fa82009-10-30 22:55:57 +00004352
Jim Grosbach7ce05792011-08-03 23:50:40 +00004353 // rrx stands alone.
4354 Amount = 0;
4355 if (St != ARM_AM::rrx) {
4356 Loc = Parser.getTok().getLoc();
4357 // A '#' and a shift amount.
4358 const AsmToken &HashTok = Parser.getTok();
Jim Grosbach8a12e3b2011-12-09 22:25:03 +00004359 if (HashTok.isNot(AsmToken::Hash) &&
4360 HashTok.isNot(AsmToken::Dollar))
Jim Grosbach7ce05792011-08-03 23:50:40 +00004361 return Error(HashTok.getLoc(), "'#' expected");
4362 Parser.Lex(); // Eat hash token.
Kevin Enderby9c41fa82009-10-30 22:55:57 +00004363
Jim Grosbach7ce05792011-08-03 23:50:40 +00004364 const MCExpr *Expr;
4365 if (getParser().ParseExpression(Expr))
4366 return true;
4367 // Range check the immediate.
4368 // lsl, ror: 0 <= imm <= 31
4369 // lsr, asr: 0 <= imm <= 32
4370 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr);
4371 if (!CE)
4372 return Error(Loc, "shift amount must be an immediate");
4373 int64_t Imm = CE->getValue();
4374 if (Imm < 0 ||
4375 ((St == ARM_AM::lsl || St == ARM_AM::ror) && Imm > 31) ||
4376 ((St == ARM_AM::lsr || St == ARM_AM::asr) && Imm > 32))
4377 return Error(Loc, "immediate shift value out of range");
4378 Amount = Imm;
4379 }
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00004380
4381 return false;
4382}
4383
Jim Grosbach9d390362011-10-03 23:38:36 +00004384/// parseFPImm - A floating point immediate expression operand.
4385ARMAsmParser::OperandMatchResultTy ARMAsmParser::
4386parseFPImm(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Jim Grosbach51222d12012-01-20 18:09:51 +00004387 // Anything that can accept a floating point constant as an operand
4388 // needs to go through here, as the regular ParseExpression is
4389 // integer only.
4390 //
4391 // This routine still creates a generic Immediate operand, containing
4392 // a bitcast of the 64-bit floating point value. The various operands
4393 // that accept floats can check whether the value is valid for them
4394 // via the standard is*() predicates.
4395
Jim Grosbach9d390362011-10-03 23:38:36 +00004396 SMLoc S = Parser.getTok().getLoc();
4397
Jim Grosbach8a12e3b2011-12-09 22:25:03 +00004398 if (Parser.getTok().isNot(AsmToken::Hash) &&
4399 Parser.getTok().isNot(AsmToken::Dollar))
Jim Grosbach9d390362011-10-03 23:38:36 +00004400 return MatchOperand_NoMatch;
Jim Grosbach0e387b22011-10-17 22:26:03 +00004401
4402 // Disambiguate the VMOV forms that can accept an FP immediate.
4403 // vmov.f32 <sreg>, #imm
4404 // vmov.f64 <dreg>, #imm
4405 // vmov.f32 <dreg>, #imm @ vector f32x2
4406 // vmov.f32 <qreg>, #imm @ vector f32x4
4407 //
4408 // There are also the NEON VMOV instructions which expect an
4409 // integer constant. Make sure we don't try to parse an FPImm
4410 // for these:
4411 // vmov.i{8|16|32|64} <dreg|qreg>, #imm
4412 ARMOperand *TyOp = static_cast<ARMOperand*>(Operands[2]);
4413 if (!TyOp->isToken() || (TyOp->getToken() != ".f32" &&
4414 TyOp->getToken() != ".f64"))
4415 return MatchOperand_NoMatch;
4416
Jim Grosbach9d390362011-10-03 23:38:36 +00004417 Parser.Lex(); // Eat the '#'.
4418
4419 // Handle negation, as that still comes through as a separate token.
4420 bool isNegative = false;
4421 if (Parser.getTok().is(AsmToken::Minus)) {
4422 isNegative = true;
4423 Parser.Lex();
4424 }
4425 const AsmToken &Tok = Parser.getTok();
Jim Grosbachae69f702012-01-19 02:47:30 +00004426 SMLoc Loc = Tok.getLoc();
Jim Grosbach9d390362011-10-03 23:38:36 +00004427 if (Tok.is(AsmToken::Real)) {
Jim Grosbach51222d12012-01-20 18:09:51 +00004428 APFloat RealVal(APFloat::IEEEsingle, Tok.getString());
Jim Grosbach9d390362011-10-03 23:38:36 +00004429 uint64_t IntVal = RealVal.bitcastToAPInt().getZExtValue();
4430 // If we had a '-' in front, toggle the sign bit.
Jim Grosbach51222d12012-01-20 18:09:51 +00004431 IntVal ^= (uint64_t)isNegative << 31;
Jim Grosbach9d390362011-10-03 23:38:36 +00004432 Parser.Lex(); // Eat the token.
Jim Grosbach51222d12012-01-20 18:09:51 +00004433 Operands.push_back(ARMOperand::CreateImm(
4434 MCConstantExpr::Create(IntVal, getContext()),
4435 S, Parser.getTok().getLoc()));
Jim Grosbach9d390362011-10-03 23:38:36 +00004436 return MatchOperand_Success;
4437 }
Jim Grosbach51222d12012-01-20 18:09:51 +00004438 // Also handle plain integers. Instructions which allow floating point
4439 // immediates also allow a raw encoded 8-bit value.
Jim Grosbach9d390362011-10-03 23:38:36 +00004440 if (Tok.is(AsmToken::Integer)) {
4441 int64_t Val = Tok.getIntVal();
4442 Parser.Lex(); // Eat the token.
4443 if (Val > 255 || Val < 0) {
Jim Grosbachae69f702012-01-19 02:47:30 +00004444 Error(Loc, "encoded floating point value out of range");
Jim Grosbach9d390362011-10-03 23:38:36 +00004445 return MatchOperand_ParseFail;
4446 }
Jim Grosbach51222d12012-01-20 18:09:51 +00004447 double RealVal = ARM_AM::getFPImmFloat(Val);
4448 Val = APFloat(APFloat::IEEEdouble, RealVal).bitcastToAPInt().getZExtValue();
4449 Operands.push_back(ARMOperand::CreateImm(
4450 MCConstantExpr::Create(Val, getContext()), S,
4451 Parser.getTok().getLoc()));
Jim Grosbach9d390362011-10-03 23:38:36 +00004452 return MatchOperand_Success;
4453 }
4454
Jim Grosbachae69f702012-01-19 02:47:30 +00004455 Error(Loc, "invalid floating point immediate");
Jim Grosbach9d390362011-10-03 23:38:36 +00004456 return MatchOperand_ParseFail;
4457}
Jim Grosbach51222d12012-01-20 18:09:51 +00004458
Kevin Enderby9c41fa82009-10-30 22:55:57 +00004459/// Parse a arm instruction operand. For now this parses the operand regardless
4460/// of the mnemonic.
Jim Grosbach1355cf12011-07-26 17:10:22 +00004461bool ARMAsmParser::parseOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands,
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +00004462 StringRef Mnemonic) {
Sean Callanan76264762010-04-02 22:27:05 +00004463 SMLoc S, E;
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +00004464
4465 // Check if the current operand has a custom associated parser, if so, try to
4466 // custom parse the operand, or fallback to the general approach.
Jim Grosbachf922c472011-02-12 01:34:40 +00004467 OperandMatchResultTy ResTy = MatchOperandParserImpl(Operands, Mnemonic);
4468 if (ResTy == MatchOperand_Success)
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +00004469 return false;
Jim Grosbachf922c472011-02-12 01:34:40 +00004470 // If there wasn't a custom match, try the generic matcher below. Otherwise,
4471 // there was a match, but an error occurred, in which case, just return that
4472 // the operand parsing failed.
4473 if (ResTy == MatchOperand_ParseFail)
4474 return true;
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +00004475
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00004476 switch (getLexer().getKind()) {
Bill Wendling146018f2010-11-06 21:42:12 +00004477 default:
4478 Error(Parser.getTok().getLoc(), "unexpected token in operand");
Bill Wendling50d0f582010-11-18 23:43:05 +00004479 return true;
Jim Grosbach19906722011-07-13 18:49:30 +00004480 case AsmToken::Identifier: {
Jim Grosbach1355cf12011-07-26 17:10:22 +00004481 if (!tryParseRegisterWithWriteBack(Operands))
Bill Wendling50d0f582010-11-18 23:43:05 +00004482 return false;
Jim Grosbach0d87ec22011-07-26 20:41:24 +00004483 int Res = tryParseShiftRegister(Operands);
Jim Grosbach19906722011-07-13 18:49:30 +00004484 if (Res == 0) // success
Owen Anderson00828302011-03-18 22:50:18 +00004485 return false;
Jim Grosbach19906722011-07-13 18:49:30 +00004486 else if (Res == -1) // irrecoverable error
4487 return true;
Jim Grosbach3cbe43f2011-12-20 22:26:38 +00004488 // If this is VMRS, check for the apsr_nzcv operand.
Jim Grosbachb84ad4a2012-03-15 21:34:14 +00004489 if (Mnemonic == "vmrs" &&
4490 Parser.getTok().getString().equals_lower("apsr_nzcv")) {
Jim Grosbach5cd5ac62011-10-03 21:12:43 +00004491 S = Parser.getTok().getLoc();
4492 Parser.Lex();
Jim Grosbachb84ad4a2012-03-15 21:34:14 +00004493 Operands.push_back(ARMOperand::CreateToken("APSR_nzcv", S));
Jim Grosbach5cd5ac62011-10-03 21:12:43 +00004494 return false;
4495 }
Owen Andersone4e5e2a2011-01-13 21:46:02 +00004496
4497 // Fall though for the Identifier case that is not a register or a
4498 // special name.
Jim Grosbach19906722011-07-13 18:49:30 +00004499 }
Jim Grosbach758a5192011-10-26 21:14:08 +00004500 case AsmToken::LParen: // parenthesized expressions like (_strcmp-4)
Kevin Enderby67b212e2011-01-13 20:32:36 +00004501 case AsmToken::Integer: // things like 1f and 2b as a branch targets
Jim Grosbach6284afc2011-11-01 22:38:31 +00004502 case AsmToken::String: // quoted label names.
Kevin Enderby67b212e2011-01-13 20:32:36 +00004503 case AsmToken::Dot: { // . as a branch target
Kevin Enderby515d5092009-10-15 20:48:48 +00004504 // This was not a register so parse other operands that start with an
4505 // identifier (like labels) as expressions and create them as immediates.
4506 const MCExpr *IdVal;
Sean Callanan76264762010-04-02 22:27:05 +00004507 S = Parser.getTok().getLoc();
Kevin Enderby515d5092009-10-15 20:48:48 +00004508 if (getParser().ParseExpression(IdVal))
Bill Wendling50d0f582010-11-18 23:43:05 +00004509 return true;
Sean Callanan76264762010-04-02 22:27:05 +00004510 E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
Bill Wendling50d0f582010-11-18 23:43:05 +00004511 Operands.push_back(ARMOperand::CreateImm(IdVal, S, E));
4512 return false;
4513 }
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00004514 case AsmToken::LBrac:
Jim Grosbach1355cf12011-07-26 17:10:22 +00004515 return parseMemory(Operands);
Kevin Enderbyd7894f12009-10-09 21:12:28 +00004516 case AsmToken::LCurly:
Jim Grosbach1355cf12011-07-26 17:10:22 +00004517 return parseRegisterList(Operands);
Jim Grosbach8a12e3b2011-12-09 22:25:03 +00004518 case AsmToken::Dollar:
Owen Anderson63553c72011-08-29 17:17:09 +00004519 case AsmToken::Hash: {
Kevin Enderby079469f2009-10-13 23:33:38 +00004520 // #42 -> immediate.
4521 // TODO: ":lower16:" and ":upper16:" modifiers after # before immediate
Sean Callanan76264762010-04-02 22:27:05 +00004522 S = Parser.getTok().getLoc();
Sean Callananb9a25b72010-01-19 20:27:46 +00004523 Parser.Lex();
Owen Anderson63553c72011-08-29 17:17:09 +00004524 bool isNegative = Parser.getTok().is(AsmToken::Minus);
Kevin Enderby515d5092009-10-15 20:48:48 +00004525 const MCExpr *ImmVal;
4526 if (getParser().ParseExpression(ImmVal))
Bill Wendling50d0f582010-11-18 23:43:05 +00004527 return true;
Owen Anderson63553c72011-08-29 17:17:09 +00004528 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ImmVal);
Jim Grosbached6a0c52011-11-01 22:37:37 +00004529 if (CE) {
4530 int32_t Val = CE->getValue();
4531 if (isNegative && Val == 0)
4532 ImmVal = MCConstantExpr::Create(INT32_MIN, getContext());
Owen Anderson63553c72011-08-29 17:17:09 +00004533 }
Sean Callanan76264762010-04-02 22:27:05 +00004534 E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
Bill Wendling50d0f582010-11-18 23:43:05 +00004535 Operands.push_back(ARMOperand::CreateImm(ImmVal, S, E));
4536 return false;
Owen Anderson63553c72011-08-29 17:17:09 +00004537 }
Jason W Kim9081b4b2011-01-11 23:53:41 +00004538 case AsmToken::Colon: {
4539 // ":lower16:" and ":upper16:" expression prefixes
Evan Cheng75972122011-01-13 07:58:56 +00004540 // FIXME: Check it's an expression prefix,
4541 // e.g. (FOO - :lower16:BAR) isn't legal.
4542 ARMMCExpr::VariantKind RefKind;
Jim Grosbach1355cf12011-07-26 17:10:22 +00004543 if (parsePrefix(RefKind))
Jason W Kim9081b4b2011-01-11 23:53:41 +00004544 return true;
4545
Evan Cheng75972122011-01-13 07:58:56 +00004546 const MCExpr *SubExprVal;
4547 if (getParser().ParseExpression(SubExprVal))
Jason W Kim9081b4b2011-01-11 23:53:41 +00004548 return true;
4549
Evan Cheng75972122011-01-13 07:58:56 +00004550 const MCExpr *ExprVal = ARMMCExpr::Create(RefKind, SubExprVal,
4551 getContext());
Jason W Kim9081b4b2011-01-11 23:53:41 +00004552 E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
Evan Cheng75972122011-01-13 07:58:56 +00004553 Operands.push_back(ARMOperand::CreateImm(ExprVal, S, E));
Jason W Kim9081b4b2011-01-11 23:53:41 +00004554 return false;
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00004555 }
Jason W Kim9081b4b2011-01-11 23:53:41 +00004556 }
4557}
4558
Jim Grosbach1355cf12011-07-26 17:10:22 +00004559// parsePrefix - Parse ARM 16-bit relocations expression prefix, i.e.
Evan Cheng75972122011-01-13 07:58:56 +00004560// :lower16: and :upper16:.
Jim Grosbach1355cf12011-07-26 17:10:22 +00004561bool ARMAsmParser::parsePrefix(ARMMCExpr::VariantKind &RefKind) {
Evan Cheng75972122011-01-13 07:58:56 +00004562 RefKind = ARMMCExpr::VK_ARM_None;
Jason W Kim9081b4b2011-01-11 23:53:41 +00004563
4564 // :lower16: and :upper16: modifiers
Jason W Kim8a8696d2011-01-13 00:27:00 +00004565 assert(getLexer().is(AsmToken::Colon) && "expected a :");
Jason W Kim9081b4b2011-01-11 23:53:41 +00004566 Parser.Lex(); // Eat ':'
4567
4568 if (getLexer().isNot(AsmToken::Identifier)) {
4569 Error(Parser.getTok().getLoc(), "expected prefix identifier in operand");
4570 return true;
4571 }
4572
4573 StringRef IDVal = Parser.getTok().getIdentifier();
4574 if (IDVal == "lower16") {
Evan Cheng75972122011-01-13 07:58:56 +00004575 RefKind = ARMMCExpr::VK_ARM_LO16;
Jason W Kim9081b4b2011-01-11 23:53:41 +00004576 } else if (IDVal == "upper16") {
Evan Cheng75972122011-01-13 07:58:56 +00004577 RefKind = ARMMCExpr::VK_ARM_HI16;
Jason W Kim9081b4b2011-01-11 23:53:41 +00004578 } else {
4579 Error(Parser.getTok().getLoc(), "unexpected prefix in operand");
4580 return true;
4581 }
4582 Parser.Lex();
4583
4584 if (getLexer().isNot(AsmToken::Colon)) {
4585 Error(Parser.getTok().getLoc(), "unexpected token after prefix");
4586 return true;
4587 }
4588 Parser.Lex(); // Eat the last ':'
4589 return false;
4590}
4591
Daniel Dunbar352e1482011-01-11 15:59:50 +00004592/// \brief Given a mnemonic, split out possible predication code and carry
4593/// setting letters to form a canonical mnemonic and flags.
4594//
Daniel Dunbarbadbd2f2011-01-10 12:24:52 +00004595// FIXME: Would be nice to autogen this.
Jim Grosbach89df9962011-08-26 21:43:41 +00004596// FIXME: This is a bit of a maze of special cases.
Jim Grosbach1355cf12011-07-26 17:10:22 +00004597StringRef ARMAsmParser::splitMnemonic(StringRef Mnemonic,
Jim Grosbach5f160572011-07-19 20:10:31 +00004598 unsigned &PredicationCode,
4599 bool &CarrySetting,
Jim Grosbach89df9962011-08-26 21:43:41 +00004600 unsigned &ProcessorIMod,
4601 StringRef &ITMask) {
Daniel Dunbar352e1482011-01-11 15:59:50 +00004602 PredicationCode = ARMCC::AL;
4603 CarrySetting = false;
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00004604 ProcessorIMod = 0;
Daniel Dunbar352e1482011-01-11 15:59:50 +00004605
Daniel Dunbarbadbd2f2011-01-10 12:24:52 +00004606 // Ignore some mnemonics we know aren't predicated forms.
Daniel Dunbar352e1482011-01-11 15:59:50 +00004607 //
4608 // FIXME: Would be nice to autogen this.
Jim Grosbach5f160572011-07-19 20:10:31 +00004609 if ((Mnemonic == "movs" && isThumb()) ||
4610 Mnemonic == "teq" || Mnemonic == "vceq" || Mnemonic == "svc" ||
4611 Mnemonic == "mls" || Mnemonic == "smmls" || Mnemonic == "vcls" ||
4612 Mnemonic == "vmls" || Mnemonic == "vnmls" || Mnemonic == "vacge" ||
4613 Mnemonic == "vcge" || Mnemonic == "vclt" || Mnemonic == "vacgt" ||
4614 Mnemonic == "vcgt" || Mnemonic == "vcle" || Mnemonic == "smlal" ||
4615 Mnemonic == "umaal" || Mnemonic == "umlal" || Mnemonic == "vabal" ||
Jim Grosbach68490192011-12-19 19:43:50 +00004616 Mnemonic == "vmlal" || Mnemonic == "vpadal" || Mnemonic == "vqdmlal" ||
4617 Mnemonic == "fmuls")
Daniel Dunbar352e1482011-01-11 15:59:50 +00004618 return Mnemonic;
Daniel Dunbar5747b132010-08-11 06:37:16 +00004619
Jim Grosbach3f00e312011-07-11 17:09:57 +00004620 // First, split out any predication code. Ignore mnemonics we know aren't
4621 // predicated but do have a carry-set and so weren't caught above.
Jim Grosbachab40f4b2011-07-20 18:20:31 +00004622 if (Mnemonic != "adcs" && Mnemonic != "bics" && Mnemonic != "movs" &&
Jim Grosbach71725a02011-07-27 21:58:11 +00004623 Mnemonic != "muls" && Mnemonic != "smlals" && Mnemonic != "smulls" &&
Jim Grosbach04d55f12011-08-22 23:55:58 +00004624 Mnemonic != "umlals" && Mnemonic != "umulls" && Mnemonic != "lsls" &&
Jim Grosbach2f25d9b2011-09-01 18:22:13 +00004625 Mnemonic != "sbcs" && Mnemonic != "rscs") {
Jim Grosbach3f00e312011-07-11 17:09:57 +00004626 unsigned CC = StringSwitch<unsigned>(Mnemonic.substr(Mnemonic.size()-2))
4627 .Case("eq", ARMCC::EQ)
4628 .Case("ne", ARMCC::NE)
4629 .Case("hs", ARMCC::HS)
4630 .Case("cs", ARMCC::HS)
4631 .Case("lo", ARMCC::LO)
4632 .Case("cc", ARMCC::LO)
4633 .Case("mi", ARMCC::MI)
4634 .Case("pl", ARMCC::PL)
4635 .Case("vs", ARMCC::VS)
4636 .Case("vc", ARMCC::VC)
4637 .Case("hi", ARMCC::HI)
4638 .Case("ls", ARMCC::LS)
4639 .Case("ge", ARMCC::GE)
4640 .Case("lt", ARMCC::LT)
4641 .Case("gt", ARMCC::GT)
4642 .Case("le", ARMCC::LE)
4643 .Case("al", ARMCC::AL)
4644 .Default(~0U);
4645 if (CC != ~0U) {
4646 Mnemonic = Mnemonic.slice(0, Mnemonic.size() - 2);
4647 PredicationCode = CC;
4648 }
Bill Wendling52925b62010-10-29 23:50:21 +00004649 }
Daniel Dunbar345a9a62010-08-11 06:37:20 +00004650
Daniel Dunbar352e1482011-01-11 15:59:50 +00004651 // Next, determine if we have a carry setting bit. We explicitly ignore all
4652 // the instructions we know end in 's'.
4653 if (Mnemonic.endswith("s") &&
Jim Grosbach00f5d982011-08-17 22:49:09 +00004654 !(Mnemonic == "cps" || Mnemonic == "mls" ||
Jim Grosbach5f160572011-07-19 20:10:31 +00004655 Mnemonic == "mrs" || Mnemonic == "smmls" || Mnemonic == "vabs" ||
4656 Mnemonic == "vcls" || Mnemonic == "vmls" || Mnemonic == "vmrs" ||
4657 Mnemonic == "vnmls" || Mnemonic == "vqabs" || Mnemonic == "vrecps" ||
Jim Grosbach67ca1ad2011-12-08 00:49:29 +00004658 Mnemonic == "vrsqrts" || Mnemonic == "srs" || Mnemonic == "flds" ||
Jim Grosbach48171e72011-12-10 00:01:02 +00004659 Mnemonic == "fmrs" || Mnemonic == "fsqrts" || Mnemonic == "fsubs" ||
Jim Grosbach9c397892011-12-19 19:02:41 +00004660 Mnemonic == "fsts" || Mnemonic == "fcpys" || Mnemonic == "fdivs" ||
Jim Grosbach6357cae2012-03-15 20:48:18 +00004661 Mnemonic == "fmuls" || Mnemonic == "fcmps" || Mnemonic == "fcmpzs" ||
Jim Grosbache1cf5902011-07-29 20:26:09 +00004662 (Mnemonic == "movs" && isThumb()))) {
Daniel Dunbar352e1482011-01-11 15:59:50 +00004663 Mnemonic = Mnemonic.slice(0, Mnemonic.size() - 1);
4664 CarrySetting = true;
4665 }
4666
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00004667 // The "cps" instruction can have a interrupt mode operand which is glued into
4668 // the mnemonic. Check if this is the case, split it and parse the imod op
4669 if (Mnemonic.startswith("cps")) {
4670 // Split out any imod code.
4671 unsigned IMod =
4672 StringSwitch<unsigned>(Mnemonic.substr(Mnemonic.size()-2, 2))
4673 .Case("ie", ARM_PROC::IE)
4674 .Case("id", ARM_PROC::ID)
4675 .Default(~0U);
4676 if (IMod != ~0U) {
4677 Mnemonic = Mnemonic.slice(0, Mnemonic.size()-2);
4678 ProcessorIMod = IMod;
4679 }
4680 }
4681
Jim Grosbach89df9962011-08-26 21:43:41 +00004682 // The "it" instruction has the condition mask on the end of the mnemonic.
4683 if (Mnemonic.startswith("it")) {
4684 ITMask = Mnemonic.slice(2, Mnemonic.size());
4685 Mnemonic = Mnemonic.slice(0, 2);
4686 }
4687
Daniel Dunbar352e1482011-01-11 15:59:50 +00004688 return Mnemonic;
4689}
Daniel Dunbar3771dd02011-01-11 15:59:53 +00004690
4691/// \brief Given a canonical mnemonic, determine if the instruction ever allows
4692/// inclusion of carry set or predication code operands.
4693//
4694// FIXME: It would be nice to autogen this.
Bruno Cardoso Lopesfdcee772011-01-18 20:55:11 +00004695void ARMAsmParser::
Jim Grosbach1355cf12011-07-26 17:10:22 +00004696getMnemonicAcceptInfo(StringRef Mnemonic, bool &CanAcceptCarrySet,
Bruno Cardoso Lopesfdcee772011-01-18 20:55:11 +00004697 bool &CanAcceptPredicationCode) {
Daniel Dunbareb9f3f92011-01-11 19:06:29 +00004698 if (Mnemonic == "and" || Mnemonic == "lsl" || Mnemonic == "lsr" ||
4699 Mnemonic == "rrx" || Mnemonic == "ror" || Mnemonic == "sub" ||
Jim Grosbach3443ed52011-09-16 18:05:48 +00004700 Mnemonic == "add" || Mnemonic == "adc" ||
Daniel Dunbareb9f3f92011-01-11 19:06:29 +00004701 Mnemonic == "mul" || Mnemonic == "bic" || Mnemonic == "asr" ||
Jim Grosbachd5d0e812011-09-19 23:31:02 +00004702 Mnemonic == "orr" || Mnemonic == "mvn" ||
Daniel Dunbareb9f3f92011-01-11 19:06:29 +00004703 Mnemonic == "rsb" || Mnemonic == "rsc" || Mnemonic == "orn" ||
Jim Grosbachd5d0e812011-09-19 23:31:02 +00004704 Mnemonic == "sbc" || Mnemonic == "eor" || Mnemonic == "neg" ||
Jim Grosbach3443ed52011-09-16 18:05:48 +00004705 (!isThumb() && (Mnemonic == "smull" || Mnemonic == "mov" ||
Jim Grosbachd5d0e812011-09-19 23:31:02 +00004706 Mnemonic == "mla" || Mnemonic == "smlal" ||
4707 Mnemonic == "umlal" || Mnemonic == "umull"))) {
Daniel Dunbareb9f3f92011-01-11 19:06:29 +00004708 CanAcceptCarrySet = true;
Jim Grosbachfb9cffe2011-09-16 16:39:25 +00004709 } else
Daniel Dunbareb9f3f92011-01-11 19:06:29 +00004710 CanAcceptCarrySet = false;
Daniel Dunbar3771dd02011-01-11 15:59:53 +00004711
Daniel Dunbareb9f3f92011-01-11 19:06:29 +00004712 if (Mnemonic == "cbnz" || Mnemonic == "setend" || Mnemonic == "dmb" ||
4713 Mnemonic == "cps" || Mnemonic == "mcr2" || Mnemonic == "it" ||
4714 Mnemonic == "mcrr2" || Mnemonic == "cbz" || Mnemonic == "cdp2" ||
4715 Mnemonic == "trap" || Mnemonic == "mrc2" || Mnemonic == "mrrc2" ||
Jim Grosbachad2dad92011-09-06 20:27:04 +00004716 Mnemonic == "dsb" || Mnemonic == "isb" || Mnemonic == "setend" ||
4717 (Mnemonic == "clrex" && !isThumb()) ||
Jim Grosbach0780b632011-08-19 23:24:36 +00004718 (Mnemonic == "nop" && isThumbOne()) ||
Jim Grosbach2bd01182011-10-11 21:55:36 +00004719 ((Mnemonic == "pld" || Mnemonic == "pli" || Mnemonic == "pldw" ||
4720 Mnemonic == "ldc2" || Mnemonic == "ldc2l" ||
4721 Mnemonic == "stc2" || Mnemonic == "stc2l") && !isThumb()) ||
Jim Grosbach4af54a42011-08-26 22:21:51 +00004722 ((Mnemonic.startswith("rfe") || Mnemonic.startswith("srs")) &&
4723 !isThumb()) ||
Jim Grosbach1ad60c22011-09-10 00:15:36 +00004724 Mnemonic.startswith("cps") || (Mnemonic == "movs" && isThumbOne())) {
Daniel Dunbar3771dd02011-01-11 15:59:53 +00004725 CanAcceptPredicationCode = false;
Jim Grosbachfb9cffe2011-09-16 16:39:25 +00004726 } else
Daniel Dunbar3771dd02011-01-11 15:59:53 +00004727 CanAcceptPredicationCode = true;
Bruno Cardoso Lopesfa5bd272011-01-20 16:35:57 +00004728
Jim Grosbachfb9cffe2011-09-16 16:39:25 +00004729 if (isThumb()) {
Bruno Cardoso Lopesfa5bd272011-01-20 16:35:57 +00004730 if (Mnemonic == "bkpt" || Mnemonic == "mcr" || Mnemonic == "mcrr" ||
Jim Grosbach63b46fa2011-06-30 22:10:46 +00004731 Mnemonic == "mrc" || Mnemonic == "mrrc" || Mnemonic == "cdp")
Bruno Cardoso Lopesfa5bd272011-01-20 16:35:57 +00004732 CanAcceptPredicationCode = false;
Jim Grosbachfb9cffe2011-09-16 16:39:25 +00004733 }
Daniel Dunbarbadbd2f2011-01-10 12:24:52 +00004734}
4735
Jim Grosbachd54b4e62011-08-16 21:12:37 +00004736bool ARMAsmParser::shouldOmitCCOutOperand(StringRef Mnemonic,
4737 SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Jim Grosbach20ed2e72011-09-01 00:28:52 +00004738 // FIXME: This is all horribly hacky. We really need a better way to deal
4739 // with optional operands like this in the matcher table.
Jim Grosbachd54b4e62011-08-16 21:12:37 +00004740
4741 // The 'mov' mnemonic is special. One variant has a cc_out operand, while
4742 // another does not. Specifically, the MOVW instruction does not. So we
4743 // special case it here and remove the defaulted (non-setting) cc_out
4744 // operand if that's the instruction we're trying to match.
4745 //
4746 // We do this as post-processing of the explicit operands rather than just
4747 // conditionally adding the cc_out in the first place because we need
4748 // to check the type of the parsed immediate operand.
Owen Anderson8adf6202011-09-14 22:46:14 +00004749 if (Mnemonic == "mov" && Operands.size() > 4 && !isThumb() &&
Jim Grosbachd54b4e62011-08-16 21:12:37 +00004750 !static_cast<ARMOperand*>(Operands[4])->isARMSOImm() &&
4751 static_cast<ARMOperand*>(Operands[4])->isImm0_65535Expr() &&
4752 static_cast<ARMOperand*>(Operands[1])->getReg() == 0)
4753 return true;
Jim Grosbach3912b732011-08-16 21:34:08 +00004754
4755 // Register-register 'add' for thumb does not have a cc_out operand
4756 // when there are only two register operands.
4757 if (isThumb() && Mnemonic == "add" && Operands.size() == 5 &&
4758 static_cast<ARMOperand*>(Operands[3])->isReg() &&
4759 static_cast<ARMOperand*>(Operands[4])->isReg() &&
4760 static_cast<ARMOperand*>(Operands[1])->getReg() == 0)
4761 return true;
Jim Grosbach72f39f82011-08-24 21:22:15 +00004762 // Register-register 'add' for thumb does not have a cc_out operand
Jim Grosbach20ed2e72011-09-01 00:28:52 +00004763 // when it's an ADD Rdm, SP, {Rdm|#imm0_255} instruction. We do
4764 // have to check the immediate range here since Thumb2 has a variant
4765 // that can handle a different range and has a cc_out operand.
Jim Grosbachf67e8552011-09-16 22:58:42 +00004766 if (((isThumb() && Mnemonic == "add") ||
4767 (isThumbTwo() && Mnemonic == "sub")) &&
4768 Operands.size() == 6 &&
Jim Grosbach72f39f82011-08-24 21:22:15 +00004769 static_cast<ARMOperand*>(Operands[3])->isReg() &&
4770 static_cast<ARMOperand*>(Operands[4])->isReg() &&
4771 static_cast<ARMOperand*>(Operands[4])->getReg() == ARM::SP &&
Jim Grosbach20ed2e72011-09-01 00:28:52 +00004772 static_cast<ARMOperand*>(Operands[1])->getReg() == 0 &&
Jim Grosbacha23ecc22012-04-10 17:31:55 +00004773 ((Mnemonic == "add" &&static_cast<ARMOperand*>(Operands[5])->isReg()) ||
Jim Grosbach20ed2e72011-09-01 00:28:52 +00004774 static_cast<ARMOperand*>(Operands[5])->isImm0_1020s4()))
Jim Grosbach72f39f82011-08-24 21:22:15 +00004775 return true;
Jim Grosbachf67e8552011-09-16 22:58:42 +00004776 // For Thumb2, add/sub immediate does not have a cc_out operand for the
4777 // imm0_4095 variant. That's the least-preferred variant when
Jim Grosbach20ed2e72011-09-01 00:28:52 +00004778 // selecting via the generic "add" mnemonic, so to know that we
4779 // should remove the cc_out operand, we have to explicitly check that
4780 // it's not one of the other variants. Ugh.
Jim Grosbachf67e8552011-09-16 22:58:42 +00004781 if (isThumbTwo() && (Mnemonic == "add" || Mnemonic == "sub") &&
4782 Operands.size() == 6 &&
Jim Grosbach20ed2e72011-09-01 00:28:52 +00004783 static_cast<ARMOperand*>(Operands[3])->isReg() &&
4784 static_cast<ARMOperand*>(Operands[4])->isReg() &&
4785 static_cast<ARMOperand*>(Operands[5])->isImm()) {
4786 // Nest conditions rather than one big 'if' statement for readability.
4787 //
4788 // If either register is a high reg, it's either one of the SP
4789 // variants (handled above) or a 32-bit encoding, so we just
Jim Grosbach12a88632012-01-21 00:07:56 +00004790 // check against T3. If the second register is the PC, this is an
4791 // alternate form of ADR, which uses encoding T4, so check for that too.
Jim Grosbach20ed2e72011-09-01 00:28:52 +00004792 if ((!isARMLowRegister(static_cast<ARMOperand*>(Operands[3])->getReg()) ||
4793 !isARMLowRegister(static_cast<ARMOperand*>(Operands[4])->getReg())) &&
Jim Grosbach12a88632012-01-21 00:07:56 +00004794 static_cast<ARMOperand*>(Operands[4])->getReg() != ARM::PC &&
Jim Grosbach20ed2e72011-09-01 00:28:52 +00004795 static_cast<ARMOperand*>(Operands[5])->isT2SOImm())
4796 return false;
4797 // If both registers are low, we're in an IT block, and the immediate is
4798 // in range, we should use encoding T1 instead, which has a cc_out.
4799 if (inITBlock() &&
Jim Grosbach64944f42011-09-14 21:00:40 +00004800 isARMLowRegister(static_cast<ARMOperand*>(Operands[3])->getReg()) &&
Jim Grosbach20ed2e72011-09-01 00:28:52 +00004801 isARMLowRegister(static_cast<ARMOperand*>(Operands[4])->getReg()) &&
4802 static_cast<ARMOperand*>(Operands[5])->isImm0_7())
4803 return false;
4804
4805 // Otherwise, we use encoding T4, which does not have a cc_out
4806 // operand.
4807 return true;
4808 }
4809
Jim Grosbach64944f42011-09-14 21:00:40 +00004810 // The thumb2 multiply instruction doesn't have a CCOut register, so
4811 // if we have a "mul" mnemonic in Thumb mode, check if we'll be able to
4812 // use the 16-bit encoding or not.
4813 if (isThumbTwo() && Mnemonic == "mul" && Operands.size() == 6 &&
4814 static_cast<ARMOperand*>(Operands[1])->getReg() == 0 &&
4815 static_cast<ARMOperand*>(Operands[3])->isReg() &&
4816 static_cast<ARMOperand*>(Operands[4])->isReg() &&
4817 static_cast<ARMOperand*>(Operands[5])->isReg() &&
4818 // If the registers aren't low regs, the destination reg isn't the
4819 // same as one of the source regs, or the cc_out operand is zero
4820 // outside of an IT block, we have to use the 32-bit encoding, so
4821 // remove the cc_out operand.
4822 (!isARMLowRegister(static_cast<ARMOperand*>(Operands[3])->getReg()) ||
4823 !isARMLowRegister(static_cast<ARMOperand*>(Operands[4])->getReg()) ||
Jim Grosbach1de0bd12011-11-15 19:29:45 +00004824 !isARMLowRegister(static_cast<ARMOperand*>(Operands[5])->getReg()) ||
Jim Grosbach64944f42011-09-14 21:00:40 +00004825 !inITBlock() ||
4826 (static_cast<ARMOperand*>(Operands[3])->getReg() !=
4827 static_cast<ARMOperand*>(Operands[5])->getReg() &&
4828 static_cast<ARMOperand*>(Operands[3])->getReg() !=
4829 static_cast<ARMOperand*>(Operands[4])->getReg())))
4830 return true;
4831
Jim Grosbach7f1ec952011-11-15 19:55:16 +00004832 // Also check the 'mul' syntax variant that doesn't specify an explicit
4833 // destination register.
4834 if (isThumbTwo() && Mnemonic == "mul" && Operands.size() == 5 &&
4835 static_cast<ARMOperand*>(Operands[1])->getReg() == 0 &&
4836 static_cast<ARMOperand*>(Operands[3])->isReg() &&
4837 static_cast<ARMOperand*>(Operands[4])->isReg() &&
4838 // If the registers aren't low regs or the cc_out operand is zero
4839 // outside of an IT block, we have to use the 32-bit encoding, so
4840 // remove the cc_out operand.
4841 (!isARMLowRegister(static_cast<ARMOperand*>(Operands[3])->getReg()) ||
4842 !isARMLowRegister(static_cast<ARMOperand*>(Operands[4])->getReg()) ||
4843 !inITBlock()))
4844 return true;
4845
Jim Grosbach64944f42011-09-14 21:00:40 +00004846
Jim Grosbach20ed2e72011-09-01 00:28:52 +00004847
Jim Grosbachf69c8042011-08-24 21:42:27 +00004848 // Register-register 'add/sub' for thumb does not have a cc_out operand
4849 // when it's an ADD/SUB SP, #imm. Be lenient on count since there's also
4850 // the "add/sub SP, SP, #imm" version. If the follow-up operands aren't
4851 // right, this will result in better diagnostics (which operand is off)
4852 // anyway.
4853 if (isThumb() && (Mnemonic == "add" || Mnemonic == "sub") &&
4854 (Operands.size() == 5 || Operands.size() == 6) &&
Jim Grosbach72f39f82011-08-24 21:22:15 +00004855 static_cast<ARMOperand*>(Operands[3])->isReg() &&
4856 static_cast<ARMOperand*>(Operands[3])->getReg() == ARM::SP &&
Jim Grosbacha23ecc22012-04-10 17:31:55 +00004857 static_cast<ARMOperand*>(Operands[1])->getReg() == 0 &&
4858 (static_cast<ARMOperand*>(Operands[4])->isImm() ||
4859 (Operands.size() == 6 &&
4860 static_cast<ARMOperand*>(Operands[5])->isImm())))
Jim Grosbach72f39f82011-08-24 21:22:15 +00004861 return true;
Jim Grosbach3912b732011-08-16 21:34:08 +00004862
Jim Grosbachd54b4e62011-08-16 21:12:37 +00004863 return false;
4864}
4865
Jim Grosbach7aef99b2011-11-11 23:08:10 +00004866static bool isDataTypeToken(StringRef Tok) {
4867 return Tok == ".8" || Tok == ".16" || Tok == ".32" || Tok == ".64" ||
4868 Tok == ".i8" || Tok == ".i16" || Tok == ".i32" || Tok == ".i64" ||
4869 Tok == ".u8" || Tok == ".u16" || Tok == ".u32" || Tok == ".u64" ||
4870 Tok == ".s8" || Tok == ".s16" || Tok == ".s32" || Tok == ".s64" ||
4871 Tok == ".p8" || Tok == ".p16" || Tok == ".f32" || Tok == ".f64" ||
4872 Tok == ".f" || Tok == ".d";
4873}
4874
4875// FIXME: This bit should probably be handled via an explicit match class
4876// in the .td files that matches the suffix instead of having it be
4877// a literal string token the way it is now.
4878static bool doesIgnoreDataTypeSuffix(StringRef Mnemonic, StringRef DT) {
4879 return Mnemonic.startswith("vldm") || Mnemonic.startswith("vstm");
4880}
4881
Jim Grosbach21d7fb82011-12-09 23:34:09 +00004882static void applyMnemonicAliases(StringRef &Mnemonic, unsigned Features);
Daniel Dunbarbadbd2f2011-01-10 12:24:52 +00004883/// Parse an arm instruction mnemonic followed by its operands.
4884bool ARMAsmParser::ParseInstruction(StringRef Name, SMLoc NameLoc,
4885 SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Jim Grosbach21d7fb82011-12-09 23:34:09 +00004886 // Apply mnemonic aliases before doing anything else, as the destination
4887 // mnemnonic may include suffices and we want to handle them normally.
4888 // The generic tblgen'erated code does this later, at the start of
4889 // MatchInstructionImpl(), but that's too late for aliases that include
4890 // any sort of suffix.
4891 unsigned AvailableFeatures = getAvailableFeatures();
4892 applyMnemonicAliases(Name, AvailableFeatures);
4893
Jim Grosbacha39cda72011-12-14 02:16:11 +00004894 // First check for the ARM-specific .req directive.
4895 if (Parser.getTok().is(AsmToken::Identifier) &&
4896 Parser.getTok().getIdentifier() == ".req") {
4897 parseDirectiveReq(Name, NameLoc);
4898 // We always return 'error' for this, as we're done with this
4899 // statement and don't need to match the 'instruction."
4900 return true;
4901 }
4902
Daniel Dunbarbadbd2f2011-01-10 12:24:52 +00004903 // Create the leading tokens for the mnemonic, split by '.' characters.
4904 size_t Start = 0, Next = Name.find('.');
Jim Grosbachffa32252011-07-19 19:13:28 +00004905 StringRef Mnemonic = Name.slice(Start, Next);
Daniel Dunbarbadbd2f2011-01-10 12:24:52 +00004906
Daniel Dunbar352e1482011-01-11 15:59:50 +00004907 // Split out the predication code and carry setting flag from the mnemonic.
4908 unsigned PredicationCode;
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00004909 unsigned ProcessorIMod;
Daniel Dunbar352e1482011-01-11 15:59:50 +00004910 bool CarrySetting;
Jim Grosbach89df9962011-08-26 21:43:41 +00004911 StringRef ITMask;
Jim Grosbach1355cf12011-07-26 17:10:22 +00004912 Mnemonic = splitMnemonic(Mnemonic, PredicationCode, CarrySetting,
Jim Grosbach89df9962011-08-26 21:43:41 +00004913 ProcessorIMod, ITMask);
Daniel Dunbarbadbd2f2011-01-10 12:24:52 +00004914
Jim Grosbach0c49ac02011-08-25 17:23:55 +00004915 // In Thumb1, only the branch (B) instruction can be predicated.
4916 if (isThumbOne() && PredicationCode != ARMCC::AL && Mnemonic != "b") {
4917 Parser.EatToEndOfStatement();
4918 return Error(NameLoc, "conditional execution not supported in Thumb1");
4919 }
4920
Jim Grosbachffa32252011-07-19 19:13:28 +00004921 Operands.push_back(ARMOperand::CreateToken(Mnemonic, NameLoc));
4922
Jim Grosbach89df9962011-08-26 21:43:41 +00004923 // Handle the IT instruction ITMask. Convert it to a bitmask. This
4924 // is the mask as it will be for the IT encoding if the conditional
4925 // encoding has a '1' as it's bit0 (i.e. 't' ==> '1'). In the case
4926 // where the conditional bit0 is zero, the instruction post-processing
4927 // will adjust the mask accordingly.
4928 if (Mnemonic == "it") {
Jim Grosbachf8e1e3e2011-08-29 22:24:09 +00004929 SMLoc Loc = SMLoc::getFromPointer(NameLoc.getPointer() + 2);
4930 if (ITMask.size() > 3) {
4931 Parser.EatToEndOfStatement();
4932 return Error(Loc, "too many conditions on IT instruction");
4933 }
Jim Grosbach89df9962011-08-26 21:43:41 +00004934 unsigned Mask = 8;
4935 for (unsigned i = ITMask.size(); i != 0; --i) {
4936 char pos = ITMask[i - 1];
4937 if (pos != 't' && pos != 'e') {
4938 Parser.EatToEndOfStatement();
Jim Grosbachf8e1e3e2011-08-29 22:24:09 +00004939 return Error(Loc, "illegal IT block condition mask '" + ITMask + "'");
Jim Grosbach89df9962011-08-26 21:43:41 +00004940 }
4941 Mask >>= 1;
4942 if (ITMask[i - 1] == 't')
4943 Mask |= 8;
4944 }
Jim Grosbachf8e1e3e2011-08-29 22:24:09 +00004945 Operands.push_back(ARMOperand::CreateITMask(Mask, Loc));
Jim Grosbach89df9962011-08-26 21:43:41 +00004946 }
4947
Jim Grosbachffa32252011-07-19 19:13:28 +00004948 // FIXME: This is all a pretty gross hack. We should automatically handle
4949 // optional operands like this via tblgen.
Bill Wendling9717fa92010-11-21 10:56:05 +00004950
Daniel Dunbar3771dd02011-01-11 15:59:53 +00004951 // Next, add the CCOut and ConditionCode operands, if needed.
4952 //
4953 // For mnemonics which can ever incorporate a carry setting bit or predication
4954 // code, our matching model involves us always generating CCOut and
4955 // ConditionCode operands to match the mnemonic "as written" and then we let
4956 // the matcher deal with finding the right instruction or generating an
4957 // appropriate error.
4958 bool CanAcceptCarrySet, CanAcceptPredicationCode;
Jim Grosbach1355cf12011-07-26 17:10:22 +00004959 getMnemonicAcceptInfo(Mnemonic, CanAcceptCarrySet, CanAcceptPredicationCode);
Daniel Dunbar3771dd02011-01-11 15:59:53 +00004960
Jim Grosbach33c16a22011-07-14 22:04:21 +00004961 // If we had a carry-set on an instruction that can't do that, issue an
4962 // error.
4963 if (!CanAcceptCarrySet && CarrySetting) {
4964 Parser.EatToEndOfStatement();
Jim Grosbachffa32252011-07-19 19:13:28 +00004965 return Error(NameLoc, "instruction '" + Mnemonic +
Jim Grosbach33c16a22011-07-14 22:04:21 +00004966 "' can not set flags, but 's' suffix specified");
4967 }
Jim Grosbachc27d4f92011-07-22 17:44:50 +00004968 // If we had a predication code on an instruction that can't do that, issue an
4969 // error.
4970 if (!CanAcceptPredicationCode && PredicationCode != ARMCC::AL) {
4971 Parser.EatToEndOfStatement();
4972 return Error(NameLoc, "instruction '" + Mnemonic +
4973 "' is not predicable, but condition code specified");
4974 }
Jim Grosbach33c16a22011-07-14 22:04:21 +00004975
Daniel Dunbar3771dd02011-01-11 15:59:53 +00004976 // Add the carry setting operand, if necessary.
Jim Grosbachf8e1e3e2011-08-29 22:24:09 +00004977 if (CanAcceptCarrySet) {
4978 SMLoc Loc = SMLoc::getFromPointer(NameLoc.getPointer() + Mnemonic.size());
Daniel Dunbar3771dd02011-01-11 15:59:53 +00004979 Operands.push_back(ARMOperand::CreateCCOut(CarrySetting ? ARM::CPSR : 0,
Jim Grosbachf8e1e3e2011-08-29 22:24:09 +00004980 Loc));
4981 }
Daniel Dunbar3771dd02011-01-11 15:59:53 +00004982
4983 // Add the predication code operand, if necessary.
4984 if (CanAcceptPredicationCode) {
Jim Grosbachf8e1e3e2011-08-29 22:24:09 +00004985 SMLoc Loc = SMLoc::getFromPointer(NameLoc.getPointer() + Mnemonic.size() +
4986 CarrySetting);
Daniel Dunbar3771dd02011-01-11 15:59:53 +00004987 Operands.push_back(ARMOperand::CreateCondCode(
Jim Grosbachf8e1e3e2011-08-29 22:24:09 +00004988 ARMCC::CondCodes(PredicationCode), Loc));
Daniel Dunbarbadbd2f2011-01-10 12:24:52 +00004989 }
Daniel Dunbar345a9a62010-08-11 06:37:20 +00004990
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00004991 // Add the processor imod operand, if necessary.
4992 if (ProcessorIMod) {
4993 Operands.push_back(ARMOperand::CreateImm(
4994 MCConstantExpr::Create(ProcessorIMod, getContext()),
4995 NameLoc, NameLoc));
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00004996 }
4997
Daniel Dunbar345a9a62010-08-11 06:37:20 +00004998 // Add the remaining tokens in the mnemonic.
Daniel Dunbar5747b132010-08-11 06:37:16 +00004999 while (Next != StringRef::npos) {
5000 Start = Next;
5001 Next = Name.find('.', Start + 1);
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00005002 StringRef ExtraToken = Name.slice(Start, Next);
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00005003
Jim Grosbach7aef99b2011-11-11 23:08:10 +00005004 // Some NEON instructions have an optional datatype suffix that is
5005 // completely ignored. Check for that.
5006 if (isDataTypeToken(ExtraToken) &&
5007 doesIgnoreDataTypeSuffix(Mnemonic, ExtraToken))
5008 continue;
5009
Jim Grosbach81d2e392011-09-07 16:06:04 +00005010 if (ExtraToken != ".n") {
5011 SMLoc Loc = SMLoc::getFromPointer(NameLoc.getPointer() + Start);
5012 Operands.push_back(ARMOperand::CreateToken(ExtraToken, Loc));
5013 }
Daniel Dunbar5747b132010-08-11 06:37:16 +00005014 }
5015
5016 // Read the remaining operands.
5017 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00005018 // Read the first operand.
Jim Grosbach1355cf12011-07-26 17:10:22 +00005019 if (parseOperand(Operands, Mnemonic)) {
Chris Lattnercbf8a982010-09-11 16:18:25 +00005020 Parser.EatToEndOfStatement();
5021 return true;
5022 }
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00005023
5024 while (getLexer().is(AsmToken::Comma)) {
Sean Callananb9a25b72010-01-19 20:27:46 +00005025 Parser.Lex(); // Eat the comma.
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00005026
5027 // Parse and remember the operand.
Jim Grosbach1355cf12011-07-26 17:10:22 +00005028 if (parseOperand(Operands, Mnemonic)) {
Chris Lattnercbf8a982010-09-11 16:18:25 +00005029 Parser.EatToEndOfStatement();
5030 return true;
5031 }
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00005032 }
5033 }
Jim Grosbach16c74252010-10-29 14:46:02 +00005034
Chris Lattnercbf8a982010-09-11 16:18:25 +00005035 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Jim Grosbach186ffac2011-10-07 18:27:04 +00005036 SMLoc Loc = getLexer().getLoc();
Chris Lattnercbf8a982010-09-11 16:18:25 +00005037 Parser.EatToEndOfStatement();
Jim Grosbach186ffac2011-10-07 18:27:04 +00005038 return Error(Loc, "unexpected token in argument list");
Chris Lattnercbf8a982010-09-11 16:18:25 +00005039 }
Bill Wendling146018f2010-11-06 21:42:12 +00005040
Chris Lattner34e53142010-09-08 05:10:46 +00005041 Parser.Lex(); // Consume the EndOfStatement
Jim Grosbachffa32252011-07-19 19:13:28 +00005042
Jim Grosbachd54b4e62011-08-16 21:12:37 +00005043 // Some instructions, mostly Thumb, have forms for the same mnemonic that
5044 // do and don't have a cc_out optional-def operand. With some spot-checks
5045 // of the operand list, we can figure out which variant we're trying to
Jim Grosbach20ed2e72011-09-01 00:28:52 +00005046 // parse and adjust accordingly before actually matching. We shouldn't ever
5047 // try to remove a cc_out operand that was explicitly set on the the
5048 // mnemonic, of course (CarrySetting == true). Reason number #317 the
5049 // table driven matcher doesn't fit well with the ARM instruction set.
5050 if (!CarrySetting && shouldOmitCCOutOperand(Mnemonic, Operands)) {
Jim Grosbachffa32252011-07-19 19:13:28 +00005051 ARMOperand *Op = static_cast<ARMOperand*>(Operands[1]);
5052 Operands.erase(Operands.begin() + 1);
5053 delete Op;
5054 }
5055
Jim Grosbachcf121c32011-07-28 21:57:55 +00005056 // ARM mode 'blx' need special handling, as the register operand version
5057 // is predicable, but the label operand version is not. So, we can't rely
5058 // on the Mnemonic based checking to correctly figure out when to put
Jim Grosbach21ff17c2011-10-07 23:24:09 +00005059 // a k_CondCode operand in the list. If we're trying to match the label
5060 // version, remove the k_CondCode operand here.
Jim Grosbachcf121c32011-07-28 21:57:55 +00005061 if (!isThumb() && Mnemonic == "blx" && Operands.size() == 3 &&
5062 static_cast<ARMOperand*>(Operands[2])->isImm()) {
5063 ARMOperand *Op = static_cast<ARMOperand*>(Operands[1]);
5064 Operands.erase(Operands.begin() + 1);
5065 delete Op;
5066 }
Jim Grosbach857e1a72011-08-11 23:51:13 +00005067
5068 // The vector-compare-to-zero instructions have a literal token "#0" at
5069 // the end that comes to here as an immediate operand. Convert it to a
5070 // token to play nicely with the matcher.
5071 if ((Mnemonic == "vceq" || Mnemonic == "vcge" || Mnemonic == "vcgt" ||
5072 Mnemonic == "vcle" || Mnemonic == "vclt") && Operands.size() == 6 &&
5073 static_cast<ARMOperand*>(Operands[5])->isImm()) {
5074 ARMOperand *Op = static_cast<ARMOperand*>(Operands[5]);
5075 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Op->getImm());
5076 if (CE && CE->getValue() == 0) {
5077 Operands.erase(Operands.begin() + 5);
5078 Operands.push_back(ARMOperand::CreateToken("#0", Op->getStartLoc()));
5079 delete Op;
5080 }
5081 }
Jim Grosbach68259142011-10-03 22:30:24 +00005082 // VCMP{E} does the same thing, but with a different operand count.
5083 if ((Mnemonic == "vcmp" || Mnemonic == "vcmpe") && Operands.size() == 5 &&
5084 static_cast<ARMOperand*>(Operands[4])->isImm()) {
5085 ARMOperand *Op = static_cast<ARMOperand*>(Operands[4]);
5086 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Op->getImm());
5087 if (CE && CE->getValue() == 0) {
5088 Operands.erase(Operands.begin() + 4);
5089 Operands.push_back(ARMOperand::CreateToken("#0", Op->getStartLoc()));
5090 delete Op;
5091 }
5092 }
Jim Grosbach934755a2011-08-22 23:47:13 +00005093 // Similarly, the Thumb1 "RSB" instruction has a literal "#0" on the
Jim Grosbach55b02f22011-12-13 20:50:38 +00005094 // end. Convert it to a token here. Take care not to convert those
5095 // that should hit the Thumb2 encoding.
Jim Grosbach934755a2011-08-22 23:47:13 +00005096 if (Mnemonic == "rsb" && isThumb() && Operands.size() == 6 &&
Jim Grosbach55b02f22011-12-13 20:50:38 +00005097 static_cast<ARMOperand*>(Operands[3])->isReg() &&
5098 static_cast<ARMOperand*>(Operands[4])->isReg() &&
Jim Grosbach934755a2011-08-22 23:47:13 +00005099 static_cast<ARMOperand*>(Operands[5])->isImm()) {
5100 ARMOperand *Op = static_cast<ARMOperand*>(Operands[5]);
5101 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Op->getImm());
Jim Grosbach55b02f22011-12-13 20:50:38 +00005102 if (CE && CE->getValue() == 0 &&
5103 (isThumbOne() ||
Jim Grosbachd7ea73a2011-12-13 21:06:41 +00005104 // The cc_out operand matches the IT block.
5105 ((inITBlock() != CarrySetting) &&
5106 // Neither register operand is a high register.
Jim Grosbach55b02f22011-12-13 20:50:38 +00005107 (isARMLowRegister(static_cast<ARMOperand*>(Operands[3])->getReg()) &&
Jim Grosbachd7ea73a2011-12-13 21:06:41 +00005108 isARMLowRegister(static_cast<ARMOperand*>(Operands[4])->getReg()))))){
Jim Grosbach934755a2011-08-22 23:47:13 +00005109 Operands.erase(Operands.begin() + 5);
5110 Operands.push_back(ARMOperand::CreateToken("#0", Op->getStartLoc()));
5111 delete Op;
5112 }
5113 }
5114
Chris Lattner98986712010-01-14 22:21:20 +00005115 return false;
Kevin Enderbyca9c42c2009-09-15 00:27:25 +00005116}
5117
Jim Grosbach189610f2011-07-26 18:25:39 +00005118// Validate context-sensitive operand constraints.
Jim Grosbachaa875f82011-08-23 18:13:04 +00005119
5120// return 'true' if register list contains non-low GPR registers,
5121// 'false' otherwise. If Reg is in the register list or is HiReg, set
5122// 'containsReg' to true.
5123static bool checkLowRegisterList(MCInst Inst, unsigned OpNo, unsigned Reg,
5124 unsigned HiReg, bool &containsReg) {
5125 containsReg = false;
5126 for (unsigned i = OpNo; i < Inst.getNumOperands(); ++i) {
5127 unsigned OpReg = Inst.getOperand(i).getReg();
5128 if (OpReg == Reg)
5129 containsReg = true;
5130 // Anything other than a low register isn't legal here.
5131 if (!isARMLowRegister(OpReg) && (!HiReg || OpReg != HiReg))
5132 return true;
5133 }
5134 return false;
5135}
5136
Jim Grosbach76ecc3d2011-09-07 18:05:34 +00005137// Check if the specified regisgter is in the register list of the inst,
5138// starting at the indicated operand number.
5139static bool listContainsReg(MCInst &Inst, unsigned OpNo, unsigned Reg) {
5140 for (unsigned i = OpNo; i < Inst.getNumOperands(); ++i) {
5141 unsigned OpReg = Inst.getOperand(i).getReg();
5142 if (OpReg == Reg)
5143 return true;
5144 }
5145 return false;
5146}
5147
Jim Grosbachf8e1e3e2011-08-29 22:24:09 +00005148// FIXME: We would really prefer to have MCInstrInfo (the wrapper around
5149// the ARMInsts array) instead. Getting that here requires awkward
5150// API changes, though. Better way?
5151namespace llvm {
Benjamin Kramer1a2f9882011-10-22 16:50:00 +00005152extern const MCInstrDesc ARMInsts[];
Jim Grosbachf8e1e3e2011-08-29 22:24:09 +00005153}
Benjamin Kramer1a2f9882011-10-22 16:50:00 +00005154static const MCInstrDesc &getInstDesc(unsigned Opcode) {
Jim Grosbachf8e1e3e2011-08-29 22:24:09 +00005155 return ARMInsts[Opcode];
5156}
5157
Jim Grosbach189610f2011-07-26 18:25:39 +00005158// FIXME: We would really like to be able to tablegen'erate this.
5159bool ARMAsmParser::
5160validateInstruction(MCInst &Inst,
5161 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Benjamin Kramer1a2f9882011-10-22 16:50:00 +00005162 const MCInstrDesc &MCID = getInstDesc(Inst.getOpcode());
Jim Grosbachf8e1e3e2011-08-29 22:24:09 +00005163 SMLoc Loc = Operands[0]->getStartLoc();
5164 // Check the IT block state first.
Jim Grosbach74423e32012-01-25 19:52:01 +00005165 // NOTE: BKPT instruction has the interesting property of being
5166 // allowed in IT blocks, but not being predicable. It just always
Owen Andersonb6b7f512011-09-13 17:59:19 +00005167 // executes.
Jim Grosbach74423e32012-01-25 19:52:01 +00005168 if (inITBlock() && Inst.getOpcode() != ARM::tBKPT &&
5169 Inst.getOpcode() != ARM::BKPT) {
Jim Grosbachf8e1e3e2011-08-29 22:24:09 +00005170 unsigned bit = 1;
5171 if (ITState.FirstCond)
5172 ITState.FirstCond = false;
5173 else
Jim Grosbacha1109882011-09-02 23:22:08 +00005174 bit = (ITState.Mask >> (5 - ITState.CurPosition)) & 1;
Jim Grosbachf8e1e3e2011-08-29 22:24:09 +00005175 // The instruction must be predicable.
5176 if (!MCID.isPredicable())
5177 return Error(Loc, "instructions in IT block must be predicable");
5178 unsigned Cond = Inst.getOperand(MCID.findFirstPredOperandIdx()).getImm();
5179 unsigned ITCond = bit ? ITState.Cond :
5180 ARMCC::getOppositeCondition(ITState.Cond);
5181 if (Cond != ITCond) {
5182 // Find the condition code Operand to get its SMLoc information.
5183 SMLoc CondLoc;
5184 for (unsigned i = 1; i < Operands.size(); ++i)
5185 if (static_cast<ARMOperand*>(Operands[i])->isCondCode())
5186 CondLoc = Operands[i]->getStartLoc();
5187 return Error(CondLoc, "incorrect condition in IT block; got '" +
5188 StringRef(ARMCondCodeToString(ARMCC::CondCodes(Cond))) +
5189 "', but expected '" +
5190 ARMCondCodeToString(ARMCC::CondCodes(ITCond)) + "'");
5191 }
Jim Grosbachc9a9b442011-08-31 18:29:05 +00005192 // Check for non-'al' condition codes outside of the IT block.
Jim Grosbachf8e1e3e2011-08-29 22:24:09 +00005193 } else if (isThumbTwo() && MCID.isPredicable() &&
5194 Inst.getOperand(MCID.findFirstPredOperandIdx()).getImm() !=
Owen Anderson51f6a7a2011-09-09 21:48:23 +00005195 ARMCC::AL && Inst.getOpcode() != ARM::tB &&
5196 Inst.getOpcode() != ARM::t2B)
Jim Grosbachf8e1e3e2011-08-29 22:24:09 +00005197 return Error(Loc, "predicated instructions must be in IT block");
5198
Jim Grosbach189610f2011-07-26 18:25:39 +00005199 switch (Inst.getOpcode()) {
Jim Grosbach2fd2b872011-08-10 20:29:19 +00005200 case ARM::LDRD:
5201 case ARM::LDRD_PRE:
5202 case ARM::LDRD_POST:
Jim Grosbach189610f2011-07-26 18:25:39 +00005203 case ARM::LDREXD: {
5204 // Rt2 must be Rt + 1.
5205 unsigned Rt = getARMRegisterNumbering(Inst.getOperand(0).getReg());
5206 unsigned Rt2 = getARMRegisterNumbering(Inst.getOperand(1).getReg());
5207 if (Rt2 != Rt + 1)
5208 return Error(Operands[3]->getStartLoc(),
5209 "destination operands must be sequential");
5210 return false;
5211 }
Jim Grosbach14605d12011-08-11 20:28:23 +00005212 case ARM::STRD: {
5213 // Rt2 must be Rt + 1.
5214 unsigned Rt = getARMRegisterNumbering(Inst.getOperand(0).getReg());
5215 unsigned Rt2 = getARMRegisterNumbering(Inst.getOperand(1).getReg());
5216 if (Rt2 != Rt + 1)
5217 return Error(Operands[3]->getStartLoc(),
5218 "source operands must be sequential");
5219 return false;
5220 }
Jim Grosbach53642c52011-08-10 20:49:18 +00005221 case ARM::STRD_PRE:
5222 case ARM::STRD_POST:
Jim Grosbach189610f2011-07-26 18:25:39 +00005223 case ARM::STREXD: {
5224 // Rt2 must be Rt + 1.
5225 unsigned Rt = getARMRegisterNumbering(Inst.getOperand(1).getReg());
5226 unsigned Rt2 = getARMRegisterNumbering(Inst.getOperand(2).getReg());
5227 if (Rt2 != Rt + 1)
Jim Grosbach14605d12011-08-11 20:28:23 +00005228 return Error(Operands[3]->getStartLoc(),
Jim Grosbach189610f2011-07-26 18:25:39 +00005229 "source operands must be sequential");
5230 return false;
5231 }
Jim Grosbachfb8989e2011-07-27 21:09:25 +00005232 case ARM::SBFX:
5233 case ARM::UBFX: {
5234 // width must be in range [1, 32-lsb]
5235 unsigned lsb = Inst.getOperand(2).getImm();
5236 unsigned widthm1 = Inst.getOperand(3).getImm();
5237 if (widthm1 >= 32 - lsb)
5238 return Error(Operands[5]->getStartLoc(),
5239 "bitfield width must be in range [1,32-lsb]");
Jim Grosbach00c9a512011-08-16 21:42:31 +00005240 return false;
Jim Grosbachfb8989e2011-07-27 21:09:25 +00005241 }
Jim Grosbach93b3eff2011-08-18 21:50:53 +00005242 case ARM::tLDMIA: {
Jim Grosbach76ecc3d2011-09-07 18:05:34 +00005243 // If we're parsing Thumb2, the .w variant is available and handles
5244 // most cases that are normally illegal for a Thumb1 LDM
5245 // instruction. We'll make the transformation in processInstruction()
5246 // if necessary.
5247 //
Jim Grosbach93b3eff2011-08-18 21:50:53 +00005248 // Thumb LDM instructions are writeback iff the base register is not
5249 // in the register list.
5250 unsigned Rn = Inst.getOperand(0).getReg();
Jim Grosbach7260c6a2011-08-22 23:01:07 +00005251 bool hasWritebackToken =
5252 (static_cast<ARMOperand*>(Operands[3])->isToken() &&
5253 static_cast<ARMOperand*>(Operands[3])->getToken() == "!");
Jim Grosbachaa875f82011-08-23 18:13:04 +00005254 bool listContainsBase;
Jim Grosbach76ecc3d2011-09-07 18:05:34 +00005255 if (checkLowRegisterList(Inst, 3, Rn, 0, listContainsBase) && !isThumbTwo())
Jim Grosbachaa875f82011-08-23 18:13:04 +00005256 return Error(Operands[3 + hasWritebackToken]->getStartLoc(),
5257 "registers must be in range r0-r7");
Jim Grosbach93b3eff2011-08-18 21:50:53 +00005258 // If we should have writeback, then there should be a '!' token.
Jim Grosbach76ecc3d2011-09-07 18:05:34 +00005259 if (!listContainsBase && !hasWritebackToken && !isThumbTwo())
Jim Grosbach93b3eff2011-08-18 21:50:53 +00005260 return Error(Operands[2]->getStartLoc(),
5261 "writeback operator '!' expected");
Jim Grosbach76ecc3d2011-09-07 18:05:34 +00005262 // If we should not have writeback, there must not be a '!'. This is
5263 // true even for the 32-bit wide encodings.
Jim Grosbachaa875f82011-08-23 18:13:04 +00005264 if (listContainsBase && hasWritebackToken)
Jim Grosbach7260c6a2011-08-22 23:01:07 +00005265 return Error(Operands[3]->getStartLoc(),
5266 "writeback operator '!' not allowed when base register "
5267 "in register list");
Jim Grosbach93b3eff2011-08-18 21:50:53 +00005268
5269 break;
5270 }
Jim Grosbach76ecc3d2011-09-07 18:05:34 +00005271 case ARM::t2LDMIA_UPD: {
5272 if (listContainsReg(Inst, 3, Inst.getOperand(0).getReg()))
5273 return Error(Operands[4]->getStartLoc(),
5274 "writeback operator '!' not allowed when base register "
5275 "in register list");
5276 break;
5277 }
Jim Grosbach54026372011-11-10 23:17:11 +00005278 // Like for ldm/stm, push and pop have hi-reg handling version in Thumb2,
5279 // so only issue a diagnostic for thumb1. The instructions will be
5280 // switched to the t2 encodings in processInstruction() if necessary.
Jim Grosbach6dcafc02011-08-22 23:17:34 +00005281 case ARM::tPOP: {
Jim Grosbachaa875f82011-08-23 18:13:04 +00005282 bool listContainsBase;
Jim Grosbach54026372011-11-10 23:17:11 +00005283 if (checkLowRegisterList(Inst, 2, 0, ARM::PC, listContainsBase) &&
5284 !isThumbTwo())
Jim Grosbachaa875f82011-08-23 18:13:04 +00005285 return Error(Operands[2]->getStartLoc(),
5286 "registers must be in range r0-r7 or pc");
Jim Grosbach6dcafc02011-08-22 23:17:34 +00005287 break;
5288 }
5289 case ARM::tPUSH: {
Jim Grosbachaa875f82011-08-23 18:13:04 +00005290 bool listContainsBase;
Jim Grosbach54026372011-11-10 23:17:11 +00005291 if (checkLowRegisterList(Inst, 2, 0, ARM::LR, listContainsBase) &&
5292 !isThumbTwo())
Jim Grosbachaa875f82011-08-23 18:13:04 +00005293 return Error(Operands[2]->getStartLoc(),
5294 "registers must be in range r0-r7 or lr");
Jim Grosbach6dcafc02011-08-22 23:17:34 +00005295 break;
5296 }
Jim Grosbach1e84f192011-08-23 18:15:37 +00005297 case ARM::tSTMIA_UPD: {
5298 bool listContainsBase;
Jim Grosbach8213c962011-09-16 20:50:13 +00005299 if (checkLowRegisterList(Inst, 4, 0, 0, listContainsBase) && !isThumbTwo())
Jim Grosbach1e84f192011-08-23 18:15:37 +00005300 return Error(Operands[4]->getStartLoc(),
5301 "registers must be in range r0-r7");
5302 break;
5303 }
Jim Grosbach189610f2011-07-26 18:25:39 +00005304 }
5305
5306 return false;
5307}
5308
Jim Grosbachd7433e22012-01-23 23:45:44 +00005309static unsigned getRealVSTOpcode(unsigned Opc, unsigned &Spacing) {
Jim Grosbach84defb52011-12-02 22:34:51 +00005310 switch(Opc) {
Craig Topperbc219812012-02-07 02:50:20 +00005311 default: llvm_unreachable("unexpected opcode!");
Jim Grosbach9b1b3902011-12-14 23:25:46 +00005312 // VST1LN
Jim Grosbach7945ead2012-01-24 00:43:12 +00005313 case ARM::VST1LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VST1LNd8_UPD;
5314 case ARM::VST1LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VST1LNd16_UPD;
5315 case ARM::VST1LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VST1LNd32_UPD;
5316 case ARM::VST1LNdWB_register_Asm_8: Spacing = 1; return ARM::VST1LNd8_UPD;
5317 case ARM::VST1LNdWB_register_Asm_16: Spacing = 1; return ARM::VST1LNd16_UPD;
5318 case ARM::VST1LNdWB_register_Asm_32: Spacing = 1; return ARM::VST1LNd32_UPD;
5319 case ARM::VST1LNdAsm_8: Spacing = 1; return ARM::VST1LNd8;
5320 case ARM::VST1LNdAsm_16: Spacing = 1; return ARM::VST1LNd16;
5321 case ARM::VST1LNdAsm_32: Spacing = 1; return ARM::VST1LNd32;
Jim Grosbach9b1b3902011-12-14 23:25:46 +00005322
5323 // VST2LN
Jim Grosbach7945ead2012-01-24 00:43:12 +00005324 case ARM::VST2LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VST2LNd8_UPD;
5325 case ARM::VST2LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VST2LNd16_UPD;
5326 case ARM::VST2LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VST2LNd32_UPD;
5327 case ARM::VST2LNqWB_fixed_Asm_16: Spacing = 2; return ARM::VST2LNq16_UPD;
5328 case ARM::VST2LNqWB_fixed_Asm_32: Spacing = 2; return ARM::VST2LNq32_UPD;
Jim Grosbach5b484312011-12-20 20:46:29 +00005329
Jim Grosbach7945ead2012-01-24 00:43:12 +00005330 case ARM::VST2LNdWB_register_Asm_8: Spacing = 1; return ARM::VST2LNd8_UPD;
5331 case ARM::VST2LNdWB_register_Asm_16: Spacing = 1; return ARM::VST2LNd16_UPD;
5332 case ARM::VST2LNdWB_register_Asm_32: Spacing = 1; return ARM::VST2LNd32_UPD;
5333 case ARM::VST2LNqWB_register_Asm_16: Spacing = 2; return ARM::VST2LNq16_UPD;
5334 case ARM::VST2LNqWB_register_Asm_32: Spacing = 2; return ARM::VST2LNq32_UPD;
Jim Grosbach5b484312011-12-20 20:46:29 +00005335
Jim Grosbach7945ead2012-01-24 00:43:12 +00005336 case ARM::VST2LNdAsm_8: Spacing = 1; return ARM::VST2LNd8;
5337 case ARM::VST2LNdAsm_16: Spacing = 1; return ARM::VST2LNd16;
5338 case ARM::VST2LNdAsm_32: Spacing = 1; return ARM::VST2LNd32;
5339 case ARM::VST2LNqAsm_16: Spacing = 2; return ARM::VST2LNq16;
5340 case ARM::VST2LNqAsm_32: Spacing = 2; return ARM::VST2LNq32;
Jim Grosbachd7433e22012-01-23 23:45:44 +00005341
Jim Grosbach4adb1822012-01-24 00:07:41 +00005342 // VST3LN
Jim Grosbach7945ead2012-01-24 00:43:12 +00005343 case ARM::VST3LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VST3LNd8_UPD;
5344 case ARM::VST3LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VST3LNd16_UPD;
5345 case ARM::VST3LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VST3LNd32_UPD;
5346 case ARM::VST3LNqWB_fixed_Asm_16: Spacing = 1; return ARM::VST3LNq16_UPD;
5347 case ARM::VST3LNqWB_fixed_Asm_32: Spacing = 2; return ARM::VST3LNq32_UPD;
5348 case ARM::VST3LNdWB_register_Asm_8: Spacing = 1; return ARM::VST3LNd8_UPD;
5349 case ARM::VST3LNdWB_register_Asm_16: Spacing = 1; return ARM::VST3LNd16_UPD;
5350 case ARM::VST3LNdWB_register_Asm_32: Spacing = 1; return ARM::VST3LNd32_UPD;
5351 case ARM::VST3LNqWB_register_Asm_16: Spacing = 2; return ARM::VST3LNq16_UPD;
5352 case ARM::VST3LNqWB_register_Asm_32: Spacing = 2; return ARM::VST3LNq32_UPD;
5353 case ARM::VST3LNdAsm_8: Spacing = 1; return ARM::VST3LNd8;
5354 case ARM::VST3LNdAsm_16: Spacing = 1; return ARM::VST3LNd16;
5355 case ARM::VST3LNdAsm_32: Spacing = 1; return ARM::VST3LNd32;
5356 case ARM::VST3LNqAsm_16: Spacing = 2; return ARM::VST3LNq16;
5357 case ARM::VST3LNqAsm_32: Spacing = 2; return ARM::VST3LNq32;
Jim Grosbach4adb1822012-01-24 00:07:41 +00005358
Jim Grosbachd7433e22012-01-23 23:45:44 +00005359 // VST3
Jim Grosbach7945ead2012-01-24 00:43:12 +00005360 case ARM::VST3dWB_fixed_Asm_8: Spacing = 1; return ARM::VST3d8_UPD;
5361 case ARM::VST3dWB_fixed_Asm_16: Spacing = 1; return ARM::VST3d16_UPD;
5362 case ARM::VST3dWB_fixed_Asm_32: Spacing = 1; return ARM::VST3d32_UPD;
5363 case ARM::VST3qWB_fixed_Asm_8: Spacing = 2; return ARM::VST3q8_UPD;
5364 case ARM::VST3qWB_fixed_Asm_16: Spacing = 2; return ARM::VST3q16_UPD;
5365 case ARM::VST3qWB_fixed_Asm_32: Spacing = 2; return ARM::VST3q32_UPD;
5366 case ARM::VST3dWB_register_Asm_8: Spacing = 1; return ARM::VST3d8_UPD;
5367 case ARM::VST3dWB_register_Asm_16: Spacing = 1; return ARM::VST3d16_UPD;
5368 case ARM::VST3dWB_register_Asm_32: Spacing = 1; return ARM::VST3d32_UPD;
5369 case ARM::VST3qWB_register_Asm_8: Spacing = 2; return ARM::VST3q8_UPD;
5370 case ARM::VST3qWB_register_Asm_16: Spacing = 2; return ARM::VST3q16_UPD;
5371 case ARM::VST3qWB_register_Asm_32: Spacing = 2; return ARM::VST3q32_UPD;
5372 case ARM::VST3dAsm_8: Spacing = 1; return ARM::VST3d8;
5373 case ARM::VST3dAsm_16: Spacing = 1; return ARM::VST3d16;
5374 case ARM::VST3dAsm_32: Spacing = 1; return ARM::VST3d32;
5375 case ARM::VST3qAsm_8: Spacing = 2; return ARM::VST3q8;
5376 case ARM::VST3qAsm_16: Spacing = 2; return ARM::VST3q16;
5377 case ARM::VST3qAsm_32: Spacing = 2; return ARM::VST3q32;
Jim Grosbach539aab72012-01-24 00:58:13 +00005378
Jim Grosbach88a54de2012-01-24 18:53:13 +00005379 // VST4LN
5380 case ARM::VST4LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VST4LNd8_UPD;
5381 case ARM::VST4LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VST4LNd16_UPD;
5382 case ARM::VST4LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VST4LNd32_UPD;
5383 case ARM::VST4LNqWB_fixed_Asm_16: Spacing = 1; return ARM::VST4LNq16_UPD;
5384 case ARM::VST4LNqWB_fixed_Asm_32: Spacing = 2; return ARM::VST4LNq32_UPD;
5385 case ARM::VST4LNdWB_register_Asm_8: Spacing = 1; return ARM::VST4LNd8_UPD;
5386 case ARM::VST4LNdWB_register_Asm_16: Spacing = 1; return ARM::VST4LNd16_UPD;
5387 case ARM::VST4LNdWB_register_Asm_32: Spacing = 1; return ARM::VST4LNd32_UPD;
5388 case ARM::VST4LNqWB_register_Asm_16: Spacing = 2; return ARM::VST4LNq16_UPD;
5389 case ARM::VST4LNqWB_register_Asm_32: Spacing = 2; return ARM::VST4LNq32_UPD;
5390 case ARM::VST4LNdAsm_8: Spacing = 1; return ARM::VST4LNd8;
5391 case ARM::VST4LNdAsm_16: Spacing = 1; return ARM::VST4LNd16;
5392 case ARM::VST4LNdAsm_32: Spacing = 1; return ARM::VST4LNd32;
5393 case ARM::VST4LNqAsm_16: Spacing = 2; return ARM::VST4LNq16;
5394 case ARM::VST4LNqAsm_32: Spacing = 2; return ARM::VST4LNq32;
5395
Jim Grosbach539aab72012-01-24 00:58:13 +00005396 // VST4
5397 case ARM::VST4dWB_fixed_Asm_8: Spacing = 1; return ARM::VST4d8_UPD;
5398 case ARM::VST4dWB_fixed_Asm_16: Spacing = 1; return ARM::VST4d16_UPD;
5399 case ARM::VST4dWB_fixed_Asm_32: Spacing = 1; return ARM::VST4d32_UPD;
5400 case ARM::VST4qWB_fixed_Asm_8: Spacing = 2; return ARM::VST4q8_UPD;
5401 case ARM::VST4qWB_fixed_Asm_16: Spacing = 2; return ARM::VST4q16_UPD;
5402 case ARM::VST4qWB_fixed_Asm_32: Spacing = 2; return ARM::VST4q32_UPD;
5403 case ARM::VST4dWB_register_Asm_8: Spacing = 1; return ARM::VST4d8_UPD;
5404 case ARM::VST4dWB_register_Asm_16: Spacing = 1; return ARM::VST4d16_UPD;
5405 case ARM::VST4dWB_register_Asm_32: Spacing = 1; return ARM::VST4d32_UPD;
5406 case ARM::VST4qWB_register_Asm_8: Spacing = 2; return ARM::VST4q8_UPD;
5407 case ARM::VST4qWB_register_Asm_16: Spacing = 2; return ARM::VST4q16_UPD;
5408 case ARM::VST4qWB_register_Asm_32: Spacing = 2; return ARM::VST4q32_UPD;
5409 case ARM::VST4dAsm_8: Spacing = 1; return ARM::VST4d8;
5410 case ARM::VST4dAsm_16: Spacing = 1; return ARM::VST4d16;
5411 case ARM::VST4dAsm_32: Spacing = 1; return ARM::VST4d32;
5412 case ARM::VST4qAsm_8: Spacing = 2; return ARM::VST4q8;
5413 case ARM::VST4qAsm_16: Spacing = 2; return ARM::VST4q16;
5414 case ARM::VST4qAsm_32: Spacing = 2; return ARM::VST4q32;
Jim Grosbach84defb52011-12-02 22:34:51 +00005415 }
5416}
5417
Jim Grosbachd7433e22012-01-23 23:45:44 +00005418static unsigned getRealVLDOpcode(unsigned Opc, unsigned &Spacing) {
Jim Grosbach7636bf62011-12-02 00:35:16 +00005419 switch(Opc) {
Craig Topperbc219812012-02-07 02:50:20 +00005420 default: llvm_unreachable("unexpected opcode!");
Jim Grosbach9b1b3902011-12-14 23:25:46 +00005421 // VLD1LN
Jim Grosbach7945ead2012-01-24 00:43:12 +00005422 case ARM::VLD1LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VLD1LNd8_UPD;
5423 case ARM::VLD1LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VLD1LNd16_UPD;
5424 case ARM::VLD1LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VLD1LNd32_UPD;
5425 case ARM::VLD1LNdWB_register_Asm_8: Spacing = 1; return ARM::VLD1LNd8_UPD;
5426 case ARM::VLD1LNdWB_register_Asm_16: Spacing = 1; return ARM::VLD1LNd16_UPD;
5427 case ARM::VLD1LNdWB_register_Asm_32: Spacing = 1; return ARM::VLD1LNd32_UPD;
5428 case ARM::VLD1LNdAsm_8: Spacing = 1; return ARM::VLD1LNd8;
5429 case ARM::VLD1LNdAsm_16: Spacing = 1; return ARM::VLD1LNd16;
5430 case ARM::VLD1LNdAsm_32: Spacing = 1; return ARM::VLD1LNd32;
Jim Grosbach9b1b3902011-12-14 23:25:46 +00005431
5432 // VLD2LN
Jim Grosbach7945ead2012-01-24 00:43:12 +00005433 case ARM::VLD2LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VLD2LNd8_UPD;
5434 case ARM::VLD2LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VLD2LNd16_UPD;
5435 case ARM::VLD2LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VLD2LNd32_UPD;
5436 case ARM::VLD2LNqWB_fixed_Asm_16: Spacing = 1; return ARM::VLD2LNq16_UPD;
5437 case ARM::VLD2LNqWB_fixed_Asm_32: Spacing = 2; return ARM::VLD2LNq32_UPD;
5438 case ARM::VLD2LNdWB_register_Asm_8: Spacing = 1; return ARM::VLD2LNd8_UPD;
5439 case ARM::VLD2LNdWB_register_Asm_16: Spacing = 1; return ARM::VLD2LNd16_UPD;
5440 case ARM::VLD2LNdWB_register_Asm_32: Spacing = 1; return ARM::VLD2LNd32_UPD;
5441 case ARM::VLD2LNqWB_register_Asm_16: Spacing = 2; return ARM::VLD2LNq16_UPD;
5442 case ARM::VLD2LNqWB_register_Asm_32: Spacing = 2; return ARM::VLD2LNq32_UPD;
5443 case ARM::VLD2LNdAsm_8: Spacing = 1; return ARM::VLD2LNd8;
5444 case ARM::VLD2LNdAsm_16: Spacing = 1; return ARM::VLD2LNd16;
5445 case ARM::VLD2LNdAsm_32: Spacing = 1; return ARM::VLD2LNd32;
5446 case ARM::VLD2LNqAsm_16: Spacing = 2; return ARM::VLD2LNq16;
5447 case ARM::VLD2LNqAsm_32: Spacing = 2; return ARM::VLD2LNq32;
Jim Grosbach3a678af2012-01-23 21:53:26 +00005448
Jim Grosbach5e59f7e2012-01-24 23:47:04 +00005449 // VLD3DUP
5450 case ARM::VLD3DUPdWB_fixed_Asm_8: Spacing = 1; return ARM::VLD3DUPd8_UPD;
5451 case ARM::VLD3DUPdWB_fixed_Asm_16: Spacing = 1; return ARM::VLD3DUPd16_UPD;
5452 case ARM::VLD3DUPdWB_fixed_Asm_32: Spacing = 1; return ARM::VLD3DUPd32_UPD;
5453 case ARM::VLD3DUPqWB_fixed_Asm_8: Spacing = 1; return ARM::VLD3DUPq8_UPD;
5454 case ARM::VLD3DUPqWB_fixed_Asm_16: Spacing = 1; return ARM::VLD3DUPq16_UPD;
5455 case ARM::VLD3DUPqWB_fixed_Asm_32: Spacing = 2; return ARM::VLD3DUPq32_UPD;
5456 case ARM::VLD3DUPdWB_register_Asm_8: Spacing = 1; return ARM::VLD3DUPd8_UPD;
5457 case ARM::VLD3DUPdWB_register_Asm_16: Spacing = 1; return ARM::VLD3DUPd16_UPD;
5458 case ARM::VLD3DUPdWB_register_Asm_32: Spacing = 1; return ARM::VLD3DUPd32_UPD;
5459 case ARM::VLD3DUPqWB_register_Asm_8: Spacing = 2; return ARM::VLD3DUPq8_UPD;
5460 case ARM::VLD3DUPqWB_register_Asm_16: Spacing = 2; return ARM::VLD3DUPq16_UPD;
5461 case ARM::VLD3DUPqWB_register_Asm_32: Spacing = 2; return ARM::VLD3DUPq32_UPD;
5462 case ARM::VLD3DUPdAsm_8: Spacing = 1; return ARM::VLD3DUPd8;
5463 case ARM::VLD3DUPdAsm_16: Spacing = 1; return ARM::VLD3DUPd16;
5464 case ARM::VLD3DUPdAsm_32: Spacing = 1; return ARM::VLD3DUPd32;
5465 case ARM::VLD3DUPqAsm_8: Spacing = 2; return ARM::VLD3DUPq8;
5466 case ARM::VLD3DUPqAsm_16: Spacing = 2; return ARM::VLD3DUPq16;
5467 case ARM::VLD3DUPqAsm_32: Spacing = 2; return ARM::VLD3DUPq32;
5468
Jim Grosbach3a678af2012-01-23 21:53:26 +00005469 // VLD3LN
Jim Grosbach7945ead2012-01-24 00:43:12 +00005470 case ARM::VLD3LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VLD3LNd8_UPD;
5471 case ARM::VLD3LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VLD3LNd16_UPD;
5472 case ARM::VLD3LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VLD3LNd32_UPD;
5473 case ARM::VLD3LNqWB_fixed_Asm_16: Spacing = 1; return ARM::VLD3LNq16_UPD;
5474 case ARM::VLD3LNqWB_fixed_Asm_32: Spacing = 2; return ARM::VLD3LNq32_UPD;
5475 case ARM::VLD3LNdWB_register_Asm_8: Spacing = 1; return ARM::VLD3LNd8_UPD;
5476 case ARM::VLD3LNdWB_register_Asm_16: Spacing = 1; return ARM::VLD3LNd16_UPD;
5477 case ARM::VLD3LNdWB_register_Asm_32: Spacing = 1; return ARM::VLD3LNd32_UPD;
5478 case ARM::VLD3LNqWB_register_Asm_16: Spacing = 2; return ARM::VLD3LNq16_UPD;
5479 case ARM::VLD3LNqWB_register_Asm_32: Spacing = 2; return ARM::VLD3LNq32_UPD;
5480 case ARM::VLD3LNdAsm_8: Spacing = 1; return ARM::VLD3LNd8;
5481 case ARM::VLD3LNdAsm_16: Spacing = 1; return ARM::VLD3LNd16;
5482 case ARM::VLD3LNdAsm_32: Spacing = 1; return ARM::VLD3LNd32;
5483 case ARM::VLD3LNqAsm_16: Spacing = 2; return ARM::VLD3LNq16;
5484 case ARM::VLD3LNqAsm_32: Spacing = 2; return ARM::VLD3LNq32;
Jim Grosbachc387fc62012-01-23 23:20:46 +00005485
5486 // VLD3
Jim Grosbach7945ead2012-01-24 00:43:12 +00005487 case ARM::VLD3dWB_fixed_Asm_8: Spacing = 1; return ARM::VLD3d8_UPD;
5488 case ARM::VLD3dWB_fixed_Asm_16: Spacing = 1; return ARM::VLD3d16_UPD;
5489 case ARM::VLD3dWB_fixed_Asm_32: Spacing = 1; return ARM::VLD3d32_UPD;
5490 case ARM::VLD3qWB_fixed_Asm_8: Spacing = 2; return ARM::VLD3q8_UPD;
5491 case ARM::VLD3qWB_fixed_Asm_16: Spacing = 2; return ARM::VLD3q16_UPD;
5492 case ARM::VLD3qWB_fixed_Asm_32: Spacing = 2; return ARM::VLD3q32_UPD;
5493 case ARM::VLD3dWB_register_Asm_8: Spacing = 1; return ARM::VLD3d8_UPD;
5494 case ARM::VLD3dWB_register_Asm_16: Spacing = 1; return ARM::VLD3d16_UPD;
5495 case ARM::VLD3dWB_register_Asm_32: Spacing = 1; return ARM::VLD3d32_UPD;
5496 case ARM::VLD3qWB_register_Asm_8: Spacing = 2; return ARM::VLD3q8_UPD;
5497 case ARM::VLD3qWB_register_Asm_16: Spacing = 2; return ARM::VLD3q16_UPD;
5498 case ARM::VLD3qWB_register_Asm_32: Spacing = 2; return ARM::VLD3q32_UPD;
5499 case ARM::VLD3dAsm_8: Spacing = 1; return ARM::VLD3d8;
5500 case ARM::VLD3dAsm_16: Spacing = 1; return ARM::VLD3d16;
5501 case ARM::VLD3dAsm_32: Spacing = 1; return ARM::VLD3d32;
5502 case ARM::VLD3qAsm_8: Spacing = 2; return ARM::VLD3q8;
5503 case ARM::VLD3qAsm_16: Spacing = 2; return ARM::VLD3q16;
5504 case ARM::VLD3qAsm_32: Spacing = 2; return ARM::VLD3q32;
Jim Grosbach8abe7e32012-01-24 00:43:17 +00005505
Jim Grosbache983a132012-01-24 18:37:25 +00005506 // VLD4LN
5507 case ARM::VLD4LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VLD4LNd8_UPD;
5508 case ARM::VLD4LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VLD4LNd16_UPD;
5509 case ARM::VLD4LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VLD4LNd32_UPD;
5510 case ARM::VLD4LNqWB_fixed_Asm_16: Spacing = 1; return ARM::VLD4LNq16_UPD;
5511 case ARM::VLD4LNqWB_fixed_Asm_32: Spacing = 2; return ARM::VLD4LNq32_UPD;
5512 case ARM::VLD4LNdWB_register_Asm_8: Spacing = 1; return ARM::VLD4LNd8_UPD;
5513 case ARM::VLD4LNdWB_register_Asm_16: Spacing = 1; return ARM::VLD4LNd16_UPD;
5514 case ARM::VLD4LNdWB_register_Asm_32: Spacing = 1; return ARM::VLD4LNd32_UPD;
5515 case ARM::VLD4LNqWB_register_Asm_16: Spacing = 2; return ARM::VLD4LNq16_UPD;
5516 case ARM::VLD4LNqWB_register_Asm_32: Spacing = 2; return ARM::VLD4LNq32_UPD;
5517 case ARM::VLD4LNdAsm_8: Spacing = 1; return ARM::VLD4LNd8;
5518 case ARM::VLD4LNdAsm_16: Spacing = 1; return ARM::VLD4LNd16;
5519 case ARM::VLD4LNdAsm_32: Spacing = 1; return ARM::VLD4LNd32;
5520 case ARM::VLD4LNqAsm_16: Spacing = 2; return ARM::VLD4LNq16;
5521 case ARM::VLD4LNqAsm_32: Spacing = 2; return ARM::VLD4LNq32;
5522
Jim Grosbacha57a36a2012-01-25 00:01:08 +00005523 // VLD4DUP
5524 case ARM::VLD4DUPdWB_fixed_Asm_8: Spacing = 1; return ARM::VLD4DUPd8_UPD;
5525 case ARM::VLD4DUPdWB_fixed_Asm_16: Spacing = 1; return ARM::VLD4DUPd16_UPD;
5526 case ARM::VLD4DUPdWB_fixed_Asm_32: Spacing = 1; return ARM::VLD4DUPd32_UPD;
5527 case ARM::VLD4DUPqWB_fixed_Asm_8: Spacing = 1; return ARM::VLD4DUPq8_UPD;
5528 case ARM::VLD4DUPqWB_fixed_Asm_16: Spacing = 1; return ARM::VLD4DUPq16_UPD;
5529 case ARM::VLD4DUPqWB_fixed_Asm_32: Spacing = 2; return ARM::VLD4DUPq32_UPD;
5530 case ARM::VLD4DUPdWB_register_Asm_8: Spacing = 1; return ARM::VLD4DUPd8_UPD;
5531 case ARM::VLD4DUPdWB_register_Asm_16: Spacing = 1; return ARM::VLD4DUPd16_UPD;
5532 case ARM::VLD4DUPdWB_register_Asm_32: Spacing = 1; return ARM::VLD4DUPd32_UPD;
5533 case ARM::VLD4DUPqWB_register_Asm_8: Spacing = 2; return ARM::VLD4DUPq8_UPD;
5534 case ARM::VLD4DUPqWB_register_Asm_16: Spacing = 2; return ARM::VLD4DUPq16_UPD;
5535 case ARM::VLD4DUPqWB_register_Asm_32: Spacing = 2; return ARM::VLD4DUPq32_UPD;
5536 case ARM::VLD4DUPdAsm_8: Spacing = 1; return ARM::VLD4DUPd8;
5537 case ARM::VLD4DUPdAsm_16: Spacing = 1; return ARM::VLD4DUPd16;
5538 case ARM::VLD4DUPdAsm_32: Spacing = 1; return ARM::VLD4DUPd32;
5539 case ARM::VLD4DUPqAsm_8: Spacing = 2; return ARM::VLD4DUPq8;
5540 case ARM::VLD4DUPqAsm_16: Spacing = 2; return ARM::VLD4DUPq16;
5541 case ARM::VLD4DUPqAsm_32: Spacing = 2; return ARM::VLD4DUPq32;
5542
Jim Grosbach8abe7e32012-01-24 00:43:17 +00005543 // VLD4
5544 case ARM::VLD4dWB_fixed_Asm_8: Spacing = 1; return ARM::VLD4d8_UPD;
5545 case ARM::VLD4dWB_fixed_Asm_16: Spacing = 1; return ARM::VLD4d16_UPD;
5546 case ARM::VLD4dWB_fixed_Asm_32: Spacing = 1; return ARM::VLD4d32_UPD;
5547 case ARM::VLD4qWB_fixed_Asm_8: Spacing = 2; return ARM::VLD4q8_UPD;
5548 case ARM::VLD4qWB_fixed_Asm_16: Spacing = 2; return ARM::VLD4q16_UPD;
5549 case ARM::VLD4qWB_fixed_Asm_32: Spacing = 2; return ARM::VLD4q32_UPD;
5550 case ARM::VLD4dWB_register_Asm_8: Spacing = 1; return ARM::VLD4d8_UPD;
5551 case ARM::VLD4dWB_register_Asm_16: Spacing = 1; return ARM::VLD4d16_UPD;
5552 case ARM::VLD4dWB_register_Asm_32: Spacing = 1; return ARM::VLD4d32_UPD;
5553 case ARM::VLD4qWB_register_Asm_8: Spacing = 2; return ARM::VLD4q8_UPD;
5554 case ARM::VLD4qWB_register_Asm_16: Spacing = 2; return ARM::VLD4q16_UPD;
5555 case ARM::VLD4qWB_register_Asm_32: Spacing = 2; return ARM::VLD4q32_UPD;
5556 case ARM::VLD4dAsm_8: Spacing = 1; return ARM::VLD4d8;
5557 case ARM::VLD4dAsm_16: Spacing = 1; return ARM::VLD4d16;
5558 case ARM::VLD4dAsm_32: Spacing = 1; return ARM::VLD4d32;
5559 case ARM::VLD4qAsm_8: Spacing = 2; return ARM::VLD4q8;
5560 case ARM::VLD4qAsm_16: Spacing = 2; return ARM::VLD4q16;
5561 case ARM::VLD4qAsm_32: Spacing = 2; return ARM::VLD4q32;
Jim Grosbach7636bf62011-12-02 00:35:16 +00005562 }
5563}
5564
Jim Grosbach83ec8772011-11-10 23:42:14 +00005565bool ARMAsmParser::
Jim Grosbachf8fce712011-08-11 17:35:48 +00005566processInstruction(MCInst &Inst,
5567 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
5568 switch (Inst.getOpcode()) {
Jim Grosbach0b4c6732012-01-18 22:46:46 +00005569 // Aliases for alternate PC+imm syntax of LDR instructions.
5570 case ARM::t2LDRpcrel:
5571 Inst.setOpcode(ARM::t2LDRpci);
5572 return true;
5573 case ARM::t2LDRBpcrel:
5574 Inst.setOpcode(ARM::t2LDRBpci);
5575 return true;
5576 case ARM::t2LDRHpcrel:
5577 Inst.setOpcode(ARM::t2LDRHpci);
5578 return true;
5579 case ARM::t2LDRSBpcrel:
5580 Inst.setOpcode(ARM::t2LDRSBpci);
5581 return true;
5582 case ARM::t2LDRSHpcrel:
5583 Inst.setOpcode(ARM::t2LDRSHpci);
5584 return true;
Jim Grosbach9b1b3902011-12-14 23:25:46 +00005585 // Handle NEON VST complex aliases.
Jim Grosbach8b31f952012-01-23 19:39:08 +00005586 case ARM::VST1LNdWB_register_Asm_8:
5587 case ARM::VST1LNdWB_register_Asm_16:
5588 case ARM::VST1LNdWB_register_Asm_32: {
Jim Grosbach84defb52011-12-02 22:34:51 +00005589 MCInst TmpInst;
5590 // Shuffle the operands around so the lane index operand is in the
5591 // right place.
Jim Grosbach5b484312011-12-20 20:46:29 +00005592 unsigned Spacing;
Jim Grosbachd7433e22012-01-23 23:45:44 +00005593 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
Jim Grosbach84defb52011-12-02 22:34:51 +00005594 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
5595 TmpInst.addOperand(Inst.getOperand(2)); // Rn
5596 TmpInst.addOperand(Inst.getOperand(3)); // alignment
5597 TmpInst.addOperand(Inst.getOperand(4)); // Rm
5598 TmpInst.addOperand(Inst.getOperand(0)); // Vd
5599 TmpInst.addOperand(Inst.getOperand(1)); // lane
5600 TmpInst.addOperand(Inst.getOperand(5)); // CondCode
5601 TmpInst.addOperand(Inst.getOperand(6));
5602 Inst = TmpInst;
5603 return true;
5604 }
Jim Grosbach9b1b3902011-12-14 23:25:46 +00005605
Jim Grosbach8b31f952012-01-23 19:39:08 +00005606 case ARM::VST2LNdWB_register_Asm_8:
5607 case ARM::VST2LNdWB_register_Asm_16:
5608 case ARM::VST2LNdWB_register_Asm_32:
5609 case ARM::VST2LNqWB_register_Asm_16:
5610 case ARM::VST2LNqWB_register_Asm_32: {
Jim Grosbach9b1b3902011-12-14 23:25:46 +00005611 MCInst TmpInst;
5612 // Shuffle the operands around so the lane index operand is in the
5613 // right place.
Jim Grosbach5b484312011-12-20 20:46:29 +00005614 unsigned Spacing;
Jim Grosbachd7433e22012-01-23 23:45:44 +00005615 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
Jim Grosbach9b1b3902011-12-14 23:25:46 +00005616 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
5617 TmpInst.addOperand(Inst.getOperand(2)); // Rn
5618 TmpInst.addOperand(Inst.getOperand(3)); // alignment
5619 TmpInst.addOperand(Inst.getOperand(4)); // Rm
5620 TmpInst.addOperand(Inst.getOperand(0)); // Vd
Jim Grosbach5b484312011-12-20 20:46:29 +00005621 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5622 Spacing));
Jim Grosbach9b1b3902011-12-14 23:25:46 +00005623 TmpInst.addOperand(Inst.getOperand(1)); // lane
5624 TmpInst.addOperand(Inst.getOperand(5)); // CondCode
5625 TmpInst.addOperand(Inst.getOperand(6));
5626 Inst = TmpInst;
5627 return true;
5628 }
Jim Grosbach4adb1822012-01-24 00:07:41 +00005629
5630 case ARM::VST3LNdWB_register_Asm_8:
5631 case ARM::VST3LNdWB_register_Asm_16:
5632 case ARM::VST3LNdWB_register_Asm_32:
5633 case ARM::VST3LNqWB_register_Asm_16:
5634 case ARM::VST3LNqWB_register_Asm_32: {
5635 MCInst TmpInst;
5636 // Shuffle the operands around so the lane index operand is in the
5637 // right place.
5638 unsigned Spacing;
5639 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
5640 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
5641 TmpInst.addOperand(Inst.getOperand(2)); // Rn
5642 TmpInst.addOperand(Inst.getOperand(3)); // alignment
5643 TmpInst.addOperand(Inst.getOperand(4)); // Rm
5644 TmpInst.addOperand(Inst.getOperand(0)); // Vd
5645 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5646 Spacing));
5647 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5648 Spacing * 2));
5649 TmpInst.addOperand(Inst.getOperand(1)); // lane
5650 TmpInst.addOperand(Inst.getOperand(5)); // CondCode
5651 TmpInst.addOperand(Inst.getOperand(6));
5652 Inst = TmpInst;
5653 return true;
5654 }
5655
Jim Grosbach88a54de2012-01-24 18:53:13 +00005656 case ARM::VST4LNdWB_register_Asm_8:
5657 case ARM::VST4LNdWB_register_Asm_16:
5658 case ARM::VST4LNdWB_register_Asm_32:
5659 case ARM::VST4LNqWB_register_Asm_16:
5660 case ARM::VST4LNqWB_register_Asm_32: {
5661 MCInst TmpInst;
5662 // Shuffle the operands around so the lane index operand is in the
5663 // right place.
5664 unsigned Spacing;
5665 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
5666 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
5667 TmpInst.addOperand(Inst.getOperand(2)); // Rn
5668 TmpInst.addOperand(Inst.getOperand(3)); // alignment
5669 TmpInst.addOperand(Inst.getOperand(4)); // Rm
5670 TmpInst.addOperand(Inst.getOperand(0)); // Vd
5671 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5672 Spacing));
5673 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5674 Spacing * 2));
5675 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5676 Spacing * 3));
5677 TmpInst.addOperand(Inst.getOperand(1)); // lane
5678 TmpInst.addOperand(Inst.getOperand(5)); // CondCode
5679 TmpInst.addOperand(Inst.getOperand(6));
5680 Inst = TmpInst;
5681 return true;
5682 }
5683
Jim Grosbach8b31f952012-01-23 19:39:08 +00005684 case ARM::VST1LNdWB_fixed_Asm_8:
5685 case ARM::VST1LNdWB_fixed_Asm_16:
5686 case ARM::VST1LNdWB_fixed_Asm_32: {
Jim Grosbach84defb52011-12-02 22:34:51 +00005687 MCInst TmpInst;
5688 // Shuffle the operands around so the lane index operand is in the
5689 // right place.
Jim Grosbach5b484312011-12-20 20:46:29 +00005690 unsigned Spacing;
Jim Grosbachd7433e22012-01-23 23:45:44 +00005691 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
Jim Grosbach84defb52011-12-02 22:34:51 +00005692 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
5693 TmpInst.addOperand(Inst.getOperand(2)); // Rn
5694 TmpInst.addOperand(Inst.getOperand(3)); // alignment
5695 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
5696 TmpInst.addOperand(Inst.getOperand(0)); // Vd
5697 TmpInst.addOperand(Inst.getOperand(1)); // lane
5698 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
5699 TmpInst.addOperand(Inst.getOperand(5));
5700 Inst = TmpInst;
5701 return true;
5702 }
Jim Grosbach9b1b3902011-12-14 23:25:46 +00005703
Jim Grosbach8b31f952012-01-23 19:39:08 +00005704 case ARM::VST2LNdWB_fixed_Asm_8:
5705 case ARM::VST2LNdWB_fixed_Asm_16:
5706 case ARM::VST2LNdWB_fixed_Asm_32:
5707 case ARM::VST2LNqWB_fixed_Asm_16:
5708 case ARM::VST2LNqWB_fixed_Asm_32: {
Jim Grosbach9b1b3902011-12-14 23:25:46 +00005709 MCInst TmpInst;
5710 // Shuffle the operands around so the lane index operand is in the
5711 // right place.
Jim Grosbach5b484312011-12-20 20:46:29 +00005712 unsigned Spacing;
Jim Grosbachd7433e22012-01-23 23:45:44 +00005713 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
Jim Grosbach9b1b3902011-12-14 23:25:46 +00005714 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
5715 TmpInst.addOperand(Inst.getOperand(2)); // Rn
5716 TmpInst.addOperand(Inst.getOperand(3)); // alignment
5717 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
5718 TmpInst.addOperand(Inst.getOperand(0)); // Vd
Jim Grosbach5b484312011-12-20 20:46:29 +00005719 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5720 Spacing));
Jim Grosbach9b1b3902011-12-14 23:25:46 +00005721 TmpInst.addOperand(Inst.getOperand(1)); // lane
5722 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
5723 TmpInst.addOperand(Inst.getOperand(5));
5724 Inst = TmpInst;
5725 return true;
5726 }
Jim Grosbach4adb1822012-01-24 00:07:41 +00005727
5728 case ARM::VST3LNdWB_fixed_Asm_8:
5729 case ARM::VST3LNdWB_fixed_Asm_16:
5730 case ARM::VST3LNdWB_fixed_Asm_32:
5731 case ARM::VST3LNqWB_fixed_Asm_16:
5732 case ARM::VST3LNqWB_fixed_Asm_32: {
5733 MCInst TmpInst;
5734 // Shuffle the operands around so the lane index operand is in the
5735 // right place.
5736 unsigned Spacing;
5737 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
5738 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
5739 TmpInst.addOperand(Inst.getOperand(2)); // Rn
5740 TmpInst.addOperand(Inst.getOperand(3)); // alignment
5741 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
5742 TmpInst.addOperand(Inst.getOperand(0)); // Vd
5743 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5744 Spacing));
5745 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5746 Spacing * 2));
5747 TmpInst.addOperand(Inst.getOperand(1)); // lane
5748 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
5749 TmpInst.addOperand(Inst.getOperand(5));
5750 Inst = TmpInst;
5751 return true;
5752 }
5753
Jim Grosbach88a54de2012-01-24 18:53:13 +00005754 case ARM::VST4LNdWB_fixed_Asm_8:
5755 case ARM::VST4LNdWB_fixed_Asm_16:
5756 case ARM::VST4LNdWB_fixed_Asm_32:
5757 case ARM::VST4LNqWB_fixed_Asm_16:
5758 case ARM::VST4LNqWB_fixed_Asm_32: {
5759 MCInst TmpInst;
5760 // Shuffle the operands around so the lane index operand is in the
5761 // right place.
5762 unsigned Spacing;
5763 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
5764 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
5765 TmpInst.addOperand(Inst.getOperand(2)); // Rn
5766 TmpInst.addOperand(Inst.getOperand(3)); // alignment
5767 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
5768 TmpInst.addOperand(Inst.getOperand(0)); // Vd
5769 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5770 Spacing));
5771 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5772 Spacing * 2));
5773 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5774 Spacing * 3));
5775 TmpInst.addOperand(Inst.getOperand(1)); // lane
5776 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
5777 TmpInst.addOperand(Inst.getOperand(5));
5778 Inst = TmpInst;
5779 return true;
5780 }
5781
Jim Grosbach8b31f952012-01-23 19:39:08 +00005782 case ARM::VST1LNdAsm_8:
5783 case ARM::VST1LNdAsm_16:
5784 case ARM::VST1LNdAsm_32: {
Jim Grosbach84defb52011-12-02 22:34:51 +00005785 MCInst TmpInst;
5786 // Shuffle the operands around so the lane index operand is in the
5787 // right place.
Jim Grosbach5b484312011-12-20 20:46:29 +00005788 unsigned Spacing;
Jim Grosbachd7433e22012-01-23 23:45:44 +00005789 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
Jim Grosbach84defb52011-12-02 22:34:51 +00005790 TmpInst.addOperand(Inst.getOperand(2)); // Rn
5791 TmpInst.addOperand(Inst.getOperand(3)); // alignment
5792 TmpInst.addOperand(Inst.getOperand(0)); // Vd
5793 TmpInst.addOperand(Inst.getOperand(1)); // lane
5794 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
5795 TmpInst.addOperand(Inst.getOperand(5));
5796 Inst = TmpInst;
5797 return true;
5798 }
Jim Grosbach9b1b3902011-12-14 23:25:46 +00005799
Jim Grosbach8b31f952012-01-23 19:39:08 +00005800 case ARM::VST2LNdAsm_8:
5801 case ARM::VST2LNdAsm_16:
5802 case ARM::VST2LNdAsm_32:
5803 case ARM::VST2LNqAsm_16:
5804 case ARM::VST2LNqAsm_32: {
Jim Grosbach9b1b3902011-12-14 23:25:46 +00005805 MCInst TmpInst;
5806 // Shuffle the operands around so the lane index operand is in the
5807 // right place.
Jim Grosbach5b484312011-12-20 20:46:29 +00005808 unsigned Spacing;
Jim Grosbachd7433e22012-01-23 23:45:44 +00005809 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
Jim Grosbach9b1b3902011-12-14 23:25:46 +00005810 TmpInst.addOperand(Inst.getOperand(2)); // Rn
5811 TmpInst.addOperand(Inst.getOperand(3)); // alignment
5812 TmpInst.addOperand(Inst.getOperand(0)); // Vd
Jim Grosbach5b484312011-12-20 20:46:29 +00005813 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5814 Spacing));
Jim Grosbach9b1b3902011-12-14 23:25:46 +00005815 TmpInst.addOperand(Inst.getOperand(1)); // lane
5816 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
5817 TmpInst.addOperand(Inst.getOperand(5));
5818 Inst = TmpInst;
5819 return true;
5820 }
Jim Grosbach4adb1822012-01-24 00:07:41 +00005821
5822 case ARM::VST3LNdAsm_8:
5823 case ARM::VST3LNdAsm_16:
5824 case ARM::VST3LNdAsm_32:
5825 case ARM::VST3LNqAsm_16:
5826 case ARM::VST3LNqAsm_32: {
5827 MCInst TmpInst;
5828 // Shuffle the operands around so the lane index operand is in the
5829 // right place.
5830 unsigned Spacing;
5831 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
5832 TmpInst.addOperand(Inst.getOperand(2)); // Rn
5833 TmpInst.addOperand(Inst.getOperand(3)); // alignment
5834 TmpInst.addOperand(Inst.getOperand(0)); // Vd
5835 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5836 Spacing));
5837 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5838 Spacing * 2));
5839 TmpInst.addOperand(Inst.getOperand(1)); // lane
5840 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
5841 TmpInst.addOperand(Inst.getOperand(5));
5842 Inst = TmpInst;
5843 return true;
5844 }
5845
Jim Grosbach88a54de2012-01-24 18:53:13 +00005846 case ARM::VST4LNdAsm_8:
5847 case ARM::VST4LNdAsm_16:
5848 case ARM::VST4LNdAsm_32:
5849 case ARM::VST4LNqAsm_16:
5850 case ARM::VST4LNqAsm_32: {
5851 MCInst TmpInst;
5852 // Shuffle the operands around so the lane index operand is in the
5853 // right place.
5854 unsigned Spacing;
5855 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
5856 TmpInst.addOperand(Inst.getOperand(2)); // Rn
5857 TmpInst.addOperand(Inst.getOperand(3)); // alignment
5858 TmpInst.addOperand(Inst.getOperand(0)); // Vd
5859 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5860 Spacing));
5861 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5862 Spacing * 2));
5863 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5864 Spacing * 3));
5865 TmpInst.addOperand(Inst.getOperand(1)); // lane
5866 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
5867 TmpInst.addOperand(Inst.getOperand(5));
5868 Inst = TmpInst;
5869 return true;
5870 }
5871
Jim Grosbach9b1b3902011-12-14 23:25:46 +00005872 // Handle NEON VLD complex aliases.
Jim Grosbach8b31f952012-01-23 19:39:08 +00005873 case ARM::VLD1LNdWB_register_Asm_8:
5874 case ARM::VLD1LNdWB_register_Asm_16:
5875 case ARM::VLD1LNdWB_register_Asm_32: {
Jim Grosbach872eedb2011-12-02 22:01:52 +00005876 MCInst TmpInst;
5877 // Shuffle the operands around so the lane index operand is in the
5878 // right place.
Jim Grosbach95fad1c2011-12-20 19:21:26 +00005879 unsigned Spacing;
Jim Grosbachd7433e22012-01-23 23:45:44 +00005880 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbach872eedb2011-12-02 22:01:52 +00005881 TmpInst.addOperand(Inst.getOperand(0)); // Vd
5882 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
5883 TmpInst.addOperand(Inst.getOperand(2)); // Rn
5884 TmpInst.addOperand(Inst.getOperand(3)); // alignment
5885 TmpInst.addOperand(Inst.getOperand(4)); // Rm
5886 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
5887 TmpInst.addOperand(Inst.getOperand(1)); // lane
5888 TmpInst.addOperand(Inst.getOperand(5)); // CondCode
5889 TmpInst.addOperand(Inst.getOperand(6));
5890 Inst = TmpInst;
5891 return true;
5892 }
Jim Grosbach9b1b3902011-12-14 23:25:46 +00005893
Jim Grosbach8b31f952012-01-23 19:39:08 +00005894 case ARM::VLD2LNdWB_register_Asm_8:
5895 case ARM::VLD2LNdWB_register_Asm_16:
5896 case ARM::VLD2LNdWB_register_Asm_32:
5897 case ARM::VLD2LNqWB_register_Asm_16:
5898 case ARM::VLD2LNqWB_register_Asm_32: {
Jim Grosbach9b1b3902011-12-14 23:25:46 +00005899 MCInst TmpInst;
5900 // Shuffle the operands around so the lane index operand is in the
5901 // right place.
Jim Grosbach95fad1c2011-12-20 19:21:26 +00005902 unsigned Spacing;
Jim Grosbachd7433e22012-01-23 23:45:44 +00005903 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbach9b1b3902011-12-14 23:25:46 +00005904 TmpInst.addOperand(Inst.getOperand(0)); // Vd
Jim Grosbach95fad1c2011-12-20 19:21:26 +00005905 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5906 Spacing));
Jim Grosbach9b1b3902011-12-14 23:25:46 +00005907 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
5908 TmpInst.addOperand(Inst.getOperand(2)); // Rn
5909 TmpInst.addOperand(Inst.getOperand(3)); // alignment
5910 TmpInst.addOperand(Inst.getOperand(4)); // Rm
5911 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
Jim Grosbach95fad1c2011-12-20 19:21:26 +00005912 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5913 Spacing));
Jim Grosbach9b1b3902011-12-14 23:25:46 +00005914 TmpInst.addOperand(Inst.getOperand(1)); // lane
5915 TmpInst.addOperand(Inst.getOperand(5)); // CondCode
5916 TmpInst.addOperand(Inst.getOperand(6));
5917 Inst = TmpInst;
5918 return true;
5919 }
5920
Jim Grosbach3a678af2012-01-23 21:53:26 +00005921 case ARM::VLD3LNdWB_register_Asm_8:
5922 case ARM::VLD3LNdWB_register_Asm_16:
5923 case ARM::VLD3LNdWB_register_Asm_32:
5924 case ARM::VLD3LNqWB_register_Asm_16:
5925 case ARM::VLD3LNqWB_register_Asm_32: {
5926 MCInst TmpInst;
5927 // Shuffle the operands around so the lane index operand is in the
5928 // right place.
5929 unsigned Spacing;
Jim Grosbachd7433e22012-01-23 23:45:44 +00005930 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbach3a678af2012-01-23 21:53:26 +00005931 TmpInst.addOperand(Inst.getOperand(0)); // Vd
5932 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5933 Spacing));
5934 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
Jim Grosbachc387fc62012-01-23 23:20:46 +00005935 Spacing * 2));
Jim Grosbach3a678af2012-01-23 21:53:26 +00005936 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
5937 TmpInst.addOperand(Inst.getOperand(2)); // Rn
5938 TmpInst.addOperand(Inst.getOperand(3)); // alignment
5939 TmpInst.addOperand(Inst.getOperand(4)); // Rm
5940 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
5941 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5942 Spacing));
5943 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
Jim Grosbachc387fc62012-01-23 23:20:46 +00005944 Spacing * 2));
Jim Grosbach3a678af2012-01-23 21:53:26 +00005945 TmpInst.addOperand(Inst.getOperand(1)); // lane
5946 TmpInst.addOperand(Inst.getOperand(5)); // CondCode
5947 TmpInst.addOperand(Inst.getOperand(6));
5948 Inst = TmpInst;
5949 return true;
5950 }
5951
Jim Grosbache983a132012-01-24 18:37:25 +00005952 case ARM::VLD4LNdWB_register_Asm_8:
5953 case ARM::VLD4LNdWB_register_Asm_16:
5954 case ARM::VLD4LNdWB_register_Asm_32:
5955 case ARM::VLD4LNqWB_register_Asm_16:
5956 case ARM::VLD4LNqWB_register_Asm_32: {
5957 MCInst TmpInst;
5958 // Shuffle the operands around so the lane index operand is in the
5959 // right place.
5960 unsigned Spacing;
5961 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
5962 TmpInst.addOperand(Inst.getOperand(0)); // Vd
5963 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5964 Spacing));
5965 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5966 Spacing * 2));
5967 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5968 Spacing * 3));
5969 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
5970 TmpInst.addOperand(Inst.getOperand(2)); // Rn
5971 TmpInst.addOperand(Inst.getOperand(3)); // alignment
5972 TmpInst.addOperand(Inst.getOperand(4)); // Rm
5973 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
5974 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5975 Spacing));
5976 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5977 Spacing * 2));
5978 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5979 Spacing * 3));
5980 TmpInst.addOperand(Inst.getOperand(1)); // lane
5981 TmpInst.addOperand(Inst.getOperand(5)); // CondCode
5982 TmpInst.addOperand(Inst.getOperand(6));
5983 Inst = TmpInst;
5984 return true;
5985 }
5986
Jim Grosbach8b31f952012-01-23 19:39:08 +00005987 case ARM::VLD1LNdWB_fixed_Asm_8:
5988 case ARM::VLD1LNdWB_fixed_Asm_16:
5989 case ARM::VLD1LNdWB_fixed_Asm_32: {
Jim Grosbach872eedb2011-12-02 22:01:52 +00005990 MCInst TmpInst;
5991 // Shuffle the operands around so the lane index operand is in the
5992 // right place.
Jim Grosbach95fad1c2011-12-20 19:21:26 +00005993 unsigned Spacing;
Jim Grosbachd7433e22012-01-23 23:45:44 +00005994 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbach872eedb2011-12-02 22:01:52 +00005995 TmpInst.addOperand(Inst.getOperand(0)); // Vd
5996 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
5997 TmpInst.addOperand(Inst.getOperand(2)); // Rn
5998 TmpInst.addOperand(Inst.getOperand(3)); // alignment
5999 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
6000 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
6001 TmpInst.addOperand(Inst.getOperand(1)); // lane
6002 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6003 TmpInst.addOperand(Inst.getOperand(5));
6004 Inst = TmpInst;
6005 return true;
6006 }
Jim Grosbach9b1b3902011-12-14 23:25:46 +00006007
Jim Grosbach8b31f952012-01-23 19:39:08 +00006008 case ARM::VLD2LNdWB_fixed_Asm_8:
6009 case ARM::VLD2LNdWB_fixed_Asm_16:
6010 case ARM::VLD2LNdWB_fixed_Asm_32:
6011 case ARM::VLD2LNqWB_fixed_Asm_16:
6012 case ARM::VLD2LNqWB_fixed_Asm_32: {
Jim Grosbach9b1b3902011-12-14 23:25:46 +00006013 MCInst TmpInst;
6014 // Shuffle the operands around so the lane index operand is in the
6015 // right place.
Jim Grosbach95fad1c2011-12-20 19:21:26 +00006016 unsigned Spacing;
Jim Grosbachd7433e22012-01-23 23:45:44 +00006017 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbach9b1b3902011-12-14 23:25:46 +00006018 TmpInst.addOperand(Inst.getOperand(0)); // Vd
Jim Grosbach95fad1c2011-12-20 19:21:26 +00006019 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6020 Spacing));
Jim Grosbach9b1b3902011-12-14 23:25:46 +00006021 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
6022 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6023 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6024 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
6025 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
Jim Grosbach95fad1c2011-12-20 19:21:26 +00006026 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6027 Spacing));
Jim Grosbach9b1b3902011-12-14 23:25:46 +00006028 TmpInst.addOperand(Inst.getOperand(1)); // lane
6029 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6030 TmpInst.addOperand(Inst.getOperand(5));
6031 Inst = TmpInst;
6032 return true;
6033 }
6034
Jim Grosbach3a678af2012-01-23 21:53:26 +00006035 case ARM::VLD3LNdWB_fixed_Asm_8:
6036 case ARM::VLD3LNdWB_fixed_Asm_16:
6037 case ARM::VLD3LNdWB_fixed_Asm_32:
6038 case ARM::VLD3LNqWB_fixed_Asm_16:
6039 case ARM::VLD3LNqWB_fixed_Asm_32: {
6040 MCInst TmpInst;
6041 // Shuffle the operands around so the lane index operand is in the
6042 // right place.
6043 unsigned Spacing;
Jim Grosbachd7433e22012-01-23 23:45:44 +00006044 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbach3a678af2012-01-23 21:53:26 +00006045 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6046 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6047 Spacing));
6048 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
Jim Grosbachc387fc62012-01-23 23:20:46 +00006049 Spacing * 2));
Jim Grosbach3a678af2012-01-23 21:53:26 +00006050 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
6051 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6052 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6053 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
6054 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
6055 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6056 Spacing));
6057 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
Jim Grosbachc387fc62012-01-23 23:20:46 +00006058 Spacing * 2));
Jim Grosbach3a678af2012-01-23 21:53:26 +00006059 TmpInst.addOperand(Inst.getOperand(1)); // lane
6060 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6061 TmpInst.addOperand(Inst.getOperand(5));
6062 Inst = TmpInst;
6063 return true;
6064 }
6065
Jim Grosbache983a132012-01-24 18:37:25 +00006066 case ARM::VLD4LNdWB_fixed_Asm_8:
6067 case ARM::VLD4LNdWB_fixed_Asm_16:
6068 case ARM::VLD4LNdWB_fixed_Asm_32:
6069 case ARM::VLD4LNqWB_fixed_Asm_16:
6070 case ARM::VLD4LNqWB_fixed_Asm_32: {
6071 MCInst TmpInst;
6072 // Shuffle the operands around so the lane index operand is in the
6073 // right place.
6074 unsigned Spacing;
6075 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
6076 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6077 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6078 Spacing));
6079 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6080 Spacing * 2));
6081 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6082 Spacing * 3));
6083 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
6084 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6085 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6086 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
6087 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
6088 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6089 Spacing));
6090 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6091 Spacing * 2));
6092 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6093 Spacing * 3));
6094 TmpInst.addOperand(Inst.getOperand(1)); // lane
6095 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6096 TmpInst.addOperand(Inst.getOperand(5));
6097 Inst = TmpInst;
6098 return true;
6099 }
6100
Jim Grosbach8b31f952012-01-23 19:39:08 +00006101 case ARM::VLD1LNdAsm_8:
6102 case ARM::VLD1LNdAsm_16:
6103 case ARM::VLD1LNdAsm_32: {
Jim Grosbach7636bf62011-12-02 00:35:16 +00006104 MCInst TmpInst;
6105 // Shuffle the operands around so the lane index operand is in the
6106 // right place.
Jim Grosbach95fad1c2011-12-20 19:21:26 +00006107 unsigned Spacing;
Jim Grosbachd7433e22012-01-23 23:45:44 +00006108 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbach7636bf62011-12-02 00:35:16 +00006109 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6110 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6111 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6112 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
6113 TmpInst.addOperand(Inst.getOperand(1)); // lane
6114 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6115 TmpInst.addOperand(Inst.getOperand(5));
6116 Inst = TmpInst;
6117 return true;
6118 }
Jim Grosbach9b1b3902011-12-14 23:25:46 +00006119
Jim Grosbach8b31f952012-01-23 19:39:08 +00006120 case ARM::VLD2LNdAsm_8:
6121 case ARM::VLD2LNdAsm_16:
6122 case ARM::VLD2LNdAsm_32:
6123 case ARM::VLD2LNqAsm_16:
6124 case ARM::VLD2LNqAsm_32: {
Jim Grosbach9b1b3902011-12-14 23:25:46 +00006125 MCInst TmpInst;
6126 // Shuffle the operands around so the lane index operand is in the
6127 // right place.
Jim Grosbach95fad1c2011-12-20 19:21:26 +00006128 unsigned Spacing;
Jim Grosbachd7433e22012-01-23 23:45:44 +00006129 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbach9b1b3902011-12-14 23:25:46 +00006130 TmpInst.addOperand(Inst.getOperand(0)); // Vd
Jim Grosbach95fad1c2011-12-20 19:21:26 +00006131 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6132 Spacing));
Jim Grosbach9b1b3902011-12-14 23:25:46 +00006133 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6134 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6135 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
Jim Grosbach95fad1c2011-12-20 19:21:26 +00006136 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6137 Spacing));
Jim Grosbach9b1b3902011-12-14 23:25:46 +00006138 TmpInst.addOperand(Inst.getOperand(1)); // lane
6139 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6140 TmpInst.addOperand(Inst.getOperand(5));
6141 Inst = TmpInst;
6142 return true;
6143 }
Jim Grosbach3a678af2012-01-23 21:53:26 +00006144
6145 case ARM::VLD3LNdAsm_8:
6146 case ARM::VLD3LNdAsm_16:
6147 case ARM::VLD3LNdAsm_32:
6148 case ARM::VLD3LNqAsm_16:
6149 case ARM::VLD3LNqAsm_32: {
6150 MCInst TmpInst;
6151 // Shuffle the operands around so the lane index operand is in the
6152 // right place.
6153 unsigned Spacing;
Jim Grosbachd7433e22012-01-23 23:45:44 +00006154 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbach3a678af2012-01-23 21:53:26 +00006155 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6156 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6157 Spacing));
6158 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
Jim Grosbachc387fc62012-01-23 23:20:46 +00006159 Spacing * 2));
Jim Grosbach3a678af2012-01-23 21:53:26 +00006160 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6161 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6162 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
6163 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6164 Spacing));
6165 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
Jim Grosbachc387fc62012-01-23 23:20:46 +00006166 Spacing * 2));
Jim Grosbach3a678af2012-01-23 21:53:26 +00006167 TmpInst.addOperand(Inst.getOperand(1)); // lane
6168 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6169 TmpInst.addOperand(Inst.getOperand(5));
6170 Inst = TmpInst;
6171 return true;
6172 }
6173
Jim Grosbache983a132012-01-24 18:37:25 +00006174 case ARM::VLD4LNdAsm_8:
6175 case ARM::VLD4LNdAsm_16:
6176 case ARM::VLD4LNdAsm_32:
6177 case ARM::VLD4LNqAsm_16:
6178 case ARM::VLD4LNqAsm_32: {
6179 MCInst TmpInst;
6180 // Shuffle the operands around so the lane index operand is in the
6181 // right place.
6182 unsigned Spacing;
6183 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
6184 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6185 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6186 Spacing));
6187 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6188 Spacing * 2));
6189 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6190 Spacing * 3));
6191 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6192 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6193 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
6194 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6195 Spacing));
6196 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6197 Spacing * 2));
6198 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6199 Spacing * 3));
6200 TmpInst.addOperand(Inst.getOperand(1)); // lane
6201 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6202 TmpInst.addOperand(Inst.getOperand(5));
6203 Inst = TmpInst;
6204 return true;
6205 }
6206
Jim Grosbach5e59f7e2012-01-24 23:47:04 +00006207 // VLD3DUP single 3-element structure to all lanes instructions.
6208 case ARM::VLD3DUPdAsm_8:
6209 case ARM::VLD3DUPdAsm_16:
6210 case ARM::VLD3DUPdAsm_32:
6211 case ARM::VLD3DUPqAsm_8:
6212 case ARM::VLD3DUPqAsm_16:
6213 case ARM::VLD3DUPqAsm_32: {
6214 MCInst TmpInst;
6215 unsigned Spacing;
6216 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
6217 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6218 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6219 Spacing));
6220 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6221 Spacing * 2));
6222 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6223 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6224 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
6225 TmpInst.addOperand(Inst.getOperand(4));
6226 Inst = TmpInst;
6227 return true;
6228 }
6229
6230 case ARM::VLD3DUPdWB_fixed_Asm_8:
6231 case ARM::VLD3DUPdWB_fixed_Asm_16:
6232 case ARM::VLD3DUPdWB_fixed_Asm_32:
6233 case ARM::VLD3DUPqWB_fixed_Asm_8:
6234 case ARM::VLD3DUPqWB_fixed_Asm_16:
6235 case ARM::VLD3DUPqWB_fixed_Asm_32: {
6236 MCInst TmpInst;
6237 unsigned Spacing;
6238 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
6239 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6240 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6241 Spacing));
6242 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6243 Spacing * 2));
6244 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6245 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
6246 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6247 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
6248 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
6249 TmpInst.addOperand(Inst.getOperand(4));
6250 Inst = TmpInst;
6251 return true;
6252 }
6253
6254 case ARM::VLD3DUPdWB_register_Asm_8:
6255 case ARM::VLD3DUPdWB_register_Asm_16:
6256 case ARM::VLD3DUPdWB_register_Asm_32:
6257 case ARM::VLD3DUPqWB_register_Asm_8:
6258 case ARM::VLD3DUPqWB_register_Asm_16:
6259 case ARM::VLD3DUPqWB_register_Asm_32: {
6260 MCInst TmpInst;
6261 unsigned Spacing;
6262 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
6263 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6264 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6265 Spacing));
6266 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6267 Spacing * 2));
6268 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6269 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
6270 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6271 TmpInst.addOperand(Inst.getOperand(3)); // Rm
6272 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6273 TmpInst.addOperand(Inst.getOperand(5));
6274 Inst = TmpInst;
6275 return true;
6276 }
6277
Jim Grosbachc387fc62012-01-23 23:20:46 +00006278 // VLD3 multiple 3-element structure instructions.
6279 case ARM::VLD3dAsm_8:
6280 case ARM::VLD3dAsm_16:
6281 case ARM::VLD3dAsm_32:
6282 case ARM::VLD3qAsm_8:
6283 case ARM::VLD3qAsm_16:
6284 case ARM::VLD3qAsm_32: {
6285 MCInst TmpInst;
6286 unsigned Spacing;
Jim Grosbachd7433e22012-01-23 23:45:44 +00006287 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbachc387fc62012-01-23 23:20:46 +00006288 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6289 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6290 Spacing));
6291 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6292 Spacing * 2));
6293 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6294 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6295 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
6296 TmpInst.addOperand(Inst.getOperand(4));
6297 Inst = TmpInst;
6298 return true;
6299 }
6300
6301 case ARM::VLD3dWB_fixed_Asm_8:
6302 case ARM::VLD3dWB_fixed_Asm_16:
6303 case ARM::VLD3dWB_fixed_Asm_32:
6304 case ARM::VLD3qWB_fixed_Asm_8:
6305 case ARM::VLD3qWB_fixed_Asm_16:
6306 case ARM::VLD3qWB_fixed_Asm_32: {
6307 MCInst TmpInst;
6308 unsigned Spacing;
Jim Grosbachd7433e22012-01-23 23:45:44 +00006309 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbachc387fc62012-01-23 23:20:46 +00006310 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6311 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6312 Spacing));
6313 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6314 Spacing * 2));
6315 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6316 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
6317 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6318 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
6319 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
6320 TmpInst.addOperand(Inst.getOperand(4));
6321 Inst = TmpInst;
6322 return true;
6323 }
6324
6325 case ARM::VLD3dWB_register_Asm_8:
6326 case ARM::VLD3dWB_register_Asm_16:
6327 case ARM::VLD3dWB_register_Asm_32:
6328 case ARM::VLD3qWB_register_Asm_8:
6329 case ARM::VLD3qWB_register_Asm_16:
6330 case ARM::VLD3qWB_register_Asm_32: {
6331 MCInst TmpInst;
6332 unsigned Spacing;
Jim Grosbachd7433e22012-01-23 23:45:44 +00006333 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbachc387fc62012-01-23 23:20:46 +00006334 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6335 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6336 Spacing));
6337 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6338 Spacing * 2));
6339 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6340 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
6341 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6342 TmpInst.addOperand(Inst.getOperand(3)); // Rm
6343 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6344 TmpInst.addOperand(Inst.getOperand(5));
6345 Inst = TmpInst;
6346 return true;
6347 }
6348
Jim Grosbacha57a36a2012-01-25 00:01:08 +00006349 // VLD4DUP single 3-element structure to all lanes instructions.
6350 case ARM::VLD4DUPdAsm_8:
6351 case ARM::VLD4DUPdAsm_16:
6352 case ARM::VLD4DUPdAsm_32:
6353 case ARM::VLD4DUPqAsm_8:
6354 case ARM::VLD4DUPqAsm_16:
6355 case ARM::VLD4DUPqAsm_32: {
6356 MCInst TmpInst;
6357 unsigned Spacing;
6358 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
6359 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6360 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6361 Spacing));
6362 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6363 Spacing * 2));
6364 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6365 Spacing * 3));
6366 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6367 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6368 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
6369 TmpInst.addOperand(Inst.getOperand(4));
6370 Inst = TmpInst;
6371 return true;
6372 }
6373
6374 case ARM::VLD4DUPdWB_fixed_Asm_8:
6375 case ARM::VLD4DUPdWB_fixed_Asm_16:
6376 case ARM::VLD4DUPdWB_fixed_Asm_32:
6377 case ARM::VLD4DUPqWB_fixed_Asm_8:
6378 case ARM::VLD4DUPqWB_fixed_Asm_16:
6379 case ARM::VLD4DUPqWB_fixed_Asm_32: {
6380 MCInst TmpInst;
6381 unsigned Spacing;
6382 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
6383 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6384 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6385 Spacing));
6386 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6387 Spacing * 2));
6388 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6389 Spacing * 3));
6390 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6391 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
6392 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6393 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
6394 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
6395 TmpInst.addOperand(Inst.getOperand(4));
6396 Inst = TmpInst;
6397 return true;
6398 }
6399
6400 case ARM::VLD4DUPdWB_register_Asm_8:
6401 case ARM::VLD4DUPdWB_register_Asm_16:
6402 case ARM::VLD4DUPdWB_register_Asm_32:
6403 case ARM::VLD4DUPqWB_register_Asm_8:
6404 case ARM::VLD4DUPqWB_register_Asm_16:
6405 case ARM::VLD4DUPqWB_register_Asm_32: {
6406 MCInst TmpInst;
6407 unsigned Spacing;
6408 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
6409 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6410 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6411 Spacing));
6412 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6413 Spacing * 2));
6414 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6415 Spacing * 3));
6416 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6417 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
6418 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6419 TmpInst.addOperand(Inst.getOperand(3)); // Rm
6420 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6421 TmpInst.addOperand(Inst.getOperand(5));
6422 Inst = TmpInst;
6423 return true;
6424 }
6425
6426 // VLD4 multiple 4-element structure instructions.
Jim Grosbach8abe7e32012-01-24 00:43:17 +00006427 case ARM::VLD4dAsm_8:
6428 case ARM::VLD4dAsm_16:
6429 case ARM::VLD4dAsm_32:
6430 case ARM::VLD4qAsm_8:
6431 case ARM::VLD4qAsm_16:
6432 case ARM::VLD4qAsm_32: {
6433 MCInst TmpInst;
6434 unsigned Spacing;
6435 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
6436 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6437 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6438 Spacing));
6439 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6440 Spacing * 2));
6441 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6442 Spacing * 3));
6443 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6444 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6445 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
6446 TmpInst.addOperand(Inst.getOperand(4));
6447 Inst = TmpInst;
6448 return true;
6449 }
6450
6451 case ARM::VLD4dWB_fixed_Asm_8:
6452 case ARM::VLD4dWB_fixed_Asm_16:
6453 case ARM::VLD4dWB_fixed_Asm_32:
6454 case ARM::VLD4qWB_fixed_Asm_8:
6455 case ARM::VLD4qWB_fixed_Asm_16:
6456 case ARM::VLD4qWB_fixed_Asm_32: {
6457 MCInst TmpInst;
6458 unsigned Spacing;
6459 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
6460 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6461 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6462 Spacing));
6463 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6464 Spacing * 2));
6465 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6466 Spacing * 3));
6467 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6468 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
6469 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6470 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
6471 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
6472 TmpInst.addOperand(Inst.getOperand(4));
6473 Inst = TmpInst;
6474 return true;
6475 }
6476
6477 case ARM::VLD4dWB_register_Asm_8:
6478 case ARM::VLD4dWB_register_Asm_16:
6479 case ARM::VLD4dWB_register_Asm_32:
6480 case ARM::VLD4qWB_register_Asm_8:
6481 case ARM::VLD4qWB_register_Asm_16:
6482 case ARM::VLD4qWB_register_Asm_32: {
6483 MCInst TmpInst;
6484 unsigned Spacing;
6485 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
6486 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6487 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6488 Spacing));
6489 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6490 Spacing * 2));
6491 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6492 Spacing * 3));
6493 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6494 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
6495 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6496 TmpInst.addOperand(Inst.getOperand(3)); // Rm
6497 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6498 TmpInst.addOperand(Inst.getOperand(5));
6499 Inst = TmpInst;
6500 return true;
6501 }
6502
Jim Grosbachd7433e22012-01-23 23:45:44 +00006503 // VST3 multiple 3-element structure instructions.
6504 case ARM::VST3dAsm_8:
6505 case ARM::VST3dAsm_16:
6506 case ARM::VST3dAsm_32:
6507 case ARM::VST3qAsm_8:
6508 case ARM::VST3qAsm_16:
6509 case ARM::VST3qAsm_32: {
6510 MCInst TmpInst;
6511 unsigned Spacing;
6512 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
6513 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6514 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6515 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6516 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6517 Spacing));
6518 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6519 Spacing * 2));
6520 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
6521 TmpInst.addOperand(Inst.getOperand(4));
6522 Inst = TmpInst;
6523 return true;
6524 }
6525
6526 case ARM::VST3dWB_fixed_Asm_8:
6527 case ARM::VST3dWB_fixed_Asm_16:
6528 case ARM::VST3dWB_fixed_Asm_32:
6529 case ARM::VST3qWB_fixed_Asm_8:
6530 case ARM::VST3qWB_fixed_Asm_16:
6531 case ARM::VST3qWB_fixed_Asm_32: {
6532 MCInst TmpInst;
6533 unsigned Spacing;
6534 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
6535 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6536 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
6537 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6538 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
6539 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6540 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6541 Spacing));
6542 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6543 Spacing * 2));
6544 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
6545 TmpInst.addOperand(Inst.getOperand(4));
6546 Inst = TmpInst;
6547 return true;
6548 }
6549
6550 case ARM::VST3dWB_register_Asm_8:
6551 case ARM::VST3dWB_register_Asm_16:
6552 case ARM::VST3dWB_register_Asm_32:
6553 case ARM::VST3qWB_register_Asm_8:
6554 case ARM::VST3qWB_register_Asm_16:
6555 case ARM::VST3qWB_register_Asm_32: {
6556 MCInst TmpInst;
6557 unsigned Spacing;
6558 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
6559 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6560 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
6561 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6562 TmpInst.addOperand(Inst.getOperand(3)); // Rm
6563 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6564 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6565 Spacing));
6566 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6567 Spacing * 2));
6568 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6569 TmpInst.addOperand(Inst.getOperand(5));
6570 Inst = TmpInst;
6571 return true;
6572 }
6573
Jim Grosbach539aab72012-01-24 00:58:13 +00006574 // VST4 multiple 3-element structure instructions.
6575 case ARM::VST4dAsm_8:
6576 case ARM::VST4dAsm_16:
6577 case ARM::VST4dAsm_32:
6578 case ARM::VST4qAsm_8:
6579 case ARM::VST4qAsm_16:
6580 case ARM::VST4qAsm_32: {
6581 MCInst TmpInst;
6582 unsigned Spacing;
6583 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
6584 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6585 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6586 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6587 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6588 Spacing));
6589 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6590 Spacing * 2));
6591 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6592 Spacing * 3));
6593 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
6594 TmpInst.addOperand(Inst.getOperand(4));
6595 Inst = TmpInst;
6596 return true;
6597 }
6598
6599 case ARM::VST4dWB_fixed_Asm_8:
6600 case ARM::VST4dWB_fixed_Asm_16:
6601 case ARM::VST4dWB_fixed_Asm_32:
6602 case ARM::VST4qWB_fixed_Asm_8:
6603 case ARM::VST4qWB_fixed_Asm_16:
6604 case ARM::VST4qWB_fixed_Asm_32: {
6605 MCInst TmpInst;
6606 unsigned Spacing;
6607 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
6608 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6609 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
6610 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6611 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
6612 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6613 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6614 Spacing));
6615 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6616 Spacing * 2));
6617 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6618 Spacing * 3));
6619 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
6620 TmpInst.addOperand(Inst.getOperand(4));
6621 Inst = TmpInst;
6622 return true;
6623 }
6624
6625 case ARM::VST4dWB_register_Asm_8:
6626 case ARM::VST4dWB_register_Asm_16:
6627 case ARM::VST4dWB_register_Asm_32:
6628 case ARM::VST4qWB_register_Asm_8:
6629 case ARM::VST4qWB_register_Asm_16:
6630 case ARM::VST4qWB_register_Asm_32: {
6631 MCInst TmpInst;
6632 unsigned Spacing;
6633 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
6634 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6635 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
6636 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6637 TmpInst.addOperand(Inst.getOperand(3)); // Rm
6638 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6639 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6640 Spacing));
6641 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6642 Spacing * 2));
6643 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6644 Spacing * 3));
6645 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6646 TmpInst.addOperand(Inst.getOperand(5));
6647 Inst = TmpInst;
6648 return true;
6649 }
6650
Jim Grosbach863d2af2011-12-13 22:45:11 +00006651 // Handle the Thumb2 mode MOV complex aliases.
Jim Grosbach2cc5cda2011-12-21 20:54:00 +00006652 case ARM::t2MOVsr:
6653 case ARM::t2MOVSsr: {
6654 // Which instruction to expand to depends on the CCOut operand and
6655 // whether we're in an IT block if the register operands are low
6656 // registers.
6657 bool isNarrow = false;
6658 if (isARMLowRegister(Inst.getOperand(0).getReg()) &&
6659 isARMLowRegister(Inst.getOperand(1).getReg()) &&
6660 isARMLowRegister(Inst.getOperand(2).getReg()) &&
6661 Inst.getOperand(0).getReg() == Inst.getOperand(1).getReg() &&
6662 inITBlock() == (Inst.getOpcode() == ARM::t2MOVsr))
6663 isNarrow = true;
6664 MCInst TmpInst;
6665 unsigned newOpc;
6666 switch(ARM_AM::getSORegShOp(Inst.getOperand(3).getImm())) {
6667 default: llvm_unreachable("unexpected opcode!");
6668 case ARM_AM::asr: newOpc = isNarrow ? ARM::tASRrr : ARM::t2ASRrr; break;
6669 case ARM_AM::lsr: newOpc = isNarrow ? ARM::tLSRrr : ARM::t2LSRrr; break;
6670 case ARM_AM::lsl: newOpc = isNarrow ? ARM::tLSLrr : ARM::t2LSLrr; break;
6671 case ARM_AM::ror: newOpc = isNarrow ? ARM::tROR : ARM::t2RORrr; break;
6672 }
6673 TmpInst.setOpcode(newOpc);
6674 TmpInst.addOperand(Inst.getOperand(0)); // Rd
6675 if (isNarrow)
6676 TmpInst.addOperand(MCOperand::CreateReg(
6677 Inst.getOpcode() == ARM::t2MOVSsr ? ARM::CPSR : 0));
6678 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6679 TmpInst.addOperand(Inst.getOperand(2)); // Rm
6680 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6681 TmpInst.addOperand(Inst.getOperand(5));
6682 if (!isNarrow)
6683 TmpInst.addOperand(MCOperand::CreateReg(
6684 Inst.getOpcode() == ARM::t2MOVSsr ? ARM::CPSR : 0));
6685 Inst = TmpInst;
6686 return true;
6687 }
Jim Grosbach863d2af2011-12-13 22:45:11 +00006688 case ARM::t2MOVsi:
6689 case ARM::t2MOVSsi: {
6690 // Which instruction to expand to depends on the CCOut operand and
6691 // whether we're in an IT block if the register operands are low
6692 // registers.
6693 bool isNarrow = false;
6694 if (isARMLowRegister(Inst.getOperand(0).getReg()) &&
6695 isARMLowRegister(Inst.getOperand(1).getReg()) &&
6696 inITBlock() == (Inst.getOpcode() == ARM::t2MOVsi))
6697 isNarrow = true;
6698 MCInst TmpInst;
6699 unsigned newOpc;
6700 switch(ARM_AM::getSORegShOp(Inst.getOperand(2).getImm())) {
6701 default: llvm_unreachable("unexpected opcode!");
6702 case ARM_AM::asr: newOpc = isNarrow ? ARM::tASRri : ARM::t2ASRri; break;
6703 case ARM_AM::lsr: newOpc = isNarrow ? ARM::tLSRri : ARM::t2LSRri; break;
6704 case ARM_AM::lsl: newOpc = isNarrow ? ARM::tLSLri : ARM::t2LSLri; break;
6705 case ARM_AM::ror: newOpc = ARM::t2RORri; isNarrow = false; break;
Jim Grosbach520dc782011-12-21 21:04:19 +00006706 case ARM_AM::rrx: isNarrow = false; newOpc = ARM::t2RRX; break;
Jim Grosbach863d2af2011-12-13 22:45:11 +00006707 }
6708 unsigned Ammount = ARM_AM::getSORegOffset(Inst.getOperand(2).getImm());
6709 if (Ammount == 32) Ammount = 0;
6710 TmpInst.setOpcode(newOpc);
6711 TmpInst.addOperand(Inst.getOperand(0)); // Rd
6712 if (isNarrow)
6713 TmpInst.addOperand(MCOperand::CreateReg(
6714 Inst.getOpcode() == ARM::t2MOVSsi ? ARM::CPSR : 0));
6715 TmpInst.addOperand(Inst.getOperand(1)); // Rn
Jim Grosbach520dc782011-12-21 21:04:19 +00006716 if (newOpc != ARM::t2RRX)
6717 TmpInst.addOperand(MCOperand::CreateImm(Ammount));
Jim Grosbach863d2af2011-12-13 22:45:11 +00006718 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
6719 TmpInst.addOperand(Inst.getOperand(4));
6720 if (!isNarrow)
6721 TmpInst.addOperand(MCOperand::CreateReg(
6722 Inst.getOpcode() == ARM::t2MOVSsi ? ARM::CPSR : 0));
6723 Inst = TmpInst;
6724 return true;
6725 }
6726 // Handle the ARM mode MOV complex aliases.
Jim Grosbach23f22072011-11-16 18:31:45 +00006727 case ARM::ASRr:
6728 case ARM::LSRr:
6729 case ARM::LSLr:
6730 case ARM::RORr: {
6731 ARM_AM::ShiftOpc ShiftTy;
6732 switch(Inst.getOpcode()) {
6733 default: llvm_unreachable("unexpected opcode!");
6734 case ARM::ASRr: ShiftTy = ARM_AM::asr; break;
6735 case ARM::LSRr: ShiftTy = ARM_AM::lsr; break;
6736 case ARM::LSLr: ShiftTy = ARM_AM::lsl; break;
6737 case ARM::RORr: ShiftTy = ARM_AM::ror; break;
6738 }
Jim Grosbach23f22072011-11-16 18:31:45 +00006739 unsigned Shifter = ARM_AM::getSORegOpc(ShiftTy, 0);
6740 MCInst TmpInst;
6741 TmpInst.setOpcode(ARM::MOVsr);
6742 TmpInst.addOperand(Inst.getOperand(0)); // Rd
6743 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6744 TmpInst.addOperand(Inst.getOperand(2)); // Rm
6745 TmpInst.addOperand(MCOperand::CreateImm(Shifter)); // Shift value and ty
6746 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
6747 TmpInst.addOperand(Inst.getOperand(4));
6748 TmpInst.addOperand(Inst.getOperand(5)); // cc_out
6749 Inst = TmpInst;
6750 return true;
6751 }
Jim Grosbachee10ff82011-11-10 19:18:01 +00006752 case ARM::ASRi:
6753 case ARM::LSRi:
6754 case ARM::LSLi:
6755 case ARM::RORi: {
6756 ARM_AM::ShiftOpc ShiftTy;
Jim Grosbachee10ff82011-11-10 19:18:01 +00006757 switch(Inst.getOpcode()) {
6758 default: llvm_unreachable("unexpected opcode!");
6759 case ARM::ASRi: ShiftTy = ARM_AM::asr; break;
6760 case ARM::LSRi: ShiftTy = ARM_AM::lsr; break;
6761 case ARM::LSLi: ShiftTy = ARM_AM::lsl; break;
6762 case ARM::RORi: ShiftTy = ARM_AM::ror; break;
6763 }
6764 // A shift by zero is a plain MOVr, not a MOVsi.
Jim Grosbach48b368b2011-11-16 19:05:59 +00006765 unsigned Amt = Inst.getOperand(2).getImm();
Jim Grosbachee10ff82011-11-10 19:18:01 +00006766 unsigned Opc = Amt == 0 ? ARM::MOVr : ARM::MOVsi;
6767 unsigned Shifter = ARM_AM::getSORegOpc(ShiftTy, Amt);
Jim Grosbach71810ab2011-11-10 16:44:55 +00006768 MCInst TmpInst;
Jim Grosbachee10ff82011-11-10 19:18:01 +00006769 TmpInst.setOpcode(Opc);
Jim Grosbach71810ab2011-11-10 16:44:55 +00006770 TmpInst.addOperand(Inst.getOperand(0)); // Rd
6771 TmpInst.addOperand(Inst.getOperand(1)); // Rn
Jim Grosbachee10ff82011-11-10 19:18:01 +00006772 if (Opc == ARM::MOVsi)
6773 TmpInst.addOperand(MCOperand::CreateImm(Shifter)); // Shift value and ty
Jim Grosbach71810ab2011-11-10 16:44:55 +00006774 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
6775 TmpInst.addOperand(Inst.getOperand(4));
6776 TmpInst.addOperand(Inst.getOperand(5)); // cc_out
6777 Inst = TmpInst;
Jim Grosbach83ec8772011-11-10 23:42:14 +00006778 return true;
Jim Grosbach71810ab2011-11-10 16:44:55 +00006779 }
Jim Grosbach48b368b2011-11-16 19:05:59 +00006780 case ARM::RRXi: {
6781 unsigned Shifter = ARM_AM::getSORegOpc(ARM_AM::rrx, 0);
6782 MCInst TmpInst;
6783 TmpInst.setOpcode(ARM::MOVsi);
6784 TmpInst.addOperand(Inst.getOperand(0)); // Rd
6785 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6786 TmpInst.addOperand(MCOperand::CreateImm(Shifter)); // Shift value and ty
6787 TmpInst.addOperand(Inst.getOperand(2)); // CondCode
6788 TmpInst.addOperand(Inst.getOperand(3));
6789 TmpInst.addOperand(Inst.getOperand(4)); // cc_out
6790 Inst = TmpInst;
6791 return true;
6792 }
Jim Grosbach0352b462011-11-10 23:58:34 +00006793 case ARM::t2LDMIA_UPD: {
6794 // If this is a load of a single register, then we should use
6795 // a post-indexed LDR instruction instead, per the ARM ARM.
6796 if (Inst.getNumOperands() != 5)
6797 return false;
6798 MCInst TmpInst;
6799 TmpInst.setOpcode(ARM::t2LDR_POST);
6800 TmpInst.addOperand(Inst.getOperand(4)); // Rt
6801 TmpInst.addOperand(Inst.getOperand(0)); // Rn_wb
6802 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6803 TmpInst.addOperand(MCOperand::CreateImm(4));
6804 TmpInst.addOperand(Inst.getOperand(2)); // CondCode
6805 TmpInst.addOperand(Inst.getOperand(3));
6806 Inst = TmpInst;
6807 return true;
6808 }
6809 case ARM::t2STMDB_UPD: {
6810 // If this is a store of a single register, then we should use
6811 // a pre-indexed STR instruction instead, per the ARM ARM.
6812 if (Inst.getNumOperands() != 5)
6813 return false;
6814 MCInst TmpInst;
6815 TmpInst.setOpcode(ARM::t2STR_PRE);
6816 TmpInst.addOperand(Inst.getOperand(0)); // Rn_wb
6817 TmpInst.addOperand(Inst.getOperand(4)); // Rt
6818 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6819 TmpInst.addOperand(MCOperand::CreateImm(-4));
6820 TmpInst.addOperand(Inst.getOperand(2)); // CondCode
6821 TmpInst.addOperand(Inst.getOperand(3));
6822 Inst = TmpInst;
6823 return true;
6824 }
Jim Grosbachf8fce712011-08-11 17:35:48 +00006825 case ARM::LDMIA_UPD:
6826 // If this is a load of a single register via a 'pop', then we should use
6827 // a post-indexed LDR instruction instead, per the ARM ARM.
6828 if (static_cast<ARMOperand*>(Operands[0])->getToken() == "pop" &&
6829 Inst.getNumOperands() == 5) {
6830 MCInst TmpInst;
6831 TmpInst.setOpcode(ARM::LDR_POST_IMM);
6832 TmpInst.addOperand(Inst.getOperand(4)); // Rt
6833 TmpInst.addOperand(Inst.getOperand(0)); // Rn_wb
6834 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6835 TmpInst.addOperand(MCOperand::CreateReg(0)); // am2offset
6836 TmpInst.addOperand(MCOperand::CreateImm(4));
6837 TmpInst.addOperand(Inst.getOperand(2)); // CondCode
6838 TmpInst.addOperand(Inst.getOperand(3));
6839 Inst = TmpInst;
Jim Grosbach83ec8772011-11-10 23:42:14 +00006840 return true;
Jim Grosbachf8fce712011-08-11 17:35:48 +00006841 }
6842 break;
Jim Grosbachf6713912011-08-11 18:07:11 +00006843 case ARM::STMDB_UPD:
6844 // If this is a store of a single register via a 'push', then we should use
6845 // a pre-indexed STR instruction instead, per the ARM ARM.
6846 if (static_cast<ARMOperand*>(Operands[0])->getToken() == "push" &&
6847 Inst.getNumOperands() == 5) {
6848 MCInst TmpInst;
6849 TmpInst.setOpcode(ARM::STR_PRE_IMM);
6850 TmpInst.addOperand(Inst.getOperand(0)); // Rn_wb
6851 TmpInst.addOperand(Inst.getOperand(4)); // Rt
6852 TmpInst.addOperand(Inst.getOperand(1)); // addrmode_imm12
6853 TmpInst.addOperand(MCOperand::CreateImm(-4));
6854 TmpInst.addOperand(Inst.getOperand(2)); // CondCode
6855 TmpInst.addOperand(Inst.getOperand(3));
6856 Inst = TmpInst;
6857 }
6858 break;
Jim Grosbachda847862011-12-05 21:06:26 +00006859 case ARM::t2ADDri12:
6860 // If the immediate fits for encoding T3 (t2ADDri) and the generic "add"
6861 // mnemonic was used (not "addw"), encoding T3 is preferred.
6862 if (static_cast<ARMOperand*>(Operands[0])->getToken() != "add" ||
6863 ARM_AM::getT2SOImmVal(Inst.getOperand(2).getImm()) == -1)
6864 break;
6865 Inst.setOpcode(ARM::t2ADDri);
6866 Inst.addOperand(MCOperand::CreateReg(0)); // cc_out
6867 break;
6868 case ARM::t2SUBri12:
6869 // If the immediate fits for encoding T3 (t2SUBri) and the generic "sub"
6870 // mnemonic was used (not "subw"), encoding T3 is preferred.
6871 if (static_cast<ARMOperand*>(Operands[0])->getToken() != "sub" ||
6872 ARM_AM::getT2SOImmVal(Inst.getOperand(2).getImm()) == -1)
6873 break;
6874 Inst.setOpcode(ARM::t2SUBri);
6875 Inst.addOperand(MCOperand::CreateReg(0)); // cc_out
6876 break;
Jim Grosbach89e2aa62011-08-16 23:57:34 +00006877 case ARM::tADDi8:
Jim Grosbach0f3abd82011-08-31 17:07:33 +00006878 // If the immediate is in the range 0-7, we want tADDi3 iff Rd was
6879 // explicitly specified. From the ARM ARM: "Encoding T1 is preferred
6880 // to encoding T2 if <Rd> is specified and encoding T2 is preferred
6881 // to encoding T1 if <Rd> is omitted."
Jim Grosbachc0164f82012-03-30 16:31:31 +00006882 if ((unsigned)Inst.getOperand(3).getImm() < 8 && Operands.size() == 6) {
Jim Grosbach89e2aa62011-08-16 23:57:34 +00006883 Inst.setOpcode(ARM::tADDi3);
Jim Grosbach83ec8772011-11-10 23:42:14 +00006884 return true;
6885 }
Jim Grosbach89e2aa62011-08-16 23:57:34 +00006886 break;
Jim Grosbachf67e8552011-09-16 22:58:42 +00006887 case ARM::tSUBi8:
6888 // If the immediate is in the range 0-7, we want tADDi3 iff Rd was
6889 // explicitly specified. From the ARM ARM: "Encoding T1 is preferred
6890 // to encoding T2 if <Rd> is specified and encoding T2 is preferred
6891 // to encoding T1 if <Rd> is omitted."
Jim Grosbachc0164f82012-03-30 16:31:31 +00006892 if ((unsigned)Inst.getOperand(3).getImm() < 8 && Operands.size() == 6) {
Jim Grosbachf67e8552011-09-16 22:58:42 +00006893 Inst.setOpcode(ARM::tSUBi3);
Jim Grosbach83ec8772011-11-10 23:42:14 +00006894 return true;
6895 }
Jim Grosbachf67e8552011-09-16 22:58:42 +00006896 break;
Jim Grosbach2d30d942012-03-30 17:20:40 +00006897 case ARM::t2ADDri:
6898 case ARM::t2SUBri: {
6899 // If the destination and first source operand are the same, and
6900 // the flags are compatible with the current IT status, use encoding T2
6901 // instead of T3. For compatibility with the system 'as'. Make sure the
6902 // wide encoding wasn't explicit.
6903 if (Inst.getOperand(0).getReg() != Inst.getOperand(1).getReg() ||
Jim Grosbach8f1148b2012-03-30 18:39:43 +00006904 !isARMLowRegister(Inst.getOperand(0).getReg()) ||
Jim Grosbach2d30d942012-03-30 17:20:40 +00006905 (unsigned)Inst.getOperand(2).getImm() > 255 ||
6906 ((!inITBlock() && Inst.getOperand(5).getReg() != ARM::CPSR) ||
6907 (inITBlock() && Inst.getOperand(5).getReg() != 0)) ||
6908 (static_cast<ARMOperand*>(Operands[3])->isToken() &&
6909 static_cast<ARMOperand*>(Operands[3])->getToken() == ".w"))
6910 break;
6911 MCInst TmpInst;
6912 TmpInst.setOpcode(Inst.getOpcode() == ARM::t2ADDri ?
6913 ARM::tADDi8 : ARM::tSUBi8);
6914 TmpInst.addOperand(Inst.getOperand(0));
6915 TmpInst.addOperand(Inst.getOperand(5));
6916 TmpInst.addOperand(Inst.getOperand(0));
6917 TmpInst.addOperand(Inst.getOperand(2));
6918 TmpInst.addOperand(Inst.getOperand(3));
6919 TmpInst.addOperand(Inst.getOperand(4));
6920 Inst = TmpInst;
6921 return true;
6922 }
Jim Grosbach927b9df2011-12-05 22:16:39 +00006923 case ARM::t2ADDrr: {
6924 // If the destination and first source operand are the same, and
6925 // there's no setting of the flags, use encoding T2 instead of T3.
6926 // Note that this is only for ADD, not SUB. This mirrors the system
6927 // 'as' behaviour. Make sure the wide encoding wasn't explicit.
6928 if (Inst.getOperand(0).getReg() != Inst.getOperand(1).getReg() ||
6929 Inst.getOperand(5).getReg() != 0 ||
Jim Grosbach713c7022011-12-05 22:27:04 +00006930 (static_cast<ARMOperand*>(Operands[3])->isToken() &&
6931 static_cast<ARMOperand*>(Operands[3])->getToken() == ".w"))
Jim Grosbach927b9df2011-12-05 22:16:39 +00006932 break;
6933 MCInst TmpInst;
6934 TmpInst.setOpcode(ARM::tADDhirr);
6935 TmpInst.addOperand(Inst.getOperand(0));
6936 TmpInst.addOperand(Inst.getOperand(0));
6937 TmpInst.addOperand(Inst.getOperand(2));
6938 TmpInst.addOperand(Inst.getOperand(3));
6939 TmpInst.addOperand(Inst.getOperand(4));
6940 Inst = TmpInst;
6941 return true;
6942 }
Owen Anderson51f6a7a2011-09-09 21:48:23 +00006943 case ARM::tB:
6944 // A Thumb conditional branch outside of an IT block is a tBcc.
Jim Grosbach83ec8772011-11-10 23:42:14 +00006945 if (Inst.getOperand(1).getImm() != ARMCC::AL && !inITBlock()) {
Owen Anderson51f6a7a2011-09-09 21:48:23 +00006946 Inst.setOpcode(ARM::tBcc);
Jim Grosbach83ec8772011-11-10 23:42:14 +00006947 return true;
6948 }
Owen Anderson51f6a7a2011-09-09 21:48:23 +00006949 break;
6950 case ARM::t2B:
6951 // A Thumb2 conditional branch outside of an IT block is a t2Bcc.
Jim Grosbach83ec8772011-11-10 23:42:14 +00006952 if (Inst.getOperand(1).getImm() != ARMCC::AL && !inITBlock()){
Owen Anderson51f6a7a2011-09-09 21:48:23 +00006953 Inst.setOpcode(ARM::t2Bcc);
Jim Grosbach83ec8772011-11-10 23:42:14 +00006954 return true;
6955 }
Owen Anderson51f6a7a2011-09-09 21:48:23 +00006956 break;
Jim Grosbachc0755102011-08-31 21:17:31 +00006957 case ARM::t2Bcc:
Jim Grosbacha1109882011-09-02 23:22:08 +00006958 // If the conditional is AL or we're in an IT block, we really want t2B.
Jim Grosbach83ec8772011-11-10 23:42:14 +00006959 if (Inst.getOperand(1).getImm() == ARMCC::AL || inITBlock()) {
Jim Grosbachc0755102011-08-31 21:17:31 +00006960 Inst.setOpcode(ARM::t2B);
Jim Grosbach83ec8772011-11-10 23:42:14 +00006961 return true;
6962 }
Jim Grosbachc0755102011-08-31 21:17:31 +00006963 break;
Jim Grosbach395b4532011-08-17 22:57:40 +00006964 case ARM::tBcc:
6965 // If the conditional is AL, we really want tB.
Jim Grosbach83ec8772011-11-10 23:42:14 +00006966 if (Inst.getOperand(1).getImm() == ARMCC::AL) {
Jim Grosbach395b4532011-08-17 22:57:40 +00006967 Inst.setOpcode(ARM::tB);
Jim Grosbach83ec8772011-11-10 23:42:14 +00006968 return true;
6969 }
Jim Grosbach3ce23d32011-08-18 16:08:39 +00006970 break;
Jim Grosbach76ecc3d2011-09-07 18:05:34 +00006971 case ARM::tLDMIA: {
6972 // If the register list contains any high registers, or if the writeback
6973 // doesn't match what tLDMIA can do, we need to use the 32-bit encoding
6974 // instead if we're in Thumb2. Otherwise, this should have generated
6975 // an error in validateInstruction().
6976 unsigned Rn = Inst.getOperand(0).getReg();
6977 bool hasWritebackToken =
6978 (static_cast<ARMOperand*>(Operands[3])->isToken() &&
6979 static_cast<ARMOperand*>(Operands[3])->getToken() == "!");
6980 bool listContainsBase;
6981 if (checkLowRegisterList(Inst, 3, Rn, 0, listContainsBase) ||
6982 (!listContainsBase && !hasWritebackToken) ||
6983 (listContainsBase && hasWritebackToken)) {
6984 // 16-bit encoding isn't sufficient. Switch to the 32-bit version.
6985 assert (isThumbTwo());
6986 Inst.setOpcode(hasWritebackToken ? ARM::t2LDMIA_UPD : ARM::t2LDMIA);
6987 // If we're switching to the updating version, we need to insert
6988 // the writeback tied operand.
6989 if (hasWritebackToken)
6990 Inst.insert(Inst.begin(),
6991 MCOperand::CreateReg(Inst.getOperand(0).getReg()));
Jim Grosbach83ec8772011-11-10 23:42:14 +00006992 return true;
Jim Grosbach76ecc3d2011-09-07 18:05:34 +00006993 }
6994 break;
6995 }
Jim Grosbach8213c962011-09-16 20:50:13 +00006996 case ARM::tSTMIA_UPD: {
6997 // If the register list contains any high registers, we need to use
6998 // the 32-bit encoding instead if we're in Thumb2. Otherwise, this
6999 // should have generated an error in validateInstruction().
7000 unsigned Rn = Inst.getOperand(0).getReg();
7001 bool listContainsBase;
7002 if (checkLowRegisterList(Inst, 4, Rn, 0, listContainsBase)) {
7003 // 16-bit encoding isn't sufficient. Switch to the 32-bit version.
7004 assert (isThumbTwo());
7005 Inst.setOpcode(ARM::t2STMIA_UPD);
Jim Grosbach83ec8772011-11-10 23:42:14 +00007006 return true;
Jim Grosbach8213c962011-09-16 20:50:13 +00007007 }
7008 break;
7009 }
Jim Grosbach54026372011-11-10 23:17:11 +00007010 case ARM::tPOP: {
7011 bool listContainsBase;
7012 // If the register list contains any high registers, we need to use
7013 // the 32-bit encoding instead if we're in Thumb2. Otherwise, this
7014 // should have generated an error in validateInstruction().
7015 if (!checkLowRegisterList(Inst, 2, 0, ARM::PC, listContainsBase))
Jim Grosbach83ec8772011-11-10 23:42:14 +00007016 return false;
Jim Grosbach54026372011-11-10 23:17:11 +00007017 assert (isThumbTwo());
7018 Inst.setOpcode(ARM::t2LDMIA_UPD);
7019 // Add the base register and writeback operands.
7020 Inst.insert(Inst.begin(), MCOperand::CreateReg(ARM::SP));
7021 Inst.insert(Inst.begin(), MCOperand::CreateReg(ARM::SP));
Jim Grosbach83ec8772011-11-10 23:42:14 +00007022 return true;
Jim Grosbach54026372011-11-10 23:17:11 +00007023 }
7024 case ARM::tPUSH: {
7025 bool listContainsBase;
7026 if (!checkLowRegisterList(Inst, 2, 0, ARM::LR, listContainsBase))
Jim Grosbach83ec8772011-11-10 23:42:14 +00007027 return false;
Jim Grosbach54026372011-11-10 23:17:11 +00007028 assert (isThumbTwo());
7029 Inst.setOpcode(ARM::t2STMDB_UPD);
7030 // Add the base register and writeback operands.
7031 Inst.insert(Inst.begin(), MCOperand::CreateReg(ARM::SP));
7032 Inst.insert(Inst.begin(), MCOperand::CreateReg(ARM::SP));
Jim Grosbach83ec8772011-11-10 23:42:14 +00007033 return true;
Jim Grosbach54026372011-11-10 23:17:11 +00007034 }
Jim Grosbach1ad60c22011-09-10 00:15:36 +00007035 case ARM::t2MOVi: {
7036 // If we can use the 16-bit encoding and the user didn't explicitly
7037 // request the 32-bit variant, transform it here.
7038 if (isARMLowRegister(Inst.getOperand(0).getReg()) &&
Jim Grosbachc0164f82012-03-30 16:31:31 +00007039 (unsigned)Inst.getOperand(1).getImm() <= 255 &&
Jim Grosbachc2d31642011-09-14 19:12:11 +00007040 ((!inITBlock() && Inst.getOperand(2).getImm() == ARMCC::AL &&
7041 Inst.getOperand(4).getReg() == ARM::CPSR) ||
7042 (inITBlock() && Inst.getOperand(4).getReg() == 0)) &&
Jim Grosbach1ad60c22011-09-10 00:15:36 +00007043 (!static_cast<ARMOperand*>(Operands[2])->isToken() ||
7044 static_cast<ARMOperand*>(Operands[2])->getToken() != ".w")) {
7045 // The operands aren't in the same order for tMOVi8...
7046 MCInst TmpInst;
7047 TmpInst.setOpcode(ARM::tMOVi8);
7048 TmpInst.addOperand(Inst.getOperand(0));
7049 TmpInst.addOperand(Inst.getOperand(4));
7050 TmpInst.addOperand(Inst.getOperand(1));
7051 TmpInst.addOperand(Inst.getOperand(2));
7052 TmpInst.addOperand(Inst.getOperand(3));
7053 Inst = TmpInst;
Jim Grosbach83ec8772011-11-10 23:42:14 +00007054 return true;
Jim Grosbach1ad60c22011-09-10 00:15:36 +00007055 }
7056 break;
7057 }
7058 case ARM::t2MOVr: {
7059 // If we can use the 16-bit encoding and the user didn't explicitly
7060 // request the 32-bit variant, transform it here.
7061 if (isARMLowRegister(Inst.getOperand(0).getReg()) &&
7062 isARMLowRegister(Inst.getOperand(1).getReg()) &&
7063 Inst.getOperand(2).getImm() == ARMCC::AL &&
7064 Inst.getOperand(4).getReg() == ARM::CPSR &&
7065 (!static_cast<ARMOperand*>(Operands[2])->isToken() ||
7066 static_cast<ARMOperand*>(Operands[2])->getToken() != ".w")) {
7067 // The operands aren't the same for tMOV[S]r... (no cc_out)
7068 MCInst TmpInst;
7069 TmpInst.setOpcode(Inst.getOperand(4).getReg() ? ARM::tMOVSr : ARM::tMOVr);
7070 TmpInst.addOperand(Inst.getOperand(0));
7071 TmpInst.addOperand(Inst.getOperand(1));
7072 TmpInst.addOperand(Inst.getOperand(2));
7073 TmpInst.addOperand(Inst.getOperand(3));
7074 Inst = TmpInst;
Jim Grosbach83ec8772011-11-10 23:42:14 +00007075 return true;
Jim Grosbach1ad60c22011-09-10 00:15:36 +00007076 }
7077 break;
7078 }
Jim Grosbach326efe52011-09-19 20:29:33 +00007079 case ARM::t2SXTH:
Jim Grosbach50f1c372011-09-20 00:46:54 +00007080 case ARM::t2SXTB:
7081 case ARM::t2UXTH:
7082 case ARM::t2UXTB: {
Jim Grosbach326efe52011-09-19 20:29:33 +00007083 // If we can use the 16-bit encoding and the user didn't explicitly
7084 // request the 32-bit variant, transform it here.
7085 if (isARMLowRegister(Inst.getOperand(0).getReg()) &&
7086 isARMLowRegister(Inst.getOperand(1).getReg()) &&
7087 Inst.getOperand(2).getImm() == 0 &&
7088 (!static_cast<ARMOperand*>(Operands[2])->isToken() ||
7089 static_cast<ARMOperand*>(Operands[2])->getToken() != ".w")) {
Jim Grosbach50f1c372011-09-20 00:46:54 +00007090 unsigned NewOpc;
7091 switch (Inst.getOpcode()) {
7092 default: llvm_unreachable("Illegal opcode!");
7093 case ARM::t2SXTH: NewOpc = ARM::tSXTH; break;
7094 case ARM::t2SXTB: NewOpc = ARM::tSXTB; break;
7095 case ARM::t2UXTH: NewOpc = ARM::tUXTH; break;
7096 case ARM::t2UXTB: NewOpc = ARM::tUXTB; break;
7097 }
Jim Grosbach326efe52011-09-19 20:29:33 +00007098 // The operands aren't the same for thumb1 (no rotate operand).
7099 MCInst TmpInst;
7100 TmpInst.setOpcode(NewOpc);
7101 TmpInst.addOperand(Inst.getOperand(0));
7102 TmpInst.addOperand(Inst.getOperand(1));
7103 TmpInst.addOperand(Inst.getOperand(3));
7104 TmpInst.addOperand(Inst.getOperand(4));
7105 Inst = TmpInst;
Jim Grosbach83ec8772011-11-10 23:42:14 +00007106 return true;
Jim Grosbach326efe52011-09-19 20:29:33 +00007107 }
7108 break;
7109 }
Jim Grosbach04b5d932011-12-20 00:59:38 +00007110 case ARM::MOVsi: {
7111 ARM_AM::ShiftOpc SOpc = ARM_AM::getSORegShOp(Inst.getOperand(2).getImm());
7112 if (SOpc == ARM_AM::rrx) return false;
7113 if (ARM_AM::getSORegOffset(Inst.getOperand(2).getImm()) == 0) {
7114 // Shifting by zero is accepted as a vanilla 'MOVr'
7115 MCInst TmpInst;
7116 TmpInst.setOpcode(ARM::MOVr);
7117 TmpInst.addOperand(Inst.getOperand(0));
7118 TmpInst.addOperand(Inst.getOperand(1));
7119 TmpInst.addOperand(Inst.getOperand(3));
7120 TmpInst.addOperand(Inst.getOperand(4));
7121 TmpInst.addOperand(Inst.getOperand(5));
7122 Inst = TmpInst;
7123 return true;
7124 }
7125 return false;
7126 }
Jim Grosbach8d9550b2011-12-22 18:04:04 +00007127 case ARM::ANDrsi:
7128 case ARM::ORRrsi:
7129 case ARM::EORrsi:
7130 case ARM::BICrsi:
7131 case ARM::SUBrsi:
7132 case ARM::ADDrsi: {
7133 unsigned newOpc;
7134 ARM_AM::ShiftOpc SOpc = ARM_AM::getSORegShOp(Inst.getOperand(3).getImm());
7135 if (SOpc == ARM_AM::rrx) return false;
7136 switch (Inst.getOpcode()) {
Craig Topperbc219812012-02-07 02:50:20 +00007137 default: llvm_unreachable("unexpected opcode!");
Jim Grosbach8d9550b2011-12-22 18:04:04 +00007138 case ARM::ANDrsi: newOpc = ARM::ANDrr; break;
7139 case ARM::ORRrsi: newOpc = ARM::ORRrr; break;
7140 case ARM::EORrsi: newOpc = ARM::EORrr; break;
7141 case ARM::BICrsi: newOpc = ARM::BICrr; break;
7142 case ARM::SUBrsi: newOpc = ARM::SUBrr; break;
7143 case ARM::ADDrsi: newOpc = ARM::ADDrr; break;
7144 }
7145 // If the shift is by zero, use the non-shifted instruction definition.
7146 if (ARM_AM::getSORegOffset(Inst.getOperand(3).getImm()) == 0) {
7147 MCInst TmpInst;
7148 TmpInst.setOpcode(newOpc);
7149 TmpInst.addOperand(Inst.getOperand(0));
7150 TmpInst.addOperand(Inst.getOperand(1));
7151 TmpInst.addOperand(Inst.getOperand(2));
7152 TmpInst.addOperand(Inst.getOperand(4));
7153 TmpInst.addOperand(Inst.getOperand(5));
7154 TmpInst.addOperand(Inst.getOperand(6));
7155 Inst = TmpInst;
7156 return true;
7157 }
7158 return false;
7159 }
Jim Grosbach74423e32012-01-25 19:52:01 +00007160 case ARM::ITasm:
Jim Grosbach89df9962011-08-26 21:43:41 +00007161 case ARM::t2IT: {
7162 // The mask bits for all but the first condition are represented as
7163 // the low bit of the condition code value implies 't'. We currently
7164 // always have 1 implies 't', so XOR toggle the bits if the low bit
7165 // of the condition code is zero. The encoding also expects the low
7166 // bit of the condition to be encoded as bit 4 of the mask operand,
7167 // so mask that in if needed
7168 MCOperand &MO = Inst.getOperand(1);
7169 unsigned Mask = MO.getImm();
Jim Grosbachf8e1e3e2011-08-29 22:24:09 +00007170 unsigned OrigMask = Mask;
7171 unsigned TZ = CountTrailingZeros_32(Mask);
Jim Grosbach89df9962011-08-26 21:43:41 +00007172 if ((Inst.getOperand(0).getImm() & 1) == 0) {
Jim Grosbach89df9962011-08-26 21:43:41 +00007173 assert(Mask && TZ <= 3 && "illegal IT mask value!");
7174 for (unsigned i = 3; i != TZ; --i)
7175 Mask ^= 1 << i;
7176 } else
7177 Mask |= 0x10;
7178 MO.setImm(Mask);
Jim Grosbachf8e1e3e2011-08-29 22:24:09 +00007179
7180 // Set up the IT block state according to the IT instruction we just
7181 // matched.
7182 assert(!inITBlock() && "nested IT blocks?!");
7183 ITState.Cond = ARMCC::CondCodes(Inst.getOperand(0).getImm());
7184 ITState.Mask = OrigMask; // Use the original mask, not the updated one.
7185 ITState.CurPosition = 0;
7186 ITState.FirstCond = true;
Jim Grosbach89df9962011-08-26 21:43:41 +00007187 break;
7188 }
Jim Grosbachf8fce712011-08-11 17:35:48 +00007189 }
Jim Grosbach83ec8772011-11-10 23:42:14 +00007190 return false;
Jim Grosbachf8fce712011-08-11 17:35:48 +00007191}
7192
Jim Grosbach47a0d522011-08-16 20:45:50 +00007193unsigned ARMAsmParser::checkTargetMatchPredicate(MCInst &Inst) {
7194 // 16-bit thumb arithmetic instructions either require or preclude the 'S'
7195 // suffix depending on whether they're in an IT block or not.
Jim Grosbach194bd892011-08-16 22:20:01 +00007196 unsigned Opc = Inst.getOpcode();
Benjamin Kramer1a2f9882011-10-22 16:50:00 +00007197 const MCInstrDesc &MCID = getInstDesc(Opc);
Jim Grosbach47a0d522011-08-16 20:45:50 +00007198 if (MCID.TSFlags & ARMII::ThumbArithFlagSetting) {
7199 assert(MCID.hasOptionalDef() &&
7200 "optionally flag setting instruction missing optional def operand");
7201 assert(MCID.NumOperands == Inst.getNumOperands() &&
7202 "operand count mismatch!");
7203 // Find the optional-def operand (cc_out).
7204 unsigned OpNo;
7205 for (OpNo = 0;
7206 !MCID.OpInfo[OpNo].isOptionalDef() && OpNo < MCID.NumOperands;
7207 ++OpNo)
7208 ;
7209 // If we're parsing Thumb1, reject it completely.
7210 if (isThumbOne() && Inst.getOperand(OpNo).getReg() != ARM::CPSR)
7211 return Match_MnemonicFail;
7212 // If we're parsing Thumb2, which form is legal depends on whether we're
7213 // in an IT block.
Jim Grosbachf8e1e3e2011-08-29 22:24:09 +00007214 if (isThumbTwo() && Inst.getOperand(OpNo).getReg() != ARM::CPSR &&
7215 !inITBlock())
Jim Grosbach47a0d522011-08-16 20:45:50 +00007216 return Match_RequiresITBlock;
Jim Grosbachf8e1e3e2011-08-29 22:24:09 +00007217 if (isThumbTwo() && Inst.getOperand(OpNo).getReg() == ARM::CPSR &&
7218 inITBlock())
7219 return Match_RequiresNotITBlock;
Jim Grosbach47a0d522011-08-16 20:45:50 +00007220 }
Jim Grosbach194bd892011-08-16 22:20:01 +00007221 // Some high-register supporting Thumb1 encodings only allow both registers
7222 // to be from r0-r7 when in Thumb2.
7223 else if (Opc == ARM::tADDhirr && isThumbOne() &&
7224 isARMLowRegister(Inst.getOperand(1).getReg()) &&
7225 isARMLowRegister(Inst.getOperand(2).getReg()))
7226 return Match_RequiresThumb2;
7227 // Others only require ARMv6 or later.
Jim Grosbach4ec6e882011-08-19 20:46:54 +00007228 else if (Opc == ARM::tMOVr && isThumbOne() && !hasV6Ops() &&
Jim Grosbach194bd892011-08-16 22:20:01 +00007229 isARMLowRegister(Inst.getOperand(0).getReg()) &&
7230 isARMLowRegister(Inst.getOperand(1).getReg()))
7231 return Match_RequiresV6;
Jim Grosbach47a0d522011-08-16 20:45:50 +00007232 return Match_Success;
7233}
7234
Chris Lattnerfa42fad2010-10-28 21:28:01 +00007235bool ARMAsmParser::
7236MatchAndEmitInstruction(SMLoc IDLoc,
7237 SmallVectorImpl<MCParsedAsmOperand*> &Operands,
7238 MCStreamer &Out) {
7239 MCInst Inst;
7240 unsigned ErrorInfo;
Jim Grosbach19cb7f42011-08-15 23:03:29 +00007241 unsigned MatchResult;
Kevin Enderby193c3ac2010-12-09 19:19:43 +00007242 MatchResult = MatchInstructionImpl(Operands, Inst, ErrorInfo);
Kevin Enderby193c3ac2010-12-09 19:19:43 +00007243 switch (MatchResult) {
Jim Grosbach19cb7f42011-08-15 23:03:29 +00007244 default: break;
Chris Lattnere73d4f82010-10-28 21:41:58 +00007245 case Match_Success:
Jim Grosbach189610f2011-07-26 18:25:39 +00007246 // Context sensitive operand constraints aren't handled by the matcher,
7247 // so check them here.
Jim Grosbacha1109882011-09-02 23:22:08 +00007248 if (validateInstruction(Inst, Operands)) {
7249 // Still progress the IT block, otherwise one wrong condition causes
7250 // nasty cascading errors.
7251 forwardITPosition();
Jim Grosbach189610f2011-07-26 18:25:39 +00007252 return true;
Jim Grosbacha1109882011-09-02 23:22:08 +00007253 }
Jim Grosbach189610f2011-07-26 18:25:39 +00007254
Jim Grosbachf8fce712011-08-11 17:35:48 +00007255 // Some instructions need post-processing to, for example, tweak which
Jim Grosbach83ec8772011-11-10 23:42:14 +00007256 // encoding is selected. Loop on it while changes happen so the
7257 // individual transformations can chain off each other. E.g.,
7258 // tPOP(r8)->t2LDMIA_UPD(sp,r8)->t2STR_POST(sp,r8)
7259 while (processInstruction(Inst, Operands))
7260 ;
Jim Grosbachf8fce712011-08-11 17:35:48 +00007261
Jim Grosbacha1109882011-09-02 23:22:08 +00007262 // Only move forward at the very end so that everything in validate
7263 // and process gets a consistent answer about whether we're in an IT
7264 // block.
7265 forwardITPosition();
7266
Jim Grosbach74423e32012-01-25 19:52:01 +00007267 // ITasm is an ARM mode pseudo-instruction that just sets the ITblock and
7268 // doesn't actually encode.
7269 if (Inst.getOpcode() == ARM::ITasm)
7270 return false;
7271
Jim Grosbach42e6bd32012-01-26 23:20:15 +00007272 Inst.setLoc(IDLoc);
Chris Lattnerfa42fad2010-10-28 21:28:01 +00007273 Out.EmitInstruction(Inst);
7274 return false;
Chris Lattnere73d4f82010-10-28 21:41:58 +00007275 case Match_MissingFeature:
7276 Error(IDLoc, "instruction requires a CPU feature not currently enabled");
7277 return true;
7278 case Match_InvalidOperand: {
7279 SMLoc ErrorLoc = IDLoc;
7280 if (ErrorInfo != ~0U) {
7281 if (ErrorInfo >= Operands.size())
7282 return Error(IDLoc, "too few operands for instruction");
Jim Grosbach16c74252010-10-29 14:46:02 +00007283
Chris Lattnere73d4f82010-10-28 21:41:58 +00007284 ErrorLoc = ((ARMOperand*)Operands[ErrorInfo])->getStartLoc();
7285 if (ErrorLoc == SMLoc()) ErrorLoc = IDLoc;
7286 }
Jim Grosbach16c74252010-10-29 14:46:02 +00007287
Chris Lattnere73d4f82010-10-28 21:41:58 +00007288 return Error(ErrorLoc, "invalid operand for instruction");
Chris Lattnerfa42fad2010-10-28 21:28:01 +00007289 }
Chris Lattnere73d4f82010-10-28 21:41:58 +00007290 case Match_MnemonicFail:
Jim Grosbach47a0d522011-08-16 20:45:50 +00007291 return Error(IDLoc, "invalid instruction");
Daniel Dunbarb4129152011-02-04 17:12:23 +00007292 case Match_ConversionFail:
Jim Grosbach88ae2bc2011-08-19 22:07:46 +00007293 // The converter function will have already emited a diagnostic.
7294 return true;
Jim Grosbachf8e1e3e2011-08-29 22:24:09 +00007295 case Match_RequiresNotITBlock:
7296 return Error(IDLoc, "flag setting instruction only valid outside IT block");
Jim Grosbach47a0d522011-08-16 20:45:50 +00007297 case Match_RequiresITBlock:
7298 return Error(IDLoc, "instruction only valid inside IT block");
Jim Grosbach194bd892011-08-16 22:20:01 +00007299 case Match_RequiresV6:
7300 return Error(IDLoc, "instruction variant requires ARMv6 or later");
7301 case Match_RequiresThumb2:
7302 return Error(IDLoc, "instruction variant requires Thumb2");
Chris Lattnere73d4f82010-10-28 21:41:58 +00007303 }
Jim Grosbach16c74252010-10-29 14:46:02 +00007304
Eric Christopherc223e2b2010-10-29 09:26:59 +00007305 llvm_unreachable("Implement any new match types added!");
Chris Lattnerfa42fad2010-10-28 21:28:01 +00007306}
7307
Jim Grosbach1355cf12011-07-26 17:10:22 +00007308/// parseDirective parses the arm specific directives
Kevin Enderbyca9c42c2009-09-15 00:27:25 +00007309bool ARMAsmParser::ParseDirective(AsmToken DirectiveID) {
7310 StringRef IDVal = DirectiveID.getIdentifier();
7311 if (IDVal == ".word")
Jim Grosbach1355cf12011-07-26 17:10:22 +00007312 return parseDirectiveWord(4, DirectiveID.getLoc());
Kevin Enderby515d5092009-10-15 20:48:48 +00007313 else if (IDVal == ".thumb")
Jim Grosbach1355cf12011-07-26 17:10:22 +00007314 return parseDirectiveThumb(DirectiveID.getLoc());
Jim Grosbach9a70df92011-12-07 18:04:19 +00007315 else if (IDVal == ".arm")
7316 return parseDirectiveARM(DirectiveID.getLoc());
Kevin Enderby515d5092009-10-15 20:48:48 +00007317 else if (IDVal == ".thumb_func")
Jim Grosbach1355cf12011-07-26 17:10:22 +00007318 return parseDirectiveThumbFunc(DirectiveID.getLoc());
Kevin Enderby515d5092009-10-15 20:48:48 +00007319 else if (IDVal == ".code")
Jim Grosbach1355cf12011-07-26 17:10:22 +00007320 return parseDirectiveCode(DirectiveID.getLoc());
Kevin Enderby515d5092009-10-15 20:48:48 +00007321 else if (IDVal == ".syntax")
Jim Grosbach1355cf12011-07-26 17:10:22 +00007322 return parseDirectiveSyntax(DirectiveID.getLoc());
Jim Grosbacha39cda72011-12-14 02:16:11 +00007323 else if (IDVal == ".unreq")
7324 return parseDirectiveUnreq(DirectiveID.getLoc());
Jason W Kimd7c9e082011-12-20 17:38:12 +00007325 else if (IDVal == ".arch")
7326 return parseDirectiveArch(DirectiveID.getLoc());
7327 else if (IDVal == ".eabi_attribute")
7328 return parseDirectiveEabiAttr(DirectiveID.getLoc());
Kevin Enderbyca9c42c2009-09-15 00:27:25 +00007329 return true;
7330}
7331
Jim Grosbach1355cf12011-07-26 17:10:22 +00007332/// parseDirectiveWord
Kevin Enderbyca9c42c2009-09-15 00:27:25 +00007333/// ::= .word [ expression (, expression)* ]
Jim Grosbach1355cf12011-07-26 17:10:22 +00007334bool ARMAsmParser::parseDirectiveWord(unsigned Size, SMLoc L) {
Kevin Enderbyca9c42c2009-09-15 00:27:25 +00007335 if (getLexer().isNot(AsmToken::EndOfStatement)) {
7336 for (;;) {
7337 const MCExpr *Value;
7338 if (getParser().ParseExpression(Value))
7339 return true;
7340
Chris Lattneraaec2052010-01-19 19:46:13 +00007341 getParser().getStreamer().EmitValue(Value, Size, 0/*addrspace*/);
Kevin Enderbyca9c42c2009-09-15 00:27:25 +00007342
7343 if (getLexer().is(AsmToken::EndOfStatement))
7344 break;
Jim Grosbach16c74252010-10-29 14:46:02 +00007345
Kevin Enderbyca9c42c2009-09-15 00:27:25 +00007346 // FIXME: Improve diagnostic.
7347 if (getLexer().isNot(AsmToken::Comma))
7348 return Error(L, "unexpected token in directive");
Sean Callananb9a25b72010-01-19 20:27:46 +00007349 Parser.Lex();
Kevin Enderbyca9c42c2009-09-15 00:27:25 +00007350 }
7351 }
7352
Sean Callananb9a25b72010-01-19 20:27:46 +00007353 Parser.Lex();
Kevin Enderbyca9c42c2009-09-15 00:27:25 +00007354 return false;
7355}
7356
Jim Grosbach1355cf12011-07-26 17:10:22 +00007357/// parseDirectiveThumb
Kevin Enderby515d5092009-10-15 20:48:48 +00007358/// ::= .thumb
Jim Grosbach1355cf12011-07-26 17:10:22 +00007359bool ARMAsmParser::parseDirectiveThumb(SMLoc L) {
Kevin Enderby515d5092009-10-15 20:48:48 +00007360 if (getLexer().isNot(AsmToken::EndOfStatement))
7361 return Error(L, "unexpected token in directive");
Sean Callananb9a25b72010-01-19 20:27:46 +00007362 Parser.Lex();
Kevin Enderby515d5092009-10-15 20:48:48 +00007363
Jim Grosbach9a70df92011-12-07 18:04:19 +00007364 if (!isThumb())
7365 SwitchMode();
7366 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code16);
7367 return false;
7368}
7369
7370/// parseDirectiveARM
7371/// ::= .arm
7372bool ARMAsmParser::parseDirectiveARM(SMLoc L) {
7373 if (getLexer().isNot(AsmToken::EndOfStatement))
7374 return Error(L, "unexpected token in directive");
7375 Parser.Lex();
7376
7377 if (isThumb())
7378 SwitchMode();
7379 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code32);
Kevin Enderby515d5092009-10-15 20:48:48 +00007380 return false;
7381}
7382
Jim Grosbach1355cf12011-07-26 17:10:22 +00007383/// parseDirectiveThumbFunc
Kevin Enderby515d5092009-10-15 20:48:48 +00007384/// ::= .thumbfunc symbol_name
Jim Grosbach1355cf12011-07-26 17:10:22 +00007385bool ARMAsmParser::parseDirectiveThumbFunc(SMLoc L) {
Rafael Espindola64695402011-05-16 16:17:21 +00007386 const MCAsmInfo &MAI = getParser().getStreamer().getContext().getAsmInfo();
7387 bool isMachO = MAI.hasSubsectionsViaSymbols();
7388 StringRef Name;
Jim Grosbachde4d8392011-12-21 22:30:16 +00007389 bool needFuncName = true;
Rafael Espindola64695402011-05-16 16:17:21 +00007390
Jim Grosbachde4d8392011-12-21 22:30:16 +00007391 // Darwin asm has (optionally) function name after .thumb_func direction
Rafael Espindola64695402011-05-16 16:17:21 +00007392 // ELF doesn't
7393 if (isMachO) {
7394 const AsmToken &Tok = Parser.getTok();
Jim Grosbachde4d8392011-12-21 22:30:16 +00007395 if (Tok.isNot(AsmToken::EndOfStatement)) {
7396 if (Tok.isNot(AsmToken::Identifier) && Tok.isNot(AsmToken::String))
7397 return Error(L, "unexpected token in .thumb_func directive");
7398 Name = Tok.getIdentifier();
7399 Parser.Lex(); // Consume the identifier token.
7400 needFuncName = false;
7401 }
Rafael Espindola64695402011-05-16 16:17:21 +00007402 }
7403
Jim Grosbachde4d8392011-12-21 22:30:16 +00007404 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderby515d5092009-10-15 20:48:48 +00007405 return Error(L, "unexpected token in directive");
Jim Grosbachde4d8392011-12-21 22:30:16 +00007406
7407 // Eat the end of statement and any blank lines that follow.
7408 while (getLexer().is(AsmToken::EndOfStatement))
7409 Parser.Lex();
Kevin Enderby515d5092009-10-15 20:48:48 +00007410
Rafael Espindola64695402011-05-16 16:17:21 +00007411 // FIXME: assuming function name will be the line following .thumb_func
Jim Grosbachde4d8392011-12-21 22:30:16 +00007412 // We really should be checking the next symbol definition even if there's
7413 // stuff in between.
7414 if (needFuncName) {
Jim Grosbachd475f862011-11-10 20:48:53 +00007415 Name = Parser.getTok().getIdentifier();
Rafael Espindola64695402011-05-16 16:17:21 +00007416 }
7417
Jim Grosbach642fc9c2010-11-05 22:33:53 +00007418 // Mark symbol as a thumb symbol.
7419 MCSymbol *Func = getParser().getContext().GetOrCreateSymbol(Name);
7420 getParser().getStreamer().EmitThumbFunc(Func);
Kevin Enderby515d5092009-10-15 20:48:48 +00007421 return false;
7422}
7423
Jim Grosbach1355cf12011-07-26 17:10:22 +00007424/// parseDirectiveSyntax
Kevin Enderby515d5092009-10-15 20:48:48 +00007425/// ::= .syntax unified | divided
Jim Grosbach1355cf12011-07-26 17:10:22 +00007426bool ARMAsmParser::parseDirectiveSyntax(SMLoc L) {
Sean Callanan18b83232010-01-19 21:44:56 +00007427 const AsmToken &Tok = Parser.getTok();
Kevin Enderby515d5092009-10-15 20:48:48 +00007428 if (Tok.isNot(AsmToken::Identifier))
7429 return Error(L, "unexpected token in .syntax directive");
Benjamin Kramer38e59892010-07-14 22:38:02 +00007430 StringRef Mode = Tok.getString();
Duncan Sands58c86912010-06-29 13:04:35 +00007431 if (Mode == "unified" || Mode == "UNIFIED")
Sean Callananb9a25b72010-01-19 20:27:46 +00007432 Parser.Lex();
Duncan Sands58c86912010-06-29 13:04:35 +00007433 else if (Mode == "divided" || Mode == "DIVIDED")
Kevin Enderby9e56fb12011-01-27 23:22:36 +00007434 return Error(L, "'.syntax divided' arm asssembly not supported");
Kevin Enderby515d5092009-10-15 20:48:48 +00007435 else
7436 return Error(L, "unrecognized syntax mode in .syntax directive");
7437
7438 if (getLexer().isNot(AsmToken::EndOfStatement))
Sean Callanan18b83232010-01-19 21:44:56 +00007439 return Error(Parser.getTok().getLoc(), "unexpected token in directive");
Sean Callananb9a25b72010-01-19 20:27:46 +00007440 Parser.Lex();
Kevin Enderby515d5092009-10-15 20:48:48 +00007441
7442 // TODO tell the MC streamer the mode
7443 // getParser().getStreamer().Emit???();
7444 return false;
7445}
7446
Jim Grosbach1355cf12011-07-26 17:10:22 +00007447/// parseDirectiveCode
Kevin Enderby515d5092009-10-15 20:48:48 +00007448/// ::= .code 16 | 32
Jim Grosbach1355cf12011-07-26 17:10:22 +00007449bool ARMAsmParser::parseDirectiveCode(SMLoc L) {
Sean Callanan18b83232010-01-19 21:44:56 +00007450 const AsmToken &Tok = Parser.getTok();
Kevin Enderby515d5092009-10-15 20:48:48 +00007451 if (Tok.isNot(AsmToken::Integer))
7452 return Error(L, "unexpected token in .code directive");
Sean Callanan18b83232010-01-19 21:44:56 +00007453 int64_t Val = Parser.getTok().getIntVal();
Duncan Sands58c86912010-06-29 13:04:35 +00007454 if (Val == 16)
Sean Callananb9a25b72010-01-19 20:27:46 +00007455 Parser.Lex();
Duncan Sands58c86912010-06-29 13:04:35 +00007456 else if (Val == 32)
Sean Callananb9a25b72010-01-19 20:27:46 +00007457 Parser.Lex();
Kevin Enderby515d5092009-10-15 20:48:48 +00007458 else
7459 return Error(L, "invalid operand to .code directive");
7460
7461 if (getLexer().isNot(AsmToken::EndOfStatement))
Sean Callanan18b83232010-01-19 21:44:56 +00007462 return Error(Parser.getTok().getLoc(), "unexpected token in directive");
Sean Callananb9a25b72010-01-19 20:27:46 +00007463 Parser.Lex();
Kevin Enderby515d5092009-10-15 20:48:48 +00007464
Evan Cheng32869202011-07-08 22:36:29 +00007465 if (Val == 16) {
Jim Grosbach98447da2011-09-06 18:46:23 +00007466 if (!isThumb())
Evan Chengffc0e732011-07-09 05:47:46 +00007467 SwitchMode();
Jim Grosbach98447da2011-09-06 18:46:23 +00007468 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code16);
Evan Cheng32869202011-07-08 22:36:29 +00007469 } else {
Jim Grosbach98447da2011-09-06 18:46:23 +00007470 if (isThumb())
Evan Chengffc0e732011-07-09 05:47:46 +00007471 SwitchMode();
Jim Grosbach98447da2011-09-06 18:46:23 +00007472 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code32);
Evan Chengeb0caa12011-07-08 22:49:55 +00007473 }
Jim Grosbach2a301702010-11-05 22:40:53 +00007474
Kevin Enderby515d5092009-10-15 20:48:48 +00007475 return false;
7476}
7477
Jim Grosbacha39cda72011-12-14 02:16:11 +00007478/// parseDirectiveReq
7479/// ::= name .req registername
7480bool ARMAsmParser::parseDirectiveReq(StringRef Name, SMLoc L) {
7481 Parser.Lex(); // Eat the '.req' token.
7482 unsigned Reg;
7483 SMLoc SRegLoc, ERegLoc;
7484 if (ParseRegister(Reg, SRegLoc, ERegLoc)) {
7485 Parser.EatToEndOfStatement();
7486 return Error(SRegLoc, "register name expected");
7487 }
7488
7489 // Shouldn't be anything else.
7490 if (Parser.getTok().isNot(AsmToken::EndOfStatement)) {
7491 Parser.EatToEndOfStatement();
7492 return Error(Parser.getTok().getLoc(),
7493 "unexpected input in .req directive.");
7494 }
7495
7496 Parser.Lex(); // Consume the EndOfStatement
7497
7498 if (RegisterReqs.GetOrCreateValue(Name, Reg).getValue() != Reg)
7499 return Error(SRegLoc, "redefinition of '" + Name +
7500 "' does not match original.");
7501
7502 return false;
7503}
7504
7505/// parseDirectiveUneq
7506/// ::= .unreq registername
7507bool ARMAsmParser::parseDirectiveUnreq(SMLoc L) {
7508 if (Parser.getTok().isNot(AsmToken::Identifier)) {
7509 Parser.EatToEndOfStatement();
7510 return Error(L, "unexpected input in .unreq directive.");
7511 }
7512 RegisterReqs.erase(Parser.getTok().getIdentifier());
7513 Parser.Lex(); // Eat the identifier.
7514 return false;
7515}
7516
Jason W Kimd7c9e082011-12-20 17:38:12 +00007517/// parseDirectiveArch
7518/// ::= .arch token
7519bool ARMAsmParser::parseDirectiveArch(SMLoc L) {
7520 return true;
7521}
7522
7523/// parseDirectiveEabiAttr
7524/// ::= .eabi_attribute int, int
7525bool ARMAsmParser::parseDirectiveEabiAttr(SMLoc L) {
7526 return true;
7527}
7528
Sean Callanan90b70972010-04-07 20:29:34 +00007529extern "C" void LLVMInitializeARMAsmLexer();
7530
Kevin Enderby9c41fa82009-10-30 22:55:57 +00007531/// Force static initialization.
Kevin Enderbyca9c42c2009-09-15 00:27:25 +00007532extern "C" void LLVMInitializeARMAsmParser() {
Evan Cheng94b95502011-07-26 00:24:13 +00007533 RegisterMCAsmParser<ARMAsmParser> X(TheARMTarget);
7534 RegisterMCAsmParser<ARMAsmParser> Y(TheThumbTarget);
Sean Callanan90b70972010-04-07 20:29:34 +00007535 LLVMInitializeARMAsmLexer();
Kevin Enderbyca9c42c2009-09-15 00:27:25 +00007536}
Daniel Dunbar3483aca2010-08-11 05:24:50 +00007537
Chris Lattner0692ee62010-09-06 19:11:01 +00007538#define GET_REGISTER_MATCHER
7539#define GET_MATCHER_IMPLEMENTATION
Daniel Dunbar3483aca2010-08-11 05:24:50 +00007540#include "ARMGenAsmMatcher.inc"