blob: c897efd0198fc922ae78ed47dc87cd2957d5d08a [file] [log] [blame]
Kevin Enderbyccab3172009-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 Cheng11424442011-07-26 00:24:13 +000010#include "llvm/MC/MCTargetAsmParser.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000011#include "MCTargetDesc/ARMAddressingModes.h"
12#include "MCTargetDesc/ARMBaseInfo.h"
13#include "MCTargetDesc/ARMMCExpr.h"
Jim Grosbach5c932b22011-08-22 18:50:36 +000014#include "llvm/ADT/BitVector.h"
Benjamin Kramerdebe69f2011-07-08 21:06:23 +000015#include "llvm/ADT/OwningPtr.h"
Evan Cheng11424442011-07-26 00:24:13 +000016#include "llvm/ADT/STLExtras.h"
Chris Lattner00646cf2010-01-22 01:44:57 +000017#include "llvm/ADT/SmallVector.h"
Daniel Dunbar188b47b2010-08-11 06:37:20 +000018#include "llvm/ADT/StringSwitch.h"
Chris Lattner00646cf2010-01-22 01:44:57 +000019#include "llvm/ADT/Twine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000020#include "llvm/MC/MCAsmInfo.h"
Jack Carter718da0b2013-01-30 02:24:33 +000021#include "llvm/MC/MCAssembler.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000022#include "llvm/MC/MCContext.h"
Jack Carter718da0b2013-01-30 02:24:33 +000023#include "llvm/MC/MCELFStreamer.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000024#include "llvm/MC/MCExpr.h"
25#include "llvm/MC/MCInst.h"
26#include "llvm/MC/MCInstrDesc.h"
27#include "llvm/MC/MCParser/MCAsmLexer.h"
28#include "llvm/MC/MCParser/MCAsmParser.h"
29#include "llvm/MC/MCParser/MCParsedAsmOperand.h"
30#include "llvm/MC/MCRegisterInfo.h"
31#include "llvm/MC/MCStreamer.h"
32#include "llvm/MC/MCSubtargetInfo.h"
Jack Carter718da0b2013-01-30 02:24:33 +000033#include "llvm/Support/ELF.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000034#include "llvm/Support/MathExtras.h"
35#include "llvm/Support/SourceMgr.h"
36#include "llvm/Support/TargetRegistry.h"
37#include "llvm/Support/raw_ostream.h"
Evan Cheng4d1ca962011-07-08 01:53:10 +000038
Kevin Enderbyccab3172009-09-15 00:27:25 +000039using namespace llvm;
40
Chris Lattnerbd7c9fa2010-10-28 17:20:03 +000041namespace {
Bill Wendlingee7f1f92010-11-06 21:42:12 +000042
43class ARMOperand;
Jim Grosbach624bcc72010-10-29 14:46:02 +000044
Jim Grosbach04945c42011-12-02 00:35:16 +000045enum VectorLaneTy { NoLanes, AllLanes, IndexedLane };
Jim Grosbachcd6f5e72011-11-30 01:09:44 +000046
Evan Cheng11424442011-07-26 00:24:13 +000047class ARMAsmParser : public MCTargetAsmParser {
Evan Cheng91111d22011-07-09 05:47:46 +000048 MCSubtargetInfo &STI;
Kevin Enderbyccab3172009-09-15 00:27:25 +000049 MCAsmParser &Parser;
Jim Grosbachc988e0c2012-03-05 19:33:30 +000050 const MCRegisterInfo *MRI;
Kevin Enderbyccab3172009-09-15 00:27:25 +000051
Jim Grosbachab5830e2011-12-14 02:16:11 +000052 // Map of register aliases registers via the .req directive.
53 StringMap<unsigned> RegisterReqs;
54
Jim Grosbached16ec42011-08-29 22:24:09 +000055 struct {
56 ARMCC::CondCodes Cond; // Condition for IT block.
57 unsigned Mask:4; // Condition mask for instructions.
58 // Starting at first 1 (from lsb).
59 // '1' condition as indicated in IT.
60 // '0' inverse of condition (else).
61 // Count of instructions in IT block is
62 // 4 - trailingzeroes(mask)
63
64 bool FirstCond; // Explicit flag for when we're parsing the
65 // First instruction in the IT block. It's
66 // implied in the mask, so needs special
67 // handling.
68
69 unsigned CurPosition; // Current position in parsing of IT
70 // block. In range [0,3]. Initialized
71 // according to count of instructions in block.
72 // ~0U if no active IT block.
73 } ITState;
74 bool inITBlock() { return ITState.CurPosition != ~0U;}
Jim Grosbacha0d34d32011-09-02 23:22:08 +000075 void forwardITPosition() {
76 if (!inITBlock()) return;
77 // Move to the next instruction in the IT block, if there is one. If not,
78 // mark the block as done.
79 unsigned TZ = CountTrailingZeros_32(ITState.Mask);
80 if (++ITState.CurPosition == 5 - TZ)
81 ITState.CurPosition = ~0U; // Done with the IT block after this.
82 }
Jim Grosbached16ec42011-08-29 22:24:09 +000083
84
Kevin Enderbyccab3172009-09-15 00:27:25 +000085 MCAsmParser &getParser() const { return Parser; }
Kevin Enderbyccab3172009-09-15 00:27:25 +000086 MCAsmLexer &getLexer() const { return Parser.getLexer(); }
87
Benjamin Kramer673824b2012-04-15 17:04:27 +000088 bool Warning(SMLoc L, const Twine &Msg,
89 ArrayRef<SMRange> Ranges = ArrayRef<SMRange>()) {
90 return Parser.Warning(L, Msg, Ranges);
91 }
92 bool Error(SMLoc L, const Twine &Msg,
93 ArrayRef<SMRange> Ranges = ArrayRef<SMRange>()) {
94 return Parser.Error(L, Msg, Ranges);
95 }
Kevin Enderbyccab3172009-09-15 00:27:25 +000096
Jim Grosbacheab1c0d2011-07-26 17:10:22 +000097 int tryParseRegister();
98 bool tryParseRegisterWithWriteBack(SmallVectorImpl<MCParsedAsmOperand*> &);
Jim Grosbach0d6022d2011-07-26 20:41:24 +000099 int tryParseShiftRegister(SmallVectorImpl<MCParsedAsmOperand*> &);
Jim Grosbacheab1c0d2011-07-26 17:10:22 +0000100 bool parseRegisterList(SmallVectorImpl<MCParsedAsmOperand*> &);
Jim Grosbachd3595712011-08-03 23:50:40 +0000101 bool parseMemory(SmallVectorImpl<MCParsedAsmOperand*> &);
Jim Grosbacheab1c0d2011-07-26 17:10:22 +0000102 bool parseOperand(SmallVectorImpl<MCParsedAsmOperand*> &, StringRef Mnemonic);
103 bool parsePrefix(ARMMCExpr::VariantKind &RefKind);
Jim Grosbachd3595712011-08-03 23:50:40 +0000104 bool parseMemRegOffsetShift(ARM_AM::ShiftOpc &ShiftType,
105 unsigned &ShiftAmount);
Jim Grosbacheab1c0d2011-07-26 17:10:22 +0000106 bool parseDirectiveWord(unsigned Size, SMLoc L);
107 bool parseDirectiveThumb(SMLoc L);
Jim Grosbach7f882392011-12-07 18:04:19 +0000108 bool parseDirectiveARM(SMLoc L);
Jim Grosbacheab1c0d2011-07-26 17:10:22 +0000109 bool parseDirectiveThumbFunc(SMLoc L);
110 bool parseDirectiveCode(SMLoc L);
111 bool parseDirectiveSyntax(SMLoc L);
Jim Grosbachab5830e2011-12-14 02:16:11 +0000112 bool parseDirectiveReq(StringRef Name, SMLoc L);
113 bool parseDirectiveUnreq(SMLoc L);
Jason W Kim135d2442011-12-20 17:38:12 +0000114 bool parseDirectiveArch(SMLoc L);
115 bool parseDirectiveEabiAttr(SMLoc L);
Kevin Enderby146dcf22009-10-15 20:48:48 +0000116
Jim Grosbacheab1c0d2011-07-26 17:10:22 +0000117 StringRef splitMnemonic(StringRef Mnemonic, unsigned &PredicationCode,
Jim Grosbach3d1eac82011-08-26 21:43:41 +0000118 bool &CarrySetting, unsigned &ProcessorIMod,
119 StringRef &ITMask);
Jim Grosbacheab1c0d2011-07-26 17:10:22 +0000120 void getMnemonicAcceptInfo(StringRef Mnemonic, bool &CanAcceptCarrySet,
Bruno Cardoso Lopese6290cc2011-01-18 20:55:11 +0000121 bool &CanAcceptPredicationCode);
Jim Grosbach624bcc72010-10-29 14:46:02 +0000122
Evan Cheng4d1ca962011-07-08 01:53:10 +0000123 bool isThumb() const {
124 // FIXME: Can tablegen auto-generate this?
Evan Cheng91111d22011-07-09 05:47:46 +0000125 return (STI.getFeatureBits() & ARM::ModeThumb) != 0;
Evan Cheng4d1ca962011-07-08 01:53:10 +0000126 }
Evan Cheng4d1ca962011-07-08 01:53:10 +0000127 bool isThumbOne() const {
Evan Cheng91111d22011-07-09 05:47:46 +0000128 return isThumb() && (STI.getFeatureBits() & ARM::FeatureThumb2) == 0;
Evan Cheng4d1ca962011-07-08 01:53:10 +0000129 }
Jim Grosbach3e941ae2011-08-16 20:45:50 +0000130 bool isThumbTwo() const {
131 return isThumb() && (STI.getFeatureBits() & ARM::FeatureThumb2);
132 }
Jim Grosbachb7fa2c02011-08-16 22:20:01 +0000133 bool hasV6Ops() const {
134 return STI.getFeatureBits() & ARM::HasV6Ops;
135 }
James Molloy21efa7d2011-09-28 14:21:38 +0000136 bool hasV7Ops() const {
137 return STI.getFeatureBits() & ARM::HasV7Ops;
138 }
Evan Cheng284b4672011-07-08 22:36:29 +0000139 void SwitchMode() {
Evan Cheng91111d22011-07-09 05:47:46 +0000140 unsigned FB = ComputeAvailableFeatures(STI.ToggleFeature(ARM::ModeThumb));
141 setAvailableFeatures(FB);
Evan Cheng284b4672011-07-08 22:36:29 +0000142 }
James Molloy21efa7d2011-09-28 14:21:38 +0000143 bool isMClass() const {
144 return STI.getFeatureBits() & ARM::FeatureMClass;
145 }
Evan Cheng4d1ca962011-07-08 01:53:10 +0000146
Kevin Enderbyfebe39b2009-10-06 22:26:42 +0000147 /// @name Auto-generated Match Functions
148 /// {
Daniel Dunbar5cd4d0f2010-08-11 05:24:50 +0000149
Chris Lattner3e4582a2010-09-06 19:11:01 +0000150#define GET_ASSEMBLER_HEADER
151#include "ARMGenAsmMatcher.inc"
Kevin Enderbyfebe39b2009-10-06 22:26:42 +0000152
Kevin Enderbyfebe39b2009-10-06 22:26:42 +0000153 /// }
154
Jim Grosbach3d1eac82011-08-26 21:43:41 +0000155 OperandMatchResultTy parseITCondCode(SmallVectorImpl<MCParsedAsmOperand*>&);
Jim Grosbach2d6ef442011-07-25 20:14:50 +0000156 OperandMatchResultTy parseCoprocNumOperand(
Jim Grosbach861e49c2011-02-12 01:34:40 +0000157 SmallVectorImpl<MCParsedAsmOperand*>&);
Jim Grosbach2d6ef442011-07-25 20:14:50 +0000158 OperandMatchResultTy parseCoprocRegOperand(
Jim Grosbach861e49c2011-02-12 01:34:40 +0000159 SmallVectorImpl<MCParsedAsmOperand*>&);
Jim Grosbach48399582011-10-12 17:34:41 +0000160 OperandMatchResultTy parseCoprocOptionOperand(
161 SmallVectorImpl<MCParsedAsmOperand*>&);
Jim Grosbach2d6ef442011-07-25 20:14:50 +0000162 OperandMatchResultTy parseMemBarrierOptOperand(
Bruno Cardoso Lopescdd20af2011-02-18 19:49:06 +0000163 SmallVectorImpl<MCParsedAsmOperand*>&);
Jim Grosbach2d6ef442011-07-25 20:14:50 +0000164 OperandMatchResultTy parseProcIFlagsOperand(
Bruno Cardoso Lopescdd20af2011-02-18 19:49:06 +0000165 SmallVectorImpl<MCParsedAsmOperand*>&);
Jim Grosbach2d6ef442011-07-25 20:14:50 +0000166 OperandMatchResultTy parseMSRMaskOperand(
Bruno Cardoso Lopescdd20af2011-02-18 19:49:06 +0000167 SmallVectorImpl<MCParsedAsmOperand*>&);
Jim Grosbach27c1e252011-07-21 17:23:04 +0000168 OperandMatchResultTy parsePKHImm(SmallVectorImpl<MCParsedAsmOperand*> &O,
169 StringRef Op, int Low, int High);
170 OperandMatchResultTy parsePKHLSLImm(SmallVectorImpl<MCParsedAsmOperand*> &O) {
171 return parsePKHImm(O, "lsl", 0, 31);
172 }
173 OperandMatchResultTy parsePKHASRImm(SmallVectorImpl<MCParsedAsmOperand*> &O) {
174 return parsePKHImm(O, "asr", 1, 32);
175 }
Jim Grosbach0a547702011-07-22 17:44:50 +0000176 OperandMatchResultTy parseSetEndImm(SmallVectorImpl<MCParsedAsmOperand*>&);
Jim Grosbach3a9cbee2011-07-25 22:20:28 +0000177 OperandMatchResultTy parseShifterImm(SmallVectorImpl<MCParsedAsmOperand*>&);
Jim Grosbach833b9d32011-07-27 20:15:40 +0000178 OperandMatchResultTy parseRotImm(SmallVectorImpl<MCParsedAsmOperand*>&);
Jim Grosbach864b6092011-07-28 21:34:26 +0000179 OperandMatchResultTy parseBitfield(SmallVectorImpl<MCParsedAsmOperand*>&);
Jim Grosbachd3595712011-08-03 23:50:40 +0000180 OperandMatchResultTy parsePostIdxReg(SmallVectorImpl<MCParsedAsmOperand*>&);
Jim Grosbach1d9d5e92011-08-10 21:56:18 +0000181 OperandMatchResultTy parseAM3Offset(SmallVectorImpl<MCParsedAsmOperand*>&);
Jim Grosbache7fbce72011-10-03 23:38:36 +0000182 OperandMatchResultTy parseFPImm(SmallVectorImpl<MCParsedAsmOperand*>&);
Jim Grosbachad47cfc2011-10-18 23:02:30 +0000183 OperandMatchResultTy parseVectorList(SmallVectorImpl<MCParsedAsmOperand*>&);
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000184 OperandMatchResultTy parseVectorLane(VectorLaneTy &LaneKind, unsigned &Index,
185 SMLoc &EndLoc);
Bruno Cardoso Lopesab830502011-03-31 23:26:08 +0000186
187 // Asm Match Converter Methods
Chad Rosier451ef132012-08-31 22:12:31 +0000188 void cvtT2LdrdPre(MCInst &Inst, const SmallVectorImpl<MCParsedAsmOperand*> &);
189 void cvtT2StrdPre(MCInst &Inst, const SmallVectorImpl<MCParsedAsmOperand*> &);
190 void cvtLdWriteBackRegT2AddrModeImm8(MCInst &Inst,
Jim Grosbachc086f682011-09-08 00:39:19 +0000191 const SmallVectorImpl<MCParsedAsmOperand*> &);
Chad Rosier451ef132012-08-31 22:12:31 +0000192 void cvtStWriteBackRegT2AddrModeImm8(MCInst &Inst,
Jim Grosbach9c0b86a2011-09-16 21:55:56 +0000193 const SmallVectorImpl<MCParsedAsmOperand*> &);
Chad Rosier451ef132012-08-31 22:12:31 +0000194 void cvtLdWriteBackRegAddrMode2(MCInst &Inst,
Bruno Cardoso Lopesab830502011-03-31 23:26:08 +0000195 const SmallVectorImpl<MCParsedAsmOperand*> &);
Chad Rosier451ef132012-08-31 22:12:31 +0000196 void cvtLdWriteBackRegAddrModeImm12(MCInst &Inst,
Owen Anderson16d33f32011-08-26 20:43:14 +0000197 const SmallVectorImpl<MCParsedAsmOperand*> &);
Chad Rosier451ef132012-08-31 22:12:31 +0000198 void cvtStWriteBackRegAddrModeImm12(MCInst &Inst,
Jim Grosbachd564bf32011-08-11 19:22:40 +0000199 const SmallVectorImpl<MCParsedAsmOperand*> &);
Chad Rosier451ef132012-08-31 22:12:31 +0000200 void cvtStWriteBackRegAddrMode2(MCInst &Inst,
Bruno Cardoso Lopesab830502011-03-31 23:26:08 +0000201 const SmallVectorImpl<MCParsedAsmOperand*> &);
Chad Rosier451ef132012-08-31 22:12:31 +0000202 void cvtStWriteBackRegAddrMode3(MCInst &Inst,
Jim Grosbachd886f8c2011-08-11 21:17:22 +0000203 const SmallVectorImpl<MCParsedAsmOperand*> &);
Chad Rosier451ef132012-08-31 22:12:31 +0000204 void cvtLdExtTWriteBackImm(MCInst &Inst,
Jim Grosbachd3595712011-08-03 23:50:40 +0000205 const SmallVectorImpl<MCParsedAsmOperand*> &);
Chad Rosier451ef132012-08-31 22:12:31 +0000206 void cvtLdExtTWriteBackReg(MCInst &Inst,
Jim Grosbachd3595712011-08-03 23:50:40 +0000207 const SmallVectorImpl<MCParsedAsmOperand*> &);
Chad Rosier451ef132012-08-31 22:12:31 +0000208 void cvtStExtTWriteBackImm(MCInst &Inst,
Jim Grosbachd3595712011-08-03 23:50:40 +0000209 const SmallVectorImpl<MCParsedAsmOperand*> &);
Chad Rosier451ef132012-08-31 22:12:31 +0000210 void cvtStExtTWriteBackReg(MCInst &Inst,
Jim Grosbachd3595712011-08-03 23:50:40 +0000211 const SmallVectorImpl<MCParsedAsmOperand*> &);
Chad Rosier451ef132012-08-31 22:12:31 +0000212 void cvtLdrdPre(MCInst &Inst, const SmallVectorImpl<MCParsedAsmOperand*> &);
213 void cvtStrdPre(MCInst &Inst, const SmallVectorImpl<MCParsedAsmOperand*> &);
214 void cvtLdWriteBackRegAddrMode3(MCInst &Inst,
Jim Grosbachcd4dd252011-08-10 22:42:16 +0000215 const SmallVectorImpl<MCParsedAsmOperand*> &);
Chad Rosier451ef132012-08-31 22:12:31 +0000216 void cvtThumbMultiply(MCInst &Inst,
Jim Grosbach8e048492011-08-19 22:07:46 +0000217 const SmallVectorImpl<MCParsedAsmOperand*> &);
Chad Rosier451ef132012-08-31 22:12:31 +0000218 void cvtVLDwbFixed(MCInst &Inst,
Jim Grosbach3ea06572011-10-24 22:16:58 +0000219 const SmallVectorImpl<MCParsedAsmOperand*> &);
Chad Rosier451ef132012-08-31 22:12:31 +0000220 void cvtVLDwbRegister(MCInst &Inst,
Jim Grosbach3ea06572011-10-24 22:16:58 +0000221 const SmallVectorImpl<MCParsedAsmOperand*> &);
Chad Rosier451ef132012-08-31 22:12:31 +0000222 void cvtVSTwbFixed(MCInst &Inst,
Jim Grosbach05df4602011-10-31 21:50:31 +0000223 const SmallVectorImpl<MCParsedAsmOperand*> &);
Chad Rosier451ef132012-08-31 22:12:31 +0000224 void cvtVSTwbRegister(MCInst &Inst,
Jim Grosbach05df4602011-10-31 21:50:31 +0000225 const SmallVectorImpl<MCParsedAsmOperand*> &);
Jim Grosbachedaa35a2011-07-26 18:25:39 +0000226 bool validateInstruction(MCInst &Inst,
227 const SmallVectorImpl<MCParsedAsmOperand*> &Ops);
Jim Grosbachafad0532011-11-10 23:42:14 +0000228 bool processInstruction(MCInst &Inst,
Jim Grosbach8ba76c62011-08-11 17:35:48 +0000229 const SmallVectorImpl<MCParsedAsmOperand*> &Ops);
Jim Grosbach7283da92011-08-16 21:12:37 +0000230 bool shouldOmitCCOutOperand(StringRef Mnemonic,
231 SmallVectorImpl<MCParsedAsmOperand*> &Operands);
Jim Grosbachedaa35a2011-07-26 18:25:39 +0000232
Kevin Enderbyccab3172009-09-15 00:27:25 +0000233public:
Jim Grosbach3e941ae2011-08-16 20:45:50 +0000234 enum ARMMatchResultTy {
Jim Grosbachb7fa2c02011-08-16 22:20:01 +0000235 Match_RequiresITBlock = FIRST_TARGET_MATCH_RESULT_TY,
Jim Grosbached16ec42011-08-29 22:24:09 +0000236 Match_RequiresNotITBlock,
Jim Grosbachb7fa2c02011-08-16 22:20:01 +0000237 Match_RequiresV6,
Jim Grosbach087affe2012-06-22 23:56:48 +0000238 Match_RequiresThumb2,
239#define GET_OPERAND_DIAGNOSTIC_TYPES
240#include "ARMGenAsmMatcher.inc"
241
Jim Grosbach3e941ae2011-08-16 20:45:50 +0000242 };
243
Evan Cheng91111d22011-07-09 05:47:46 +0000244 ARMAsmParser(MCSubtargetInfo &_STI, MCAsmParser &_Parser)
Evan Cheng11424442011-07-26 00:24:13 +0000245 : MCTargetAsmParser(), STI(_STI), Parser(_Parser) {
Evan Cheng4d1ca962011-07-08 01:53:10 +0000246 MCAsmParserExtension::Initialize(_Parser);
Evan Cheng284b4672011-07-08 22:36:29 +0000247
Jim Grosbachc988e0c2012-03-05 19:33:30 +0000248 // Cache the MCRegisterInfo.
249 MRI = &getContext().getRegisterInfo();
250
Evan Cheng4d1ca962011-07-08 01:53:10 +0000251 // Initialize the set of available features.
Evan Cheng91111d22011-07-09 05:47:46 +0000252 setAvailableFeatures(ComputeAvailableFeatures(STI.getFeatureBits()));
Jim Grosbached16ec42011-08-29 22:24:09 +0000253
254 // Not in an ITBlock to start with.
255 ITState.CurPosition = ~0U;
Jack Carter718da0b2013-01-30 02:24:33 +0000256
257 // Set ELF header flags.
258 // FIXME: This should eventually end up somewhere else where more
259 // intelligent flag decisions can be made. For now we are just maintaining
Chandler Carruthe5d8d0d2013-01-31 23:43:14 +0000260 // the statu/parseDirects quo for ARM and setting EF_ARM_EABI_VER5 as the default.
261 if (MCELFStreamer *MES = dyn_cast<MCELFStreamer>(&Parser.getStreamer()))
262 MES->getAssembler().setELFHeaderEFlags(ELF::EF_ARM_EABI_VER5);
Evan Cheng4d1ca962011-07-08 01:53:10 +0000263 }
Kevin Enderbyccab3172009-09-15 00:27:25 +0000264
Jim Grosbacheab1c0d2011-07-26 17:10:22 +0000265 // Implementation of the MCTargetAsmParser interface:
266 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc);
Chad Rosierf0e87202012-10-25 20:41:34 +0000267 bool ParseInstruction(ParseInstructionInfo &Info, StringRef Name,
268 SMLoc NameLoc,
Jim Grosbachedaa35a2011-07-26 18:25:39 +0000269 SmallVectorImpl<MCParsedAsmOperand*> &Operands);
Jim Grosbacheab1c0d2011-07-26 17:10:22 +0000270 bool ParseDirective(AsmToken DirectiveID);
271
Jim Grosbach231e7aa2013-02-06 06:00:11 +0000272 unsigned validateTargetOperandClass(MCParsedAsmOperand *Op, unsigned Kind);
Jim Grosbach3e941ae2011-08-16 20:45:50 +0000273 unsigned checkTargetMatchPredicate(MCInst &Inst);
274
Chad Rosier49963552012-10-13 00:26:04 +0000275 bool MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode,
Jim Grosbacheab1c0d2011-07-26 17:10:22 +0000276 SmallVectorImpl<MCParsedAsmOperand*> &Operands,
Chad Rosier49963552012-10-13 00:26:04 +0000277 MCStreamer &Out, unsigned &ErrorInfo,
278 bool MatchingInlineAsm);
Kevin Enderbyccab3172009-09-15 00:27:25 +0000279};
Jim Grosbach624bcc72010-10-29 14:46:02 +0000280} // end anonymous namespace
281
Chris Lattnerbd7c9fa2010-10-28 17:20:03 +0000282namespace {
283
Kevin Enderbyfebe39b2009-10-06 22:26:42 +0000284/// ARMOperand - Instances of this class represent a parsed ARM machine
Joel Jones54597542013-01-09 22:34:16 +0000285/// operand.
Bill Wendlingee7f1f92010-11-06 21:42:12 +0000286class ARMOperand : public MCParsedAsmOperand {
Sean Callanan7ad0ad02010-04-02 22:27:05 +0000287 enum KindTy {
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000288 k_CondCode,
289 k_CCOut,
290 k_ITCondMask,
291 k_CoprocNum,
292 k_CoprocReg,
Jim Grosbach48399582011-10-12 17:34:41 +0000293 k_CoprocOption,
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000294 k_Immediate,
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000295 k_MemBarrierOpt,
296 k_Memory,
297 k_PostIndexRegister,
298 k_MSRMask,
299 k_ProcIFlags,
Jim Grosbachd0637bf2011-10-07 23:56:00 +0000300 k_VectorIndex,
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000301 k_Register,
302 k_RegisterList,
303 k_DPRRegisterList,
304 k_SPRRegisterList,
Jim Grosbachad47cfc2011-10-18 23:02:30 +0000305 k_VectorList,
Jim Grosbachcd6f5e72011-11-30 01:09:44 +0000306 k_VectorListAllLanes,
Jim Grosbach04945c42011-12-02 00:35:16 +0000307 k_VectorListIndexed,
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000308 k_ShiftedRegister,
309 k_ShiftedImmediate,
310 k_ShifterImmediate,
311 k_RotateImmediate,
312 k_BitfieldDescriptor,
313 k_Token
Kevin Enderbyfebe39b2009-10-06 22:26:42 +0000314 } Kind;
315
Sean Callanan7ad0ad02010-04-02 22:27:05 +0000316 SMLoc StartLoc, EndLoc;
Bill Wendling0ab0f672010-11-18 21:50:54 +0000317 SmallVector<unsigned, 8> Registers;
Kevin Enderbyfebe39b2009-10-06 22:26:42 +0000318
Eric Christopher8996c5d2013-03-15 00:42:55 +0000319 struct CCOp {
320 ARMCC::CondCodes Val;
321 };
322
323 struct CopOp {
324 unsigned Val;
325 };
326
327 struct CoprocOptionOp {
328 unsigned Val;
329 };
330
331 struct ITMaskOp {
332 unsigned Mask:4;
333 };
334
335 struct MBOptOp {
336 ARM_MB::MemBOpt Val;
337 };
338
339 struct IFlagsOp {
340 ARM_PROC::IFlags Val;
341 };
342
343 struct MMaskOp {
344 unsigned Val;
345 };
346
347 struct TokOp {
348 const char *Data;
349 unsigned Length;
350 };
351
352 struct RegOp {
353 unsigned RegNum;
354 };
355
356 // A vector register list is a sequential list of 1 to 4 registers.
357 struct VectorListOp {
358 unsigned RegNum;
359 unsigned Count;
360 unsigned LaneIndex;
361 bool isDoubleSpaced;
362 };
363
364 struct VectorIndexOp {
365 unsigned Val;
366 };
367
368 struct ImmOp {
369 const MCExpr *Val;
370 };
371
372 /// Combined record for all forms of ARM address expressions.
373 struct MemoryOp {
374 unsigned BaseRegNum;
375 // Offset is in OffsetReg or OffsetImm. If both are zero, no offset
376 // was specified.
377 const MCConstantExpr *OffsetImm; // Offset immediate value
378 unsigned OffsetRegNum; // Offset register num, when OffsetImm == NULL
379 ARM_AM::ShiftOpc ShiftType; // Shift type for OffsetReg
380 unsigned ShiftImm; // shift for OffsetReg.
381 unsigned Alignment; // 0 = no alignment specified
382 // n = alignment in bytes (2, 4, 8, 16, or 32)
383 unsigned isNegative : 1; // Negated OffsetReg? (~'U' bit)
384 };
385
386 struct PostIdxRegOp {
387 unsigned RegNum;
388 bool isAdd;
389 ARM_AM::ShiftOpc ShiftTy;
390 unsigned ShiftImm;
391 };
392
393 struct ShifterImmOp {
394 bool isASR;
395 unsigned Imm;
396 };
397
398 struct RegShiftedRegOp {
399 ARM_AM::ShiftOpc ShiftTy;
400 unsigned SrcReg;
401 unsigned ShiftReg;
402 unsigned ShiftImm;
403 };
404
405 struct RegShiftedImmOp {
406 ARM_AM::ShiftOpc ShiftTy;
407 unsigned SrcReg;
408 unsigned ShiftImm;
409 };
410
411 struct RotImmOp {
412 unsigned Imm;
413 };
414
415 struct BitfieldOp {
416 unsigned LSB;
417 unsigned Width;
418 };
419
Kevin Enderbyfebe39b2009-10-06 22:26:42 +0000420 union {
Eric Christopher8996c5d2013-03-15 00:42:55 +0000421 struct CCOp CC;
422 struct CopOp Cop;
423 struct CoprocOptionOp CoprocOption;
424 struct MBOptOp MBOpt;
425 struct ITMaskOp ITMask;
426 struct IFlagsOp IFlags;
427 struct MMaskOp MMask;
428 struct TokOp Tok;
429 struct RegOp Reg;
430 struct VectorListOp VectorList;
431 struct VectorIndexOp VectorIndex;
432 struct ImmOp Imm;
433 struct MemoryOp Memory;
434 struct PostIdxRegOp PostIdxReg;
435 struct ShifterImmOp ShifterImm;
436 struct RegShiftedRegOp RegShiftedReg;
437 struct RegShiftedImmOp RegShiftedImm;
438 struct RotImmOp RotImm;
439 struct BitfieldOp Bitfield;
Kevin Enderbyfebe39b2009-10-06 22:26:42 +0000440 };
Jim Grosbach624bcc72010-10-29 14:46:02 +0000441
Bill Wendlingee7f1f92010-11-06 21:42:12 +0000442 ARMOperand(KindTy K) : MCParsedAsmOperand(), Kind(K) {}
443public:
Sean Callanan7ad0ad02010-04-02 22:27:05 +0000444 ARMOperand(const ARMOperand &o) : MCParsedAsmOperand() {
445 Kind = o.Kind;
446 StartLoc = o.StartLoc;
447 EndLoc = o.EndLoc;
448 switch (Kind) {
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000449 case k_CondCode:
Daniel Dunbard8042b72010-08-11 06:36:53 +0000450 CC = o.CC;
451 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000452 case k_ITCondMask:
Jim Grosbach3d1eac82011-08-26 21:43:41 +0000453 ITMask = o.ITMask;
454 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000455 case k_Token:
Daniel Dunbard8042b72010-08-11 06:36:53 +0000456 Tok = o.Tok;
Sean Callanan7ad0ad02010-04-02 22:27:05 +0000457 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000458 case k_CCOut:
459 case k_Register:
Sean Callanan7ad0ad02010-04-02 22:27:05 +0000460 Reg = o.Reg;
461 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000462 case k_RegisterList:
463 case k_DPRRegisterList:
464 case k_SPRRegisterList:
Bill Wendling0ab0f672010-11-18 21:50:54 +0000465 Registers = o.Registers;
Bill Wendling7cef4472010-11-06 19:56:04 +0000466 break;
Jim Grosbachad47cfc2011-10-18 23:02:30 +0000467 case k_VectorList:
Jim Grosbachcd6f5e72011-11-30 01:09:44 +0000468 case k_VectorListAllLanes:
Jim Grosbach04945c42011-12-02 00:35:16 +0000469 case k_VectorListIndexed:
Jim Grosbachad47cfc2011-10-18 23:02:30 +0000470 VectorList = o.VectorList;
471 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000472 case k_CoprocNum:
473 case k_CoprocReg:
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +0000474 Cop = o.Cop;
475 break;
Jim Grosbach48399582011-10-12 17:34:41 +0000476 case k_CoprocOption:
477 CoprocOption = o.CoprocOption;
478 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000479 case k_Immediate:
Sean Callanan7ad0ad02010-04-02 22:27:05 +0000480 Imm = o.Imm;
481 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000482 case k_MemBarrierOpt:
Bruno Cardoso Lopes36dd43f2011-02-07 22:09:15 +0000483 MBOpt = o.MBOpt;
484 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000485 case k_Memory:
Jim Grosbach871dff72011-10-11 15:59:20 +0000486 Memory = o.Memory;
Sean Callanan7ad0ad02010-04-02 22:27:05 +0000487 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000488 case k_PostIndexRegister:
Jim Grosbachd3595712011-08-03 23:50:40 +0000489 PostIdxReg = o.PostIdxReg;
490 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000491 case k_MSRMask:
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +0000492 MMask = o.MMask;
493 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000494 case k_ProcIFlags:
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +0000495 IFlags = o.IFlags;
Owen Anderson1d2f5ce2011-03-18 22:50:18 +0000496 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000497 case k_ShifterImmediate:
Jim Grosbach3a9cbee2011-07-25 22:20:28 +0000498 ShifterImm = o.ShifterImm;
Owen Anderson1d2f5ce2011-03-18 22:50:18 +0000499 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000500 case k_ShiftedRegister:
Jim Grosbachac798e12011-07-25 20:49:51 +0000501 RegShiftedReg = o.RegShiftedReg;
Jim Grosbach7dcd1352011-07-13 17:50:29 +0000502 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000503 case k_ShiftedImmediate:
Jim Grosbachac798e12011-07-25 20:49:51 +0000504 RegShiftedImm = o.RegShiftedImm;
Owen Andersonb595ed02011-07-21 18:54:16 +0000505 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000506 case k_RotateImmediate:
Jim Grosbach833b9d32011-07-27 20:15:40 +0000507 RotImm = o.RotImm;
508 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000509 case k_BitfieldDescriptor:
Jim Grosbach864b6092011-07-28 21:34:26 +0000510 Bitfield = o.Bitfield;
511 break;
Jim Grosbachd0637bf2011-10-07 23:56:00 +0000512 case k_VectorIndex:
513 VectorIndex = o.VectorIndex;
514 break;
Sean Callanan7ad0ad02010-04-02 22:27:05 +0000515 }
516 }
Jim Grosbach624bcc72010-10-29 14:46:02 +0000517
Sean Callanan7ad0ad02010-04-02 22:27:05 +0000518 /// getStartLoc - Get the location of the first token of this operand.
519 SMLoc getStartLoc() const { return StartLoc; }
520 /// getEndLoc - Get the location of the last token of this operand.
521 SMLoc getEndLoc() const { return EndLoc; }
Chad Rosier143d0f72012-09-21 20:51:43 +0000522 /// getLocRange - Get the range between the first and last token of this
523 /// operand.
Benjamin Kramer673824b2012-04-15 17:04:27 +0000524 SMRange getLocRange() const { return SMRange(StartLoc, EndLoc); }
525
Daniel Dunbard8042b72010-08-11 06:36:53 +0000526 ARMCC::CondCodes getCondCode() const {
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000527 assert(Kind == k_CondCode && "Invalid access!");
Daniel Dunbard8042b72010-08-11 06:36:53 +0000528 return CC.Val;
529 }
530
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +0000531 unsigned getCoproc() const {
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000532 assert((Kind == k_CoprocNum || Kind == k_CoprocReg) && "Invalid access!");
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +0000533 return Cop.Val;
534 }
535
Kevin Enderbyfebe39b2009-10-06 22:26:42 +0000536 StringRef getToken() const {
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000537 assert(Kind == k_Token && "Invalid access!");
Kevin Enderbyfebe39b2009-10-06 22:26:42 +0000538 return StringRef(Tok.Data, Tok.Length);
539 }
540
541 unsigned getReg() const {
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000542 assert((Kind == k_Register || Kind == k_CCOut) && "Invalid access!");
Bill Wendling2cae3272010-11-09 22:44:22 +0000543 return Reg.RegNum;
Kevin Enderbyfebe39b2009-10-06 22:26:42 +0000544 }
545
Bill Wendlingbed94652010-11-09 23:28:44 +0000546 const SmallVectorImpl<unsigned> &getRegList() const {
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000547 assert((Kind == k_RegisterList || Kind == k_DPRRegisterList ||
548 Kind == k_SPRRegisterList) && "Invalid access!");
Bill Wendling0ab0f672010-11-18 21:50:54 +0000549 return Registers;
Bill Wendling7cef4472010-11-06 19:56:04 +0000550 }
551
Kevin Enderbyf5079942009-10-13 22:19:02 +0000552 const MCExpr *getImm() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000553 assert(isImm() && "Invalid access!");
Kevin Enderbyf5079942009-10-13 22:19:02 +0000554 return Imm.Val;
555 }
556
Jim Grosbachd0637bf2011-10-07 23:56:00 +0000557 unsigned getVectorIndex() const {
558 assert(Kind == k_VectorIndex && "Invalid access!");
559 return VectorIndex.Val;
560 }
561
Bruno Cardoso Lopes36dd43f2011-02-07 22:09:15 +0000562 ARM_MB::MemBOpt getMemBarrierOpt() const {
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000563 assert(Kind == k_MemBarrierOpt && "Invalid access!");
Bruno Cardoso Lopes36dd43f2011-02-07 22:09:15 +0000564 return MBOpt.Val;
565 }
566
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +0000567 ARM_PROC::IFlags getProcIFlags() const {
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000568 assert(Kind == k_ProcIFlags && "Invalid access!");
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +0000569 return IFlags.Val;
570 }
571
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +0000572 unsigned getMSRMask() const {
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000573 assert(Kind == k_MSRMask && "Invalid access!");
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +0000574 return MMask.Val;
575 }
576
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000577 bool isCoprocNum() const { return Kind == k_CoprocNum; }
578 bool isCoprocReg() const { return Kind == k_CoprocReg; }
Jim Grosbach48399582011-10-12 17:34:41 +0000579 bool isCoprocOption() const { return Kind == k_CoprocOption; }
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000580 bool isCondCode() const { return Kind == k_CondCode; }
581 bool isCCOut() const { return Kind == k_CCOut; }
582 bool isITMask() const { return Kind == k_ITCondMask; }
583 bool isITCondCode() const { return Kind == k_CondCode; }
584 bool isImm() const { return Kind == k_Immediate; }
Jim Grosbacha9d36fb2012-01-20 18:09:51 +0000585 bool isFPImm() const {
586 if (!isImm()) return false;
587 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
588 if (!CE) return false;
589 int Val = ARM_AM::getFP32Imm(APInt(32, CE->getValue()));
590 return Val != -1;
591 }
Jim Grosbachea231912011-12-22 22:19:05 +0000592 bool isFBits16() const {
593 if (!isImm()) return false;
594 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
595 if (!CE) return false;
596 int64_t Value = CE->getValue();
597 return Value >= 0 && Value <= 16;
598 }
599 bool isFBits32() const {
600 if (!isImm()) return false;
601 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
602 if (!CE) return false;
603 int64_t Value = CE->getValue();
604 return Value >= 1 && Value <= 32;
605 }
Jim Grosbach7db8d692011-09-08 22:07:06 +0000606 bool isImm8s4() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000607 if (!isImm()) return false;
Jim Grosbach7db8d692011-09-08 22:07:06 +0000608 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
609 if (!CE) return false;
610 int64_t Value = CE->getValue();
611 return ((Value & 3) == 0) && Value >= -1020 && Value <= 1020;
612 }
Jim Grosbach0a0b3072011-08-24 21:22:15 +0000613 bool isImm0_1020s4() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000614 if (!isImm()) return false;
Jim Grosbach0a0b3072011-08-24 21:22:15 +0000615 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
616 if (!CE) return false;
617 int64_t Value = CE->getValue();
618 return ((Value & 3) == 0) && Value >= 0 && Value <= 1020;
619 }
620 bool isImm0_508s4() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000621 if (!isImm()) return false;
Jim Grosbach0a0b3072011-08-24 21:22:15 +0000622 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
623 if (!CE) return false;
624 int64_t Value = CE->getValue();
625 return ((Value & 3) == 0) && Value >= 0 && Value <= 508;
626 }
Jim Grosbach930f2f62012-04-05 20:57:13 +0000627 bool isImm0_508s4Neg() const {
628 if (!isImm()) return false;
629 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
630 if (!CE) return false;
631 int64_t Value = -CE->getValue();
632 // explicitly exclude zero. we want that to use the normal 0_508 version.
633 return ((Value & 3) == 0) && Value > 0 && Value <= 508;
634 }
Jim Grosbacha6f7a1e2011-06-27 23:54:06 +0000635 bool isImm0_255() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000636 if (!isImm()) return false;
Jim Grosbacha6f7a1e2011-06-27 23:54:06 +0000637 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
638 if (!CE) return false;
639 int64_t Value = CE->getValue();
640 return Value >= 0 && Value < 256;
641 }
Jim Grosbach930f2f62012-04-05 20:57:13 +0000642 bool isImm0_4095() const {
643 if (!isImm()) return false;
644 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
645 if (!CE) return false;
646 int64_t Value = CE->getValue();
647 return Value >= 0 && Value < 4096;
648 }
649 bool isImm0_4095Neg() const {
650 if (!isImm()) return false;
651 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
652 if (!CE) return false;
653 int64_t Value = -CE->getValue();
654 return Value > 0 && Value < 4096;
655 }
Jim Grosbach9dff9f42011-12-02 23:34:39 +0000656 bool isImm0_1() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000657 if (!isImm()) return false;
Jim Grosbach9dff9f42011-12-02 23:34:39 +0000658 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
659 if (!CE) return false;
660 int64_t Value = CE->getValue();
661 return Value >= 0 && Value < 2;
662 }
663 bool isImm0_3() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000664 if (!isImm()) return false;
Jim Grosbach9dff9f42011-12-02 23:34:39 +0000665 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
666 if (!CE) return false;
667 int64_t Value = CE->getValue();
668 return Value >= 0 && Value < 4;
669 }
Jim Grosbach31756c22011-07-13 22:01:08 +0000670 bool isImm0_7() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000671 if (!isImm()) return false;
Jim Grosbach31756c22011-07-13 22:01:08 +0000672 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
673 if (!CE) return false;
674 int64_t Value = CE->getValue();
675 return Value >= 0 && Value < 8;
676 }
677 bool isImm0_15() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000678 if (!isImm()) return false;
Jim Grosbach31756c22011-07-13 22:01:08 +0000679 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
680 if (!CE) return false;
681 int64_t Value = CE->getValue();
682 return Value >= 0 && Value < 16;
683 }
Jim Grosbach72e7c4f2011-07-21 23:26:25 +0000684 bool isImm0_31() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000685 if (!isImm()) return false;
Jim Grosbach72e7c4f2011-07-21 23:26:25 +0000686 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
687 if (!CE) return false;
688 int64_t Value = CE->getValue();
689 return Value >= 0 && Value < 32;
690 }
Jim Grosbach00326402011-12-08 01:30:04 +0000691 bool isImm0_63() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000692 if (!isImm()) return false;
Jim Grosbach00326402011-12-08 01:30:04 +0000693 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
694 if (!CE) return false;
695 int64_t Value = CE->getValue();
696 return Value >= 0 && Value < 64;
697 }
Jim Grosbachd4b82492011-12-07 01:07:24 +0000698 bool isImm8() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000699 if (!isImm()) return false;
Jim Grosbachd4b82492011-12-07 01:07:24 +0000700 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
701 if (!CE) return false;
702 int64_t Value = CE->getValue();
703 return Value == 8;
704 }
705 bool isImm16() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000706 if (!isImm()) return false;
Jim Grosbachd4b82492011-12-07 01:07:24 +0000707 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
708 if (!CE) return false;
709 int64_t Value = CE->getValue();
710 return Value == 16;
711 }
712 bool isImm32() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000713 if (!isImm()) return false;
Jim Grosbachd4b82492011-12-07 01:07:24 +0000714 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
715 if (!CE) return false;
716 int64_t Value = CE->getValue();
717 return Value == 32;
718 }
Jim Grosbachba7d6ed2011-12-08 22:06:06 +0000719 bool isShrImm8() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000720 if (!isImm()) return false;
Jim Grosbachba7d6ed2011-12-08 22:06:06 +0000721 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
722 if (!CE) return false;
723 int64_t Value = CE->getValue();
724 return Value > 0 && Value <= 8;
725 }
726 bool isShrImm16() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000727 if (!isImm()) return false;
Jim Grosbachba7d6ed2011-12-08 22:06:06 +0000728 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
729 if (!CE) return false;
730 int64_t Value = CE->getValue();
731 return Value > 0 && Value <= 16;
732 }
733 bool isShrImm32() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000734 if (!isImm()) return false;
Jim Grosbachba7d6ed2011-12-08 22:06:06 +0000735 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
736 if (!CE) return false;
737 int64_t Value = CE->getValue();
738 return Value > 0 && Value <= 32;
739 }
740 bool isShrImm64() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000741 if (!isImm()) return false;
Jim Grosbachba7d6ed2011-12-08 22:06:06 +0000742 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
743 if (!CE) return false;
744 int64_t Value = CE->getValue();
745 return Value > 0 && Value <= 64;
746 }
Jim Grosbachd4b82492011-12-07 01:07:24 +0000747 bool isImm1_7() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000748 if (!isImm()) return false;
Jim Grosbachd4b82492011-12-07 01:07:24 +0000749 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
750 if (!CE) return false;
751 int64_t Value = CE->getValue();
752 return Value > 0 && Value < 8;
753 }
754 bool isImm1_15() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000755 if (!isImm()) return false;
Jim Grosbachd4b82492011-12-07 01:07:24 +0000756 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
757 if (!CE) return false;
758 int64_t Value = CE->getValue();
759 return Value > 0 && Value < 16;
760 }
761 bool isImm1_31() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000762 if (!isImm()) return false;
Jim Grosbachd4b82492011-12-07 01:07:24 +0000763 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
764 if (!CE) return false;
765 int64_t Value = CE->getValue();
766 return Value > 0 && Value < 32;
767 }
Jim Grosbach475c6db2011-07-25 23:09:14 +0000768 bool isImm1_16() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000769 if (!isImm()) return false;
Jim Grosbach475c6db2011-07-25 23:09:14 +0000770 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
771 if (!CE) return false;
772 int64_t Value = CE->getValue();
773 return Value > 0 && Value < 17;
774 }
Jim Grosbach801e0a32011-07-22 23:16:18 +0000775 bool isImm1_32() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000776 if (!isImm()) return false;
Jim Grosbach801e0a32011-07-22 23:16:18 +0000777 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
778 if (!CE) return false;
779 int64_t Value = CE->getValue();
780 return Value > 0 && Value < 33;
781 }
Jim Grosbachc14871c2011-11-10 19:18:01 +0000782 bool isImm0_32() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000783 if (!isImm()) return false;
Jim Grosbachc14871c2011-11-10 19:18:01 +0000784 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
785 if (!CE) return false;
786 int64_t Value = CE->getValue();
787 return Value >= 0 && Value < 33;
788 }
Jim Grosbach975b6412011-07-13 20:10:10 +0000789 bool isImm0_65535() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000790 if (!isImm()) return false;
Jim Grosbach975b6412011-07-13 20:10:10 +0000791 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
792 if (!CE) return false;
793 int64_t Value = CE->getValue();
794 return Value >= 0 && Value < 65536;
795 }
Jim Grosbach7c09e3c2011-07-19 19:13:28 +0000796 bool isImm0_65535Expr() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000797 if (!isImm()) return false;
Jim Grosbach7c09e3c2011-07-19 19:13:28 +0000798 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
799 // If it's not a constant expression, it'll generate a fixup and be
800 // handled later.
801 if (!CE) return true;
802 int64_t Value = CE->getValue();
803 return Value >= 0 && Value < 65536;
804 }
Jim Grosbachf1637842011-07-26 16:24:27 +0000805 bool isImm24bit() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000806 if (!isImm()) return false;
Jim Grosbachf1637842011-07-26 16:24:27 +0000807 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
808 if (!CE) return false;
809 int64_t Value = CE->getValue();
810 return Value >= 0 && Value <= 0xffffff;
811 }
Jim Grosbach46dd4132011-08-17 21:51:27 +0000812 bool isImmThumbSR() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000813 if (!isImm()) return false;
Jim Grosbach46dd4132011-08-17 21:51:27 +0000814 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
815 if (!CE) return false;
816 int64_t Value = CE->getValue();
817 return Value > 0 && Value < 33;
818 }
Jim Grosbach27c1e252011-07-21 17:23:04 +0000819 bool isPKHLSLImm() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000820 if (!isImm()) return false;
Jim Grosbach27c1e252011-07-21 17:23:04 +0000821 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
822 if (!CE) return false;
823 int64_t Value = CE->getValue();
824 return Value >= 0 && Value < 32;
825 }
826 bool isPKHASRImm() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000827 if (!isImm()) return false;
Jim Grosbach27c1e252011-07-21 17:23:04 +0000828 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
829 if (!CE) return false;
830 int64_t Value = CE->getValue();
831 return Value > 0 && Value <= 32;
832 }
Jiangning Liu10dd40e2012-08-02 08:13:13 +0000833 bool isAdrLabel() const {
834 // If we have an immediate that's not a constant, treat it as a label
835 // reference needing a fixup. If it is a constant, but it can't fit
836 // into shift immediate encoding, we reject it.
837 if (isImm() && !isa<MCConstantExpr>(getImm())) return true;
838 else return (isARMSOImm() || isARMSOImmNeg());
839 }
Jim Grosbach9720dcf2011-07-19 16:50:30 +0000840 bool isARMSOImm() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000841 if (!isImm()) return false;
Jim Grosbach9720dcf2011-07-19 16:50:30 +0000842 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
843 if (!CE) return false;
844 int64_t Value = CE->getValue();
845 return ARM_AM::getSOImmVal(Value) != -1;
846 }
Jim Grosbach3d785ed2011-10-28 22:50:54 +0000847 bool isARMSOImmNot() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000848 if (!isImm()) return false;
Jim Grosbach3d785ed2011-10-28 22:50:54 +0000849 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
850 if (!CE) return false;
851 int64_t Value = CE->getValue();
852 return ARM_AM::getSOImmVal(~Value) != -1;
853 }
Jim Grosbach30506252011-12-08 00:31:07 +0000854 bool isARMSOImmNeg() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000855 if (!isImm()) return false;
Jim Grosbach30506252011-12-08 00:31:07 +0000856 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
857 if (!CE) return false;
858 int64_t Value = CE->getValue();
Jim Grosbachfdaab532012-03-30 19:59:02 +0000859 // Only use this when not representable as a plain so_imm.
860 return ARM_AM::getSOImmVal(Value) == -1 &&
861 ARM_AM::getSOImmVal(-Value) != -1;
Jim Grosbach30506252011-12-08 00:31:07 +0000862 }
Jim Grosbacha6f7a1e2011-06-27 23:54:06 +0000863 bool isT2SOImm() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000864 if (!isImm()) return false;
Jim Grosbacha6f7a1e2011-06-27 23:54:06 +0000865 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
866 if (!CE) return false;
867 int64_t Value = CE->getValue();
868 return ARM_AM::getT2SOImmVal(Value) != -1;
869 }
Jim Grosbachb009a872011-10-28 22:36:30 +0000870 bool isT2SOImmNot() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000871 if (!isImm()) return false;
Jim Grosbachb009a872011-10-28 22:36:30 +0000872 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
873 if (!CE) return false;
874 int64_t Value = CE->getValue();
875 return ARM_AM::getT2SOImmVal(~Value) != -1;
876 }
Jim Grosbach30506252011-12-08 00:31:07 +0000877 bool isT2SOImmNeg() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000878 if (!isImm()) return false;
Jim Grosbach30506252011-12-08 00:31:07 +0000879 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
880 if (!CE) return false;
881 int64_t Value = CE->getValue();
Jim Grosbachfdaab532012-03-30 19:59:02 +0000882 // Only use this when not representable as a plain so_imm.
883 return ARM_AM::getT2SOImmVal(Value) == -1 &&
884 ARM_AM::getT2SOImmVal(-Value) != -1;
Jim Grosbach30506252011-12-08 00:31:07 +0000885 }
Jim Grosbach0a547702011-07-22 17:44:50 +0000886 bool isSetEndImm() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000887 if (!isImm()) return false;
Jim Grosbach0a547702011-07-22 17:44:50 +0000888 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
889 if (!CE) return false;
890 int64_t Value = CE->getValue();
891 return Value == 1 || Value == 0;
892 }
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000893 bool isReg() const { return Kind == k_Register; }
894 bool isRegList() const { return Kind == k_RegisterList; }
895 bool isDPRRegList() const { return Kind == k_DPRRegisterList; }
896 bool isSPRRegList() const { return Kind == k_SPRRegisterList; }
897 bool isToken() const { return Kind == k_Token; }
898 bool isMemBarrierOpt() const { return Kind == k_MemBarrierOpt; }
Chad Rosier41099832012-09-11 23:02:35 +0000899 bool isMem() const { return Kind == k_Memory; }
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000900 bool isShifterImm() const { return Kind == k_ShifterImmediate; }
901 bool isRegShiftedReg() const { return Kind == k_ShiftedRegister; }
902 bool isRegShiftedImm() const { return Kind == k_ShiftedImmediate; }
903 bool isRotImm() const { return Kind == k_RotateImmediate; }
904 bool isBitfield() const { return Kind == k_BitfieldDescriptor; }
905 bool isPostIdxRegShifted() const { return Kind == k_PostIndexRegister; }
Jim Grosbachc320c852011-08-05 21:28:30 +0000906 bool isPostIdxReg() const {
Jim Grosbachee201fa2011-11-14 17:52:47 +0000907 return Kind == k_PostIndexRegister && PostIdxReg.ShiftTy ==ARM_AM::no_shift;
Jim Grosbachc320c852011-08-05 21:28:30 +0000908 }
Jim Grosbacha95ec992011-10-11 17:29:55 +0000909 bool isMemNoOffset(bool alignOK = false) const {
Chad Rosier41099832012-09-11 23:02:35 +0000910 if (!isMem())
Bruno Cardoso Lopesab830502011-03-31 23:26:08 +0000911 return false;
Jim Grosbachd3595712011-08-03 23:50:40 +0000912 // No offset of any kind.
Jim Grosbacha95ec992011-10-11 17:29:55 +0000913 return Memory.OffsetRegNum == 0 && Memory.OffsetImm == 0 &&
914 (alignOK || Memory.Alignment == 0);
915 }
Jim Grosbach94298a92012-01-18 22:46:46 +0000916 bool isMemPCRelImm12() const {
Chad Rosier41099832012-09-11 23:02:35 +0000917 if (!isMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
Jim Grosbach94298a92012-01-18 22:46:46 +0000918 return false;
919 // Base register must be PC.
920 if (Memory.BaseRegNum != ARM::PC)
921 return false;
922 // Immediate offset in range [-4095, 4095].
923 if (!Memory.OffsetImm) return true;
924 int64_t Val = Memory.OffsetImm->getValue();
925 return (Val > -4096 && Val < 4096) || (Val == INT32_MIN);
926 }
Jim Grosbacha95ec992011-10-11 17:29:55 +0000927 bool isAlignedMemory() const {
928 return isMemNoOffset(true);
Bruno Cardoso Lopesab830502011-03-31 23:26:08 +0000929 }
Jim Grosbachd3595712011-08-03 23:50:40 +0000930 bool isAddrMode2() const {
Chad Rosier41099832012-09-11 23:02:35 +0000931 if (!isMem() || Memory.Alignment != 0) return false;
Jim Grosbachd3595712011-08-03 23:50:40 +0000932 // Check for register offset.
Jim Grosbach871dff72011-10-11 15:59:20 +0000933 if (Memory.OffsetRegNum) return true;
Jim Grosbachd3595712011-08-03 23:50:40 +0000934 // Immediate offset in range [-4095, 4095].
Jim Grosbach871dff72011-10-11 15:59:20 +0000935 if (!Memory.OffsetImm) return true;
936 int64_t Val = Memory.OffsetImm->getValue();
Jim Grosbachd3595712011-08-03 23:50:40 +0000937 return Val > -4096 && Val < 4096;
Bruno Cardoso Lopesbda36322011-04-04 17:18:19 +0000938 }
Jim Grosbachcd17c122011-08-04 23:01:30 +0000939 bool isAM2OffsetImm() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000940 if (!isImm()) return false;
Jim Grosbachcd17c122011-08-04 23:01:30 +0000941 // Immediate offset in range [-4095, 4095].
942 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
943 if (!CE) return false;
944 int64_t Val = CE->getValue();
945 return Val > -4096 && Val < 4096;
946 }
Jim Grosbach5b96b802011-08-10 20:29:19 +0000947 bool isAddrMode3() const {
Jim Grosbach8648c102011-12-19 23:06:24 +0000948 // If we have an immediate that's not a constant, treat it as a label
949 // reference needing a fixup. If it is a constant, it's something else
950 // and we reject it.
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000951 if (isImm() && !isa<MCConstantExpr>(getImm()))
Jim Grosbach8648c102011-12-19 23:06:24 +0000952 return true;
Chad Rosier41099832012-09-11 23:02:35 +0000953 if (!isMem() || Memory.Alignment != 0) return false;
Jim Grosbach5b96b802011-08-10 20:29:19 +0000954 // No shifts are legal for AM3.
Jim Grosbach871dff72011-10-11 15:59:20 +0000955 if (Memory.ShiftType != ARM_AM::no_shift) return false;
Jim Grosbach5b96b802011-08-10 20:29:19 +0000956 // Check for register offset.
Jim Grosbach871dff72011-10-11 15:59:20 +0000957 if (Memory.OffsetRegNum) return true;
Jim Grosbach5b96b802011-08-10 20:29:19 +0000958 // Immediate offset in range [-255, 255].
Jim Grosbach871dff72011-10-11 15:59:20 +0000959 if (!Memory.OffsetImm) return true;
960 int64_t Val = Memory.OffsetImm->getValue();
Silviu Baranga5a719f92012-05-11 09:10:54 +0000961 // The #-0 offset is encoded as INT32_MIN, and we have to check
962 // for this too.
963 return (Val > -256 && Val < 256) || Val == INT32_MIN;
Jim Grosbach5b96b802011-08-10 20:29:19 +0000964 }
965 bool isAM3Offset() const {
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000966 if (Kind != k_Immediate && Kind != k_PostIndexRegister)
Jim Grosbach5b96b802011-08-10 20:29:19 +0000967 return false;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000968 if (Kind == k_PostIndexRegister)
Jim Grosbach5b96b802011-08-10 20:29:19 +0000969 return PostIdxReg.ShiftTy == ARM_AM::no_shift;
970 // Immediate offset in range [-255, 255].
971 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
972 if (!CE) return false;
973 int64_t Val = CE->getValue();
Jim Grosbach1d9d5e92011-08-10 21:56:18 +0000974 // Special case, #-0 is INT32_MIN.
975 return (Val > -256 && Val < 256) || Val == INT32_MIN;
Jim Grosbach5b96b802011-08-10 20:29:19 +0000976 }
Jim Grosbachd3595712011-08-03 23:50:40 +0000977 bool isAddrMode5() const {
Jim Grosbachfb2f1d62011-11-01 01:24:45 +0000978 // If we have an immediate that's not a constant, treat it as a label
979 // reference needing a fixup. If it is a constant, it's something else
980 // and we reject it.
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000981 if (isImm() && !isa<MCConstantExpr>(getImm()))
Jim Grosbachfb2f1d62011-11-01 01:24:45 +0000982 return true;
Chad Rosier41099832012-09-11 23:02:35 +0000983 if (!isMem() || Memory.Alignment != 0) return false;
Jim Grosbachd3595712011-08-03 23:50:40 +0000984 // Check for register offset.
Jim Grosbach871dff72011-10-11 15:59:20 +0000985 if (Memory.OffsetRegNum) return false;
Jim Grosbachd3595712011-08-03 23:50:40 +0000986 // Immediate offset in range [-1020, 1020] and a multiple of 4.
Jim Grosbach871dff72011-10-11 15:59:20 +0000987 if (!Memory.OffsetImm) return true;
988 int64_t Val = Memory.OffsetImm->getValue();
Owen Anderson967674d2011-08-29 19:36:44 +0000989 return (Val >= -1020 && Val <= 1020 && ((Val & 3) == 0)) ||
Jim Grosbachfb2f1d62011-11-01 01:24:45 +0000990 Val == INT32_MIN;
Bill Wendling8d2aa032010-11-08 23:49:57 +0000991 }
Jim Grosbach05541f42011-09-19 22:21:13 +0000992 bool isMemTBB() const {
Chad Rosier41099832012-09-11 23:02:35 +0000993 if (!isMem() || !Memory.OffsetRegNum || Memory.isNegative ||
Jim Grosbacha95ec992011-10-11 17:29:55 +0000994 Memory.ShiftType != ARM_AM::no_shift || Memory.Alignment != 0)
Jim Grosbach05541f42011-09-19 22:21:13 +0000995 return false;
996 return true;
997 }
998 bool isMemTBH() const {
Chad Rosier41099832012-09-11 23:02:35 +0000999 if (!isMem() || !Memory.OffsetRegNum || Memory.isNegative ||
Jim Grosbacha95ec992011-10-11 17:29:55 +00001000 Memory.ShiftType != ARM_AM::lsl || Memory.ShiftImm != 1 ||
1001 Memory.Alignment != 0 )
Jim Grosbach05541f42011-09-19 22:21:13 +00001002 return false;
1003 return true;
1004 }
Jim Grosbachd3595712011-08-03 23:50:40 +00001005 bool isMemRegOffset() const {
Chad Rosier41099832012-09-11 23:02:35 +00001006 if (!isMem() || !Memory.OffsetRegNum || Memory.Alignment != 0)
Bill Wendling092a7bd2010-12-14 03:36:38 +00001007 return false;
Daniel Dunbar7ed45592011-01-18 05:34:11 +00001008 return true;
Bill Wendling092a7bd2010-12-14 03:36:38 +00001009 }
Jim Grosbache0ebc1c2011-09-07 23:10:15 +00001010 bool isT2MemRegOffset() const {
Chad Rosier41099832012-09-11 23:02:35 +00001011 if (!isMem() || !Memory.OffsetRegNum || Memory.isNegative ||
Jim Grosbacha95ec992011-10-11 17:29:55 +00001012 Memory.Alignment != 0)
Jim Grosbache0ebc1c2011-09-07 23:10:15 +00001013 return false;
1014 // Only lsl #{0, 1, 2, 3} allowed.
Jim Grosbach871dff72011-10-11 15:59:20 +00001015 if (Memory.ShiftType == ARM_AM::no_shift)
Jim Grosbache0ebc1c2011-09-07 23:10:15 +00001016 return true;
Jim Grosbach871dff72011-10-11 15:59:20 +00001017 if (Memory.ShiftType != ARM_AM::lsl || Memory.ShiftImm > 3)
Jim Grosbache0ebc1c2011-09-07 23:10:15 +00001018 return false;
1019 return true;
1020 }
Jim Grosbachd3595712011-08-03 23:50:40 +00001021 bool isMemThumbRR() const {
1022 // Thumb reg+reg addressing is simple. Just two registers, a base and
1023 // an offset. No shifts, negations or any other complicating factors.
Chad Rosier41099832012-09-11 23:02:35 +00001024 if (!isMem() || !Memory.OffsetRegNum || Memory.isNegative ||
Jim Grosbacha95ec992011-10-11 17:29:55 +00001025 Memory.ShiftType != ARM_AM::no_shift || Memory.Alignment != 0)
Bill Wendling811c9362010-11-30 07:44:32 +00001026 return false;
Jim Grosbach871dff72011-10-11 15:59:20 +00001027 return isARMLowRegister(Memory.BaseRegNum) &&
1028 (!Memory.OffsetRegNum || isARMLowRegister(Memory.OffsetRegNum));
Jim Grosbach3fe94e32011-08-19 17:55:24 +00001029 }
1030 bool isMemThumbRIs4() const {
Chad Rosier41099832012-09-11 23:02:35 +00001031 if (!isMem() || Memory.OffsetRegNum != 0 ||
Jim Grosbacha95ec992011-10-11 17:29:55 +00001032 !isARMLowRegister(Memory.BaseRegNum) || Memory.Alignment != 0)
Jim Grosbach3fe94e32011-08-19 17:55:24 +00001033 return false;
1034 // Immediate offset, multiple of 4 in range [0, 124].
Jim Grosbach871dff72011-10-11 15:59:20 +00001035 if (!Memory.OffsetImm) return true;
1036 int64_t Val = Memory.OffsetImm->getValue();
Jim Grosbach23983d62011-08-19 18:13:48 +00001037 return Val >= 0 && Val <= 124 && (Val % 4) == 0;
1038 }
Jim Grosbach26d35872011-08-19 18:55:51 +00001039 bool isMemThumbRIs2() const {
Chad Rosier41099832012-09-11 23:02:35 +00001040 if (!isMem() || Memory.OffsetRegNum != 0 ||
Jim Grosbacha95ec992011-10-11 17:29:55 +00001041 !isARMLowRegister(Memory.BaseRegNum) || Memory.Alignment != 0)
Jim Grosbach26d35872011-08-19 18:55:51 +00001042 return false;
1043 // Immediate offset, multiple of 4 in range [0, 62].
Jim Grosbach871dff72011-10-11 15:59:20 +00001044 if (!Memory.OffsetImm) return true;
1045 int64_t Val = Memory.OffsetImm->getValue();
Jim Grosbach26d35872011-08-19 18:55:51 +00001046 return Val >= 0 && Val <= 62 && (Val % 2) == 0;
1047 }
Jim Grosbacha32c7532011-08-19 18:49:59 +00001048 bool isMemThumbRIs1() const {
Chad Rosier41099832012-09-11 23:02:35 +00001049 if (!isMem() || Memory.OffsetRegNum != 0 ||
Jim Grosbacha95ec992011-10-11 17:29:55 +00001050 !isARMLowRegister(Memory.BaseRegNum) || Memory.Alignment != 0)
Jim Grosbacha32c7532011-08-19 18:49:59 +00001051 return false;
1052 // Immediate offset in range [0, 31].
Jim Grosbach871dff72011-10-11 15:59:20 +00001053 if (!Memory.OffsetImm) return true;
1054 int64_t Val = Memory.OffsetImm->getValue();
Jim Grosbacha32c7532011-08-19 18:49:59 +00001055 return Val >= 0 && Val <= 31;
1056 }
Jim Grosbach23983d62011-08-19 18:13:48 +00001057 bool isMemThumbSPI() const {
Chad Rosier41099832012-09-11 23:02:35 +00001058 if (!isMem() || Memory.OffsetRegNum != 0 ||
Jim Grosbacha95ec992011-10-11 17:29:55 +00001059 Memory.BaseRegNum != ARM::SP || Memory.Alignment != 0)
Jim Grosbach23983d62011-08-19 18:13:48 +00001060 return false;
1061 // Immediate offset, multiple of 4 in range [0, 1020].
Jim Grosbach871dff72011-10-11 15:59:20 +00001062 if (!Memory.OffsetImm) return true;
1063 int64_t Val = Memory.OffsetImm->getValue();
Jim Grosbach23983d62011-08-19 18:13:48 +00001064 return Val >= 0 && Val <= 1020 && (Val % 4) == 0;
Bill Wendling811c9362010-11-30 07:44:32 +00001065 }
Jim Grosbach7db8d692011-09-08 22:07:06 +00001066 bool isMemImm8s4Offset() const {
Jim Grosbach8648c102011-12-19 23:06:24 +00001067 // If we have an immediate that's not a constant, treat it as a label
1068 // reference needing a fixup. If it is a constant, it's something else
1069 // and we reject it.
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001070 if (isImm() && !isa<MCConstantExpr>(getImm()))
Jim Grosbach8648c102011-12-19 23:06:24 +00001071 return true;
Chad Rosier41099832012-09-11 23:02:35 +00001072 if (!isMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
Jim Grosbach7db8d692011-09-08 22:07:06 +00001073 return false;
1074 // Immediate offset a multiple of 4 in range [-1020, 1020].
Jim Grosbach871dff72011-10-11 15:59:20 +00001075 if (!Memory.OffsetImm) return true;
1076 int64_t Val = Memory.OffsetImm->getValue();
Jiangning Liu6a43bf72012-08-02 08:29:50 +00001077 // Special case, #-0 is INT32_MIN.
1078 return (Val >= -1020 && Val <= 1020 && (Val & 3) == 0) || Val == INT32_MIN;
Jim Grosbach7db8d692011-09-08 22:07:06 +00001079 }
Jim Grosbacha05627e2011-09-09 18:37:27 +00001080 bool isMemImm0_1020s4Offset() const {
Chad Rosier41099832012-09-11 23:02:35 +00001081 if (!isMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
Jim Grosbacha05627e2011-09-09 18:37:27 +00001082 return false;
1083 // Immediate offset a multiple of 4 in range [0, 1020].
Jim Grosbach871dff72011-10-11 15:59:20 +00001084 if (!Memory.OffsetImm) return true;
1085 int64_t Val = Memory.OffsetImm->getValue();
Jim Grosbacha05627e2011-09-09 18:37:27 +00001086 return Val >= 0 && Val <= 1020 && (Val & 3) == 0;
1087 }
Jim Grosbachd3595712011-08-03 23:50:40 +00001088 bool isMemImm8Offset() const {
Chad Rosier41099832012-09-11 23:02:35 +00001089 if (!isMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
Jim Grosbachd3595712011-08-03 23:50:40 +00001090 return false;
Jim Grosbach94298a92012-01-18 22:46:46 +00001091 // Base reg of PC isn't allowed for these encodings.
1092 if (Memory.BaseRegNum == ARM::PC) return false;
Jim Grosbachd3595712011-08-03 23:50:40 +00001093 // Immediate offset in range [-255, 255].
Jim Grosbach871dff72011-10-11 15:59:20 +00001094 if (!Memory.OffsetImm) return true;
1095 int64_t Val = Memory.OffsetImm->getValue();
Owen Anderson49168402011-09-23 22:25:02 +00001096 return (Val == INT32_MIN) || (Val > -256 && Val < 256);
Jim Grosbachd3595712011-08-03 23:50:40 +00001097 }
Jim Grosbach2392c532011-09-07 23:39:14 +00001098 bool isMemPosImm8Offset() const {
Chad Rosier41099832012-09-11 23:02:35 +00001099 if (!isMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
Jim Grosbach2392c532011-09-07 23:39:14 +00001100 return false;
1101 // Immediate offset in range [0, 255].
Jim Grosbach871dff72011-10-11 15:59:20 +00001102 if (!Memory.OffsetImm) return true;
1103 int64_t Val = Memory.OffsetImm->getValue();
Jim Grosbach2392c532011-09-07 23:39:14 +00001104 return Val >= 0 && Val < 256;
1105 }
Jim Grosbach5bfa8ba2011-09-07 20:58:57 +00001106 bool isMemNegImm8Offset() const {
Chad Rosier41099832012-09-11 23:02:35 +00001107 if (!isMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
Jim Grosbach5bfa8ba2011-09-07 20:58:57 +00001108 return false;
Jim Grosbach94298a92012-01-18 22:46:46 +00001109 // Base reg of PC isn't allowed for these encodings.
1110 if (Memory.BaseRegNum == ARM::PC) return false;
Jim Grosbach5bfa8ba2011-09-07 20:58:57 +00001111 // Immediate offset in range [-255, -1].
Jim Grosbach175c7d02011-12-06 04:49:29 +00001112 if (!Memory.OffsetImm) return false;
Jim Grosbach871dff72011-10-11 15:59:20 +00001113 int64_t Val = Memory.OffsetImm->getValue();
Jim Grosbach175c7d02011-12-06 04:49:29 +00001114 return (Val == INT32_MIN) || (Val > -256 && Val < 0);
Jim Grosbach5bfa8ba2011-09-07 20:58:57 +00001115 }
1116 bool isMemUImm12Offset() const {
Chad Rosier41099832012-09-11 23:02:35 +00001117 if (!isMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
Jim Grosbach5bfa8ba2011-09-07 20:58:57 +00001118 return false;
1119 // Immediate offset in range [0, 4095].
Jim Grosbach871dff72011-10-11 15:59:20 +00001120 if (!Memory.OffsetImm) return true;
1121 int64_t Val = Memory.OffsetImm->getValue();
Jim Grosbach5bfa8ba2011-09-07 20:58:57 +00001122 return (Val >= 0 && Val < 4096);
1123 }
Jim Grosbachd3595712011-08-03 23:50:40 +00001124 bool isMemImm12Offset() const {
Jim Grosbach95466ce2011-08-08 20:59:31 +00001125 // If we have an immediate that's not a constant, treat it as a label
1126 // reference needing a fixup. If it is a constant, it's something else
1127 // and we reject it.
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001128 if (isImm() && !isa<MCConstantExpr>(getImm()))
Jim Grosbach95466ce2011-08-08 20:59:31 +00001129 return true;
1130
Chad Rosier41099832012-09-11 23:02:35 +00001131 if (!isMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
Jim Grosbachd3595712011-08-03 23:50:40 +00001132 return false;
1133 // Immediate offset in range [-4095, 4095].
Jim Grosbach871dff72011-10-11 15:59:20 +00001134 if (!Memory.OffsetImm) return true;
1135 int64_t Val = Memory.OffsetImm->getValue();
Owen Anderson967674d2011-08-29 19:36:44 +00001136 return (Val > -4096 && Val < 4096) || (Val == INT32_MIN);
Jim Grosbachd3595712011-08-03 23:50:40 +00001137 }
1138 bool isPostIdxImm8() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001139 if (!isImm()) return false;
Jim Grosbachd3595712011-08-03 23:50:40 +00001140 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1141 if (!CE) return false;
1142 int64_t Val = CE->getValue();
Owen Andersonf02d98d2011-08-29 17:17:09 +00001143 return (Val > -256 && Val < 256) || (Val == INT32_MIN);
Jim Grosbachd3595712011-08-03 23:50:40 +00001144 }
Jim Grosbach93981412011-10-11 21:55:36 +00001145 bool isPostIdxImm8s4() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001146 if (!isImm()) return false;
Jim Grosbach93981412011-10-11 21:55:36 +00001147 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1148 if (!CE) return false;
1149 int64_t Val = CE->getValue();
1150 return ((Val & 3) == 0 && Val >= -1020 && Val <= 1020) ||
1151 (Val == INT32_MIN);
1152 }
Jim Grosbachd3595712011-08-03 23:50:40 +00001153
Jim Grosbach6e5778f2011-10-07 23:24:09 +00001154 bool isMSRMask() const { return Kind == k_MSRMask; }
1155 bool isProcIFlags() const { return Kind == k_ProcIFlags; }
Daniel Dunbar5cd4d0f2010-08-11 05:24:50 +00001156
Jim Grosbach741cd732011-10-17 22:26:03 +00001157 // NEON operands.
Jim Grosbach2f50e922011-12-15 21:44:33 +00001158 bool isSingleSpacedVectorList() const {
1159 return Kind == k_VectorList && !VectorList.isDoubleSpaced;
1160 }
1161 bool isDoubleSpacedVectorList() const {
1162 return Kind == k_VectorList && VectorList.isDoubleSpaced;
1163 }
Jim Grosbachad47cfc2011-10-18 23:02:30 +00001164 bool isVecListOneD() const {
Jim Grosbach2f50e922011-12-15 21:44:33 +00001165 if (!isSingleSpacedVectorList()) return false;
Jim Grosbachad47cfc2011-10-18 23:02:30 +00001166 return VectorList.Count == 1;
1167 }
1168
Jim Grosbachc988e0c2012-03-05 19:33:30 +00001169 bool isVecListDPair() const {
1170 if (!isSingleSpacedVectorList()) return false;
1171 return (ARMMCRegisterClasses[ARM::DPairRegClassID]
1172 .contains(VectorList.RegNum));
1173 }
1174
Jim Grosbachc4360fe2011-10-21 20:02:19 +00001175 bool isVecListThreeD() const {
Jim Grosbach2f50e922011-12-15 21:44:33 +00001176 if (!isSingleSpacedVectorList()) return false;
Jim Grosbachc4360fe2011-10-21 20:02:19 +00001177 return VectorList.Count == 3;
1178 }
1179
Jim Grosbach846bcff2011-10-21 20:35:01 +00001180 bool isVecListFourD() const {
Jim Grosbach2f50e922011-12-15 21:44:33 +00001181 if (!isSingleSpacedVectorList()) return false;
Jim Grosbach846bcff2011-10-21 20:35:01 +00001182 return VectorList.Count == 4;
1183 }
1184
Jim Grosbache5307f92012-03-05 21:43:40 +00001185 bool isVecListDPairSpaced() const {
Kevin Enderby816ca272012-03-20 17:41:51 +00001186 if (isSingleSpacedVectorList()) return false;
Jim Grosbache5307f92012-03-05 21:43:40 +00001187 return (ARMMCRegisterClasses[ARM::DPairSpcRegClassID]
1188 .contains(VectorList.RegNum));
1189 }
1190
Jim Grosbachac2af3f2012-01-23 23:20:46 +00001191 bool isVecListThreeQ() const {
1192 if (!isDoubleSpacedVectorList()) return false;
1193 return VectorList.Count == 3;
1194 }
1195
Jim Grosbach1e946a42012-01-24 00:43:12 +00001196 bool isVecListFourQ() const {
1197 if (!isDoubleSpacedVectorList()) return false;
1198 return VectorList.Count == 4;
1199 }
1200
Jim Grosbachc5af54e2011-12-21 00:38:54 +00001201 bool isSingleSpacedVectorAllLanes() const {
1202 return Kind == k_VectorListAllLanes && !VectorList.isDoubleSpaced;
1203 }
1204 bool isDoubleSpacedVectorAllLanes() const {
1205 return Kind == k_VectorListAllLanes && VectorList.isDoubleSpaced;
1206 }
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00001207 bool isVecListOneDAllLanes() const {
Jim Grosbachc5af54e2011-12-21 00:38:54 +00001208 if (!isSingleSpacedVectorAllLanes()) return false;
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00001209 return VectorList.Count == 1;
1210 }
1211
Jim Grosbach13a292c2012-03-06 22:01:44 +00001212 bool isVecListDPairAllLanes() const {
Jim Grosbachc5af54e2011-12-21 00:38:54 +00001213 if (!isSingleSpacedVectorAllLanes()) return false;
Jim Grosbach13a292c2012-03-06 22:01:44 +00001214 return (ARMMCRegisterClasses[ARM::DPairRegClassID]
1215 .contains(VectorList.RegNum));
Jim Grosbachc5af54e2011-12-21 00:38:54 +00001216 }
1217
Jim Grosbached428bc2012-03-06 23:10:38 +00001218 bool isVecListDPairSpacedAllLanes() const {
Jim Grosbachc5af54e2011-12-21 00:38:54 +00001219 if (!isDoubleSpacedVectorAllLanes()) return false;
Jim Grosbach3ecf9762011-11-30 18:21:25 +00001220 return VectorList.Count == 2;
1221 }
1222
Jim Grosbachb78403c2012-01-24 23:47:04 +00001223 bool isVecListThreeDAllLanes() const {
1224 if (!isSingleSpacedVectorAllLanes()) return false;
1225 return VectorList.Count == 3;
1226 }
1227
1228 bool isVecListThreeQAllLanes() const {
1229 if (!isDoubleSpacedVectorAllLanes()) return false;
1230 return VectorList.Count == 3;
1231 }
1232
Jim Grosbach086cbfa2012-01-25 00:01:08 +00001233 bool isVecListFourDAllLanes() const {
1234 if (!isSingleSpacedVectorAllLanes()) return false;
1235 return VectorList.Count == 4;
1236 }
1237
1238 bool isVecListFourQAllLanes() const {
1239 if (!isDoubleSpacedVectorAllLanes()) return false;
1240 return VectorList.Count == 4;
1241 }
1242
Jim Grosbach75e2ab52011-12-20 19:21:26 +00001243 bool isSingleSpacedVectorIndexed() const {
1244 return Kind == k_VectorListIndexed && !VectorList.isDoubleSpaced;
1245 }
1246 bool isDoubleSpacedVectorIndexed() const {
1247 return Kind == k_VectorListIndexed && VectorList.isDoubleSpaced;
1248 }
Jim Grosbach04945c42011-12-02 00:35:16 +00001249 bool isVecListOneDByteIndexed() const {
Jim Grosbach75e2ab52011-12-20 19:21:26 +00001250 if (!isSingleSpacedVectorIndexed()) return false;
Jim Grosbach04945c42011-12-02 00:35:16 +00001251 return VectorList.Count == 1 && VectorList.LaneIndex <= 7;
1252 }
1253
Jim Grosbachda511042011-12-14 23:35:06 +00001254 bool isVecListOneDHWordIndexed() const {
Jim Grosbach75e2ab52011-12-20 19:21:26 +00001255 if (!isSingleSpacedVectorIndexed()) return false;
Jim Grosbachda511042011-12-14 23:35:06 +00001256 return VectorList.Count == 1 && VectorList.LaneIndex <= 3;
1257 }
1258
1259 bool isVecListOneDWordIndexed() const {
Jim Grosbach75e2ab52011-12-20 19:21:26 +00001260 if (!isSingleSpacedVectorIndexed()) return false;
Jim Grosbachda511042011-12-14 23:35:06 +00001261 return VectorList.Count == 1 && VectorList.LaneIndex <= 1;
1262 }
1263
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00001264 bool isVecListTwoDByteIndexed() const {
Jim Grosbach75e2ab52011-12-20 19:21:26 +00001265 if (!isSingleSpacedVectorIndexed()) return false;
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00001266 return VectorList.Count == 2 && VectorList.LaneIndex <= 7;
1267 }
1268
Jim Grosbachda511042011-12-14 23:35:06 +00001269 bool isVecListTwoDHWordIndexed() const {
Jim Grosbach75e2ab52011-12-20 19:21:26 +00001270 if (!isSingleSpacedVectorIndexed()) return false;
1271 return VectorList.Count == 2 && VectorList.LaneIndex <= 3;
1272 }
1273
1274 bool isVecListTwoQWordIndexed() const {
1275 if (!isDoubleSpacedVectorIndexed()) return false;
1276 return VectorList.Count == 2 && VectorList.LaneIndex <= 1;
1277 }
1278
1279 bool isVecListTwoQHWordIndexed() const {
1280 if (!isDoubleSpacedVectorIndexed()) return false;
Jim Grosbachda511042011-12-14 23:35:06 +00001281 return VectorList.Count == 2 && VectorList.LaneIndex <= 3;
1282 }
1283
1284 bool isVecListTwoDWordIndexed() const {
Jim Grosbach75e2ab52011-12-20 19:21:26 +00001285 if (!isSingleSpacedVectorIndexed()) return false;
Jim Grosbachda511042011-12-14 23:35:06 +00001286 return VectorList.Count == 2 && VectorList.LaneIndex <= 1;
1287 }
1288
Jim Grosbacha8b444b2012-01-23 21:53:26 +00001289 bool isVecListThreeDByteIndexed() const {
1290 if (!isSingleSpacedVectorIndexed()) return false;
1291 return VectorList.Count == 3 && VectorList.LaneIndex <= 7;
1292 }
1293
1294 bool isVecListThreeDHWordIndexed() const {
1295 if (!isSingleSpacedVectorIndexed()) return false;
1296 return VectorList.Count == 3 && VectorList.LaneIndex <= 3;
1297 }
1298
1299 bool isVecListThreeQWordIndexed() const {
1300 if (!isDoubleSpacedVectorIndexed()) return false;
1301 return VectorList.Count == 3 && VectorList.LaneIndex <= 1;
1302 }
1303
1304 bool isVecListThreeQHWordIndexed() const {
1305 if (!isDoubleSpacedVectorIndexed()) return false;
1306 return VectorList.Count == 3 && VectorList.LaneIndex <= 3;
1307 }
1308
1309 bool isVecListThreeDWordIndexed() const {
1310 if (!isSingleSpacedVectorIndexed()) return false;
1311 return VectorList.Count == 3 && VectorList.LaneIndex <= 1;
1312 }
1313
Jim Grosbach14952a02012-01-24 18:37:25 +00001314 bool isVecListFourDByteIndexed() const {
1315 if (!isSingleSpacedVectorIndexed()) return false;
1316 return VectorList.Count == 4 && VectorList.LaneIndex <= 7;
1317 }
1318
1319 bool isVecListFourDHWordIndexed() const {
1320 if (!isSingleSpacedVectorIndexed()) return false;
1321 return VectorList.Count == 4 && VectorList.LaneIndex <= 3;
1322 }
1323
1324 bool isVecListFourQWordIndexed() const {
1325 if (!isDoubleSpacedVectorIndexed()) return false;
1326 return VectorList.Count == 4 && VectorList.LaneIndex <= 1;
1327 }
1328
1329 bool isVecListFourQHWordIndexed() const {
1330 if (!isDoubleSpacedVectorIndexed()) return false;
1331 return VectorList.Count == 4 && VectorList.LaneIndex <= 3;
1332 }
1333
1334 bool isVecListFourDWordIndexed() const {
1335 if (!isSingleSpacedVectorIndexed()) return false;
1336 return VectorList.Count == 4 && VectorList.LaneIndex <= 1;
1337 }
1338
Jim Grosbachd0637bf2011-10-07 23:56:00 +00001339 bool isVectorIndex8() const {
1340 if (Kind != k_VectorIndex) return false;
1341 return VectorIndex.Val < 8;
1342 }
1343 bool isVectorIndex16() const {
1344 if (Kind != k_VectorIndex) return false;
1345 return VectorIndex.Val < 4;
1346 }
1347 bool isVectorIndex32() const {
1348 if (Kind != k_VectorIndex) return false;
1349 return VectorIndex.Val < 2;
1350 }
1351
Jim Grosbach741cd732011-10-17 22:26:03 +00001352 bool isNEONi8splat() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001353 if (!isImm()) return false;
Jim Grosbach741cd732011-10-17 22:26:03 +00001354 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1355 // Must be a constant.
1356 if (!CE) return false;
1357 int64_t Value = CE->getValue();
1358 // i8 value splatted across 8 bytes. The immediate is just the 8 byte
1359 // value.
Jim Grosbach741cd732011-10-17 22:26:03 +00001360 return Value >= 0 && Value < 256;
1361 }
Jim Grosbachd0637bf2011-10-07 23:56:00 +00001362
Jim Grosbachcda32ae2011-10-17 23:09:09 +00001363 bool isNEONi16splat() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001364 if (!isImm()) return false;
Jim Grosbachcda32ae2011-10-17 23:09:09 +00001365 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1366 // Must be a constant.
1367 if (!CE) return false;
1368 int64_t Value = CE->getValue();
1369 // i16 value in the range [0,255] or [0x0100, 0xff00]
1370 return (Value >= 0 && Value < 256) || (Value >= 0x0100 && Value <= 0xff00);
1371 }
1372
Jim Grosbach8211c052011-10-18 00:22:00 +00001373 bool isNEONi32splat() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001374 if (!isImm()) return false;
Jim Grosbach8211c052011-10-18 00:22:00 +00001375 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1376 // Must be a constant.
1377 if (!CE) return false;
1378 int64_t Value = CE->getValue();
1379 // i32 value with set bits only in one byte X000, 0X00, 00X0, or 000X.
1380 return (Value >= 0 && Value < 256) ||
1381 (Value >= 0x0100 && Value <= 0xff00) ||
1382 (Value >= 0x010000 && Value <= 0xff0000) ||
1383 (Value >= 0x01000000 && Value <= 0xff000000);
1384 }
1385
1386 bool isNEONi32vmov() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001387 if (!isImm()) return false;
Jim Grosbach8211c052011-10-18 00:22:00 +00001388 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1389 // Must be a constant.
1390 if (!CE) return false;
1391 int64_t Value = CE->getValue();
1392 // i32 value with set bits only in one byte X000, 0X00, 00X0, or 000X,
1393 // for VMOV/VMVN only, 00Xf or 0Xff are also accepted.
1394 return (Value >= 0 && Value < 256) ||
1395 (Value >= 0x0100 && Value <= 0xff00) ||
1396 (Value >= 0x010000 && Value <= 0xff0000) ||
1397 (Value >= 0x01000000 && Value <= 0xff000000) ||
1398 (Value >= 0x01ff && Value <= 0xffff && (Value & 0xff) == 0xff) ||
1399 (Value >= 0x01ffff && Value <= 0xffffff && (Value & 0xffff) == 0xffff);
1400 }
Jim Grosbach045b6c72011-12-19 23:51:07 +00001401 bool isNEONi32vmovNeg() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001402 if (!isImm()) return false;
Jim Grosbach045b6c72011-12-19 23:51:07 +00001403 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1404 // Must be a constant.
1405 if (!CE) return false;
1406 int64_t Value = ~CE->getValue();
1407 // i32 value with set bits only in one byte X000, 0X00, 00X0, or 000X,
1408 // for VMOV/VMVN only, 00Xf or 0Xff are also accepted.
1409 return (Value >= 0 && Value < 256) ||
1410 (Value >= 0x0100 && Value <= 0xff00) ||
1411 (Value >= 0x010000 && Value <= 0xff0000) ||
1412 (Value >= 0x01000000 && Value <= 0xff000000) ||
1413 (Value >= 0x01ff && Value <= 0xffff && (Value & 0xff) == 0xff) ||
1414 (Value >= 0x01ffff && Value <= 0xffffff && (Value & 0xffff) == 0xffff);
1415 }
Jim Grosbach8211c052011-10-18 00:22:00 +00001416
Jim Grosbache4454e02011-10-18 16:18:11 +00001417 bool isNEONi64splat() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001418 if (!isImm()) return false;
Jim Grosbache4454e02011-10-18 16:18:11 +00001419 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1420 // Must be a constant.
1421 if (!CE) return false;
1422 uint64_t Value = CE->getValue();
1423 // i64 value with each byte being either 0 or 0xff.
1424 for (unsigned i = 0; i < 8; ++i)
1425 if ((Value & 0xff) != 0 && (Value & 0xff) != 0xff) return false;
1426 return true;
1427 }
1428
Daniel Dunbar5cd4d0f2010-08-11 05:24:50 +00001429 void addExpr(MCInst &Inst, const MCExpr *Expr) const {
Chris Lattner5d6f6a02010-10-29 00:27:31 +00001430 // Add as immediates when possible. Null MCExpr = 0.
1431 if (Expr == 0)
1432 Inst.addOperand(MCOperand::CreateImm(0));
1433 else if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr))
Daniel Dunbar5cd4d0f2010-08-11 05:24:50 +00001434 Inst.addOperand(MCOperand::CreateImm(CE->getValue()));
1435 else
1436 Inst.addOperand(MCOperand::CreateExpr(Expr));
1437 }
1438
Daniel Dunbard8042b72010-08-11 06:36:53 +00001439 void addCondCodeOperands(MCInst &Inst, unsigned N) const {
Daniel Dunbar188b47b2010-08-11 06:37:20 +00001440 assert(N == 2 && "Invalid number of operands!");
Daniel Dunbard8042b72010-08-11 06:36:53 +00001441 Inst.addOperand(MCOperand::CreateImm(unsigned(getCondCode())));
Jim Grosbach968c9272010-12-06 18:30:57 +00001442 unsigned RegNum = getCondCode() == ARMCC::AL ? 0: ARM::CPSR;
1443 Inst.addOperand(MCOperand::CreateReg(RegNum));
Daniel Dunbard8042b72010-08-11 06:36:53 +00001444 }
1445
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00001446 void addCoprocNumOperands(MCInst &Inst, unsigned N) const {
1447 assert(N == 1 && "Invalid number of operands!");
1448 Inst.addOperand(MCOperand::CreateImm(getCoproc()));
1449 }
1450
Jim Grosbach48399582011-10-12 17:34:41 +00001451 void addCoprocRegOperands(MCInst &Inst, unsigned N) const {
1452 assert(N == 1 && "Invalid number of operands!");
1453 Inst.addOperand(MCOperand::CreateImm(getCoproc()));
1454 }
1455
1456 void addCoprocOptionOperands(MCInst &Inst, unsigned N) const {
1457 assert(N == 1 && "Invalid number of operands!");
1458 Inst.addOperand(MCOperand::CreateImm(CoprocOption.Val));
1459 }
1460
Jim Grosbach3d1eac82011-08-26 21:43:41 +00001461 void addITMaskOperands(MCInst &Inst, unsigned N) const {
1462 assert(N == 1 && "Invalid number of operands!");
1463 Inst.addOperand(MCOperand::CreateImm(ITMask.Mask));
1464 }
1465
1466 void addITCondCodeOperands(MCInst &Inst, unsigned N) const {
1467 assert(N == 1 && "Invalid number of operands!");
1468 Inst.addOperand(MCOperand::CreateImm(unsigned(getCondCode())));
1469 }
1470
Jim Grosbach0bfb4d52010-12-06 18:21:12 +00001471 void addCCOutOperands(MCInst &Inst, unsigned N) const {
1472 assert(N == 1 && "Invalid number of operands!");
1473 Inst.addOperand(MCOperand::CreateReg(getReg()));
1474 }
1475
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00001476 void addRegOperands(MCInst &Inst, unsigned N) const {
1477 assert(N == 1 && "Invalid number of operands!");
1478 Inst.addOperand(MCOperand::CreateReg(getReg()));
1479 }
1480
Jim Grosbachac798e12011-07-25 20:49:51 +00001481 void addRegShiftedRegOperands(MCInst &Inst, unsigned N) const {
Jim Grosbach7dcd1352011-07-13 17:50:29 +00001482 assert(N == 3 && "Invalid number of operands!");
Jim Grosbachee201fa2011-11-14 17:52:47 +00001483 assert(isRegShiftedReg() &&
1484 "addRegShiftedRegOperands() on non RegShiftedReg!");
Jim Grosbachac798e12011-07-25 20:49:51 +00001485 Inst.addOperand(MCOperand::CreateReg(RegShiftedReg.SrcReg));
1486 Inst.addOperand(MCOperand::CreateReg(RegShiftedReg.ShiftReg));
Jim Grosbach7dcd1352011-07-13 17:50:29 +00001487 Inst.addOperand(MCOperand::CreateImm(
Jim Grosbachac798e12011-07-25 20:49:51 +00001488 ARM_AM::getSORegOpc(RegShiftedReg.ShiftTy, RegShiftedReg.ShiftImm)));
Jim Grosbach7dcd1352011-07-13 17:50:29 +00001489 }
1490
Jim Grosbachac798e12011-07-25 20:49:51 +00001491 void addRegShiftedImmOperands(MCInst &Inst, unsigned N) const {
Owen Anderson04912702011-07-21 23:38:37 +00001492 assert(N == 2 && "Invalid number of operands!");
Jim Grosbachee201fa2011-11-14 17:52:47 +00001493 assert(isRegShiftedImm() &&
1494 "addRegShiftedImmOperands() on non RegShiftedImm!");
Jim Grosbachac798e12011-07-25 20:49:51 +00001495 Inst.addOperand(MCOperand::CreateReg(RegShiftedImm.SrcReg));
Richard Bartonba5b0cc2012-04-25 18:00:18 +00001496 // Shift of #32 is encoded as 0 where permitted
1497 unsigned Imm = (RegShiftedImm.ShiftImm == 32 ? 0 : RegShiftedImm.ShiftImm);
Owen Andersonb595ed02011-07-21 18:54:16 +00001498 Inst.addOperand(MCOperand::CreateImm(
Richard Bartonba5b0cc2012-04-25 18:00:18 +00001499 ARM_AM::getSORegOpc(RegShiftedImm.ShiftTy, Imm)));
Owen Andersonb595ed02011-07-21 18:54:16 +00001500 }
1501
Jim Grosbach3a9cbee2011-07-25 22:20:28 +00001502 void addShifterImmOperands(MCInst &Inst, unsigned N) const {
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00001503 assert(N == 1 && "Invalid number of operands!");
Jim Grosbach3a9cbee2011-07-25 22:20:28 +00001504 Inst.addOperand(MCOperand::CreateImm((ShifterImm.isASR << 5) |
1505 ShifterImm.Imm));
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00001506 }
1507
Bill Wendling8d2aa032010-11-08 23:49:57 +00001508 void addRegListOperands(MCInst &Inst, unsigned N) const {
Bill Wendling2cae3272010-11-09 22:44:22 +00001509 assert(N == 1 && "Invalid number of operands!");
Bill Wendlingbed94652010-11-09 23:28:44 +00001510 const SmallVectorImpl<unsigned> &RegList = getRegList();
1511 for (SmallVectorImpl<unsigned>::const_iterator
Bill Wendling2cae3272010-11-09 22:44:22 +00001512 I = RegList.begin(), E = RegList.end(); I != E; ++I)
1513 Inst.addOperand(MCOperand::CreateReg(*I));
Bill Wendling8d2aa032010-11-08 23:49:57 +00001514 }
1515
Bill Wendling9898ac92010-11-17 04:32:08 +00001516 void addDPRRegListOperands(MCInst &Inst, unsigned N) const {
1517 addRegListOperands(Inst, N);
1518 }
1519
1520 void addSPRRegListOperands(MCInst &Inst, unsigned N) const {
1521 addRegListOperands(Inst, N);
1522 }
1523
Jim Grosbach833b9d32011-07-27 20:15:40 +00001524 void addRotImmOperands(MCInst &Inst, unsigned N) const {
1525 assert(N == 1 && "Invalid number of operands!");
1526 // Encoded as val>>3. The printer handles display as 8, 16, 24.
1527 Inst.addOperand(MCOperand::CreateImm(RotImm.Imm >> 3));
1528 }
1529
Jim Grosbach864b6092011-07-28 21:34:26 +00001530 void addBitfieldOperands(MCInst &Inst, unsigned N) const {
1531 assert(N == 1 && "Invalid number of operands!");
1532 // Munge the lsb/width into a bitfield mask.
1533 unsigned lsb = Bitfield.LSB;
1534 unsigned width = Bitfield.Width;
1535 // Make a 32-bit mask w/ the referenced bits clear and all other bits set.
1536 uint32_t Mask = ~(((uint32_t)0xffffffff >> lsb) << (32 - width) >>
1537 (32 - (lsb + width)));
1538 Inst.addOperand(MCOperand::CreateImm(Mask));
1539 }
1540
Daniel Dunbar5cd4d0f2010-08-11 05:24:50 +00001541 void addImmOperands(MCInst &Inst, unsigned N) const {
1542 assert(N == 1 && "Invalid number of operands!");
1543 addExpr(Inst, getImm());
1544 }
Jim Grosbach624bcc72010-10-29 14:46:02 +00001545
Jim Grosbachea231912011-12-22 22:19:05 +00001546 void addFBits16Operands(MCInst &Inst, unsigned N) const {
1547 assert(N == 1 && "Invalid number of operands!");
1548 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1549 Inst.addOperand(MCOperand::CreateImm(16 - CE->getValue()));
1550 }
1551
1552 void addFBits32Operands(MCInst &Inst, unsigned N) const {
1553 assert(N == 1 && "Invalid number of operands!");
1554 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1555 Inst.addOperand(MCOperand::CreateImm(32 - CE->getValue()));
1556 }
1557
Jim Grosbache7fbce72011-10-03 23:38:36 +00001558 void addFPImmOperands(MCInst &Inst, unsigned N) const {
1559 assert(N == 1 && "Invalid number of operands!");
Jim Grosbacha9d36fb2012-01-20 18:09:51 +00001560 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1561 int Val = ARM_AM::getFP32Imm(APInt(32, CE->getValue()));
1562 Inst.addOperand(MCOperand::CreateImm(Val));
Jim Grosbache7fbce72011-10-03 23:38:36 +00001563 }
1564
Jim Grosbach7db8d692011-09-08 22:07:06 +00001565 void addImm8s4Operands(MCInst &Inst, unsigned N) const {
1566 assert(N == 1 && "Invalid number of operands!");
1567 // FIXME: We really want to scale the value here, but the LDRD/STRD
1568 // instruction don't encode operands that way yet.
1569 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1570 Inst.addOperand(MCOperand::CreateImm(CE->getValue()));
1571 }
1572
Jim Grosbach0a0b3072011-08-24 21:22:15 +00001573 void addImm0_1020s4Operands(MCInst &Inst, unsigned N) const {
1574 assert(N == 1 && "Invalid number of operands!");
1575 // The immediate is scaled by four in the encoding and is stored
1576 // in the MCInst as such. Lop off the low two bits here.
1577 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1578 Inst.addOperand(MCOperand::CreateImm(CE->getValue() / 4));
1579 }
1580
Jim Grosbach930f2f62012-04-05 20:57:13 +00001581 void addImm0_508s4NegOperands(MCInst &Inst, unsigned N) const {
1582 assert(N == 1 && "Invalid number of operands!");
1583 // The immediate is scaled by four in the encoding and is stored
1584 // in the MCInst as such. Lop off the low two bits here.
1585 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1586 Inst.addOperand(MCOperand::CreateImm(-(CE->getValue() / 4)));
1587 }
1588
Jim Grosbach0a0b3072011-08-24 21:22:15 +00001589 void addImm0_508s4Operands(MCInst &Inst, unsigned N) const {
1590 assert(N == 1 && "Invalid number of operands!");
1591 // The immediate is scaled by four in the encoding and is stored
1592 // in the MCInst as such. Lop off the low two bits here.
1593 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1594 Inst.addOperand(MCOperand::CreateImm(CE->getValue() / 4));
1595 }
1596
Jim Grosbach475c6db2011-07-25 23:09:14 +00001597 void addImm1_16Operands(MCInst &Inst, unsigned N) const {
1598 assert(N == 1 && "Invalid number of operands!");
1599 // The constant encodes as the immediate-1, and we store in the instruction
1600 // the bits as encoded, so subtract off one here.
1601 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1602 Inst.addOperand(MCOperand::CreateImm(CE->getValue() - 1));
1603 }
1604
Jim Grosbach801e0a32011-07-22 23:16:18 +00001605 void addImm1_32Operands(MCInst &Inst, unsigned N) const {
1606 assert(N == 1 && "Invalid number of operands!");
1607 // The constant encodes as the immediate-1, and we store in the instruction
1608 // the bits as encoded, so subtract off one here.
1609 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1610 Inst.addOperand(MCOperand::CreateImm(CE->getValue() - 1));
1611 }
1612
Jim Grosbach46dd4132011-08-17 21:51:27 +00001613 void addImmThumbSROperands(MCInst &Inst, unsigned N) const {
1614 assert(N == 1 && "Invalid number of operands!");
1615 // The constant encodes as the immediate, except for 32, which encodes as
1616 // zero.
1617 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1618 unsigned Imm = CE->getValue();
1619 Inst.addOperand(MCOperand::CreateImm((Imm == 32 ? 0 : Imm)));
1620 }
1621
Jim Grosbach27c1e252011-07-21 17:23:04 +00001622 void addPKHASRImmOperands(MCInst &Inst, unsigned N) const {
1623 assert(N == 1 && "Invalid number of operands!");
1624 // An ASR value of 32 encodes as 0, so that's how we want to add it to
1625 // the instruction as well.
1626 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1627 int Val = CE->getValue();
1628 Inst.addOperand(MCOperand::CreateImm(Val == 32 ? 0 : Val));
1629 }
1630
Jim Grosbachb009a872011-10-28 22:36:30 +00001631 void addT2SOImmNotOperands(MCInst &Inst, unsigned N) const {
1632 assert(N == 1 && "Invalid number of operands!");
1633 // The operand is actually a t2_so_imm, but we have its bitwise
1634 // negation in the assembly source, so twiddle it here.
1635 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1636 Inst.addOperand(MCOperand::CreateImm(~CE->getValue()));
1637 }
1638
Jim Grosbach30506252011-12-08 00:31:07 +00001639 void addT2SOImmNegOperands(MCInst &Inst, unsigned N) const {
1640 assert(N == 1 && "Invalid number of operands!");
1641 // The operand is actually a t2_so_imm, but we have its
1642 // negation in the assembly source, so twiddle it here.
1643 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1644 Inst.addOperand(MCOperand::CreateImm(-CE->getValue()));
1645 }
1646
Jim Grosbach930f2f62012-04-05 20:57:13 +00001647 void addImm0_4095NegOperands(MCInst &Inst, unsigned N) const {
1648 assert(N == 1 && "Invalid number of operands!");
1649 // The operand is actually an imm0_4095, but we have its
1650 // negation in the assembly source, so twiddle it here.
1651 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1652 Inst.addOperand(MCOperand::CreateImm(-CE->getValue()));
1653 }
1654
Jim Grosbach3d785ed2011-10-28 22:50:54 +00001655 void addARMSOImmNotOperands(MCInst &Inst, unsigned N) const {
1656 assert(N == 1 && "Invalid number of operands!");
1657 // The operand is actually a so_imm, but we have its bitwise
1658 // negation in the assembly source, so twiddle it here.
1659 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1660 Inst.addOperand(MCOperand::CreateImm(~CE->getValue()));
1661 }
1662
Jim Grosbach30506252011-12-08 00:31:07 +00001663 void addARMSOImmNegOperands(MCInst &Inst, unsigned N) const {
1664 assert(N == 1 && "Invalid number of operands!");
1665 // The operand is actually a so_imm, but we have its
1666 // negation in the assembly source, so twiddle it here.
1667 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1668 Inst.addOperand(MCOperand::CreateImm(-CE->getValue()));
1669 }
1670
Bruno Cardoso Lopes36dd43f2011-02-07 22:09:15 +00001671 void addMemBarrierOptOperands(MCInst &Inst, unsigned N) const {
1672 assert(N == 1 && "Invalid number of operands!");
1673 Inst.addOperand(MCOperand::CreateImm(unsigned(getMemBarrierOpt())));
1674 }
1675
Jim Grosbachd3595712011-08-03 23:50:40 +00001676 void addMemNoOffsetOperands(MCInst &Inst, unsigned N) const {
1677 assert(N == 1 && "Invalid number of operands!");
Jim Grosbach871dff72011-10-11 15:59:20 +00001678 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Bruno Cardoso Lopesf170f8b2011-03-24 21:04:58 +00001679 }
1680
Jim Grosbach94298a92012-01-18 22:46:46 +00001681 void addMemPCRelImm12Operands(MCInst &Inst, unsigned N) const {
1682 assert(N == 1 && "Invalid number of operands!");
1683 int32_t Imm = Memory.OffsetImm->getValue();
1684 // FIXME: Handle #-0
1685 if (Imm == INT32_MIN) Imm = 0;
1686 Inst.addOperand(MCOperand::CreateImm(Imm));
1687 }
1688
Jiangning Liu10dd40e2012-08-02 08:13:13 +00001689 void addAdrLabelOperands(MCInst &Inst, unsigned N) const {
1690 assert(N == 1 && "Invalid number of operands!");
1691 assert(isImm() && "Not an immediate!");
1692
1693 // If we have an immediate that's not a constant, treat it as a label
1694 // reference needing a fixup.
1695 if (!isa<MCConstantExpr>(getImm())) {
1696 Inst.addOperand(MCOperand::CreateExpr(getImm()));
1697 return;
1698 }
1699
1700 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1701 int Val = CE->getValue();
1702 Inst.addOperand(MCOperand::CreateImm(Val));
1703 }
1704
Jim Grosbacha95ec992011-10-11 17:29:55 +00001705 void addAlignedMemoryOperands(MCInst &Inst, unsigned N) const {
1706 assert(N == 2 && "Invalid number of operands!");
1707 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
1708 Inst.addOperand(MCOperand::CreateImm(Memory.Alignment));
1709 }
1710
Jim Grosbachd3595712011-08-03 23:50:40 +00001711 void addAddrMode2Operands(MCInst &Inst, unsigned N) const {
1712 assert(N == 3 && "Invalid number of operands!");
Jim Grosbach871dff72011-10-11 15:59:20 +00001713 int32_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0;
1714 if (!Memory.OffsetRegNum) {
Jim Grosbachd3595712011-08-03 23:50:40 +00001715 ARM_AM::AddrOpc AddSub = Val < 0 ? ARM_AM::sub : ARM_AM::add;
1716 // Special case for #-0
1717 if (Val == INT32_MIN) Val = 0;
1718 if (Val < 0) Val = -Val;
1719 Val = ARM_AM::getAM2Opc(AddSub, Val, ARM_AM::no_shift);
1720 } else {
1721 // For register offset, we encode the shift type and negation flag
1722 // here.
Jim Grosbach871dff72011-10-11 15:59:20 +00001723 Val = ARM_AM::getAM2Opc(Memory.isNegative ? ARM_AM::sub : ARM_AM::add,
1724 Memory.ShiftImm, Memory.ShiftType);
Bruno Cardoso Lopesab830502011-03-31 23:26:08 +00001725 }
Jim Grosbach871dff72011-10-11 15:59:20 +00001726 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
1727 Inst.addOperand(MCOperand::CreateReg(Memory.OffsetRegNum));
Jim Grosbachd3595712011-08-03 23:50:40 +00001728 Inst.addOperand(MCOperand::CreateImm(Val));
Bruno Cardoso Lopesab830502011-03-31 23:26:08 +00001729 }
1730
Jim Grosbachcd17c122011-08-04 23:01:30 +00001731 void addAM2OffsetImmOperands(MCInst &Inst, unsigned N) const {
1732 assert(N == 2 && "Invalid number of operands!");
1733 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1734 assert(CE && "non-constant AM2OffsetImm operand!");
1735 int32_t Val = CE->getValue();
1736 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::getAM2Opc(AddSub, Val, ARM_AM::no_shift);
1741 Inst.addOperand(MCOperand::CreateReg(0));
1742 Inst.addOperand(MCOperand::CreateImm(Val));
1743 }
1744
Jim Grosbach5b96b802011-08-10 20:29:19 +00001745 void addAddrMode3Operands(MCInst &Inst, unsigned N) const {
1746 assert(N == 3 && "Invalid number of operands!");
Jim Grosbach8648c102011-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::CreateReg(0));
1753 Inst.addOperand(MCOperand::CreateImm(0));
1754 return;
1755 }
1756
Jim Grosbach871dff72011-10-11 15:59:20 +00001757 int32_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0;
1758 if (!Memory.OffsetRegNum) {
Jim Grosbach5b96b802011-08-10 20:29:19 +00001759 ARM_AM::AddrOpc AddSub = Val < 0 ? ARM_AM::sub : ARM_AM::add;
1760 // Special case for #-0
1761 if (Val == INT32_MIN) Val = 0;
1762 if (Val < 0) Val = -Val;
1763 Val = ARM_AM::getAM3Opc(AddSub, Val);
1764 } else {
1765 // For register offset, we encode the shift type and negation flag
1766 // here.
Jim Grosbach871dff72011-10-11 15:59:20 +00001767 Val = ARM_AM::getAM3Opc(Memory.isNegative ? ARM_AM::sub : ARM_AM::add, 0);
Jim Grosbach5b96b802011-08-10 20:29:19 +00001768 }
Jim Grosbach871dff72011-10-11 15:59:20 +00001769 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
1770 Inst.addOperand(MCOperand::CreateReg(Memory.OffsetRegNum));
Jim Grosbach5b96b802011-08-10 20:29:19 +00001771 Inst.addOperand(MCOperand::CreateImm(Val));
1772 }
1773
1774 void addAM3OffsetOperands(MCInst &Inst, unsigned N) const {
1775 assert(N == 2 && "Invalid number of operands!");
Jim Grosbach6e5778f2011-10-07 23:24:09 +00001776 if (Kind == k_PostIndexRegister) {
Jim Grosbach5b96b802011-08-10 20:29:19 +00001777 int32_t Val =
1778 ARM_AM::getAM3Opc(PostIdxReg.isAdd ? ARM_AM::add : ARM_AM::sub, 0);
1779 Inst.addOperand(MCOperand::CreateReg(PostIdxReg.RegNum));
1780 Inst.addOperand(MCOperand::CreateImm(Val));
Jim Grosbach1d9d5e92011-08-10 21:56:18 +00001781 return;
Jim Grosbach5b96b802011-08-10 20:29:19 +00001782 }
1783
1784 // Constant offset.
1785 const MCConstantExpr *CE = static_cast<const MCConstantExpr*>(getImm());
1786 int32_t Val = CE->getValue();
1787 ARM_AM::AddrOpc AddSub = Val < 0 ? ARM_AM::sub : ARM_AM::add;
1788 // Special case for #-0
1789 if (Val == INT32_MIN) Val = 0;
1790 if (Val < 0) Val = -Val;
Jim Grosbach1d9d5e92011-08-10 21:56:18 +00001791 Val = ARM_AM::getAM3Opc(AddSub, Val);
Jim Grosbach5b96b802011-08-10 20:29:19 +00001792 Inst.addOperand(MCOperand::CreateReg(0));
1793 Inst.addOperand(MCOperand::CreateImm(Val));
1794 }
1795
Jim Grosbachd3595712011-08-03 23:50:40 +00001796 void addAddrMode5Operands(MCInst &Inst, unsigned N) const {
1797 assert(N == 2 && "Invalid number of operands!");
Jim Grosbachfb2f1d62011-11-01 01:24:45 +00001798 // If we have an immediate that's not a constant, treat it as a label
1799 // reference needing a fixup. If it is a constant, it's something else
1800 // and we reject it.
1801 if (isImm()) {
1802 Inst.addOperand(MCOperand::CreateExpr(getImm()));
1803 Inst.addOperand(MCOperand::CreateImm(0));
1804 return;
1805 }
1806
Jim Grosbachd3595712011-08-03 23:50:40 +00001807 // The lower two bits are always zero and as such are not encoded.
Jim Grosbach871dff72011-10-11 15:59:20 +00001808 int32_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() / 4 : 0;
Jim Grosbachd3595712011-08-03 23:50:40 +00001809 ARM_AM::AddrOpc AddSub = Val < 0 ? ARM_AM::sub : ARM_AM::add;
1810 // Special case for #-0
1811 if (Val == INT32_MIN) Val = 0;
1812 if (Val < 0) Val = -Val;
1813 Val = ARM_AM::getAM5Opc(AddSub, Val);
Jim Grosbach871dff72011-10-11 15:59:20 +00001814 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Jim Grosbachd3595712011-08-03 23:50:40 +00001815 Inst.addOperand(MCOperand::CreateImm(Val));
Bruno Cardoso Lopesbda36322011-04-04 17:18:19 +00001816 }
1817
Jim Grosbach7db8d692011-09-08 22:07:06 +00001818 void addMemImm8s4OffsetOperands(MCInst &Inst, unsigned N) const {
1819 assert(N == 2 && "Invalid number of operands!");
Jim Grosbach8648c102011-12-19 23:06:24 +00001820 // If we have an immediate that's not a constant, treat it as a label
1821 // reference needing a fixup. If it is a constant, it's something else
1822 // and we reject it.
1823 if (isImm()) {
1824 Inst.addOperand(MCOperand::CreateExpr(getImm()));
1825 Inst.addOperand(MCOperand::CreateImm(0));
1826 return;
1827 }
1828
Jim Grosbach871dff72011-10-11 15:59:20 +00001829 int64_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0;
1830 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Jim Grosbach7db8d692011-09-08 22:07:06 +00001831 Inst.addOperand(MCOperand::CreateImm(Val));
1832 }
1833
Jim Grosbacha05627e2011-09-09 18:37:27 +00001834 void addMemImm0_1020s4OffsetOperands(MCInst &Inst, unsigned N) const {
1835 assert(N == 2 && "Invalid number of operands!");
1836 // The lower two bits are always zero and as such are not encoded.
Jim Grosbach871dff72011-10-11 15:59:20 +00001837 int32_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() / 4 : 0;
1838 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Jim Grosbacha05627e2011-09-09 18:37:27 +00001839 Inst.addOperand(MCOperand::CreateImm(Val));
1840 }
1841
Jim Grosbachd3595712011-08-03 23:50:40 +00001842 void addMemImm8OffsetOperands(MCInst &Inst, unsigned N) const {
1843 assert(N == 2 && "Invalid number of operands!");
Jim Grosbach871dff72011-10-11 15:59:20 +00001844 int64_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0;
1845 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Jim Grosbachd3595712011-08-03 23:50:40 +00001846 Inst.addOperand(MCOperand::CreateImm(Val));
Chris Lattner5d6f6a02010-10-29 00:27:31 +00001847 }
Daniel Dunbar5cd4d0f2010-08-11 05:24:50 +00001848
Jim Grosbach2392c532011-09-07 23:39:14 +00001849 void addMemPosImm8OffsetOperands(MCInst &Inst, unsigned N) const {
1850 addMemImm8OffsetOperands(Inst, N);
1851 }
1852
Jim Grosbach5bfa8ba2011-09-07 20:58:57 +00001853 void addMemNegImm8OffsetOperands(MCInst &Inst, unsigned N) const {
Jim Grosbach2392c532011-09-07 23:39:14 +00001854 addMemImm8OffsetOperands(Inst, N);
Jim Grosbach5bfa8ba2011-09-07 20:58:57 +00001855 }
1856
1857 void addMemUImm12OffsetOperands(MCInst &Inst, unsigned N) const {
1858 assert(N == 2 && "Invalid number of operands!");
1859 // If this is an immediate, it's a label reference.
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001860 if (isImm()) {
Jim Grosbach5bfa8ba2011-09-07 20:58:57 +00001861 addExpr(Inst, getImm());
1862 Inst.addOperand(MCOperand::CreateImm(0));
1863 return;
1864 }
1865
1866 // Otherwise, it's a normal memory reg+offset.
Jim Grosbach871dff72011-10-11 15:59:20 +00001867 int64_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0;
1868 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Jim Grosbach5bfa8ba2011-09-07 20:58:57 +00001869 Inst.addOperand(MCOperand::CreateImm(Val));
1870 }
1871
Jim Grosbachd3595712011-08-03 23:50:40 +00001872 void addMemImm12OffsetOperands(MCInst &Inst, unsigned N) const {
1873 assert(N == 2 && "Invalid number of operands!");
Jim Grosbach95466ce2011-08-08 20:59:31 +00001874 // If this is an immediate, it's a label reference.
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001875 if (isImm()) {
Jim Grosbach95466ce2011-08-08 20:59:31 +00001876 addExpr(Inst, getImm());
1877 Inst.addOperand(MCOperand::CreateImm(0));
1878 return;
1879 }
1880
1881 // Otherwise, it's a normal memory reg+offset.
Jim Grosbach871dff72011-10-11 15:59:20 +00001882 int64_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0;
1883 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Jim Grosbachd3595712011-08-03 23:50:40 +00001884 Inst.addOperand(MCOperand::CreateImm(Val));
Bill Wendling092a7bd2010-12-14 03:36:38 +00001885 }
Bill Wendling811c9362010-11-30 07:44:32 +00001886
Jim Grosbach05541f42011-09-19 22:21:13 +00001887 void addMemTBBOperands(MCInst &Inst, unsigned N) const {
1888 assert(N == 2 && "Invalid number of operands!");
Jim Grosbach871dff72011-10-11 15:59:20 +00001889 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
1890 Inst.addOperand(MCOperand::CreateReg(Memory.OffsetRegNum));
Jim Grosbach05541f42011-09-19 22:21:13 +00001891 }
1892
1893 void addMemTBHOperands(MCInst &Inst, unsigned N) const {
1894 assert(N == 2 && "Invalid number of operands!");
Jim Grosbach871dff72011-10-11 15:59:20 +00001895 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
1896 Inst.addOperand(MCOperand::CreateReg(Memory.OffsetRegNum));
Jim Grosbach05541f42011-09-19 22:21:13 +00001897 }
1898
Jim Grosbachd3595712011-08-03 23:50:40 +00001899 void addMemRegOffsetOperands(MCInst &Inst, unsigned N) const {
1900 assert(N == 3 && "Invalid number of operands!");
Jim Grosbachee201fa2011-11-14 17:52:47 +00001901 unsigned Val =
1902 ARM_AM::getAM2Opc(Memory.isNegative ? ARM_AM::sub : ARM_AM::add,
1903 Memory.ShiftImm, Memory.ShiftType);
Jim Grosbach871dff72011-10-11 15:59:20 +00001904 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
1905 Inst.addOperand(MCOperand::CreateReg(Memory.OffsetRegNum));
Jim Grosbachd3595712011-08-03 23:50:40 +00001906 Inst.addOperand(MCOperand::CreateImm(Val));
1907 }
1908
Jim Grosbache0ebc1c2011-09-07 23:10:15 +00001909 void addT2MemRegOffsetOperands(MCInst &Inst, unsigned N) const {
1910 assert(N == 3 && "Invalid number of operands!");
Jim Grosbach871dff72011-10-11 15:59:20 +00001911 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
1912 Inst.addOperand(MCOperand::CreateReg(Memory.OffsetRegNum));
1913 Inst.addOperand(MCOperand::CreateImm(Memory.ShiftImm));
Jim Grosbache0ebc1c2011-09-07 23:10:15 +00001914 }
1915
Jim Grosbachd3595712011-08-03 23:50:40 +00001916 void addMemThumbRROperands(MCInst &Inst, unsigned N) const {
1917 assert(N == 2 && "Invalid number of operands!");
Jim Grosbach871dff72011-10-11 15:59:20 +00001918 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
1919 Inst.addOperand(MCOperand::CreateReg(Memory.OffsetRegNum));
Jim Grosbachd3595712011-08-03 23:50:40 +00001920 }
1921
Jim Grosbach3fe94e32011-08-19 17:55:24 +00001922 void addMemThumbRIs4Operands(MCInst &Inst, unsigned N) const {
1923 assert(N == 2 && "Invalid number of operands!");
Jim Grosbach871dff72011-10-11 15:59:20 +00001924 int64_t Val = Memory.OffsetImm ? (Memory.OffsetImm->getValue() / 4) : 0;
1925 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Jim Grosbach3fe94e32011-08-19 17:55:24 +00001926 Inst.addOperand(MCOperand::CreateImm(Val));
1927 }
1928
Jim Grosbach26d35872011-08-19 18:55:51 +00001929 void addMemThumbRIs2Operands(MCInst &Inst, unsigned N) const {
1930 assert(N == 2 && "Invalid number of operands!");
Jim Grosbach871dff72011-10-11 15:59:20 +00001931 int64_t Val = Memory.OffsetImm ? (Memory.OffsetImm->getValue() / 2) : 0;
1932 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Jim Grosbach26d35872011-08-19 18:55:51 +00001933 Inst.addOperand(MCOperand::CreateImm(Val));
1934 }
1935
Jim Grosbacha32c7532011-08-19 18:49:59 +00001936 void addMemThumbRIs1Operands(MCInst &Inst, unsigned N) const {
1937 assert(N == 2 && "Invalid number of operands!");
Jim Grosbach871dff72011-10-11 15:59:20 +00001938 int64_t Val = Memory.OffsetImm ? (Memory.OffsetImm->getValue()) : 0;
1939 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Jim Grosbacha32c7532011-08-19 18:49:59 +00001940 Inst.addOperand(MCOperand::CreateImm(Val));
1941 }
1942
Jim Grosbach23983d62011-08-19 18:13:48 +00001943 void addMemThumbSPIOperands(MCInst &Inst, unsigned N) const {
1944 assert(N == 2 && "Invalid number of operands!");
Jim Grosbach871dff72011-10-11 15:59:20 +00001945 int64_t Val = Memory.OffsetImm ? (Memory.OffsetImm->getValue() / 4) : 0;
1946 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Jim Grosbach23983d62011-08-19 18:13:48 +00001947 Inst.addOperand(MCOperand::CreateImm(Val));
1948 }
1949
Jim Grosbachd3595712011-08-03 23:50:40 +00001950 void addPostIdxImm8Operands(MCInst &Inst, unsigned N) const {
1951 assert(N == 1 && "Invalid number of operands!");
1952 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1953 assert(CE && "non-constant post-idx-imm8 operand!");
1954 int Imm = CE->getValue();
1955 bool isAdd = Imm >= 0;
Owen Andersonf02d98d2011-08-29 17:17:09 +00001956 if (Imm == INT32_MIN) Imm = 0;
Jim Grosbachd3595712011-08-03 23:50:40 +00001957 Imm = (Imm < 0 ? -Imm : Imm) | (int)isAdd << 8;
1958 Inst.addOperand(MCOperand::CreateImm(Imm));
1959 }
1960
Jim Grosbach93981412011-10-11 21:55:36 +00001961 void addPostIdxImm8s4Operands(MCInst &Inst, unsigned N) const {
1962 assert(N == 1 && "Invalid number of operands!");
1963 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1964 assert(CE && "non-constant post-idx-imm8s4 operand!");
1965 int Imm = CE->getValue();
1966 bool isAdd = Imm >= 0;
1967 if (Imm == INT32_MIN) Imm = 0;
1968 // Immediate is scaled by 4.
1969 Imm = ((Imm < 0 ? -Imm : Imm) / 4) | (int)isAdd << 8;
1970 Inst.addOperand(MCOperand::CreateImm(Imm));
1971 }
1972
Jim Grosbachd3595712011-08-03 23:50:40 +00001973 void addPostIdxRegOperands(MCInst &Inst, unsigned N) const {
1974 assert(N == 2 && "Invalid number of operands!");
1975 Inst.addOperand(MCOperand::CreateReg(PostIdxReg.RegNum));
Jim Grosbachc320c852011-08-05 21:28:30 +00001976 Inst.addOperand(MCOperand::CreateImm(PostIdxReg.isAdd));
1977 }
1978
1979 void addPostIdxRegShiftedOperands(MCInst &Inst, unsigned N) const {
1980 assert(N == 2 && "Invalid number of operands!");
1981 Inst.addOperand(MCOperand::CreateReg(PostIdxReg.RegNum));
1982 // The sign, shift type, and shift amount are encoded in a single operand
1983 // using the AM2 encoding helpers.
1984 ARM_AM::AddrOpc opc = PostIdxReg.isAdd ? ARM_AM::add : ARM_AM::sub;
1985 unsigned Imm = ARM_AM::getAM2Opc(opc, PostIdxReg.ShiftImm,
1986 PostIdxReg.ShiftTy);
1987 Inst.addOperand(MCOperand::CreateImm(Imm));
Bill Wendling811c9362010-11-30 07:44:32 +00001988 }
1989
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +00001990 void addMSRMaskOperands(MCInst &Inst, unsigned N) const {
1991 assert(N == 1 && "Invalid number of operands!");
1992 Inst.addOperand(MCOperand::CreateImm(unsigned(getMSRMask())));
1993 }
1994
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00001995 void addProcIFlagsOperands(MCInst &Inst, unsigned N) const {
1996 assert(N == 1 && "Invalid number of operands!");
1997 Inst.addOperand(MCOperand::CreateImm(unsigned(getProcIFlags())));
1998 }
1999
Jim Grosbach182b6a02011-11-29 23:51:09 +00002000 void addVecListOperands(MCInst &Inst, unsigned N) const {
Jim Grosbachad47cfc2011-10-18 23:02:30 +00002001 assert(N == 1 && "Invalid number of operands!");
2002 Inst.addOperand(MCOperand::CreateReg(VectorList.RegNum));
2003 }
2004
Jim Grosbach04945c42011-12-02 00:35:16 +00002005 void addVecListIndexedOperands(MCInst &Inst, unsigned N) const {
2006 assert(N == 2 && "Invalid number of operands!");
2007 Inst.addOperand(MCOperand::CreateReg(VectorList.RegNum));
2008 Inst.addOperand(MCOperand::CreateImm(VectorList.LaneIndex));
2009 }
2010
Jim Grosbachd0637bf2011-10-07 23:56:00 +00002011 void addVectorIndex8Operands(MCInst &Inst, unsigned N) const {
2012 assert(N == 1 && "Invalid number of operands!");
2013 Inst.addOperand(MCOperand::CreateImm(getVectorIndex()));
2014 }
2015
2016 void addVectorIndex16Operands(MCInst &Inst, unsigned N) const {
2017 assert(N == 1 && "Invalid number of operands!");
2018 Inst.addOperand(MCOperand::CreateImm(getVectorIndex()));
2019 }
2020
2021 void addVectorIndex32Operands(MCInst &Inst, unsigned N) const {
2022 assert(N == 1 && "Invalid number of operands!");
2023 Inst.addOperand(MCOperand::CreateImm(getVectorIndex()));
2024 }
2025
Jim Grosbach741cd732011-10-17 22:26:03 +00002026 void addNEONi8splatOperands(MCInst &Inst, unsigned N) const {
2027 assert(N == 1 && "Invalid number of operands!");
2028 // The immediate encodes the type of constant as well as the value.
2029 // Mask in that this is an i8 splat.
2030 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2031 Inst.addOperand(MCOperand::CreateImm(CE->getValue() | 0xe00));
2032 }
2033
Jim Grosbachcda32ae2011-10-17 23:09:09 +00002034 void addNEONi16splatOperands(MCInst &Inst, unsigned N) const {
2035 assert(N == 1 && "Invalid number of operands!");
2036 // The immediate encodes the type of constant as well as the value.
2037 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2038 unsigned Value = CE->getValue();
2039 if (Value >= 256)
2040 Value = (Value >> 8) | 0xa00;
2041 else
2042 Value |= 0x800;
2043 Inst.addOperand(MCOperand::CreateImm(Value));
2044 }
2045
Jim Grosbach8211c052011-10-18 00:22:00 +00002046 void addNEONi32splatOperands(MCInst &Inst, unsigned N) const {
2047 assert(N == 1 && "Invalid number of operands!");
2048 // The immediate encodes the type of constant as well as the value.
2049 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2050 unsigned Value = CE->getValue();
2051 if (Value >= 256 && Value <= 0xff00)
2052 Value = (Value >> 8) | 0x200;
2053 else if (Value > 0xffff && Value <= 0xff0000)
2054 Value = (Value >> 16) | 0x400;
2055 else if (Value > 0xffffff)
2056 Value = (Value >> 24) | 0x600;
2057 Inst.addOperand(MCOperand::CreateImm(Value));
2058 }
2059
2060 void addNEONi32vmovOperands(MCInst &Inst, unsigned N) const {
2061 assert(N == 1 && "Invalid number of operands!");
2062 // The immediate encodes the type of constant as well as the value.
2063 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2064 unsigned Value = CE->getValue();
2065 if (Value >= 256 && Value <= 0xffff)
2066 Value = (Value >> 8) | ((Value & 0xff) ? 0xc00 : 0x200);
2067 else if (Value > 0xffff && Value <= 0xffffff)
2068 Value = (Value >> 16) | ((Value & 0xff) ? 0xd00 : 0x400);
2069 else if (Value > 0xffffff)
2070 Value = (Value >> 24) | 0x600;
2071 Inst.addOperand(MCOperand::CreateImm(Value));
2072 }
2073
Jim Grosbach045b6c72011-12-19 23:51:07 +00002074 void addNEONi32vmovNegOperands(MCInst &Inst, unsigned N) const {
2075 assert(N == 1 && "Invalid number of operands!");
2076 // The immediate encodes the type of constant as well as the value.
2077 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2078 unsigned Value = ~CE->getValue();
2079 if (Value >= 256 && Value <= 0xffff)
2080 Value = (Value >> 8) | ((Value & 0xff) ? 0xc00 : 0x200);
2081 else if (Value > 0xffff && Value <= 0xffffff)
2082 Value = (Value >> 16) | ((Value & 0xff) ? 0xd00 : 0x400);
2083 else if (Value > 0xffffff)
2084 Value = (Value >> 24) | 0x600;
2085 Inst.addOperand(MCOperand::CreateImm(Value));
2086 }
2087
Jim Grosbache4454e02011-10-18 16:18:11 +00002088 void addNEONi64splatOperands(MCInst &Inst, unsigned N) const {
2089 assert(N == 1 && "Invalid number of operands!");
2090 // The immediate encodes the type of constant as well as the value.
2091 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2092 uint64_t Value = CE->getValue();
2093 unsigned Imm = 0;
2094 for (unsigned i = 0; i < 8; ++i, Value >>= 8) {
2095 Imm |= (Value & 1) << i;
2096 }
2097 Inst.addOperand(MCOperand::CreateImm(Imm | 0x1e00));
2098 }
2099
Jim Grosbach602aa902011-07-13 15:34:57 +00002100 virtual void print(raw_ostream &OS) const;
Daniel Dunbarebace222010-08-11 06:37:04 +00002101
Jim Grosbach3d1eac82011-08-26 21:43:41 +00002102 static ARMOperand *CreateITMask(unsigned Mask, SMLoc S) {
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002103 ARMOperand *Op = new ARMOperand(k_ITCondMask);
Jim Grosbach3d1eac82011-08-26 21:43:41 +00002104 Op->ITMask.Mask = Mask;
2105 Op->StartLoc = S;
2106 Op->EndLoc = S;
2107 return Op;
2108 }
2109
Chris Lattnerbd7c9fa2010-10-28 17:20:03 +00002110 static ARMOperand *CreateCondCode(ARMCC::CondCodes CC, SMLoc S) {
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002111 ARMOperand *Op = new ARMOperand(k_CondCode);
Daniel Dunbar188b47b2010-08-11 06:37:20 +00002112 Op->CC.Val = CC;
2113 Op->StartLoc = S;
2114 Op->EndLoc = S;
Chris Lattnerbd7c9fa2010-10-28 17:20:03 +00002115 return Op;
Daniel Dunbar188b47b2010-08-11 06:37:20 +00002116 }
2117
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00002118 static ARMOperand *CreateCoprocNum(unsigned CopVal, SMLoc S) {
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002119 ARMOperand *Op = new ARMOperand(k_CoprocNum);
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00002120 Op->Cop.Val = CopVal;
2121 Op->StartLoc = S;
2122 Op->EndLoc = S;
2123 return Op;
2124 }
2125
2126 static ARMOperand *CreateCoprocReg(unsigned CopVal, SMLoc S) {
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002127 ARMOperand *Op = new ARMOperand(k_CoprocReg);
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00002128 Op->Cop.Val = CopVal;
2129 Op->StartLoc = S;
2130 Op->EndLoc = S;
2131 return Op;
2132 }
2133
Jim Grosbach48399582011-10-12 17:34:41 +00002134 static ARMOperand *CreateCoprocOption(unsigned Val, SMLoc S, SMLoc E) {
2135 ARMOperand *Op = new ARMOperand(k_CoprocOption);
2136 Op->Cop.Val = Val;
2137 Op->StartLoc = S;
2138 Op->EndLoc = E;
2139 return Op;
2140 }
2141
Jim Grosbach0bfb4d52010-12-06 18:21:12 +00002142 static ARMOperand *CreateCCOut(unsigned RegNum, SMLoc S) {
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002143 ARMOperand *Op = new ARMOperand(k_CCOut);
Jim Grosbach0bfb4d52010-12-06 18:21:12 +00002144 Op->Reg.RegNum = RegNum;
2145 Op->StartLoc = S;
2146 Op->EndLoc = S;
2147 return Op;
2148 }
2149
Chris Lattnerbd7c9fa2010-10-28 17:20:03 +00002150 static ARMOperand *CreateToken(StringRef Str, SMLoc S) {
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002151 ARMOperand *Op = new ARMOperand(k_Token);
Sean Callanan7ad0ad02010-04-02 22:27:05 +00002152 Op->Tok.Data = Str.data();
2153 Op->Tok.Length = Str.size();
2154 Op->StartLoc = S;
2155 Op->EndLoc = S;
Chris Lattnerbd7c9fa2010-10-28 17:20:03 +00002156 return Op;
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00002157 }
2158
Bill Wendling2063b842010-11-18 23:43:05 +00002159 static ARMOperand *CreateReg(unsigned RegNum, SMLoc S, SMLoc E) {
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002160 ARMOperand *Op = new ARMOperand(k_Register);
Sean Callanan7ad0ad02010-04-02 22:27:05 +00002161 Op->Reg.RegNum = RegNum;
Sean Callanan7ad0ad02010-04-02 22:27:05 +00002162 Op->StartLoc = S;
2163 Op->EndLoc = E;
Chris Lattnerbd7c9fa2010-10-28 17:20:03 +00002164 return Op;
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00002165 }
2166
Jim Grosbach7dcd1352011-07-13 17:50:29 +00002167 static ARMOperand *CreateShiftedRegister(ARM_AM::ShiftOpc ShTy,
2168 unsigned SrcReg,
2169 unsigned ShiftReg,
2170 unsigned ShiftImm,
2171 SMLoc S, SMLoc E) {
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002172 ARMOperand *Op = new ARMOperand(k_ShiftedRegister);
Jim Grosbachac798e12011-07-25 20:49:51 +00002173 Op->RegShiftedReg.ShiftTy = ShTy;
2174 Op->RegShiftedReg.SrcReg = SrcReg;
2175 Op->RegShiftedReg.ShiftReg = ShiftReg;
2176 Op->RegShiftedReg.ShiftImm = ShiftImm;
Jim Grosbach7dcd1352011-07-13 17:50:29 +00002177 Op->StartLoc = S;
2178 Op->EndLoc = E;
2179 return Op;
2180 }
2181
Owen Andersonb595ed02011-07-21 18:54:16 +00002182 static ARMOperand *CreateShiftedImmediate(ARM_AM::ShiftOpc ShTy,
2183 unsigned SrcReg,
2184 unsigned ShiftImm,
2185 SMLoc S, SMLoc E) {
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002186 ARMOperand *Op = new ARMOperand(k_ShiftedImmediate);
Jim Grosbachac798e12011-07-25 20:49:51 +00002187 Op->RegShiftedImm.ShiftTy = ShTy;
2188 Op->RegShiftedImm.SrcReg = SrcReg;
2189 Op->RegShiftedImm.ShiftImm = ShiftImm;
Owen Andersonb595ed02011-07-21 18:54:16 +00002190 Op->StartLoc = S;
2191 Op->EndLoc = E;
2192 return Op;
2193 }
2194
Jim Grosbach3a9cbee2011-07-25 22:20:28 +00002195 static ARMOperand *CreateShifterImm(bool isASR, unsigned Imm,
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00002196 SMLoc S, SMLoc E) {
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002197 ARMOperand *Op = new ARMOperand(k_ShifterImmediate);
Jim Grosbach3a9cbee2011-07-25 22:20:28 +00002198 Op->ShifterImm.isASR = isASR;
2199 Op->ShifterImm.Imm = Imm;
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00002200 Op->StartLoc = S;
2201 Op->EndLoc = E;
2202 return Op;
2203 }
2204
Jim Grosbach833b9d32011-07-27 20:15:40 +00002205 static ARMOperand *CreateRotImm(unsigned Imm, SMLoc S, SMLoc E) {
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002206 ARMOperand *Op = new ARMOperand(k_RotateImmediate);
Jim Grosbach833b9d32011-07-27 20:15:40 +00002207 Op->RotImm.Imm = Imm;
2208 Op->StartLoc = S;
2209 Op->EndLoc = E;
2210 return Op;
2211 }
2212
Jim Grosbach864b6092011-07-28 21:34:26 +00002213 static ARMOperand *CreateBitfield(unsigned LSB, unsigned Width,
2214 SMLoc S, SMLoc E) {
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002215 ARMOperand *Op = new ARMOperand(k_BitfieldDescriptor);
Jim Grosbach864b6092011-07-28 21:34:26 +00002216 Op->Bitfield.LSB = LSB;
2217 Op->Bitfield.Width = Width;
2218 Op->StartLoc = S;
2219 Op->EndLoc = E;
2220 return Op;
2221 }
2222
Bill Wendling2cae3272010-11-09 22:44:22 +00002223 static ARMOperand *
Bill Wendlingbed94652010-11-09 23:28:44 +00002224 CreateRegList(const SmallVectorImpl<std::pair<unsigned, SMLoc> > &Regs,
Matt Beaumont-Gay55c4cc72010-11-10 00:08:58 +00002225 SMLoc StartLoc, SMLoc EndLoc) {
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002226 KindTy Kind = k_RegisterList;
Bill Wendling9898ac92010-11-17 04:32:08 +00002227
Jim Grosbach75461af2011-09-13 22:56:44 +00002228 if (ARMMCRegisterClasses[ARM::DPRRegClassID].contains(Regs.front().first))
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002229 Kind = k_DPRRegisterList;
Jim Grosbach75461af2011-09-13 22:56:44 +00002230 else if (ARMMCRegisterClasses[ARM::SPRRegClassID].
Evan Cheng9eec7642011-07-25 21:32:49 +00002231 contains(Regs.front().first))
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002232 Kind = k_SPRRegisterList;
Bill Wendling9898ac92010-11-17 04:32:08 +00002233
2234 ARMOperand *Op = new ARMOperand(Kind);
Bill Wendlingbed94652010-11-09 23:28:44 +00002235 for (SmallVectorImpl<std::pair<unsigned, SMLoc> >::const_iterator
Bill Wendling2cae3272010-11-09 22:44:22 +00002236 I = Regs.begin(), E = Regs.end(); I != E; ++I)
Bill Wendling0ab0f672010-11-18 21:50:54 +00002237 Op->Registers.push_back(I->first);
Bill Wendling20b5ea982010-11-19 00:38:19 +00002238 array_pod_sort(Op->Registers.begin(), Op->Registers.end());
Matt Beaumont-Gay55c4cc72010-11-10 00:08:58 +00002239 Op->StartLoc = StartLoc;
2240 Op->EndLoc = EndLoc;
Bill Wendling7cef4472010-11-06 19:56:04 +00002241 return Op;
2242 }
2243
Jim Grosbachad47cfc2011-10-18 23:02:30 +00002244 static ARMOperand *CreateVectorList(unsigned RegNum, unsigned Count,
Jim Grosbach2f50e922011-12-15 21:44:33 +00002245 bool isDoubleSpaced, SMLoc S, SMLoc E) {
Jim Grosbachad47cfc2011-10-18 23:02:30 +00002246 ARMOperand *Op = new ARMOperand(k_VectorList);
2247 Op->VectorList.RegNum = RegNum;
2248 Op->VectorList.Count = Count;
Jim Grosbach2f50e922011-12-15 21:44:33 +00002249 Op->VectorList.isDoubleSpaced = isDoubleSpaced;
Jim Grosbachad47cfc2011-10-18 23:02:30 +00002250 Op->StartLoc = S;
2251 Op->EndLoc = E;
2252 return Op;
2253 }
2254
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00002255 static ARMOperand *CreateVectorListAllLanes(unsigned RegNum, unsigned Count,
Jim Grosbachc5af54e2011-12-21 00:38:54 +00002256 bool isDoubleSpaced,
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00002257 SMLoc S, SMLoc E) {
2258 ARMOperand *Op = new ARMOperand(k_VectorListAllLanes);
2259 Op->VectorList.RegNum = RegNum;
2260 Op->VectorList.Count = Count;
Jim Grosbachc5af54e2011-12-21 00:38:54 +00002261 Op->VectorList.isDoubleSpaced = isDoubleSpaced;
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00002262 Op->StartLoc = S;
2263 Op->EndLoc = E;
2264 return Op;
2265 }
2266
Jim Grosbach04945c42011-12-02 00:35:16 +00002267 static ARMOperand *CreateVectorListIndexed(unsigned RegNum, unsigned Count,
Jim Grosbach75e2ab52011-12-20 19:21:26 +00002268 unsigned Index,
2269 bool isDoubleSpaced,
2270 SMLoc S, SMLoc E) {
Jim Grosbach04945c42011-12-02 00:35:16 +00002271 ARMOperand *Op = new ARMOperand(k_VectorListIndexed);
2272 Op->VectorList.RegNum = RegNum;
2273 Op->VectorList.Count = Count;
2274 Op->VectorList.LaneIndex = Index;
Jim Grosbach75e2ab52011-12-20 19:21:26 +00002275 Op->VectorList.isDoubleSpaced = isDoubleSpaced;
Jim Grosbach04945c42011-12-02 00:35:16 +00002276 Op->StartLoc = S;
2277 Op->EndLoc = E;
2278 return Op;
2279 }
2280
Jim Grosbachd0637bf2011-10-07 23:56:00 +00002281 static ARMOperand *CreateVectorIndex(unsigned Idx, SMLoc S, SMLoc E,
2282 MCContext &Ctx) {
2283 ARMOperand *Op = new ARMOperand(k_VectorIndex);
2284 Op->VectorIndex.Val = Idx;
2285 Op->StartLoc = S;
2286 Op->EndLoc = E;
2287 return Op;
2288 }
2289
Chris Lattnerbd7c9fa2010-10-28 17:20:03 +00002290 static ARMOperand *CreateImm(const MCExpr *Val, SMLoc S, SMLoc E) {
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002291 ARMOperand *Op = new ARMOperand(k_Immediate);
Sean Callanan7ad0ad02010-04-02 22:27:05 +00002292 Op->Imm.Val = Val;
Sean Callanan7ad0ad02010-04-02 22:27:05 +00002293 Op->StartLoc = S;
2294 Op->EndLoc = E;
Chris Lattnerbd7c9fa2010-10-28 17:20:03 +00002295 return Op;
Kevin Enderbyf5079942009-10-13 22:19:02 +00002296 }
2297
Jim Grosbachd3595712011-08-03 23:50:40 +00002298 static ARMOperand *CreateMem(unsigned BaseRegNum,
2299 const MCConstantExpr *OffsetImm,
2300 unsigned OffsetRegNum,
2301 ARM_AM::ShiftOpc ShiftType,
Jim Grosbach3d0b3a32011-08-05 22:03:36 +00002302 unsigned ShiftImm,
Jim Grosbacha95ec992011-10-11 17:29:55 +00002303 unsigned Alignment,
Jim Grosbachd3595712011-08-03 23:50:40 +00002304 bool isNegative,
Chris Lattnerbd7c9fa2010-10-28 17:20:03 +00002305 SMLoc S, SMLoc E) {
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002306 ARMOperand *Op = new ARMOperand(k_Memory);
Jim Grosbach871dff72011-10-11 15:59:20 +00002307 Op->Memory.BaseRegNum = BaseRegNum;
2308 Op->Memory.OffsetImm = OffsetImm;
2309 Op->Memory.OffsetRegNum = OffsetRegNum;
2310 Op->Memory.ShiftType = ShiftType;
2311 Op->Memory.ShiftImm = ShiftImm;
Jim Grosbacha95ec992011-10-11 17:29:55 +00002312 Op->Memory.Alignment = Alignment;
Jim Grosbach871dff72011-10-11 15:59:20 +00002313 Op->Memory.isNegative = isNegative;
Jim Grosbachd3595712011-08-03 23:50:40 +00002314 Op->StartLoc = S;
2315 Op->EndLoc = E;
2316 return Op;
2317 }
Jim Grosbach624bcc72010-10-29 14:46:02 +00002318
Jim Grosbachc320c852011-08-05 21:28:30 +00002319 static ARMOperand *CreatePostIdxReg(unsigned RegNum, bool isAdd,
2320 ARM_AM::ShiftOpc ShiftTy,
2321 unsigned ShiftImm,
Jim Grosbachd3595712011-08-03 23:50:40 +00002322 SMLoc S, SMLoc E) {
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002323 ARMOperand *Op = new ARMOperand(k_PostIndexRegister);
Jim Grosbachd3595712011-08-03 23:50:40 +00002324 Op->PostIdxReg.RegNum = RegNum;
Jim Grosbachc320c852011-08-05 21:28:30 +00002325 Op->PostIdxReg.isAdd = isAdd;
2326 Op->PostIdxReg.ShiftTy = ShiftTy;
2327 Op->PostIdxReg.ShiftImm = ShiftImm;
Sean Callanan7ad0ad02010-04-02 22:27:05 +00002328 Op->StartLoc = S;
2329 Op->EndLoc = E;
Chris Lattnerbd7c9fa2010-10-28 17:20:03 +00002330 return Op;
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00002331 }
Bruno Cardoso Lopes36dd43f2011-02-07 22:09:15 +00002332
2333 static ARMOperand *CreateMemBarrierOpt(ARM_MB::MemBOpt Opt, SMLoc S) {
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002334 ARMOperand *Op = new ARMOperand(k_MemBarrierOpt);
Bruno Cardoso Lopes36dd43f2011-02-07 22:09:15 +00002335 Op->MBOpt.Val = Opt;
2336 Op->StartLoc = S;
2337 Op->EndLoc = S;
2338 return Op;
2339 }
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00002340
2341 static ARMOperand *CreateProcIFlags(ARM_PROC::IFlags IFlags, SMLoc S) {
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002342 ARMOperand *Op = new ARMOperand(k_ProcIFlags);
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00002343 Op->IFlags.Val = IFlags;
2344 Op->StartLoc = S;
2345 Op->EndLoc = S;
2346 return Op;
2347 }
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +00002348
2349 static ARMOperand *CreateMSRMask(unsigned MMask, SMLoc S) {
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002350 ARMOperand *Op = new ARMOperand(k_MSRMask);
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +00002351 Op->MMask.Val = MMask;
2352 Op->StartLoc = S;
2353 Op->EndLoc = S;
2354 return Op;
2355 }
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00002356};
2357
2358} // end anonymous namespace.
2359
Jim Grosbach602aa902011-07-13 15:34:57 +00002360void ARMOperand::print(raw_ostream &OS) const {
Daniel Dunbar4a863e62010-08-11 06:37:12 +00002361 switch (Kind) {
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002362 case k_CondCode:
Daniel Dunbar2be732a2011-01-10 15:26:21 +00002363 OS << "<ARMCC::" << ARMCondCodeToString(getCondCode()) << ">";
Daniel Dunbar4a863e62010-08-11 06:37:12 +00002364 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002365 case k_CCOut:
Jim Grosbach0bfb4d52010-12-06 18:21:12 +00002366 OS << "<ccout " << getReg() << ">";
2367 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002368 case k_ITCondMask: {
Craig Topper42b96d12012-05-24 04:11:15 +00002369 static const char *const MaskStr[] = {
Benjamin Kramer0d6d0982011-10-22 16:50:00 +00002370 "()", "(t)", "(e)", "(tt)", "(et)", "(te)", "(ee)", "(ttt)", "(ett)",
2371 "(tet)", "(eet)", "(tte)", "(ete)", "(tee)", "(eee)"
2372 };
Jim Grosbach3d1eac82011-08-26 21:43:41 +00002373 assert((ITMask.Mask & 0xf) == ITMask.Mask);
2374 OS << "<it-mask " << MaskStr[ITMask.Mask] << ">";
2375 break;
2376 }
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002377 case k_CoprocNum:
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00002378 OS << "<coprocessor number: " << getCoproc() << ">";
2379 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002380 case k_CoprocReg:
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00002381 OS << "<coprocessor register: " << getCoproc() << ">";
2382 break;
Jim Grosbach48399582011-10-12 17:34:41 +00002383 case k_CoprocOption:
2384 OS << "<coprocessor option: " << CoprocOption.Val << ">";
2385 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002386 case k_MSRMask:
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +00002387 OS << "<mask: " << getMSRMask() << ">";
2388 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002389 case k_Immediate:
Daniel Dunbar4a863e62010-08-11 06:37:12 +00002390 getImm()->print(OS);
2391 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002392 case k_MemBarrierOpt:
Bruno Cardoso Lopes36dd43f2011-02-07 22:09:15 +00002393 OS << "<ARM_MB::" << MemBOptToString(getMemBarrierOpt()) << ">";
2394 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002395 case k_Memory:
Daniel Dunbarbcd8eb02011-01-18 05:55:21 +00002396 OS << "<memory "
Jim Grosbach871dff72011-10-11 15:59:20 +00002397 << " base:" << Memory.BaseRegNum;
Daniel Dunbarbcd8eb02011-01-18 05:55:21 +00002398 OS << ">";
Daniel Dunbar4a863e62010-08-11 06:37:12 +00002399 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002400 case k_PostIndexRegister:
Jim Grosbachc320c852011-08-05 21:28:30 +00002401 OS << "post-idx register " << (PostIdxReg.isAdd ? "" : "-")
2402 << PostIdxReg.RegNum;
2403 if (PostIdxReg.ShiftTy != ARM_AM::no_shift)
2404 OS << ARM_AM::getShiftOpcStr(PostIdxReg.ShiftTy) << " "
2405 << PostIdxReg.ShiftImm;
2406 OS << ">";
Jim Grosbachd3595712011-08-03 23:50:40 +00002407 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002408 case k_ProcIFlags: {
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00002409 OS << "<ARM_PROC::";
2410 unsigned IFlags = getProcIFlags();
2411 for (int i=2; i >= 0; --i)
2412 if (IFlags & (1 << i))
2413 OS << ARM_PROC::IFlagsToString(1 << i);
2414 OS << ">";
2415 break;
2416 }
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002417 case k_Register:
Bill Wendling2063b842010-11-18 23:43:05 +00002418 OS << "<register " << getReg() << ">";
Daniel Dunbar4a863e62010-08-11 06:37:12 +00002419 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002420 case k_ShifterImmediate:
Jim Grosbach3a9cbee2011-07-25 22:20:28 +00002421 OS << "<shift " << (ShifterImm.isASR ? "asr" : "lsl")
2422 << " #" << ShifterImm.Imm << ">";
Jim Grosbach7dcd1352011-07-13 17:50:29 +00002423 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002424 case k_ShiftedRegister:
Owen Andersonb595ed02011-07-21 18:54:16 +00002425 OS << "<so_reg_reg "
Jim Grosbach01e04392011-11-16 21:46:50 +00002426 << RegShiftedReg.SrcReg << " "
2427 << ARM_AM::getShiftOpcStr(RegShiftedReg.ShiftTy)
2428 << " " << RegShiftedReg.ShiftReg << ">";
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00002429 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002430 case k_ShiftedImmediate:
Owen Andersonb595ed02011-07-21 18:54:16 +00002431 OS << "<so_reg_imm "
Jim Grosbach01e04392011-11-16 21:46:50 +00002432 << RegShiftedImm.SrcReg << " "
2433 << ARM_AM::getShiftOpcStr(RegShiftedImm.ShiftTy)
2434 << " #" << RegShiftedImm.ShiftImm << ">";
Owen Andersonb595ed02011-07-21 18:54:16 +00002435 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002436 case k_RotateImmediate:
Jim Grosbach833b9d32011-07-27 20:15:40 +00002437 OS << "<ror " << " #" << (RotImm.Imm * 8) << ">";
2438 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002439 case k_BitfieldDescriptor:
Jim Grosbach864b6092011-07-28 21:34:26 +00002440 OS << "<bitfield " << "lsb: " << Bitfield.LSB
2441 << ", width: " << Bitfield.Width << ">";
2442 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002443 case k_RegisterList:
2444 case k_DPRRegisterList:
2445 case k_SPRRegisterList: {
Bill Wendling7cef4472010-11-06 19:56:04 +00002446 OS << "<register_list ";
Bill Wendling7cef4472010-11-06 19:56:04 +00002447
Bill Wendlingbed94652010-11-09 23:28:44 +00002448 const SmallVectorImpl<unsigned> &RegList = getRegList();
2449 for (SmallVectorImpl<unsigned>::const_iterator
Bill Wendling2cae3272010-11-09 22:44:22 +00002450 I = RegList.begin(), E = RegList.end(); I != E; ) {
2451 OS << *I;
2452 if (++I < E) OS << ", ";
Bill Wendling7cef4472010-11-06 19:56:04 +00002453 }
2454
2455 OS << ">";
2456 break;
2457 }
Jim Grosbachad47cfc2011-10-18 23:02:30 +00002458 case k_VectorList:
2459 OS << "<vector_list " << VectorList.Count << " * "
2460 << VectorList.RegNum << ">";
2461 break;
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00002462 case k_VectorListAllLanes:
2463 OS << "<vector_list(all lanes) " << VectorList.Count << " * "
2464 << VectorList.RegNum << ">";
2465 break;
Jim Grosbach04945c42011-12-02 00:35:16 +00002466 case k_VectorListIndexed:
2467 OS << "<vector_list(lane " << VectorList.LaneIndex << ") "
2468 << VectorList.Count << " * " << VectorList.RegNum << ">";
2469 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002470 case k_Token:
Daniel Dunbar4a863e62010-08-11 06:37:12 +00002471 OS << "'" << getToken() << "'";
2472 break;
Jim Grosbachd0637bf2011-10-07 23:56:00 +00002473 case k_VectorIndex:
2474 OS << "<vectorindex " << getVectorIndex() << ">";
2475 break;
Daniel Dunbar4a863e62010-08-11 06:37:12 +00002476 }
2477}
Daniel Dunbar5cd4d0f2010-08-11 05:24:50 +00002478
2479/// @name Auto-generated Match Functions
2480/// {
2481
2482static unsigned MatchRegisterName(StringRef Name);
2483
2484/// }
2485
Bob Wilsonfb0bd042011-02-03 21:46:10 +00002486bool ARMAsmParser::ParseRegister(unsigned &RegNo,
2487 SMLoc &StartLoc, SMLoc &EndLoc) {
Jim Grosbachab5830e2011-12-14 02:16:11 +00002488 StartLoc = Parser.getTok().getLoc();
Jordan Rosee8f1eae2013-01-07 19:00:49 +00002489 EndLoc = Parser.getTok().getEndLoc();
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00002490 RegNo = tryParseRegister();
Roman Divacky36b1b472011-01-27 17:14:22 +00002491
2492 return (RegNo == (unsigned)-1);
2493}
2494
Kevin Enderby8be42bd2009-10-30 22:55:57 +00002495/// Try to parse a register name. The token must be an Identifier when called,
Chris Lattner44e5981c2010-10-30 04:09:10 +00002496/// and if it is a register name the token is eaten and the register number is
2497/// returned. Otherwise return -1.
2498///
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00002499int ARMAsmParser::tryParseRegister() {
Chris Lattner44e5981c2010-10-30 04:09:10 +00002500 const AsmToken &Tok = Parser.getTok();
Jim Grosbachd3595712011-08-03 23:50:40 +00002501 if (Tok.isNot(AsmToken::Identifier)) return -1;
Jim Grosbach99710a82010-11-01 16:44:21 +00002502
Benjamin Kramer20baffb2011-11-06 20:37:06 +00002503 std::string lowerCase = Tok.getString().lower();
Owen Andersona098d152011-01-13 22:50:36 +00002504 unsigned RegNum = MatchRegisterName(lowerCase);
2505 if (!RegNum) {
2506 RegNum = StringSwitch<unsigned>(lowerCase)
2507 .Case("r13", ARM::SP)
2508 .Case("r14", ARM::LR)
2509 .Case("r15", ARM::PC)
2510 .Case("ip", ARM::R12)
Jim Grosbach4edc7362011-12-08 19:27:38 +00002511 // Additional register name aliases for 'gas' compatibility.
2512 .Case("a1", ARM::R0)
2513 .Case("a2", ARM::R1)
2514 .Case("a3", ARM::R2)
2515 .Case("a4", ARM::R3)
2516 .Case("v1", ARM::R4)
2517 .Case("v2", ARM::R5)
2518 .Case("v3", ARM::R6)
2519 .Case("v4", ARM::R7)
2520 .Case("v5", ARM::R8)
2521 .Case("v6", ARM::R9)
2522 .Case("v7", ARM::R10)
2523 .Case("v8", ARM::R11)
2524 .Case("sb", ARM::R9)
2525 .Case("sl", ARM::R10)
2526 .Case("fp", ARM::R11)
Owen Andersona098d152011-01-13 22:50:36 +00002527 .Default(0);
2528 }
Jim Grosbachab5830e2011-12-14 02:16:11 +00002529 if (!RegNum) {
Jim Grosbachcd22e4a2011-12-20 23:11:00 +00002530 // Check for aliases registered via .req. Canonicalize to lower case.
2531 // That's more consistent since register names are case insensitive, and
2532 // it's how the original entry was passed in from MC/MCParser/AsmParser.
2533 StringMap<unsigned>::const_iterator Entry = RegisterReqs.find(lowerCase);
Jim Grosbachab5830e2011-12-14 02:16:11 +00002534 // If no match, return failure.
2535 if (Entry == RegisterReqs.end())
2536 return -1;
2537 Parser.Lex(); // Eat identifier token.
2538 return Entry->getValue();
2539 }
Bob Wilsonfb0bd042011-02-03 21:46:10 +00002540
Chris Lattner44e5981c2010-10-30 04:09:10 +00002541 Parser.Lex(); // Eat identifier token.
Jim Grosbachd0637bf2011-10-07 23:56:00 +00002542
Chris Lattner44e5981c2010-10-30 04:09:10 +00002543 return RegNum;
2544}
Jim Grosbach99710a82010-11-01 16:44:21 +00002545
Jim Grosbachbb24c592011-07-13 18:49:30 +00002546// Try to parse a shifter (e.g., "lsl <amt>"). On success, return 0.
2547// If a recoverable error occurs, return 1. If an irrecoverable error
2548// occurs, return -1. An irrecoverable error is one where tokens have been
2549// consumed in the process of trying to parse the shifter (i.e., when it is
2550// indeed a shifter operand, but malformed).
Jim Grosbach0d6022d2011-07-26 20:41:24 +00002551int ARMAsmParser::tryParseShiftRegister(
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00002552 SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
2553 SMLoc S = Parser.getTok().getLoc();
2554 const AsmToken &Tok = Parser.getTok();
2555 assert(Tok.is(AsmToken::Identifier) && "Token is not an Identifier");
2556
Benjamin Kramer20baffb2011-11-06 20:37:06 +00002557 std::string lowerCase = Tok.getString().lower();
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00002558 ARM_AM::ShiftOpc ShiftTy = StringSwitch<ARM_AM::ShiftOpc>(lowerCase)
Jim Grosbach3b559ff2011-12-07 23:40:58 +00002559 .Case("asl", ARM_AM::lsl)
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00002560 .Case("lsl", ARM_AM::lsl)
2561 .Case("lsr", ARM_AM::lsr)
2562 .Case("asr", ARM_AM::asr)
2563 .Case("ror", ARM_AM::ror)
2564 .Case("rrx", ARM_AM::rrx)
2565 .Default(ARM_AM::no_shift);
2566
2567 if (ShiftTy == ARM_AM::no_shift)
Jim Grosbachbb24c592011-07-13 18:49:30 +00002568 return 1;
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00002569
Jim Grosbach7dcd1352011-07-13 17:50:29 +00002570 Parser.Lex(); // Eat the operator.
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00002571
Jim Grosbach7dcd1352011-07-13 17:50:29 +00002572 // The source register for the shift has already been added to the
2573 // operand list, so we need to pop it off and combine it into the shifted
2574 // register operand instead.
Benjamin Kramer1757e7a2011-07-14 18:41:22 +00002575 OwningPtr<ARMOperand> PrevOp((ARMOperand*)Operands.pop_back_val());
Jim Grosbach7dcd1352011-07-13 17:50:29 +00002576 if (!PrevOp->isReg())
2577 return Error(PrevOp->getStartLoc(), "shift must be of a register");
2578 int SrcReg = PrevOp->getReg();
Jordan Rosee8f1eae2013-01-07 19:00:49 +00002579
2580 SMLoc EndLoc;
Jim Grosbach7dcd1352011-07-13 17:50:29 +00002581 int64_t Imm = 0;
2582 int ShiftReg = 0;
2583 if (ShiftTy == ARM_AM::rrx) {
2584 // RRX Doesn't have an explicit shift amount. The encoder expects
2585 // the shift register to be the same as the source register. Seems odd,
2586 // but OK.
2587 ShiftReg = SrcReg;
2588 } else {
2589 // Figure out if this is shifted by a constant or a register (for non-RRX).
Jim Grosbachef70e9b2011-12-09 22:25:03 +00002590 if (Parser.getTok().is(AsmToken::Hash) ||
2591 Parser.getTok().is(AsmToken::Dollar)) {
Jim Grosbach7dcd1352011-07-13 17:50:29 +00002592 Parser.Lex(); // Eat hash.
2593 SMLoc ImmLoc = Parser.getTok().getLoc();
2594 const MCExpr *ShiftExpr = 0;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00002595 if (getParser().parseExpression(ShiftExpr, EndLoc)) {
Jim Grosbachbb24c592011-07-13 18:49:30 +00002596 Error(ImmLoc, "invalid immediate shift value");
2597 return -1;
2598 }
Jim Grosbach7dcd1352011-07-13 17:50:29 +00002599 // The expression must be evaluatable as an immediate.
2600 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ShiftExpr);
Jim Grosbachbb24c592011-07-13 18:49:30 +00002601 if (!CE) {
2602 Error(ImmLoc, "invalid immediate shift value");
2603 return -1;
2604 }
Jim Grosbach7dcd1352011-07-13 17:50:29 +00002605 // Range check the immediate.
2606 // lsl, ror: 0 <= imm <= 31
2607 // lsr, asr: 0 <= imm <= 32
2608 Imm = CE->getValue();
2609 if (Imm < 0 ||
2610 ((ShiftTy == ARM_AM::lsl || ShiftTy == ARM_AM::ror) && Imm > 31) ||
2611 ((ShiftTy == ARM_AM::lsr || ShiftTy == ARM_AM::asr) && Imm > 32)) {
Jim Grosbachbb24c592011-07-13 18:49:30 +00002612 Error(ImmLoc, "immediate shift value out of range");
2613 return -1;
Jim Grosbach7dcd1352011-07-13 17:50:29 +00002614 }
Jim Grosbach21488b82011-12-22 17:37:00 +00002615 // shift by zero is a nop. Always send it through as lsl.
2616 // ('as' compatibility)
2617 if (Imm == 0)
2618 ShiftTy = ARM_AM::lsl;
Jim Grosbach7dcd1352011-07-13 17:50:29 +00002619 } else if (Parser.getTok().is(AsmToken::Identifier)) {
Jim Grosbach7dcd1352011-07-13 17:50:29 +00002620 SMLoc L = Parser.getTok().getLoc();
Jordan Rosee8f1eae2013-01-07 19:00:49 +00002621 EndLoc = Parser.getTok().getEndLoc();
2622 ShiftReg = tryParseRegister();
Jim Grosbachbb24c592011-07-13 18:49:30 +00002623 if (ShiftReg == -1) {
2624 Error (L, "expected immediate or register in shift operand");
2625 return -1;
2626 }
2627 } else {
2628 Error (Parser.getTok().getLoc(),
Jim Grosbach7dcd1352011-07-13 17:50:29 +00002629 "expected immediate or register in shift operand");
Jim Grosbachbb24c592011-07-13 18:49:30 +00002630 return -1;
2631 }
Jim Grosbach7dcd1352011-07-13 17:50:29 +00002632 }
2633
Owen Andersonb595ed02011-07-21 18:54:16 +00002634 if (ShiftReg && ShiftTy != ARM_AM::rrx)
2635 Operands.push_back(ARMOperand::CreateShiftedRegister(ShiftTy, SrcReg,
Jim Grosbachac798e12011-07-25 20:49:51 +00002636 ShiftReg, Imm,
Jordan Rosee8f1eae2013-01-07 19:00:49 +00002637 S, EndLoc));
Owen Andersonb595ed02011-07-21 18:54:16 +00002638 else
2639 Operands.push_back(ARMOperand::CreateShiftedImmediate(ShiftTy, SrcReg, Imm,
Jordan Rosee8f1eae2013-01-07 19:00:49 +00002640 S, EndLoc));
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00002641
Jim Grosbachbb24c592011-07-13 18:49:30 +00002642 return 0;
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00002643}
2644
2645
Bill Wendling2063b842010-11-18 23:43:05 +00002646/// Try to parse a register name. The token must be an Identifier when called.
2647/// If it's a register, an AsmOperand is created. Another AsmOperand is created
2648/// if there is a "writeback". 'true' if it's not a register.
Chris Lattnerbd7c9fa2010-10-28 17:20:03 +00002649///
Kevin Enderby8be42bd2009-10-30 22:55:57 +00002650/// TODO this is likely to change to allow different register types and or to
2651/// parse for a specific register type.
Bill Wendling2063b842010-11-18 23:43:05 +00002652bool ARMAsmParser::
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00002653tryParseRegisterWithWriteBack(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00002654 const AsmToken &RegTok = Parser.getTok();
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00002655 int RegNo = tryParseRegister();
Bill Wendlinge18980a2010-11-06 22:36:58 +00002656 if (RegNo == -1)
Bill Wendling2063b842010-11-18 23:43:05 +00002657 return true;
Jim Grosbach99710a82010-11-01 16:44:21 +00002658
Jordan Rosee8f1eae2013-01-07 19:00:49 +00002659 Operands.push_back(ARMOperand::CreateReg(RegNo, RegTok.getLoc(),
2660 RegTok.getEndLoc()));
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00002661
Chris Lattner44e5981c2010-10-30 04:09:10 +00002662 const AsmToken &ExclaimTok = Parser.getTok();
2663 if (ExclaimTok.is(AsmToken::Exclaim)) {
Bill Wendling2063b842010-11-18 23:43:05 +00002664 Operands.push_back(ARMOperand::CreateToken(ExclaimTok.getString(),
2665 ExclaimTok.getLoc()));
Chris Lattner44e5981c2010-10-30 04:09:10 +00002666 Parser.Lex(); // Eat exclaim token
Jim Grosbachd0637bf2011-10-07 23:56:00 +00002667 return false;
2668 }
2669
2670 // Also check for an index operand. This is only legal for vector registers,
2671 // but that'll get caught OK in operand matching, so we don't need to
2672 // explicitly filter everything else out here.
2673 if (Parser.getTok().is(AsmToken::LBrac)) {
2674 SMLoc SIdx = Parser.getTok().getLoc();
2675 Parser.Lex(); // Eat left bracket token.
2676
2677 const MCExpr *ImmVal;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00002678 if (getParser().parseExpression(ImmVal))
Jim Grosbacha2147ce2012-01-31 23:51:09 +00002679 return true;
Jim Grosbachd0637bf2011-10-07 23:56:00 +00002680 const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(ImmVal);
Jim Grosbachc8f2b782012-01-26 15:56:45 +00002681 if (!MCE)
2682 return TokError("immediate value expected for vector index");
Jim Grosbachd0637bf2011-10-07 23:56:00 +00002683
Jim Grosbachc8f2b782012-01-26 15:56:45 +00002684 if (Parser.getTok().isNot(AsmToken::RBrac))
Jordan Rosee8f1eae2013-01-07 19:00:49 +00002685 return Error(Parser.getTok().getLoc(), "']' expected");
Jim Grosbachd0637bf2011-10-07 23:56:00 +00002686
Jordan Rosee8f1eae2013-01-07 19:00:49 +00002687 SMLoc E = Parser.getTok().getEndLoc();
Jim Grosbachd0637bf2011-10-07 23:56:00 +00002688 Parser.Lex(); // Eat right bracket token.
2689
2690 Operands.push_back(ARMOperand::CreateVectorIndex(MCE->getValue(),
2691 SIdx, E,
2692 getContext()));
Kevin Enderby2207e5f2009-10-07 18:01:35 +00002693 }
2694
Bill Wendling2063b842010-11-18 23:43:05 +00002695 return false;
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00002696}
2697
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00002698/// MatchCoprocessorOperandName - Try to parse an coprocessor related
2699/// instruction with a symbolic operand name. Example: "p1", "p7", "c3",
2700/// "c5", ...
2701static int MatchCoprocessorOperandName(StringRef Name, char CoprocOp) {
Owen Andersonc3c7f5d2011-01-13 21:46:02 +00002702 // Use the same layout as the tablegen'erated register name matcher. Ugly,
2703 // but efficient.
2704 switch (Name.size()) {
David Blaikie46a9f012012-01-20 21:51:11 +00002705 default: return -1;
Owen Andersonc3c7f5d2011-01-13 21:46:02 +00002706 case 2:
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00002707 if (Name[0] != CoprocOp)
Owen Andersonc3c7f5d2011-01-13 21:46:02 +00002708 return -1;
2709 switch (Name[1]) {
2710 default: return -1;
2711 case '0': return 0;
2712 case '1': return 1;
2713 case '2': return 2;
2714 case '3': return 3;
2715 case '4': return 4;
2716 case '5': return 5;
2717 case '6': return 6;
2718 case '7': return 7;
2719 case '8': return 8;
2720 case '9': return 9;
2721 }
Owen Andersonc3c7f5d2011-01-13 21:46:02 +00002722 case 3:
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00002723 if (Name[0] != CoprocOp || Name[1] != '1')
Owen Andersonc3c7f5d2011-01-13 21:46:02 +00002724 return -1;
2725 switch (Name[2]) {
2726 default: return -1;
2727 case '0': return 10;
2728 case '1': return 11;
2729 case '2': return 12;
2730 case '3': return 13;
2731 case '4': return 14;
2732 case '5': return 15;
2733 }
Owen Andersonc3c7f5d2011-01-13 21:46:02 +00002734 }
Owen Andersonc3c7f5d2011-01-13 21:46:02 +00002735}
2736
Jim Grosbach3d1eac82011-08-26 21:43:41 +00002737/// parseITCondCode - Try to parse a condition code for an IT instruction.
2738ARMAsmParser::OperandMatchResultTy ARMAsmParser::
2739parseITCondCode(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
2740 SMLoc S = Parser.getTok().getLoc();
2741 const AsmToken &Tok = Parser.getTok();
2742 if (!Tok.is(AsmToken::Identifier))
2743 return MatchOperand_NoMatch;
Richard Barton82f95ea2012-04-27 17:34:01 +00002744 unsigned CC = StringSwitch<unsigned>(Tok.getString().lower())
Jim Grosbach3d1eac82011-08-26 21:43:41 +00002745 .Case("eq", ARMCC::EQ)
2746 .Case("ne", ARMCC::NE)
2747 .Case("hs", ARMCC::HS)
2748 .Case("cs", ARMCC::HS)
2749 .Case("lo", ARMCC::LO)
2750 .Case("cc", ARMCC::LO)
2751 .Case("mi", ARMCC::MI)
2752 .Case("pl", ARMCC::PL)
2753 .Case("vs", ARMCC::VS)
2754 .Case("vc", ARMCC::VC)
2755 .Case("hi", ARMCC::HI)
2756 .Case("ls", ARMCC::LS)
2757 .Case("ge", ARMCC::GE)
2758 .Case("lt", ARMCC::LT)
2759 .Case("gt", ARMCC::GT)
2760 .Case("le", ARMCC::LE)
2761 .Case("al", ARMCC::AL)
2762 .Default(~0U);
2763 if (CC == ~0U)
2764 return MatchOperand_NoMatch;
2765 Parser.Lex(); // Eat the token.
2766
2767 Operands.push_back(ARMOperand::CreateCondCode(ARMCC::CondCodes(CC), S));
2768
2769 return MatchOperand_Success;
2770}
2771
Jim Grosbach2d6ef442011-07-25 20:14:50 +00002772/// parseCoprocNumOperand - Try to parse an coprocessor number operand. The
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00002773/// token must be an Identifier when called, and if it is a coprocessor
2774/// number, the token is eaten and the operand is added to the operand list.
Jim Grosbach861e49c2011-02-12 01:34:40 +00002775ARMAsmParser::OperandMatchResultTy ARMAsmParser::
Jim Grosbach2d6ef442011-07-25 20:14:50 +00002776parseCoprocNumOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Owen Andersonc3c7f5d2011-01-13 21:46:02 +00002777 SMLoc S = Parser.getTok().getLoc();
2778 const AsmToken &Tok = Parser.getTok();
Jim Grosbach54a20ed2011-10-12 20:54:17 +00002779 if (Tok.isNot(AsmToken::Identifier))
2780 return MatchOperand_NoMatch;
Owen Andersonc3c7f5d2011-01-13 21:46:02 +00002781
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00002782 int Num = MatchCoprocessorOperandName(Tok.getString(), 'p');
Owen Andersonc3c7f5d2011-01-13 21:46:02 +00002783 if (Num == -1)
Jim Grosbach861e49c2011-02-12 01:34:40 +00002784 return MatchOperand_NoMatch;
Owen Andersonc3c7f5d2011-01-13 21:46:02 +00002785
2786 Parser.Lex(); // Eat identifier token.
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00002787 Operands.push_back(ARMOperand::CreateCoprocNum(Num, S));
Jim Grosbach861e49c2011-02-12 01:34:40 +00002788 return MatchOperand_Success;
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00002789}
2790
Jim Grosbach2d6ef442011-07-25 20:14:50 +00002791/// parseCoprocRegOperand - Try to parse an coprocessor register operand. The
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00002792/// token must be an Identifier when called, and if it is a coprocessor
2793/// number, the token is eaten and the operand is added to the operand list.
Jim Grosbach861e49c2011-02-12 01:34:40 +00002794ARMAsmParser::OperandMatchResultTy ARMAsmParser::
Jim Grosbach2d6ef442011-07-25 20:14:50 +00002795parseCoprocRegOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00002796 SMLoc S = Parser.getTok().getLoc();
2797 const AsmToken &Tok = Parser.getTok();
Jim Grosbach54a20ed2011-10-12 20:54:17 +00002798 if (Tok.isNot(AsmToken::Identifier))
2799 return MatchOperand_NoMatch;
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00002800
2801 int Reg = MatchCoprocessorOperandName(Tok.getString(), 'c');
2802 if (Reg == -1)
Jim Grosbach861e49c2011-02-12 01:34:40 +00002803 return MatchOperand_NoMatch;
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00002804
2805 Parser.Lex(); // Eat identifier token.
2806 Operands.push_back(ARMOperand::CreateCoprocReg(Reg, S));
Jim Grosbach861e49c2011-02-12 01:34:40 +00002807 return MatchOperand_Success;
Owen Andersonc3c7f5d2011-01-13 21:46:02 +00002808}
2809
Jim Grosbach48399582011-10-12 17:34:41 +00002810/// parseCoprocOptionOperand - Try to parse an coprocessor option operand.
2811/// coproc_option : '{' imm0_255 '}'
2812ARMAsmParser::OperandMatchResultTy ARMAsmParser::
2813parseCoprocOptionOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
2814 SMLoc S = Parser.getTok().getLoc();
2815
2816 // If this isn't a '{', this isn't a coprocessor immediate operand.
2817 if (Parser.getTok().isNot(AsmToken::LCurly))
2818 return MatchOperand_NoMatch;
2819 Parser.Lex(); // Eat the '{'
2820
2821 const MCExpr *Expr;
2822 SMLoc Loc = Parser.getTok().getLoc();
Jim Grosbachd2037eb2013-02-20 22:21:35 +00002823 if (getParser().parseExpression(Expr)) {
Jim Grosbach48399582011-10-12 17:34:41 +00002824 Error(Loc, "illegal expression");
2825 return MatchOperand_ParseFail;
2826 }
2827 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr);
2828 if (!CE || CE->getValue() < 0 || CE->getValue() > 255) {
2829 Error(Loc, "coprocessor option must be an immediate in range [0, 255]");
2830 return MatchOperand_ParseFail;
2831 }
2832 int Val = CE->getValue();
2833
2834 // Check for and consume the closing '}'
2835 if (Parser.getTok().isNot(AsmToken::RCurly))
2836 return MatchOperand_ParseFail;
Jordan Rosee8f1eae2013-01-07 19:00:49 +00002837 SMLoc E = Parser.getTok().getEndLoc();
Jim Grosbach48399582011-10-12 17:34:41 +00002838 Parser.Lex(); // Eat the '}'
2839
2840 Operands.push_back(ARMOperand::CreateCoprocOption(Val, S, E));
2841 return MatchOperand_Success;
2842}
2843
Jim Grosbach3ac26b12011-09-14 18:08:35 +00002844// For register list parsing, we need to map from raw GPR register numbering
2845// to the enumeration values. The enumeration values aren't sorted by
2846// register number due to our using "sp", "lr" and "pc" as canonical names.
2847static unsigned getNextRegister(unsigned Reg) {
2848 // If this is a GPR, we need to do it manually, otherwise we can rely
2849 // on the sort ordering of the enumeration since the other reg-classes
2850 // are sane.
2851 if (!ARMMCRegisterClasses[ARM::GPRRegClassID].contains(Reg))
2852 return Reg + 1;
2853 switch(Reg) {
Craig Toppere55c5562012-02-07 02:50:20 +00002854 default: llvm_unreachable("Invalid GPR number!");
Jim Grosbach3ac26b12011-09-14 18:08:35 +00002855 case ARM::R0: return ARM::R1; case ARM::R1: return ARM::R2;
2856 case ARM::R2: return ARM::R3; case ARM::R3: return ARM::R4;
2857 case ARM::R4: return ARM::R5; case ARM::R5: return ARM::R6;
2858 case ARM::R6: return ARM::R7; case ARM::R7: return ARM::R8;
2859 case ARM::R8: return ARM::R9; case ARM::R9: return ARM::R10;
2860 case ARM::R10: return ARM::R11; case ARM::R11: return ARM::R12;
2861 case ARM::R12: return ARM::SP; case ARM::SP: return ARM::LR;
2862 case ARM::LR: return ARM::PC; case ARM::PC: return ARM::R0;
2863 }
2864}
2865
Jim Grosbach85a23432011-11-11 21:27:40 +00002866// Return the low-subreg of a given Q register.
2867static unsigned getDRegFromQReg(unsigned QReg) {
2868 switch (QReg) {
2869 default: llvm_unreachable("expected a Q register!");
2870 case ARM::Q0: return ARM::D0;
2871 case ARM::Q1: return ARM::D2;
2872 case ARM::Q2: return ARM::D4;
2873 case ARM::Q3: return ARM::D6;
2874 case ARM::Q4: return ARM::D8;
2875 case ARM::Q5: return ARM::D10;
2876 case ARM::Q6: return ARM::D12;
2877 case ARM::Q7: return ARM::D14;
2878 case ARM::Q8: return ARM::D16;
Jim Grosbacha92a5d82011-11-15 21:01:30 +00002879 case ARM::Q9: return ARM::D18;
Jim Grosbach85a23432011-11-11 21:27:40 +00002880 case ARM::Q10: return ARM::D20;
2881 case ARM::Q11: return ARM::D22;
2882 case ARM::Q12: return ARM::D24;
2883 case ARM::Q13: return ARM::D26;
2884 case ARM::Q14: return ARM::D28;
2885 case ARM::Q15: return ARM::D30;
2886 }
2887}
2888
Jim Grosbach3ac26b12011-09-14 18:08:35 +00002889/// Parse a register list.
Bill Wendling2063b842010-11-18 23:43:05 +00002890bool ARMAsmParser::
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00002891parseRegisterList(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Sean Callanan936b0d32010-01-19 21:44:56 +00002892 assert(Parser.getTok().is(AsmToken::LCurly) &&
Bill Wendling4f4bce02010-11-06 10:48:18 +00002893 "Token is not a Left Curly Brace");
Bill Wendlinge18980a2010-11-06 22:36:58 +00002894 SMLoc S = Parser.getTok().getLoc();
Jim Grosbach3ac26b12011-09-14 18:08:35 +00002895 Parser.Lex(); // Eat '{' token.
2896 SMLoc RegLoc = Parser.getTok().getLoc();
Kevin Enderbya2b99102009-10-09 21:12:28 +00002897
Jim Grosbach3ac26b12011-09-14 18:08:35 +00002898 // Check the first register in the list to see what register class
2899 // this is a list of.
2900 int Reg = tryParseRegister();
2901 if (Reg == -1)
2902 return Error(RegLoc, "register expected");
2903
Jim Grosbach85a23432011-11-11 21:27:40 +00002904 // The reglist instructions have at most 16 registers, so reserve
2905 // space for that many.
2906 SmallVector<std::pair<unsigned, SMLoc>, 16> Registers;
2907
2908 // Allow Q regs and just interpret them as the two D sub-registers.
2909 if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(Reg)) {
2910 Reg = getDRegFromQReg(Reg);
2911 Registers.push_back(std::pair<unsigned, SMLoc>(Reg, RegLoc));
2912 ++Reg;
2913 }
Benjamin Kramer0d6d0982011-10-22 16:50:00 +00002914 const MCRegisterClass *RC;
Jim Grosbach3ac26b12011-09-14 18:08:35 +00002915 if (ARMMCRegisterClasses[ARM::GPRRegClassID].contains(Reg))
2916 RC = &ARMMCRegisterClasses[ARM::GPRRegClassID];
2917 else if (ARMMCRegisterClasses[ARM::DPRRegClassID].contains(Reg))
2918 RC = &ARMMCRegisterClasses[ARM::DPRRegClassID];
2919 else if (ARMMCRegisterClasses[ARM::SPRRegClassID].contains(Reg))
2920 RC = &ARMMCRegisterClasses[ARM::SPRRegClassID];
2921 else
2922 return Error(RegLoc, "invalid register in register list");
2923
Jim Grosbach85a23432011-11-11 21:27:40 +00002924 // Store the register.
Jim Grosbach3ac26b12011-09-14 18:08:35 +00002925 Registers.push_back(std::pair<unsigned, SMLoc>(Reg, RegLoc));
Kevin Enderbya2b99102009-10-09 21:12:28 +00002926
Jim Grosbach3ac26b12011-09-14 18:08:35 +00002927 // This starts immediately after the first register token in the list,
2928 // so we can see either a comma or a minus (range separator) as a legal
2929 // next token.
2930 while (Parser.getTok().is(AsmToken::Comma) ||
2931 Parser.getTok().is(AsmToken::Minus)) {
2932 if (Parser.getTok().is(AsmToken::Minus)) {
Jim Grosbache891fe82011-11-15 23:19:15 +00002933 Parser.Lex(); // Eat the minus.
Jordan Rosee8f1eae2013-01-07 19:00:49 +00002934 SMLoc AfterMinusLoc = Parser.getTok().getLoc();
Jim Grosbach3ac26b12011-09-14 18:08:35 +00002935 int EndReg = tryParseRegister();
2936 if (EndReg == -1)
Jordan Rosee8f1eae2013-01-07 19:00:49 +00002937 return Error(AfterMinusLoc, "register expected");
Jim Grosbach85a23432011-11-11 21:27:40 +00002938 // Allow Q regs and just interpret them as the two D sub-registers.
2939 if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(EndReg))
2940 EndReg = getDRegFromQReg(EndReg) + 1;
Jim Grosbach3ac26b12011-09-14 18:08:35 +00002941 // If the register is the same as the start reg, there's nothing
2942 // more to do.
2943 if (Reg == EndReg)
2944 continue;
2945 // The register must be in the same register class as the first.
2946 if (!RC->contains(EndReg))
Jordan Rosee8f1eae2013-01-07 19:00:49 +00002947 return Error(AfterMinusLoc, "invalid register in register list");
Jim Grosbach3ac26b12011-09-14 18:08:35 +00002948 // Ranges must go from low to high.
Eric Christopher6ac277c2012-08-09 22:10:21 +00002949 if (MRI->getEncodingValue(Reg) > MRI->getEncodingValue(EndReg))
Jordan Rosee8f1eae2013-01-07 19:00:49 +00002950 return Error(AfterMinusLoc, "bad range in register list");
Kevin Enderbya2b99102009-10-09 21:12:28 +00002951
Jim Grosbach3ac26b12011-09-14 18:08:35 +00002952 // Add all the registers in the range to the register list.
2953 while (Reg != EndReg) {
2954 Reg = getNextRegister(Reg);
2955 Registers.push_back(std::pair<unsigned, SMLoc>(Reg, RegLoc));
2956 }
2957 continue;
2958 }
2959 Parser.Lex(); // Eat the comma.
2960 RegLoc = Parser.getTok().getLoc();
2961 int OldReg = Reg;
Jim Grosbach98bc7972011-12-08 21:34:20 +00002962 const AsmToken RegTok = Parser.getTok();
Jim Grosbach3ac26b12011-09-14 18:08:35 +00002963 Reg = tryParseRegister();
2964 if (Reg == -1)
Jim Grosbach3337e392011-09-12 23:36:42 +00002965 return Error(RegLoc, "register expected");
Jim Grosbach85a23432011-11-11 21:27:40 +00002966 // Allow Q regs and just interpret them as the two D sub-registers.
2967 bool isQReg = false;
2968 if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(Reg)) {
2969 Reg = getDRegFromQReg(Reg);
2970 isQReg = true;
2971 }
Jim Grosbach3ac26b12011-09-14 18:08:35 +00002972 // The register must be in the same register class as the first.
2973 if (!RC->contains(Reg))
2974 return Error(RegLoc, "invalid register in register list");
2975 // List must be monotonically increasing.
Eric Christopher6ac277c2012-08-09 22:10:21 +00002976 if (MRI->getEncodingValue(Reg) < MRI->getEncodingValue(OldReg)) {
Jim Grosbach905686a2012-03-16 20:48:38 +00002977 if (ARMMCRegisterClasses[ARM::GPRRegClassID].contains(Reg))
2978 Warning(RegLoc, "register list not in ascending order");
2979 else
2980 return Error(RegLoc, "register list not in ascending order");
2981 }
Eric Christopher6ac277c2012-08-09 22:10:21 +00002982 if (MRI->getEncodingValue(Reg) == MRI->getEncodingValue(OldReg)) {
Jim Grosbach98bc7972011-12-08 21:34:20 +00002983 Warning(RegLoc, "duplicated register (" + RegTok.getString() +
2984 ") in register list");
2985 continue;
2986 }
Jim Grosbach3ac26b12011-09-14 18:08:35 +00002987 // VFP register lists must also be contiguous.
2988 // It's OK to use the enumeration values directly here rather, as the
2989 // VFP register classes have the enum sorted properly.
2990 if (RC != &ARMMCRegisterClasses[ARM::GPRRegClassID] &&
2991 Reg != OldReg + 1)
2992 return Error(RegLoc, "non-contiguous register range");
2993 Registers.push_back(std::pair<unsigned, SMLoc>(Reg, RegLoc));
Jim Grosbach85a23432011-11-11 21:27:40 +00002994 if (isQReg)
2995 Registers.push_back(std::pair<unsigned, SMLoc>(++Reg, RegLoc));
Bill Wendlinge18980a2010-11-06 22:36:58 +00002996 }
2997
Jim Grosbach3ac26b12011-09-14 18:08:35 +00002998 if (Parser.getTok().isNot(AsmToken::RCurly))
Jordan Rosee8f1eae2013-01-07 19:00:49 +00002999 return Error(Parser.getTok().getLoc(), "'}' expected");
3000 SMLoc E = Parser.getTok().getEndLoc();
Jim Grosbach3ac26b12011-09-14 18:08:35 +00003001 Parser.Lex(); // Eat '}' token.
3002
Jim Grosbach18bf3632011-12-13 21:48:29 +00003003 // Push the register list operand.
Bill Wendling2063b842010-11-18 23:43:05 +00003004 Operands.push_back(ARMOperand::CreateRegList(Registers, S, E));
Jim Grosbach18bf3632011-12-13 21:48:29 +00003005
3006 // The ARM system instruction variants for LDM/STM have a '^' token here.
3007 if (Parser.getTok().is(AsmToken::Caret)) {
3008 Operands.push_back(ARMOperand::CreateToken("^",Parser.getTok().getLoc()));
3009 Parser.Lex(); // Eat '^' token.
3010 }
3011
Bill Wendling2063b842010-11-18 23:43:05 +00003012 return false;
Kevin Enderbya2b99102009-10-09 21:12:28 +00003013}
3014
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003015// Helper function to parse the lane index for vector lists.
3016ARMAsmParser::OperandMatchResultTy ARMAsmParser::
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003017parseVectorLane(VectorLaneTy &LaneKind, unsigned &Index, SMLoc &EndLoc) {
Jim Grosbach04945c42011-12-02 00:35:16 +00003018 Index = 0; // Always return a defined index value.
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003019 if (Parser.getTok().is(AsmToken::LBrac)) {
3020 Parser.Lex(); // Eat the '['.
3021 if (Parser.getTok().is(AsmToken::RBrac)) {
3022 // "Dn[]" is the 'all lanes' syntax.
3023 LaneKind = AllLanes;
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003024 EndLoc = Parser.getTok().getEndLoc();
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003025 Parser.Lex(); // Eat the ']'.
3026 return MatchOperand_Success;
3027 }
Jim Grosbach67e76ba2012-03-19 20:39:53 +00003028
3029 // There's an optional '#' token here. Normally there wouldn't be, but
3030 // inline assemble puts one in, and it's friendly to accept that.
3031 if (Parser.getTok().is(AsmToken::Hash))
3032 Parser.Lex(); // Eat the '#'
3033
Jim Grosbach7de7ab82011-12-21 01:19:23 +00003034 const MCExpr *LaneIndex;
3035 SMLoc Loc = Parser.getTok().getLoc();
Jim Grosbachd2037eb2013-02-20 22:21:35 +00003036 if (getParser().parseExpression(LaneIndex)) {
Jim Grosbach7de7ab82011-12-21 01:19:23 +00003037 Error(Loc, "illegal expression");
3038 return MatchOperand_ParseFail;
Jim Grosbach04945c42011-12-02 00:35:16 +00003039 }
Jim Grosbach7de7ab82011-12-21 01:19:23 +00003040 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(LaneIndex);
3041 if (!CE) {
3042 Error(Loc, "lane index must be empty or an integer");
3043 return MatchOperand_ParseFail;
3044 }
3045 if (Parser.getTok().isNot(AsmToken::RBrac)) {
3046 Error(Parser.getTok().getLoc(), "']' expected");
3047 return MatchOperand_ParseFail;
3048 }
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003049 EndLoc = Parser.getTok().getEndLoc();
Jim Grosbach7de7ab82011-12-21 01:19:23 +00003050 Parser.Lex(); // Eat the ']'.
3051 int64_t Val = CE->getValue();
3052
3053 // FIXME: Make this range check context sensitive for .8, .16, .32.
3054 if (Val < 0 || Val > 7) {
3055 Error(Parser.getTok().getLoc(), "lane index out of range");
3056 return MatchOperand_ParseFail;
3057 }
3058 Index = Val;
3059 LaneKind = IndexedLane;
3060 return MatchOperand_Success;
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003061 }
3062 LaneKind = NoLanes;
3063 return MatchOperand_Success;
3064}
3065
Jim Grosbachad47cfc2011-10-18 23:02:30 +00003066// parse a vector register list
3067ARMAsmParser::OperandMatchResultTy ARMAsmParser::
3068parseVectorList(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003069 VectorLaneTy LaneKind;
Jim Grosbach04945c42011-12-02 00:35:16 +00003070 unsigned LaneIndex;
Jim Grosbach8d579232011-11-15 21:45:55 +00003071 SMLoc S = Parser.getTok().getLoc();
3072 // As an extension (to match gas), support a plain D register or Q register
3073 // (without encosing curly braces) as a single or double entry list,
3074 // respectively.
3075 if (Parser.getTok().is(AsmToken::Identifier)) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003076 SMLoc E = Parser.getTok().getEndLoc();
Jim Grosbach8d579232011-11-15 21:45:55 +00003077 int Reg = tryParseRegister();
3078 if (Reg == -1)
3079 return MatchOperand_NoMatch;
Jim Grosbach8d579232011-11-15 21:45:55 +00003080 if (ARMMCRegisterClasses[ARM::DPRRegClassID].contains(Reg)) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003081 OperandMatchResultTy Res = parseVectorLane(LaneKind, LaneIndex, E);
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003082 if (Res != MatchOperand_Success)
3083 return Res;
3084 switch (LaneKind) {
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003085 case NoLanes:
Jim Grosbach2f50e922011-12-15 21:44:33 +00003086 Operands.push_back(ARMOperand::CreateVectorList(Reg, 1, false, S, E));
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003087 break;
3088 case AllLanes:
Jim Grosbachc5af54e2011-12-21 00:38:54 +00003089 Operands.push_back(ARMOperand::CreateVectorListAllLanes(Reg, 1, false,
3090 S, E));
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003091 break;
Jim Grosbach04945c42011-12-02 00:35:16 +00003092 case IndexedLane:
3093 Operands.push_back(ARMOperand::CreateVectorListIndexed(Reg, 1,
Jim Grosbach75e2ab52011-12-20 19:21:26 +00003094 LaneIndex,
3095 false, S, E));
Jim Grosbach04945c42011-12-02 00:35:16 +00003096 break;
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003097 }
Jim Grosbach8d579232011-11-15 21:45:55 +00003098 return MatchOperand_Success;
3099 }
3100 if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(Reg)) {
3101 Reg = getDRegFromQReg(Reg);
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003102 OperandMatchResultTy Res = parseVectorLane(LaneKind, LaneIndex, E);
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003103 if (Res != MatchOperand_Success)
3104 return Res;
3105 switch (LaneKind) {
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003106 case NoLanes:
Jim Grosbachc988e0c2012-03-05 19:33:30 +00003107 Reg = MRI->getMatchingSuperReg(Reg, ARM::dsub_0,
Jim Grosbach13a292c2012-03-06 22:01:44 +00003108 &ARMMCRegisterClasses[ARM::DPairRegClassID]);
Jim Grosbach2f50e922011-12-15 21:44:33 +00003109 Operands.push_back(ARMOperand::CreateVectorList(Reg, 2, false, S, E));
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003110 break;
3111 case AllLanes:
Jim Grosbach13a292c2012-03-06 22:01:44 +00003112 Reg = MRI->getMatchingSuperReg(Reg, ARM::dsub_0,
3113 &ARMMCRegisterClasses[ARM::DPairRegClassID]);
Jim Grosbachc5af54e2011-12-21 00:38:54 +00003114 Operands.push_back(ARMOperand::CreateVectorListAllLanes(Reg, 2, false,
3115 S, E));
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003116 break;
Jim Grosbach04945c42011-12-02 00:35:16 +00003117 case IndexedLane:
3118 Operands.push_back(ARMOperand::CreateVectorListIndexed(Reg, 2,
Jim Grosbach75e2ab52011-12-20 19:21:26 +00003119 LaneIndex,
3120 false, S, E));
Jim Grosbach04945c42011-12-02 00:35:16 +00003121 break;
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003122 }
Jim Grosbach8d579232011-11-15 21:45:55 +00003123 return MatchOperand_Success;
3124 }
3125 Error(S, "vector register expected");
3126 return MatchOperand_ParseFail;
3127 }
3128
3129 if (Parser.getTok().isNot(AsmToken::LCurly))
Jim Grosbachad47cfc2011-10-18 23:02:30 +00003130 return MatchOperand_NoMatch;
3131
Jim Grosbachad47cfc2011-10-18 23:02:30 +00003132 Parser.Lex(); // Eat '{' token.
3133 SMLoc RegLoc = Parser.getTok().getLoc();
3134
3135 int Reg = tryParseRegister();
3136 if (Reg == -1) {
3137 Error(RegLoc, "register expected");
3138 return MatchOperand_ParseFail;
3139 }
Jim Grosbachad47cfc2011-10-18 23:02:30 +00003140 unsigned Count = 1;
Jim Grosbachc2f16a32011-12-15 21:54:55 +00003141 int Spacing = 0;
Jim Grosbach080a4992011-10-28 00:06:50 +00003142 unsigned FirstReg = Reg;
3143 // The list is of D registers, but we also allow Q regs and just interpret
3144 // them as the two D sub-registers.
3145 if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(Reg)) {
3146 FirstReg = Reg = getDRegFromQReg(Reg);
Jim Grosbach2f50e922011-12-15 21:44:33 +00003147 Spacing = 1; // double-spacing requires explicit D registers, otherwise
3148 // it's ambiguous with four-register single spaced.
Jim Grosbach080a4992011-10-28 00:06:50 +00003149 ++Reg;
3150 ++Count;
3151 }
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003152
3153 SMLoc E;
3154 if (parseVectorLane(LaneKind, LaneIndex, E) != MatchOperand_Success)
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003155 return MatchOperand_ParseFail;
Jim Grosbach080a4992011-10-28 00:06:50 +00003156
Jim Grosbache891fe82011-11-15 23:19:15 +00003157 while (Parser.getTok().is(AsmToken::Comma) ||
3158 Parser.getTok().is(AsmToken::Minus)) {
3159 if (Parser.getTok().is(AsmToken::Minus)) {
Jim Grosbach2f50e922011-12-15 21:44:33 +00003160 if (!Spacing)
3161 Spacing = 1; // Register range implies a single spaced list.
3162 else if (Spacing == 2) {
3163 Error(Parser.getTok().getLoc(),
3164 "sequential registers in double spaced list");
3165 return MatchOperand_ParseFail;
3166 }
Jim Grosbache891fe82011-11-15 23:19:15 +00003167 Parser.Lex(); // Eat the minus.
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003168 SMLoc AfterMinusLoc = Parser.getTok().getLoc();
Jim Grosbache891fe82011-11-15 23:19:15 +00003169 int EndReg = tryParseRegister();
3170 if (EndReg == -1) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003171 Error(AfterMinusLoc, "register expected");
Jim Grosbache891fe82011-11-15 23:19:15 +00003172 return MatchOperand_ParseFail;
3173 }
3174 // Allow Q regs and just interpret them as the two D sub-registers.
3175 if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(EndReg))
3176 EndReg = getDRegFromQReg(EndReg) + 1;
3177 // If the register is the same as the start reg, there's nothing
3178 // more to do.
3179 if (Reg == EndReg)
3180 continue;
3181 // The register must be in the same register class as the first.
3182 if (!ARMMCRegisterClasses[ARM::DPRRegClassID].contains(EndReg)) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003183 Error(AfterMinusLoc, "invalid register in register list");
Jim Grosbache891fe82011-11-15 23:19:15 +00003184 return MatchOperand_ParseFail;
3185 }
3186 // Ranges must go from low to high.
3187 if (Reg > EndReg) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003188 Error(AfterMinusLoc, "bad range in register list");
Jim Grosbache891fe82011-11-15 23:19:15 +00003189 return MatchOperand_ParseFail;
3190 }
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003191 // Parse the lane specifier if present.
3192 VectorLaneTy NextLaneKind;
Jim Grosbach04945c42011-12-02 00:35:16 +00003193 unsigned NextLaneIndex;
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003194 if (parseVectorLane(NextLaneKind, NextLaneIndex, E) !=
3195 MatchOperand_Success)
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003196 return MatchOperand_ParseFail;
Jim Grosbach04945c42011-12-02 00:35:16 +00003197 if (NextLaneKind != LaneKind || LaneIndex != NextLaneIndex) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003198 Error(AfterMinusLoc, "mismatched lane index in register list");
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003199 return MatchOperand_ParseFail;
3200 }
Jim Grosbache891fe82011-11-15 23:19:15 +00003201
3202 // Add all the registers in the range to the register list.
3203 Count += EndReg - Reg;
3204 Reg = EndReg;
3205 continue;
3206 }
Jim Grosbachad47cfc2011-10-18 23:02:30 +00003207 Parser.Lex(); // Eat the comma.
3208 RegLoc = Parser.getTok().getLoc();
3209 int OldReg = Reg;
3210 Reg = tryParseRegister();
3211 if (Reg == -1) {
3212 Error(RegLoc, "register expected");
3213 return MatchOperand_ParseFail;
3214 }
Jim Grosbach080a4992011-10-28 00:06:50 +00003215 // vector register lists must be contiguous.
Jim Grosbachad47cfc2011-10-18 23:02:30 +00003216 // It's OK to use the enumeration values directly here rather, as the
3217 // VFP register classes have the enum sorted properly.
Jim Grosbach080a4992011-10-28 00:06:50 +00003218 //
3219 // The list is of D registers, but we also allow Q regs and just interpret
3220 // them as the two D sub-registers.
3221 if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(Reg)) {
Jim Grosbach2f50e922011-12-15 21:44:33 +00003222 if (!Spacing)
3223 Spacing = 1; // Register range implies a single spaced list.
3224 else if (Spacing == 2) {
3225 Error(RegLoc,
3226 "invalid register in double-spaced list (must be 'D' register')");
3227 return MatchOperand_ParseFail;
3228 }
Jim Grosbach080a4992011-10-28 00:06:50 +00003229 Reg = getDRegFromQReg(Reg);
3230 if (Reg != OldReg + 1) {
3231 Error(RegLoc, "non-contiguous register range");
3232 return MatchOperand_ParseFail;
3233 }
3234 ++Reg;
3235 Count += 2;
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003236 // Parse the lane specifier if present.
3237 VectorLaneTy NextLaneKind;
Jim Grosbach04945c42011-12-02 00:35:16 +00003238 unsigned NextLaneIndex;
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003239 SMLoc LaneLoc = Parser.getTok().getLoc();
3240 if (parseVectorLane(NextLaneKind, NextLaneIndex, E) !=
3241 MatchOperand_Success)
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003242 return MatchOperand_ParseFail;
Jim Grosbach04945c42011-12-02 00:35:16 +00003243 if (NextLaneKind != LaneKind || LaneIndex != NextLaneIndex) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003244 Error(LaneLoc, "mismatched lane index in register list");
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003245 return MatchOperand_ParseFail;
3246 }
Jim Grosbach080a4992011-10-28 00:06:50 +00003247 continue;
3248 }
Jim Grosbach2f50e922011-12-15 21:44:33 +00003249 // Normal D register.
3250 // Figure out the register spacing (single or double) of the list if
3251 // we don't know it already.
3252 if (!Spacing)
3253 Spacing = 1 + (Reg == OldReg + 2);
3254
3255 // Just check that it's contiguous and keep going.
3256 if (Reg != OldReg + Spacing) {
Jim Grosbachad47cfc2011-10-18 23:02:30 +00003257 Error(RegLoc, "non-contiguous register range");
3258 return MatchOperand_ParseFail;
3259 }
Jim Grosbachad47cfc2011-10-18 23:02:30 +00003260 ++Count;
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003261 // Parse the lane specifier if present.
3262 VectorLaneTy NextLaneKind;
Jim Grosbach04945c42011-12-02 00:35:16 +00003263 unsigned NextLaneIndex;
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003264 SMLoc EndLoc = Parser.getTok().getLoc();
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003265 if (parseVectorLane(NextLaneKind, NextLaneIndex, E) != MatchOperand_Success)
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003266 return MatchOperand_ParseFail;
Jim Grosbach04945c42011-12-02 00:35:16 +00003267 if (NextLaneKind != LaneKind || LaneIndex != NextLaneIndex) {
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003268 Error(EndLoc, "mismatched lane index in register list");
3269 return MatchOperand_ParseFail;
3270 }
Jim Grosbachad47cfc2011-10-18 23:02:30 +00003271 }
3272
Jim Grosbachad47cfc2011-10-18 23:02:30 +00003273 if (Parser.getTok().isNot(AsmToken::RCurly)) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003274 Error(Parser.getTok().getLoc(), "'}' expected");
Jim Grosbachad47cfc2011-10-18 23:02:30 +00003275 return MatchOperand_ParseFail;
3276 }
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003277 E = Parser.getTok().getEndLoc();
Jim Grosbachad47cfc2011-10-18 23:02:30 +00003278 Parser.Lex(); // Eat '}' token.
3279
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003280 switch (LaneKind) {
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003281 case NoLanes:
Jim Grosbach13a292c2012-03-06 22:01:44 +00003282 // Two-register operands have been converted to the
Jim Grosbache5307f92012-03-05 21:43:40 +00003283 // composite register classes.
3284 if (Count == 2) {
3285 const MCRegisterClass *RC = (Spacing == 1) ?
3286 &ARMMCRegisterClasses[ARM::DPairRegClassID] :
3287 &ARMMCRegisterClasses[ARM::DPairSpcRegClassID];
3288 FirstReg = MRI->getMatchingSuperReg(FirstReg, ARM::dsub_0, RC);
3289 }
Jim Grosbachc988e0c2012-03-05 19:33:30 +00003290
Jim Grosbach2f50e922011-12-15 21:44:33 +00003291 Operands.push_back(ARMOperand::CreateVectorList(FirstReg, Count,
3292 (Spacing == 2), S, E));
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003293 break;
3294 case AllLanes:
Jim Grosbach13a292c2012-03-06 22:01:44 +00003295 // Two-register operands have been converted to the
3296 // composite register classes.
Jim Grosbached428bc2012-03-06 23:10:38 +00003297 if (Count == 2) {
3298 const MCRegisterClass *RC = (Spacing == 1) ?
3299 &ARMMCRegisterClasses[ARM::DPairRegClassID] :
3300 &ARMMCRegisterClasses[ARM::DPairSpcRegClassID];
Jim Grosbach13a292c2012-03-06 22:01:44 +00003301 FirstReg = MRI->getMatchingSuperReg(FirstReg, ARM::dsub_0, RC);
3302 }
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003303 Operands.push_back(ARMOperand::CreateVectorListAllLanes(FirstReg, Count,
Jim Grosbachc5af54e2011-12-21 00:38:54 +00003304 (Spacing == 2),
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003305 S, E));
3306 break;
Jim Grosbach04945c42011-12-02 00:35:16 +00003307 case IndexedLane:
3308 Operands.push_back(ARMOperand::CreateVectorListIndexed(FirstReg, Count,
Jim Grosbach75e2ab52011-12-20 19:21:26 +00003309 LaneIndex,
3310 (Spacing == 2),
3311 S, E));
Jim Grosbach04945c42011-12-02 00:35:16 +00003312 break;
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003313 }
Jim Grosbachad47cfc2011-10-18 23:02:30 +00003314 return MatchOperand_Success;
3315}
3316
Jim Grosbach2d6ef442011-07-25 20:14:50 +00003317/// parseMemBarrierOptOperand - Try to parse DSB/DMB data barrier options.
Jim Grosbach861e49c2011-02-12 01:34:40 +00003318ARMAsmParser::OperandMatchResultTy ARMAsmParser::
Jim Grosbach2d6ef442011-07-25 20:14:50 +00003319parseMemBarrierOptOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Bruno Cardoso Lopes36dd43f2011-02-07 22:09:15 +00003320 SMLoc S = Parser.getTok().getLoc();
3321 const AsmToken &Tok = Parser.getTok();
Jiangning Liu288e1af2012-08-02 08:21:27 +00003322 unsigned Opt;
Bruno Cardoso Lopes36dd43f2011-02-07 22:09:15 +00003323
Jiangning Liu288e1af2012-08-02 08:21:27 +00003324 if (Tok.is(AsmToken::Identifier)) {
3325 StringRef OptStr = Tok.getString();
Bruno Cardoso Lopes36dd43f2011-02-07 22:09:15 +00003326
Jiangning Liu288e1af2012-08-02 08:21:27 +00003327 Opt = StringSwitch<unsigned>(OptStr.slice(0, OptStr.size()).lower())
3328 .Case("sy", ARM_MB::SY)
3329 .Case("st", ARM_MB::ST)
3330 .Case("sh", ARM_MB::ISH)
3331 .Case("ish", ARM_MB::ISH)
3332 .Case("shst", ARM_MB::ISHST)
3333 .Case("ishst", ARM_MB::ISHST)
3334 .Case("nsh", ARM_MB::NSH)
3335 .Case("un", ARM_MB::NSH)
3336 .Case("nshst", ARM_MB::NSHST)
3337 .Case("unst", ARM_MB::NSHST)
3338 .Case("osh", ARM_MB::OSH)
3339 .Case("oshst", ARM_MB::OSHST)
3340 .Default(~0U);
Bruno Cardoso Lopes36dd43f2011-02-07 22:09:15 +00003341
Jiangning Liu288e1af2012-08-02 08:21:27 +00003342 if (Opt == ~0U)
3343 return MatchOperand_NoMatch;
3344
3345 Parser.Lex(); // Eat identifier token.
3346 } else if (Tok.is(AsmToken::Hash) ||
3347 Tok.is(AsmToken::Dollar) ||
3348 Tok.is(AsmToken::Integer)) {
3349 if (Parser.getTok().isNot(AsmToken::Integer))
3350 Parser.Lex(); // Eat the '#'.
3351 SMLoc Loc = Parser.getTok().getLoc();
3352
3353 const MCExpr *MemBarrierID;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00003354 if (getParser().parseExpression(MemBarrierID)) {
Jiangning Liu288e1af2012-08-02 08:21:27 +00003355 Error(Loc, "illegal expression");
3356 return MatchOperand_ParseFail;
3357 }
3358
3359 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(MemBarrierID);
3360 if (!CE) {
3361 Error(Loc, "constant expression expected");
3362 return MatchOperand_ParseFail;
3363 }
3364
3365 int Val = CE->getValue();
3366 if (Val & ~0xf) {
3367 Error(Loc, "immediate value out of range");
3368 return MatchOperand_ParseFail;
3369 }
3370
3371 Opt = ARM_MB::RESERVED_0 + Val;
3372 } else
3373 return MatchOperand_ParseFail;
3374
Bruno Cardoso Lopes36dd43f2011-02-07 22:09:15 +00003375 Operands.push_back(ARMOperand::CreateMemBarrierOpt((ARM_MB::MemBOpt)Opt, S));
Jim Grosbach861e49c2011-02-12 01:34:40 +00003376 return MatchOperand_Success;
Bruno Cardoso Lopes36dd43f2011-02-07 22:09:15 +00003377}
3378
Jim Grosbach2d6ef442011-07-25 20:14:50 +00003379/// parseProcIFlagsOperand - Try to parse iflags from CPS instruction.
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00003380ARMAsmParser::OperandMatchResultTy ARMAsmParser::
Jim Grosbach2d6ef442011-07-25 20:14:50 +00003381parseProcIFlagsOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00003382 SMLoc S = Parser.getTok().getLoc();
3383 const AsmToken &Tok = Parser.getTok();
Richard Bartonb0ec3752012-06-14 10:48:04 +00003384 if (!Tok.is(AsmToken::Identifier))
3385 return MatchOperand_NoMatch;
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00003386 StringRef IFlagsStr = Tok.getString();
3387
Owen Anderson10c5b122011-10-05 17:16:40 +00003388 // An iflags string of "none" is interpreted to mean that none of the AIF
3389 // bits are set. Not a terribly useful instruction, but a valid encoding.
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00003390 unsigned IFlags = 0;
Owen Anderson10c5b122011-10-05 17:16:40 +00003391 if (IFlagsStr != "none") {
3392 for (int i = 0, e = IFlagsStr.size(); i != e; ++i) {
3393 unsigned Flag = StringSwitch<unsigned>(IFlagsStr.substr(i, 1))
3394 .Case("a", ARM_PROC::A)
3395 .Case("i", ARM_PROC::I)
3396 .Case("f", ARM_PROC::F)
3397 .Default(~0U);
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00003398
Owen Anderson10c5b122011-10-05 17:16:40 +00003399 // If some specific iflag is already set, it means that some letter is
3400 // present more than once, this is not acceptable.
3401 if (Flag == ~0U || (IFlags & Flag))
3402 return MatchOperand_NoMatch;
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00003403
Owen Anderson10c5b122011-10-05 17:16:40 +00003404 IFlags |= Flag;
3405 }
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00003406 }
3407
3408 Parser.Lex(); // Eat identifier token.
3409 Operands.push_back(ARMOperand::CreateProcIFlags((ARM_PROC::IFlags)IFlags, S));
3410 return MatchOperand_Success;
3411}
3412
Jim Grosbach2d6ef442011-07-25 20:14:50 +00003413/// parseMSRMaskOperand - Try to parse mask flags from MSR instruction.
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +00003414ARMAsmParser::OperandMatchResultTy ARMAsmParser::
Jim Grosbach2d6ef442011-07-25 20:14:50 +00003415parseMSRMaskOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +00003416 SMLoc S = Parser.getTok().getLoc();
3417 const AsmToken &Tok = Parser.getTok();
Craig Toppera004b0d2012-10-09 04:55:28 +00003418 if (!Tok.is(AsmToken::Identifier))
3419 return MatchOperand_NoMatch;
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +00003420 StringRef Mask = Tok.getString();
3421
James Molloy21efa7d2011-09-28 14:21:38 +00003422 if (isMClass()) {
3423 // See ARMv6-M 10.1.1
Jim Grosbachd28888d2012-03-15 21:34:14 +00003424 std::string Name = Mask.lower();
3425 unsigned FlagsVal = StringSwitch<unsigned>(Name)
Kevin Enderbyf1b225d2012-05-17 22:18:01 +00003426 // Note: in the documentation:
3427 // ARM deprecates using MSR APSR without a _<bits> qualifier as an alias
3428 // for MSR APSR_nzcvq.
3429 // but we do make it an alias here. This is so to get the "mask encoding"
3430 // bits correct on MSR APSR writes.
3431 //
3432 // FIXME: Note the 0xc00 "mask encoding" bits version of the registers
3433 // should really only be allowed when writing a special register. Note
3434 // they get dropped in the MRS instruction reading a special register as
3435 // the SYSm field is only 8 bits.
3436 //
3437 // FIXME: the _g and _nzcvqg versions are only allowed if the processor
3438 // includes the DSP extension but that is not checked.
3439 .Case("apsr", 0x800)
3440 .Case("apsr_nzcvq", 0x800)
3441 .Case("apsr_g", 0x400)
3442 .Case("apsr_nzcvqg", 0xc00)
3443 .Case("iapsr", 0x801)
3444 .Case("iapsr_nzcvq", 0x801)
3445 .Case("iapsr_g", 0x401)
3446 .Case("iapsr_nzcvqg", 0xc01)
3447 .Case("eapsr", 0x802)
3448 .Case("eapsr_nzcvq", 0x802)
3449 .Case("eapsr_g", 0x402)
3450 .Case("eapsr_nzcvqg", 0xc02)
3451 .Case("xpsr", 0x803)
3452 .Case("xpsr_nzcvq", 0x803)
3453 .Case("xpsr_g", 0x403)
3454 .Case("xpsr_nzcvqg", 0xc03)
Kevin Enderby6c7279e2012-06-15 22:14:44 +00003455 .Case("ipsr", 0x805)
3456 .Case("epsr", 0x806)
3457 .Case("iepsr", 0x807)
3458 .Case("msp", 0x808)
3459 .Case("psp", 0x809)
3460 .Case("primask", 0x810)
3461 .Case("basepri", 0x811)
3462 .Case("basepri_max", 0x812)
3463 .Case("faultmask", 0x813)
3464 .Case("control", 0x814)
James Molloy21efa7d2011-09-28 14:21:38 +00003465 .Default(~0U);
Jim Grosbach3794d822011-12-22 17:17:10 +00003466
James Molloy21efa7d2011-09-28 14:21:38 +00003467 if (FlagsVal == ~0U)
3468 return MatchOperand_NoMatch;
3469
Kevin Enderby6c7279e2012-06-15 22:14:44 +00003470 if (!hasV7Ops() && FlagsVal >= 0x811 && FlagsVal <= 0x813)
James Molloy21efa7d2011-09-28 14:21:38 +00003471 // basepri, basepri_max and faultmask only valid for V7m.
3472 return MatchOperand_NoMatch;
Jim Grosbach3794d822011-12-22 17:17:10 +00003473
James Molloy21efa7d2011-09-28 14:21:38 +00003474 Parser.Lex(); // Eat identifier token.
3475 Operands.push_back(ARMOperand::CreateMSRMask(FlagsVal, S));
3476 return MatchOperand_Success;
3477 }
3478
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +00003479 // Split spec_reg from flag, example: CPSR_sxf => "CPSR" and "sxf"
3480 size_t Start = 0, Next = Mask.find('_');
3481 StringRef Flags = "";
Benjamin Kramer20baffb2011-11-06 20:37:06 +00003482 std::string SpecReg = Mask.slice(Start, Next).lower();
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +00003483 if (Next != StringRef::npos)
3484 Flags = Mask.slice(Next+1, Mask.size());
3485
3486 // FlagsVal contains the complete mask:
3487 // 3-0: Mask
3488 // 4: Special Reg (cpsr, apsr => 0; spsr => 1)
3489 unsigned FlagsVal = 0;
3490
3491 if (SpecReg == "apsr") {
3492 FlagsVal = StringSwitch<unsigned>(Flags)
Jim Grosbachd25c2cd2011-07-19 22:45:10 +00003493 .Case("nzcvq", 0x8) // same as CPSR_f
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +00003494 .Case("g", 0x4) // same as CPSR_s
3495 .Case("nzcvqg", 0xc) // same as CPSR_fs
3496 .Default(~0U);
3497
Joerg Sonnenberger740467a2011-02-19 00:43:45 +00003498 if (FlagsVal == ~0U) {
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +00003499 if (!Flags.empty())
3500 return MatchOperand_NoMatch;
3501 else
Jim Grosbach0ecd3952011-09-14 20:03:46 +00003502 FlagsVal = 8; // No flag
Joerg Sonnenberger740467a2011-02-19 00:43:45 +00003503 }
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +00003504 } else if (SpecReg == "cpsr" || SpecReg == "spsr") {
Jim Grosbach3d00eec2012-04-05 03:17:53 +00003505 // cpsr_all is an alias for cpsr_fc, as is plain cpsr.
3506 if (Flags == "all" || Flags == "")
Bruno Cardoso Lopes54452132011-05-25 00:35:03 +00003507 Flags = "fc";
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +00003508 for (int i = 0, e = Flags.size(); i != e; ++i) {
3509 unsigned Flag = StringSwitch<unsigned>(Flags.substr(i, 1))
3510 .Case("c", 1)
3511 .Case("x", 2)
3512 .Case("s", 4)
3513 .Case("f", 8)
3514 .Default(~0U);
3515
3516 // If some specific flag is already set, it means that some letter is
3517 // present more than once, this is not acceptable.
3518 if (FlagsVal == ~0U || (FlagsVal & Flag))
3519 return MatchOperand_NoMatch;
3520 FlagsVal |= Flag;
3521 }
3522 } else // No match for special register.
3523 return MatchOperand_NoMatch;
3524
Owen Anderson03a173e2011-10-21 18:43:28 +00003525 // Special register without flags is NOT equivalent to "fc" flags.
3526 // NOTE: This is a divergence from gas' behavior. Uncommenting the following
3527 // two lines would enable gas compatibility at the expense of breaking
3528 // round-tripping.
3529 //
3530 // if (!FlagsVal)
3531 // FlagsVal = 0x9;
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +00003532
3533 // Bit 4: Special Reg (cpsr, apsr => 0; spsr => 1)
3534 if (SpecReg == "spsr")
3535 FlagsVal |= 16;
3536
3537 Parser.Lex(); // Eat identifier token.
3538 Operands.push_back(ARMOperand::CreateMSRMask(FlagsVal, S));
3539 return MatchOperand_Success;
3540}
3541
Jim Grosbach27c1e252011-07-21 17:23:04 +00003542ARMAsmParser::OperandMatchResultTy ARMAsmParser::
3543parsePKHImm(SmallVectorImpl<MCParsedAsmOperand*> &Operands, StringRef Op,
3544 int Low, int High) {
3545 const AsmToken &Tok = Parser.getTok();
3546 if (Tok.isNot(AsmToken::Identifier)) {
3547 Error(Parser.getTok().getLoc(), Op + " operand expected.");
3548 return MatchOperand_ParseFail;
3549 }
3550 StringRef ShiftName = Tok.getString();
Benjamin Kramer20baffb2011-11-06 20:37:06 +00003551 std::string LowerOp = Op.lower();
3552 std::string UpperOp = Op.upper();
Jim Grosbach27c1e252011-07-21 17:23:04 +00003553 if (ShiftName != LowerOp && ShiftName != UpperOp) {
3554 Error(Parser.getTok().getLoc(), Op + " operand expected.");
3555 return MatchOperand_ParseFail;
3556 }
3557 Parser.Lex(); // Eat shift type token.
3558
3559 // There must be a '#' and a shift amount.
Jim Grosbachef70e9b2011-12-09 22:25:03 +00003560 if (Parser.getTok().isNot(AsmToken::Hash) &&
3561 Parser.getTok().isNot(AsmToken::Dollar)) {
Jim Grosbach27c1e252011-07-21 17:23:04 +00003562 Error(Parser.getTok().getLoc(), "'#' expected");
3563 return MatchOperand_ParseFail;
3564 }
3565 Parser.Lex(); // Eat hash token.
3566
3567 const MCExpr *ShiftAmount;
3568 SMLoc Loc = Parser.getTok().getLoc();
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003569 SMLoc EndLoc;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00003570 if (getParser().parseExpression(ShiftAmount, EndLoc)) {
Jim Grosbach27c1e252011-07-21 17:23:04 +00003571 Error(Loc, "illegal expression");
3572 return MatchOperand_ParseFail;
3573 }
3574 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ShiftAmount);
3575 if (!CE) {
3576 Error(Loc, "constant expression expected");
3577 return MatchOperand_ParseFail;
3578 }
3579 int Val = CE->getValue();
3580 if (Val < Low || Val > High) {
3581 Error(Loc, "immediate value out of range");
3582 return MatchOperand_ParseFail;
3583 }
3584
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003585 Operands.push_back(ARMOperand::CreateImm(CE, Loc, EndLoc));
Jim Grosbach27c1e252011-07-21 17:23:04 +00003586
3587 return MatchOperand_Success;
3588}
3589
Jim Grosbach0a547702011-07-22 17:44:50 +00003590ARMAsmParser::OperandMatchResultTy ARMAsmParser::
3591parseSetEndImm(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
3592 const AsmToken &Tok = Parser.getTok();
3593 SMLoc S = Tok.getLoc();
3594 if (Tok.isNot(AsmToken::Identifier)) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003595 Error(S, "'be' or 'le' operand expected");
Jim Grosbach0a547702011-07-22 17:44:50 +00003596 return MatchOperand_ParseFail;
3597 }
3598 int Val = StringSwitch<int>(Tok.getString())
3599 .Case("be", 1)
3600 .Case("le", 0)
3601 .Default(-1);
3602 Parser.Lex(); // Eat the token.
3603
3604 if (Val == -1) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003605 Error(S, "'be' or 'le' operand expected");
Jim Grosbach0a547702011-07-22 17:44:50 +00003606 return MatchOperand_ParseFail;
3607 }
3608 Operands.push_back(ARMOperand::CreateImm(MCConstantExpr::Create(Val,
3609 getContext()),
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003610 S, Tok.getEndLoc()));
Jim Grosbach0a547702011-07-22 17:44:50 +00003611 return MatchOperand_Success;
3612}
3613
Jim Grosbach3a9cbee2011-07-25 22:20:28 +00003614/// parseShifterImm - Parse the shifter immediate operand for SSAT/USAT
3615/// instructions. Legal values are:
3616/// lsl #n 'n' in [0,31]
3617/// asr #n 'n' in [1,32]
3618/// n == 32 encoded as n == 0.
3619ARMAsmParser::OperandMatchResultTy ARMAsmParser::
3620parseShifterImm(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
3621 const AsmToken &Tok = Parser.getTok();
3622 SMLoc S = Tok.getLoc();
3623 if (Tok.isNot(AsmToken::Identifier)) {
3624 Error(S, "shift operator 'asr' or 'lsl' expected");
3625 return MatchOperand_ParseFail;
3626 }
3627 StringRef ShiftName = Tok.getString();
3628 bool isASR;
3629 if (ShiftName == "lsl" || ShiftName == "LSL")
3630 isASR = false;
3631 else if (ShiftName == "asr" || ShiftName == "ASR")
3632 isASR = true;
3633 else {
3634 Error(S, "shift operator 'asr' or 'lsl' expected");
3635 return MatchOperand_ParseFail;
3636 }
3637 Parser.Lex(); // Eat the operator.
3638
3639 // A '#' and a shift amount.
Jim Grosbachef70e9b2011-12-09 22:25:03 +00003640 if (Parser.getTok().isNot(AsmToken::Hash) &&
3641 Parser.getTok().isNot(AsmToken::Dollar)) {
Jim Grosbach3a9cbee2011-07-25 22:20:28 +00003642 Error(Parser.getTok().getLoc(), "'#' expected");
3643 return MatchOperand_ParseFail;
3644 }
3645 Parser.Lex(); // Eat hash token.
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003646 SMLoc ExLoc = Parser.getTok().getLoc();
Jim Grosbach3a9cbee2011-07-25 22:20:28 +00003647
3648 const MCExpr *ShiftAmount;
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003649 SMLoc EndLoc;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00003650 if (getParser().parseExpression(ShiftAmount, EndLoc)) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003651 Error(ExLoc, "malformed shift expression");
Jim Grosbach3a9cbee2011-07-25 22:20:28 +00003652 return MatchOperand_ParseFail;
3653 }
3654 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ShiftAmount);
3655 if (!CE) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003656 Error(ExLoc, "shift amount must be an immediate");
Jim Grosbach3a9cbee2011-07-25 22:20:28 +00003657 return MatchOperand_ParseFail;
3658 }
3659
3660 int64_t Val = CE->getValue();
3661 if (isASR) {
3662 // Shift amount must be in [1,32]
3663 if (Val < 1 || Val > 32) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003664 Error(ExLoc, "'asr' shift amount must be in range [1,32]");
Jim Grosbach3a9cbee2011-07-25 22:20:28 +00003665 return MatchOperand_ParseFail;
3666 }
Owen Andersonf01e2de2011-09-26 21:06:22 +00003667 // asr #32 encoded as asr #0, but is not allowed in Thumb2 mode.
3668 if (isThumb() && Val == 32) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003669 Error(ExLoc, "'asr #32' shift amount not allowed in Thumb mode");
Owen Andersonf01e2de2011-09-26 21:06:22 +00003670 return MatchOperand_ParseFail;
3671 }
Jim Grosbach3a9cbee2011-07-25 22:20:28 +00003672 if (Val == 32) Val = 0;
3673 } else {
3674 // Shift amount must be in [1,32]
3675 if (Val < 0 || Val > 31) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003676 Error(ExLoc, "'lsr' shift amount must be in range [0,31]");
Jim Grosbach3a9cbee2011-07-25 22:20:28 +00003677 return MatchOperand_ParseFail;
3678 }
3679 }
3680
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003681 Operands.push_back(ARMOperand::CreateShifterImm(isASR, Val, S, EndLoc));
Jim Grosbach3a9cbee2011-07-25 22:20:28 +00003682
3683 return MatchOperand_Success;
3684}
3685
Jim Grosbach833b9d32011-07-27 20:15:40 +00003686/// parseRotImm - Parse the shifter immediate operand for SXTB/UXTB family
3687/// of instructions. Legal values are:
3688/// ror #n 'n' in {0, 8, 16, 24}
3689ARMAsmParser::OperandMatchResultTy ARMAsmParser::
3690parseRotImm(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
3691 const AsmToken &Tok = Parser.getTok();
3692 SMLoc S = Tok.getLoc();
Jim Grosbach82213192011-09-19 20:29:33 +00003693 if (Tok.isNot(AsmToken::Identifier))
3694 return MatchOperand_NoMatch;
Jim Grosbach833b9d32011-07-27 20:15:40 +00003695 StringRef ShiftName = Tok.getString();
Jim Grosbach82213192011-09-19 20:29:33 +00003696 if (ShiftName != "ror" && ShiftName != "ROR")
3697 return MatchOperand_NoMatch;
Jim Grosbach833b9d32011-07-27 20:15:40 +00003698 Parser.Lex(); // Eat the operator.
3699
3700 // A '#' and a rotate amount.
Jim Grosbachef70e9b2011-12-09 22:25:03 +00003701 if (Parser.getTok().isNot(AsmToken::Hash) &&
3702 Parser.getTok().isNot(AsmToken::Dollar)) {
Jim Grosbach833b9d32011-07-27 20:15:40 +00003703 Error(Parser.getTok().getLoc(), "'#' expected");
3704 return MatchOperand_ParseFail;
3705 }
3706 Parser.Lex(); // Eat hash token.
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003707 SMLoc ExLoc = Parser.getTok().getLoc();
Jim Grosbach833b9d32011-07-27 20:15:40 +00003708
3709 const MCExpr *ShiftAmount;
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003710 SMLoc EndLoc;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00003711 if (getParser().parseExpression(ShiftAmount, EndLoc)) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003712 Error(ExLoc, "malformed rotate expression");
Jim Grosbach833b9d32011-07-27 20:15:40 +00003713 return MatchOperand_ParseFail;
3714 }
3715 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ShiftAmount);
3716 if (!CE) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003717 Error(ExLoc, "rotate amount must be an immediate");
Jim Grosbach833b9d32011-07-27 20:15:40 +00003718 return MatchOperand_ParseFail;
3719 }
3720
3721 int64_t Val = CE->getValue();
3722 // Shift amount must be in {0, 8, 16, 24} (0 is undocumented extension)
3723 // normally, zero is represented in asm by omitting the rotate operand
3724 // entirely.
3725 if (Val != 8 && Val != 16 && Val != 24 && Val != 0) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003726 Error(ExLoc, "'ror' rotate amount must be 8, 16, or 24");
Jim Grosbach833b9d32011-07-27 20:15:40 +00003727 return MatchOperand_ParseFail;
3728 }
3729
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003730 Operands.push_back(ARMOperand::CreateRotImm(Val, S, EndLoc));
Jim Grosbach833b9d32011-07-27 20:15:40 +00003731
3732 return MatchOperand_Success;
3733}
3734
Jim Grosbach864b6092011-07-28 21:34:26 +00003735ARMAsmParser::OperandMatchResultTy ARMAsmParser::
3736parseBitfield(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
3737 SMLoc S = Parser.getTok().getLoc();
3738 // The bitfield descriptor is really two operands, the LSB and the width.
Jim Grosbachef70e9b2011-12-09 22:25:03 +00003739 if (Parser.getTok().isNot(AsmToken::Hash) &&
3740 Parser.getTok().isNot(AsmToken::Dollar)) {
Jim Grosbach864b6092011-07-28 21:34:26 +00003741 Error(Parser.getTok().getLoc(), "'#' expected");
3742 return MatchOperand_ParseFail;
3743 }
3744 Parser.Lex(); // Eat hash token.
3745
3746 const MCExpr *LSBExpr;
3747 SMLoc E = Parser.getTok().getLoc();
Jim Grosbachd2037eb2013-02-20 22:21:35 +00003748 if (getParser().parseExpression(LSBExpr)) {
Jim Grosbach864b6092011-07-28 21:34:26 +00003749 Error(E, "malformed immediate expression");
3750 return MatchOperand_ParseFail;
3751 }
3752 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(LSBExpr);
3753 if (!CE) {
3754 Error(E, "'lsb' operand must be an immediate");
3755 return MatchOperand_ParseFail;
3756 }
3757
3758 int64_t LSB = CE->getValue();
3759 // The LSB must be in the range [0,31]
3760 if (LSB < 0 || LSB > 31) {
3761 Error(E, "'lsb' operand must be in the range [0,31]");
3762 return MatchOperand_ParseFail;
3763 }
3764 E = Parser.getTok().getLoc();
3765
3766 // Expect another immediate operand.
3767 if (Parser.getTok().isNot(AsmToken::Comma)) {
3768 Error(Parser.getTok().getLoc(), "too few operands");
3769 return MatchOperand_ParseFail;
3770 }
3771 Parser.Lex(); // Eat hash token.
Jim Grosbachef70e9b2011-12-09 22:25:03 +00003772 if (Parser.getTok().isNot(AsmToken::Hash) &&
3773 Parser.getTok().isNot(AsmToken::Dollar)) {
Jim Grosbach864b6092011-07-28 21:34:26 +00003774 Error(Parser.getTok().getLoc(), "'#' expected");
3775 return MatchOperand_ParseFail;
3776 }
3777 Parser.Lex(); // Eat hash token.
3778
3779 const MCExpr *WidthExpr;
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003780 SMLoc EndLoc;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00003781 if (getParser().parseExpression(WidthExpr, EndLoc)) {
Jim Grosbach864b6092011-07-28 21:34:26 +00003782 Error(E, "malformed immediate expression");
3783 return MatchOperand_ParseFail;
3784 }
3785 CE = dyn_cast<MCConstantExpr>(WidthExpr);
3786 if (!CE) {
3787 Error(E, "'width' operand must be an immediate");
3788 return MatchOperand_ParseFail;
3789 }
3790
3791 int64_t Width = CE->getValue();
3792 // The LSB must be in the range [1,32-lsb]
3793 if (Width < 1 || Width > 32 - LSB) {
3794 Error(E, "'width' operand must be in the range [1,32-lsb]");
3795 return MatchOperand_ParseFail;
3796 }
Jim Grosbach864b6092011-07-28 21:34:26 +00003797
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003798 Operands.push_back(ARMOperand::CreateBitfield(LSB, Width, S, EndLoc));
Jim Grosbach864b6092011-07-28 21:34:26 +00003799
3800 return MatchOperand_Success;
3801}
3802
Jim Grosbachd3595712011-08-03 23:50:40 +00003803ARMAsmParser::OperandMatchResultTy ARMAsmParser::
3804parsePostIdxReg(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
3805 // Check for a post-index addressing register operand. Specifically:
Jim Grosbachc320c852011-08-05 21:28:30 +00003806 // postidx_reg := '+' register {, shift}
3807 // | '-' register {, shift}
3808 // | register {, shift}
Jim Grosbachd3595712011-08-03 23:50:40 +00003809
3810 // This method must return MatchOperand_NoMatch without consuming any tokens
3811 // in the case where there is no match, as other alternatives take other
3812 // parse methods.
3813 AsmToken Tok = Parser.getTok();
3814 SMLoc S = Tok.getLoc();
3815 bool haveEaten = false;
Jim Grosbacha70fbfd52011-08-05 16:11:38 +00003816 bool isAdd = true;
Jim Grosbachd3595712011-08-03 23:50:40 +00003817 if (Tok.is(AsmToken::Plus)) {
3818 Parser.Lex(); // Eat the '+' token.
3819 haveEaten = true;
3820 } else if (Tok.is(AsmToken::Minus)) {
3821 Parser.Lex(); // Eat the '-' token.
Jim Grosbacha70fbfd52011-08-05 16:11:38 +00003822 isAdd = false;
Jim Grosbachd3595712011-08-03 23:50:40 +00003823 haveEaten = true;
3824 }
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003825
3826 SMLoc E = Parser.getTok().getEndLoc();
3827 int Reg = tryParseRegister();
Jim Grosbachd3595712011-08-03 23:50:40 +00003828 if (Reg == -1) {
3829 if (!haveEaten)
3830 return MatchOperand_NoMatch;
3831 Error(Parser.getTok().getLoc(), "register expected");
3832 return MatchOperand_ParseFail;
3833 }
Jim Grosbachd3595712011-08-03 23:50:40 +00003834
Jim Grosbachc320c852011-08-05 21:28:30 +00003835 ARM_AM::ShiftOpc ShiftTy = ARM_AM::no_shift;
3836 unsigned ShiftImm = 0;
Jim Grosbach3d0b3a32011-08-05 22:03:36 +00003837 if (Parser.getTok().is(AsmToken::Comma)) {
3838 Parser.Lex(); // Eat the ','.
3839 if (parseMemRegOffsetShift(ShiftTy, ShiftImm))
3840 return MatchOperand_ParseFail;
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003841
3842 // FIXME: Only approximates end...may include intervening whitespace.
3843 E = Parser.getTok().getLoc();
Jim Grosbach3d0b3a32011-08-05 22:03:36 +00003844 }
Jim Grosbachc320c852011-08-05 21:28:30 +00003845
3846 Operands.push_back(ARMOperand::CreatePostIdxReg(Reg, isAdd, ShiftTy,
3847 ShiftImm, S, E));
Jim Grosbachd3595712011-08-03 23:50:40 +00003848
3849 return MatchOperand_Success;
3850}
3851
Jim Grosbach1d9d5e92011-08-10 21:56:18 +00003852ARMAsmParser::OperandMatchResultTy ARMAsmParser::
3853parseAM3Offset(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
3854 // Check for a post-index addressing register operand. Specifically:
3855 // am3offset := '+' register
3856 // | '-' register
3857 // | register
3858 // | # imm
3859 // | # + imm
3860 // | # - imm
3861
3862 // This method must return MatchOperand_NoMatch without consuming any tokens
3863 // in the case where there is no match, as other alternatives take other
3864 // parse methods.
3865 AsmToken Tok = Parser.getTok();
3866 SMLoc S = Tok.getLoc();
3867
3868 // Do immediates first, as we always parse those if we have a '#'.
Jim Grosbachef70e9b2011-12-09 22:25:03 +00003869 if (Parser.getTok().is(AsmToken::Hash) ||
3870 Parser.getTok().is(AsmToken::Dollar)) {
Jim Grosbach1d9d5e92011-08-10 21:56:18 +00003871 Parser.Lex(); // Eat the '#'.
3872 // Explicitly look for a '-', as we need to encode negative zero
3873 // differently.
3874 bool isNegative = Parser.getTok().is(AsmToken::Minus);
3875 const MCExpr *Offset;
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003876 SMLoc E;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00003877 if (getParser().parseExpression(Offset, E))
Jim Grosbach1d9d5e92011-08-10 21:56:18 +00003878 return MatchOperand_ParseFail;
3879 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Offset);
3880 if (!CE) {
3881 Error(S, "constant expression expected");
3882 return MatchOperand_ParseFail;
3883 }
Jim Grosbach1d9d5e92011-08-10 21:56:18 +00003884 // Negative zero is encoded as the flag value INT32_MIN.
3885 int32_t Val = CE->getValue();
3886 if (isNegative && Val == 0)
3887 Val = INT32_MIN;
3888
3889 Operands.push_back(
3890 ARMOperand::CreateImm(MCConstantExpr::Create(Val, getContext()), S, E));
3891
3892 return MatchOperand_Success;
3893 }
3894
3895
3896 bool haveEaten = false;
3897 bool isAdd = true;
Jim Grosbach1d9d5e92011-08-10 21:56:18 +00003898 if (Tok.is(AsmToken::Plus)) {
3899 Parser.Lex(); // Eat the '+' token.
3900 haveEaten = true;
3901 } else if (Tok.is(AsmToken::Minus)) {
3902 Parser.Lex(); // Eat the '-' token.
3903 isAdd = false;
3904 haveEaten = true;
3905 }
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003906
3907 Tok = Parser.getTok();
3908 int Reg = tryParseRegister();
Jim Grosbach1d9d5e92011-08-10 21:56:18 +00003909 if (Reg == -1) {
3910 if (!haveEaten)
3911 return MatchOperand_NoMatch;
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003912 Error(Tok.getLoc(), "register expected");
Jim Grosbach1d9d5e92011-08-10 21:56:18 +00003913 return MatchOperand_ParseFail;
3914 }
Jim Grosbach1d9d5e92011-08-10 21:56:18 +00003915
3916 Operands.push_back(ARMOperand::CreatePostIdxReg(Reg, isAdd, ARM_AM::no_shift,
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003917 0, S, Tok.getEndLoc()));
Jim Grosbach1d9d5e92011-08-10 21:56:18 +00003918
3919 return MatchOperand_Success;
3920}
3921
Jim Grosbach7db8d692011-09-08 22:07:06 +00003922/// cvtT2LdrdPre - Convert parsed operands to MCInst.
3923/// Needed here because the Asm Gen Matcher can't handle properly tied operands
3924/// when they refer multiple MIOperands inside a single one.
Chad Rosier98cfa102012-08-31 00:03:31 +00003925void ARMAsmParser::
Chad Rosier451ef132012-08-31 22:12:31 +00003926cvtT2LdrdPre(MCInst &Inst,
Jim Grosbach7db8d692011-09-08 22:07:06 +00003927 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
3928 // Rt, Rt2
3929 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
3930 ((ARMOperand*)Operands[3])->addRegOperands(Inst, 1);
3931 // Create a writeback register dummy placeholder.
3932 Inst.addOperand(MCOperand::CreateReg(0));
3933 // addr
3934 ((ARMOperand*)Operands[4])->addMemImm8s4OffsetOperands(Inst, 2);
3935 // pred
3936 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
Jim Grosbach7db8d692011-09-08 22:07:06 +00003937}
3938
3939/// cvtT2StrdPre - Convert parsed operands to MCInst.
3940/// Needed here because the Asm Gen Matcher can't handle properly tied operands
3941/// when they refer multiple MIOperands inside a single one.
Chad Rosier98cfa102012-08-31 00:03:31 +00003942void ARMAsmParser::
Chad Rosier451ef132012-08-31 22:12:31 +00003943cvtT2StrdPre(MCInst &Inst,
Jim Grosbach7db8d692011-09-08 22:07:06 +00003944 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
3945 // Create a writeback register dummy placeholder.
3946 Inst.addOperand(MCOperand::CreateReg(0));
3947 // Rt, Rt2
3948 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
3949 ((ARMOperand*)Operands[3])->addRegOperands(Inst, 1);
3950 // addr
3951 ((ARMOperand*)Operands[4])->addMemImm8s4OffsetOperands(Inst, 2);
3952 // pred
3953 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
Jim Grosbach7db8d692011-09-08 22:07:06 +00003954}
3955
Jim Grosbachc086f682011-09-08 00:39:19 +00003956/// cvtLdWriteBackRegT2AddrModeImm8 - Convert parsed operands to MCInst.
3957/// Needed here because the Asm Gen Matcher can't handle properly tied operands
3958/// when they refer multiple MIOperands inside a single one.
Chad Rosier98cfa102012-08-31 00:03:31 +00003959void ARMAsmParser::
Chad Rosier451ef132012-08-31 22:12:31 +00003960cvtLdWriteBackRegT2AddrModeImm8(MCInst &Inst,
Jim Grosbachc086f682011-09-08 00:39:19 +00003961 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
3962 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
3963
3964 // Create a writeback register dummy placeholder.
3965 Inst.addOperand(MCOperand::CreateImm(0));
3966
3967 ((ARMOperand*)Operands[3])->addMemImm8OffsetOperands(Inst, 2);
3968 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
Jim Grosbachc086f682011-09-08 00:39:19 +00003969}
3970
Jim Grosbach9c0b86a2011-09-16 21:55:56 +00003971/// cvtStWriteBackRegT2AddrModeImm8 - Convert parsed operands to MCInst.
3972/// Needed here because the Asm Gen Matcher can't handle properly tied operands
3973/// when they refer multiple MIOperands inside a single one.
Chad Rosier98cfa102012-08-31 00:03:31 +00003974void ARMAsmParser::
Chad Rosier451ef132012-08-31 22:12:31 +00003975cvtStWriteBackRegT2AddrModeImm8(MCInst &Inst,
Jim Grosbach9c0b86a2011-09-16 21:55:56 +00003976 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
3977 // Create a writeback register dummy placeholder.
3978 Inst.addOperand(MCOperand::CreateImm(0));
3979 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
3980 ((ARMOperand*)Operands[3])->addMemImm8OffsetOperands(Inst, 2);
3981 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
Jim Grosbach9c0b86a2011-09-16 21:55:56 +00003982}
3983
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00003984/// cvtLdWriteBackRegAddrMode2 - Convert parsed operands to MCInst.
Bruno Cardoso Lopesab830502011-03-31 23:26:08 +00003985/// Needed here because the Asm Gen Matcher can't handle properly tied operands
3986/// when they refer multiple MIOperands inside a single one.
Chad Rosier98cfa102012-08-31 00:03:31 +00003987void ARMAsmParser::
Chad Rosier451ef132012-08-31 22:12:31 +00003988cvtLdWriteBackRegAddrMode2(MCInst &Inst,
Bruno Cardoso Lopesab830502011-03-31 23:26:08 +00003989 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
3990 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
3991
3992 // Create a writeback register dummy placeholder.
3993 Inst.addOperand(MCOperand::CreateImm(0));
3994
Jim Grosbachd3595712011-08-03 23:50:40 +00003995 ((ARMOperand*)Operands[3])->addAddrMode2Operands(Inst, 3);
Bruno Cardoso Lopesab830502011-03-31 23:26:08 +00003996 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
Bruno Cardoso Lopesab830502011-03-31 23:26:08 +00003997}
3998
Owen Anderson16d33f32011-08-26 20:43:14 +00003999/// cvtLdWriteBackRegAddrModeImm12 - Convert parsed operands to MCInst.
4000/// Needed here because the Asm Gen Matcher can't handle properly tied operands
4001/// when they refer multiple MIOperands inside a single one.
Chad Rosier98cfa102012-08-31 00:03:31 +00004002void ARMAsmParser::
Chad Rosier451ef132012-08-31 22:12:31 +00004003cvtLdWriteBackRegAddrModeImm12(MCInst &Inst,
Owen Anderson16d33f32011-08-26 20:43:14 +00004004 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
4005 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
4006
4007 // Create a writeback register dummy placeholder.
4008 Inst.addOperand(MCOperand::CreateImm(0));
4009
4010 ((ARMOperand*)Operands[3])->addMemImm12OffsetOperands(Inst, 2);
4011 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
Owen Anderson16d33f32011-08-26 20:43:14 +00004012}
4013
4014
Jim Grosbachd564bf32011-08-11 19:22:40 +00004015/// cvtStWriteBackRegAddrModeImm12 - Convert parsed operands to MCInst.
4016/// Needed here because the Asm Gen Matcher can't handle properly tied operands
4017/// when they refer multiple MIOperands inside a single one.
Chad Rosier98cfa102012-08-31 00:03:31 +00004018void ARMAsmParser::
Chad Rosier451ef132012-08-31 22:12:31 +00004019cvtStWriteBackRegAddrModeImm12(MCInst &Inst,
Jim Grosbachd564bf32011-08-11 19:22:40 +00004020 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
4021 // Create a writeback register dummy placeholder.
4022 Inst.addOperand(MCOperand::CreateImm(0));
4023 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
4024 ((ARMOperand*)Operands[3])->addMemImm12OffsetOperands(Inst, 2);
4025 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
Jim Grosbachd564bf32011-08-11 19:22:40 +00004026}
4027
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00004028/// cvtStWriteBackRegAddrMode2 - Convert parsed operands to MCInst.
Bruno Cardoso Lopesab830502011-03-31 23:26:08 +00004029/// Needed here because the Asm Gen Matcher can't handle properly tied operands
4030/// when they refer multiple MIOperands inside a single one.
Chad Rosier98cfa102012-08-31 00:03:31 +00004031void ARMAsmParser::
Chad Rosier451ef132012-08-31 22:12:31 +00004032cvtStWriteBackRegAddrMode2(MCInst &Inst,
Bruno Cardoso Lopesab830502011-03-31 23:26:08 +00004033 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
4034 // Create a writeback register dummy placeholder.
4035 Inst.addOperand(MCOperand::CreateImm(0));
Jim Grosbachd564bf32011-08-11 19:22:40 +00004036 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
4037 ((ARMOperand*)Operands[3])->addAddrMode2Operands(Inst, 3);
4038 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
Jim Grosbachd3595712011-08-03 23:50:40 +00004039}
4040
Jim Grosbachd886f8c2011-08-11 21:17:22 +00004041/// cvtStWriteBackRegAddrMode3 - Convert parsed operands to MCInst.
4042/// Needed here because the Asm Gen Matcher can't handle properly tied operands
4043/// when they refer multiple MIOperands inside a single one.
Chad Rosier98cfa102012-08-31 00:03:31 +00004044void ARMAsmParser::
Chad Rosier451ef132012-08-31 22:12:31 +00004045cvtStWriteBackRegAddrMode3(MCInst &Inst,
Jim Grosbachd886f8c2011-08-11 21:17:22 +00004046 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
4047 // Create a writeback register dummy placeholder.
4048 Inst.addOperand(MCOperand::CreateImm(0));
4049 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
4050 ((ARMOperand*)Operands[3])->addAddrMode3Operands(Inst, 3);
4051 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
Jim Grosbachd886f8c2011-08-11 21:17:22 +00004052}
4053
Jim Grosbachd3595712011-08-03 23:50:40 +00004054/// cvtLdExtTWriteBackImm - Convert parsed operands to MCInst.
4055/// Needed here because the Asm Gen Matcher can't handle properly tied operands
4056/// when they refer multiple MIOperands inside a single one.
Chad Rosier98cfa102012-08-31 00:03:31 +00004057void ARMAsmParser::
Chad Rosier451ef132012-08-31 22:12:31 +00004058cvtLdExtTWriteBackImm(MCInst &Inst,
Jim Grosbachd3595712011-08-03 23:50:40 +00004059 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
4060 // Rt
Bruno Cardoso Lopesab830502011-03-31 23:26:08 +00004061 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
Jim Grosbachd3595712011-08-03 23:50:40 +00004062 // Create a writeback register dummy placeholder.
4063 Inst.addOperand(MCOperand::CreateImm(0));
4064 // addr
4065 ((ARMOperand*)Operands[3])->addMemNoOffsetOperands(Inst, 1);
4066 // offset
4067 ((ARMOperand*)Operands[4])->addPostIdxImm8Operands(Inst, 1);
4068 // pred
Bruno Cardoso Lopesab830502011-03-31 23:26:08 +00004069 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
Bruno Cardoso Lopesab830502011-03-31 23:26:08 +00004070}
4071
Jim Grosbachd3595712011-08-03 23:50:40 +00004072/// cvtLdExtTWriteBackReg - Convert parsed operands to MCInst.
Bruno Cardoso Lopesbda36322011-04-04 17:18:19 +00004073/// Needed here because the Asm Gen Matcher can't handle properly tied operands
4074/// when they refer multiple MIOperands inside a single one.
Chad Rosier98cfa102012-08-31 00:03:31 +00004075void ARMAsmParser::
Chad Rosier451ef132012-08-31 22:12:31 +00004076cvtLdExtTWriteBackReg(MCInst &Inst,
Jim Grosbachd3595712011-08-03 23:50:40 +00004077 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
4078 // Rt
Owen Andersonb0e68992011-07-28 17:18:57 +00004079 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
Bruno Cardoso Lopesbda36322011-04-04 17:18:19 +00004080 // Create a writeback register dummy placeholder.
4081 Inst.addOperand(MCOperand::CreateImm(0));
Jim Grosbachd3595712011-08-03 23:50:40 +00004082 // addr
4083 ((ARMOperand*)Operands[3])->addMemNoOffsetOperands(Inst, 1);
4084 // offset
4085 ((ARMOperand*)Operands[4])->addPostIdxRegOperands(Inst, 2);
4086 // pred
Bruno Cardoso Lopesbda36322011-04-04 17:18:19 +00004087 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
Bruno Cardoso Lopesbda36322011-04-04 17:18:19 +00004088}
4089
Jim Grosbachd3595712011-08-03 23:50:40 +00004090/// cvtStExtTWriteBackImm - Convert parsed operands to MCInst.
Bruno Cardoso Lopesbda36322011-04-04 17:18:19 +00004091/// Needed here because the Asm Gen Matcher can't handle properly tied operands
4092/// when they refer multiple MIOperands inside a single one.
Chad Rosier98cfa102012-08-31 00:03:31 +00004093void ARMAsmParser::
Chad Rosier451ef132012-08-31 22:12:31 +00004094cvtStExtTWriteBackImm(MCInst &Inst,
Jim Grosbachd3595712011-08-03 23:50:40 +00004095 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Bruno Cardoso Lopesbda36322011-04-04 17:18:19 +00004096 // Create a writeback register dummy placeholder.
4097 Inst.addOperand(MCOperand::CreateImm(0));
Jim Grosbachd3595712011-08-03 23:50:40 +00004098 // Rt
Bruno Cardoso Lopesbda36322011-04-04 17:18:19 +00004099 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
Jim Grosbachd3595712011-08-03 23:50:40 +00004100 // addr
4101 ((ARMOperand*)Operands[3])->addMemNoOffsetOperands(Inst, 1);
4102 // offset
4103 ((ARMOperand*)Operands[4])->addPostIdxImm8Operands(Inst, 1);
4104 // pred
4105 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
Jim Grosbachd3595712011-08-03 23:50:40 +00004106}
4107
4108/// cvtStExtTWriteBackReg - Convert parsed operands to MCInst.
4109/// Needed here because the Asm Gen Matcher can't handle properly tied operands
4110/// when they refer multiple MIOperands inside a single one.
Chad Rosier98cfa102012-08-31 00:03:31 +00004111void ARMAsmParser::
Chad Rosier451ef132012-08-31 22:12:31 +00004112cvtStExtTWriteBackReg(MCInst &Inst,
Jim Grosbachd3595712011-08-03 23:50:40 +00004113 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
4114 // Create a writeback register dummy placeholder.
4115 Inst.addOperand(MCOperand::CreateImm(0));
4116 // Rt
4117 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
4118 // addr
4119 ((ARMOperand*)Operands[3])->addMemNoOffsetOperands(Inst, 1);
4120 // offset
4121 ((ARMOperand*)Operands[4])->addPostIdxRegOperands(Inst, 2);
4122 // pred
Bruno Cardoso Lopesbda36322011-04-04 17:18:19 +00004123 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
Bruno Cardoso Lopesbda36322011-04-04 17:18:19 +00004124}
4125
Jim Grosbach5b96b802011-08-10 20:29:19 +00004126/// cvtLdrdPre - Convert parsed operands to MCInst.
4127/// Needed here because the Asm Gen Matcher can't handle properly tied operands
4128/// when they refer multiple MIOperands inside a single one.
Chad Rosier98cfa102012-08-31 00:03:31 +00004129void ARMAsmParser::
Chad Rosier451ef132012-08-31 22:12:31 +00004130cvtLdrdPre(MCInst &Inst,
Jim Grosbach5b96b802011-08-10 20:29:19 +00004131 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
4132 // Rt, Rt2
4133 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
4134 ((ARMOperand*)Operands[3])->addRegOperands(Inst, 1);
4135 // Create a writeback register dummy placeholder.
4136 Inst.addOperand(MCOperand::CreateImm(0));
4137 // addr
4138 ((ARMOperand*)Operands[4])->addAddrMode3Operands(Inst, 3);
4139 // pred
4140 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
Jim Grosbach5b96b802011-08-10 20:29:19 +00004141}
4142
Jim Grosbacheb09f492011-08-11 20:28:23 +00004143/// cvtStrdPre - Convert parsed operands to MCInst.
4144/// Needed here because the Asm Gen Matcher can't handle properly tied operands
4145/// when they refer multiple MIOperands inside a single one.
Chad Rosier98cfa102012-08-31 00:03:31 +00004146void ARMAsmParser::
Chad Rosier451ef132012-08-31 22:12:31 +00004147cvtStrdPre(MCInst &Inst,
Jim Grosbacheb09f492011-08-11 20:28:23 +00004148 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
4149 // Create a writeback register dummy placeholder.
4150 Inst.addOperand(MCOperand::CreateImm(0));
4151 // Rt, Rt2
4152 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
4153 ((ARMOperand*)Operands[3])->addRegOperands(Inst, 1);
4154 // addr
4155 ((ARMOperand*)Operands[4])->addAddrMode3Operands(Inst, 3);
4156 // pred
4157 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
Jim Grosbacheb09f492011-08-11 20:28:23 +00004158}
4159
Jim Grosbachcd4dd252011-08-10 22:42:16 +00004160/// cvtLdWriteBackRegAddrMode3 - Convert parsed operands to MCInst.
4161/// Needed here because the Asm Gen Matcher can't handle properly tied operands
4162/// when they refer multiple MIOperands inside a single one.
Chad Rosier98cfa102012-08-31 00:03:31 +00004163void ARMAsmParser::
Chad Rosier451ef132012-08-31 22:12:31 +00004164cvtLdWriteBackRegAddrMode3(MCInst &Inst,
Jim Grosbachcd4dd252011-08-10 22:42:16 +00004165 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
4166 ((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
4167 // Create a writeback register dummy placeholder.
4168 Inst.addOperand(MCOperand::CreateImm(0));
4169 ((ARMOperand*)Operands[3])->addAddrMode3Operands(Inst, 3);
4170 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
Jim Grosbachcd4dd252011-08-10 22:42:16 +00004171}
4172
Chad Rosier5eec49f2012-08-30 23:00:00 +00004173/// cvtThumbMultiply - Convert parsed operands to MCInst.
Jim Grosbach8e048492011-08-19 22:07:46 +00004174/// Needed here because the Asm Gen Matcher can't handle properly tied operands
4175/// when they refer multiple MIOperands inside a single one.
Chad Rosier98cfa102012-08-31 00:03:31 +00004176void ARMAsmParser::
Chad Rosier451ef132012-08-31 22:12:31 +00004177cvtThumbMultiply(MCInst &Inst,
Jim Grosbach8e048492011-08-19 22:07:46 +00004178 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Jim Grosbach8e048492011-08-19 22:07:46 +00004179 ((ARMOperand*)Operands[3])->addRegOperands(Inst, 1);
4180 ((ARMOperand*)Operands[1])->addCCOutOperands(Inst, 1);
Jim Grosbach5a5ce632011-11-10 22:10:12 +00004181 // If we have a three-operand form, make sure to set Rn to be the operand
4182 // that isn't the same as Rd.
4183 unsigned RegOp = 4;
4184 if (Operands.size() == 6 &&
4185 ((ARMOperand*)Operands[4])->getReg() ==
4186 ((ARMOperand*)Operands[3])->getReg())
4187 RegOp = 5;
4188 ((ARMOperand*)Operands[RegOp])->addRegOperands(Inst, 1);
4189 Inst.addOperand(Inst.getOperand(0));
Jim Grosbach8e048492011-08-19 22:07:46 +00004190 ((ARMOperand*)Operands[2])->addCondCodeOperands(Inst, 2);
Jim Grosbach8e048492011-08-19 22:07:46 +00004191}
Jim Grosbachcd4dd252011-08-10 22:42:16 +00004192
Chad Rosier98cfa102012-08-31 00:03:31 +00004193void ARMAsmParser::
Chad Rosier451ef132012-08-31 22:12:31 +00004194cvtVLDwbFixed(MCInst &Inst,
Jim Grosbach3ea06572011-10-24 22:16:58 +00004195 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
4196 // Vd
Jim Grosbach182b6a02011-11-29 23:51:09 +00004197 ((ARMOperand*)Operands[3])->addVecListOperands(Inst, 1);
Jim Grosbach3ea06572011-10-24 22:16:58 +00004198 // Create a writeback register dummy placeholder.
4199 Inst.addOperand(MCOperand::CreateImm(0));
4200 // Vn
4201 ((ARMOperand*)Operands[4])->addAlignedMemoryOperands(Inst, 2);
4202 // pred
4203 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
Jim Grosbach3ea06572011-10-24 22:16:58 +00004204}
4205
Chad Rosier98cfa102012-08-31 00:03:31 +00004206void ARMAsmParser::
Chad Rosier451ef132012-08-31 22:12:31 +00004207cvtVLDwbRegister(MCInst &Inst,
Jim Grosbach3ea06572011-10-24 22:16:58 +00004208 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
4209 // Vd
Jim Grosbach182b6a02011-11-29 23:51:09 +00004210 ((ARMOperand*)Operands[3])->addVecListOperands(Inst, 1);
Jim Grosbach3ea06572011-10-24 22:16:58 +00004211 // Create a writeback register dummy placeholder.
4212 Inst.addOperand(MCOperand::CreateImm(0));
4213 // Vn
4214 ((ARMOperand*)Operands[4])->addAlignedMemoryOperands(Inst, 2);
4215 // Vm
4216 ((ARMOperand*)Operands[5])->addRegOperands(Inst, 1);
4217 // pred
4218 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
Jim Grosbach3ea06572011-10-24 22:16:58 +00004219}
4220
Chad Rosier98cfa102012-08-31 00:03:31 +00004221void ARMAsmParser::
Chad Rosier451ef132012-08-31 22:12:31 +00004222cvtVSTwbFixed(MCInst &Inst,
Jim Grosbach05df4602011-10-31 21:50:31 +00004223 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
4224 // Create a writeback register dummy placeholder.
4225 Inst.addOperand(MCOperand::CreateImm(0));
4226 // Vn
4227 ((ARMOperand*)Operands[4])->addAlignedMemoryOperands(Inst, 2);
4228 // Vt
Jim Grosbach182b6a02011-11-29 23:51:09 +00004229 ((ARMOperand*)Operands[3])->addVecListOperands(Inst, 1);
Jim Grosbach05df4602011-10-31 21:50:31 +00004230 // pred
4231 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
Jim Grosbach05df4602011-10-31 21:50:31 +00004232}
4233
Chad Rosier98cfa102012-08-31 00:03:31 +00004234void ARMAsmParser::
Chad Rosier451ef132012-08-31 22:12:31 +00004235cvtVSTwbRegister(MCInst &Inst,
Jim Grosbach05df4602011-10-31 21:50:31 +00004236 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
4237 // Create a writeback register dummy placeholder.
4238 Inst.addOperand(MCOperand::CreateImm(0));
4239 // Vn
4240 ((ARMOperand*)Operands[4])->addAlignedMemoryOperands(Inst, 2);
4241 // Vm
4242 ((ARMOperand*)Operands[5])->addRegOperands(Inst, 1);
4243 // Vt
Jim Grosbach182b6a02011-11-29 23:51:09 +00004244 ((ARMOperand*)Operands[3])->addVecListOperands(Inst, 1);
Jim Grosbach05df4602011-10-31 21:50:31 +00004245 // pred
4246 ((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
Jim Grosbach05df4602011-10-31 21:50:31 +00004247}
4248
Bill Wendlinge18980a2010-11-06 22:36:58 +00004249/// Parse an ARM memory expression, return false if successful else return true
Kevin Enderby8be42bd2009-10-30 22:55:57 +00004250/// or an error. The first token must be a '[' when called.
Bill Wendling2063b842010-11-18 23:43:05 +00004251bool ARMAsmParser::
Jim Grosbachd3595712011-08-03 23:50:40 +00004252parseMemory(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Sean Callanan7ad0ad02010-04-02 22:27:05 +00004253 SMLoc S, E;
Sean Callanan936b0d32010-01-19 21:44:56 +00004254 assert(Parser.getTok().is(AsmToken::LBrac) &&
Bill Wendling4f4bce02010-11-06 10:48:18 +00004255 "Token is not a Left Bracket");
Sean Callanan7ad0ad02010-04-02 22:27:05 +00004256 S = Parser.getTok().getLoc();
Sean Callanana83fd7d2010-01-19 20:27:46 +00004257 Parser.Lex(); // Eat left bracket token.
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00004258
Sean Callanan936b0d32010-01-19 21:44:56 +00004259 const AsmToken &BaseRegTok = Parser.getTok();
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00004260 int BaseRegNum = tryParseRegister();
Jim Grosbachd3595712011-08-03 23:50:40 +00004261 if (BaseRegNum == -1)
4262 return Error(BaseRegTok.getLoc(), "register expected");
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00004263
Kristof Beyls2efb59a2013-02-14 14:46:12 +00004264 // The next token must either be a comma, a colon or a closing bracket.
Daniel Dunbar1d5e9542011-01-18 05:34:17 +00004265 const AsmToken &Tok = Parser.getTok();
Kristof Beyls2efb59a2013-02-14 14:46:12 +00004266 if (!Tok.is(AsmToken::Colon) && !Tok.is(AsmToken::Comma) &&
4267 !Tok.is(AsmToken::RBrac))
Jim Grosbachd3595712011-08-03 23:50:40 +00004268 return Error(Tok.getLoc(), "malformed memory operand");
Daniel Dunbar1d5e9542011-01-18 05:34:17 +00004269
Jim Grosbachd3595712011-08-03 23:50:40 +00004270 if (Tok.is(AsmToken::RBrac)) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004271 E = Tok.getEndLoc();
Sean Callanana83fd7d2010-01-19 20:27:46 +00004272 Parser.Lex(); // Eat right bracket token.
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00004273
Jim Grosbachd3595712011-08-03 23:50:40 +00004274 Operands.push_back(ARMOperand::CreateMem(BaseRegNum, 0, 0, ARM_AM::no_shift,
Jim Grosbacha95ec992011-10-11 17:29:55 +00004275 0, 0, false, S, E));
Jim Grosbach32ff5582010-11-29 23:18:01 +00004276
Jim Grosbach40700e02011-09-19 18:42:21 +00004277 // If there's a pre-indexing writeback marker, '!', just add it as a token
4278 // operand. It's rather odd, but syntactically valid.
4279 if (Parser.getTok().is(AsmToken::Exclaim)) {
4280 Operands.push_back(ARMOperand::CreateToken("!",Parser.getTok().getLoc()));
4281 Parser.Lex(); // Eat the '!'.
4282 }
4283
Jim Grosbachd3595712011-08-03 23:50:40 +00004284 return false;
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00004285 }
Daniel Dunbarf5164f42011-01-18 05:34:24 +00004286
Kristof Beyls2efb59a2013-02-14 14:46:12 +00004287 assert((Tok.is(AsmToken::Colon) || Tok.is(AsmToken::Comma)) &&
4288 "Lost colon or comma in memory operand?!");
4289 if (Tok.is(AsmToken::Comma)) {
4290 Parser.Lex(); // Eat the comma.
4291 }
Daniel Dunbarf5164f42011-01-18 05:34:24 +00004292
Jim Grosbacha95ec992011-10-11 17:29:55 +00004293 // If we have a ':', it's an alignment specifier.
4294 if (Parser.getTok().is(AsmToken::Colon)) {
4295 Parser.Lex(); // Eat the ':'.
4296 E = Parser.getTok().getLoc();
4297
4298 const MCExpr *Expr;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00004299 if (getParser().parseExpression(Expr))
Jim Grosbacha95ec992011-10-11 17:29:55 +00004300 return true;
4301
4302 // The expression has to be a constant. Memory references with relocations
4303 // don't come through here, as they use the <label> forms of the relevant
4304 // instructions.
4305 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr);
4306 if (!CE)
4307 return Error (E, "constant expression expected");
4308
4309 unsigned Align = 0;
4310 switch (CE->getValue()) {
4311 default:
Jim Grosbachcef98cd2011-12-19 18:31:43 +00004312 return Error(E,
4313 "alignment specifier must be 16, 32, 64, 128, or 256 bits");
4314 case 16: Align = 2; break;
4315 case 32: Align = 4; break;
Jim Grosbacha95ec992011-10-11 17:29:55 +00004316 case 64: Align = 8; break;
4317 case 128: Align = 16; break;
4318 case 256: Align = 32; break;
4319 }
4320
4321 // Now we should have the closing ']'
Jim Grosbacha95ec992011-10-11 17:29:55 +00004322 if (Parser.getTok().isNot(AsmToken::RBrac))
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004323 return Error(Parser.getTok().getLoc(), "']' expected");
4324 E = Parser.getTok().getEndLoc();
Jim Grosbacha95ec992011-10-11 17:29:55 +00004325 Parser.Lex(); // Eat right bracket token.
4326
4327 // Don't worry about range checking the value here. That's handled by
4328 // the is*() predicates.
4329 Operands.push_back(ARMOperand::CreateMem(BaseRegNum, 0, 0,
4330 ARM_AM::no_shift, 0, Align,
4331 false, S, E));
4332
4333 // If there's a pre-indexing writeback marker, '!', just add it as a token
4334 // operand.
4335 if (Parser.getTok().is(AsmToken::Exclaim)) {
4336 Operands.push_back(ARMOperand::CreateToken("!",Parser.getTok().getLoc()));
4337 Parser.Lex(); // Eat the '!'.
4338 }
4339
4340 return false;
4341 }
4342
4343 // If we have a '#', it's an immediate offset, else assume it's a register
Jim Grosbach8279c182011-11-15 22:14:41 +00004344 // offset. Be friendly and also accept a plain integer (without a leading
4345 // hash) for gas compatibility.
4346 if (Parser.getTok().is(AsmToken::Hash) ||
Jim Grosbachef70e9b2011-12-09 22:25:03 +00004347 Parser.getTok().is(AsmToken::Dollar) ||
Jim Grosbach8279c182011-11-15 22:14:41 +00004348 Parser.getTok().is(AsmToken::Integer)) {
Jim Grosbachef70e9b2011-12-09 22:25:03 +00004349 if (Parser.getTok().isNot(AsmToken::Integer))
Jim Grosbach8279c182011-11-15 22:14:41 +00004350 Parser.Lex(); // Eat the '#'.
Jim Grosbachd3595712011-08-03 23:50:40 +00004351 E = Parser.getTok().getLoc();
Daniel Dunbarf5164f42011-01-18 05:34:24 +00004352
Owen Anderson967674d2011-08-29 19:36:44 +00004353 bool isNegative = getParser().getTok().is(AsmToken::Minus);
Jim Grosbachd3595712011-08-03 23:50:40 +00004354 const MCExpr *Offset;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00004355 if (getParser().parseExpression(Offset))
Kevin Enderby8be42bd2009-10-30 22:55:57 +00004356 return true;
Jim Grosbachd3595712011-08-03 23:50:40 +00004357
4358 // The expression has to be a constant. Memory references with relocations
4359 // don't come through here, as they use the <label> forms of the relevant
4360 // instructions.
4361 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Offset);
4362 if (!CE)
4363 return Error (E, "constant expression expected");
4364
Owen Anderson967674d2011-08-29 19:36:44 +00004365 // If the constant was #-0, represent it as INT32_MIN.
4366 int32_t Val = CE->getValue();
4367 if (isNegative && Val == 0)
4368 CE = MCConstantExpr::Create(INT32_MIN, getContext());
4369
Jim Grosbachd3595712011-08-03 23:50:40 +00004370 // Now we should have the closing ']'
Jim Grosbachd3595712011-08-03 23:50:40 +00004371 if (Parser.getTok().isNot(AsmToken::RBrac))
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004372 return Error(Parser.getTok().getLoc(), "']' expected");
4373 E = Parser.getTok().getEndLoc();
Jim Grosbachd3595712011-08-03 23:50:40 +00004374 Parser.Lex(); // Eat right bracket token.
4375
4376 // Don't worry about range checking the value here. That's handled by
4377 // the is*() predicates.
4378 Operands.push_back(ARMOperand::CreateMem(BaseRegNum, CE, 0,
Jim Grosbacha95ec992011-10-11 17:29:55 +00004379 ARM_AM::no_shift, 0, 0,
4380 false, S, E));
Jim Grosbachd3595712011-08-03 23:50:40 +00004381
4382 // If there's a pre-indexing writeback marker, '!', just add it as a token
4383 // operand.
4384 if (Parser.getTok().is(AsmToken::Exclaim)) {
4385 Operands.push_back(ARMOperand::CreateToken("!",Parser.getTok().getLoc()));
4386 Parser.Lex(); // Eat the '!'.
4387 }
4388
4389 return false;
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00004390 }
Jim Grosbachd3595712011-08-03 23:50:40 +00004391
4392 // The register offset is optionally preceded by a '+' or '-'
4393 bool isNegative = false;
4394 if (Parser.getTok().is(AsmToken::Minus)) {
4395 isNegative = true;
4396 Parser.Lex(); // Eat the '-'.
4397 } else if (Parser.getTok().is(AsmToken::Plus)) {
4398 // Nothing to do.
4399 Parser.Lex(); // Eat the '+'.
4400 }
4401
4402 E = Parser.getTok().getLoc();
4403 int OffsetRegNum = tryParseRegister();
4404 if (OffsetRegNum == -1)
4405 return Error(E, "register expected");
4406
4407 // If there's a shift operator, handle it.
4408 ARM_AM::ShiftOpc ShiftType = ARM_AM::no_shift;
Jim Grosbach3d0b3a32011-08-05 22:03:36 +00004409 unsigned ShiftImm = 0;
Jim Grosbachd3595712011-08-03 23:50:40 +00004410 if (Parser.getTok().is(AsmToken::Comma)) {
4411 Parser.Lex(); // Eat the ','.
Jim Grosbach3d0b3a32011-08-05 22:03:36 +00004412 if (parseMemRegOffsetShift(ShiftType, ShiftImm))
Jim Grosbachd3595712011-08-03 23:50:40 +00004413 return true;
4414 }
4415
4416 // Now we should have the closing ']'
Jim Grosbachd3595712011-08-03 23:50:40 +00004417 if (Parser.getTok().isNot(AsmToken::RBrac))
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004418 return Error(Parser.getTok().getLoc(), "']' expected");
4419 E = Parser.getTok().getEndLoc();
Jim Grosbachd3595712011-08-03 23:50:40 +00004420 Parser.Lex(); // Eat right bracket token.
4421
4422 Operands.push_back(ARMOperand::CreateMem(BaseRegNum, 0, OffsetRegNum,
Jim Grosbacha95ec992011-10-11 17:29:55 +00004423 ShiftType, ShiftImm, 0, isNegative,
Jim Grosbachd3595712011-08-03 23:50:40 +00004424 S, E));
4425
Jim Grosbachc320c852011-08-05 21:28:30 +00004426 // If there's a pre-indexing writeback marker, '!', just add it as a token
4427 // operand.
4428 if (Parser.getTok().is(AsmToken::Exclaim)) {
4429 Operands.push_back(ARMOperand::CreateToken("!",Parser.getTok().getLoc()));
4430 Parser.Lex(); // Eat the '!'.
4431 }
Jim Grosbachd3595712011-08-03 23:50:40 +00004432
Kevin Enderby8be42bd2009-10-30 22:55:57 +00004433 return false;
4434}
4435
Jim Grosbachd3595712011-08-03 23:50:40 +00004436/// parseMemRegOffsetShift - one of these two:
Kevin Enderby8be42bd2009-10-30 22:55:57 +00004437/// ( lsl | lsr | asr | ror ) , # shift_amount
4438/// rrx
Jim Grosbachd3595712011-08-03 23:50:40 +00004439/// return true if it parses a shift otherwise it returns false.
4440bool ARMAsmParser::parseMemRegOffsetShift(ARM_AM::ShiftOpc &St,
4441 unsigned &Amount) {
4442 SMLoc Loc = Parser.getTok().getLoc();
Sean Callanan936b0d32010-01-19 21:44:56 +00004443 const AsmToken &Tok = Parser.getTok();
Kevin Enderby8be42bd2009-10-30 22:55:57 +00004444 if (Tok.isNot(AsmToken::Identifier))
4445 return true;
Benjamin Kramer92d89982010-07-14 22:38:02 +00004446 StringRef ShiftName = Tok.getString();
Jim Grosbach3b559ff2011-12-07 23:40:58 +00004447 if (ShiftName == "lsl" || ShiftName == "LSL" ||
4448 ShiftName == "asl" || ShiftName == "ASL")
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00004449 St = ARM_AM::lsl;
Kevin Enderby8be42bd2009-10-30 22:55:57 +00004450 else if (ShiftName == "lsr" || ShiftName == "LSR")
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00004451 St = ARM_AM::lsr;
Kevin Enderby8be42bd2009-10-30 22:55:57 +00004452 else if (ShiftName == "asr" || ShiftName == "ASR")
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00004453 St = ARM_AM::asr;
Kevin Enderby8be42bd2009-10-30 22:55:57 +00004454 else if (ShiftName == "ror" || ShiftName == "ROR")
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00004455 St = ARM_AM::ror;
Kevin Enderby8be42bd2009-10-30 22:55:57 +00004456 else if (ShiftName == "rrx" || ShiftName == "RRX")
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00004457 St = ARM_AM::rrx;
Kevin Enderby8be42bd2009-10-30 22:55:57 +00004458 else
Jim Grosbachd3595712011-08-03 23:50:40 +00004459 return Error(Loc, "illegal shift operator");
Sean Callanana83fd7d2010-01-19 20:27:46 +00004460 Parser.Lex(); // Eat shift type token.
Kevin Enderby8be42bd2009-10-30 22:55:57 +00004461
Jim Grosbachd3595712011-08-03 23:50:40 +00004462 // rrx stands alone.
4463 Amount = 0;
4464 if (St != ARM_AM::rrx) {
4465 Loc = Parser.getTok().getLoc();
4466 // A '#' and a shift amount.
4467 const AsmToken &HashTok = Parser.getTok();
Jim Grosbachef70e9b2011-12-09 22:25:03 +00004468 if (HashTok.isNot(AsmToken::Hash) &&
4469 HashTok.isNot(AsmToken::Dollar))
Jim Grosbachd3595712011-08-03 23:50:40 +00004470 return Error(HashTok.getLoc(), "'#' expected");
4471 Parser.Lex(); // Eat hash token.
Kevin Enderby8be42bd2009-10-30 22:55:57 +00004472
Jim Grosbachd3595712011-08-03 23:50:40 +00004473 const MCExpr *Expr;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00004474 if (getParser().parseExpression(Expr))
Jim Grosbachd3595712011-08-03 23:50:40 +00004475 return true;
4476 // Range check the immediate.
4477 // lsl, ror: 0 <= imm <= 31
4478 // lsr, asr: 0 <= imm <= 32
4479 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr);
4480 if (!CE)
4481 return Error(Loc, "shift amount must be an immediate");
4482 int64_t Imm = CE->getValue();
4483 if (Imm < 0 ||
4484 ((St == ARM_AM::lsl || St == ARM_AM::ror) && Imm > 31) ||
4485 ((St == ARM_AM::lsr || St == ARM_AM::asr) && Imm > 32))
4486 return Error(Loc, "immediate shift value out of range");
Tim Northover0c97e762012-09-22 11:18:12 +00004487 // If <ShiftTy> #0, turn it into a no_shift.
4488 if (Imm == 0)
4489 St = ARM_AM::lsl;
4490 // For consistency, treat lsr #32 and asr #32 as having immediate value 0.
4491 if (Imm == 32)
4492 Imm = 0;
Jim Grosbachd3595712011-08-03 23:50:40 +00004493 Amount = Imm;
4494 }
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00004495
4496 return false;
4497}
4498
Jim Grosbache7fbce72011-10-03 23:38:36 +00004499/// parseFPImm - A floating point immediate expression operand.
4500ARMAsmParser::OperandMatchResultTy ARMAsmParser::
4501parseFPImm(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Jim Grosbacha9d36fb2012-01-20 18:09:51 +00004502 // Anything that can accept a floating point constant as an operand
Jim Grosbachd2037eb2013-02-20 22:21:35 +00004503 // needs to go through here, as the regular parseExpression is
Jim Grosbacha9d36fb2012-01-20 18:09:51 +00004504 // integer only.
4505 //
4506 // This routine still creates a generic Immediate operand, containing
4507 // a bitcast of the 64-bit floating point value. The various operands
4508 // that accept floats can check whether the value is valid for them
4509 // via the standard is*() predicates.
4510
Jim Grosbache7fbce72011-10-03 23:38:36 +00004511 SMLoc S = Parser.getTok().getLoc();
4512
Jim Grosbachef70e9b2011-12-09 22:25:03 +00004513 if (Parser.getTok().isNot(AsmToken::Hash) &&
4514 Parser.getTok().isNot(AsmToken::Dollar))
Jim Grosbache7fbce72011-10-03 23:38:36 +00004515 return MatchOperand_NoMatch;
Jim Grosbach741cd732011-10-17 22:26:03 +00004516
4517 // Disambiguate the VMOV forms that can accept an FP immediate.
4518 // vmov.f32 <sreg>, #imm
4519 // vmov.f64 <dreg>, #imm
4520 // vmov.f32 <dreg>, #imm @ vector f32x2
4521 // vmov.f32 <qreg>, #imm @ vector f32x4
4522 //
4523 // There are also the NEON VMOV instructions which expect an
4524 // integer constant. Make sure we don't try to parse an FPImm
4525 // for these:
4526 // vmov.i{8|16|32|64} <dreg|qreg>, #imm
4527 ARMOperand *TyOp = static_cast<ARMOperand*>(Operands[2]);
4528 if (!TyOp->isToken() || (TyOp->getToken() != ".f32" &&
4529 TyOp->getToken() != ".f64"))
4530 return MatchOperand_NoMatch;
4531
Jim Grosbache7fbce72011-10-03 23:38:36 +00004532 Parser.Lex(); // Eat the '#'.
4533
4534 // Handle negation, as that still comes through as a separate token.
4535 bool isNegative = false;
4536 if (Parser.getTok().is(AsmToken::Minus)) {
4537 isNegative = true;
4538 Parser.Lex();
4539 }
4540 const AsmToken &Tok = Parser.getTok();
Jim Grosbach235c8d22012-01-19 02:47:30 +00004541 SMLoc Loc = Tok.getLoc();
Jim Grosbache7fbce72011-10-03 23:38:36 +00004542 if (Tok.is(AsmToken::Real)) {
Jim Grosbacha9d36fb2012-01-20 18:09:51 +00004543 APFloat RealVal(APFloat::IEEEsingle, Tok.getString());
Jim Grosbache7fbce72011-10-03 23:38:36 +00004544 uint64_t IntVal = RealVal.bitcastToAPInt().getZExtValue();
4545 // If we had a '-' in front, toggle the sign bit.
Jim Grosbacha9d36fb2012-01-20 18:09:51 +00004546 IntVal ^= (uint64_t)isNegative << 31;
Jim Grosbache7fbce72011-10-03 23:38:36 +00004547 Parser.Lex(); // Eat the token.
Jim Grosbacha9d36fb2012-01-20 18:09:51 +00004548 Operands.push_back(ARMOperand::CreateImm(
4549 MCConstantExpr::Create(IntVal, getContext()),
4550 S, Parser.getTok().getLoc()));
Jim Grosbache7fbce72011-10-03 23:38:36 +00004551 return MatchOperand_Success;
4552 }
Jim Grosbacha9d36fb2012-01-20 18:09:51 +00004553 // Also handle plain integers. Instructions which allow floating point
4554 // immediates also allow a raw encoded 8-bit value.
Jim Grosbache7fbce72011-10-03 23:38:36 +00004555 if (Tok.is(AsmToken::Integer)) {
4556 int64_t Val = Tok.getIntVal();
4557 Parser.Lex(); // Eat the token.
4558 if (Val > 255 || Val < 0) {
Jim Grosbach235c8d22012-01-19 02:47:30 +00004559 Error(Loc, "encoded floating point value out of range");
Jim Grosbache7fbce72011-10-03 23:38:36 +00004560 return MatchOperand_ParseFail;
4561 }
Jim Grosbacha9d36fb2012-01-20 18:09:51 +00004562 double RealVal = ARM_AM::getFPImmFloat(Val);
4563 Val = APFloat(APFloat::IEEEdouble, RealVal).bitcastToAPInt().getZExtValue();
4564 Operands.push_back(ARMOperand::CreateImm(
4565 MCConstantExpr::Create(Val, getContext()), S,
4566 Parser.getTok().getLoc()));
Jim Grosbache7fbce72011-10-03 23:38:36 +00004567 return MatchOperand_Success;
4568 }
4569
Jim Grosbach235c8d22012-01-19 02:47:30 +00004570 Error(Loc, "invalid floating point immediate");
Jim Grosbache7fbce72011-10-03 23:38:36 +00004571 return MatchOperand_ParseFail;
4572}
Jim Grosbacha9d36fb2012-01-20 18:09:51 +00004573
Kevin Enderby8be42bd2009-10-30 22:55:57 +00004574/// Parse a arm instruction operand. For now this parses the operand regardless
4575/// of the mnemonic.
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00004576bool ARMAsmParser::parseOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands,
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00004577 StringRef Mnemonic) {
Sean Callanan7ad0ad02010-04-02 22:27:05 +00004578 SMLoc S, E;
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00004579
4580 // Check if the current operand has a custom associated parser, if so, try to
4581 // custom parse the operand, or fallback to the general approach.
Jim Grosbach861e49c2011-02-12 01:34:40 +00004582 OperandMatchResultTy ResTy = MatchOperandParserImpl(Operands, Mnemonic);
4583 if (ResTy == MatchOperand_Success)
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00004584 return false;
Jim Grosbach861e49c2011-02-12 01:34:40 +00004585 // If there wasn't a custom match, try the generic matcher below. Otherwise,
4586 // there was a match, but an error occurred, in which case, just return that
4587 // the operand parsing failed.
4588 if (ResTy == MatchOperand_ParseFail)
4589 return true;
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00004590
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00004591 switch (getLexer().getKind()) {
Bill Wendlingee7f1f92010-11-06 21:42:12 +00004592 default:
4593 Error(Parser.getTok().getLoc(), "unexpected token in operand");
Bill Wendling2063b842010-11-18 23:43:05 +00004594 return true;
Jim Grosbachbb24c592011-07-13 18:49:30 +00004595 case AsmToken::Identifier: {
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00004596 if (!tryParseRegisterWithWriteBack(Operands))
Bill Wendling2063b842010-11-18 23:43:05 +00004597 return false;
Jim Grosbach0d6022d2011-07-26 20:41:24 +00004598 int Res = tryParseShiftRegister(Operands);
Jim Grosbachbb24c592011-07-13 18:49:30 +00004599 if (Res == 0) // success
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00004600 return false;
Jim Grosbachbb24c592011-07-13 18:49:30 +00004601 else if (Res == -1) // irrecoverable error
4602 return true;
Jim Grosbach4eda1452011-12-20 22:26:38 +00004603 // If this is VMRS, check for the apsr_nzcv operand.
Jim Grosbachd28888d2012-03-15 21:34:14 +00004604 if (Mnemonic == "vmrs" &&
4605 Parser.getTok().getString().equals_lower("apsr_nzcv")) {
Jim Grosbach4ab23b52011-10-03 21:12:43 +00004606 S = Parser.getTok().getLoc();
4607 Parser.Lex();
Jim Grosbachd28888d2012-03-15 21:34:14 +00004608 Operands.push_back(ARMOperand::CreateToken("APSR_nzcv", S));
Jim Grosbach4ab23b52011-10-03 21:12:43 +00004609 return false;
4610 }
Owen Andersonc3c7f5d2011-01-13 21:46:02 +00004611
4612 // Fall though for the Identifier case that is not a register or a
4613 // special name.
Jim Grosbachbb24c592011-07-13 18:49:30 +00004614 }
Jim Grosbach4e380352011-10-26 21:14:08 +00004615 case AsmToken::LParen: // parenthesized expressions like (_strcmp-4)
Kevin Enderbyb084be92011-01-13 20:32:36 +00004616 case AsmToken::Integer: // things like 1f and 2b as a branch targets
Jim Grosbach5c6b6342011-11-01 22:38:31 +00004617 case AsmToken::String: // quoted label names.
Kevin Enderbyb084be92011-01-13 20:32:36 +00004618 case AsmToken::Dot: { // . as a branch target
Kevin Enderby146dcf22009-10-15 20:48:48 +00004619 // This was not a register so parse other operands that start with an
4620 // identifier (like labels) as expressions and create them as immediates.
4621 const MCExpr *IdVal;
Sean Callanan7ad0ad02010-04-02 22:27:05 +00004622 S = Parser.getTok().getLoc();
Jim Grosbachd2037eb2013-02-20 22:21:35 +00004623 if (getParser().parseExpression(IdVal))
Bill Wendling2063b842010-11-18 23:43:05 +00004624 return true;
Sean Callanan7ad0ad02010-04-02 22:27:05 +00004625 E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
Bill Wendling2063b842010-11-18 23:43:05 +00004626 Operands.push_back(ARMOperand::CreateImm(IdVal, S, E));
4627 return false;
4628 }
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00004629 case AsmToken::LBrac:
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00004630 return parseMemory(Operands);
Kevin Enderbya2b99102009-10-09 21:12:28 +00004631 case AsmToken::LCurly:
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00004632 return parseRegisterList(Operands);
Jim Grosbachef70e9b2011-12-09 22:25:03 +00004633 case AsmToken::Dollar:
Owen Andersonf02d98d2011-08-29 17:17:09 +00004634 case AsmToken::Hash: {
Kevin Enderby3a80dac2009-10-13 23:33:38 +00004635 // #42 -> immediate.
Sean Callanan7ad0ad02010-04-02 22:27:05 +00004636 S = Parser.getTok().getLoc();
Sean Callanana83fd7d2010-01-19 20:27:46 +00004637 Parser.Lex();
Jim Grosbach003607f2012-04-16 21:18:46 +00004638
4639 if (Parser.getTok().isNot(AsmToken::Colon)) {
4640 bool isNegative = Parser.getTok().is(AsmToken::Minus);
4641 const MCExpr *ImmVal;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00004642 if (getParser().parseExpression(ImmVal))
Jim Grosbach003607f2012-04-16 21:18:46 +00004643 return true;
4644 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ImmVal);
4645 if (CE) {
4646 int32_t Val = CE->getValue();
4647 if (isNegative && Val == 0)
4648 ImmVal = MCConstantExpr::Create(INT32_MIN, getContext());
4649 }
4650 E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
4651 Operands.push_back(ARMOperand::CreateImm(ImmVal, S, E));
Jim Grosbach9be2d712013-02-23 00:52:09 +00004652
4653 // There can be a trailing '!' on operands that we want as a separate
4654 // '!' Token operand. Handle that here. For example, the compatibilty
4655 // alias for 'srsdb sp!, #imm' is 'srsdb #imm!'.
4656 if (Parser.getTok().is(AsmToken::Exclaim)) {
4657 Operands.push_back(ARMOperand::CreateToken(Parser.getTok().getString(),
4658 Parser.getTok().getLoc()));
4659 Parser.Lex(); // Eat exclaim token
4660 }
Jim Grosbach003607f2012-04-16 21:18:46 +00004661 return false;
Owen Andersonf02d98d2011-08-29 17:17:09 +00004662 }
Jim Grosbach003607f2012-04-16 21:18:46 +00004663 // w/ a ':' after the '#', it's just like a plain ':'.
4664 // FALLTHROUGH
Owen Andersonf02d98d2011-08-29 17:17:09 +00004665 }
Jason W Kim1f7bc072011-01-11 23:53:41 +00004666 case AsmToken::Colon: {
4667 // ":lower16:" and ":upper16:" expression prefixes
Evan Cheng965b3c72011-01-13 07:58:56 +00004668 // FIXME: Check it's an expression prefix,
4669 // e.g. (FOO - :lower16:BAR) isn't legal.
4670 ARMMCExpr::VariantKind RefKind;
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00004671 if (parsePrefix(RefKind))
Jason W Kim1f7bc072011-01-11 23:53:41 +00004672 return true;
4673
Evan Cheng965b3c72011-01-13 07:58:56 +00004674 const MCExpr *SubExprVal;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00004675 if (getParser().parseExpression(SubExprVal))
Jason W Kim1f7bc072011-01-11 23:53:41 +00004676 return true;
4677
Evan Cheng965b3c72011-01-13 07:58:56 +00004678 const MCExpr *ExprVal = ARMMCExpr::Create(RefKind, SubExprVal,
Jim Grosbach9659ed92012-09-21 00:26:53 +00004679 getContext());
Jason W Kim1f7bc072011-01-11 23:53:41 +00004680 E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
Evan Cheng965b3c72011-01-13 07:58:56 +00004681 Operands.push_back(ARMOperand::CreateImm(ExprVal, S, E));
Jason W Kim1f7bc072011-01-11 23:53:41 +00004682 return false;
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00004683 }
Jason W Kim1f7bc072011-01-11 23:53:41 +00004684 }
4685}
4686
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00004687// parsePrefix - Parse ARM 16-bit relocations expression prefix, i.e.
Evan Cheng965b3c72011-01-13 07:58:56 +00004688// :lower16: and :upper16:.
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00004689bool ARMAsmParser::parsePrefix(ARMMCExpr::VariantKind &RefKind) {
Evan Cheng965b3c72011-01-13 07:58:56 +00004690 RefKind = ARMMCExpr::VK_ARM_None;
Jason W Kim1f7bc072011-01-11 23:53:41 +00004691
4692 // :lower16: and :upper16: modifiers
Jason W Kim93229972011-01-13 00:27:00 +00004693 assert(getLexer().is(AsmToken::Colon) && "expected a :");
Jason W Kim1f7bc072011-01-11 23:53:41 +00004694 Parser.Lex(); // Eat ':'
4695
4696 if (getLexer().isNot(AsmToken::Identifier)) {
4697 Error(Parser.getTok().getLoc(), "expected prefix identifier in operand");
4698 return true;
4699 }
4700
4701 StringRef IDVal = Parser.getTok().getIdentifier();
4702 if (IDVal == "lower16") {
Evan Cheng965b3c72011-01-13 07:58:56 +00004703 RefKind = ARMMCExpr::VK_ARM_LO16;
Jason W Kim1f7bc072011-01-11 23:53:41 +00004704 } else if (IDVal == "upper16") {
Evan Cheng965b3c72011-01-13 07:58:56 +00004705 RefKind = ARMMCExpr::VK_ARM_HI16;
Jason W Kim1f7bc072011-01-11 23:53:41 +00004706 } else {
4707 Error(Parser.getTok().getLoc(), "unexpected prefix in operand");
4708 return true;
4709 }
4710 Parser.Lex();
4711
4712 if (getLexer().isNot(AsmToken::Colon)) {
4713 Error(Parser.getTok().getLoc(), "unexpected token after prefix");
4714 return true;
4715 }
4716 Parser.Lex(); // Eat the last ':'
4717 return false;
4718}
4719
Daniel Dunbar9d944b32011-01-11 15:59:50 +00004720/// \brief Given a mnemonic, split out possible predication code and carry
4721/// setting letters to form a canonical mnemonic and flags.
4722//
Daniel Dunbar876bb0182011-01-10 12:24:52 +00004723// FIXME: Would be nice to autogen this.
Jim Grosbach3d1eac82011-08-26 21:43:41 +00004724// FIXME: This is a bit of a maze of special cases.
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00004725StringRef ARMAsmParser::splitMnemonic(StringRef Mnemonic,
Jim Grosbach5cc3b4c2011-07-19 20:10:31 +00004726 unsigned &PredicationCode,
4727 bool &CarrySetting,
Jim Grosbach3d1eac82011-08-26 21:43:41 +00004728 unsigned &ProcessorIMod,
4729 StringRef &ITMask) {
Daniel Dunbar9d944b32011-01-11 15:59:50 +00004730 PredicationCode = ARMCC::AL;
4731 CarrySetting = false;
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00004732 ProcessorIMod = 0;
Daniel Dunbar9d944b32011-01-11 15:59:50 +00004733
Daniel Dunbar876bb0182011-01-10 12:24:52 +00004734 // Ignore some mnemonics we know aren't predicated forms.
Daniel Dunbar9d944b32011-01-11 15:59:50 +00004735 //
4736 // FIXME: Would be nice to autogen this.
Jim Grosbach5cc3b4c2011-07-19 20:10:31 +00004737 if ((Mnemonic == "movs" && isThumb()) ||
4738 Mnemonic == "teq" || Mnemonic == "vceq" || Mnemonic == "svc" ||
4739 Mnemonic == "mls" || Mnemonic == "smmls" || Mnemonic == "vcls" ||
4740 Mnemonic == "vmls" || Mnemonic == "vnmls" || Mnemonic == "vacge" ||
4741 Mnemonic == "vcge" || Mnemonic == "vclt" || Mnemonic == "vacgt" ||
4742 Mnemonic == "vcgt" || Mnemonic == "vcle" || Mnemonic == "smlal" ||
4743 Mnemonic == "umaal" || Mnemonic == "umlal" || Mnemonic == "vabal" ||
Jim Grosbache16acac2011-12-19 19:43:50 +00004744 Mnemonic == "vmlal" || Mnemonic == "vpadal" || Mnemonic == "vqdmlal" ||
4745 Mnemonic == "fmuls")
Daniel Dunbar9d944b32011-01-11 15:59:50 +00004746 return Mnemonic;
Daniel Dunbar75d26be2010-08-11 06:37:16 +00004747
Jim Grosbacha9a3f0a2011-07-11 17:09:57 +00004748 // First, split out any predication code. Ignore mnemonics we know aren't
4749 // predicated but do have a carry-set and so weren't caught above.
Jim Grosbach8d114902011-07-20 18:20:31 +00004750 if (Mnemonic != "adcs" && Mnemonic != "bics" && Mnemonic != "movs" &&
Jim Grosbach0c398b92011-07-27 21:58:11 +00004751 Mnemonic != "muls" && Mnemonic != "smlals" && Mnemonic != "smulls" &&
Jim Grosbach3636be32011-08-22 23:55:58 +00004752 Mnemonic != "umlals" && Mnemonic != "umulls" && Mnemonic != "lsls" &&
Jim Grosbachf6d5d602011-09-01 18:22:13 +00004753 Mnemonic != "sbcs" && Mnemonic != "rscs") {
Jim Grosbacha9a3f0a2011-07-11 17:09:57 +00004754 unsigned CC = StringSwitch<unsigned>(Mnemonic.substr(Mnemonic.size()-2))
4755 .Case("eq", ARMCC::EQ)
4756 .Case("ne", ARMCC::NE)
4757 .Case("hs", ARMCC::HS)
4758 .Case("cs", ARMCC::HS)
4759 .Case("lo", ARMCC::LO)
4760 .Case("cc", ARMCC::LO)
4761 .Case("mi", ARMCC::MI)
4762 .Case("pl", ARMCC::PL)
4763 .Case("vs", ARMCC::VS)
4764 .Case("vc", ARMCC::VC)
4765 .Case("hi", ARMCC::HI)
4766 .Case("ls", ARMCC::LS)
4767 .Case("ge", ARMCC::GE)
4768 .Case("lt", ARMCC::LT)
4769 .Case("gt", ARMCC::GT)
4770 .Case("le", ARMCC::LE)
4771 .Case("al", ARMCC::AL)
4772 .Default(~0U);
4773 if (CC != ~0U) {
4774 Mnemonic = Mnemonic.slice(0, Mnemonic.size() - 2);
4775 PredicationCode = CC;
4776 }
Bill Wendling193961b2010-10-29 23:50:21 +00004777 }
Daniel Dunbar188b47b2010-08-11 06:37:20 +00004778
Daniel Dunbar9d944b32011-01-11 15:59:50 +00004779 // Next, determine if we have a carry setting bit. We explicitly ignore all
4780 // the instructions we know end in 's'.
4781 if (Mnemonic.endswith("s") &&
Jim Grosbachd3e8e292011-08-17 22:49:09 +00004782 !(Mnemonic == "cps" || Mnemonic == "mls" ||
Jim Grosbach5cc3b4c2011-07-19 20:10:31 +00004783 Mnemonic == "mrs" || Mnemonic == "smmls" || Mnemonic == "vabs" ||
4784 Mnemonic == "vcls" || Mnemonic == "vmls" || Mnemonic == "vmrs" ||
4785 Mnemonic == "vnmls" || Mnemonic == "vqabs" || Mnemonic == "vrecps" ||
Jim Grosbach086d0132011-12-08 00:49:29 +00004786 Mnemonic == "vrsqrts" || Mnemonic == "srs" || Mnemonic == "flds" ||
Jim Grosbach54337b82011-12-10 00:01:02 +00004787 Mnemonic == "fmrs" || Mnemonic == "fsqrts" || Mnemonic == "fsubs" ||
Jim Grosbach92a939a2011-12-19 19:02:41 +00004788 Mnemonic == "fsts" || Mnemonic == "fcpys" || Mnemonic == "fdivs" ||
Jim Grosbachd74560b2012-03-15 20:48:18 +00004789 Mnemonic == "fmuls" || Mnemonic == "fcmps" || Mnemonic == "fcmpzs" ||
Evan Chengaca6c822012-04-11 00:13:00 +00004790 Mnemonic == "vfms" || Mnemonic == "vfnms" ||
Jim Grosbach51726e22011-07-29 20:26:09 +00004791 (Mnemonic == "movs" && isThumb()))) {
Daniel Dunbar9d944b32011-01-11 15:59:50 +00004792 Mnemonic = Mnemonic.slice(0, Mnemonic.size() - 1);
4793 CarrySetting = true;
4794 }
4795
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00004796 // The "cps" instruction can have a interrupt mode operand which is glued into
4797 // the mnemonic. Check if this is the case, split it and parse the imod op
4798 if (Mnemonic.startswith("cps")) {
4799 // Split out any imod code.
4800 unsigned IMod =
4801 StringSwitch<unsigned>(Mnemonic.substr(Mnemonic.size()-2, 2))
4802 .Case("ie", ARM_PROC::IE)
4803 .Case("id", ARM_PROC::ID)
4804 .Default(~0U);
4805 if (IMod != ~0U) {
4806 Mnemonic = Mnemonic.slice(0, Mnemonic.size()-2);
4807 ProcessorIMod = IMod;
4808 }
4809 }
4810
Jim Grosbach3d1eac82011-08-26 21:43:41 +00004811 // The "it" instruction has the condition mask on the end of the mnemonic.
4812 if (Mnemonic.startswith("it")) {
4813 ITMask = Mnemonic.slice(2, Mnemonic.size());
4814 Mnemonic = Mnemonic.slice(0, 2);
4815 }
4816
Daniel Dunbar9d944b32011-01-11 15:59:50 +00004817 return Mnemonic;
4818}
Daniel Dunbar5a384c82011-01-11 15:59:53 +00004819
4820/// \brief Given a canonical mnemonic, determine if the instruction ever allows
4821/// inclusion of carry set or predication code operands.
4822//
4823// FIXME: It would be nice to autogen this.
Bruno Cardoso Lopese6290cc2011-01-18 20:55:11 +00004824void ARMAsmParser::
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00004825getMnemonicAcceptInfo(StringRef Mnemonic, bool &CanAcceptCarrySet,
Bruno Cardoso Lopese6290cc2011-01-18 20:55:11 +00004826 bool &CanAcceptPredicationCode) {
Daniel Dunbar09264122011-01-11 19:06:29 +00004827 if (Mnemonic == "and" || Mnemonic == "lsl" || Mnemonic == "lsr" ||
4828 Mnemonic == "rrx" || Mnemonic == "ror" || Mnemonic == "sub" ||
Jim Grosbachd73c6452011-09-16 18:05:48 +00004829 Mnemonic == "add" || Mnemonic == "adc" ||
Daniel Dunbar09264122011-01-11 19:06:29 +00004830 Mnemonic == "mul" || Mnemonic == "bic" || Mnemonic == "asr" ||
Jim Grosbachfc545182011-09-19 23:31:02 +00004831 Mnemonic == "orr" || Mnemonic == "mvn" ||
Daniel Dunbar09264122011-01-11 19:06:29 +00004832 Mnemonic == "rsb" || Mnemonic == "rsc" || Mnemonic == "orn" ||
Jim Grosbachfc545182011-09-19 23:31:02 +00004833 Mnemonic == "sbc" || Mnemonic == "eor" || Mnemonic == "neg" ||
Evan Chengaca6c822012-04-11 00:13:00 +00004834 Mnemonic == "vfm" || Mnemonic == "vfnm" ||
Jim Grosbachd73c6452011-09-16 18:05:48 +00004835 (!isThumb() && (Mnemonic == "smull" || Mnemonic == "mov" ||
Jim Grosbachfc545182011-09-19 23:31:02 +00004836 Mnemonic == "mla" || Mnemonic == "smlal" ||
4837 Mnemonic == "umlal" || Mnemonic == "umull"))) {
Daniel Dunbar09264122011-01-11 19:06:29 +00004838 CanAcceptCarrySet = true;
Jim Grosbach6c45b752011-09-16 16:39:25 +00004839 } else
Daniel Dunbar09264122011-01-11 19:06:29 +00004840 CanAcceptCarrySet = false;
Daniel Dunbar5a384c82011-01-11 15:59:53 +00004841
Daniel Dunbar09264122011-01-11 19:06:29 +00004842 if (Mnemonic == "cbnz" || Mnemonic == "setend" || Mnemonic == "dmb" ||
4843 Mnemonic == "cps" || Mnemonic == "mcr2" || Mnemonic == "it" ||
4844 Mnemonic == "mcrr2" || Mnemonic == "cbz" || Mnemonic == "cdp2" ||
4845 Mnemonic == "trap" || Mnemonic == "mrc2" || Mnemonic == "mrrc2" ||
Jim Grosbach803898f2011-09-06 20:27:04 +00004846 Mnemonic == "dsb" || Mnemonic == "isb" || Mnemonic == "setend" ||
4847 (Mnemonic == "clrex" && !isThumb()) ||
Jim Grosbach25977222011-08-19 23:24:36 +00004848 (Mnemonic == "nop" && isThumbOne()) ||
Jim Grosbach93981412011-10-11 21:55:36 +00004849 ((Mnemonic == "pld" || Mnemonic == "pli" || Mnemonic == "pldw" ||
4850 Mnemonic == "ldc2" || Mnemonic == "ldc2l" ||
4851 Mnemonic == "stc2" || Mnemonic == "stc2l") && !isThumb()) ||
Jim Grosbachb9d4e372011-08-26 22:21:51 +00004852 ((Mnemonic.startswith("rfe") || Mnemonic.startswith("srs")) &&
4853 !isThumb()) ||
Jim Grosbachb908b7a2011-09-10 00:15:36 +00004854 Mnemonic.startswith("cps") || (Mnemonic == "movs" && isThumbOne())) {
Daniel Dunbar5a384c82011-01-11 15:59:53 +00004855 CanAcceptPredicationCode = false;
Jim Grosbach6c45b752011-09-16 16:39:25 +00004856 } else
Daniel Dunbar5a384c82011-01-11 15:59:53 +00004857 CanAcceptPredicationCode = true;
Bruno Cardoso Lopescf99dc72011-01-20 16:35:57 +00004858
Jim Grosbach6c45b752011-09-16 16:39:25 +00004859 if (isThumb()) {
Bruno Cardoso Lopescf99dc72011-01-20 16:35:57 +00004860 if (Mnemonic == "bkpt" || Mnemonic == "mcr" || Mnemonic == "mcrr" ||
Jim Grosbachb98ab912011-06-30 22:10:46 +00004861 Mnemonic == "mrc" || Mnemonic == "mrrc" || Mnemonic == "cdp")
Bruno Cardoso Lopescf99dc72011-01-20 16:35:57 +00004862 CanAcceptPredicationCode = false;
Jim Grosbach6c45b752011-09-16 16:39:25 +00004863 }
Daniel Dunbar876bb0182011-01-10 12:24:52 +00004864}
4865
Jim Grosbach7283da92011-08-16 21:12:37 +00004866bool ARMAsmParser::shouldOmitCCOutOperand(StringRef Mnemonic,
4867 SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Jim Grosbach1d3c1372011-09-01 00:28:52 +00004868 // FIXME: This is all horribly hacky. We really need a better way to deal
4869 // with optional operands like this in the matcher table.
Jim Grosbach7283da92011-08-16 21:12:37 +00004870
4871 // The 'mov' mnemonic is special. One variant has a cc_out operand, while
4872 // another does not. Specifically, the MOVW instruction does not. So we
4873 // special case it here and remove the defaulted (non-setting) cc_out
4874 // operand if that's the instruction we're trying to match.
4875 //
4876 // We do this as post-processing of the explicit operands rather than just
4877 // conditionally adding the cc_out in the first place because we need
4878 // to check the type of the parsed immediate operand.
Owen Andersond7791b92011-09-14 22:46:14 +00004879 if (Mnemonic == "mov" && Operands.size() > 4 && !isThumb() &&
Jim Grosbach7283da92011-08-16 21:12:37 +00004880 !static_cast<ARMOperand*>(Operands[4])->isARMSOImm() &&
4881 static_cast<ARMOperand*>(Operands[4])->isImm0_65535Expr() &&
4882 static_cast<ARMOperand*>(Operands[1])->getReg() == 0)
4883 return true;
Jim Grosbach58ffdcc2011-08-16 21:34:08 +00004884
4885 // Register-register 'add' for thumb does not have a cc_out operand
4886 // when there are only two register operands.
4887 if (isThumb() && Mnemonic == "add" && Operands.size() == 5 &&
4888 static_cast<ARMOperand*>(Operands[3])->isReg() &&
4889 static_cast<ARMOperand*>(Operands[4])->isReg() &&
4890 static_cast<ARMOperand*>(Operands[1])->getReg() == 0)
4891 return true;
Jim Grosbach0a0b3072011-08-24 21:22:15 +00004892 // Register-register 'add' for thumb does not have a cc_out operand
Jim Grosbach1d3c1372011-09-01 00:28:52 +00004893 // when it's an ADD Rdm, SP, {Rdm|#imm0_255} instruction. We do
4894 // have to check the immediate range here since Thumb2 has a variant
4895 // that can handle a different range and has a cc_out operand.
Jim Grosbachd0c435c2011-09-16 22:58:42 +00004896 if (((isThumb() && Mnemonic == "add") ||
4897 (isThumbTwo() && Mnemonic == "sub")) &&
4898 Operands.size() == 6 &&
Jim Grosbach0a0b3072011-08-24 21:22:15 +00004899 static_cast<ARMOperand*>(Operands[3])->isReg() &&
4900 static_cast<ARMOperand*>(Operands[4])->isReg() &&
4901 static_cast<ARMOperand*>(Operands[4])->getReg() == ARM::SP &&
Jim Grosbach1d3c1372011-09-01 00:28:52 +00004902 static_cast<ARMOperand*>(Operands[1])->getReg() == 0 &&
Jim Grosbachdf5a2442012-04-10 17:31:55 +00004903 ((Mnemonic == "add" &&static_cast<ARMOperand*>(Operands[5])->isReg()) ||
Jim Grosbach1d3c1372011-09-01 00:28:52 +00004904 static_cast<ARMOperand*>(Operands[5])->isImm0_1020s4()))
Jim Grosbach0a0b3072011-08-24 21:22:15 +00004905 return true;
Jim Grosbachd0c435c2011-09-16 22:58:42 +00004906 // For Thumb2, add/sub immediate does not have a cc_out operand for the
4907 // imm0_4095 variant. That's the least-preferred variant when
Jim Grosbach1d3c1372011-09-01 00:28:52 +00004908 // selecting via the generic "add" mnemonic, so to know that we
4909 // should remove the cc_out operand, we have to explicitly check that
4910 // it's not one of the other variants. Ugh.
Jim Grosbachd0c435c2011-09-16 22:58:42 +00004911 if (isThumbTwo() && (Mnemonic == "add" || Mnemonic == "sub") &&
4912 Operands.size() == 6 &&
Jim Grosbach1d3c1372011-09-01 00:28:52 +00004913 static_cast<ARMOperand*>(Operands[3])->isReg() &&
4914 static_cast<ARMOperand*>(Operands[4])->isReg() &&
4915 static_cast<ARMOperand*>(Operands[5])->isImm()) {
4916 // Nest conditions rather than one big 'if' statement for readability.
4917 //
4918 // If either register is a high reg, it's either one of the SP
4919 // variants (handled above) or a 32-bit encoding, so we just
Jim Grosbach78dcaed2012-01-21 00:07:56 +00004920 // check against T3. If the second register is the PC, this is an
4921 // alternate form of ADR, which uses encoding T4, so check for that too.
Jim Grosbach1d3c1372011-09-01 00:28:52 +00004922 if ((!isARMLowRegister(static_cast<ARMOperand*>(Operands[3])->getReg()) ||
4923 !isARMLowRegister(static_cast<ARMOperand*>(Operands[4])->getReg())) &&
Jim Grosbach78dcaed2012-01-21 00:07:56 +00004924 static_cast<ARMOperand*>(Operands[4])->getReg() != ARM::PC &&
Jim Grosbach1d3c1372011-09-01 00:28:52 +00004925 static_cast<ARMOperand*>(Operands[5])->isT2SOImm())
4926 return false;
4927 // If both registers are low, we're in an IT block, and the immediate is
4928 // in range, we should use encoding T1 instead, which has a cc_out.
4929 if (inITBlock() &&
Jim Grosbach9c8b9932011-09-14 21:00:40 +00004930 isARMLowRegister(static_cast<ARMOperand*>(Operands[3])->getReg()) &&
Jim Grosbach1d3c1372011-09-01 00:28:52 +00004931 isARMLowRegister(static_cast<ARMOperand*>(Operands[4])->getReg()) &&
4932 static_cast<ARMOperand*>(Operands[5])->isImm0_7())
4933 return false;
4934
4935 // Otherwise, we use encoding T4, which does not have a cc_out
4936 // operand.
4937 return true;
4938 }
4939
Jim Grosbach9c8b9932011-09-14 21:00:40 +00004940 // The thumb2 multiply instruction doesn't have a CCOut register, so
4941 // if we have a "mul" mnemonic in Thumb mode, check if we'll be able to
4942 // use the 16-bit encoding or not.
4943 if (isThumbTwo() && Mnemonic == "mul" && Operands.size() == 6 &&
4944 static_cast<ARMOperand*>(Operands[1])->getReg() == 0 &&
4945 static_cast<ARMOperand*>(Operands[3])->isReg() &&
4946 static_cast<ARMOperand*>(Operands[4])->isReg() &&
4947 static_cast<ARMOperand*>(Operands[5])->isReg() &&
4948 // If the registers aren't low regs, the destination reg isn't the
4949 // same as one of the source regs, or the cc_out operand is zero
4950 // outside of an IT block, we have to use the 32-bit encoding, so
4951 // remove the cc_out operand.
4952 (!isARMLowRegister(static_cast<ARMOperand*>(Operands[3])->getReg()) ||
4953 !isARMLowRegister(static_cast<ARMOperand*>(Operands[4])->getReg()) ||
Jim Grosbach6efa7b92011-11-15 19:29:45 +00004954 !isARMLowRegister(static_cast<ARMOperand*>(Operands[5])->getReg()) ||
Jim Grosbach9c8b9932011-09-14 21:00:40 +00004955 !inITBlock() ||
4956 (static_cast<ARMOperand*>(Operands[3])->getReg() !=
4957 static_cast<ARMOperand*>(Operands[5])->getReg() &&
4958 static_cast<ARMOperand*>(Operands[3])->getReg() !=
4959 static_cast<ARMOperand*>(Operands[4])->getReg())))
4960 return true;
4961
Jim Grosbachefa7e952011-11-15 19:55:16 +00004962 // Also check the 'mul' syntax variant that doesn't specify an explicit
4963 // destination register.
4964 if (isThumbTwo() && Mnemonic == "mul" && Operands.size() == 5 &&
4965 static_cast<ARMOperand*>(Operands[1])->getReg() == 0 &&
4966 static_cast<ARMOperand*>(Operands[3])->isReg() &&
4967 static_cast<ARMOperand*>(Operands[4])->isReg() &&
4968 // If the registers aren't low regs or the cc_out operand is zero
4969 // outside of an IT block, we have to use the 32-bit encoding, so
4970 // remove the cc_out operand.
4971 (!isARMLowRegister(static_cast<ARMOperand*>(Operands[3])->getReg()) ||
4972 !isARMLowRegister(static_cast<ARMOperand*>(Operands[4])->getReg()) ||
4973 !inITBlock()))
4974 return true;
4975
Jim Grosbach9c8b9932011-09-14 21:00:40 +00004976
Jim Grosbach1d3c1372011-09-01 00:28:52 +00004977
Jim Grosbach4b701af2011-08-24 21:42:27 +00004978 // Register-register 'add/sub' for thumb does not have a cc_out operand
4979 // when it's an ADD/SUB SP, #imm. Be lenient on count since there's also
4980 // the "add/sub SP, SP, #imm" version. If the follow-up operands aren't
4981 // right, this will result in better diagnostics (which operand is off)
4982 // anyway.
4983 if (isThumb() && (Mnemonic == "add" || Mnemonic == "sub") &&
4984 (Operands.size() == 5 || Operands.size() == 6) &&
Jim Grosbach0a0b3072011-08-24 21:22:15 +00004985 static_cast<ARMOperand*>(Operands[3])->isReg() &&
4986 static_cast<ARMOperand*>(Operands[3])->getReg() == ARM::SP &&
Jim Grosbachdf5a2442012-04-10 17:31:55 +00004987 static_cast<ARMOperand*>(Operands[1])->getReg() == 0 &&
4988 (static_cast<ARMOperand*>(Operands[4])->isImm() ||
4989 (Operands.size() == 6 &&
4990 static_cast<ARMOperand*>(Operands[5])->isImm())))
Jim Grosbach0a0b3072011-08-24 21:22:15 +00004991 return true;
Jim Grosbach58ffdcc2011-08-16 21:34:08 +00004992
Jim Grosbach7283da92011-08-16 21:12:37 +00004993 return false;
4994}
4995
Jim Grosbach12952fe2011-11-11 23:08:10 +00004996static bool isDataTypeToken(StringRef Tok) {
4997 return Tok == ".8" || Tok == ".16" || Tok == ".32" || Tok == ".64" ||
4998 Tok == ".i8" || Tok == ".i16" || Tok == ".i32" || Tok == ".i64" ||
4999 Tok == ".u8" || Tok == ".u16" || Tok == ".u32" || Tok == ".u64" ||
5000 Tok == ".s8" || Tok == ".s16" || Tok == ".s32" || Tok == ".s64" ||
5001 Tok == ".p8" || Tok == ".p16" || Tok == ".f32" || Tok == ".f64" ||
5002 Tok == ".f" || Tok == ".d";
5003}
5004
5005// FIXME: This bit should probably be handled via an explicit match class
5006// in the .td files that matches the suffix instead of having it be
5007// a literal string token the way it is now.
5008static bool doesIgnoreDataTypeSuffix(StringRef Mnemonic, StringRef DT) {
5009 return Mnemonic.startswith("vldm") || Mnemonic.startswith("vstm");
5010}
5011
Jim Grosbach8be2f652011-12-09 23:34:09 +00005012static void applyMnemonicAliases(StringRef &Mnemonic, unsigned Features);
Daniel Dunbar876bb0182011-01-10 12:24:52 +00005013/// Parse an arm instruction mnemonic followed by its operands.
Chad Rosierf0e87202012-10-25 20:41:34 +00005014bool ARMAsmParser::ParseInstruction(ParseInstructionInfo &Info, StringRef Name,
5015 SMLoc NameLoc,
Daniel Dunbar876bb0182011-01-10 12:24:52 +00005016 SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Jim Grosbach8be2f652011-12-09 23:34:09 +00005017 // Apply mnemonic aliases before doing anything else, as the destination
5018 // mnemnonic may include suffices and we want to handle them normally.
5019 // The generic tblgen'erated code does this later, at the start of
5020 // MatchInstructionImpl(), but that's too late for aliases that include
5021 // any sort of suffix.
5022 unsigned AvailableFeatures = getAvailableFeatures();
5023 applyMnemonicAliases(Name, AvailableFeatures);
5024
Jim Grosbachab5830e2011-12-14 02:16:11 +00005025 // First check for the ARM-specific .req directive.
5026 if (Parser.getTok().is(AsmToken::Identifier) &&
5027 Parser.getTok().getIdentifier() == ".req") {
5028 parseDirectiveReq(Name, NameLoc);
5029 // We always return 'error' for this, as we're done with this
5030 // statement and don't need to match the 'instruction."
5031 return true;
5032 }
5033
Daniel Dunbar876bb0182011-01-10 12:24:52 +00005034 // Create the leading tokens for the mnemonic, split by '.' characters.
5035 size_t Start = 0, Next = Name.find('.');
Jim Grosbach7c09e3c2011-07-19 19:13:28 +00005036 StringRef Mnemonic = Name.slice(Start, Next);
Daniel Dunbar876bb0182011-01-10 12:24:52 +00005037
Daniel Dunbar9d944b32011-01-11 15:59:50 +00005038 // Split out the predication code and carry setting flag from the mnemonic.
5039 unsigned PredicationCode;
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00005040 unsigned ProcessorIMod;
Daniel Dunbar9d944b32011-01-11 15:59:50 +00005041 bool CarrySetting;
Jim Grosbach3d1eac82011-08-26 21:43:41 +00005042 StringRef ITMask;
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00005043 Mnemonic = splitMnemonic(Mnemonic, PredicationCode, CarrySetting,
Jim Grosbach3d1eac82011-08-26 21:43:41 +00005044 ProcessorIMod, ITMask);
Daniel Dunbar876bb0182011-01-10 12:24:52 +00005045
Jim Grosbach1c171b12011-08-25 17:23:55 +00005046 // In Thumb1, only the branch (B) instruction can be predicated.
5047 if (isThumbOne() && PredicationCode != ARMCC::AL && Mnemonic != "b") {
Jim Grosbachd2037eb2013-02-20 22:21:35 +00005048 Parser.eatToEndOfStatement();
Jim Grosbach1c171b12011-08-25 17:23:55 +00005049 return Error(NameLoc, "conditional execution not supported in Thumb1");
5050 }
5051
Jim Grosbach7c09e3c2011-07-19 19:13:28 +00005052 Operands.push_back(ARMOperand::CreateToken(Mnemonic, NameLoc));
5053
Jim Grosbach3d1eac82011-08-26 21:43:41 +00005054 // Handle the IT instruction ITMask. Convert it to a bitmask. This
5055 // is the mask as it will be for the IT encoding if the conditional
5056 // encoding has a '1' as it's bit0 (i.e. 't' ==> '1'). In the case
5057 // where the conditional bit0 is zero, the instruction post-processing
5058 // will adjust the mask accordingly.
5059 if (Mnemonic == "it") {
Jim Grosbached16ec42011-08-29 22:24:09 +00005060 SMLoc Loc = SMLoc::getFromPointer(NameLoc.getPointer() + 2);
5061 if (ITMask.size() > 3) {
Jim Grosbachd2037eb2013-02-20 22:21:35 +00005062 Parser.eatToEndOfStatement();
Jim Grosbached16ec42011-08-29 22:24:09 +00005063 return Error(Loc, "too many conditions on IT instruction");
5064 }
Jim Grosbach3d1eac82011-08-26 21:43:41 +00005065 unsigned Mask = 8;
5066 for (unsigned i = ITMask.size(); i != 0; --i) {
5067 char pos = ITMask[i - 1];
5068 if (pos != 't' && pos != 'e') {
Jim Grosbachd2037eb2013-02-20 22:21:35 +00005069 Parser.eatToEndOfStatement();
Jim Grosbached16ec42011-08-29 22:24:09 +00005070 return Error(Loc, "illegal IT block condition mask '" + ITMask + "'");
Jim Grosbach3d1eac82011-08-26 21:43:41 +00005071 }
5072 Mask >>= 1;
5073 if (ITMask[i - 1] == 't')
5074 Mask |= 8;
5075 }
Jim Grosbached16ec42011-08-29 22:24:09 +00005076 Operands.push_back(ARMOperand::CreateITMask(Mask, Loc));
Jim Grosbach3d1eac82011-08-26 21:43:41 +00005077 }
5078
Jim Grosbach7c09e3c2011-07-19 19:13:28 +00005079 // FIXME: This is all a pretty gross hack. We should automatically handle
5080 // optional operands like this via tblgen.
Bill Wendling219dabd2010-11-21 10:56:05 +00005081
Daniel Dunbar5a384c82011-01-11 15:59:53 +00005082 // Next, add the CCOut and ConditionCode operands, if needed.
5083 //
5084 // For mnemonics which can ever incorporate a carry setting bit or predication
5085 // code, our matching model involves us always generating CCOut and
5086 // ConditionCode operands to match the mnemonic "as written" and then we let
5087 // the matcher deal with finding the right instruction or generating an
5088 // appropriate error.
5089 bool CanAcceptCarrySet, CanAcceptPredicationCode;
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00005090 getMnemonicAcceptInfo(Mnemonic, CanAcceptCarrySet, CanAcceptPredicationCode);
Daniel Dunbar5a384c82011-01-11 15:59:53 +00005091
Jim Grosbach03a8a162011-07-14 22:04:21 +00005092 // If we had a carry-set on an instruction that can't do that, issue an
5093 // error.
5094 if (!CanAcceptCarrySet && CarrySetting) {
Jim Grosbachd2037eb2013-02-20 22:21:35 +00005095 Parser.eatToEndOfStatement();
Jim Grosbach7c09e3c2011-07-19 19:13:28 +00005096 return Error(NameLoc, "instruction '" + Mnemonic +
Jim Grosbach03a8a162011-07-14 22:04:21 +00005097 "' can not set flags, but 's' suffix specified");
5098 }
Jim Grosbach0a547702011-07-22 17:44:50 +00005099 // If we had a predication code on an instruction that can't do that, issue an
5100 // error.
5101 if (!CanAcceptPredicationCode && PredicationCode != ARMCC::AL) {
Jim Grosbachd2037eb2013-02-20 22:21:35 +00005102 Parser.eatToEndOfStatement();
Jim Grosbach0a547702011-07-22 17:44:50 +00005103 return Error(NameLoc, "instruction '" + Mnemonic +
5104 "' is not predicable, but condition code specified");
5105 }
Jim Grosbach03a8a162011-07-14 22:04:21 +00005106
Daniel Dunbar5a384c82011-01-11 15:59:53 +00005107 // Add the carry setting operand, if necessary.
Jim Grosbached16ec42011-08-29 22:24:09 +00005108 if (CanAcceptCarrySet) {
5109 SMLoc Loc = SMLoc::getFromPointer(NameLoc.getPointer() + Mnemonic.size());
Daniel Dunbar5a384c82011-01-11 15:59:53 +00005110 Operands.push_back(ARMOperand::CreateCCOut(CarrySetting ? ARM::CPSR : 0,
Jim Grosbached16ec42011-08-29 22:24:09 +00005111 Loc));
5112 }
Daniel Dunbar5a384c82011-01-11 15:59:53 +00005113
5114 // Add the predication code operand, if necessary.
5115 if (CanAcceptPredicationCode) {
Jim Grosbached16ec42011-08-29 22:24:09 +00005116 SMLoc Loc = SMLoc::getFromPointer(NameLoc.getPointer() + Mnemonic.size() +
5117 CarrySetting);
Daniel Dunbar5a384c82011-01-11 15:59:53 +00005118 Operands.push_back(ARMOperand::CreateCondCode(
Jim Grosbached16ec42011-08-29 22:24:09 +00005119 ARMCC::CondCodes(PredicationCode), Loc));
Daniel Dunbar876bb0182011-01-10 12:24:52 +00005120 }
Daniel Dunbar188b47b2010-08-11 06:37:20 +00005121
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00005122 // Add the processor imod operand, if necessary.
5123 if (ProcessorIMod) {
5124 Operands.push_back(ARMOperand::CreateImm(
5125 MCConstantExpr::Create(ProcessorIMod, getContext()),
5126 NameLoc, NameLoc));
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00005127 }
5128
Daniel Dunbar188b47b2010-08-11 06:37:20 +00005129 // Add the remaining tokens in the mnemonic.
Daniel Dunbar75d26be2010-08-11 06:37:16 +00005130 while (Next != StringRef::npos) {
5131 Start = Next;
5132 Next = Name.find('.', Start + 1);
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00005133 StringRef ExtraToken = Name.slice(Start, Next);
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00005134
Jim Grosbach12952fe2011-11-11 23:08:10 +00005135 // Some NEON instructions have an optional datatype suffix that is
5136 // completely ignored. Check for that.
5137 if (isDataTypeToken(ExtraToken) &&
5138 doesIgnoreDataTypeSuffix(Mnemonic, ExtraToken))
5139 continue;
5140
Jim Grosbach39c6e1d2011-09-07 16:06:04 +00005141 if (ExtraToken != ".n") {
5142 SMLoc Loc = SMLoc::getFromPointer(NameLoc.getPointer() + Start);
5143 Operands.push_back(ARMOperand::CreateToken(ExtraToken, Loc));
5144 }
Daniel Dunbar75d26be2010-08-11 06:37:16 +00005145 }
5146
5147 // Read the remaining operands.
5148 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00005149 // Read the first operand.
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00005150 if (parseOperand(Operands, Mnemonic)) {
Jim Grosbachd2037eb2013-02-20 22:21:35 +00005151 Parser.eatToEndOfStatement();
Chris Lattnera2a9d162010-09-11 16:18:25 +00005152 return true;
5153 }
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00005154
5155 while (getLexer().is(AsmToken::Comma)) {
Sean Callanana83fd7d2010-01-19 20:27:46 +00005156 Parser.Lex(); // Eat the comma.
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00005157
5158 // Parse and remember the operand.
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00005159 if (parseOperand(Operands, Mnemonic)) {
Jim Grosbachd2037eb2013-02-20 22:21:35 +00005160 Parser.eatToEndOfStatement();
Chris Lattnera2a9d162010-09-11 16:18:25 +00005161 return true;
5162 }
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00005163 }
5164 }
Jim Grosbach624bcc72010-10-29 14:46:02 +00005165
Chris Lattnera2a9d162010-09-11 16:18:25 +00005166 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Jim Grosbachb8d9f512011-10-07 18:27:04 +00005167 SMLoc Loc = getLexer().getLoc();
Jim Grosbachd2037eb2013-02-20 22:21:35 +00005168 Parser.eatToEndOfStatement();
Jim Grosbachb8d9f512011-10-07 18:27:04 +00005169 return Error(Loc, "unexpected token in argument list");
Chris Lattnera2a9d162010-09-11 16:18:25 +00005170 }
Bill Wendlingee7f1f92010-11-06 21:42:12 +00005171
Chris Lattner91689c12010-09-08 05:10:46 +00005172 Parser.Lex(); // Consume the EndOfStatement
Jim Grosbach7c09e3c2011-07-19 19:13:28 +00005173
Jim Grosbach7283da92011-08-16 21:12:37 +00005174 // Some instructions, mostly Thumb, have forms for the same mnemonic that
5175 // do and don't have a cc_out optional-def operand. With some spot-checks
5176 // of the operand list, we can figure out which variant we're trying to
Jim Grosbach1d3c1372011-09-01 00:28:52 +00005177 // parse and adjust accordingly before actually matching. We shouldn't ever
5178 // try to remove a cc_out operand that was explicitly set on the the
5179 // mnemonic, of course (CarrySetting == true). Reason number #317 the
5180 // table driven matcher doesn't fit well with the ARM instruction set.
5181 if (!CarrySetting && shouldOmitCCOutOperand(Mnemonic, Operands)) {
Jim Grosbach7c09e3c2011-07-19 19:13:28 +00005182 ARMOperand *Op = static_cast<ARMOperand*>(Operands[1]);
5183 Operands.erase(Operands.begin() + 1);
5184 delete Op;
5185 }
5186
Jim Grosbacha03ab0e2011-07-28 21:57:55 +00005187 // ARM mode 'blx' need special handling, as the register operand version
5188 // is predicable, but the label operand version is not. So, we can't rely
5189 // on the Mnemonic based checking to correctly figure out when to put
Jim Grosbach6e5778f2011-10-07 23:24:09 +00005190 // a k_CondCode operand in the list. If we're trying to match the label
5191 // version, remove the k_CondCode operand here.
Jim Grosbacha03ab0e2011-07-28 21:57:55 +00005192 if (!isThumb() && Mnemonic == "blx" && Operands.size() == 3 &&
5193 static_cast<ARMOperand*>(Operands[2])->isImm()) {
5194 ARMOperand *Op = static_cast<ARMOperand*>(Operands[1]);
5195 Operands.erase(Operands.begin() + 1);
5196 delete Op;
5197 }
Jim Grosbach8cffa282011-08-11 23:51:13 +00005198
Weiming Zhao8f56f882012-11-16 21:55:34 +00005199 // Adjust operands of ldrexd/strexd to MCK_GPRPair.
5200 // ldrexd/strexd require even/odd GPR pair. To enforce this constraint,
5201 // a single GPRPair reg operand is used in the .td file to replace the two
5202 // GPRs. However, when parsing from asm, the two GRPs cannot be automatically
5203 // expressed as a GPRPair, so we have to manually merge them.
5204 // FIXME: We would really like to be able to tablegen'erate this.
5205 if (!isThumb() && Operands.size() > 4 &&
5206 (Mnemonic == "ldrexd" || Mnemonic == "strexd")) {
5207 bool isLoad = (Mnemonic == "ldrexd");
5208 unsigned Idx = isLoad ? 2 : 3;
5209 ARMOperand* Op1 = static_cast<ARMOperand*>(Operands[Idx]);
5210 ARMOperand* Op2 = static_cast<ARMOperand*>(Operands[Idx+1]);
5211
5212 const MCRegisterClass& MRC = MRI->getRegClass(ARM::GPRRegClassID);
5213 // Adjust only if Op1 and Op2 are GPRs.
5214 if (Op1->isReg() && Op2->isReg() && MRC.contains(Op1->getReg()) &&
5215 MRC.contains(Op2->getReg())) {
5216 unsigned Reg1 = Op1->getReg();
5217 unsigned Reg2 = Op2->getReg();
5218 unsigned Rt = MRI->getEncodingValue(Reg1);
5219 unsigned Rt2 = MRI->getEncodingValue(Reg2);
5220
5221 // Rt2 must be Rt + 1 and Rt must be even.
5222 if (Rt + 1 != Rt2 || (Rt & 1)) {
5223 Error(Op2->getStartLoc(), isLoad ?
5224 "destination operands must be sequential" :
5225 "source operands must be sequential");
5226 return true;
5227 }
5228 unsigned NewReg = MRI->getMatchingSuperReg(Reg1, ARM::gsub_0,
5229 &(MRI->getRegClass(ARM::GPRPairRegClassID)));
5230 Operands.erase(Operands.begin() + Idx, Operands.begin() + Idx + 2);
5231 Operands.insert(Operands.begin() + Idx, ARMOperand::CreateReg(
5232 NewReg, Op1->getStartLoc(), Op2->getEndLoc()));
5233 delete Op1;
5234 delete Op2;
5235 }
5236 }
5237
Chris Lattnerf29c0b62010-01-14 22:21:20 +00005238 return false;
Kevin Enderbyccab3172009-09-15 00:27:25 +00005239}
5240
Jim Grosbachedaa35a2011-07-26 18:25:39 +00005241// Validate context-sensitive operand constraints.
Jim Grosbach169b2be2011-08-23 18:13:04 +00005242
5243// return 'true' if register list contains non-low GPR registers,
5244// 'false' otherwise. If Reg is in the register list or is HiReg, set
5245// 'containsReg' to true.
5246static bool checkLowRegisterList(MCInst Inst, unsigned OpNo, unsigned Reg,
5247 unsigned HiReg, bool &containsReg) {
5248 containsReg = false;
5249 for (unsigned i = OpNo; i < Inst.getNumOperands(); ++i) {
5250 unsigned OpReg = Inst.getOperand(i).getReg();
5251 if (OpReg == Reg)
5252 containsReg = true;
5253 // Anything other than a low register isn't legal here.
5254 if (!isARMLowRegister(OpReg) && (!HiReg || OpReg != HiReg))
5255 return true;
5256 }
5257 return false;
5258}
5259
Jim Grosbacha31f2232011-09-07 18:05:34 +00005260// Check if the specified regisgter is in the register list of the inst,
5261// starting at the indicated operand number.
5262static bool listContainsReg(MCInst &Inst, unsigned OpNo, unsigned Reg) {
5263 for (unsigned i = OpNo; i < Inst.getNumOperands(); ++i) {
5264 unsigned OpReg = Inst.getOperand(i).getReg();
5265 if (OpReg == Reg)
5266 return true;
5267 }
5268 return false;
5269}
5270
Jim Grosbached16ec42011-08-29 22:24:09 +00005271// FIXME: We would really prefer to have MCInstrInfo (the wrapper around
5272// the ARMInsts array) instead. Getting that here requires awkward
5273// API changes, though. Better way?
5274namespace llvm {
Benjamin Kramer0d6d0982011-10-22 16:50:00 +00005275extern const MCInstrDesc ARMInsts[];
Jim Grosbached16ec42011-08-29 22:24:09 +00005276}
Benjamin Kramer0d6d0982011-10-22 16:50:00 +00005277static const MCInstrDesc &getInstDesc(unsigned Opcode) {
Jim Grosbached16ec42011-08-29 22:24:09 +00005278 return ARMInsts[Opcode];
5279}
5280
Jim Grosbachedaa35a2011-07-26 18:25:39 +00005281// FIXME: We would really like to be able to tablegen'erate this.
5282bool ARMAsmParser::
5283validateInstruction(MCInst &Inst,
5284 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Benjamin Kramer0d6d0982011-10-22 16:50:00 +00005285 const MCInstrDesc &MCID = getInstDesc(Inst.getOpcode());
Jim Grosbached16ec42011-08-29 22:24:09 +00005286 SMLoc Loc = Operands[0]->getStartLoc();
5287 // Check the IT block state first.
Jim Grosbach82f76d12012-01-25 19:52:01 +00005288 // NOTE: BKPT instruction has the interesting property of being
5289 // allowed in IT blocks, but not being predicable. It just always
Owen Anderson44ae2da2011-09-13 17:59:19 +00005290 // executes.
Jim Grosbach82f76d12012-01-25 19:52:01 +00005291 if (inITBlock() && Inst.getOpcode() != ARM::tBKPT &&
5292 Inst.getOpcode() != ARM::BKPT) {
Jim Grosbached16ec42011-08-29 22:24:09 +00005293 unsigned bit = 1;
5294 if (ITState.FirstCond)
5295 ITState.FirstCond = false;
5296 else
Jim Grosbacha0d34d32011-09-02 23:22:08 +00005297 bit = (ITState.Mask >> (5 - ITState.CurPosition)) & 1;
Jim Grosbached16ec42011-08-29 22:24:09 +00005298 // The instruction must be predicable.
5299 if (!MCID.isPredicable())
5300 return Error(Loc, "instructions in IT block must be predicable");
5301 unsigned Cond = Inst.getOperand(MCID.findFirstPredOperandIdx()).getImm();
5302 unsigned ITCond = bit ? ITState.Cond :
5303 ARMCC::getOppositeCondition(ITState.Cond);
5304 if (Cond != ITCond) {
5305 // Find the condition code Operand to get its SMLoc information.
5306 SMLoc CondLoc;
5307 for (unsigned i = 1; i < Operands.size(); ++i)
5308 if (static_cast<ARMOperand*>(Operands[i])->isCondCode())
5309 CondLoc = Operands[i]->getStartLoc();
5310 return Error(CondLoc, "incorrect condition in IT block; got '" +
5311 StringRef(ARMCondCodeToString(ARMCC::CondCodes(Cond))) +
5312 "', but expected '" +
5313 ARMCondCodeToString(ARMCC::CondCodes(ITCond)) + "'");
5314 }
Jim Grosbachc61fc8f2011-08-31 18:29:05 +00005315 // Check for non-'al' condition codes outside of the IT block.
Jim Grosbached16ec42011-08-29 22:24:09 +00005316 } else if (isThumbTwo() && MCID.isPredicable() &&
5317 Inst.getOperand(MCID.findFirstPredOperandIdx()).getImm() !=
Owen Anderson29cfe6c2011-09-09 21:48:23 +00005318 ARMCC::AL && Inst.getOpcode() != ARM::tB &&
5319 Inst.getOpcode() != ARM::t2B)
Jim Grosbached16ec42011-08-29 22:24:09 +00005320 return Error(Loc, "predicated instructions must be in IT block");
5321
Jim Grosbachedaa35a2011-07-26 18:25:39 +00005322 switch (Inst.getOpcode()) {
Jim Grosbach5b96b802011-08-10 20:29:19 +00005323 case ARM::LDRD:
5324 case ARM::LDRD_PRE:
Weiming Zhao8f56f882012-11-16 21:55:34 +00005325 case ARM::LDRD_POST: {
Jim Grosbachedaa35a2011-07-26 18:25:39 +00005326 // Rt2 must be Rt + 1.
Eric Christopher6ac277c2012-08-09 22:10:21 +00005327 unsigned Rt = MRI->getEncodingValue(Inst.getOperand(0).getReg());
5328 unsigned Rt2 = MRI->getEncodingValue(Inst.getOperand(1).getReg());
Jim Grosbachedaa35a2011-07-26 18:25:39 +00005329 if (Rt2 != Rt + 1)
5330 return Error(Operands[3]->getStartLoc(),
5331 "destination operands must be sequential");
5332 return false;
5333 }
Jim Grosbacheb09f492011-08-11 20:28:23 +00005334 case ARM::STRD: {
5335 // Rt2 must be Rt + 1.
Eric Christopher6ac277c2012-08-09 22:10:21 +00005336 unsigned Rt = MRI->getEncodingValue(Inst.getOperand(0).getReg());
5337 unsigned Rt2 = MRI->getEncodingValue(Inst.getOperand(1).getReg());
Jim Grosbacheb09f492011-08-11 20:28:23 +00005338 if (Rt2 != Rt + 1)
5339 return Error(Operands[3]->getStartLoc(),
5340 "source operands must be sequential");
5341 return false;
5342 }
Jim Grosbachf7164b22011-08-10 20:49:18 +00005343 case ARM::STRD_PRE:
Weiming Zhao8f56f882012-11-16 21:55:34 +00005344 case ARM::STRD_POST: {
Jim Grosbachedaa35a2011-07-26 18:25:39 +00005345 // Rt2 must be Rt + 1.
Eric Christopher6ac277c2012-08-09 22:10:21 +00005346 unsigned Rt = MRI->getEncodingValue(Inst.getOperand(1).getReg());
5347 unsigned Rt2 = MRI->getEncodingValue(Inst.getOperand(2).getReg());
Jim Grosbachedaa35a2011-07-26 18:25:39 +00005348 if (Rt2 != Rt + 1)
Jim Grosbacheb09f492011-08-11 20:28:23 +00005349 return Error(Operands[3]->getStartLoc(),
Jim Grosbachedaa35a2011-07-26 18:25:39 +00005350 "source operands must be sequential");
5351 return false;
5352 }
Jim Grosbach03f56d92011-07-27 21:09:25 +00005353 case ARM::SBFX:
5354 case ARM::UBFX: {
5355 // width must be in range [1, 32-lsb]
5356 unsigned lsb = Inst.getOperand(2).getImm();
5357 unsigned widthm1 = Inst.getOperand(3).getImm();
5358 if (widthm1 >= 32 - lsb)
5359 return Error(Operands[5]->getStartLoc(),
5360 "bitfield width must be in range [1,32-lsb]");
Jim Grosbach64610e52011-08-16 21:42:31 +00005361 return false;
Jim Grosbach03f56d92011-07-27 21:09:25 +00005362 }
Jim Grosbach90103cc2011-08-18 21:50:53 +00005363 case ARM::tLDMIA: {
Jim Grosbacha31f2232011-09-07 18:05:34 +00005364 // If we're parsing Thumb2, the .w variant is available and handles
5365 // most cases that are normally illegal for a Thumb1 LDM
5366 // instruction. We'll make the transformation in processInstruction()
5367 // if necessary.
5368 //
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00005369 // Thumb LDM instructions are writeback iff the base register is not
Jim Grosbach90103cc2011-08-18 21:50:53 +00005370 // in the register list.
5371 unsigned Rn = Inst.getOperand(0).getReg();
Jim Grosbach139acd22011-08-22 23:01:07 +00005372 bool hasWritebackToken =
5373 (static_cast<ARMOperand*>(Operands[3])->isToken() &&
5374 static_cast<ARMOperand*>(Operands[3])->getToken() == "!");
Jim Grosbach169b2be2011-08-23 18:13:04 +00005375 bool listContainsBase;
Jim Grosbacha31f2232011-09-07 18:05:34 +00005376 if (checkLowRegisterList(Inst, 3, Rn, 0, listContainsBase) && !isThumbTwo())
Jim Grosbach169b2be2011-08-23 18:13:04 +00005377 return Error(Operands[3 + hasWritebackToken]->getStartLoc(),
5378 "registers must be in range r0-r7");
Jim Grosbach90103cc2011-08-18 21:50:53 +00005379 // If we should have writeback, then there should be a '!' token.
Jim Grosbacha31f2232011-09-07 18:05:34 +00005380 if (!listContainsBase && !hasWritebackToken && !isThumbTwo())
Jim Grosbach90103cc2011-08-18 21:50:53 +00005381 return Error(Operands[2]->getStartLoc(),
5382 "writeback operator '!' expected");
Jim Grosbacha31f2232011-09-07 18:05:34 +00005383 // If we should not have writeback, there must not be a '!'. This is
5384 // true even for the 32-bit wide encodings.
Jim Grosbach169b2be2011-08-23 18:13:04 +00005385 if (listContainsBase && hasWritebackToken)
Jim Grosbach139acd22011-08-22 23:01:07 +00005386 return Error(Operands[3]->getStartLoc(),
5387 "writeback operator '!' not allowed when base register "
5388 "in register list");
Jim Grosbach90103cc2011-08-18 21:50:53 +00005389
5390 break;
5391 }
Jim Grosbacha31f2232011-09-07 18:05:34 +00005392 case ARM::t2LDMIA_UPD: {
5393 if (listContainsReg(Inst, 3, Inst.getOperand(0).getReg()))
5394 return Error(Operands[4]->getStartLoc(),
5395 "writeback operator '!' not allowed when base register "
5396 "in register list");
5397 break;
5398 }
Chad Rosier8513ffb2012-08-30 23:20:38 +00005399 case ARM::tMUL: {
5400 // The second source operand must be the same register as the destination
5401 // operand.
Chad Rosier9d1fc362012-08-31 17:24:10 +00005402 //
5403 // In this case, we must directly check the parsed operands because the
5404 // cvtThumbMultiply() function is written in such a way that it guarantees
5405 // this first statement is always true for the new Inst. Essentially, the
5406 // destination is unconditionally copied into the second source operand
5407 // without checking to see if it matches what we actually parsed.
Chad Rosier8513ffb2012-08-30 23:20:38 +00005408 if (Operands.size() == 6 &&
5409 (((ARMOperand*)Operands[3])->getReg() !=
5410 ((ARMOperand*)Operands[5])->getReg()) &&
5411 (((ARMOperand*)Operands[3])->getReg() !=
5412 ((ARMOperand*)Operands[4])->getReg())) {
Chad Rosierdb482ef2012-08-30 23:22:05 +00005413 return Error(Operands[3]->getStartLoc(),
5414 "destination register must match source register");
Chad Rosier8513ffb2012-08-30 23:20:38 +00005415 }
5416 break;
5417 }
Jim Grosbach9bded9d2011-11-10 23:17:11 +00005418 // Like for ldm/stm, push and pop have hi-reg handling version in Thumb2,
5419 // so only issue a diagnostic for thumb1. The instructions will be
5420 // switched to the t2 encodings in processInstruction() if necessary.
Jim Grosbach38c59fc2011-08-22 23:17:34 +00005421 case ARM::tPOP: {
Jim Grosbach169b2be2011-08-23 18:13:04 +00005422 bool listContainsBase;
Jim Grosbach9bded9d2011-11-10 23:17:11 +00005423 if (checkLowRegisterList(Inst, 2, 0, ARM::PC, listContainsBase) &&
5424 !isThumbTwo())
Jim Grosbach169b2be2011-08-23 18:13:04 +00005425 return Error(Operands[2]->getStartLoc(),
5426 "registers must be in range r0-r7 or pc");
Jim Grosbach38c59fc2011-08-22 23:17:34 +00005427 break;
5428 }
5429 case ARM::tPUSH: {
Jim Grosbach169b2be2011-08-23 18:13:04 +00005430 bool listContainsBase;
Jim Grosbach9bded9d2011-11-10 23:17:11 +00005431 if (checkLowRegisterList(Inst, 2, 0, ARM::LR, listContainsBase) &&
5432 !isThumbTwo())
Jim Grosbach169b2be2011-08-23 18:13:04 +00005433 return Error(Operands[2]->getStartLoc(),
5434 "registers must be in range r0-r7 or lr");
Jim Grosbach38c59fc2011-08-22 23:17:34 +00005435 break;
5436 }
Jim Grosbachd80d1692011-08-23 18:15:37 +00005437 case ARM::tSTMIA_UPD: {
5438 bool listContainsBase;
Jim Grosbach099c9762011-09-16 20:50:13 +00005439 if (checkLowRegisterList(Inst, 4, 0, 0, listContainsBase) && !isThumbTwo())
Jim Grosbachd80d1692011-08-23 18:15:37 +00005440 return Error(Operands[4]->getStartLoc(),
5441 "registers must be in range r0-r7");
5442 break;
5443 }
Jim Grosbachc6f32b32012-04-27 23:51:36 +00005444 case ARM::tADDrSP: {
5445 // If the non-SP source operand and the destination operand are not the
5446 // same, we need thumb2 (for the wide encoding), or we have an error.
5447 if (!isThumbTwo() &&
5448 Inst.getOperand(0).getReg() != Inst.getOperand(2).getReg()) {
5449 return Error(Operands[4]->getStartLoc(),
5450 "source register must be the same as destination");
5451 }
5452 break;
5453 }
Jim Grosbachedaa35a2011-07-26 18:25:39 +00005454 }
5455
5456 return false;
5457}
5458
Jim Grosbach1a747242012-01-23 23:45:44 +00005459static unsigned getRealVSTOpcode(unsigned Opc, unsigned &Spacing) {
Jim Grosbacheb538222011-12-02 22:34:51 +00005460 switch(Opc) {
Craig Toppere55c5562012-02-07 02:50:20 +00005461 default: llvm_unreachable("unexpected opcode!");
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00005462 // VST1LN
Jim Grosbach1e946a42012-01-24 00:43:12 +00005463 case ARM::VST1LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VST1LNd8_UPD;
5464 case ARM::VST1LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VST1LNd16_UPD;
5465 case ARM::VST1LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VST1LNd32_UPD;
5466 case ARM::VST1LNdWB_register_Asm_8: Spacing = 1; return ARM::VST1LNd8_UPD;
5467 case ARM::VST1LNdWB_register_Asm_16: Spacing = 1; return ARM::VST1LNd16_UPD;
5468 case ARM::VST1LNdWB_register_Asm_32: Spacing = 1; return ARM::VST1LNd32_UPD;
5469 case ARM::VST1LNdAsm_8: Spacing = 1; return ARM::VST1LNd8;
5470 case ARM::VST1LNdAsm_16: Spacing = 1; return ARM::VST1LNd16;
5471 case ARM::VST1LNdAsm_32: Spacing = 1; return ARM::VST1LNd32;
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00005472
5473 // VST2LN
Jim Grosbach1e946a42012-01-24 00:43:12 +00005474 case ARM::VST2LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VST2LNd8_UPD;
5475 case ARM::VST2LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VST2LNd16_UPD;
5476 case ARM::VST2LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VST2LNd32_UPD;
5477 case ARM::VST2LNqWB_fixed_Asm_16: Spacing = 2; return ARM::VST2LNq16_UPD;
5478 case ARM::VST2LNqWB_fixed_Asm_32: Spacing = 2; return ARM::VST2LNq32_UPD;
Jim Grosbach2c590522011-12-20 20:46:29 +00005479
Jim Grosbach1e946a42012-01-24 00:43:12 +00005480 case ARM::VST2LNdWB_register_Asm_8: Spacing = 1; return ARM::VST2LNd8_UPD;
5481 case ARM::VST2LNdWB_register_Asm_16: Spacing = 1; return ARM::VST2LNd16_UPD;
5482 case ARM::VST2LNdWB_register_Asm_32: Spacing = 1; return ARM::VST2LNd32_UPD;
5483 case ARM::VST2LNqWB_register_Asm_16: Spacing = 2; return ARM::VST2LNq16_UPD;
5484 case ARM::VST2LNqWB_register_Asm_32: Spacing = 2; return ARM::VST2LNq32_UPD;
Jim Grosbach2c590522011-12-20 20:46:29 +00005485
Jim Grosbach1e946a42012-01-24 00:43:12 +00005486 case ARM::VST2LNdAsm_8: Spacing = 1; return ARM::VST2LNd8;
5487 case ARM::VST2LNdAsm_16: Spacing = 1; return ARM::VST2LNd16;
5488 case ARM::VST2LNdAsm_32: Spacing = 1; return ARM::VST2LNd32;
5489 case ARM::VST2LNqAsm_16: Spacing = 2; return ARM::VST2LNq16;
5490 case ARM::VST2LNqAsm_32: Spacing = 2; return ARM::VST2LNq32;
Jim Grosbach1a747242012-01-23 23:45:44 +00005491
Jim Grosbachd3d36d92012-01-24 00:07:41 +00005492 // VST3LN
Jim Grosbach1e946a42012-01-24 00:43:12 +00005493 case ARM::VST3LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VST3LNd8_UPD;
5494 case ARM::VST3LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VST3LNd16_UPD;
5495 case ARM::VST3LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VST3LNd32_UPD;
5496 case ARM::VST3LNqWB_fixed_Asm_16: Spacing = 1; return ARM::VST3LNq16_UPD;
5497 case ARM::VST3LNqWB_fixed_Asm_32: Spacing = 2; return ARM::VST3LNq32_UPD;
5498 case ARM::VST3LNdWB_register_Asm_8: Spacing = 1; return ARM::VST3LNd8_UPD;
5499 case ARM::VST3LNdWB_register_Asm_16: Spacing = 1; return ARM::VST3LNd16_UPD;
5500 case ARM::VST3LNdWB_register_Asm_32: Spacing = 1; return ARM::VST3LNd32_UPD;
5501 case ARM::VST3LNqWB_register_Asm_16: Spacing = 2; return ARM::VST3LNq16_UPD;
5502 case ARM::VST3LNqWB_register_Asm_32: Spacing = 2; return ARM::VST3LNq32_UPD;
5503 case ARM::VST3LNdAsm_8: Spacing = 1; return ARM::VST3LNd8;
5504 case ARM::VST3LNdAsm_16: Spacing = 1; return ARM::VST3LNd16;
5505 case ARM::VST3LNdAsm_32: Spacing = 1; return ARM::VST3LNd32;
5506 case ARM::VST3LNqAsm_16: Spacing = 2; return ARM::VST3LNq16;
5507 case ARM::VST3LNqAsm_32: Spacing = 2; return ARM::VST3LNq32;
Jim Grosbachd3d36d92012-01-24 00:07:41 +00005508
Jim Grosbach1a747242012-01-23 23:45:44 +00005509 // VST3
Jim Grosbach1e946a42012-01-24 00:43:12 +00005510 case ARM::VST3dWB_fixed_Asm_8: Spacing = 1; return ARM::VST3d8_UPD;
5511 case ARM::VST3dWB_fixed_Asm_16: Spacing = 1; return ARM::VST3d16_UPD;
5512 case ARM::VST3dWB_fixed_Asm_32: Spacing = 1; return ARM::VST3d32_UPD;
5513 case ARM::VST3qWB_fixed_Asm_8: Spacing = 2; return ARM::VST3q8_UPD;
5514 case ARM::VST3qWB_fixed_Asm_16: Spacing = 2; return ARM::VST3q16_UPD;
5515 case ARM::VST3qWB_fixed_Asm_32: Spacing = 2; return ARM::VST3q32_UPD;
5516 case ARM::VST3dWB_register_Asm_8: Spacing = 1; return ARM::VST3d8_UPD;
5517 case ARM::VST3dWB_register_Asm_16: Spacing = 1; return ARM::VST3d16_UPD;
5518 case ARM::VST3dWB_register_Asm_32: Spacing = 1; return ARM::VST3d32_UPD;
5519 case ARM::VST3qWB_register_Asm_8: Spacing = 2; return ARM::VST3q8_UPD;
5520 case ARM::VST3qWB_register_Asm_16: Spacing = 2; return ARM::VST3q16_UPD;
5521 case ARM::VST3qWB_register_Asm_32: Spacing = 2; return ARM::VST3q32_UPD;
5522 case ARM::VST3dAsm_8: Spacing = 1; return ARM::VST3d8;
5523 case ARM::VST3dAsm_16: Spacing = 1; return ARM::VST3d16;
5524 case ARM::VST3dAsm_32: Spacing = 1; return ARM::VST3d32;
5525 case ARM::VST3qAsm_8: Spacing = 2; return ARM::VST3q8;
5526 case ARM::VST3qAsm_16: Spacing = 2; return ARM::VST3q16;
5527 case ARM::VST3qAsm_32: Spacing = 2; return ARM::VST3q32;
Jim Grosbachda70eac2012-01-24 00:58:13 +00005528
Jim Grosbach8e2722c2012-01-24 18:53:13 +00005529 // VST4LN
5530 case ARM::VST4LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VST4LNd8_UPD;
5531 case ARM::VST4LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VST4LNd16_UPD;
5532 case ARM::VST4LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VST4LNd32_UPD;
5533 case ARM::VST4LNqWB_fixed_Asm_16: Spacing = 1; return ARM::VST4LNq16_UPD;
5534 case ARM::VST4LNqWB_fixed_Asm_32: Spacing = 2; return ARM::VST4LNq32_UPD;
5535 case ARM::VST4LNdWB_register_Asm_8: Spacing = 1; return ARM::VST4LNd8_UPD;
5536 case ARM::VST4LNdWB_register_Asm_16: Spacing = 1; return ARM::VST4LNd16_UPD;
5537 case ARM::VST4LNdWB_register_Asm_32: Spacing = 1; return ARM::VST4LNd32_UPD;
5538 case ARM::VST4LNqWB_register_Asm_16: Spacing = 2; return ARM::VST4LNq16_UPD;
5539 case ARM::VST4LNqWB_register_Asm_32: Spacing = 2; return ARM::VST4LNq32_UPD;
5540 case ARM::VST4LNdAsm_8: Spacing = 1; return ARM::VST4LNd8;
5541 case ARM::VST4LNdAsm_16: Spacing = 1; return ARM::VST4LNd16;
5542 case ARM::VST4LNdAsm_32: Spacing = 1; return ARM::VST4LNd32;
5543 case ARM::VST4LNqAsm_16: Spacing = 2; return ARM::VST4LNq16;
5544 case ARM::VST4LNqAsm_32: Spacing = 2; return ARM::VST4LNq32;
5545
Jim Grosbachda70eac2012-01-24 00:58:13 +00005546 // VST4
5547 case ARM::VST4dWB_fixed_Asm_8: Spacing = 1; return ARM::VST4d8_UPD;
5548 case ARM::VST4dWB_fixed_Asm_16: Spacing = 1; return ARM::VST4d16_UPD;
5549 case ARM::VST4dWB_fixed_Asm_32: Spacing = 1; return ARM::VST4d32_UPD;
5550 case ARM::VST4qWB_fixed_Asm_8: Spacing = 2; return ARM::VST4q8_UPD;
5551 case ARM::VST4qWB_fixed_Asm_16: Spacing = 2; return ARM::VST4q16_UPD;
5552 case ARM::VST4qWB_fixed_Asm_32: Spacing = 2; return ARM::VST4q32_UPD;
5553 case ARM::VST4dWB_register_Asm_8: Spacing = 1; return ARM::VST4d8_UPD;
5554 case ARM::VST4dWB_register_Asm_16: Spacing = 1; return ARM::VST4d16_UPD;
5555 case ARM::VST4dWB_register_Asm_32: Spacing = 1; return ARM::VST4d32_UPD;
5556 case ARM::VST4qWB_register_Asm_8: Spacing = 2; return ARM::VST4q8_UPD;
5557 case ARM::VST4qWB_register_Asm_16: Spacing = 2; return ARM::VST4q16_UPD;
5558 case ARM::VST4qWB_register_Asm_32: Spacing = 2; return ARM::VST4q32_UPD;
5559 case ARM::VST4dAsm_8: Spacing = 1; return ARM::VST4d8;
5560 case ARM::VST4dAsm_16: Spacing = 1; return ARM::VST4d16;
5561 case ARM::VST4dAsm_32: Spacing = 1; return ARM::VST4d32;
5562 case ARM::VST4qAsm_8: Spacing = 2; return ARM::VST4q8;
5563 case ARM::VST4qAsm_16: Spacing = 2; return ARM::VST4q16;
5564 case ARM::VST4qAsm_32: Spacing = 2; return ARM::VST4q32;
Jim Grosbacheb538222011-12-02 22:34:51 +00005565 }
5566}
5567
Jim Grosbach1a747242012-01-23 23:45:44 +00005568static unsigned getRealVLDOpcode(unsigned Opc, unsigned &Spacing) {
Jim Grosbach04945c42011-12-02 00:35:16 +00005569 switch(Opc) {
Craig Toppere55c5562012-02-07 02:50:20 +00005570 default: llvm_unreachable("unexpected opcode!");
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00005571 // VLD1LN
Jim Grosbach1e946a42012-01-24 00:43:12 +00005572 case ARM::VLD1LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VLD1LNd8_UPD;
5573 case ARM::VLD1LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VLD1LNd16_UPD;
5574 case ARM::VLD1LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VLD1LNd32_UPD;
5575 case ARM::VLD1LNdWB_register_Asm_8: Spacing = 1; return ARM::VLD1LNd8_UPD;
5576 case ARM::VLD1LNdWB_register_Asm_16: Spacing = 1; return ARM::VLD1LNd16_UPD;
5577 case ARM::VLD1LNdWB_register_Asm_32: Spacing = 1; return ARM::VLD1LNd32_UPD;
5578 case ARM::VLD1LNdAsm_8: Spacing = 1; return ARM::VLD1LNd8;
5579 case ARM::VLD1LNdAsm_16: Spacing = 1; return ARM::VLD1LNd16;
5580 case ARM::VLD1LNdAsm_32: Spacing = 1; return ARM::VLD1LNd32;
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00005581
5582 // VLD2LN
Jim Grosbach1e946a42012-01-24 00:43:12 +00005583 case ARM::VLD2LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VLD2LNd8_UPD;
5584 case ARM::VLD2LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VLD2LNd16_UPD;
5585 case ARM::VLD2LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VLD2LNd32_UPD;
5586 case ARM::VLD2LNqWB_fixed_Asm_16: Spacing = 1; return ARM::VLD2LNq16_UPD;
5587 case ARM::VLD2LNqWB_fixed_Asm_32: Spacing = 2; return ARM::VLD2LNq32_UPD;
5588 case ARM::VLD2LNdWB_register_Asm_8: Spacing = 1; return ARM::VLD2LNd8_UPD;
5589 case ARM::VLD2LNdWB_register_Asm_16: Spacing = 1; return ARM::VLD2LNd16_UPD;
5590 case ARM::VLD2LNdWB_register_Asm_32: Spacing = 1; return ARM::VLD2LNd32_UPD;
5591 case ARM::VLD2LNqWB_register_Asm_16: Spacing = 2; return ARM::VLD2LNq16_UPD;
5592 case ARM::VLD2LNqWB_register_Asm_32: Spacing = 2; return ARM::VLD2LNq32_UPD;
5593 case ARM::VLD2LNdAsm_8: Spacing = 1; return ARM::VLD2LNd8;
5594 case ARM::VLD2LNdAsm_16: Spacing = 1; return ARM::VLD2LNd16;
5595 case ARM::VLD2LNdAsm_32: Spacing = 1; return ARM::VLD2LNd32;
5596 case ARM::VLD2LNqAsm_16: Spacing = 2; return ARM::VLD2LNq16;
5597 case ARM::VLD2LNqAsm_32: Spacing = 2; return ARM::VLD2LNq32;
Jim Grosbacha8b444b2012-01-23 21:53:26 +00005598
Jim Grosbachb78403c2012-01-24 23:47:04 +00005599 // VLD3DUP
5600 case ARM::VLD3DUPdWB_fixed_Asm_8: Spacing = 1; return ARM::VLD3DUPd8_UPD;
5601 case ARM::VLD3DUPdWB_fixed_Asm_16: Spacing = 1; return ARM::VLD3DUPd16_UPD;
5602 case ARM::VLD3DUPdWB_fixed_Asm_32: Spacing = 1; return ARM::VLD3DUPd32_UPD;
5603 case ARM::VLD3DUPqWB_fixed_Asm_8: Spacing = 1; return ARM::VLD3DUPq8_UPD;
5604 case ARM::VLD3DUPqWB_fixed_Asm_16: Spacing = 1; return ARM::VLD3DUPq16_UPD;
5605 case ARM::VLD3DUPqWB_fixed_Asm_32: Spacing = 2; return ARM::VLD3DUPq32_UPD;
5606 case ARM::VLD3DUPdWB_register_Asm_8: Spacing = 1; return ARM::VLD3DUPd8_UPD;
5607 case ARM::VLD3DUPdWB_register_Asm_16: Spacing = 1; return ARM::VLD3DUPd16_UPD;
5608 case ARM::VLD3DUPdWB_register_Asm_32: Spacing = 1; return ARM::VLD3DUPd32_UPD;
5609 case ARM::VLD3DUPqWB_register_Asm_8: Spacing = 2; return ARM::VLD3DUPq8_UPD;
5610 case ARM::VLD3DUPqWB_register_Asm_16: Spacing = 2; return ARM::VLD3DUPq16_UPD;
5611 case ARM::VLD3DUPqWB_register_Asm_32: Spacing = 2; return ARM::VLD3DUPq32_UPD;
5612 case ARM::VLD3DUPdAsm_8: Spacing = 1; return ARM::VLD3DUPd8;
5613 case ARM::VLD3DUPdAsm_16: Spacing = 1; return ARM::VLD3DUPd16;
5614 case ARM::VLD3DUPdAsm_32: Spacing = 1; return ARM::VLD3DUPd32;
5615 case ARM::VLD3DUPqAsm_8: Spacing = 2; return ARM::VLD3DUPq8;
5616 case ARM::VLD3DUPqAsm_16: Spacing = 2; return ARM::VLD3DUPq16;
5617 case ARM::VLD3DUPqAsm_32: Spacing = 2; return ARM::VLD3DUPq32;
5618
Jim Grosbacha8b444b2012-01-23 21:53:26 +00005619 // VLD3LN
Jim Grosbach1e946a42012-01-24 00:43:12 +00005620 case ARM::VLD3LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VLD3LNd8_UPD;
5621 case ARM::VLD3LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VLD3LNd16_UPD;
5622 case ARM::VLD3LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VLD3LNd32_UPD;
5623 case ARM::VLD3LNqWB_fixed_Asm_16: Spacing = 1; return ARM::VLD3LNq16_UPD;
5624 case ARM::VLD3LNqWB_fixed_Asm_32: Spacing = 2; return ARM::VLD3LNq32_UPD;
5625 case ARM::VLD3LNdWB_register_Asm_8: Spacing = 1; return ARM::VLD3LNd8_UPD;
5626 case ARM::VLD3LNdWB_register_Asm_16: Spacing = 1; return ARM::VLD3LNd16_UPD;
5627 case ARM::VLD3LNdWB_register_Asm_32: Spacing = 1; return ARM::VLD3LNd32_UPD;
5628 case ARM::VLD3LNqWB_register_Asm_16: Spacing = 2; return ARM::VLD3LNq16_UPD;
5629 case ARM::VLD3LNqWB_register_Asm_32: Spacing = 2; return ARM::VLD3LNq32_UPD;
5630 case ARM::VLD3LNdAsm_8: Spacing = 1; return ARM::VLD3LNd8;
5631 case ARM::VLD3LNdAsm_16: Spacing = 1; return ARM::VLD3LNd16;
5632 case ARM::VLD3LNdAsm_32: Spacing = 1; return ARM::VLD3LNd32;
5633 case ARM::VLD3LNqAsm_16: Spacing = 2; return ARM::VLD3LNq16;
5634 case ARM::VLD3LNqAsm_32: Spacing = 2; return ARM::VLD3LNq32;
Jim Grosbachac2af3f2012-01-23 23:20:46 +00005635
5636 // VLD3
Jim Grosbach1e946a42012-01-24 00:43:12 +00005637 case ARM::VLD3dWB_fixed_Asm_8: Spacing = 1; return ARM::VLD3d8_UPD;
5638 case ARM::VLD3dWB_fixed_Asm_16: Spacing = 1; return ARM::VLD3d16_UPD;
5639 case ARM::VLD3dWB_fixed_Asm_32: Spacing = 1; return ARM::VLD3d32_UPD;
5640 case ARM::VLD3qWB_fixed_Asm_8: Spacing = 2; return ARM::VLD3q8_UPD;
5641 case ARM::VLD3qWB_fixed_Asm_16: Spacing = 2; return ARM::VLD3q16_UPD;
5642 case ARM::VLD3qWB_fixed_Asm_32: Spacing = 2; return ARM::VLD3q32_UPD;
5643 case ARM::VLD3dWB_register_Asm_8: Spacing = 1; return ARM::VLD3d8_UPD;
5644 case ARM::VLD3dWB_register_Asm_16: Spacing = 1; return ARM::VLD3d16_UPD;
5645 case ARM::VLD3dWB_register_Asm_32: Spacing = 1; return ARM::VLD3d32_UPD;
5646 case ARM::VLD3qWB_register_Asm_8: Spacing = 2; return ARM::VLD3q8_UPD;
5647 case ARM::VLD3qWB_register_Asm_16: Spacing = 2; return ARM::VLD3q16_UPD;
5648 case ARM::VLD3qWB_register_Asm_32: Spacing = 2; return ARM::VLD3q32_UPD;
5649 case ARM::VLD3dAsm_8: Spacing = 1; return ARM::VLD3d8;
5650 case ARM::VLD3dAsm_16: Spacing = 1; return ARM::VLD3d16;
5651 case ARM::VLD3dAsm_32: Spacing = 1; return ARM::VLD3d32;
5652 case ARM::VLD3qAsm_8: Spacing = 2; return ARM::VLD3q8;
5653 case ARM::VLD3qAsm_16: Spacing = 2; return ARM::VLD3q16;
5654 case ARM::VLD3qAsm_32: Spacing = 2; return ARM::VLD3q32;
Jim Grosbached561fc2012-01-24 00:43:17 +00005655
Jim Grosbach14952a02012-01-24 18:37:25 +00005656 // VLD4LN
5657 case ARM::VLD4LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VLD4LNd8_UPD;
5658 case ARM::VLD4LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VLD4LNd16_UPD;
5659 case ARM::VLD4LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VLD4LNd32_UPD;
5660 case ARM::VLD4LNqWB_fixed_Asm_16: Spacing = 1; return ARM::VLD4LNq16_UPD;
5661 case ARM::VLD4LNqWB_fixed_Asm_32: Spacing = 2; return ARM::VLD4LNq32_UPD;
5662 case ARM::VLD4LNdWB_register_Asm_8: Spacing = 1; return ARM::VLD4LNd8_UPD;
5663 case ARM::VLD4LNdWB_register_Asm_16: Spacing = 1; return ARM::VLD4LNd16_UPD;
5664 case ARM::VLD4LNdWB_register_Asm_32: Spacing = 1; return ARM::VLD4LNd32_UPD;
5665 case ARM::VLD4LNqWB_register_Asm_16: Spacing = 2; return ARM::VLD4LNq16_UPD;
5666 case ARM::VLD4LNqWB_register_Asm_32: Spacing = 2; return ARM::VLD4LNq32_UPD;
5667 case ARM::VLD4LNdAsm_8: Spacing = 1; return ARM::VLD4LNd8;
5668 case ARM::VLD4LNdAsm_16: Spacing = 1; return ARM::VLD4LNd16;
5669 case ARM::VLD4LNdAsm_32: Spacing = 1; return ARM::VLD4LNd32;
5670 case ARM::VLD4LNqAsm_16: Spacing = 2; return ARM::VLD4LNq16;
5671 case ARM::VLD4LNqAsm_32: Spacing = 2; return ARM::VLD4LNq32;
5672
Jim Grosbach086cbfa2012-01-25 00:01:08 +00005673 // VLD4DUP
5674 case ARM::VLD4DUPdWB_fixed_Asm_8: Spacing = 1; return ARM::VLD4DUPd8_UPD;
5675 case ARM::VLD4DUPdWB_fixed_Asm_16: Spacing = 1; return ARM::VLD4DUPd16_UPD;
5676 case ARM::VLD4DUPdWB_fixed_Asm_32: Spacing = 1; return ARM::VLD4DUPd32_UPD;
5677 case ARM::VLD4DUPqWB_fixed_Asm_8: Spacing = 1; return ARM::VLD4DUPq8_UPD;
5678 case ARM::VLD4DUPqWB_fixed_Asm_16: Spacing = 1; return ARM::VLD4DUPq16_UPD;
5679 case ARM::VLD4DUPqWB_fixed_Asm_32: Spacing = 2; return ARM::VLD4DUPq32_UPD;
5680 case ARM::VLD4DUPdWB_register_Asm_8: Spacing = 1; return ARM::VLD4DUPd8_UPD;
5681 case ARM::VLD4DUPdWB_register_Asm_16: Spacing = 1; return ARM::VLD4DUPd16_UPD;
5682 case ARM::VLD4DUPdWB_register_Asm_32: Spacing = 1; return ARM::VLD4DUPd32_UPD;
5683 case ARM::VLD4DUPqWB_register_Asm_8: Spacing = 2; return ARM::VLD4DUPq8_UPD;
5684 case ARM::VLD4DUPqWB_register_Asm_16: Spacing = 2; return ARM::VLD4DUPq16_UPD;
5685 case ARM::VLD4DUPqWB_register_Asm_32: Spacing = 2; return ARM::VLD4DUPq32_UPD;
5686 case ARM::VLD4DUPdAsm_8: Spacing = 1; return ARM::VLD4DUPd8;
5687 case ARM::VLD4DUPdAsm_16: Spacing = 1; return ARM::VLD4DUPd16;
5688 case ARM::VLD4DUPdAsm_32: Spacing = 1; return ARM::VLD4DUPd32;
5689 case ARM::VLD4DUPqAsm_8: Spacing = 2; return ARM::VLD4DUPq8;
5690 case ARM::VLD4DUPqAsm_16: Spacing = 2; return ARM::VLD4DUPq16;
5691 case ARM::VLD4DUPqAsm_32: Spacing = 2; return ARM::VLD4DUPq32;
5692
Jim Grosbached561fc2012-01-24 00:43:17 +00005693 // VLD4
5694 case ARM::VLD4dWB_fixed_Asm_8: Spacing = 1; return ARM::VLD4d8_UPD;
5695 case ARM::VLD4dWB_fixed_Asm_16: Spacing = 1; return ARM::VLD4d16_UPD;
5696 case ARM::VLD4dWB_fixed_Asm_32: Spacing = 1; return ARM::VLD4d32_UPD;
5697 case ARM::VLD4qWB_fixed_Asm_8: Spacing = 2; return ARM::VLD4q8_UPD;
5698 case ARM::VLD4qWB_fixed_Asm_16: Spacing = 2; return ARM::VLD4q16_UPD;
5699 case ARM::VLD4qWB_fixed_Asm_32: Spacing = 2; return ARM::VLD4q32_UPD;
5700 case ARM::VLD4dWB_register_Asm_8: Spacing = 1; return ARM::VLD4d8_UPD;
5701 case ARM::VLD4dWB_register_Asm_16: Spacing = 1; return ARM::VLD4d16_UPD;
5702 case ARM::VLD4dWB_register_Asm_32: Spacing = 1; return ARM::VLD4d32_UPD;
5703 case ARM::VLD4qWB_register_Asm_8: Spacing = 2; return ARM::VLD4q8_UPD;
5704 case ARM::VLD4qWB_register_Asm_16: Spacing = 2; return ARM::VLD4q16_UPD;
5705 case ARM::VLD4qWB_register_Asm_32: Spacing = 2; return ARM::VLD4q32_UPD;
5706 case ARM::VLD4dAsm_8: Spacing = 1; return ARM::VLD4d8;
5707 case ARM::VLD4dAsm_16: Spacing = 1; return ARM::VLD4d16;
5708 case ARM::VLD4dAsm_32: Spacing = 1; return ARM::VLD4d32;
5709 case ARM::VLD4qAsm_8: Spacing = 2; return ARM::VLD4q8;
5710 case ARM::VLD4qAsm_16: Spacing = 2; return ARM::VLD4q16;
5711 case ARM::VLD4qAsm_32: Spacing = 2; return ARM::VLD4q32;
Jim Grosbach04945c42011-12-02 00:35:16 +00005712 }
5713}
5714
Jim Grosbachafad0532011-11-10 23:42:14 +00005715bool ARMAsmParser::
Jim Grosbach8ba76c62011-08-11 17:35:48 +00005716processInstruction(MCInst &Inst,
5717 const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
5718 switch (Inst.getOpcode()) {
Jim Grosbache974a6a2012-09-25 00:08:13 +00005719 // Alias for alternate form of 'ADR Rd, #imm' instruction.
5720 case ARM::ADDri: {
5721 if (Inst.getOperand(1).getReg() != ARM::PC ||
5722 Inst.getOperand(5).getReg() != 0)
5723 return false;
5724 MCInst TmpInst;
5725 TmpInst.setOpcode(ARM::ADR);
5726 TmpInst.addOperand(Inst.getOperand(0));
5727 TmpInst.addOperand(Inst.getOperand(2));
5728 TmpInst.addOperand(Inst.getOperand(3));
5729 TmpInst.addOperand(Inst.getOperand(4));
5730 Inst = TmpInst;
5731 return true;
5732 }
Jim Grosbach94298a92012-01-18 22:46:46 +00005733 // Aliases for alternate PC+imm syntax of LDR instructions.
5734 case ARM::t2LDRpcrel:
Kevin Enderby06aa3eb82012-12-14 23:04:25 +00005735 // Select the narrow version if the immediate will fit.
5736 if (Inst.getOperand(1).getImm() > 0 &&
5737 Inst.getOperand(1).getImm() <= 0xff)
5738 Inst.setOpcode(ARM::tLDRpci);
5739 else
5740 Inst.setOpcode(ARM::t2LDRpci);
Jim Grosbach94298a92012-01-18 22:46:46 +00005741 return true;
5742 case ARM::t2LDRBpcrel:
5743 Inst.setOpcode(ARM::t2LDRBpci);
5744 return true;
5745 case ARM::t2LDRHpcrel:
5746 Inst.setOpcode(ARM::t2LDRHpci);
5747 return true;
5748 case ARM::t2LDRSBpcrel:
5749 Inst.setOpcode(ARM::t2LDRSBpci);
5750 return true;
5751 case ARM::t2LDRSHpcrel:
5752 Inst.setOpcode(ARM::t2LDRSHpci);
5753 return true;
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00005754 // Handle NEON VST complex aliases.
Jim Grosbachd28ef9a2012-01-23 19:39:08 +00005755 case ARM::VST1LNdWB_register_Asm_8:
5756 case ARM::VST1LNdWB_register_Asm_16:
5757 case ARM::VST1LNdWB_register_Asm_32: {
Jim Grosbacheb538222011-12-02 22:34:51 +00005758 MCInst TmpInst;
5759 // Shuffle the operands around so the lane index operand is in the
5760 // right place.
Jim Grosbach2c590522011-12-20 20:46:29 +00005761 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00005762 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
Jim Grosbacheb538222011-12-02 22:34:51 +00005763 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
5764 TmpInst.addOperand(Inst.getOperand(2)); // Rn
5765 TmpInst.addOperand(Inst.getOperand(3)); // alignment
5766 TmpInst.addOperand(Inst.getOperand(4)); // Rm
5767 TmpInst.addOperand(Inst.getOperand(0)); // Vd
5768 TmpInst.addOperand(Inst.getOperand(1)); // lane
5769 TmpInst.addOperand(Inst.getOperand(5)); // CondCode
5770 TmpInst.addOperand(Inst.getOperand(6));
5771 Inst = TmpInst;
5772 return true;
5773 }
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00005774
Jim Grosbachd28ef9a2012-01-23 19:39:08 +00005775 case ARM::VST2LNdWB_register_Asm_8:
5776 case ARM::VST2LNdWB_register_Asm_16:
5777 case ARM::VST2LNdWB_register_Asm_32:
5778 case ARM::VST2LNqWB_register_Asm_16:
5779 case ARM::VST2LNqWB_register_Asm_32: {
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00005780 MCInst TmpInst;
5781 // Shuffle the operands around so the lane index operand is in the
5782 // right place.
Jim Grosbach2c590522011-12-20 20:46:29 +00005783 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00005784 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00005785 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
5786 TmpInst.addOperand(Inst.getOperand(2)); // Rn
5787 TmpInst.addOperand(Inst.getOperand(3)); // alignment
5788 TmpInst.addOperand(Inst.getOperand(4)); // Rm
5789 TmpInst.addOperand(Inst.getOperand(0)); // Vd
Jim Grosbach2c590522011-12-20 20:46:29 +00005790 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5791 Spacing));
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00005792 TmpInst.addOperand(Inst.getOperand(1)); // lane
5793 TmpInst.addOperand(Inst.getOperand(5)); // CondCode
5794 TmpInst.addOperand(Inst.getOperand(6));
5795 Inst = TmpInst;
5796 return true;
5797 }
Jim Grosbachd3d36d92012-01-24 00:07:41 +00005798
5799 case ARM::VST3LNdWB_register_Asm_8:
5800 case ARM::VST3LNdWB_register_Asm_16:
5801 case ARM::VST3LNdWB_register_Asm_32:
5802 case ARM::VST3LNqWB_register_Asm_16:
5803 case ARM::VST3LNqWB_register_Asm_32: {
5804 MCInst TmpInst;
5805 // Shuffle the operands around so the lane index operand is in the
5806 // right place.
5807 unsigned Spacing;
5808 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
5809 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
5810 TmpInst.addOperand(Inst.getOperand(2)); // Rn
5811 TmpInst.addOperand(Inst.getOperand(3)); // alignment
5812 TmpInst.addOperand(Inst.getOperand(4)); // Rm
5813 TmpInst.addOperand(Inst.getOperand(0)); // Vd
5814 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5815 Spacing));
5816 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5817 Spacing * 2));
5818 TmpInst.addOperand(Inst.getOperand(1)); // lane
5819 TmpInst.addOperand(Inst.getOperand(5)); // CondCode
5820 TmpInst.addOperand(Inst.getOperand(6));
5821 Inst = TmpInst;
5822 return true;
5823 }
5824
Jim Grosbach8e2722c2012-01-24 18:53:13 +00005825 case ARM::VST4LNdWB_register_Asm_8:
5826 case ARM::VST4LNdWB_register_Asm_16:
5827 case ARM::VST4LNdWB_register_Asm_32:
5828 case ARM::VST4LNqWB_register_Asm_16:
5829 case ARM::VST4LNqWB_register_Asm_32: {
5830 MCInst TmpInst;
5831 // Shuffle the operands around so the lane index operand is in the
5832 // right place.
5833 unsigned Spacing;
5834 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
5835 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
5836 TmpInst.addOperand(Inst.getOperand(2)); // Rn
5837 TmpInst.addOperand(Inst.getOperand(3)); // alignment
5838 TmpInst.addOperand(Inst.getOperand(4)); // Rm
5839 TmpInst.addOperand(Inst.getOperand(0)); // Vd
5840 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5841 Spacing));
5842 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5843 Spacing * 2));
5844 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5845 Spacing * 3));
5846 TmpInst.addOperand(Inst.getOperand(1)); // lane
5847 TmpInst.addOperand(Inst.getOperand(5)); // CondCode
5848 TmpInst.addOperand(Inst.getOperand(6));
5849 Inst = TmpInst;
5850 return true;
5851 }
5852
Jim Grosbachd28ef9a2012-01-23 19:39:08 +00005853 case ARM::VST1LNdWB_fixed_Asm_8:
5854 case ARM::VST1LNdWB_fixed_Asm_16:
5855 case ARM::VST1LNdWB_fixed_Asm_32: {
Jim Grosbacheb538222011-12-02 22:34:51 +00005856 MCInst TmpInst;
5857 // Shuffle the operands around so the lane index operand is in the
5858 // right place.
Jim Grosbach2c590522011-12-20 20:46:29 +00005859 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00005860 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
Jim Grosbacheb538222011-12-02 22:34:51 +00005861 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
5862 TmpInst.addOperand(Inst.getOperand(2)); // Rn
5863 TmpInst.addOperand(Inst.getOperand(3)); // alignment
5864 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
5865 TmpInst.addOperand(Inst.getOperand(0)); // Vd
5866 TmpInst.addOperand(Inst.getOperand(1)); // lane
5867 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
5868 TmpInst.addOperand(Inst.getOperand(5));
5869 Inst = TmpInst;
5870 return true;
5871 }
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00005872
Jim Grosbachd28ef9a2012-01-23 19:39:08 +00005873 case ARM::VST2LNdWB_fixed_Asm_8:
5874 case ARM::VST2LNdWB_fixed_Asm_16:
5875 case ARM::VST2LNdWB_fixed_Asm_32:
5876 case ARM::VST2LNqWB_fixed_Asm_16:
5877 case ARM::VST2LNqWB_fixed_Asm_32: {
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00005878 MCInst TmpInst;
5879 // Shuffle the operands around so the lane index operand is in the
5880 // right place.
Jim Grosbach2c590522011-12-20 20:46:29 +00005881 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00005882 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00005883 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
5884 TmpInst.addOperand(Inst.getOperand(2)); // Rn
5885 TmpInst.addOperand(Inst.getOperand(3)); // alignment
5886 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
5887 TmpInst.addOperand(Inst.getOperand(0)); // Vd
Jim Grosbach2c590522011-12-20 20:46:29 +00005888 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5889 Spacing));
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00005890 TmpInst.addOperand(Inst.getOperand(1)); // lane
5891 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
5892 TmpInst.addOperand(Inst.getOperand(5));
5893 Inst = TmpInst;
5894 return true;
5895 }
Jim Grosbachd3d36d92012-01-24 00:07:41 +00005896
5897 case ARM::VST3LNdWB_fixed_Asm_8:
5898 case ARM::VST3LNdWB_fixed_Asm_16:
5899 case ARM::VST3LNdWB_fixed_Asm_32:
5900 case ARM::VST3LNqWB_fixed_Asm_16:
5901 case ARM::VST3LNqWB_fixed_Asm_32: {
5902 MCInst TmpInst;
5903 // Shuffle the operands around so the lane index operand is in the
5904 // right place.
5905 unsigned Spacing;
5906 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
5907 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
5908 TmpInst.addOperand(Inst.getOperand(2)); // Rn
5909 TmpInst.addOperand(Inst.getOperand(3)); // alignment
5910 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
5911 TmpInst.addOperand(Inst.getOperand(0)); // Vd
5912 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5913 Spacing));
5914 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5915 Spacing * 2));
5916 TmpInst.addOperand(Inst.getOperand(1)); // lane
5917 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
5918 TmpInst.addOperand(Inst.getOperand(5));
5919 Inst = TmpInst;
5920 return true;
5921 }
5922
Jim Grosbach8e2722c2012-01-24 18:53:13 +00005923 case ARM::VST4LNdWB_fixed_Asm_8:
5924 case ARM::VST4LNdWB_fixed_Asm_16:
5925 case ARM::VST4LNdWB_fixed_Asm_32:
5926 case ARM::VST4LNqWB_fixed_Asm_16:
5927 case ARM::VST4LNqWB_fixed_Asm_32: {
5928 MCInst TmpInst;
5929 // Shuffle the operands around so the lane index operand is in the
5930 // right place.
5931 unsigned Spacing;
5932 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
5933 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
5934 TmpInst.addOperand(Inst.getOperand(2)); // Rn
5935 TmpInst.addOperand(Inst.getOperand(3)); // alignment
5936 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
5937 TmpInst.addOperand(Inst.getOperand(0)); // Vd
5938 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5939 Spacing));
5940 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5941 Spacing * 2));
5942 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5943 Spacing * 3));
5944 TmpInst.addOperand(Inst.getOperand(1)); // lane
5945 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
5946 TmpInst.addOperand(Inst.getOperand(5));
5947 Inst = TmpInst;
5948 return true;
5949 }
5950
Jim Grosbachd28ef9a2012-01-23 19:39:08 +00005951 case ARM::VST1LNdAsm_8:
5952 case ARM::VST1LNdAsm_16:
5953 case ARM::VST1LNdAsm_32: {
Jim Grosbacheb538222011-12-02 22:34:51 +00005954 MCInst TmpInst;
5955 // Shuffle the operands around so the lane index operand is in the
5956 // right place.
Jim Grosbach2c590522011-12-20 20:46:29 +00005957 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00005958 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
Jim Grosbacheb538222011-12-02 22:34:51 +00005959 TmpInst.addOperand(Inst.getOperand(2)); // Rn
5960 TmpInst.addOperand(Inst.getOperand(3)); // alignment
5961 TmpInst.addOperand(Inst.getOperand(0)); // Vd
5962 TmpInst.addOperand(Inst.getOperand(1)); // lane
5963 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
5964 TmpInst.addOperand(Inst.getOperand(5));
5965 Inst = TmpInst;
5966 return true;
5967 }
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00005968
Jim Grosbachd28ef9a2012-01-23 19:39:08 +00005969 case ARM::VST2LNdAsm_8:
5970 case ARM::VST2LNdAsm_16:
5971 case ARM::VST2LNdAsm_32:
5972 case ARM::VST2LNqAsm_16:
5973 case ARM::VST2LNqAsm_32: {
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00005974 MCInst TmpInst;
5975 // Shuffle the operands around so the lane index operand is in the
5976 // right place.
Jim Grosbach2c590522011-12-20 20:46:29 +00005977 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00005978 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00005979 TmpInst.addOperand(Inst.getOperand(2)); // Rn
5980 TmpInst.addOperand(Inst.getOperand(3)); // alignment
5981 TmpInst.addOperand(Inst.getOperand(0)); // Vd
Jim Grosbach2c590522011-12-20 20:46:29 +00005982 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
5983 Spacing));
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00005984 TmpInst.addOperand(Inst.getOperand(1)); // lane
5985 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
5986 TmpInst.addOperand(Inst.getOperand(5));
5987 Inst = TmpInst;
5988 return true;
5989 }
Jim Grosbachd3d36d92012-01-24 00:07:41 +00005990
5991 case ARM::VST3LNdAsm_8:
5992 case ARM::VST3LNdAsm_16:
5993 case ARM::VST3LNdAsm_32:
5994 case ARM::VST3LNqAsm_16:
5995 case ARM::VST3LNqAsm_32: {
5996 MCInst TmpInst;
5997 // Shuffle the operands around so the lane index operand is in the
5998 // right place.
5999 unsigned Spacing;
6000 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
6001 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6002 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6003 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6004 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6005 Spacing));
6006 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6007 Spacing * 2));
6008 TmpInst.addOperand(Inst.getOperand(1)); // lane
6009 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6010 TmpInst.addOperand(Inst.getOperand(5));
6011 Inst = TmpInst;
6012 return true;
6013 }
6014
Jim Grosbach8e2722c2012-01-24 18:53:13 +00006015 case ARM::VST4LNdAsm_8:
6016 case ARM::VST4LNdAsm_16:
6017 case ARM::VST4LNdAsm_32:
6018 case ARM::VST4LNqAsm_16:
6019 case ARM::VST4LNqAsm_32: {
6020 MCInst TmpInst;
6021 // Shuffle the operands around so the lane index operand is in the
6022 // right place.
6023 unsigned Spacing;
6024 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
6025 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6026 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6027 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6028 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6029 Spacing));
6030 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6031 Spacing * 2));
6032 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6033 Spacing * 3));
6034 TmpInst.addOperand(Inst.getOperand(1)); // lane
6035 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6036 TmpInst.addOperand(Inst.getOperand(5));
6037 Inst = TmpInst;
6038 return true;
6039 }
6040
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006041 // Handle NEON VLD complex aliases.
Jim Grosbachd28ef9a2012-01-23 19:39:08 +00006042 case ARM::VLD1LNdWB_register_Asm_8:
6043 case ARM::VLD1LNdWB_register_Asm_16:
6044 case ARM::VLD1LNdWB_register_Asm_32: {
Jim Grosbachdda976b2011-12-02 22:01:52 +00006045 MCInst TmpInst;
6046 // Shuffle the operands around so the lane index operand is in the
6047 // right place.
Jim Grosbach75e2ab52011-12-20 19:21:26 +00006048 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00006049 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbachdda976b2011-12-02 22:01:52 +00006050 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6051 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
6052 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6053 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6054 TmpInst.addOperand(Inst.getOperand(4)); // Rm
6055 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
6056 TmpInst.addOperand(Inst.getOperand(1)); // lane
6057 TmpInst.addOperand(Inst.getOperand(5)); // CondCode
6058 TmpInst.addOperand(Inst.getOperand(6));
6059 Inst = TmpInst;
6060 return true;
6061 }
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006062
Jim Grosbachd28ef9a2012-01-23 19:39:08 +00006063 case ARM::VLD2LNdWB_register_Asm_8:
6064 case ARM::VLD2LNdWB_register_Asm_16:
6065 case ARM::VLD2LNdWB_register_Asm_32:
6066 case ARM::VLD2LNqWB_register_Asm_16:
6067 case ARM::VLD2LNqWB_register_Asm_32: {
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006068 MCInst TmpInst;
6069 // Shuffle the operands around so the lane index operand is in the
6070 // right place.
Jim Grosbach75e2ab52011-12-20 19:21:26 +00006071 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00006072 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006073 TmpInst.addOperand(Inst.getOperand(0)); // Vd
Jim Grosbach75e2ab52011-12-20 19:21:26 +00006074 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6075 Spacing));
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006076 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
6077 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6078 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6079 TmpInst.addOperand(Inst.getOperand(4)); // Rm
6080 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
Jim Grosbach75e2ab52011-12-20 19:21:26 +00006081 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6082 Spacing));
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006083 TmpInst.addOperand(Inst.getOperand(1)); // lane
6084 TmpInst.addOperand(Inst.getOperand(5)); // CondCode
6085 TmpInst.addOperand(Inst.getOperand(6));
6086 Inst = TmpInst;
6087 return true;
6088 }
6089
Jim Grosbacha8b444b2012-01-23 21:53:26 +00006090 case ARM::VLD3LNdWB_register_Asm_8:
6091 case ARM::VLD3LNdWB_register_Asm_16:
6092 case ARM::VLD3LNdWB_register_Asm_32:
6093 case ARM::VLD3LNqWB_register_Asm_16:
6094 case ARM::VLD3LNqWB_register_Asm_32: {
6095 MCInst TmpInst;
6096 // Shuffle the operands around so the lane index operand is in the
6097 // right place.
6098 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00006099 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbacha8b444b2012-01-23 21:53:26 +00006100 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6101 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6102 Spacing));
6103 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
Jim Grosbachac2af3f2012-01-23 23:20:46 +00006104 Spacing * 2));
Jim Grosbacha8b444b2012-01-23 21:53:26 +00006105 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
6106 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6107 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6108 TmpInst.addOperand(Inst.getOperand(4)); // Rm
6109 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
6110 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6111 Spacing));
6112 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
Jim Grosbachac2af3f2012-01-23 23:20:46 +00006113 Spacing * 2));
Jim Grosbacha8b444b2012-01-23 21:53:26 +00006114 TmpInst.addOperand(Inst.getOperand(1)); // lane
6115 TmpInst.addOperand(Inst.getOperand(5)); // CondCode
6116 TmpInst.addOperand(Inst.getOperand(6));
6117 Inst = TmpInst;
6118 return true;
6119 }
6120
Jim Grosbach14952a02012-01-24 18:37:25 +00006121 case ARM::VLD4LNdWB_register_Asm_8:
6122 case ARM::VLD4LNdWB_register_Asm_16:
6123 case ARM::VLD4LNdWB_register_Asm_32:
6124 case ARM::VLD4LNqWB_register_Asm_16:
6125 case ARM::VLD4LNqWB_register_Asm_32: {
6126 MCInst TmpInst;
6127 // Shuffle the operands around so the lane index operand is in the
6128 // right place.
6129 unsigned Spacing;
6130 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
6131 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6132 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6133 Spacing));
6134 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6135 Spacing * 2));
6136 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6137 Spacing * 3));
6138 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
6139 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6140 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6141 TmpInst.addOperand(Inst.getOperand(4)); // Rm
6142 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
6143 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6144 Spacing));
6145 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6146 Spacing * 2));
6147 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6148 Spacing * 3));
6149 TmpInst.addOperand(Inst.getOperand(1)); // lane
6150 TmpInst.addOperand(Inst.getOperand(5)); // CondCode
6151 TmpInst.addOperand(Inst.getOperand(6));
6152 Inst = TmpInst;
6153 return true;
6154 }
6155
Jim Grosbachd28ef9a2012-01-23 19:39:08 +00006156 case ARM::VLD1LNdWB_fixed_Asm_8:
6157 case ARM::VLD1LNdWB_fixed_Asm_16:
6158 case ARM::VLD1LNdWB_fixed_Asm_32: {
Jim Grosbachdda976b2011-12-02 22:01:52 +00006159 MCInst TmpInst;
6160 // Shuffle the operands around so the lane index operand is in the
6161 // right place.
Jim Grosbach75e2ab52011-12-20 19:21:26 +00006162 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00006163 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbachdda976b2011-12-02 22:01:52 +00006164 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6165 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
6166 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6167 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6168 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
6169 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
6170 TmpInst.addOperand(Inst.getOperand(1)); // lane
6171 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6172 TmpInst.addOperand(Inst.getOperand(5));
6173 Inst = TmpInst;
6174 return true;
6175 }
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006176
Jim Grosbachd28ef9a2012-01-23 19:39:08 +00006177 case ARM::VLD2LNdWB_fixed_Asm_8:
6178 case ARM::VLD2LNdWB_fixed_Asm_16:
6179 case ARM::VLD2LNdWB_fixed_Asm_32:
6180 case ARM::VLD2LNqWB_fixed_Asm_16:
6181 case ARM::VLD2LNqWB_fixed_Asm_32: {
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006182 MCInst TmpInst;
6183 // Shuffle the operands around so the lane index operand is in the
6184 // right place.
Jim Grosbach75e2ab52011-12-20 19:21:26 +00006185 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00006186 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006187 TmpInst.addOperand(Inst.getOperand(0)); // Vd
Jim Grosbach75e2ab52011-12-20 19:21:26 +00006188 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6189 Spacing));
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006190 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
6191 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6192 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6193 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
6194 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
Jim Grosbach75e2ab52011-12-20 19:21:26 +00006195 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6196 Spacing));
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006197 TmpInst.addOperand(Inst.getOperand(1)); // lane
6198 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6199 TmpInst.addOperand(Inst.getOperand(5));
6200 Inst = TmpInst;
6201 return true;
6202 }
6203
Jim Grosbacha8b444b2012-01-23 21:53:26 +00006204 case ARM::VLD3LNdWB_fixed_Asm_8:
6205 case ARM::VLD3LNdWB_fixed_Asm_16:
6206 case ARM::VLD3LNdWB_fixed_Asm_32:
6207 case ARM::VLD3LNqWB_fixed_Asm_16:
6208 case ARM::VLD3LNqWB_fixed_Asm_32: {
6209 MCInst TmpInst;
6210 // Shuffle the operands around so the lane index operand is in the
6211 // right place.
6212 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00006213 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbacha8b444b2012-01-23 21:53:26 +00006214 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6215 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6216 Spacing));
6217 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
Jim Grosbachac2af3f2012-01-23 23:20:46 +00006218 Spacing * 2));
Jim Grosbacha8b444b2012-01-23 21:53:26 +00006219 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
6220 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6221 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6222 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
6223 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
6224 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6225 Spacing));
6226 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
Jim Grosbachac2af3f2012-01-23 23:20:46 +00006227 Spacing * 2));
Jim Grosbacha8b444b2012-01-23 21:53:26 +00006228 TmpInst.addOperand(Inst.getOperand(1)); // lane
6229 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6230 TmpInst.addOperand(Inst.getOperand(5));
6231 Inst = TmpInst;
6232 return true;
6233 }
6234
Jim Grosbach14952a02012-01-24 18:37:25 +00006235 case ARM::VLD4LNdWB_fixed_Asm_8:
6236 case ARM::VLD4LNdWB_fixed_Asm_16:
6237 case ARM::VLD4LNdWB_fixed_Asm_32:
6238 case ARM::VLD4LNqWB_fixed_Asm_16:
6239 case ARM::VLD4LNqWB_fixed_Asm_32: {
6240 MCInst TmpInst;
6241 // Shuffle the operands around so the lane index operand is in the
6242 // right place.
6243 unsigned Spacing;
6244 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
6245 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6246 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6247 Spacing));
6248 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6249 Spacing * 2));
6250 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6251 Spacing * 3));
6252 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
6253 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6254 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6255 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
6256 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
6257 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6258 Spacing));
6259 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6260 Spacing * 2));
6261 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6262 Spacing * 3));
6263 TmpInst.addOperand(Inst.getOperand(1)); // lane
6264 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6265 TmpInst.addOperand(Inst.getOperand(5));
6266 Inst = TmpInst;
6267 return true;
6268 }
6269
Jim Grosbachd28ef9a2012-01-23 19:39:08 +00006270 case ARM::VLD1LNdAsm_8:
6271 case ARM::VLD1LNdAsm_16:
6272 case ARM::VLD1LNdAsm_32: {
Jim Grosbach04945c42011-12-02 00:35:16 +00006273 MCInst TmpInst;
6274 // Shuffle the operands around so the lane index operand is in the
6275 // right place.
Jim Grosbach75e2ab52011-12-20 19:21:26 +00006276 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00006277 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbach04945c42011-12-02 00:35:16 +00006278 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6279 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6280 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6281 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
6282 TmpInst.addOperand(Inst.getOperand(1)); // lane
6283 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6284 TmpInst.addOperand(Inst.getOperand(5));
6285 Inst = TmpInst;
6286 return true;
6287 }
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006288
Jim Grosbachd28ef9a2012-01-23 19:39:08 +00006289 case ARM::VLD2LNdAsm_8:
6290 case ARM::VLD2LNdAsm_16:
6291 case ARM::VLD2LNdAsm_32:
6292 case ARM::VLD2LNqAsm_16:
6293 case ARM::VLD2LNqAsm_32: {
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006294 MCInst TmpInst;
6295 // Shuffle the operands around so the lane index operand is in the
6296 // right place.
Jim Grosbach75e2ab52011-12-20 19:21:26 +00006297 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00006298 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006299 TmpInst.addOperand(Inst.getOperand(0)); // Vd
Jim Grosbach75e2ab52011-12-20 19:21:26 +00006300 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6301 Spacing));
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006302 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6303 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6304 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
Jim Grosbach75e2ab52011-12-20 19:21:26 +00006305 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6306 Spacing));
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006307 TmpInst.addOperand(Inst.getOperand(1)); // lane
6308 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6309 TmpInst.addOperand(Inst.getOperand(5));
6310 Inst = TmpInst;
6311 return true;
6312 }
Jim Grosbacha8b444b2012-01-23 21:53:26 +00006313
6314 case ARM::VLD3LNdAsm_8:
6315 case ARM::VLD3LNdAsm_16:
6316 case ARM::VLD3LNdAsm_32:
6317 case ARM::VLD3LNqAsm_16:
6318 case ARM::VLD3LNqAsm_32: {
6319 MCInst TmpInst;
6320 // Shuffle the operands around so the lane index operand is in the
6321 // right place.
6322 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00006323 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbacha8b444b2012-01-23 21:53:26 +00006324 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6325 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6326 Spacing));
6327 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
Jim Grosbachac2af3f2012-01-23 23:20:46 +00006328 Spacing * 2));
Jim Grosbacha8b444b2012-01-23 21:53:26 +00006329 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6330 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6331 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
6332 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6333 Spacing));
6334 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
Jim Grosbachac2af3f2012-01-23 23:20:46 +00006335 Spacing * 2));
Jim Grosbacha8b444b2012-01-23 21:53:26 +00006336 TmpInst.addOperand(Inst.getOperand(1)); // lane
6337 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6338 TmpInst.addOperand(Inst.getOperand(5));
6339 Inst = TmpInst;
6340 return true;
6341 }
6342
Jim Grosbach14952a02012-01-24 18:37:25 +00006343 case ARM::VLD4LNdAsm_8:
6344 case ARM::VLD4LNdAsm_16:
6345 case ARM::VLD4LNdAsm_32:
6346 case ARM::VLD4LNqAsm_16:
6347 case ARM::VLD4LNqAsm_32: {
6348 MCInst TmpInst;
6349 // Shuffle the operands around so the lane index operand is in the
6350 // right place.
6351 unsigned Spacing;
6352 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
6353 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6354 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6355 Spacing));
6356 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6357 Spacing * 2));
6358 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6359 Spacing * 3));
6360 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6361 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6362 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
6363 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6364 Spacing));
6365 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6366 Spacing * 2));
6367 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6368 Spacing * 3));
6369 TmpInst.addOperand(Inst.getOperand(1)); // lane
6370 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6371 TmpInst.addOperand(Inst.getOperand(5));
6372 Inst = TmpInst;
6373 return true;
6374 }
6375
Jim Grosbachb78403c2012-01-24 23:47:04 +00006376 // VLD3DUP single 3-element structure to all lanes instructions.
6377 case ARM::VLD3DUPdAsm_8:
6378 case ARM::VLD3DUPdAsm_16:
6379 case ARM::VLD3DUPdAsm_32:
6380 case ARM::VLD3DUPqAsm_8:
6381 case ARM::VLD3DUPqAsm_16:
6382 case ARM::VLD3DUPqAsm_32: {
6383 MCInst TmpInst;
6384 unsigned Spacing;
6385 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
6386 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6387 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6388 Spacing));
6389 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6390 Spacing * 2));
6391 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6392 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6393 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
6394 TmpInst.addOperand(Inst.getOperand(4));
6395 Inst = TmpInst;
6396 return true;
6397 }
6398
6399 case ARM::VLD3DUPdWB_fixed_Asm_8:
6400 case ARM::VLD3DUPdWB_fixed_Asm_16:
6401 case ARM::VLD3DUPdWB_fixed_Asm_32:
6402 case ARM::VLD3DUPqWB_fixed_Asm_8:
6403 case ARM::VLD3DUPqWB_fixed_Asm_16:
6404 case ARM::VLD3DUPqWB_fixed_Asm_32: {
6405 MCInst TmpInst;
6406 unsigned Spacing;
6407 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
6408 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6409 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6410 Spacing));
6411 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6412 Spacing * 2));
6413 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6414 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
6415 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6416 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
6417 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
6418 TmpInst.addOperand(Inst.getOperand(4));
6419 Inst = TmpInst;
6420 return true;
6421 }
6422
6423 case ARM::VLD3DUPdWB_register_Asm_8:
6424 case ARM::VLD3DUPdWB_register_Asm_16:
6425 case ARM::VLD3DUPdWB_register_Asm_32:
6426 case ARM::VLD3DUPqWB_register_Asm_8:
6427 case ARM::VLD3DUPqWB_register_Asm_16:
6428 case ARM::VLD3DUPqWB_register_Asm_32: {
6429 MCInst TmpInst;
6430 unsigned Spacing;
6431 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
6432 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6433 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6434 Spacing));
6435 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6436 Spacing * 2));
6437 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6438 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
6439 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6440 TmpInst.addOperand(Inst.getOperand(3)); // Rm
6441 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6442 TmpInst.addOperand(Inst.getOperand(5));
6443 Inst = TmpInst;
6444 return true;
6445 }
6446
Jim Grosbachac2af3f2012-01-23 23:20:46 +00006447 // VLD3 multiple 3-element structure instructions.
6448 case ARM::VLD3dAsm_8:
6449 case ARM::VLD3dAsm_16:
6450 case ARM::VLD3dAsm_32:
6451 case ARM::VLD3qAsm_8:
6452 case ARM::VLD3qAsm_16:
6453 case ARM::VLD3qAsm_32: {
6454 MCInst TmpInst;
6455 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00006456 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbachac2af3f2012-01-23 23:20:46 +00006457 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6458 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6459 Spacing));
6460 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6461 Spacing * 2));
6462 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6463 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6464 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
6465 TmpInst.addOperand(Inst.getOperand(4));
6466 Inst = TmpInst;
6467 return true;
6468 }
6469
6470 case ARM::VLD3dWB_fixed_Asm_8:
6471 case ARM::VLD3dWB_fixed_Asm_16:
6472 case ARM::VLD3dWB_fixed_Asm_32:
6473 case ARM::VLD3qWB_fixed_Asm_8:
6474 case ARM::VLD3qWB_fixed_Asm_16:
6475 case ARM::VLD3qWB_fixed_Asm_32: {
6476 MCInst TmpInst;
6477 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00006478 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbachac2af3f2012-01-23 23:20:46 +00006479 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6480 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6481 Spacing));
6482 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6483 Spacing * 2));
6484 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6485 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
6486 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6487 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
6488 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
6489 TmpInst.addOperand(Inst.getOperand(4));
6490 Inst = TmpInst;
6491 return true;
6492 }
6493
6494 case ARM::VLD3dWB_register_Asm_8:
6495 case ARM::VLD3dWB_register_Asm_16:
6496 case ARM::VLD3dWB_register_Asm_32:
6497 case ARM::VLD3qWB_register_Asm_8:
6498 case ARM::VLD3qWB_register_Asm_16:
6499 case ARM::VLD3qWB_register_Asm_32: {
6500 MCInst TmpInst;
6501 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00006502 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbachac2af3f2012-01-23 23:20:46 +00006503 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6504 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6505 Spacing));
6506 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6507 Spacing * 2));
6508 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6509 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
6510 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6511 TmpInst.addOperand(Inst.getOperand(3)); // Rm
6512 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6513 TmpInst.addOperand(Inst.getOperand(5));
6514 Inst = TmpInst;
6515 return true;
6516 }
6517
Jim Grosbach086cbfa2012-01-25 00:01:08 +00006518 // VLD4DUP single 3-element structure to all lanes instructions.
6519 case ARM::VLD4DUPdAsm_8:
6520 case ARM::VLD4DUPdAsm_16:
6521 case ARM::VLD4DUPdAsm_32:
6522 case ARM::VLD4DUPqAsm_8:
6523 case ARM::VLD4DUPqAsm_16:
6524 case ARM::VLD4DUPqAsm_32: {
6525 MCInst TmpInst;
6526 unsigned Spacing;
6527 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
6528 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6529 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6530 Spacing));
6531 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6532 Spacing * 2));
6533 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6534 Spacing * 3));
6535 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6536 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6537 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
6538 TmpInst.addOperand(Inst.getOperand(4));
6539 Inst = TmpInst;
6540 return true;
6541 }
6542
6543 case ARM::VLD4DUPdWB_fixed_Asm_8:
6544 case ARM::VLD4DUPdWB_fixed_Asm_16:
6545 case ARM::VLD4DUPdWB_fixed_Asm_32:
6546 case ARM::VLD4DUPqWB_fixed_Asm_8:
6547 case ARM::VLD4DUPqWB_fixed_Asm_16:
6548 case ARM::VLD4DUPqWB_fixed_Asm_32: {
6549 MCInst TmpInst;
6550 unsigned Spacing;
6551 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
6552 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6553 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6554 Spacing));
6555 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6556 Spacing * 2));
6557 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6558 Spacing * 3));
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(MCOperand::CreateReg(0)); // Rm
6563 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
6564 TmpInst.addOperand(Inst.getOperand(4));
6565 Inst = TmpInst;
6566 return true;
6567 }
6568
6569 case ARM::VLD4DUPdWB_register_Asm_8:
6570 case ARM::VLD4DUPdWB_register_Asm_16:
6571 case ARM::VLD4DUPdWB_register_Asm_32:
6572 case ARM::VLD4DUPqWB_register_Asm_8:
6573 case ARM::VLD4DUPqWB_register_Asm_16:
6574 case ARM::VLD4DUPqWB_register_Asm_32: {
6575 MCInst TmpInst;
6576 unsigned Spacing;
6577 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
6578 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6579 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6580 Spacing));
6581 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6582 Spacing * 2));
6583 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6584 Spacing * 3));
6585 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6586 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
6587 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6588 TmpInst.addOperand(Inst.getOperand(3)); // Rm
6589 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6590 TmpInst.addOperand(Inst.getOperand(5));
6591 Inst = TmpInst;
6592 return true;
6593 }
6594
6595 // VLD4 multiple 4-element structure instructions.
Jim Grosbached561fc2012-01-24 00:43:17 +00006596 case ARM::VLD4dAsm_8:
6597 case ARM::VLD4dAsm_16:
6598 case ARM::VLD4dAsm_32:
6599 case ARM::VLD4qAsm_8:
6600 case ARM::VLD4qAsm_16:
6601 case ARM::VLD4qAsm_32: {
6602 MCInst TmpInst;
6603 unsigned Spacing;
6604 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
6605 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6606 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6607 Spacing));
6608 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6609 Spacing * 2));
6610 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6611 Spacing * 3));
6612 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6613 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6614 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
6615 TmpInst.addOperand(Inst.getOperand(4));
6616 Inst = TmpInst;
6617 return true;
6618 }
6619
6620 case ARM::VLD4dWB_fixed_Asm_8:
6621 case ARM::VLD4dWB_fixed_Asm_16:
6622 case ARM::VLD4dWB_fixed_Asm_32:
6623 case ARM::VLD4qWB_fixed_Asm_8:
6624 case ARM::VLD4qWB_fixed_Asm_16:
6625 case ARM::VLD4qWB_fixed_Asm_32: {
6626 MCInst TmpInst;
6627 unsigned Spacing;
6628 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
6629 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6630 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6631 Spacing));
6632 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6633 Spacing * 2));
6634 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6635 Spacing * 3));
6636 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6637 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
6638 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6639 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
6640 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
6641 TmpInst.addOperand(Inst.getOperand(4));
6642 Inst = TmpInst;
6643 return true;
6644 }
6645
6646 case ARM::VLD4dWB_register_Asm_8:
6647 case ARM::VLD4dWB_register_Asm_16:
6648 case ARM::VLD4dWB_register_Asm_32:
6649 case ARM::VLD4qWB_register_Asm_8:
6650 case ARM::VLD4qWB_register_Asm_16:
6651 case ARM::VLD4qWB_register_Asm_32: {
6652 MCInst TmpInst;
6653 unsigned Spacing;
6654 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
6655 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6656 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6657 Spacing));
6658 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6659 Spacing * 2));
6660 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6661 Spacing * 3));
6662 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6663 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
6664 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6665 TmpInst.addOperand(Inst.getOperand(3)); // Rm
6666 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6667 TmpInst.addOperand(Inst.getOperand(5));
6668 Inst = TmpInst;
6669 return true;
6670 }
6671
Jim Grosbach1a747242012-01-23 23:45:44 +00006672 // VST3 multiple 3-element structure instructions.
6673 case ARM::VST3dAsm_8:
6674 case ARM::VST3dAsm_16:
6675 case ARM::VST3dAsm_32:
6676 case ARM::VST3qAsm_8:
6677 case ARM::VST3qAsm_16:
6678 case ARM::VST3qAsm_32: {
6679 MCInst TmpInst;
6680 unsigned Spacing;
6681 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
6682 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6683 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6684 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6685 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6686 Spacing));
6687 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6688 Spacing * 2));
6689 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
6690 TmpInst.addOperand(Inst.getOperand(4));
6691 Inst = TmpInst;
6692 return true;
6693 }
6694
6695 case ARM::VST3dWB_fixed_Asm_8:
6696 case ARM::VST3dWB_fixed_Asm_16:
6697 case ARM::VST3dWB_fixed_Asm_32:
6698 case ARM::VST3qWB_fixed_Asm_8:
6699 case ARM::VST3qWB_fixed_Asm_16:
6700 case ARM::VST3qWB_fixed_Asm_32: {
6701 MCInst TmpInst;
6702 unsigned Spacing;
6703 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
6704 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6705 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
6706 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6707 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
6708 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6709 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6710 Spacing));
6711 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6712 Spacing * 2));
6713 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
6714 TmpInst.addOperand(Inst.getOperand(4));
6715 Inst = TmpInst;
6716 return true;
6717 }
6718
6719 case ARM::VST3dWB_register_Asm_8:
6720 case ARM::VST3dWB_register_Asm_16:
6721 case ARM::VST3dWB_register_Asm_32:
6722 case ARM::VST3qWB_register_Asm_8:
6723 case ARM::VST3qWB_register_Asm_16:
6724 case ARM::VST3qWB_register_Asm_32: {
6725 MCInst TmpInst;
6726 unsigned Spacing;
6727 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
6728 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6729 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
6730 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6731 TmpInst.addOperand(Inst.getOperand(3)); // Rm
6732 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6733 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6734 Spacing));
6735 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6736 Spacing * 2));
6737 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6738 TmpInst.addOperand(Inst.getOperand(5));
6739 Inst = TmpInst;
6740 return true;
6741 }
6742
Jim Grosbachda70eac2012-01-24 00:58:13 +00006743 // VST4 multiple 3-element structure instructions.
6744 case ARM::VST4dAsm_8:
6745 case ARM::VST4dAsm_16:
6746 case ARM::VST4dAsm_32:
6747 case ARM::VST4qAsm_8:
6748 case ARM::VST4qAsm_16:
6749 case ARM::VST4qAsm_32: {
6750 MCInst TmpInst;
6751 unsigned Spacing;
6752 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
6753 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6754 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6755 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6756 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6757 Spacing));
6758 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6759 Spacing * 2));
6760 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6761 Spacing * 3));
6762 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
6763 TmpInst.addOperand(Inst.getOperand(4));
6764 Inst = TmpInst;
6765 return true;
6766 }
6767
6768 case ARM::VST4dWB_fixed_Asm_8:
6769 case ARM::VST4dWB_fixed_Asm_16:
6770 case ARM::VST4dWB_fixed_Asm_32:
6771 case ARM::VST4qWB_fixed_Asm_8:
6772 case ARM::VST4qWB_fixed_Asm_16:
6773 case ARM::VST4qWB_fixed_Asm_32: {
6774 MCInst TmpInst;
6775 unsigned Spacing;
6776 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
6777 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6778 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
6779 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6780 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
6781 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6782 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6783 Spacing));
6784 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6785 Spacing * 2));
6786 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6787 Spacing * 3));
6788 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
6789 TmpInst.addOperand(Inst.getOperand(4));
6790 Inst = TmpInst;
6791 return true;
6792 }
6793
6794 case ARM::VST4dWB_register_Asm_8:
6795 case ARM::VST4dWB_register_Asm_16:
6796 case ARM::VST4dWB_register_Asm_32:
6797 case ARM::VST4qWB_register_Asm_8:
6798 case ARM::VST4qWB_register_Asm_16:
6799 case ARM::VST4qWB_register_Asm_32: {
6800 MCInst TmpInst;
6801 unsigned Spacing;
6802 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
6803 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6804 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
6805 TmpInst.addOperand(Inst.getOperand(2)); // alignment
6806 TmpInst.addOperand(Inst.getOperand(3)); // Rm
6807 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6808 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6809 Spacing));
6810 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6811 Spacing * 2));
6812 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6813 Spacing * 3));
6814 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6815 TmpInst.addOperand(Inst.getOperand(5));
6816 Inst = TmpInst;
6817 return true;
6818 }
6819
Jim Grosbachad66de12012-04-11 00:15:16 +00006820 // Handle encoding choice for the shift-immediate instructions.
6821 case ARM::t2LSLri:
6822 case ARM::t2LSRri:
6823 case ARM::t2ASRri: {
6824 if (isARMLowRegister(Inst.getOperand(0).getReg()) &&
6825 Inst.getOperand(0).getReg() == Inst.getOperand(1).getReg() &&
6826 Inst.getOperand(5).getReg() == (inITBlock() ? 0 : ARM::CPSR) &&
6827 !(static_cast<ARMOperand*>(Operands[3])->isToken() &&
6828 static_cast<ARMOperand*>(Operands[3])->getToken() == ".w")) {
6829 unsigned NewOpc;
6830 switch (Inst.getOpcode()) {
6831 default: llvm_unreachable("unexpected opcode");
6832 case ARM::t2LSLri: NewOpc = ARM::tLSLri; break;
6833 case ARM::t2LSRri: NewOpc = ARM::tLSRri; break;
6834 case ARM::t2ASRri: NewOpc = ARM::tASRri; break;
6835 }
6836 // The Thumb1 operands aren't in the same order. Awesome, eh?
6837 MCInst TmpInst;
6838 TmpInst.setOpcode(NewOpc);
6839 TmpInst.addOperand(Inst.getOperand(0));
6840 TmpInst.addOperand(Inst.getOperand(5));
6841 TmpInst.addOperand(Inst.getOperand(1));
6842 TmpInst.addOperand(Inst.getOperand(2));
6843 TmpInst.addOperand(Inst.getOperand(3));
6844 TmpInst.addOperand(Inst.getOperand(4));
6845 Inst = TmpInst;
6846 return true;
6847 }
6848 return false;
6849 }
6850
Jim Grosbach485e5622011-12-13 22:45:11 +00006851 // Handle the Thumb2 mode MOV complex aliases.
Jim Grosbachb3ef7132011-12-21 20:54:00 +00006852 case ARM::t2MOVsr:
6853 case ARM::t2MOVSsr: {
6854 // Which instruction to expand to depends on the CCOut operand and
6855 // whether we're in an IT block if the register operands are low
6856 // registers.
6857 bool isNarrow = false;
6858 if (isARMLowRegister(Inst.getOperand(0).getReg()) &&
6859 isARMLowRegister(Inst.getOperand(1).getReg()) &&
6860 isARMLowRegister(Inst.getOperand(2).getReg()) &&
6861 Inst.getOperand(0).getReg() == Inst.getOperand(1).getReg() &&
6862 inITBlock() == (Inst.getOpcode() == ARM::t2MOVsr))
6863 isNarrow = true;
6864 MCInst TmpInst;
6865 unsigned newOpc;
6866 switch(ARM_AM::getSORegShOp(Inst.getOperand(3).getImm())) {
6867 default: llvm_unreachable("unexpected opcode!");
6868 case ARM_AM::asr: newOpc = isNarrow ? ARM::tASRrr : ARM::t2ASRrr; break;
6869 case ARM_AM::lsr: newOpc = isNarrow ? ARM::tLSRrr : ARM::t2LSRrr; break;
6870 case ARM_AM::lsl: newOpc = isNarrow ? ARM::tLSLrr : ARM::t2LSLrr; break;
6871 case ARM_AM::ror: newOpc = isNarrow ? ARM::tROR : ARM::t2RORrr; break;
6872 }
6873 TmpInst.setOpcode(newOpc);
6874 TmpInst.addOperand(Inst.getOperand(0)); // Rd
6875 if (isNarrow)
6876 TmpInst.addOperand(MCOperand::CreateReg(
6877 Inst.getOpcode() == ARM::t2MOVSsr ? ARM::CPSR : 0));
6878 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6879 TmpInst.addOperand(Inst.getOperand(2)); // Rm
6880 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6881 TmpInst.addOperand(Inst.getOperand(5));
6882 if (!isNarrow)
6883 TmpInst.addOperand(MCOperand::CreateReg(
6884 Inst.getOpcode() == ARM::t2MOVSsr ? ARM::CPSR : 0));
6885 Inst = TmpInst;
6886 return true;
6887 }
Jim Grosbach485e5622011-12-13 22:45:11 +00006888 case ARM::t2MOVsi:
6889 case ARM::t2MOVSsi: {
6890 // Which instruction to expand to depends on the CCOut operand and
6891 // whether we're in an IT block if the register operands are low
6892 // registers.
6893 bool isNarrow = false;
6894 if (isARMLowRegister(Inst.getOperand(0).getReg()) &&
6895 isARMLowRegister(Inst.getOperand(1).getReg()) &&
6896 inITBlock() == (Inst.getOpcode() == ARM::t2MOVsi))
6897 isNarrow = true;
6898 MCInst TmpInst;
6899 unsigned newOpc;
6900 switch(ARM_AM::getSORegShOp(Inst.getOperand(2).getImm())) {
6901 default: llvm_unreachable("unexpected opcode!");
6902 case ARM_AM::asr: newOpc = isNarrow ? ARM::tASRri : ARM::t2ASRri; break;
6903 case ARM_AM::lsr: newOpc = isNarrow ? ARM::tLSRri : ARM::t2LSRri; break;
6904 case ARM_AM::lsl: newOpc = isNarrow ? ARM::tLSLri : ARM::t2LSLri; break;
6905 case ARM_AM::ror: newOpc = ARM::t2RORri; isNarrow = false; break;
Jim Grosbach8c59bbc2011-12-21 21:04:19 +00006906 case ARM_AM::rrx: isNarrow = false; newOpc = ARM::t2RRX; break;
Jim Grosbach485e5622011-12-13 22:45:11 +00006907 }
Benjamin Kramerbde91762012-06-02 10:20:22 +00006908 unsigned Amount = ARM_AM::getSORegOffset(Inst.getOperand(2).getImm());
6909 if (Amount == 32) Amount = 0;
Jim Grosbach485e5622011-12-13 22:45:11 +00006910 TmpInst.setOpcode(newOpc);
6911 TmpInst.addOperand(Inst.getOperand(0)); // Rd
6912 if (isNarrow)
6913 TmpInst.addOperand(MCOperand::CreateReg(
6914 Inst.getOpcode() == ARM::t2MOVSsi ? ARM::CPSR : 0));
6915 TmpInst.addOperand(Inst.getOperand(1)); // Rn
Jim Grosbach8c59bbc2011-12-21 21:04:19 +00006916 if (newOpc != ARM::t2RRX)
Benjamin Kramerbde91762012-06-02 10:20:22 +00006917 TmpInst.addOperand(MCOperand::CreateImm(Amount));
Jim Grosbach485e5622011-12-13 22:45:11 +00006918 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
6919 TmpInst.addOperand(Inst.getOperand(4));
6920 if (!isNarrow)
6921 TmpInst.addOperand(MCOperand::CreateReg(
6922 Inst.getOpcode() == ARM::t2MOVSsi ? ARM::CPSR : 0));
6923 Inst = TmpInst;
6924 return true;
6925 }
6926 // Handle the ARM mode MOV complex aliases.
Jim Grosbachabcac562011-11-16 18:31:45 +00006927 case ARM::ASRr:
6928 case ARM::LSRr:
6929 case ARM::LSLr:
6930 case ARM::RORr: {
6931 ARM_AM::ShiftOpc ShiftTy;
6932 switch(Inst.getOpcode()) {
6933 default: llvm_unreachable("unexpected opcode!");
6934 case ARM::ASRr: ShiftTy = ARM_AM::asr; break;
6935 case ARM::LSRr: ShiftTy = ARM_AM::lsr; break;
6936 case ARM::LSLr: ShiftTy = ARM_AM::lsl; break;
6937 case ARM::RORr: ShiftTy = ARM_AM::ror; break;
6938 }
Jim Grosbachabcac562011-11-16 18:31:45 +00006939 unsigned Shifter = ARM_AM::getSORegOpc(ShiftTy, 0);
6940 MCInst TmpInst;
6941 TmpInst.setOpcode(ARM::MOVsr);
6942 TmpInst.addOperand(Inst.getOperand(0)); // Rd
6943 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6944 TmpInst.addOperand(Inst.getOperand(2)); // Rm
6945 TmpInst.addOperand(MCOperand::CreateImm(Shifter)); // Shift value and ty
6946 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
6947 TmpInst.addOperand(Inst.getOperand(4));
6948 TmpInst.addOperand(Inst.getOperand(5)); // cc_out
6949 Inst = TmpInst;
6950 return true;
6951 }
Jim Grosbachc14871c2011-11-10 19:18:01 +00006952 case ARM::ASRi:
6953 case ARM::LSRi:
6954 case ARM::LSLi:
6955 case ARM::RORi: {
6956 ARM_AM::ShiftOpc ShiftTy;
Jim Grosbachc14871c2011-11-10 19:18:01 +00006957 switch(Inst.getOpcode()) {
6958 default: llvm_unreachable("unexpected opcode!");
6959 case ARM::ASRi: ShiftTy = ARM_AM::asr; break;
6960 case ARM::LSRi: ShiftTy = ARM_AM::lsr; break;
6961 case ARM::LSLi: ShiftTy = ARM_AM::lsl; break;
6962 case ARM::RORi: ShiftTy = ARM_AM::ror; break;
6963 }
6964 // A shift by zero is a plain MOVr, not a MOVsi.
Jim Grosbach1a2f9ee2011-11-16 19:05:59 +00006965 unsigned Amt = Inst.getOperand(2).getImm();
Jim Grosbachc14871c2011-11-10 19:18:01 +00006966 unsigned Opc = Amt == 0 ? ARM::MOVr : ARM::MOVsi;
Richard Bartonba5b0cc2012-04-25 18:00:18 +00006967 // A shift by 32 should be encoded as 0 when permitted
6968 if (Amt == 32 && (ShiftTy == ARM_AM::lsr || ShiftTy == ARM_AM::asr))
6969 Amt = 0;
Jim Grosbachc14871c2011-11-10 19:18:01 +00006970 unsigned Shifter = ARM_AM::getSORegOpc(ShiftTy, Amt);
Jim Grosbach61db5a52011-11-10 16:44:55 +00006971 MCInst TmpInst;
Jim Grosbachc14871c2011-11-10 19:18:01 +00006972 TmpInst.setOpcode(Opc);
Jim Grosbach61db5a52011-11-10 16:44:55 +00006973 TmpInst.addOperand(Inst.getOperand(0)); // Rd
6974 TmpInst.addOperand(Inst.getOperand(1)); // Rn
Jim Grosbachc14871c2011-11-10 19:18:01 +00006975 if (Opc == ARM::MOVsi)
6976 TmpInst.addOperand(MCOperand::CreateImm(Shifter)); // Shift value and ty
Jim Grosbach61db5a52011-11-10 16:44:55 +00006977 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
6978 TmpInst.addOperand(Inst.getOperand(4));
6979 TmpInst.addOperand(Inst.getOperand(5)); // cc_out
6980 Inst = TmpInst;
Jim Grosbachafad0532011-11-10 23:42:14 +00006981 return true;
Jim Grosbach61db5a52011-11-10 16:44:55 +00006982 }
Jim Grosbach1a2f9ee2011-11-16 19:05:59 +00006983 case ARM::RRXi: {
6984 unsigned Shifter = ARM_AM::getSORegOpc(ARM_AM::rrx, 0);
6985 MCInst TmpInst;
6986 TmpInst.setOpcode(ARM::MOVsi);
6987 TmpInst.addOperand(Inst.getOperand(0)); // Rd
6988 TmpInst.addOperand(Inst.getOperand(1)); // Rn
6989 TmpInst.addOperand(MCOperand::CreateImm(Shifter)); // Shift value and ty
6990 TmpInst.addOperand(Inst.getOperand(2)); // CondCode
6991 TmpInst.addOperand(Inst.getOperand(3));
6992 TmpInst.addOperand(Inst.getOperand(4)); // cc_out
6993 Inst = TmpInst;
6994 return true;
6995 }
Jim Grosbachd9a9be22011-11-10 23:58:34 +00006996 case ARM::t2LDMIA_UPD: {
6997 // If this is a load of a single register, then we should use
6998 // a post-indexed LDR instruction instead, per the ARM ARM.
6999 if (Inst.getNumOperands() != 5)
7000 return false;
7001 MCInst TmpInst;
7002 TmpInst.setOpcode(ARM::t2LDR_POST);
7003 TmpInst.addOperand(Inst.getOperand(4)); // Rt
7004 TmpInst.addOperand(Inst.getOperand(0)); // Rn_wb
7005 TmpInst.addOperand(Inst.getOperand(1)); // Rn
7006 TmpInst.addOperand(MCOperand::CreateImm(4));
7007 TmpInst.addOperand(Inst.getOperand(2)); // CondCode
7008 TmpInst.addOperand(Inst.getOperand(3));
7009 Inst = TmpInst;
7010 return true;
7011 }
7012 case ARM::t2STMDB_UPD: {
7013 // If this is a store of a single register, then we should use
7014 // a pre-indexed STR instruction instead, per the ARM ARM.
7015 if (Inst.getNumOperands() != 5)
7016 return false;
7017 MCInst TmpInst;
7018 TmpInst.setOpcode(ARM::t2STR_PRE);
7019 TmpInst.addOperand(Inst.getOperand(0)); // Rn_wb
7020 TmpInst.addOperand(Inst.getOperand(4)); // Rt
7021 TmpInst.addOperand(Inst.getOperand(1)); // Rn
7022 TmpInst.addOperand(MCOperand::CreateImm(-4));
7023 TmpInst.addOperand(Inst.getOperand(2)); // CondCode
7024 TmpInst.addOperand(Inst.getOperand(3));
7025 Inst = TmpInst;
7026 return true;
7027 }
Jim Grosbach8ba76c62011-08-11 17:35:48 +00007028 case ARM::LDMIA_UPD:
7029 // If this is a load of a single register via a 'pop', then we should use
7030 // a post-indexed LDR instruction instead, per the ARM ARM.
7031 if (static_cast<ARMOperand*>(Operands[0])->getToken() == "pop" &&
7032 Inst.getNumOperands() == 5) {
7033 MCInst TmpInst;
7034 TmpInst.setOpcode(ARM::LDR_POST_IMM);
7035 TmpInst.addOperand(Inst.getOperand(4)); // Rt
7036 TmpInst.addOperand(Inst.getOperand(0)); // Rn_wb
7037 TmpInst.addOperand(Inst.getOperand(1)); // Rn
7038 TmpInst.addOperand(MCOperand::CreateReg(0)); // am2offset
7039 TmpInst.addOperand(MCOperand::CreateImm(4));
7040 TmpInst.addOperand(Inst.getOperand(2)); // CondCode
7041 TmpInst.addOperand(Inst.getOperand(3));
7042 Inst = TmpInst;
Jim Grosbachafad0532011-11-10 23:42:14 +00007043 return true;
Jim Grosbach8ba76c62011-08-11 17:35:48 +00007044 }
7045 break;
Jim Grosbach27ad83d2011-08-11 18:07:11 +00007046 case ARM::STMDB_UPD:
7047 // If this is a store of a single register via a 'push', then we should use
7048 // a pre-indexed STR instruction instead, per the ARM ARM.
7049 if (static_cast<ARMOperand*>(Operands[0])->getToken() == "push" &&
7050 Inst.getNumOperands() == 5) {
7051 MCInst TmpInst;
7052 TmpInst.setOpcode(ARM::STR_PRE_IMM);
7053 TmpInst.addOperand(Inst.getOperand(0)); // Rn_wb
7054 TmpInst.addOperand(Inst.getOperand(4)); // Rt
7055 TmpInst.addOperand(Inst.getOperand(1)); // addrmode_imm12
7056 TmpInst.addOperand(MCOperand::CreateImm(-4));
7057 TmpInst.addOperand(Inst.getOperand(2)); // CondCode
7058 TmpInst.addOperand(Inst.getOperand(3));
7059 Inst = TmpInst;
7060 }
7061 break;
Jim Grosbachec9ba982011-12-05 21:06:26 +00007062 case ARM::t2ADDri12:
7063 // If the immediate fits for encoding T3 (t2ADDri) and the generic "add"
7064 // mnemonic was used (not "addw"), encoding T3 is preferred.
7065 if (static_cast<ARMOperand*>(Operands[0])->getToken() != "add" ||
7066 ARM_AM::getT2SOImmVal(Inst.getOperand(2).getImm()) == -1)
7067 break;
7068 Inst.setOpcode(ARM::t2ADDri);
7069 Inst.addOperand(MCOperand::CreateReg(0)); // cc_out
7070 break;
7071 case ARM::t2SUBri12:
7072 // If the immediate fits for encoding T3 (t2SUBri) and the generic "sub"
7073 // mnemonic was used (not "subw"), encoding T3 is preferred.
7074 if (static_cast<ARMOperand*>(Operands[0])->getToken() != "sub" ||
7075 ARM_AM::getT2SOImmVal(Inst.getOperand(2).getImm()) == -1)
7076 break;
7077 Inst.setOpcode(ARM::t2SUBri);
7078 Inst.addOperand(MCOperand::CreateReg(0)); // cc_out
7079 break;
Jim Grosbache9ab47a2011-08-16 23:57:34 +00007080 case ARM::tADDi8:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00007081 // If the immediate is in the range 0-7, we want tADDi3 iff Rd was
Jim Grosbach6d606fb2011-08-31 17:07:33 +00007082 // explicitly specified. From the ARM ARM: "Encoding T1 is preferred
7083 // to encoding T2 if <Rd> is specified and encoding T2 is preferred
7084 // to encoding T1 if <Rd> is omitted."
Jim Grosbach199ab902012-03-30 16:31:31 +00007085 if ((unsigned)Inst.getOperand(3).getImm() < 8 && Operands.size() == 6) {
Jim Grosbache9ab47a2011-08-16 23:57:34 +00007086 Inst.setOpcode(ARM::tADDi3);
Jim Grosbachafad0532011-11-10 23:42:14 +00007087 return true;
7088 }
Jim Grosbache9ab47a2011-08-16 23:57:34 +00007089 break;
Jim Grosbachd0c435c2011-09-16 22:58:42 +00007090 case ARM::tSUBi8:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00007091 // If the immediate is in the range 0-7, we want tADDi3 iff Rd was
Jim Grosbachd0c435c2011-09-16 22:58:42 +00007092 // explicitly specified. From the ARM ARM: "Encoding T1 is preferred
7093 // to encoding T2 if <Rd> is specified and encoding T2 is preferred
7094 // to encoding T1 if <Rd> is omitted."
Jim Grosbach199ab902012-03-30 16:31:31 +00007095 if ((unsigned)Inst.getOperand(3).getImm() < 8 && Operands.size() == 6) {
Jim Grosbachd0c435c2011-09-16 22:58:42 +00007096 Inst.setOpcode(ARM::tSUBi3);
Jim Grosbachafad0532011-11-10 23:42:14 +00007097 return true;
7098 }
Jim Grosbachd0c435c2011-09-16 22:58:42 +00007099 break;
Jim Grosbachdef5e342012-03-30 17:20:40 +00007100 case ARM::t2ADDri:
7101 case ARM::t2SUBri: {
7102 // If the destination and first source operand are the same, and
7103 // the flags are compatible with the current IT status, use encoding T2
7104 // instead of T3. For compatibility with the system 'as'. Make sure the
7105 // wide encoding wasn't explicit.
7106 if (Inst.getOperand(0).getReg() != Inst.getOperand(1).getReg() ||
Jim Grosbach74005ae2012-03-30 18:39:43 +00007107 !isARMLowRegister(Inst.getOperand(0).getReg()) ||
Jim Grosbachdef5e342012-03-30 17:20:40 +00007108 (unsigned)Inst.getOperand(2).getImm() > 255 ||
7109 ((!inITBlock() && Inst.getOperand(5).getReg() != ARM::CPSR) ||
7110 (inITBlock() && Inst.getOperand(5).getReg() != 0)) ||
7111 (static_cast<ARMOperand*>(Operands[3])->isToken() &&
7112 static_cast<ARMOperand*>(Operands[3])->getToken() == ".w"))
7113 break;
7114 MCInst TmpInst;
7115 TmpInst.setOpcode(Inst.getOpcode() == ARM::t2ADDri ?
7116 ARM::tADDi8 : ARM::tSUBi8);
7117 TmpInst.addOperand(Inst.getOperand(0));
7118 TmpInst.addOperand(Inst.getOperand(5));
7119 TmpInst.addOperand(Inst.getOperand(0));
7120 TmpInst.addOperand(Inst.getOperand(2));
7121 TmpInst.addOperand(Inst.getOperand(3));
7122 TmpInst.addOperand(Inst.getOperand(4));
7123 Inst = TmpInst;
7124 return true;
7125 }
Jim Grosbache489bab2011-12-05 22:16:39 +00007126 case ARM::t2ADDrr: {
7127 // If the destination and first source operand are the same, and
7128 // there's no setting of the flags, use encoding T2 instead of T3.
7129 // Note that this is only for ADD, not SUB. This mirrors the system
7130 // 'as' behaviour. Make sure the wide encoding wasn't explicit.
7131 if (Inst.getOperand(0).getReg() != Inst.getOperand(1).getReg() ||
7132 Inst.getOperand(5).getReg() != 0 ||
Jim Grosbachb8c719c2011-12-05 22:27:04 +00007133 (static_cast<ARMOperand*>(Operands[3])->isToken() &&
7134 static_cast<ARMOperand*>(Operands[3])->getToken() == ".w"))
Jim Grosbache489bab2011-12-05 22:16:39 +00007135 break;
7136 MCInst TmpInst;
7137 TmpInst.setOpcode(ARM::tADDhirr);
7138 TmpInst.addOperand(Inst.getOperand(0));
7139 TmpInst.addOperand(Inst.getOperand(0));
7140 TmpInst.addOperand(Inst.getOperand(2));
7141 TmpInst.addOperand(Inst.getOperand(3));
7142 TmpInst.addOperand(Inst.getOperand(4));
7143 Inst = TmpInst;
7144 return true;
7145 }
Jim Grosbachc6f32b32012-04-27 23:51:36 +00007146 case ARM::tADDrSP: {
7147 // If the non-SP source operand and the destination operand are not the
7148 // same, we need to use the 32-bit encoding if it's available.
7149 if (Inst.getOperand(0).getReg() != Inst.getOperand(2).getReg()) {
7150 Inst.setOpcode(ARM::t2ADDrr);
7151 Inst.addOperand(MCOperand::CreateReg(0)); // cc_out
7152 return true;
7153 }
7154 break;
7155 }
Owen Anderson29cfe6c2011-09-09 21:48:23 +00007156 case ARM::tB:
7157 // A Thumb conditional branch outside of an IT block is a tBcc.
Jim Grosbachafad0532011-11-10 23:42:14 +00007158 if (Inst.getOperand(1).getImm() != ARMCC::AL && !inITBlock()) {
Owen Anderson29cfe6c2011-09-09 21:48:23 +00007159 Inst.setOpcode(ARM::tBcc);
Jim Grosbachafad0532011-11-10 23:42:14 +00007160 return true;
7161 }
Owen Anderson29cfe6c2011-09-09 21:48:23 +00007162 break;
7163 case ARM::t2B:
7164 // A Thumb2 conditional branch outside of an IT block is a t2Bcc.
Jim Grosbachafad0532011-11-10 23:42:14 +00007165 if (Inst.getOperand(1).getImm() != ARMCC::AL && !inITBlock()){
Owen Anderson29cfe6c2011-09-09 21:48:23 +00007166 Inst.setOpcode(ARM::t2Bcc);
Jim Grosbachafad0532011-11-10 23:42:14 +00007167 return true;
7168 }
Owen Anderson29cfe6c2011-09-09 21:48:23 +00007169 break;
Jim Grosbach99bc8462011-08-31 21:17:31 +00007170 case ARM::t2Bcc:
Jim Grosbacha0d34d32011-09-02 23:22:08 +00007171 // If the conditional is AL or we're in an IT block, we really want t2B.
Jim Grosbachafad0532011-11-10 23:42:14 +00007172 if (Inst.getOperand(1).getImm() == ARMCC::AL || inITBlock()) {
Jim Grosbach99bc8462011-08-31 21:17:31 +00007173 Inst.setOpcode(ARM::t2B);
Jim Grosbachafad0532011-11-10 23:42:14 +00007174 return true;
7175 }
Jim Grosbach99bc8462011-08-31 21:17:31 +00007176 break;
Jim Grosbachcbd4ab12011-08-17 22:57:40 +00007177 case ARM::tBcc:
7178 // If the conditional is AL, we really want tB.
Jim Grosbachafad0532011-11-10 23:42:14 +00007179 if (Inst.getOperand(1).getImm() == ARMCC::AL) {
Jim Grosbachcbd4ab12011-08-17 22:57:40 +00007180 Inst.setOpcode(ARM::tB);
Jim Grosbachafad0532011-11-10 23:42:14 +00007181 return true;
7182 }
Jim Grosbach6ddb5682011-08-18 16:08:39 +00007183 break;
Jim Grosbacha31f2232011-09-07 18:05:34 +00007184 case ARM::tLDMIA: {
7185 // If the register list contains any high registers, or if the writeback
7186 // doesn't match what tLDMIA can do, we need to use the 32-bit encoding
7187 // instead if we're in Thumb2. Otherwise, this should have generated
7188 // an error in validateInstruction().
7189 unsigned Rn = Inst.getOperand(0).getReg();
7190 bool hasWritebackToken =
7191 (static_cast<ARMOperand*>(Operands[3])->isToken() &&
7192 static_cast<ARMOperand*>(Operands[3])->getToken() == "!");
7193 bool listContainsBase;
7194 if (checkLowRegisterList(Inst, 3, Rn, 0, listContainsBase) ||
7195 (!listContainsBase && !hasWritebackToken) ||
7196 (listContainsBase && hasWritebackToken)) {
7197 // 16-bit encoding isn't sufficient. Switch to the 32-bit version.
7198 assert (isThumbTwo());
7199 Inst.setOpcode(hasWritebackToken ? ARM::t2LDMIA_UPD : ARM::t2LDMIA);
7200 // If we're switching to the updating version, we need to insert
7201 // the writeback tied operand.
7202 if (hasWritebackToken)
7203 Inst.insert(Inst.begin(),
7204 MCOperand::CreateReg(Inst.getOperand(0).getReg()));
Jim Grosbachafad0532011-11-10 23:42:14 +00007205 return true;
Jim Grosbacha31f2232011-09-07 18:05:34 +00007206 }
7207 break;
7208 }
Jim Grosbach099c9762011-09-16 20:50:13 +00007209 case ARM::tSTMIA_UPD: {
7210 // If the register list contains any high registers, we need to use
7211 // the 32-bit encoding instead if we're in Thumb2. Otherwise, this
7212 // should have generated an error in validateInstruction().
7213 unsigned Rn = Inst.getOperand(0).getReg();
7214 bool listContainsBase;
7215 if (checkLowRegisterList(Inst, 4, Rn, 0, listContainsBase)) {
7216 // 16-bit encoding isn't sufficient. Switch to the 32-bit version.
7217 assert (isThumbTwo());
7218 Inst.setOpcode(ARM::t2STMIA_UPD);
Jim Grosbachafad0532011-11-10 23:42:14 +00007219 return true;
Jim Grosbach099c9762011-09-16 20:50:13 +00007220 }
7221 break;
7222 }
Jim Grosbach9bded9d2011-11-10 23:17:11 +00007223 case ARM::tPOP: {
7224 bool listContainsBase;
7225 // If the register list contains any high registers, we need to use
7226 // the 32-bit encoding instead if we're in Thumb2. Otherwise, this
7227 // should have generated an error in validateInstruction().
7228 if (!checkLowRegisterList(Inst, 2, 0, ARM::PC, listContainsBase))
Jim Grosbachafad0532011-11-10 23:42:14 +00007229 return false;
Jim Grosbach9bded9d2011-11-10 23:17:11 +00007230 assert (isThumbTwo());
7231 Inst.setOpcode(ARM::t2LDMIA_UPD);
7232 // Add the base register and writeback operands.
7233 Inst.insert(Inst.begin(), MCOperand::CreateReg(ARM::SP));
7234 Inst.insert(Inst.begin(), MCOperand::CreateReg(ARM::SP));
Jim Grosbachafad0532011-11-10 23:42:14 +00007235 return true;
Jim Grosbach9bded9d2011-11-10 23:17:11 +00007236 }
7237 case ARM::tPUSH: {
7238 bool listContainsBase;
7239 if (!checkLowRegisterList(Inst, 2, 0, ARM::LR, listContainsBase))
Jim Grosbachafad0532011-11-10 23:42:14 +00007240 return false;
Jim Grosbach9bded9d2011-11-10 23:17:11 +00007241 assert (isThumbTwo());
7242 Inst.setOpcode(ARM::t2STMDB_UPD);
7243 // Add the base register and writeback operands.
7244 Inst.insert(Inst.begin(), MCOperand::CreateReg(ARM::SP));
7245 Inst.insert(Inst.begin(), MCOperand::CreateReg(ARM::SP));
Jim Grosbachafad0532011-11-10 23:42:14 +00007246 return true;
Jim Grosbach9bded9d2011-11-10 23:17:11 +00007247 }
Jim Grosbachb908b7a2011-09-10 00:15:36 +00007248 case ARM::t2MOVi: {
7249 // If we can use the 16-bit encoding and the user didn't explicitly
7250 // request the 32-bit variant, transform it here.
7251 if (isARMLowRegister(Inst.getOperand(0).getReg()) &&
Jim Grosbach199ab902012-03-30 16:31:31 +00007252 (unsigned)Inst.getOperand(1).getImm() <= 255 &&
Jim Grosbach18b8b172011-09-14 19:12:11 +00007253 ((!inITBlock() && Inst.getOperand(2).getImm() == ARMCC::AL &&
7254 Inst.getOperand(4).getReg() == ARM::CPSR) ||
7255 (inITBlock() && Inst.getOperand(4).getReg() == 0)) &&
Jim Grosbachb908b7a2011-09-10 00:15:36 +00007256 (!static_cast<ARMOperand*>(Operands[2])->isToken() ||
7257 static_cast<ARMOperand*>(Operands[2])->getToken() != ".w")) {
7258 // The operands aren't in the same order for tMOVi8...
7259 MCInst TmpInst;
7260 TmpInst.setOpcode(ARM::tMOVi8);
7261 TmpInst.addOperand(Inst.getOperand(0));
7262 TmpInst.addOperand(Inst.getOperand(4));
7263 TmpInst.addOperand(Inst.getOperand(1));
7264 TmpInst.addOperand(Inst.getOperand(2));
7265 TmpInst.addOperand(Inst.getOperand(3));
7266 Inst = TmpInst;
Jim Grosbachafad0532011-11-10 23:42:14 +00007267 return true;
Jim Grosbachb908b7a2011-09-10 00:15:36 +00007268 }
7269 break;
7270 }
7271 case ARM::t2MOVr: {
7272 // If we can use the 16-bit encoding and the user didn't explicitly
7273 // request the 32-bit variant, transform it here.
7274 if (isARMLowRegister(Inst.getOperand(0).getReg()) &&
7275 isARMLowRegister(Inst.getOperand(1).getReg()) &&
7276 Inst.getOperand(2).getImm() == ARMCC::AL &&
7277 Inst.getOperand(4).getReg() == ARM::CPSR &&
7278 (!static_cast<ARMOperand*>(Operands[2])->isToken() ||
7279 static_cast<ARMOperand*>(Operands[2])->getToken() != ".w")) {
7280 // The operands aren't the same for tMOV[S]r... (no cc_out)
7281 MCInst TmpInst;
7282 TmpInst.setOpcode(Inst.getOperand(4).getReg() ? ARM::tMOVSr : ARM::tMOVr);
7283 TmpInst.addOperand(Inst.getOperand(0));
7284 TmpInst.addOperand(Inst.getOperand(1));
7285 TmpInst.addOperand(Inst.getOperand(2));
7286 TmpInst.addOperand(Inst.getOperand(3));
7287 Inst = TmpInst;
Jim Grosbachafad0532011-11-10 23:42:14 +00007288 return true;
Jim Grosbachb908b7a2011-09-10 00:15:36 +00007289 }
7290 break;
7291 }
Jim Grosbach82213192011-09-19 20:29:33 +00007292 case ARM::t2SXTH:
Jim Grosbachb3519802011-09-20 00:46:54 +00007293 case ARM::t2SXTB:
7294 case ARM::t2UXTH:
7295 case ARM::t2UXTB: {
Jim Grosbach82213192011-09-19 20:29:33 +00007296 // If we can use the 16-bit encoding and the user didn't explicitly
7297 // request the 32-bit variant, transform it here.
7298 if (isARMLowRegister(Inst.getOperand(0).getReg()) &&
7299 isARMLowRegister(Inst.getOperand(1).getReg()) &&
7300 Inst.getOperand(2).getImm() == 0 &&
7301 (!static_cast<ARMOperand*>(Operands[2])->isToken() ||
7302 static_cast<ARMOperand*>(Operands[2])->getToken() != ".w")) {
Jim Grosbachb3519802011-09-20 00:46:54 +00007303 unsigned NewOpc;
7304 switch (Inst.getOpcode()) {
7305 default: llvm_unreachable("Illegal opcode!");
7306 case ARM::t2SXTH: NewOpc = ARM::tSXTH; break;
7307 case ARM::t2SXTB: NewOpc = ARM::tSXTB; break;
7308 case ARM::t2UXTH: NewOpc = ARM::tUXTH; break;
7309 case ARM::t2UXTB: NewOpc = ARM::tUXTB; break;
7310 }
Jim Grosbach82213192011-09-19 20:29:33 +00007311 // The operands aren't the same for thumb1 (no rotate operand).
7312 MCInst TmpInst;
7313 TmpInst.setOpcode(NewOpc);
7314 TmpInst.addOperand(Inst.getOperand(0));
7315 TmpInst.addOperand(Inst.getOperand(1));
7316 TmpInst.addOperand(Inst.getOperand(3));
7317 TmpInst.addOperand(Inst.getOperand(4));
7318 Inst = TmpInst;
Jim Grosbachafad0532011-11-10 23:42:14 +00007319 return true;
Jim Grosbach82213192011-09-19 20:29:33 +00007320 }
7321 break;
7322 }
Jim Grosbache2ca9e52011-12-20 00:59:38 +00007323 case ARM::MOVsi: {
7324 ARM_AM::ShiftOpc SOpc = ARM_AM::getSORegShOp(Inst.getOperand(2).getImm());
Richard Bartonba5b0cc2012-04-25 18:00:18 +00007325 // rrx shifts and asr/lsr of #32 is encoded as 0
7326 if (SOpc == ARM_AM::rrx || SOpc == ARM_AM::asr || SOpc == ARM_AM::lsr)
7327 return false;
Jim Grosbache2ca9e52011-12-20 00:59:38 +00007328 if (ARM_AM::getSORegOffset(Inst.getOperand(2).getImm()) == 0) {
7329 // Shifting by zero is accepted as a vanilla 'MOVr'
7330 MCInst TmpInst;
7331 TmpInst.setOpcode(ARM::MOVr);
7332 TmpInst.addOperand(Inst.getOperand(0));
7333 TmpInst.addOperand(Inst.getOperand(1));
7334 TmpInst.addOperand(Inst.getOperand(3));
7335 TmpInst.addOperand(Inst.getOperand(4));
7336 TmpInst.addOperand(Inst.getOperand(5));
7337 Inst = TmpInst;
7338 return true;
7339 }
7340 return false;
7341 }
Jim Grosbach12ccf452011-12-22 18:04:04 +00007342 case ARM::ANDrsi:
7343 case ARM::ORRrsi:
7344 case ARM::EORrsi:
7345 case ARM::BICrsi:
7346 case ARM::SUBrsi:
7347 case ARM::ADDrsi: {
7348 unsigned newOpc;
7349 ARM_AM::ShiftOpc SOpc = ARM_AM::getSORegShOp(Inst.getOperand(3).getImm());
7350 if (SOpc == ARM_AM::rrx) return false;
7351 switch (Inst.getOpcode()) {
Craig Toppere55c5562012-02-07 02:50:20 +00007352 default: llvm_unreachable("unexpected opcode!");
Jim Grosbach12ccf452011-12-22 18:04:04 +00007353 case ARM::ANDrsi: newOpc = ARM::ANDrr; break;
7354 case ARM::ORRrsi: newOpc = ARM::ORRrr; break;
7355 case ARM::EORrsi: newOpc = ARM::EORrr; break;
7356 case ARM::BICrsi: newOpc = ARM::BICrr; break;
7357 case ARM::SUBrsi: newOpc = ARM::SUBrr; break;
7358 case ARM::ADDrsi: newOpc = ARM::ADDrr; break;
7359 }
7360 // If the shift is by zero, use the non-shifted instruction definition.
Richard Barton35aceb82012-07-09 16:31:14 +00007361 // The exception is for right shifts, where 0 == 32
7362 if (ARM_AM::getSORegOffset(Inst.getOperand(3).getImm()) == 0 &&
7363 !(SOpc == ARM_AM::lsr || SOpc == ARM_AM::asr)) {
Jim Grosbach12ccf452011-12-22 18:04:04 +00007364 MCInst TmpInst;
7365 TmpInst.setOpcode(newOpc);
7366 TmpInst.addOperand(Inst.getOperand(0));
7367 TmpInst.addOperand(Inst.getOperand(1));
7368 TmpInst.addOperand(Inst.getOperand(2));
7369 TmpInst.addOperand(Inst.getOperand(4));
7370 TmpInst.addOperand(Inst.getOperand(5));
7371 TmpInst.addOperand(Inst.getOperand(6));
7372 Inst = TmpInst;
7373 return true;
7374 }
7375 return false;
7376 }
Jim Grosbach82f76d12012-01-25 19:52:01 +00007377 case ARM::ITasm:
Jim Grosbach3d1eac82011-08-26 21:43:41 +00007378 case ARM::t2IT: {
7379 // The mask bits for all but the first condition are represented as
7380 // the low bit of the condition code value implies 't'. We currently
7381 // always have 1 implies 't', so XOR toggle the bits if the low bit
Richard Bartonf435b092012-04-27 08:42:59 +00007382 // of the condition code is zero.
Jim Grosbach3d1eac82011-08-26 21:43:41 +00007383 MCOperand &MO = Inst.getOperand(1);
7384 unsigned Mask = MO.getImm();
Jim Grosbached16ec42011-08-29 22:24:09 +00007385 unsigned OrigMask = Mask;
7386 unsigned TZ = CountTrailingZeros_32(Mask);
Jim Grosbach3d1eac82011-08-26 21:43:41 +00007387 if ((Inst.getOperand(0).getImm() & 1) == 0) {
Jim Grosbach3d1eac82011-08-26 21:43:41 +00007388 assert(Mask && TZ <= 3 && "illegal IT mask value!");
7389 for (unsigned i = 3; i != TZ; --i)
7390 Mask ^= 1 << i;
Richard Bartonf435b092012-04-27 08:42:59 +00007391 }
Jim Grosbach3d1eac82011-08-26 21:43:41 +00007392 MO.setImm(Mask);
Jim Grosbached16ec42011-08-29 22:24:09 +00007393
7394 // Set up the IT block state according to the IT instruction we just
7395 // matched.
7396 assert(!inITBlock() && "nested IT blocks?!");
7397 ITState.Cond = ARMCC::CondCodes(Inst.getOperand(0).getImm());
7398 ITState.Mask = OrigMask; // Use the original mask, not the updated one.
7399 ITState.CurPosition = 0;
7400 ITState.FirstCond = true;
Jim Grosbach3d1eac82011-08-26 21:43:41 +00007401 break;
7402 }
Richard Bartona39625e2012-07-09 16:12:24 +00007403 case ARM::t2LSLrr:
7404 case ARM::t2LSRrr:
7405 case ARM::t2ASRrr:
7406 case ARM::t2SBCrr:
7407 case ARM::t2RORrr:
7408 case ARM::t2BICrr:
7409 {
Richard Bartond5660372012-07-09 16:14:28 +00007410 // Assemblers should use the narrow encodings of these instructions when permissible.
Richard Bartona39625e2012-07-09 16:12:24 +00007411 if ((isARMLowRegister(Inst.getOperand(1).getReg()) &&
7412 isARMLowRegister(Inst.getOperand(2).getReg())) &&
7413 Inst.getOperand(0).getReg() == Inst.getOperand(1).getReg() &&
Richard Barton984d0ba2012-07-09 18:30:56 +00007414 ((!inITBlock() && Inst.getOperand(5).getReg() == ARM::CPSR) ||
7415 (inITBlock() && Inst.getOperand(5).getReg() != ARM::CPSR)) &&
Richard Bartona39625e2012-07-09 16:12:24 +00007416 (!static_cast<ARMOperand*>(Operands[3])->isToken() ||
7417 !static_cast<ARMOperand*>(Operands[3])->getToken().equals_lower(".w"))) {
7418 unsigned NewOpc;
7419 switch (Inst.getOpcode()) {
7420 default: llvm_unreachable("unexpected opcode");
7421 case ARM::t2LSLrr: NewOpc = ARM::tLSLrr; break;
7422 case ARM::t2LSRrr: NewOpc = ARM::tLSRrr; break;
7423 case ARM::t2ASRrr: NewOpc = ARM::tASRrr; break;
7424 case ARM::t2SBCrr: NewOpc = ARM::tSBC; break;
7425 case ARM::t2RORrr: NewOpc = ARM::tROR; break;
7426 case ARM::t2BICrr: NewOpc = ARM::tBIC; break;
7427 }
7428 MCInst TmpInst;
7429 TmpInst.setOpcode(NewOpc);
7430 TmpInst.addOperand(Inst.getOperand(0));
7431 TmpInst.addOperand(Inst.getOperand(5));
7432 TmpInst.addOperand(Inst.getOperand(1));
7433 TmpInst.addOperand(Inst.getOperand(2));
7434 TmpInst.addOperand(Inst.getOperand(3));
7435 TmpInst.addOperand(Inst.getOperand(4));
7436 Inst = TmpInst;
7437 return true;
7438 }
7439 return false;
7440 }
7441 case ARM::t2ANDrr:
7442 case ARM::t2EORrr:
7443 case ARM::t2ADCrr:
7444 case ARM::t2ORRrr:
7445 {
Richard Bartond5660372012-07-09 16:14:28 +00007446 // Assemblers should use the narrow encodings of these instructions when permissible.
Richard Bartona39625e2012-07-09 16:12:24 +00007447 // These instructions are special in that they are commutable, so shorter encodings
7448 // are available more often.
7449 if ((isARMLowRegister(Inst.getOperand(1).getReg()) &&
7450 isARMLowRegister(Inst.getOperand(2).getReg())) &&
7451 (Inst.getOperand(0).getReg() == Inst.getOperand(1).getReg() ||
7452 Inst.getOperand(0).getReg() == Inst.getOperand(2).getReg()) &&
Richard Barton984d0ba2012-07-09 18:30:56 +00007453 ((!inITBlock() && Inst.getOperand(5).getReg() == ARM::CPSR) ||
7454 (inITBlock() && Inst.getOperand(5).getReg() != ARM::CPSR)) &&
Richard Bartona39625e2012-07-09 16:12:24 +00007455 (!static_cast<ARMOperand*>(Operands[3])->isToken() ||
7456 !static_cast<ARMOperand*>(Operands[3])->getToken().equals_lower(".w"))) {
7457 unsigned NewOpc;
7458 switch (Inst.getOpcode()) {
7459 default: llvm_unreachable("unexpected opcode");
7460 case ARM::t2ADCrr: NewOpc = ARM::tADC; break;
7461 case ARM::t2ANDrr: NewOpc = ARM::tAND; break;
7462 case ARM::t2EORrr: NewOpc = ARM::tEOR; break;
7463 case ARM::t2ORRrr: NewOpc = ARM::tORR; break;
7464 }
7465 MCInst TmpInst;
7466 TmpInst.setOpcode(NewOpc);
7467 TmpInst.addOperand(Inst.getOperand(0));
7468 TmpInst.addOperand(Inst.getOperand(5));
7469 if (Inst.getOperand(0).getReg() == Inst.getOperand(1).getReg()) {
7470 TmpInst.addOperand(Inst.getOperand(1));
7471 TmpInst.addOperand(Inst.getOperand(2));
7472 } else {
7473 TmpInst.addOperand(Inst.getOperand(2));
7474 TmpInst.addOperand(Inst.getOperand(1));
7475 }
7476 TmpInst.addOperand(Inst.getOperand(3));
7477 TmpInst.addOperand(Inst.getOperand(4));
7478 Inst = TmpInst;
7479 return true;
7480 }
7481 return false;
7482 }
Jim Grosbach8ba76c62011-08-11 17:35:48 +00007483 }
Jim Grosbachafad0532011-11-10 23:42:14 +00007484 return false;
Jim Grosbach8ba76c62011-08-11 17:35:48 +00007485}
7486
Jim Grosbach3e941ae2011-08-16 20:45:50 +00007487unsigned ARMAsmParser::checkTargetMatchPredicate(MCInst &Inst) {
7488 // 16-bit thumb arithmetic instructions either require or preclude the 'S'
7489 // suffix depending on whether they're in an IT block or not.
Jim Grosbachb7fa2c02011-08-16 22:20:01 +00007490 unsigned Opc = Inst.getOpcode();
Benjamin Kramer0d6d0982011-10-22 16:50:00 +00007491 const MCInstrDesc &MCID = getInstDesc(Opc);
Jim Grosbach3e941ae2011-08-16 20:45:50 +00007492 if (MCID.TSFlags & ARMII::ThumbArithFlagSetting) {
7493 assert(MCID.hasOptionalDef() &&
7494 "optionally flag setting instruction missing optional def operand");
7495 assert(MCID.NumOperands == Inst.getNumOperands() &&
7496 "operand count mismatch!");
7497 // Find the optional-def operand (cc_out).
7498 unsigned OpNo;
7499 for (OpNo = 0;
7500 !MCID.OpInfo[OpNo].isOptionalDef() && OpNo < MCID.NumOperands;
7501 ++OpNo)
7502 ;
7503 // If we're parsing Thumb1, reject it completely.
7504 if (isThumbOne() && Inst.getOperand(OpNo).getReg() != ARM::CPSR)
7505 return Match_MnemonicFail;
7506 // If we're parsing Thumb2, which form is legal depends on whether we're
7507 // in an IT block.
Jim Grosbached16ec42011-08-29 22:24:09 +00007508 if (isThumbTwo() && Inst.getOperand(OpNo).getReg() != ARM::CPSR &&
7509 !inITBlock())
Jim Grosbach3e941ae2011-08-16 20:45:50 +00007510 return Match_RequiresITBlock;
Jim Grosbached16ec42011-08-29 22:24:09 +00007511 if (isThumbTwo() && Inst.getOperand(OpNo).getReg() == ARM::CPSR &&
7512 inITBlock())
7513 return Match_RequiresNotITBlock;
Jim Grosbach3e941ae2011-08-16 20:45:50 +00007514 }
Jim Grosbachb7fa2c02011-08-16 22:20:01 +00007515 // Some high-register supporting Thumb1 encodings only allow both registers
7516 // to be from r0-r7 when in Thumb2.
7517 else if (Opc == ARM::tADDhirr && isThumbOne() &&
7518 isARMLowRegister(Inst.getOperand(1).getReg()) &&
7519 isARMLowRegister(Inst.getOperand(2).getReg()))
7520 return Match_RequiresThumb2;
7521 // Others only require ARMv6 or later.
Jim Grosbachf86cd372011-08-19 20:46:54 +00007522 else if (Opc == ARM::tMOVr && isThumbOne() && !hasV6Ops() &&
Jim Grosbachb7fa2c02011-08-16 22:20:01 +00007523 isARMLowRegister(Inst.getOperand(0).getReg()) &&
7524 isARMLowRegister(Inst.getOperand(1).getReg()))
7525 return Match_RequiresV6;
Jim Grosbach3e941ae2011-08-16 20:45:50 +00007526 return Match_Success;
7527}
7528
Jim Grosbach5117ef72012-04-24 22:40:08 +00007529static const char *getSubtargetFeatureName(unsigned Val);
Chris Lattner9487de62010-10-28 21:28:01 +00007530bool ARMAsmParser::
Chad Rosier49963552012-10-13 00:26:04 +00007531MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode,
Chris Lattner9487de62010-10-28 21:28:01 +00007532 SmallVectorImpl<MCParsedAsmOperand*> &Operands,
Chad Rosier49963552012-10-13 00:26:04 +00007533 MCStreamer &Out, unsigned &ErrorInfo,
7534 bool MatchingInlineAsm) {
Chris Lattner9487de62010-10-28 21:28:01 +00007535 MCInst Inst;
Jim Grosbach120a96a2011-08-15 23:03:29 +00007536 unsigned MatchResult;
Weiming Zhao8f56f882012-11-16 21:55:34 +00007537
Chad Rosier2f480a82012-10-12 22:53:36 +00007538 MatchResult = MatchInstructionImpl(Operands, Inst, ErrorInfo,
Chad Rosier49963552012-10-13 00:26:04 +00007539 MatchingInlineAsm);
Kevin Enderby3164a342010-12-09 19:19:43 +00007540 switch (MatchResult) {
Jim Grosbach120a96a2011-08-15 23:03:29 +00007541 default: break;
Chris Lattnerd27b05e2010-10-28 21:41:58 +00007542 case Match_Success:
Jim Grosbachedaa35a2011-07-26 18:25:39 +00007543 // Context sensitive operand constraints aren't handled by the matcher,
7544 // so check them here.
Jim Grosbacha0d34d32011-09-02 23:22:08 +00007545 if (validateInstruction(Inst, Operands)) {
7546 // Still progress the IT block, otherwise one wrong condition causes
7547 // nasty cascading errors.
7548 forwardITPosition();
Jim Grosbachedaa35a2011-07-26 18:25:39 +00007549 return true;
Jim Grosbacha0d34d32011-09-02 23:22:08 +00007550 }
Jim Grosbachedaa35a2011-07-26 18:25:39 +00007551
Jim Grosbach8ba76c62011-08-11 17:35:48 +00007552 // Some instructions need post-processing to, for example, tweak which
Jim Grosbachafad0532011-11-10 23:42:14 +00007553 // encoding is selected. Loop on it while changes happen so the
7554 // individual transformations can chain off each other. E.g.,
7555 // tPOP(r8)->t2LDMIA_UPD(sp,r8)->t2STR_POST(sp,r8)
7556 while (processInstruction(Inst, Operands))
7557 ;
Jim Grosbach8ba76c62011-08-11 17:35:48 +00007558
Jim Grosbacha0d34d32011-09-02 23:22:08 +00007559 // Only move forward at the very end so that everything in validate
7560 // and process gets a consistent answer about whether we're in an IT
7561 // block.
7562 forwardITPosition();
7563
Jim Grosbach82f76d12012-01-25 19:52:01 +00007564 // ITasm is an ARM mode pseudo-instruction that just sets the ITblock and
7565 // doesn't actually encode.
7566 if (Inst.getOpcode() == ARM::ITasm)
7567 return false;
7568
Jim Grosbach5e5eabb2012-01-26 23:20:15 +00007569 Inst.setLoc(IDLoc);
Chris Lattner9487de62010-10-28 21:28:01 +00007570 Out.EmitInstruction(Inst);
7571 return false;
Jim Grosbach5117ef72012-04-24 22:40:08 +00007572 case Match_MissingFeature: {
7573 assert(ErrorInfo && "Unknown missing feature!");
7574 // Special case the error message for the very common case where only
7575 // a single subtarget feature is missing (Thumb vs. ARM, e.g.).
7576 std::string Msg = "instruction requires:";
7577 unsigned Mask = 1;
7578 for (unsigned i = 0; i < (sizeof(ErrorInfo)*8-1); ++i) {
7579 if (ErrorInfo & Mask) {
7580 Msg += " ";
7581 Msg += getSubtargetFeatureName(ErrorInfo & Mask);
7582 }
7583 Mask <<= 1;
7584 }
7585 return Error(IDLoc, Msg);
7586 }
Chris Lattnerd27b05e2010-10-28 21:41:58 +00007587 case Match_InvalidOperand: {
7588 SMLoc ErrorLoc = IDLoc;
7589 if (ErrorInfo != ~0U) {
7590 if (ErrorInfo >= Operands.size())
7591 return Error(IDLoc, "too few operands for instruction");
Jim Grosbach624bcc72010-10-29 14:46:02 +00007592
Chris Lattnerd27b05e2010-10-28 21:41:58 +00007593 ErrorLoc = ((ARMOperand*)Operands[ErrorInfo])->getStartLoc();
7594 if (ErrorLoc == SMLoc()) ErrorLoc = IDLoc;
7595 }
Jim Grosbach624bcc72010-10-29 14:46:02 +00007596
Chris Lattnerd27b05e2010-10-28 21:41:58 +00007597 return Error(ErrorLoc, "invalid operand for instruction");
Chris Lattner9487de62010-10-28 21:28:01 +00007598 }
Chris Lattnerd27b05e2010-10-28 21:41:58 +00007599 case Match_MnemonicFail:
Benjamin Kramer673824b2012-04-15 17:04:27 +00007600 return Error(IDLoc, "invalid instruction",
7601 ((ARMOperand*)Operands[0])->getLocRange());
Jim Grosbached16ec42011-08-29 22:24:09 +00007602 case Match_RequiresNotITBlock:
7603 return Error(IDLoc, "flag setting instruction only valid outside IT block");
Jim Grosbach3e941ae2011-08-16 20:45:50 +00007604 case Match_RequiresITBlock:
7605 return Error(IDLoc, "instruction only valid inside IT block");
Jim Grosbachb7fa2c02011-08-16 22:20:01 +00007606 case Match_RequiresV6:
7607 return Error(IDLoc, "instruction variant requires ARMv6 or later");
7608 case Match_RequiresThumb2:
7609 return Error(IDLoc, "instruction variant requires Thumb2");
Jim Grosbach087affe2012-06-22 23:56:48 +00007610 case Match_ImmRange0_15: {
7611 SMLoc ErrorLoc = ((ARMOperand*)Operands[ErrorInfo])->getStartLoc();
7612 if (ErrorLoc == SMLoc()) ErrorLoc = IDLoc;
7613 return Error(ErrorLoc, "immediate operand must be in the range [0,15]");
7614 }
Chris Lattnerd27b05e2010-10-28 21:41:58 +00007615 }
Jim Grosbach624bcc72010-10-29 14:46:02 +00007616
Eric Christopher91d7b902010-10-29 09:26:59 +00007617 llvm_unreachable("Implement any new match types added!");
Chris Lattner9487de62010-10-28 21:28:01 +00007618}
7619
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00007620/// parseDirective parses the arm specific directives
Kevin Enderbyccab3172009-09-15 00:27:25 +00007621bool ARMAsmParser::ParseDirective(AsmToken DirectiveID) {
7622 StringRef IDVal = DirectiveID.getIdentifier();
7623 if (IDVal == ".word")
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00007624 return parseDirectiveWord(4, DirectiveID.getLoc());
Kevin Enderby146dcf22009-10-15 20:48:48 +00007625 else if (IDVal == ".thumb")
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00007626 return parseDirectiveThumb(DirectiveID.getLoc());
Jim Grosbach7f882392011-12-07 18:04:19 +00007627 else if (IDVal == ".arm")
7628 return parseDirectiveARM(DirectiveID.getLoc());
Kevin Enderby146dcf22009-10-15 20:48:48 +00007629 else if (IDVal == ".thumb_func")
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00007630 return parseDirectiveThumbFunc(DirectiveID.getLoc());
Kevin Enderby146dcf22009-10-15 20:48:48 +00007631 else if (IDVal == ".code")
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00007632 return parseDirectiveCode(DirectiveID.getLoc());
Kevin Enderby146dcf22009-10-15 20:48:48 +00007633 else if (IDVal == ".syntax")
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00007634 return parseDirectiveSyntax(DirectiveID.getLoc());
Jim Grosbachab5830e2011-12-14 02:16:11 +00007635 else if (IDVal == ".unreq")
7636 return parseDirectiveUnreq(DirectiveID.getLoc());
Jason W Kim135d2442011-12-20 17:38:12 +00007637 else if (IDVal == ".arch")
7638 return parseDirectiveArch(DirectiveID.getLoc());
7639 else if (IDVal == ".eabi_attribute")
7640 return parseDirectiveEabiAttr(DirectiveID.getLoc());
Kevin Enderbyccab3172009-09-15 00:27:25 +00007641 return true;
7642}
7643
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00007644/// parseDirectiveWord
Kevin Enderbyccab3172009-09-15 00:27:25 +00007645/// ::= .word [ expression (, expression)* ]
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00007646bool ARMAsmParser::parseDirectiveWord(unsigned Size, SMLoc L) {
Kevin Enderbyccab3172009-09-15 00:27:25 +00007647 if (getLexer().isNot(AsmToken::EndOfStatement)) {
7648 for (;;) {
7649 const MCExpr *Value;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00007650 if (getParser().parseExpression(Value))
Kevin Enderbyccab3172009-09-15 00:27:25 +00007651 return true;
7652
Eric Christopherbf7bc492013-01-09 03:52:05 +00007653 getParser().getStreamer().EmitValue(Value, Size);
Kevin Enderbyccab3172009-09-15 00:27:25 +00007654
7655 if (getLexer().is(AsmToken::EndOfStatement))
7656 break;
Jim Grosbach624bcc72010-10-29 14:46:02 +00007657
Kevin Enderbyccab3172009-09-15 00:27:25 +00007658 // FIXME: Improve diagnostic.
7659 if (getLexer().isNot(AsmToken::Comma))
7660 return Error(L, "unexpected token in directive");
Sean Callanana83fd7d2010-01-19 20:27:46 +00007661 Parser.Lex();
Kevin Enderbyccab3172009-09-15 00:27:25 +00007662 }
7663 }
7664
Sean Callanana83fd7d2010-01-19 20:27:46 +00007665 Parser.Lex();
Kevin Enderbyccab3172009-09-15 00:27:25 +00007666 return false;
7667}
7668
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00007669/// parseDirectiveThumb
Kevin Enderby146dcf22009-10-15 20:48:48 +00007670/// ::= .thumb
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00007671bool ARMAsmParser::parseDirectiveThumb(SMLoc L) {
Kevin Enderby146dcf22009-10-15 20:48:48 +00007672 if (getLexer().isNot(AsmToken::EndOfStatement))
7673 return Error(L, "unexpected token in directive");
Sean Callanana83fd7d2010-01-19 20:27:46 +00007674 Parser.Lex();
Kevin Enderby146dcf22009-10-15 20:48:48 +00007675
Jim Grosbach7f882392011-12-07 18:04:19 +00007676 if (!isThumb())
7677 SwitchMode();
7678 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code16);
7679 return false;
7680}
7681
7682/// parseDirectiveARM
7683/// ::= .arm
7684bool ARMAsmParser::parseDirectiveARM(SMLoc L) {
7685 if (getLexer().isNot(AsmToken::EndOfStatement))
7686 return Error(L, "unexpected token in directive");
7687 Parser.Lex();
7688
7689 if (isThumb())
7690 SwitchMode();
7691 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code32);
Kevin Enderby146dcf22009-10-15 20:48:48 +00007692 return false;
7693}
7694
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00007695/// parseDirectiveThumbFunc
Kevin Enderby146dcf22009-10-15 20:48:48 +00007696/// ::= .thumbfunc symbol_name
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00007697bool ARMAsmParser::parseDirectiveThumbFunc(SMLoc L) {
Rafael Espindolae90c1cb2011-05-16 16:17:21 +00007698 const MCAsmInfo &MAI = getParser().getStreamer().getContext().getAsmInfo();
7699 bool isMachO = MAI.hasSubsectionsViaSymbols();
7700 StringRef Name;
Jim Grosbach1152cc02011-12-21 22:30:16 +00007701 bool needFuncName = true;
Rafael Espindolae90c1cb2011-05-16 16:17:21 +00007702
Jim Grosbach1152cc02011-12-21 22:30:16 +00007703 // Darwin asm has (optionally) function name after .thumb_func direction
Rafael Espindolae90c1cb2011-05-16 16:17:21 +00007704 // ELF doesn't
7705 if (isMachO) {
7706 const AsmToken &Tok = Parser.getTok();
Jim Grosbach1152cc02011-12-21 22:30:16 +00007707 if (Tok.isNot(AsmToken::EndOfStatement)) {
7708 if (Tok.isNot(AsmToken::Identifier) && Tok.isNot(AsmToken::String))
7709 return Error(L, "unexpected token in .thumb_func directive");
7710 Name = Tok.getIdentifier();
7711 Parser.Lex(); // Consume the identifier token.
7712 needFuncName = false;
7713 }
Rafael Espindolae90c1cb2011-05-16 16:17:21 +00007714 }
7715
Jim Grosbach1152cc02011-12-21 22:30:16 +00007716 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderby146dcf22009-10-15 20:48:48 +00007717 return Error(L, "unexpected token in directive");
Jim Grosbach1152cc02011-12-21 22:30:16 +00007718
7719 // Eat the end of statement and any blank lines that follow.
7720 while (getLexer().is(AsmToken::EndOfStatement))
7721 Parser.Lex();
Kevin Enderby146dcf22009-10-15 20:48:48 +00007722
Rafael Espindolae90c1cb2011-05-16 16:17:21 +00007723 // FIXME: assuming function name will be the line following .thumb_func
Jim Grosbach1152cc02011-12-21 22:30:16 +00007724 // We really should be checking the next symbol definition even if there's
7725 // stuff in between.
7726 if (needFuncName) {
Jim Grosbach42ba6282011-11-10 20:48:53 +00007727 Name = Parser.getTok().getIdentifier();
Rafael Espindolae90c1cb2011-05-16 16:17:21 +00007728 }
7729
Jim Grosbachc6db8ce2010-11-05 22:33:53 +00007730 // Mark symbol as a thumb symbol.
7731 MCSymbol *Func = getParser().getContext().GetOrCreateSymbol(Name);
7732 getParser().getStreamer().EmitThumbFunc(Func);
Kevin Enderby146dcf22009-10-15 20:48:48 +00007733 return false;
7734}
7735
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00007736/// parseDirectiveSyntax
Kevin Enderby146dcf22009-10-15 20:48:48 +00007737/// ::= .syntax unified | divided
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00007738bool ARMAsmParser::parseDirectiveSyntax(SMLoc L) {
Sean Callanan936b0d32010-01-19 21:44:56 +00007739 const AsmToken &Tok = Parser.getTok();
Kevin Enderby146dcf22009-10-15 20:48:48 +00007740 if (Tok.isNot(AsmToken::Identifier))
7741 return Error(L, "unexpected token in .syntax directive");
Benjamin Kramer92d89982010-07-14 22:38:02 +00007742 StringRef Mode = Tok.getString();
Duncan Sands257eba42010-06-29 13:04:35 +00007743 if (Mode == "unified" || Mode == "UNIFIED")
Sean Callanana83fd7d2010-01-19 20:27:46 +00007744 Parser.Lex();
Duncan Sands257eba42010-06-29 13:04:35 +00007745 else if (Mode == "divided" || Mode == "DIVIDED")
Kevin Enderbye9f2f0c2011-01-27 23:22:36 +00007746 return Error(L, "'.syntax divided' arm asssembly not supported");
Kevin Enderby146dcf22009-10-15 20:48:48 +00007747 else
7748 return Error(L, "unrecognized syntax mode in .syntax directive");
7749
7750 if (getLexer().isNot(AsmToken::EndOfStatement))
Sean Callanan936b0d32010-01-19 21:44:56 +00007751 return Error(Parser.getTok().getLoc(), "unexpected token in directive");
Sean Callanana83fd7d2010-01-19 20:27:46 +00007752 Parser.Lex();
Kevin Enderby146dcf22009-10-15 20:48:48 +00007753
7754 // TODO tell the MC streamer the mode
7755 // getParser().getStreamer().Emit???();
7756 return false;
7757}
7758
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00007759/// parseDirectiveCode
Kevin Enderby146dcf22009-10-15 20:48:48 +00007760/// ::= .code 16 | 32
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00007761bool ARMAsmParser::parseDirectiveCode(SMLoc L) {
Sean Callanan936b0d32010-01-19 21:44:56 +00007762 const AsmToken &Tok = Parser.getTok();
Kevin Enderby146dcf22009-10-15 20:48:48 +00007763 if (Tok.isNot(AsmToken::Integer))
7764 return Error(L, "unexpected token in .code directive");
Sean Callanan936b0d32010-01-19 21:44:56 +00007765 int64_t Val = Parser.getTok().getIntVal();
Duncan Sands257eba42010-06-29 13:04:35 +00007766 if (Val == 16)
Sean Callanana83fd7d2010-01-19 20:27:46 +00007767 Parser.Lex();
Duncan Sands257eba42010-06-29 13:04:35 +00007768 else if (Val == 32)
Sean Callanana83fd7d2010-01-19 20:27:46 +00007769 Parser.Lex();
Kevin Enderby146dcf22009-10-15 20:48:48 +00007770 else
7771 return Error(L, "invalid operand to .code directive");
7772
7773 if (getLexer().isNot(AsmToken::EndOfStatement))
Sean Callanan936b0d32010-01-19 21:44:56 +00007774 return Error(Parser.getTok().getLoc(), "unexpected token in directive");
Sean Callanana83fd7d2010-01-19 20:27:46 +00007775 Parser.Lex();
Kevin Enderby146dcf22009-10-15 20:48:48 +00007776
Evan Cheng284b4672011-07-08 22:36:29 +00007777 if (Val == 16) {
Jim Grosbachf471ac32011-09-06 18:46:23 +00007778 if (!isThumb())
Evan Cheng91111d22011-07-09 05:47:46 +00007779 SwitchMode();
Jim Grosbachf471ac32011-09-06 18:46:23 +00007780 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code16);
Evan Cheng284b4672011-07-08 22:36:29 +00007781 } else {
Jim Grosbachf471ac32011-09-06 18:46:23 +00007782 if (isThumb())
Evan Cheng91111d22011-07-09 05:47:46 +00007783 SwitchMode();
Jim Grosbachf471ac32011-09-06 18:46:23 +00007784 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code32);
Evan Cheng45543ba2011-07-08 22:49:55 +00007785 }
Jim Grosbach2db0ea02010-11-05 22:40:53 +00007786
Kevin Enderby146dcf22009-10-15 20:48:48 +00007787 return false;
7788}
7789
Jim Grosbachab5830e2011-12-14 02:16:11 +00007790/// parseDirectiveReq
7791/// ::= name .req registername
7792bool ARMAsmParser::parseDirectiveReq(StringRef Name, SMLoc L) {
7793 Parser.Lex(); // Eat the '.req' token.
7794 unsigned Reg;
7795 SMLoc SRegLoc, ERegLoc;
7796 if (ParseRegister(Reg, SRegLoc, ERegLoc)) {
Jim Grosbachd2037eb2013-02-20 22:21:35 +00007797 Parser.eatToEndOfStatement();
Jim Grosbachab5830e2011-12-14 02:16:11 +00007798 return Error(SRegLoc, "register name expected");
7799 }
7800
7801 // Shouldn't be anything else.
7802 if (Parser.getTok().isNot(AsmToken::EndOfStatement)) {
Jim Grosbachd2037eb2013-02-20 22:21:35 +00007803 Parser.eatToEndOfStatement();
Jim Grosbachab5830e2011-12-14 02:16:11 +00007804 return Error(Parser.getTok().getLoc(),
7805 "unexpected input in .req directive.");
7806 }
7807
7808 Parser.Lex(); // Consume the EndOfStatement
7809
7810 if (RegisterReqs.GetOrCreateValue(Name, Reg).getValue() != Reg)
7811 return Error(SRegLoc, "redefinition of '" + Name +
7812 "' does not match original.");
7813
7814 return false;
7815}
7816
7817/// parseDirectiveUneq
7818/// ::= .unreq registername
7819bool ARMAsmParser::parseDirectiveUnreq(SMLoc L) {
7820 if (Parser.getTok().isNot(AsmToken::Identifier)) {
Jim Grosbachd2037eb2013-02-20 22:21:35 +00007821 Parser.eatToEndOfStatement();
Jim Grosbachab5830e2011-12-14 02:16:11 +00007822 return Error(L, "unexpected input in .unreq directive.");
7823 }
7824 RegisterReqs.erase(Parser.getTok().getIdentifier());
7825 Parser.Lex(); // Eat the identifier.
7826 return false;
7827}
7828
Jason W Kim135d2442011-12-20 17:38:12 +00007829/// parseDirectiveArch
7830/// ::= .arch token
7831bool ARMAsmParser::parseDirectiveArch(SMLoc L) {
7832 return true;
7833}
7834
7835/// parseDirectiveEabiAttr
7836/// ::= .eabi_attribute int, int
7837bool ARMAsmParser::parseDirectiveEabiAttr(SMLoc L) {
7838 return true;
7839}
7840
Kevin Enderby8be42bd2009-10-30 22:55:57 +00007841/// Force static initialization.
Kevin Enderbyccab3172009-09-15 00:27:25 +00007842extern "C" void LLVMInitializeARMAsmParser() {
Evan Cheng11424442011-07-26 00:24:13 +00007843 RegisterMCAsmParser<ARMAsmParser> X(TheARMTarget);
7844 RegisterMCAsmParser<ARMAsmParser> Y(TheThumbTarget);
Kevin Enderbyccab3172009-09-15 00:27:25 +00007845}
Daniel Dunbar5cd4d0f2010-08-11 05:24:50 +00007846
Chris Lattner3e4582a2010-09-06 19:11:01 +00007847#define GET_REGISTER_MATCHER
Craig Topper3ec7c2a2012-04-25 06:56:34 +00007848#define GET_SUBTARGET_FEATURE_NAME
Chris Lattner3e4582a2010-09-06 19:11:01 +00007849#define GET_MATCHER_IMPLEMENTATION
Daniel Dunbar5cd4d0f2010-08-11 05:24:50 +00007850#include "ARMGenAsmMatcher.inc"
Jim Grosbach231e7aa2013-02-06 06:00:11 +00007851
7852// Define this matcher function after the auto-generated include so we
7853// have the match class enum definitions.
7854unsigned ARMAsmParser::validateTargetOperandClass(MCParsedAsmOperand *AsmOp,
7855 unsigned Kind) {
7856 ARMOperand *Op = static_cast<ARMOperand*>(AsmOp);
7857 // If the kind is a token for a literal immediate, check if our asm
7858 // operand matches. This is for InstAliases which have a fixed-value
7859 // immediate in the syntax.
7860 if (Kind == MCK__35_0 && Op->isImm()) {
7861 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Op->getImm());
7862 if (!CE)
7863 return Match_InvalidOperand;
7864 if (CE->getValue() == 0)
7865 return Match_Success;
7866 }
7867 return Match_InvalidOperand;
7868}