blob: c642fdc24ca2672a517ff11cedc8bdb55db1eeb0 [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
Logan Chien8cbb80d2013-10-28 17:51:12 +000010#include "ARMFPUName.h"
Amara Emerson52cfb6a2013-10-03 09:31:51 +000011#include "ARMFeatures.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000012#include "MCTargetDesc/ARMAddressingModes.h"
Logan Chien439e8f92013-12-11 17:16:25 +000013#include "MCTargetDesc/ARMArchName.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000014#include "MCTargetDesc/ARMBaseInfo.h"
15#include "MCTargetDesc/ARMMCExpr.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"
Saleem Abdulrasoolc0da2cb2013-12-19 05:17:58 +000018#include "llvm/ADT/StringExtras.h"
Daniel Dunbar188b47b2010-08-11 06:37:20 +000019#include "llvm/ADT/StringSwitch.h"
Chris Lattner00646cf2010-01-22 01:44:57 +000020#include "llvm/ADT/Twine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000021#include "llvm/MC/MCAsmInfo.h"
Jack Carter718da0b2013-01-30 02:24:33 +000022#include "llvm/MC/MCAssembler.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000023#include "llvm/MC/MCContext.h"
Tim Northoverd6a729b2014-01-06 14:28:05 +000024#include "llvm/MC/MCDisassembler.h"
Jack Carter718da0b2013-01-30 02:24:33 +000025#include "llvm/MC/MCELFStreamer.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000026#include "llvm/MC/MCExpr.h"
27#include "llvm/MC/MCInst.h"
28#include "llvm/MC/MCInstrDesc.h"
Joey Gouly0e76fa72013-09-12 10:28:05 +000029#include "llvm/MC/MCInstrInfo.h"
Saleem Abdulrasool39f773f2014-03-20 06:05:33 +000030#include "llvm/MC/MCObjectFileInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000031#include "llvm/MC/MCParser/MCAsmLexer.h"
32#include "llvm/MC/MCParser/MCAsmParser.h"
33#include "llvm/MC/MCParser/MCParsedAsmOperand.h"
34#include "llvm/MC/MCRegisterInfo.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000035#include "llvm/MC/MCSection.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000036#include "llvm/MC/MCStreamer.h"
37#include "llvm/MC/MCSubtargetInfo.h"
David Peixottoe407d092013-12-19 18:12:36 +000038#include "llvm/MC/MCSymbol.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000039#include "llvm/MC/MCTargetAsmParser.h"
Saleem Abdulrasool278a9f42014-01-19 08:25:27 +000040#include "llvm/Support/ARMBuildAttributes.h"
Saleem Abdulrasool662f5c12014-01-21 02:33:02 +000041#include "llvm/Support/ARMEHABI.h"
Saleem Abdulrasool39f773f2014-03-20 06:05:33 +000042#include "llvm/Support/COFF.h"
Tim Northoverd6a729b2014-01-06 14:28:05 +000043#include "llvm/Support/Debug.h"
Jack Carter718da0b2013-01-30 02:24:33 +000044#include "llvm/Support/ELF.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000045#include "llvm/Support/MathExtras.h"
46#include "llvm/Support/SourceMgr.h"
47#include "llvm/Support/TargetRegistry.h"
48#include "llvm/Support/raw_ostream.h"
Evan Cheng4d1ca962011-07-08 01:53:10 +000049
Kevin Enderbyccab3172009-09-15 00:27:25 +000050using namespace llvm;
51
Chris Lattnerbd7c9fa2010-10-28 17:20:03 +000052namespace {
Bill Wendlingee7f1f92010-11-06 21:42:12 +000053
54class ARMOperand;
Jim Grosbach624bcc72010-10-29 14:46:02 +000055
Jim Grosbach04945c42011-12-02 00:35:16 +000056enum VectorLaneTy { NoLanes, AllLanes, IndexedLane };
Jim Grosbachcd6f5e72011-11-30 01:09:44 +000057
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +000058class UnwindContext {
59 MCAsmParser &Parser;
60
Saleem Abdulrasool4cb063c2014-01-07 02:29:00 +000061 typedef SmallVector<SMLoc, 4> Locs;
62
63 Locs FnStartLocs;
64 Locs CantUnwindLocs;
65 Locs PersonalityLocs;
Saleem Abdulrasool662f5c12014-01-21 02:33:02 +000066 Locs PersonalityIndexLocs;
Saleem Abdulrasool4cb063c2014-01-07 02:29:00 +000067 Locs HandlerDataLocs;
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +000068 int FPReg;
69
70public:
Saleem Abdulrasool5d962d32014-01-30 04:46:24 +000071 UnwindContext(MCAsmParser &P) : Parser(P), FPReg(ARM::SP) {}
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +000072
Saleem Abdulrasool4cb063c2014-01-07 02:29:00 +000073 bool hasFnStart() const { return !FnStartLocs.empty(); }
74 bool cantUnwind() const { return !CantUnwindLocs.empty(); }
75 bool hasHandlerData() const { return !HandlerDataLocs.empty(); }
Saleem Abdulrasool662f5c12014-01-21 02:33:02 +000076 bool hasPersonality() const {
77 return !(PersonalityLocs.empty() && PersonalityIndexLocs.empty());
78 }
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +000079
Saleem Abdulrasool4cb063c2014-01-07 02:29:00 +000080 void recordFnStart(SMLoc L) { FnStartLocs.push_back(L); }
81 void recordCantUnwind(SMLoc L) { CantUnwindLocs.push_back(L); }
82 void recordPersonality(SMLoc L) { PersonalityLocs.push_back(L); }
83 void recordHandlerData(SMLoc L) { HandlerDataLocs.push_back(L); }
Saleem Abdulrasool662f5c12014-01-21 02:33:02 +000084 void recordPersonalityIndex(SMLoc L) { PersonalityIndexLocs.push_back(L); }
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +000085
86 void saveFPReg(int Reg) { FPReg = Reg; }
87 int getFPReg() const { return FPReg; }
88
89 void emitFnStartLocNotes() const {
Saleem Abdulrasool4cb063c2014-01-07 02:29:00 +000090 for (Locs::const_iterator FI = FnStartLocs.begin(), FE = FnStartLocs.end();
91 FI != FE; ++FI)
92 Parser.Note(*FI, ".fnstart was specified here");
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +000093 }
94 void emitCantUnwindLocNotes() const {
Saleem Abdulrasool4cb063c2014-01-07 02:29:00 +000095 for (Locs::const_iterator UI = CantUnwindLocs.begin(),
96 UE = CantUnwindLocs.end(); UI != UE; ++UI)
97 Parser.Note(*UI, ".cantunwind was specified here");
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +000098 }
99 void emitHandlerDataLocNotes() const {
Saleem Abdulrasool4cb063c2014-01-07 02:29:00 +0000100 for (Locs::const_iterator HI = HandlerDataLocs.begin(),
101 HE = HandlerDataLocs.end(); HI != HE; ++HI)
102 Parser.Note(*HI, ".handlerdata was specified here");
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +0000103 }
104 void emitPersonalityLocNotes() const {
Saleem Abdulrasool4cb063c2014-01-07 02:29:00 +0000105 for (Locs::const_iterator PI = PersonalityLocs.begin(),
Saleem Abdulrasool662f5c12014-01-21 02:33:02 +0000106 PE = PersonalityLocs.end(),
107 PII = PersonalityIndexLocs.begin(),
108 PIE = PersonalityIndexLocs.end();
109 PI != PE || PII != PIE;) {
110 if (PI != PE && (PII == PIE || PI->getPointer() < PII->getPointer()))
111 Parser.Note(*PI++, ".personality was specified here");
112 else if (PII != PIE && (PI == PE || PII->getPointer() < PI->getPointer()))
113 Parser.Note(*PII++, ".personalityindex was specified here");
114 else
115 llvm_unreachable(".personality and .personalityindex cannot be "
116 "at the same location");
117 }
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +0000118 }
119
120 void reset() {
Saleem Abdulrasool4cb063c2014-01-07 02:29:00 +0000121 FnStartLocs = Locs();
122 CantUnwindLocs = Locs();
123 PersonalityLocs = Locs();
124 HandlerDataLocs = Locs();
Saleem Abdulrasool662f5c12014-01-21 02:33:02 +0000125 PersonalityIndexLocs = Locs();
Saleem Abdulrasool5d962d32014-01-30 04:46:24 +0000126 FPReg = ARM::SP;
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +0000127 }
128};
129
Evan Cheng11424442011-07-26 00:24:13 +0000130class ARMAsmParser : public MCTargetAsmParser {
Evan Cheng91111d22011-07-09 05:47:46 +0000131 MCSubtargetInfo &STI;
Kevin Enderbyccab3172009-09-15 00:27:25 +0000132 MCAsmParser &Parser;
Joey Gouly0e76fa72013-09-12 10:28:05 +0000133 const MCInstrInfo &MII;
Jim Grosbachc988e0c2012-03-05 19:33:30 +0000134 const MCRegisterInfo *MRI;
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +0000135 UnwindContext UC;
David Peixottoe407d092013-12-19 18:12:36 +0000136
Rafael Espindolaa17151a2013-10-08 13:08:17 +0000137 ARMTargetStreamer &getTargetStreamer() {
Saleem Abdulrasoolbfdfb142014-09-18 04:28:29 +0000138 assert(getParser().getStreamer().getTargetStreamer() &&
139 "do not have a target streamer");
Rafael Espindola4a1a3602014-01-14 01:21:46 +0000140 MCTargetStreamer &TS = *getParser().getStreamer().getTargetStreamer();
Rafael Espindolaa17151a2013-10-08 13:08:17 +0000141 return static_cast<ARMTargetStreamer &>(TS);
142 }
143
Jim Grosbachab5830e2011-12-14 02:16:11 +0000144 // Map of register aliases registers via the .req directive.
145 StringMap<unsigned> RegisterReqs;
146
Tim Northover1744d0a2013-10-25 12:49:50 +0000147 bool NextSymbolIsThumb;
148
Jim Grosbached16ec42011-08-29 22:24:09 +0000149 struct {
150 ARMCC::CondCodes Cond; // Condition for IT block.
151 unsigned Mask:4; // Condition mask for instructions.
152 // Starting at first 1 (from lsb).
153 // '1' condition as indicated in IT.
154 // '0' inverse of condition (else).
155 // Count of instructions in IT block is
156 // 4 - trailingzeroes(mask)
157
158 bool FirstCond; // Explicit flag for when we're parsing the
159 // First instruction in the IT block. It's
160 // implied in the mask, so needs special
161 // handling.
162
163 unsigned CurPosition; // Current position in parsing of IT
164 // block. In range [0,3]. Initialized
165 // according to count of instructions in block.
166 // ~0U if no active IT block.
167 } ITState;
168 bool inITBlock() { return ITState.CurPosition != ~0U;}
Jim Grosbacha0d34d32011-09-02 23:22:08 +0000169 void forwardITPosition() {
170 if (!inITBlock()) return;
171 // Move to the next instruction in the IT block, if there is one. If not,
172 // mark the block as done.
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +0000173 unsigned TZ = countTrailingZeros(ITState.Mask);
Jim Grosbacha0d34d32011-09-02 23:22:08 +0000174 if (++ITState.CurPosition == 5 - TZ)
175 ITState.CurPosition = ~0U; // Done with the IT block after this.
176 }
Jim Grosbached16ec42011-08-29 22:24:09 +0000177
178
Kevin Enderbyccab3172009-09-15 00:27:25 +0000179 MCAsmParser &getParser() const { return Parser; }
Kevin Enderbyccab3172009-09-15 00:27:25 +0000180 MCAsmLexer &getLexer() const { return Parser.getLexer(); }
181
Saleem Abdulrasool69c7caf2014-01-07 02:28:31 +0000182 void Note(SMLoc L, const Twine &Msg, ArrayRef<SMRange> Ranges = None) {
183 return Parser.Note(L, Msg, Ranges);
184 }
Benjamin Kramer673824b2012-04-15 17:04:27 +0000185 bool Warning(SMLoc L, const Twine &Msg,
Dmitri Gribenko3238fb72013-05-05 00:40:33 +0000186 ArrayRef<SMRange> Ranges = None) {
Benjamin Kramer673824b2012-04-15 17:04:27 +0000187 return Parser.Warning(L, Msg, Ranges);
188 }
189 bool Error(SMLoc L, const Twine &Msg,
Dmitri Gribenko3238fb72013-05-05 00:40:33 +0000190 ArrayRef<SMRange> Ranges = None) {
Benjamin Kramer673824b2012-04-15 17:04:27 +0000191 return Parser.Error(L, Msg, Ranges);
192 }
Kevin Enderbyccab3172009-09-15 00:27:25 +0000193
Jim Grosbacheab1c0d2011-07-26 17:10:22 +0000194 int tryParseRegister();
David Blaikie960ea3f2014-06-08 16:18:35 +0000195 bool tryParseRegisterWithWriteBack(OperandVector &);
196 int tryParseShiftRegister(OperandVector &);
197 bool parseRegisterList(OperandVector &);
198 bool parseMemory(OperandVector &);
199 bool parseOperand(OperandVector &, StringRef Mnemonic);
Jim Grosbacheab1c0d2011-07-26 17:10:22 +0000200 bool parsePrefix(ARMMCExpr::VariantKind &RefKind);
Jim Grosbachd3595712011-08-03 23:50:40 +0000201 bool parseMemRegOffsetShift(ARM_AM::ShiftOpc &ShiftType,
202 unsigned &ShiftAmount);
Saleem Abdulrasool38976512014-02-23 06:22:09 +0000203 bool parseLiteralValues(unsigned Size, SMLoc L);
Jim Grosbacheab1c0d2011-07-26 17:10:22 +0000204 bool parseDirectiveThumb(SMLoc L);
Jim Grosbach7f882392011-12-07 18:04:19 +0000205 bool parseDirectiveARM(SMLoc L);
Jim Grosbacheab1c0d2011-07-26 17:10:22 +0000206 bool parseDirectiveThumbFunc(SMLoc L);
207 bool parseDirectiveCode(SMLoc L);
208 bool parseDirectiveSyntax(SMLoc L);
Jim Grosbachab5830e2011-12-14 02:16:11 +0000209 bool parseDirectiveReq(StringRef Name, SMLoc L);
210 bool parseDirectiveUnreq(SMLoc L);
Jason W Kim135d2442011-12-20 17:38:12 +0000211 bool parseDirectiveArch(SMLoc L);
212 bool parseDirectiveEabiAttr(SMLoc L);
Logan Chien8cbb80d2013-10-28 17:51:12 +0000213 bool parseDirectiveCPU(SMLoc L);
214 bool parseDirectiveFPU(SMLoc L);
Logan Chien4ea23b52013-05-10 16:17:24 +0000215 bool parseDirectiveFnStart(SMLoc L);
216 bool parseDirectiveFnEnd(SMLoc L);
217 bool parseDirectiveCantUnwind(SMLoc L);
218 bool parseDirectivePersonality(SMLoc L);
219 bool parseDirectiveHandlerData(SMLoc L);
220 bool parseDirectiveSetFP(SMLoc L);
221 bool parseDirectivePad(SMLoc L);
222 bool parseDirectiveRegSave(SMLoc L, bool IsVector);
Saleem Abdulrasoolc0da2cb2013-12-19 05:17:58 +0000223 bool parseDirectiveInst(SMLoc L, char Suffix = '\0');
David Peixotto80c083a2013-12-19 18:26:07 +0000224 bool parseDirectiveLtorg(SMLoc L);
Saleem Abdulrasoola5549682013-12-26 01:52:28 +0000225 bool parseDirectiveEven(SMLoc L);
Saleem Abdulrasool662f5c12014-01-21 02:33:02 +0000226 bool parseDirectivePersonalityIndex(SMLoc L);
Saleem Abdulrasoold9f08602014-01-21 02:33:10 +0000227 bool parseDirectiveUnwindRaw(SMLoc L);
Saleem Abdulrasool56e06e82014-01-30 04:02:47 +0000228 bool parseDirectiveTLSDescSeq(SMLoc L);
Saleem Abdulrasool5d962d32014-01-30 04:46:24 +0000229 bool parseDirectiveMovSP(SMLoc L);
Saleem Abdulrasool4c4789b2014-01-30 04:46:41 +0000230 bool parseDirectiveObjectArch(SMLoc L);
Saleem Abdulrasool49480bf2014-02-16 00:16:41 +0000231 bool parseDirectiveArchExtension(SMLoc L);
Saleem Abdulrasoolfd6ed1e2014-02-23 17:45:32 +0000232 bool parseDirectiveAlign(SMLoc L);
Saleem Abdulrasool39f773f2014-03-20 06:05:33 +0000233 bool parseDirectiveThumbSet(SMLoc L);
Kevin Enderby146dcf22009-10-15 20:48:48 +0000234
Jim Grosbacheab1c0d2011-07-26 17:10:22 +0000235 StringRef splitMnemonic(StringRef Mnemonic, unsigned &PredicationCode,
Jim Grosbach3d1eac82011-08-26 21:43:41 +0000236 bool &CarrySetting, unsigned &ProcessorIMod,
237 StringRef &ITMask);
Amara Emerson33089092013-09-19 11:59:01 +0000238 void getMnemonicAcceptInfo(StringRef Mnemonic, StringRef FullInst,
239 bool &CanAcceptCarrySet,
Bruno Cardoso Lopese6290cc2011-01-18 20:55:11 +0000240 bool &CanAcceptPredicationCode);
Jim Grosbach624bcc72010-10-29 14:46:02 +0000241
Evan Cheng4d1ca962011-07-08 01:53:10 +0000242 bool isThumb() const {
243 // FIXME: Can tablegen auto-generate this?
Evan Cheng91111d22011-07-09 05:47:46 +0000244 return (STI.getFeatureBits() & ARM::ModeThumb) != 0;
Evan Cheng4d1ca962011-07-08 01:53:10 +0000245 }
Evan Cheng4d1ca962011-07-08 01:53:10 +0000246 bool isThumbOne() const {
Evan Cheng91111d22011-07-09 05:47:46 +0000247 return isThumb() && (STI.getFeatureBits() & ARM::FeatureThumb2) == 0;
Evan Cheng4d1ca962011-07-08 01:53:10 +0000248 }
Jim Grosbach3e941ae2011-08-16 20:45:50 +0000249 bool isThumbTwo() const {
250 return isThumb() && (STI.getFeatureBits() & ARM::FeatureThumb2);
251 }
Tim Northovera2292d02013-06-10 23:20:58 +0000252 bool hasThumb() const {
253 return STI.getFeatureBits() & ARM::HasV4TOps;
254 }
Jim Grosbachb7fa2c02011-08-16 22:20:01 +0000255 bool hasV6Ops() const {
256 return STI.getFeatureBits() & ARM::HasV6Ops;
257 }
Tim Northoverf86d1f02013-10-07 11:10:47 +0000258 bool hasV6MOps() const {
259 return STI.getFeatureBits() & ARM::HasV6MOps;
260 }
James Molloy21efa7d2011-09-28 14:21:38 +0000261 bool hasV7Ops() const {
262 return STI.getFeatureBits() & ARM::HasV7Ops;
263 }
Joey Goulyb3f550e2013-06-26 16:58:26 +0000264 bool hasV8Ops() const {
265 return STI.getFeatureBits() & ARM::HasV8Ops;
266 }
Tim Northovera2292d02013-06-10 23:20:58 +0000267 bool hasARM() const {
268 return !(STI.getFeatureBits() & ARM::FeatureNoARM);
269 }
Renato Golin92c816c2014-09-01 11:25:07 +0000270 bool hasThumb2DSP() const {
271 return STI.getFeatureBits() & ARM::FeatureDSPThumb2;
272 }
Tim Northovera2292d02013-06-10 23:20:58 +0000273
Evan Cheng284b4672011-07-08 22:36:29 +0000274 void SwitchMode() {
Tim Northover26bb14e2014-08-18 11:49:42 +0000275 uint64_t FB = ComputeAvailableFeatures(STI.ToggleFeature(ARM::ModeThumb));
Evan Cheng91111d22011-07-09 05:47:46 +0000276 setAvailableFeatures(FB);
Evan Cheng284b4672011-07-08 22:36:29 +0000277 }
James Molloy21efa7d2011-09-28 14:21:38 +0000278 bool isMClass() const {
279 return STI.getFeatureBits() & ARM::FeatureMClass;
280 }
Evan Cheng4d1ca962011-07-08 01:53:10 +0000281
Kevin Enderbyfebe39b2009-10-06 22:26:42 +0000282 /// @name Auto-generated Match Functions
283 /// {
Daniel Dunbar5cd4d0f2010-08-11 05:24:50 +0000284
Chris Lattner3e4582a2010-09-06 19:11:01 +0000285#define GET_ASSEMBLER_HEADER
286#include "ARMGenAsmMatcher.inc"
Kevin Enderbyfebe39b2009-10-06 22:26:42 +0000287
Kevin Enderbyfebe39b2009-10-06 22:26:42 +0000288 /// }
289
David Blaikie960ea3f2014-06-08 16:18:35 +0000290 OperandMatchResultTy parseITCondCode(OperandVector &);
291 OperandMatchResultTy parseCoprocNumOperand(OperandVector &);
292 OperandMatchResultTy parseCoprocRegOperand(OperandVector &);
293 OperandMatchResultTy parseCoprocOptionOperand(OperandVector &);
294 OperandMatchResultTy parseMemBarrierOptOperand(OperandVector &);
295 OperandMatchResultTy parseInstSyncBarrierOptOperand(OperandVector &);
296 OperandMatchResultTy parseProcIFlagsOperand(OperandVector &);
297 OperandMatchResultTy parseMSRMaskOperand(OperandVector &);
Tim Northoveree843ef2014-08-15 10:47:12 +0000298 OperandMatchResultTy parseBankedRegOperand(OperandVector &);
David Blaikie960ea3f2014-06-08 16:18:35 +0000299 OperandMatchResultTy parsePKHImm(OperandVector &O, StringRef Op, int Low,
300 int High);
301 OperandMatchResultTy parsePKHLSLImm(OperandVector &O) {
Jim Grosbach27c1e252011-07-21 17:23:04 +0000302 return parsePKHImm(O, "lsl", 0, 31);
303 }
David Blaikie960ea3f2014-06-08 16:18:35 +0000304 OperandMatchResultTy parsePKHASRImm(OperandVector &O) {
Jim Grosbach27c1e252011-07-21 17:23:04 +0000305 return parsePKHImm(O, "asr", 1, 32);
306 }
David Blaikie960ea3f2014-06-08 16:18:35 +0000307 OperandMatchResultTy parseSetEndImm(OperandVector &);
308 OperandMatchResultTy parseShifterImm(OperandVector &);
309 OperandMatchResultTy parseRotImm(OperandVector &);
310 OperandMatchResultTy parseBitfield(OperandVector &);
311 OperandMatchResultTy parsePostIdxReg(OperandVector &);
312 OperandMatchResultTy parseAM3Offset(OperandVector &);
313 OperandMatchResultTy parseFPImm(OperandVector &);
314 OperandMatchResultTy parseVectorList(OperandVector &);
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000315 OperandMatchResultTy parseVectorLane(VectorLaneTy &LaneKind, unsigned &Index,
316 SMLoc &EndLoc);
Bruno Cardoso Lopesab830502011-03-31 23:26:08 +0000317
318 // Asm Match Converter Methods
David Blaikie960ea3f2014-06-08 16:18:35 +0000319 void cvtThumbMultiply(MCInst &Inst, const OperandVector &);
320 void cvtThumbBranches(MCInst &Inst, const OperandVector &);
Saleem Abdulrasool4ab6e732014-02-23 17:45:36 +0000321
David Blaikie960ea3f2014-06-08 16:18:35 +0000322 bool validateInstruction(MCInst &Inst, const OperandVector &Ops);
323 bool processInstruction(MCInst &Inst, const OperandVector &Ops);
324 bool shouldOmitCCOutOperand(StringRef Mnemonic, OperandVector &Operands);
325 bool shouldOmitPredicateOperand(StringRef Mnemonic, OperandVector &Operands);
326
Kevin Enderbyccab3172009-09-15 00:27:25 +0000327public:
Jim Grosbach3e941ae2011-08-16 20:45:50 +0000328 enum ARMMatchResultTy {
Jim Grosbachb7fa2c02011-08-16 22:20:01 +0000329 Match_RequiresITBlock = FIRST_TARGET_MATCH_RESULT_TY,
Jim Grosbached16ec42011-08-29 22:24:09 +0000330 Match_RequiresNotITBlock,
Jim Grosbachb7fa2c02011-08-16 22:20:01 +0000331 Match_RequiresV6,
Jim Grosbach087affe2012-06-22 23:56:48 +0000332 Match_RequiresThumb2,
333#define GET_OPERAND_DIAGNOSTIC_TYPES
334#include "ARMGenAsmMatcher.inc"
335
Jim Grosbach3e941ae2011-08-16 20:45:50 +0000336 };
337
Joey Gouly0e76fa72013-09-12 10:28:05 +0000338 ARMAsmParser(MCSubtargetInfo &_STI, MCAsmParser &_Parser,
Evgeniy Stepanov0a951b72014-04-23 11:16:03 +0000339 const MCInstrInfo &MII,
340 const MCTargetOptions &Options)
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +0000341 : MCTargetAsmParser(), STI(_STI), Parser(_Parser), MII(MII), UC(_Parser) {
Evan Cheng4d1ca962011-07-08 01:53:10 +0000342 MCAsmParserExtension::Initialize(_Parser);
Evan Cheng284b4672011-07-08 22:36:29 +0000343
Jim Grosbachc988e0c2012-03-05 19:33:30 +0000344 // Cache the MCRegisterInfo.
Bill Wendlingbc07a892013-06-18 07:20:20 +0000345 MRI = getContext().getRegisterInfo();
Jim Grosbachc988e0c2012-03-05 19:33:30 +0000346
Evan Cheng4d1ca962011-07-08 01:53:10 +0000347 // Initialize the set of available features.
Evan Cheng91111d22011-07-09 05:47:46 +0000348 setAvailableFeatures(ComputeAvailableFeatures(STI.getFeatureBits()));
Jim Grosbached16ec42011-08-29 22:24:09 +0000349
350 // Not in an ITBlock to start with.
351 ITState.CurPosition = ~0U;
Tim Northover1744d0a2013-10-25 12:49:50 +0000352
353 NextSymbolIsThumb = false;
Evan Cheng4d1ca962011-07-08 01:53:10 +0000354 }
Kevin Enderbyccab3172009-09-15 00:27:25 +0000355
Jim Grosbacheab1c0d2011-07-26 17:10:22 +0000356 // Implementation of the MCTargetAsmParser interface:
Craig Topperca7e3e52014-03-10 03:19:03 +0000357 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override;
David Blaikie960ea3f2014-06-08 16:18:35 +0000358 bool ParseInstruction(ParseInstructionInfo &Info, StringRef Name,
359 SMLoc NameLoc, OperandVector &Operands) override;
Craig Topperca7e3e52014-03-10 03:19:03 +0000360 bool ParseDirective(AsmToken DirectiveID) override;
Jim Grosbacheab1c0d2011-07-26 17:10:22 +0000361
David Blaikie960ea3f2014-06-08 16:18:35 +0000362 unsigned validateTargetOperandClass(MCParsedAsmOperand &Op,
Craig Topperca7e3e52014-03-10 03:19:03 +0000363 unsigned Kind) override;
364 unsigned checkTargetMatchPredicate(MCInst &Inst) override;
Jim Grosbach3e941ae2011-08-16 20:45:50 +0000365
Chad Rosier49963552012-10-13 00:26:04 +0000366 bool MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode,
David Blaikie960ea3f2014-06-08 16:18:35 +0000367 OperandVector &Operands, MCStreamer &Out,
Tim Northover26bb14e2014-08-18 11:49:42 +0000368 uint64_t &ErrorInfo,
Craig Topperca7e3e52014-03-10 03:19:03 +0000369 bool MatchingInlineAsm) override;
370 void onLabelParsed(MCSymbol *Symbol) override;
Kevin Enderbyccab3172009-09-15 00:27:25 +0000371};
Jim Grosbach624bcc72010-10-29 14:46:02 +0000372} // end anonymous namespace
373
Chris Lattnerbd7c9fa2010-10-28 17:20:03 +0000374namespace {
375
Kevin Enderbyfebe39b2009-10-06 22:26:42 +0000376/// ARMOperand - Instances of this class represent a parsed ARM machine
Joel Jones54597542013-01-09 22:34:16 +0000377/// operand.
Bill Wendlingee7f1f92010-11-06 21:42:12 +0000378class ARMOperand : public MCParsedAsmOperand {
Sean Callanan7ad0ad02010-04-02 22:27:05 +0000379 enum KindTy {
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000380 k_CondCode,
381 k_CCOut,
382 k_ITCondMask,
383 k_CoprocNum,
384 k_CoprocReg,
Jim Grosbach48399582011-10-12 17:34:41 +0000385 k_CoprocOption,
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000386 k_Immediate,
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000387 k_MemBarrierOpt,
Amaury de la Vieuville43cb13a2013-06-10 14:17:08 +0000388 k_InstSyncBarrierOpt,
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000389 k_Memory,
390 k_PostIndexRegister,
391 k_MSRMask,
Tim Northoveree843ef2014-08-15 10:47:12 +0000392 k_BankedReg,
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000393 k_ProcIFlags,
Jim Grosbachd0637bf2011-10-07 23:56:00 +0000394 k_VectorIndex,
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000395 k_Register,
396 k_RegisterList,
397 k_DPRRegisterList,
398 k_SPRRegisterList,
Jim Grosbachad47cfc2011-10-18 23:02:30 +0000399 k_VectorList,
Jim Grosbachcd6f5e72011-11-30 01:09:44 +0000400 k_VectorListAllLanes,
Jim Grosbach04945c42011-12-02 00:35:16 +0000401 k_VectorListIndexed,
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000402 k_ShiftedRegister,
403 k_ShiftedImmediate,
404 k_ShifterImmediate,
405 k_RotateImmediate,
406 k_BitfieldDescriptor,
407 k_Token
Kevin Enderbyfebe39b2009-10-06 22:26:42 +0000408 } Kind;
409
Kevin Enderby488f20b2014-04-10 20:18:58 +0000410 SMLoc StartLoc, EndLoc, AlignmentLoc;
Bill Wendling0ab0f672010-11-18 21:50:54 +0000411 SmallVector<unsigned, 8> Registers;
Kevin Enderbyfebe39b2009-10-06 22:26:42 +0000412
Eric Christopher8996c5d2013-03-15 00:42:55 +0000413 struct CCOp {
414 ARMCC::CondCodes Val;
415 };
416
417 struct CopOp {
418 unsigned Val;
419 };
420
421 struct CoprocOptionOp {
422 unsigned Val;
423 };
424
425 struct ITMaskOp {
426 unsigned Mask:4;
427 };
428
429 struct MBOptOp {
430 ARM_MB::MemBOpt Val;
431 };
432
Amaury de la Vieuville43cb13a2013-06-10 14:17:08 +0000433 struct ISBOptOp {
434 ARM_ISB::InstSyncBOpt Val;
435 };
436
Eric Christopher8996c5d2013-03-15 00:42:55 +0000437 struct IFlagsOp {
438 ARM_PROC::IFlags Val;
439 };
440
441 struct MMaskOp {
442 unsigned Val;
443 };
444
Tim Northoveree843ef2014-08-15 10:47:12 +0000445 struct BankedRegOp {
446 unsigned Val;
447 };
448
Eric Christopher8996c5d2013-03-15 00:42:55 +0000449 struct TokOp {
450 const char *Data;
451 unsigned Length;
452 };
453
454 struct RegOp {
455 unsigned RegNum;
456 };
457
458 // A vector register list is a sequential list of 1 to 4 registers.
459 struct VectorListOp {
460 unsigned RegNum;
461 unsigned Count;
462 unsigned LaneIndex;
463 bool isDoubleSpaced;
464 };
465
466 struct VectorIndexOp {
467 unsigned Val;
468 };
469
470 struct ImmOp {
471 const MCExpr *Val;
472 };
473
474 /// Combined record for all forms of ARM address expressions.
475 struct MemoryOp {
476 unsigned BaseRegNum;
477 // Offset is in OffsetReg or OffsetImm. If both are zero, no offset
478 // was specified.
479 const MCConstantExpr *OffsetImm; // Offset immediate value
480 unsigned OffsetRegNum; // Offset register num, when OffsetImm == NULL
481 ARM_AM::ShiftOpc ShiftType; // Shift type for OffsetReg
482 unsigned ShiftImm; // shift for OffsetReg.
483 unsigned Alignment; // 0 = no alignment specified
484 // n = alignment in bytes (2, 4, 8, 16, or 32)
485 unsigned isNegative : 1; // Negated OffsetReg? (~'U' bit)
486 };
487
488 struct PostIdxRegOp {
489 unsigned RegNum;
490 bool isAdd;
491 ARM_AM::ShiftOpc ShiftTy;
492 unsigned ShiftImm;
493 };
494
495 struct ShifterImmOp {
496 bool isASR;
497 unsigned Imm;
498 };
499
500 struct RegShiftedRegOp {
501 ARM_AM::ShiftOpc ShiftTy;
502 unsigned SrcReg;
503 unsigned ShiftReg;
504 unsigned ShiftImm;
505 };
506
507 struct RegShiftedImmOp {
508 ARM_AM::ShiftOpc ShiftTy;
509 unsigned SrcReg;
510 unsigned ShiftImm;
511 };
512
513 struct RotImmOp {
514 unsigned Imm;
515 };
516
517 struct BitfieldOp {
518 unsigned LSB;
519 unsigned Width;
520 };
521
Kevin Enderbyfebe39b2009-10-06 22:26:42 +0000522 union {
Eric Christopher8996c5d2013-03-15 00:42:55 +0000523 struct CCOp CC;
524 struct CopOp Cop;
525 struct CoprocOptionOp CoprocOption;
526 struct MBOptOp MBOpt;
Amaury de la Vieuville43cb13a2013-06-10 14:17:08 +0000527 struct ISBOptOp ISBOpt;
Eric Christopher8996c5d2013-03-15 00:42:55 +0000528 struct ITMaskOp ITMask;
529 struct IFlagsOp IFlags;
530 struct MMaskOp MMask;
Tim Northoveree843ef2014-08-15 10:47:12 +0000531 struct BankedRegOp BankedReg;
Eric Christopher8996c5d2013-03-15 00:42:55 +0000532 struct TokOp Tok;
533 struct RegOp Reg;
534 struct VectorListOp VectorList;
535 struct VectorIndexOp VectorIndex;
536 struct ImmOp Imm;
537 struct MemoryOp Memory;
538 struct PostIdxRegOp PostIdxReg;
539 struct ShifterImmOp ShifterImm;
540 struct RegShiftedRegOp RegShiftedReg;
541 struct RegShiftedImmOp RegShiftedImm;
542 struct RotImmOp RotImm;
543 struct BitfieldOp Bitfield;
Kevin Enderbyfebe39b2009-10-06 22:26:42 +0000544 };
Jim Grosbach624bcc72010-10-29 14:46:02 +0000545
Bill Wendlingee7f1f92010-11-06 21:42:12 +0000546public:
David Blaikie960ea3f2014-06-08 16:18:35 +0000547 ARMOperand(KindTy K) : MCParsedAsmOperand(), Kind(K) {}
Sean Callanan7ad0ad02010-04-02 22:27:05 +0000548 ARMOperand(const ARMOperand &o) : MCParsedAsmOperand() {
549 Kind = o.Kind;
550 StartLoc = o.StartLoc;
551 EndLoc = o.EndLoc;
552 switch (Kind) {
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000553 case k_CondCode:
Daniel Dunbard8042b72010-08-11 06:36:53 +0000554 CC = o.CC;
555 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000556 case k_ITCondMask:
Jim Grosbach3d1eac82011-08-26 21:43:41 +0000557 ITMask = o.ITMask;
558 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000559 case k_Token:
Daniel Dunbard8042b72010-08-11 06:36:53 +0000560 Tok = o.Tok;
Sean Callanan7ad0ad02010-04-02 22:27:05 +0000561 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000562 case k_CCOut:
563 case k_Register:
Sean Callanan7ad0ad02010-04-02 22:27:05 +0000564 Reg = o.Reg;
565 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000566 case k_RegisterList:
567 case k_DPRRegisterList:
568 case k_SPRRegisterList:
Bill Wendling0ab0f672010-11-18 21:50:54 +0000569 Registers = o.Registers;
Bill Wendling7cef4472010-11-06 19:56:04 +0000570 break;
Jim Grosbachad47cfc2011-10-18 23:02:30 +0000571 case k_VectorList:
Jim Grosbachcd6f5e72011-11-30 01:09:44 +0000572 case k_VectorListAllLanes:
Jim Grosbach04945c42011-12-02 00:35:16 +0000573 case k_VectorListIndexed:
Jim Grosbachad47cfc2011-10-18 23:02:30 +0000574 VectorList = o.VectorList;
575 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000576 case k_CoprocNum:
577 case k_CoprocReg:
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +0000578 Cop = o.Cop;
579 break;
Jim Grosbach48399582011-10-12 17:34:41 +0000580 case k_CoprocOption:
581 CoprocOption = o.CoprocOption;
582 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000583 case k_Immediate:
Sean Callanan7ad0ad02010-04-02 22:27:05 +0000584 Imm = o.Imm;
585 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000586 case k_MemBarrierOpt:
Bruno Cardoso Lopes36dd43f2011-02-07 22:09:15 +0000587 MBOpt = o.MBOpt;
588 break;
Amaury de la Vieuville43cb13a2013-06-10 14:17:08 +0000589 case k_InstSyncBarrierOpt:
590 ISBOpt = o.ISBOpt;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000591 case k_Memory:
Jim Grosbach871dff72011-10-11 15:59:20 +0000592 Memory = o.Memory;
Sean Callanan7ad0ad02010-04-02 22:27:05 +0000593 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000594 case k_PostIndexRegister:
Jim Grosbachd3595712011-08-03 23:50:40 +0000595 PostIdxReg = o.PostIdxReg;
596 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000597 case k_MSRMask:
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +0000598 MMask = o.MMask;
599 break;
Tim Northoveree843ef2014-08-15 10:47:12 +0000600 case k_BankedReg:
601 BankedReg = o.BankedReg;
602 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000603 case k_ProcIFlags:
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +0000604 IFlags = o.IFlags;
Owen Anderson1d2f5ce2011-03-18 22:50:18 +0000605 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000606 case k_ShifterImmediate:
Jim Grosbach3a9cbee2011-07-25 22:20:28 +0000607 ShifterImm = o.ShifterImm;
Owen Anderson1d2f5ce2011-03-18 22:50:18 +0000608 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000609 case k_ShiftedRegister:
Jim Grosbachac798e12011-07-25 20:49:51 +0000610 RegShiftedReg = o.RegShiftedReg;
Jim Grosbach7dcd1352011-07-13 17:50:29 +0000611 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000612 case k_ShiftedImmediate:
Jim Grosbachac798e12011-07-25 20:49:51 +0000613 RegShiftedImm = o.RegShiftedImm;
Owen Andersonb595ed02011-07-21 18:54:16 +0000614 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000615 case k_RotateImmediate:
Jim Grosbach833b9d32011-07-27 20:15:40 +0000616 RotImm = o.RotImm;
617 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000618 case k_BitfieldDescriptor:
Jim Grosbach864b6092011-07-28 21:34:26 +0000619 Bitfield = o.Bitfield;
620 break;
Jim Grosbachd0637bf2011-10-07 23:56:00 +0000621 case k_VectorIndex:
622 VectorIndex = o.VectorIndex;
623 break;
Sean Callanan7ad0ad02010-04-02 22:27:05 +0000624 }
625 }
Jim Grosbach624bcc72010-10-29 14:46:02 +0000626
Sean Callanan7ad0ad02010-04-02 22:27:05 +0000627 /// getStartLoc - Get the location of the first token of this operand.
Craig Topperca7e3e52014-03-10 03:19:03 +0000628 SMLoc getStartLoc() const override { return StartLoc; }
Sean Callanan7ad0ad02010-04-02 22:27:05 +0000629 /// getEndLoc - Get the location of the last token of this operand.
Craig Topperca7e3e52014-03-10 03:19:03 +0000630 SMLoc getEndLoc() const override { return EndLoc; }
Chad Rosier143d0f72012-09-21 20:51:43 +0000631 /// getLocRange - Get the range between the first and last token of this
632 /// operand.
Benjamin Kramer673824b2012-04-15 17:04:27 +0000633 SMRange getLocRange() const { return SMRange(StartLoc, EndLoc); }
634
Kevin Enderby488f20b2014-04-10 20:18:58 +0000635 /// getAlignmentLoc - Get the location of the Alignment token of this operand.
636 SMLoc getAlignmentLoc() const {
637 assert(Kind == k_Memory && "Invalid access!");
638 return AlignmentLoc;
639 }
640
Daniel Dunbard8042b72010-08-11 06:36:53 +0000641 ARMCC::CondCodes getCondCode() const {
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000642 assert(Kind == k_CondCode && "Invalid access!");
Daniel Dunbard8042b72010-08-11 06:36:53 +0000643 return CC.Val;
644 }
645
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +0000646 unsigned getCoproc() const {
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000647 assert((Kind == k_CoprocNum || Kind == k_CoprocReg) && "Invalid access!");
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +0000648 return Cop.Val;
649 }
650
Kevin Enderbyfebe39b2009-10-06 22:26:42 +0000651 StringRef getToken() const {
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000652 assert(Kind == k_Token && "Invalid access!");
Kevin Enderbyfebe39b2009-10-06 22:26:42 +0000653 return StringRef(Tok.Data, Tok.Length);
654 }
655
Craig Topperca7e3e52014-03-10 03:19:03 +0000656 unsigned getReg() const override {
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000657 assert((Kind == k_Register || Kind == k_CCOut) && "Invalid access!");
Bill Wendling2cae3272010-11-09 22:44:22 +0000658 return Reg.RegNum;
Kevin Enderbyfebe39b2009-10-06 22:26:42 +0000659 }
660
Bill Wendlingbed94652010-11-09 23:28:44 +0000661 const SmallVectorImpl<unsigned> &getRegList() const {
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000662 assert((Kind == k_RegisterList || Kind == k_DPRRegisterList ||
663 Kind == k_SPRRegisterList) && "Invalid access!");
Bill Wendling0ab0f672010-11-18 21:50:54 +0000664 return Registers;
Bill Wendling7cef4472010-11-06 19:56:04 +0000665 }
666
Kevin Enderbyf5079942009-10-13 22:19:02 +0000667 const MCExpr *getImm() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000668 assert(isImm() && "Invalid access!");
Kevin Enderbyf5079942009-10-13 22:19:02 +0000669 return Imm.Val;
670 }
671
Jim Grosbachd0637bf2011-10-07 23:56:00 +0000672 unsigned getVectorIndex() const {
673 assert(Kind == k_VectorIndex && "Invalid access!");
674 return VectorIndex.Val;
675 }
676
Bruno Cardoso Lopes36dd43f2011-02-07 22:09:15 +0000677 ARM_MB::MemBOpt getMemBarrierOpt() const {
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000678 assert(Kind == k_MemBarrierOpt && "Invalid access!");
Bruno Cardoso Lopes36dd43f2011-02-07 22:09:15 +0000679 return MBOpt.Val;
680 }
681
Amaury de la Vieuville43cb13a2013-06-10 14:17:08 +0000682 ARM_ISB::InstSyncBOpt getInstSyncBarrierOpt() const {
683 assert(Kind == k_InstSyncBarrierOpt && "Invalid access!");
684 return ISBOpt.Val;
685 }
686
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +0000687 ARM_PROC::IFlags getProcIFlags() const {
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000688 assert(Kind == k_ProcIFlags && "Invalid access!");
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +0000689 return IFlags.Val;
690 }
691
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +0000692 unsigned getMSRMask() const {
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000693 assert(Kind == k_MSRMask && "Invalid access!");
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +0000694 return MMask.Val;
695 }
696
Tim Northoveree843ef2014-08-15 10:47:12 +0000697 unsigned getBankedReg() const {
698 assert(Kind == k_BankedReg && "Invalid access!");
699 return BankedReg.Val;
700 }
701
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000702 bool isCoprocNum() const { return Kind == k_CoprocNum; }
703 bool isCoprocReg() const { return Kind == k_CoprocReg; }
Jim Grosbach48399582011-10-12 17:34:41 +0000704 bool isCoprocOption() const { return Kind == k_CoprocOption; }
Jim Grosbach6e5778f2011-10-07 23:24:09 +0000705 bool isCondCode() const { return Kind == k_CondCode; }
706 bool isCCOut() const { return Kind == k_CCOut; }
707 bool isITMask() const { return Kind == k_ITCondMask; }
708 bool isITCondCode() const { return Kind == k_CondCode; }
Craig Topperca7e3e52014-03-10 03:19:03 +0000709 bool isImm() const override { return Kind == k_Immediate; }
Mihai Popad36cbaa2013-07-03 09:21:44 +0000710 // checks whether this operand is an unsigned offset which fits is a field
711 // of specified width and scaled by a specific number of bits
712 template<unsigned width, unsigned scale>
713 bool isUnsignedOffset() const {
714 if (!isImm()) return false;
Mihai Popaad18d3c2013-08-09 10:38:32 +0000715 if (isa<MCSymbolRefExpr>(Imm.Val)) return true;
Mihai Popad36cbaa2013-07-03 09:21:44 +0000716 if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Imm.Val)) {
717 int64_t Val = CE->getValue();
718 int64_t Align = 1LL << scale;
719 int64_t Max = Align * ((1LL << width) - 1);
720 return ((Val % Align) == 0) && (Val >= 0) && (Val <= Max);
721 }
722 return false;
723 }
Mihai Popaad18d3c2013-08-09 10:38:32 +0000724 // checks whether this operand is an signed offset which fits is a field
725 // of specified width and scaled by a specific number of bits
726 template<unsigned width, unsigned scale>
727 bool isSignedOffset() const {
728 if (!isImm()) return false;
729 if (isa<MCSymbolRefExpr>(Imm.Val)) return true;
730 if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Imm.Val)) {
731 int64_t Val = CE->getValue();
732 int64_t Align = 1LL << scale;
733 int64_t Max = Align * ((1LL << (width-1)) - 1);
734 int64_t Min = -Align * (1LL << (width-1));
735 return ((Val % Align) == 0) && (Val >= Min) && (Val <= Max);
736 }
737 return false;
738 }
739
Mihai Popa8a9da5b2013-07-22 15:49:36 +0000740 // checks whether this operand is a memory operand computed as an offset
741 // applied to PC. the offset may have 8 bits of magnitude and is represented
742 // with two bits of shift. textually it may be either [pc, #imm], #imm or
743 // relocable expression...
744 bool isThumbMemPC() const {
745 int64_t Val = 0;
746 if (isImm()) {
747 if (isa<MCSymbolRefExpr>(Imm.Val)) return true;
748 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Imm.Val);
749 if (!CE) return false;
750 Val = CE->getValue();
751 }
752 else if (isMem()) {
753 if(!Memory.OffsetImm || Memory.OffsetRegNum) return false;
754 if(Memory.BaseRegNum != ARM::PC) return false;
755 Val = Memory.OffsetImm->getValue();
756 }
757 else return false;
Mihai Popad79f00b2013-08-15 15:43:06 +0000758 return ((Val % 4) == 0) && (Val >= 0) && (Val <= 1020);
Mihai Popa8a9da5b2013-07-22 15:49:36 +0000759 }
Jim Grosbacha9d36fb2012-01-20 18:09:51 +0000760 bool isFPImm() const {
761 if (!isImm()) return false;
762 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
763 if (!CE) return false;
764 int Val = ARM_AM::getFP32Imm(APInt(32, CE->getValue()));
765 return Val != -1;
766 }
Jim Grosbachea231912011-12-22 22:19:05 +0000767 bool isFBits16() const {
768 if (!isImm()) return false;
769 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
770 if (!CE) return false;
771 int64_t Value = CE->getValue();
772 return Value >= 0 && Value <= 16;
773 }
774 bool isFBits32() const {
775 if (!isImm()) return false;
776 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
777 if (!CE) return false;
778 int64_t Value = CE->getValue();
779 return Value >= 1 && Value <= 32;
780 }
Jim Grosbach7db8d692011-09-08 22:07:06 +0000781 bool isImm8s4() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000782 if (!isImm()) return false;
Jim Grosbach7db8d692011-09-08 22:07:06 +0000783 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
784 if (!CE) return false;
785 int64_t Value = CE->getValue();
786 return ((Value & 3) == 0) && Value >= -1020 && Value <= 1020;
787 }
Jim Grosbach0a0b3072011-08-24 21:22:15 +0000788 bool isImm0_1020s4() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000789 if (!isImm()) return false;
Jim Grosbach0a0b3072011-08-24 21:22:15 +0000790 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
791 if (!CE) return false;
792 int64_t Value = CE->getValue();
793 return ((Value & 3) == 0) && Value >= 0 && Value <= 1020;
794 }
795 bool isImm0_508s4() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000796 if (!isImm()) return false;
Jim Grosbach0a0b3072011-08-24 21:22:15 +0000797 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
798 if (!CE) return false;
799 int64_t Value = CE->getValue();
800 return ((Value & 3) == 0) && Value >= 0 && Value <= 508;
801 }
Jim Grosbach930f2f62012-04-05 20:57:13 +0000802 bool isImm0_508s4Neg() const {
803 if (!isImm()) return false;
804 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
805 if (!CE) return false;
806 int64_t Value = -CE->getValue();
807 // explicitly exclude zero. we want that to use the normal 0_508 version.
808 return ((Value & 3) == 0) && Value > 0 && Value <= 508;
809 }
Artyom Skrobovfc12e702013-10-23 10:14:40 +0000810 bool isImm0_239() const {
811 if (!isImm()) return false;
812 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
813 if (!CE) return false;
814 int64_t Value = CE->getValue();
815 return Value >= 0 && Value < 240;
816 }
Jim Grosbacha6f7a1e2011-06-27 23:54:06 +0000817 bool isImm0_255() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000818 if (!isImm()) return false;
Jim Grosbacha6f7a1e2011-06-27 23:54:06 +0000819 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
820 if (!CE) return false;
821 int64_t Value = CE->getValue();
822 return Value >= 0 && Value < 256;
823 }
Jim Grosbach930f2f62012-04-05 20:57:13 +0000824 bool isImm0_4095() const {
825 if (!isImm()) return false;
826 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
827 if (!CE) return false;
828 int64_t Value = CE->getValue();
829 return Value >= 0 && Value < 4096;
830 }
831 bool isImm0_4095Neg() const {
832 if (!isImm()) return false;
833 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
834 if (!CE) return false;
835 int64_t Value = -CE->getValue();
836 return Value > 0 && Value < 4096;
837 }
Jim Grosbach9dff9f42011-12-02 23:34:39 +0000838 bool isImm0_1() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000839 if (!isImm()) return false;
Jim Grosbach9dff9f42011-12-02 23:34:39 +0000840 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
841 if (!CE) return false;
842 int64_t Value = CE->getValue();
843 return Value >= 0 && Value < 2;
844 }
845 bool isImm0_3() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000846 if (!isImm()) return false;
Jim Grosbach9dff9f42011-12-02 23:34:39 +0000847 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
848 if (!CE) return false;
849 int64_t Value = CE->getValue();
850 return Value >= 0 && Value < 4;
851 }
Jim Grosbach31756c22011-07-13 22:01:08 +0000852 bool isImm0_7() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000853 if (!isImm()) return false;
Jim Grosbach31756c22011-07-13 22:01:08 +0000854 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
855 if (!CE) return false;
856 int64_t Value = CE->getValue();
857 return Value >= 0 && Value < 8;
858 }
859 bool isImm0_15() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000860 if (!isImm()) return false;
Jim Grosbach31756c22011-07-13 22:01:08 +0000861 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
862 if (!CE) return false;
863 int64_t Value = CE->getValue();
864 return Value >= 0 && Value < 16;
865 }
Jim Grosbach72e7c4f2011-07-21 23:26:25 +0000866 bool isImm0_31() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000867 if (!isImm()) return false;
Jim Grosbach72e7c4f2011-07-21 23:26:25 +0000868 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
869 if (!CE) return false;
870 int64_t Value = CE->getValue();
871 return Value >= 0 && Value < 32;
872 }
Jim Grosbach00326402011-12-08 01:30:04 +0000873 bool isImm0_63() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000874 if (!isImm()) return false;
Jim Grosbach00326402011-12-08 01:30:04 +0000875 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
876 if (!CE) return false;
877 int64_t Value = CE->getValue();
878 return Value >= 0 && Value < 64;
879 }
Jim Grosbachd4b82492011-12-07 01:07:24 +0000880 bool isImm8() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000881 if (!isImm()) return false;
Jim Grosbachd4b82492011-12-07 01:07:24 +0000882 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
883 if (!CE) return false;
884 int64_t Value = CE->getValue();
885 return Value == 8;
886 }
887 bool isImm16() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000888 if (!isImm()) return false;
Jim Grosbachd4b82492011-12-07 01:07:24 +0000889 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
890 if (!CE) return false;
891 int64_t Value = CE->getValue();
892 return Value == 16;
893 }
894 bool isImm32() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000895 if (!isImm()) return false;
Jim Grosbachd4b82492011-12-07 01:07:24 +0000896 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
897 if (!CE) return false;
898 int64_t Value = CE->getValue();
899 return Value == 32;
900 }
Jim Grosbachba7d6ed2011-12-08 22:06:06 +0000901 bool isShrImm8() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000902 if (!isImm()) return false;
Jim Grosbachba7d6ed2011-12-08 22:06:06 +0000903 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
904 if (!CE) return false;
905 int64_t Value = CE->getValue();
906 return Value > 0 && Value <= 8;
907 }
908 bool isShrImm16() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000909 if (!isImm()) return false;
Jim Grosbachba7d6ed2011-12-08 22:06:06 +0000910 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
911 if (!CE) return false;
912 int64_t Value = CE->getValue();
913 return Value > 0 && Value <= 16;
914 }
915 bool isShrImm32() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000916 if (!isImm()) return false;
Jim Grosbachba7d6ed2011-12-08 22:06:06 +0000917 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
918 if (!CE) return false;
919 int64_t Value = CE->getValue();
920 return Value > 0 && Value <= 32;
921 }
922 bool isShrImm64() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000923 if (!isImm()) return false;
Jim Grosbachba7d6ed2011-12-08 22:06:06 +0000924 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
925 if (!CE) return false;
926 int64_t Value = CE->getValue();
927 return Value > 0 && Value <= 64;
928 }
Jim Grosbachd4b82492011-12-07 01:07:24 +0000929 bool isImm1_7() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000930 if (!isImm()) return false;
Jim Grosbachd4b82492011-12-07 01:07:24 +0000931 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
932 if (!CE) return false;
933 int64_t Value = CE->getValue();
934 return Value > 0 && Value < 8;
935 }
936 bool isImm1_15() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000937 if (!isImm()) return false;
Jim Grosbachd4b82492011-12-07 01:07:24 +0000938 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
939 if (!CE) return false;
940 int64_t Value = CE->getValue();
941 return Value > 0 && Value < 16;
942 }
943 bool isImm1_31() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000944 if (!isImm()) return false;
Jim Grosbachd4b82492011-12-07 01:07:24 +0000945 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
946 if (!CE) return false;
947 int64_t Value = CE->getValue();
948 return Value > 0 && Value < 32;
949 }
Jim Grosbach475c6db2011-07-25 23:09:14 +0000950 bool isImm1_16() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000951 if (!isImm()) return false;
Jim Grosbach475c6db2011-07-25 23:09:14 +0000952 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
953 if (!CE) return false;
954 int64_t Value = CE->getValue();
955 return Value > 0 && Value < 17;
956 }
Jim Grosbach801e0a32011-07-22 23:16:18 +0000957 bool isImm1_32() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000958 if (!isImm()) return false;
Jim Grosbach801e0a32011-07-22 23:16:18 +0000959 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
960 if (!CE) return false;
961 int64_t Value = CE->getValue();
962 return Value > 0 && Value < 33;
963 }
Jim Grosbachc14871c2011-11-10 19:18:01 +0000964 bool isImm0_32() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000965 if (!isImm()) return false;
Jim Grosbachc14871c2011-11-10 19:18:01 +0000966 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
967 if (!CE) return false;
968 int64_t Value = CE->getValue();
969 return Value >= 0 && Value < 33;
970 }
Jim Grosbach975b6412011-07-13 20:10:10 +0000971 bool isImm0_65535() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000972 if (!isImm()) return false;
Jim Grosbach975b6412011-07-13 20:10:10 +0000973 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
974 if (!CE) return false;
975 int64_t Value = CE->getValue();
976 return Value >= 0 && Value < 65536;
977 }
Mihai Popaae1112b2013-08-21 13:14:58 +0000978 bool isImm256_65535Expr() const {
979 if (!isImm()) return false;
980 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
981 // If it's not a constant expression, it'll generate a fixup and be
982 // handled later.
983 if (!CE) return true;
984 int64_t Value = CE->getValue();
985 return Value >= 256 && Value < 65536;
986 }
Jim Grosbach7c09e3c2011-07-19 19:13:28 +0000987 bool isImm0_65535Expr() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000988 if (!isImm()) return false;
Jim Grosbach7c09e3c2011-07-19 19:13:28 +0000989 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
990 // If it's not a constant expression, it'll generate a fixup and be
991 // handled later.
992 if (!CE) return true;
993 int64_t Value = CE->getValue();
994 return Value >= 0 && Value < 65536;
995 }
Jim Grosbachf1637842011-07-26 16:24:27 +0000996 bool isImm24bit() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +0000997 if (!isImm()) return false;
Jim Grosbachf1637842011-07-26 16:24:27 +0000998 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
999 if (!CE) return false;
1000 int64_t Value = CE->getValue();
1001 return Value >= 0 && Value <= 0xffffff;
1002 }
Jim Grosbach46dd4132011-08-17 21:51:27 +00001003 bool isImmThumbSR() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001004 if (!isImm()) return false;
Jim Grosbach46dd4132011-08-17 21:51:27 +00001005 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1006 if (!CE) return false;
1007 int64_t Value = CE->getValue();
1008 return Value > 0 && Value < 33;
1009 }
Jim Grosbach27c1e252011-07-21 17:23:04 +00001010 bool isPKHLSLImm() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001011 if (!isImm()) return false;
Jim Grosbach27c1e252011-07-21 17:23:04 +00001012 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1013 if (!CE) return false;
1014 int64_t Value = CE->getValue();
1015 return Value >= 0 && Value < 32;
1016 }
1017 bool isPKHASRImm() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001018 if (!isImm()) return false;
Jim Grosbach27c1e252011-07-21 17:23:04 +00001019 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1020 if (!CE) return false;
1021 int64_t Value = CE->getValue();
1022 return Value > 0 && Value <= 32;
1023 }
Jiangning Liu10dd40e2012-08-02 08:13:13 +00001024 bool isAdrLabel() const {
1025 // If we have an immediate that's not a constant, treat it as a label
1026 // reference needing a fixup. If it is a constant, but it can't fit
1027 // into shift immediate encoding, we reject it.
1028 if (isImm() && !isa<MCConstantExpr>(getImm())) return true;
1029 else return (isARMSOImm() || isARMSOImmNeg());
1030 }
Jim Grosbach9720dcf2011-07-19 16:50:30 +00001031 bool isARMSOImm() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001032 if (!isImm()) return false;
Jim Grosbach9720dcf2011-07-19 16:50:30 +00001033 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1034 if (!CE) return false;
1035 int64_t Value = CE->getValue();
1036 return ARM_AM::getSOImmVal(Value) != -1;
1037 }
Jim Grosbach3d785ed2011-10-28 22:50:54 +00001038 bool isARMSOImmNot() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001039 if (!isImm()) return false;
Jim Grosbach3d785ed2011-10-28 22:50:54 +00001040 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1041 if (!CE) return false;
1042 int64_t Value = CE->getValue();
1043 return ARM_AM::getSOImmVal(~Value) != -1;
1044 }
Jim Grosbach30506252011-12-08 00:31:07 +00001045 bool isARMSOImmNeg() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001046 if (!isImm()) return false;
Jim Grosbach30506252011-12-08 00:31:07 +00001047 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1048 if (!CE) return false;
1049 int64_t Value = CE->getValue();
Jim Grosbachfdaab532012-03-30 19:59:02 +00001050 // Only use this when not representable as a plain so_imm.
1051 return ARM_AM::getSOImmVal(Value) == -1 &&
1052 ARM_AM::getSOImmVal(-Value) != -1;
Jim Grosbach30506252011-12-08 00:31:07 +00001053 }
Jim Grosbacha6f7a1e2011-06-27 23:54:06 +00001054 bool isT2SOImm() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001055 if (!isImm()) return false;
Jim Grosbacha6f7a1e2011-06-27 23:54:06 +00001056 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1057 if (!CE) return false;
1058 int64_t Value = CE->getValue();
1059 return ARM_AM::getT2SOImmVal(Value) != -1;
1060 }
Jim Grosbachb009a872011-10-28 22:36:30 +00001061 bool isT2SOImmNot() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001062 if (!isImm()) return false;
Jim Grosbachb009a872011-10-28 22:36:30 +00001063 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1064 if (!CE) return false;
1065 int64_t Value = CE->getValue();
Mihai Popacf276b22013-08-16 11:55:44 +00001066 return ARM_AM::getT2SOImmVal(Value) == -1 &&
1067 ARM_AM::getT2SOImmVal(~Value) != -1;
Jim Grosbachb009a872011-10-28 22:36:30 +00001068 }
Jim Grosbach30506252011-12-08 00:31:07 +00001069 bool isT2SOImmNeg() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001070 if (!isImm()) return false;
Jim Grosbach30506252011-12-08 00:31:07 +00001071 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1072 if (!CE) return false;
1073 int64_t Value = CE->getValue();
Jim Grosbachfdaab532012-03-30 19:59:02 +00001074 // Only use this when not representable as a plain so_imm.
1075 return ARM_AM::getT2SOImmVal(Value) == -1 &&
1076 ARM_AM::getT2SOImmVal(-Value) != -1;
Jim Grosbach30506252011-12-08 00:31:07 +00001077 }
Jim Grosbach0a547702011-07-22 17:44:50 +00001078 bool isSetEndImm() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001079 if (!isImm()) return false;
Jim Grosbach0a547702011-07-22 17:44:50 +00001080 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1081 if (!CE) return false;
1082 int64_t Value = CE->getValue();
1083 return Value == 1 || Value == 0;
1084 }
Craig Topperca7e3e52014-03-10 03:19:03 +00001085 bool isReg() const override { return Kind == k_Register; }
Jim Grosbach6e5778f2011-10-07 23:24:09 +00001086 bool isRegList() const { return Kind == k_RegisterList; }
1087 bool isDPRRegList() const { return Kind == k_DPRRegisterList; }
1088 bool isSPRRegList() const { return Kind == k_SPRRegisterList; }
Craig Topperca7e3e52014-03-10 03:19:03 +00001089 bool isToken() const override { return Kind == k_Token; }
Jim Grosbach6e5778f2011-10-07 23:24:09 +00001090 bool isMemBarrierOpt() const { return Kind == k_MemBarrierOpt; }
Amaury de la Vieuville43cb13a2013-06-10 14:17:08 +00001091 bool isInstSyncBarrierOpt() const { return Kind == k_InstSyncBarrierOpt; }
Craig Topperca7e3e52014-03-10 03:19:03 +00001092 bool isMem() const override { return Kind == k_Memory; }
Jim Grosbach6e5778f2011-10-07 23:24:09 +00001093 bool isShifterImm() const { return Kind == k_ShifterImmediate; }
1094 bool isRegShiftedReg() const { return Kind == k_ShiftedRegister; }
1095 bool isRegShiftedImm() const { return Kind == k_ShiftedImmediate; }
1096 bool isRotImm() const { return Kind == k_RotateImmediate; }
1097 bool isBitfield() const { return Kind == k_BitfieldDescriptor; }
1098 bool isPostIdxRegShifted() const { return Kind == k_PostIndexRegister; }
Jim Grosbachc320c852011-08-05 21:28:30 +00001099 bool isPostIdxReg() const {
Jim Grosbachee201fa2011-11-14 17:52:47 +00001100 return Kind == k_PostIndexRegister && PostIdxReg.ShiftTy ==ARM_AM::no_shift;
Jim Grosbachc320c852011-08-05 21:28:30 +00001101 }
Kevin Enderby488f20b2014-04-10 20:18:58 +00001102 bool isMemNoOffset(bool alignOK = false, unsigned Alignment = 0) const {
Chad Rosier41099832012-09-11 23:02:35 +00001103 if (!isMem())
Bruno Cardoso Lopesab830502011-03-31 23:26:08 +00001104 return false;
Jim Grosbachd3595712011-08-03 23:50:40 +00001105 // No offset of any kind.
Craig Topper062a2ba2014-04-25 05:30:21 +00001106 return Memory.OffsetRegNum == 0 && Memory.OffsetImm == nullptr &&
Kevin Enderby488f20b2014-04-10 20:18:58 +00001107 (alignOK || Memory.Alignment == Alignment);
Jim Grosbacha95ec992011-10-11 17:29:55 +00001108 }
Jim Grosbach94298a92012-01-18 22:46:46 +00001109 bool isMemPCRelImm12() const {
Chad Rosier41099832012-09-11 23:02:35 +00001110 if (!isMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
Jim Grosbach94298a92012-01-18 22:46:46 +00001111 return false;
1112 // Base register must be PC.
1113 if (Memory.BaseRegNum != ARM::PC)
1114 return false;
1115 // Immediate offset in range [-4095, 4095].
1116 if (!Memory.OffsetImm) return true;
1117 int64_t Val = Memory.OffsetImm->getValue();
1118 return (Val > -4096 && Val < 4096) || (Val == INT32_MIN);
1119 }
Jim Grosbacha95ec992011-10-11 17:29:55 +00001120 bool isAlignedMemory() const {
1121 return isMemNoOffset(true);
Bruno Cardoso Lopesab830502011-03-31 23:26:08 +00001122 }
Kevin Enderby488f20b2014-04-10 20:18:58 +00001123 bool isAlignedMemoryNone() const {
1124 return isMemNoOffset(false, 0);
1125 }
1126 bool isDupAlignedMemoryNone() const {
1127 return isMemNoOffset(false, 0);
1128 }
1129 bool isAlignedMemory16() const {
1130 if (isMemNoOffset(false, 2)) // alignment in bytes for 16-bits is 2.
1131 return true;
1132 return isMemNoOffset(false, 0);
1133 }
1134 bool isDupAlignedMemory16() const {
1135 if (isMemNoOffset(false, 2)) // alignment in bytes for 16-bits is 2.
1136 return true;
1137 return isMemNoOffset(false, 0);
1138 }
1139 bool isAlignedMemory32() const {
1140 if (isMemNoOffset(false, 4)) // alignment in bytes for 32-bits is 4.
1141 return true;
1142 return isMemNoOffset(false, 0);
1143 }
1144 bool isDupAlignedMemory32() const {
1145 if (isMemNoOffset(false, 4)) // alignment in bytes for 32-bits is 4.
1146 return true;
1147 return isMemNoOffset(false, 0);
1148 }
1149 bool isAlignedMemory64() const {
1150 if (isMemNoOffset(false, 8)) // alignment in bytes for 64-bits is 8.
1151 return true;
1152 return isMemNoOffset(false, 0);
1153 }
1154 bool isDupAlignedMemory64() const {
1155 if (isMemNoOffset(false, 8)) // alignment in bytes for 64-bits is 8.
1156 return true;
1157 return isMemNoOffset(false, 0);
1158 }
1159 bool isAlignedMemory64or128() const {
1160 if (isMemNoOffset(false, 8)) // alignment in bytes for 64-bits is 8.
1161 return true;
1162 if (isMemNoOffset(false, 16)) // alignment in bytes for 128-bits is 16.
1163 return true;
1164 return isMemNoOffset(false, 0);
1165 }
1166 bool isDupAlignedMemory64or128() const {
1167 if (isMemNoOffset(false, 8)) // alignment in bytes for 64-bits is 8.
1168 return true;
1169 if (isMemNoOffset(false, 16)) // alignment in bytes for 128-bits is 16.
1170 return true;
1171 return isMemNoOffset(false, 0);
1172 }
1173 bool isAlignedMemory64or128or256() const {
1174 if (isMemNoOffset(false, 8)) // alignment in bytes for 64-bits is 8.
1175 return true;
1176 if (isMemNoOffset(false, 16)) // alignment in bytes for 128-bits is 16.
1177 return true;
1178 if (isMemNoOffset(false, 32)) // alignment in bytes for 256-bits is 32.
1179 return true;
1180 return isMemNoOffset(false, 0);
1181 }
Jim Grosbachd3595712011-08-03 23:50:40 +00001182 bool isAddrMode2() const {
Chad Rosier41099832012-09-11 23:02:35 +00001183 if (!isMem() || Memory.Alignment != 0) return false;
Jim Grosbachd3595712011-08-03 23:50:40 +00001184 // Check for register offset.
Jim Grosbach871dff72011-10-11 15:59:20 +00001185 if (Memory.OffsetRegNum) return true;
Jim Grosbachd3595712011-08-03 23:50:40 +00001186 // Immediate offset in range [-4095, 4095].
Jim Grosbach871dff72011-10-11 15:59:20 +00001187 if (!Memory.OffsetImm) return true;
1188 int64_t Val = Memory.OffsetImm->getValue();
Jim Grosbachd3595712011-08-03 23:50:40 +00001189 return Val > -4096 && Val < 4096;
Bruno Cardoso Lopesbda36322011-04-04 17:18:19 +00001190 }
Jim Grosbachcd17c122011-08-04 23:01:30 +00001191 bool isAM2OffsetImm() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001192 if (!isImm()) return false;
Jim Grosbachcd17c122011-08-04 23:01:30 +00001193 // Immediate offset in range [-4095, 4095].
1194 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1195 if (!CE) return false;
1196 int64_t Val = CE->getValue();
Mihai Popac1d119e2013-06-11 09:48:35 +00001197 return (Val == INT32_MIN) || (Val > -4096 && Val < 4096);
Jim Grosbachcd17c122011-08-04 23:01:30 +00001198 }
Jim Grosbach5b96b802011-08-10 20:29:19 +00001199 bool isAddrMode3() const {
Jim Grosbach8648c102011-12-19 23:06:24 +00001200 // If we have an immediate that's not a constant, treat it as a label
1201 // reference needing a fixup. If it is a constant, it's something else
1202 // and we reject it.
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001203 if (isImm() && !isa<MCConstantExpr>(getImm()))
Jim Grosbach8648c102011-12-19 23:06:24 +00001204 return true;
Chad Rosier41099832012-09-11 23:02:35 +00001205 if (!isMem() || Memory.Alignment != 0) return false;
Jim Grosbach5b96b802011-08-10 20:29:19 +00001206 // No shifts are legal for AM3.
Jim Grosbach871dff72011-10-11 15:59:20 +00001207 if (Memory.ShiftType != ARM_AM::no_shift) return false;
Jim Grosbach5b96b802011-08-10 20:29:19 +00001208 // Check for register offset.
Jim Grosbach871dff72011-10-11 15:59:20 +00001209 if (Memory.OffsetRegNum) return true;
Jim Grosbach5b96b802011-08-10 20:29:19 +00001210 // Immediate offset in range [-255, 255].
Jim Grosbach871dff72011-10-11 15:59:20 +00001211 if (!Memory.OffsetImm) return true;
1212 int64_t Val = Memory.OffsetImm->getValue();
Silviu Baranga5a719f92012-05-11 09:10:54 +00001213 // The #-0 offset is encoded as INT32_MIN, and we have to check
1214 // for this too.
1215 return (Val > -256 && Val < 256) || Val == INT32_MIN;
Jim Grosbach5b96b802011-08-10 20:29:19 +00001216 }
1217 bool isAM3Offset() const {
Jim Grosbach6e5778f2011-10-07 23:24:09 +00001218 if (Kind != k_Immediate && Kind != k_PostIndexRegister)
Jim Grosbach5b96b802011-08-10 20:29:19 +00001219 return false;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00001220 if (Kind == k_PostIndexRegister)
Jim Grosbach5b96b802011-08-10 20:29:19 +00001221 return PostIdxReg.ShiftTy == ARM_AM::no_shift;
1222 // Immediate offset in range [-255, 255].
1223 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1224 if (!CE) return false;
1225 int64_t Val = CE->getValue();
Jim Grosbach1d9d5e92011-08-10 21:56:18 +00001226 // Special case, #-0 is INT32_MIN.
1227 return (Val > -256 && Val < 256) || Val == INT32_MIN;
Jim Grosbach5b96b802011-08-10 20:29:19 +00001228 }
Jim Grosbachd3595712011-08-03 23:50:40 +00001229 bool isAddrMode5() const {
Jim Grosbachfb2f1d62011-11-01 01:24:45 +00001230 // If we have an immediate that's not a constant, treat it as a label
1231 // reference needing a fixup. If it is a constant, it's something else
1232 // and we reject it.
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001233 if (isImm() && !isa<MCConstantExpr>(getImm()))
Jim Grosbachfb2f1d62011-11-01 01:24:45 +00001234 return true;
Chad Rosier41099832012-09-11 23:02:35 +00001235 if (!isMem() || Memory.Alignment != 0) return false;
Jim Grosbachd3595712011-08-03 23:50:40 +00001236 // Check for register offset.
Jim Grosbach871dff72011-10-11 15:59:20 +00001237 if (Memory.OffsetRegNum) return false;
Jim Grosbachd3595712011-08-03 23:50:40 +00001238 // Immediate offset in range [-1020, 1020] and a multiple of 4.
Jim Grosbach871dff72011-10-11 15:59:20 +00001239 if (!Memory.OffsetImm) return true;
1240 int64_t Val = Memory.OffsetImm->getValue();
Owen Anderson967674d2011-08-29 19:36:44 +00001241 return (Val >= -1020 && Val <= 1020 && ((Val & 3) == 0)) ||
Jim Grosbachfb2f1d62011-11-01 01:24:45 +00001242 Val == INT32_MIN;
Bill Wendling8d2aa032010-11-08 23:49:57 +00001243 }
Jim Grosbach05541f42011-09-19 22:21:13 +00001244 bool isMemTBB() const {
Chad Rosier41099832012-09-11 23:02:35 +00001245 if (!isMem() || !Memory.OffsetRegNum || Memory.isNegative ||
Jim Grosbacha95ec992011-10-11 17:29:55 +00001246 Memory.ShiftType != ARM_AM::no_shift || Memory.Alignment != 0)
Jim Grosbach05541f42011-09-19 22:21:13 +00001247 return false;
1248 return true;
1249 }
1250 bool isMemTBH() const {
Chad Rosier41099832012-09-11 23:02:35 +00001251 if (!isMem() || !Memory.OffsetRegNum || Memory.isNegative ||
Jim Grosbacha95ec992011-10-11 17:29:55 +00001252 Memory.ShiftType != ARM_AM::lsl || Memory.ShiftImm != 1 ||
1253 Memory.Alignment != 0 )
Jim Grosbach05541f42011-09-19 22:21:13 +00001254 return false;
1255 return true;
1256 }
Jim Grosbachd3595712011-08-03 23:50:40 +00001257 bool isMemRegOffset() const {
Chad Rosier41099832012-09-11 23:02:35 +00001258 if (!isMem() || !Memory.OffsetRegNum || Memory.Alignment != 0)
Bill Wendling092a7bd2010-12-14 03:36:38 +00001259 return false;
Daniel Dunbar7ed45592011-01-18 05:34:11 +00001260 return true;
Bill Wendling092a7bd2010-12-14 03:36:38 +00001261 }
Jim Grosbache0ebc1c2011-09-07 23:10:15 +00001262 bool isT2MemRegOffset() const {
Chad Rosier41099832012-09-11 23:02:35 +00001263 if (!isMem() || !Memory.OffsetRegNum || Memory.isNegative ||
Jim Grosbacha95ec992011-10-11 17:29:55 +00001264 Memory.Alignment != 0)
Jim Grosbache0ebc1c2011-09-07 23:10:15 +00001265 return false;
1266 // Only lsl #{0, 1, 2, 3} allowed.
Jim Grosbach871dff72011-10-11 15:59:20 +00001267 if (Memory.ShiftType == ARM_AM::no_shift)
Jim Grosbache0ebc1c2011-09-07 23:10:15 +00001268 return true;
Jim Grosbach871dff72011-10-11 15:59:20 +00001269 if (Memory.ShiftType != ARM_AM::lsl || Memory.ShiftImm > 3)
Jim Grosbache0ebc1c2011-09-07 23:10:15 +00001270 return false;
1271 return true;
1272 }
Jim Grosbachd3595712011-08-03 23:50:40 +00001273 bool isMemThumbRR() const {
1274 // Thumb reg+reg addressing is simple. Just two registers, a base and
1275 // an offset. No shifts, negations or any other complicating factors.
Chad Rosier41099832012-09-11 23:02:35 +00001276 if (!isMem() || !Memory.OffsetRegNum || Memory.isNegative ||
Jim Grosbacha95ec992011-10-11 17:29:55 +00001277 Memory.ShiftType != ARM_AM::no_shift || Memory.Alignment != 0)
Bill Wendling811c9362010-11-30 07:44:32 +00001278 return false;
Jim Grosbach871dff72011-10-11 15:59:20 +00001279 return isARMLowRegister(Memory.BaseRegNum) &&
1280 (!Memory.OffsetRegNum || isARMLowRegister(Memory.OffsetRegNum));
Jim Grosbach3fe94e32011-08-19 17:55:24 +00001281 }
1282 bool isMemThumbRIs4() const {
Chad Rosier41099832012-09-11 23:02:35 +00001283 if (!isMem() || Memory.OffsetRegNum != 0 ||
Jim Grosbacha95ec992011-10-11 17:29:55 +00001284 !isARMLowRegister(Memory.BaseRegNum) || Memory.Alignment != 0)
Jim Grosbach3fe94e32011-08-19 17:55:24 +00001285 return false;
1286 // Immediate offset, multiple of 4 in range [0, 124].
Jim Grosbach871dff72011-10-11 15:59:20 +00001287 if (!Memory.OffsetImm) return true;
1288 int64_t Val = Memory.OffsetImm->getValue();
Jim Grosbach23983d62011-08-19 18:13:48 +00001289 return Val >= 0 && Val <= 124 && (Val % 4) == 0;
1290 }
Jim Grosbach26d35872011-08-19 18:55:51 +00001291 bool isMemThumbRIs2() const {
Chad Rosier41099832012-09-11 23:02:35 +00001292 if (!isMem() || Memory.OffsetRegNum != 0 ||
Jim Grosbacha95ec992011-10-11 17:29:55 +00001293 !isARMLowRegister(Memory.BaseRegNum) || Memory.Alignment != 0)
Jim Grosbach26d35872011-08-19 18:55:51 +00001294 return false;
1295 // Immediate offset, multiple of 4 in range [0, 62].
Jim Grosbach871dff72011-10-11 15:59:20 +00001296 if (!Memory.OffsetImm) return true;
1297 int64_t Val = Memory.OffsetImm->getValue();
Jim Grosbach26d35872011-08-19 18:55:51 +00001298 return Val >= 0 && Val <= 62 && (Val % 2) == 0;
1299 }
Jim Grosbacha32c7532011-08-19 18:49:59 +00001300 bool isMemThumbRIs1() const {
Chad Rosier41099832012-09-11 23:02:35 +00001301 if (!isMem() || Memory.OffsetRegNum != 0 ||
Jim Grosbacha95ec992011-10-11 17:29:55 +00001302 !isARMLowRegister(Memory.BaseRegNum) || Memory.Alignment != 0)
Jim Grosbacha32c7532011-08-19 18:49:59 +00001303 return false;
1304 // Immediate offset in range [0, 31].
Jim Grosbach871dff72011-10-11 15:59:20 +00001305 if (!Memory.OffsetImm) return true;
1306 int64_t Val = Memory.OffsetImm->getValue();
Jim Grosbacha32c7532011-08-19 18:49:59 +00001307 return Val >= 0 && Val <= 31;
1308 }
Jim Grosbach23983d62011-08-19 18:13:48 +00001309 bool isMemThumbSPI() const {
Chad Rosier41099832012-09-11 23:02:35 +00001310 if (!isMem() || Memory.OffsetRegNum != 0 ||
Jim Grosbacha95ec992011-10-11 17:29:55 +00001311 Memory.BaseRegNum != ARM::SP || Memory.Alignment != 0)
Jim Grosbach23983d62011-08-19 18:13:48 +00001312 return false;
1313 // Immediate offset, multiple of 4 in range [0, 1020].
Jim Grosbach871dff72011-10-11 15:59:20 +00001314 if (!Memory.OffsetImm) return true;
1315 int64_t Val = Memory.OffsetImm->getValue();
Jim Grosbach23983d62011-08-19 18:13:48 +00001316 return Val >= 0 && Val <= 1020 && (Val % 4) == 0;
Bill Wendling811c9362010-11-30 07:44:32 +00001317 }
Jim Grosbach7db8d692011-09-08 22:07:06 +00001318 bool isMemImm8s4Offset() const {
Jim Grosbach8648c102011-12-19 23:06:24 +00001319 // If we have an immediate that's not a constant, treat it as a label
1320 // reference needing a fixup. If it is a constant, it's something else
1321 // and we reject it.
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001322 if (isImm() && !isa<MCConstantExpr>(getImm()))
Jim Grosbach8648c102011-12-19 23:06:24 +00001323 return true;
Chad Rosier41099832012-09-11 23:02:35 +00001324 if (!isMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
Jim Grosbach7db8d692011-09-08 22:07:06 +00001325 return false;
1326 // Immediate offset a multiple of 4 in range [-1020, 1020].
Jim Grosbach871dff72011-10-11 15:59:20 +00001327 if (!Memory.OffsetImm) return true;
1328 int64_t Val = Memory.OffsetImm->getValue();
Jiangning Liu6a43bf72012-08-02 08:29:50 +00001329 // Special case, #-0 is INT32_MIN.
1330 return (Val >= -1020 && Val <= 1020 && (Val & 3) == 0) || Val == INT32_MIN;
Jim Grosbach7db8d692011-09-08 22:07:06 +00001331 }
Jim Grosbacha05627e2011-09-09 18:37:27 +00001332 bool isMemImm0_1020s4Offset() const {
Chad Rosier41099832012-09-11 23:02:35 +00001333 if (!isMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
Jim Grosbacha05627e2011-09-09 18:37:27 +00001334 return false;
1335 // Immediate offset a multiple of 4 in range [0, 1020].
Jim Grosbach871dff72011-10-11 15:59:20 +00001336 if (!Memory.OffsetImm) return true;
1337 int64_t Val = Memory.OffsetImm->getValue();
Jim Grosbacha05627e2011-09-09 18:37:27 +00001338 return Val >= 0 && Val <= 1020 && (Val & 3) == 0;
1339 }
Jim Grosbachd3595712011-08-03 23:50:40 +00001340 bool isMemImm8Offset() const {
Chad Rosier41099832012-09-11 23:02:35 +00001341 if (!isMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
Jim Grosbachd3595712011-08-03 23:50:40 +00001342 return false;
Jim Grosbach94298a92012-01-18 22:46:46 +00001343 // Base reg of PC isn't allowed for these encodings.
1344 if (Memory.BaseRegNum == ARM::PC) return false;
Jim Grosbachd3595712011-08-03 23:50:40 +00001345 // Immediate offset in range [-255, 255].
Jim Grosbach871dff72011-10-11 15:59:20 +00001346 if (!Memory.OffsetImm) return true;
1347 int64_t Val = Memory.OffsetImm->getValue();
Owen Anderson49168402011-09-23 22:25:02 +00001348 return (Val == INT32_MIN) || (Val > -256 && Val < 256);
Jim Grosbachd3595712011-08-03 23:50:40 +00001349 }
Jim Grosbach2392c532011-09-07 23:39:14 +00001350 bool isMemPosImm8Offset() const {
Chad Rosier41099832012-09-11 23:02:35 +00001351 if (!isMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
Jim Grosbach2392c532011-09-07 23:39:14 +00001352 return false;
1353 // Immediate offset in range [0, 255].
Jim Grosbach871dff72011-10-11 15:59:20 +00001354 if (!Memory.OffsetImm) return true;
1355 int64_t Val = Memory.OffsetImm->getValue();
Jim Grosbach2392c532011-09-07 23:39:14 +00001356 return Val >= 0 && Val < 256;
1357 }
Jim Grosbach5bfa8ba2011-09-07 20:58:57 +00001358 bool isMemNegImm8Offset() const {
Chad Rosier41099832012-09-11 23:02:35 +00001359 if (!isMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
Jim Grosbach5bfa8ba2011-09-07 20:58:57 +00001360 return false;
Jim Grosbach94298a92012-01-18 22:46:46 +00001361 // Base reg of PC isn't allowed for these encodings.
1362 if (Memory.BaseRegNum == ARM::PC) return false;
Jim Grosbach5bfa8ba2011-09-07 20:58:57 +00001363 // Immediate offset in range [-255, -1].
Jim Grosbach175c7d02011-12-06 04:49:29 +00001364 if (!Memory.OffsetImm) return false;
Jim Grosbach871dff72011-10-11 15:59:20 +00001365 int64_t Val = Memory.OffsetImm->getValue();
Jim Grosbach175c7d02011-12-06 04:49:29 +00001366 return (Val == INT32_MIN) || (Val > -256 && Val < 0);
Jim Grosbach5bfa8ba2011-09-07 20:58:57 +00001367 }
1368 bool isMemUImm12Offset() const {
Chad Rosier41099832012-09-11 23:02:35 +00001369 if (!isMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
Jim Grosbach5bfa8ba2011-09-07 20:58:57 +00001370 return false;
1371 // Immediate offset in range [0, 4095].
Jim Grosbach871dff72011-10-11 15:59:20 +00001372 if (!Memory.OffsetImm) return true;
1373 int64_t Val = Memory.OffsetImm->getValue();
Jim Grosbach5bfa8ba2011-09-07 20:58:57 +00001374 return (Val >= 0 && Val < 4096);
1375 }
Jim Grosbachd3595712011-08-03 23:50:40 +00001376 bool isMemImm12Offset() const {
Jim Grosbach95466ce2011-08-08 20:59:31 +00001377 // If we have an immediate that's not a constant, treat it as a label
1378 // reference needing a fixup. If it is a constant, it's something else
1379 // and we reject it.
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001380 if (isImm() && !isa<MCConstantExpr>(getImm()))
Jim Grosbach95466ce2011-08-08 20:59:31 +00001381 return true;
1382
Chad Rosier41099832012-09-11 23:02:35 +00001383 if (!isMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
Jim Grosbachd3595712011-08-03 23:50:40 +00001384 return false;
1385 // Immediate offset in range [-4095, 4095].
Jim Grosbach871dff72011-10-11 15:59:20 +00001386 if (!Memory.OffsetImm) return true;
1387 int64_t Val = Memory.OffsetImm->getValue();
Owen Anderson967674d2011-08-29 19:36:44 +00001388 return (Val > -4096 && Val < 4096) || (Val == INT32_MIN);
Jim Grosbachd3595712011-08-03 23:50:40 +00001389 }
1390 bool isPostIdxImm8() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001391 if (!isImm()) return false;
Jim Grosbachd3595712011-08-03 23:50:40 +00001392 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1393 if (!CE) return false;
1394 int64_t Val = CE->getValue();
Owen Andersonf02d98d2011-08-29 17:17:09 +00001395 return (Val > -256 && Val < 256) || (Val == INT32_MIN);
Jim Grosbachd3595712011-08-03 23:50:40 +00001396 }
Jim Grosbach93981412011-10-11 21:55:36 +00001397 bool isPostIdxImm8s4() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001398 if (!isImm()) return false;
Jim Grosbach93981412011-10-11 21:55:36 +00001399 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1400 if (!CE) return false;
1401 int64_t Val = CE->getValue();
1402 return ((Val & 3) == 0 && Val >= -1020 && Val <= 1020) ||
1403 (Val == INT32_MIN);
1404 }
Jim Grosbachd3595712011-08-03 23:50:40 +00001405
Jim Grosbach6e5778f2011-10-07 23:24:09 +00001406 bool isMSRMask() const { return Kind == k_MSRMask; }
Tim Northoveree843ef2014-08-15 10:47:12 +00001407 bool isBankedReg() const { return Kind == k_BankedReg; }
Jim Grosbach6e5778f2011-10-07 23:24:09 +00001408 bool isProcIFlags() const { return Kind == k_ProcIFlags; }
Daniel Dunbar5cd4d0f2010-08-11 05:24:50 +00001409
Jim Grosbach741cd732011-10-17 22:26:03 +00001410 // NEON operands.
Jim Grosbach2f50e922011-12-15 21:44:33 +00001411 bool isSingleSpacedVectorList() const {
1412 return Kind == k_VectorList && !VectorList.isDoubleSpaced;
1413 }
1414 bool isDoubleSpacedVectorList() const {
1415 return Kind == k_VectorList && VectorList.isDoubleSpaced;
1416 }
Jim Grosbachad47cfc2011-10-18 23:02:30 +00001417 bool isVecListOneD() const {
Jim Grosbach2f50e922011-12-15 21:44:33 +00001418 if (!isSingleSpacedVectorList()) return false;
Jim Grosbachad47cfc2011-10-18 23:02:30 +00001419 return VectorList.Count == 1;
1420 }
1421
Jim Grosbachc988e0c2012-03-05 19:33:30 +00001422 bool isVecListDPair() const {
1423 if (!isSingleSpacedVectorList()) return false;
1424 return (ARMMCRegisterClasses[ARM::DPairRegClassID]
1425 .contains(VectorList.RegNum));
1426 }
1427
Jim Grosbachc4360fe2011-10-21 20:02:19 +00001428 bool isVecListThreeD() const {
Jim Grosbach2f50e922011-12-15 21:44:33 +00001429 if (!isSingleSpacedVectorList()) return false;
Jim Grosbachc4360fe2011-10-21 20:02:19 +00001430 return VectorList.Count == 3;
1431 }
1432
Jim Grosbach846bcff2011-10-21 20:35:01 +00001433 bool isVecListFourD() const {
Jim Grosbach2f50e922011-12-15 21:44:33 +00001434 if (!isSingleSpacedVectorList()) return false;
Jim Grosbach846bcff2011-10-21 20:35:01 +00001435 return VectorList.Count == 4;
1436 }
1437
Jim Grosbache5307f92012-03-05 21:43:40 +00001438 bool isVecListDPairSpaced() const {
Kevin Enderby56113982014-03-26 21:54:11 +00001439 if (Kind != k_VectorList) return false;
Kevin Enderby816ca272012-03-20 17:41:51 +00001440 if (isSingleSpacedVectorList()) return false;
Jim Grosbache5307f92012-03-05 21:43:40 +00001441 return (ARMMCRegisterClasses[ARM::DPairSpcRegClassID]
1442 .contains(VectorList.RegNum));
1443 }
1444
Jim Grosbachac2af3f2012-01-23 23:20:46 +00001445 bool isVecListThreeQ() const {
1446 if (!isDoubleSpacedVectorList()) return false;
1447 return VectorList.Count == 3;
1448 }
1449
Jim Grosbach1e946a42012-01-24 00:43:12 +00001450 bool isVecListFourQ() const {
1451 if (!isDoubleSpacedVectorList()) return false;
1452 return VectorList.Count == 4;
1453 }
1454
Jim Grosbachc5af54e2011-12-21 00:38:54 +00001455 bool isSingleSpacedVectorAllLanes() const {
1456 return Kind == k_VectorListAllLanes && !VectorList.isDoubleSpaced;
1457 }
1458 bool isDoubleSpacedVectorAllLanes() const {
1459 return Kind == k_VectorListAllLanes && VectorList.isDoubleSpaced;
1460 }
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00001461 bool isVecListOneDAllLanes() const {
Jim Grosbachc5af54e2011-12-21 00:38:54 +00001462 if (!isSingleSpacedVectorAllLanes()) return false;
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00001463 return VectorList.Count == 1;
1464 }
1465
Jim Grosbach13a292c2012-03-06 22:01:44 +00001466 bool isVecListDPairAllLanes() const {
Jim Grosbachc5af54e2011-12-21 00:38:54 +00001467 if (!isSingleSpacedVectorAllLanes()) return false;
Jim Grosbach13a292c2012-03-06 22:01:44 +00001468 return (ARMMCRegisterClasses[ARM::DPairRegClassID]
1469 .contains(VectorList.RegNum));
Jim Grosbachc5af54e2011-12-21 00:38:54 +00001470 }
1471
Jim Grosbached428bc2012-03-06 23:10:38 +00001472 bool isVecListDPairSpacedAllLanes() const {
Jim Grosbachc5af54e2011-12-21 00:38:54 +00001473 if (!isDoubleSpacedVectorAllLanes()) return false;
Jim Grosbach3ecf9762011-11-30 18:21:25 +00001474 return VectorList.Count == 2;
1475 }
1476
Jim Grosbachb78403c2012-01-24 23:47:04 +00001477 bool isVecListThreeDAllLanes() const {
1478 if (!isSingleSpacedVectorAllLanes()) return false;
1479 return VectorList.Count == 3;
1480 }
1481
1482 bool isVecListThreeQAllLanes() const {
1483 if (!isDoubleSpacedVectorAllLanes()) return false;
1484 return VectorList.Count == 3;
1485 }
1486
Jim Grosbach086cbfa2012-01-25 00:01:08 +00001487 bool isVecListFourDAllLanes() const {
1488 if (!isSingleSpacedVectorAllLanes()) return false;
1489 return VectorList.Count == 4;
1490 }
1491
1492 bool isVecListFourQAllLanes() const {
1493 if (!isDoubleSpacedVectorAllLanes()) return false;
1494 return VectorList.Count == 4;
1495 }
1496
Jim Grosbach75e2ab52011-12-20 19:21:26 +00001497 bool isSingleSpacedVectorIndexed() const {
1498 return Kind == k_VectorListIndexed && !VectorList.isDoubleSpaced;
1499 }
1500 bool isDoubleSpacedVectorIndexed() const {
1501 return Kind == k_VectorListIndexed && VectorList.isDoubleSpaced;
1502 }
Jim Grosbach04945c42011-12-02 00:35:16 +00001503 bool isVecListOneDByteIndexed() const {
Jim Grosbach75e2ab52011-12-20 19:21:26 +00001504 if (!isSingleSpacedVectorIndexed()) return false;
Jim Grosbach04945c42011-12-02 00:35:16 +00001505 return VectorList.Count == 1 && VectorList.LaneIndex <= 7;
1506 }
1507
Jim Grosbachda511042011-12-14 23:35:06 +00001508 bool isVecListOneDHWordIndexed() const {
Jim Grosbach75e2ab52011-12-20 19:21:26 +00001509 if (!isSingleSpacedVectorIndexed()) return false;
Jim Grosbachda511042011-12-14 23:35:06 +00001510 return VectorList.Count == 1 && VectorList.LaneIndex <= 3;
1511 }
1512
1513 bool isVecListOneDWordIndexed() const {
Jim Grosbach75e2ab52011-12-20 19:21:26 +00001514 if (!isSingleSpacedVectorIndexed()) return false;
Jim Grosbachda511042011-12-14 23:35:06 +00001515 return VectorList.Count == 1 && VectorList.LaneIndex <= 1;
1516 }
1517
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00001518 bool isVecListTwoDByteIndexed() const {
Jim Grosbach75e2ab52011-12-20 19:21:26 +00001519 if (!isSingleSpacedVectorIndexed()) return false;
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00001520 return VectorList.Count == 2 && VectorList.LaneIndex <= 7;
1521 }
1522
Jim Grosbachda511042011-12-14 23:35:06 +00001523 bool isVecListTwoDHWordIndexed() const {
Jim Grosbach75e2ab52011-12-20 19:21:26 +00001524 if (!isSingleSpacedVectorIndexed()) return false;
1525 return VectorList.Count == 2 && VectorList.LaneIndex <= 3;
1526 }
1527
1528 bool isVecListTwoQWordIndexed() const {
1529 if (!isDoubleSpacedVectorIndexed()) return false;
1530 return VectorList.Count == 2 && VectorList.LaneIndex <= 1;
1531 }
1532
1533 bool isVecListTwoQHWordIndexed() const {
1534 if (!isDoubleSpacedVectorIndexed()) return false;
Jim Grosbachda511042011-12-14 23:35:06 +00001535 return VectorList.Count == 2 && VectorList.LaneIndex <= 3;
1536 }
1537
1538 bool isVecListTwoDWordIndexed() const {
Jim Grosbach75e2ab52011-12-20 19:21:26 +00001539 if (!isSingleSpacedVectorIndexed()) return false;
Jim Grosbachda511042011-12-14 23:35:06 +00001540 return VectorList.Count == 2 && VectorList.LaneIndex <= 1;
1541 }
1542
Jim Grosbacha8b444b2012-01-23 21:53:26 +00001543 bool isVecListThreeDByteIndexed() const {
1544 if (!isSingleSpacedVectorIndexed()) return false;
1545 return VectorList.Count == 3 && VectorList.LaneIndex <= 7;
1546 }
1547
1548 bool isVecListThreeDHWordIndexed() const {
1549 if (!isSingleSpacedVectorIndexed()) return false;
1550 return VectorList.Count == 3 && VectorList.LaneIndex <= 3;
1551 }
1552
1553 bool isVecListThreeQWordIndexed() const {
1554 if (!isDoubleSpacedVectorIndexed()) return false;
1555 return VectorList.Count == 3 && VectorList.LaneIndex <= 1;
1556 }
1557
1558 bool isVecListThreeQHWordIndexed() const {
1559 if (!isDoubleSpacedVectorIndexed()) return false;
1560 return VectorList.Count == 3 && VectorList.LaneIndex <= 3;
1561 }
1562
1563 bool isVecListThreeDWordIndexed() const {
1564 if (!isSingleSpacedVectorIndexed()) return false;
1565 return VectorList.Count == 3 && VectorList.LaneIndex <= 1;
1566 }
1567
Jim Grosbach14952a02012-01-24 18:37:25 +00001568 bool isVecListFourDByteIndexed() const {
1569 if (!isSingleSpacedVectorIndexed()) return false;
1570 return VectorList.Count == 4 && VectorList.LaneIndex <= 7;
1571 }
1572
1573 bool isVecListFourDHWordIndexed() const {
1574 if (!isSingleSpacedVectorIndexed()) return false;
1575 return VectorList.Count == 4 && VectorList.LaneIndex <= 3;
1576 }
1577
1578 bool isVecListFourQWordIndexed() const {
1579 if (!isDoubleSpacedVectorIndexed()) return false;
1580 return VectorList.Count == 4 && VectorList.LaneIndex <= 1;
1581 }
1582
1583 bool isVecListFourQHWordIndexed() const {
1584 if (!isDoubleSpacedVectorIndexed()) return false;
1585 return VectorList.Count == 4 && VectorList.LaneIndex <= 3;
1586 }
1587
1588 bool isVecListFourDWordIndexed() const {
1589 if (!isSingleSpacedVectorIndexed()) return false;
1590 return VectorList.Count == 4 && VectorList.LaneIndex <= 1;
1591 }
1592
Jim Grosbachd0637bf2011-10-07 23:56:00 +00001593 bool isVectorIndex8() const {
1594 if (Kind != k_VectorIndex) return false;
1595 return VectorIndex.Val < 8;
1596 }
1597 bool isVectorIndex16() const {
1598 if (Kind != k_VectorIndex) return false;
1599 return VectorIndex.Val < 4;
1600 }
1601 bool isVectorIndex32() const {
1602 if (Kind != k_VectorIndex) return false;
1603 return VectorIndex.Val < 2;
1604 }
1605
Jim Grosbach741cd732011-10-17 22:26:03 +00001606 bool isNEONi8splat() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001607 if (!isImm()) return false;
Jim Grosbach741cd732011-10-17 22:26:03 +00001608 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1609 // Must be a constant.
1610 if (!CE) return false;
1611 int64_t Value = CE->getValue();
1612 // i8 value splatted across 8 bytes. The immediate is just the 8 byte
1613 // value.
Jim Grosbach741cd732011-10-17 22:26:03 +00001614 return Value >= 0 && Value < 256;
1615 }
Jim Grosbachd0637bf2011-10-07 23:56:00 +00001616
Jim Grosbachcda32ae2011-10-17 23:09:09 +00001617 bool isNEONi16splat() const {
Stepan Dyatkovskiy00dcc0f2014-04-24 06:03:01 +00001618 if (isNEONByteReplicate(2))
1619 return false; // Leave that for bytes replication and forbid by default.
1620 if (!isImm())
1621 return false;
Jim Grosbachcda32ae2011-10-17 23:09:09 +00001622 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1623 // Must be a constant.
1624 if (!CE) return false;
Renato Golinf5dd1da2014-09-25 11:31:24 +00001625 unsigned Value = CE->getValue();
1626 return ARM_AM::isNEONi16splat(Value);
1627 }
1628
1629 bool isNEONi16splatNot() const {
1630 if (!isImm())
1631 return false;
1632 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1633 // Must be a constant.
1634 if (!CE) return false;
1635 unsigned Value = CE->getValue();
1636 return ARM_AM::isNEONi16splat(~Value & 0xffff);
Jim Grosbachcda32ae2011-10-17 23:09:09 +00001637 }
1638
Jim Grosbach8211c052011-10-18 00:22:00 +00001639 bool isNEONi32splat() const {
Stepan Dyatkovskiy00dcc0f2014-04-24 06:03:01 +00001640 if (isNEONByteReplicate(4))
1641 return false; // Leave that for bytes replication and forbid by default.
1642 if (!isImm())
1643 return false;
Jim Grosbach8211c052011-10-18 00:22:00 +00001644 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1645 // Must be a constant.
1646 if (!CE) return false;
Renato Golinf5dd1da2014-09-25 11:31:24 +00001647 unsigned Value = CE->getValue();
1648 return ARM_AM::isNEONi32splat(Value);
1649 }
1650
1651 bool isNEONi32splatNot() const {
1652 if (!isImm())
1653 return false;
1654 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1655 // Must be a constant.
1656 if (!CE) return false;
1657 unsigned Value = CE->getValue();
1658 return ARM_AM::isNEONi32splat(~Value);
Jim Grosbach8211c052011-10-18 00:22:00 +00001659 }
1660
Stepan Dyatkovskiy00dcc0f2014-04-24 06:03:01 +00001661 bool isNEONByteReplicate(unsigned NumBytes) const {
1662 if (!isImm())
1663 return false;
Jim Grosbach8211c052011-10-18 00:22:00 +00001664 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1665 // Must be a constant.
Stepan Dyatkovskiy00dcc0f2014-04-24 06:03:01 +00001666 if (!CE)
1667 return false;
1668 int64_t Value = CE->getValue();
1669 if (!Value)
1670 return false; // Don't bother with zero.
1671
1672 unsigned char B = Value & 0xff;
1673 for (unsigned i = 1; i < NumBytes; ++i) {
1674 Value >>= 8;
1675 if ((Value & 0xff) != B)
1676 return false;
1677 }
1678 return true;
1679 }
1680 bool isNEONi16ByteReplicate() const { return isNEONByteReplicate(2); }
1681 bool isNEONi32ByteReplicate() const { return isNEONByteReplicate(4); }
1682 bool isNEONi32vmov() const {
1683 if (isNEONByteReplicate(4))
1684 return false; // Let it to be classified as byte-replicate case.
1685 if (!isImm())
1686 return false;
1687 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1688 // Must be a constant.
1689 if (!CE)
1690 return false;
Jim Grosbach8211c052011-10-18 00:22:00 +00001691 int64_t Value = CE->getValue();
1692 // i32 value with set bits only in one byte X000, 0X00, 00X0, or 000X,
1693 // for VMOV/VMVN only, 00Xf or 0Xff are also accepted.
Renato Golinf5dd1da2014-09-25 11:31:24 +00001694 // FIXME: This is probably wrong and a copy and paste from previous example
Jim Grosbach8211c052011-10-18 00:22:00 +00001695 return (Value >= 0 && Value < 256) ||
1696 (Value >= 0x0100 && Value <= 0xff00) ||
1697 (Value >= 0x010000 && Value <= 0xff0000) ||
1698 (Value >= 0x01000000 && Value <= 0xff000000) ||
1699 (Value >= 0x01ff && Value <= 0xffff && (Value & 0xff) == 0xff) ||
1700 (Value >= 0x01ffff && Value <= 0xffffff && (Value & 0xffff) == 0xffff);
1701 }
Jim Grosbach045b6c72011-12-19 23:51:07 +00001702 bool isNEONi32vmovNeg() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001703 if (!isImm()) return false;
Jim Grosbach045b6c72011-12-19 23:51:07 +00001704 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1705 // Must be a constant.
1706 if (!CE) return false;
1707 int64_t Value = ~CE->getValue();
1708 // i32 value with set bits only in one byte X000, 0X00, 00X0, or 000X,
1709 // for VMOV/VMVN only, 00Xf or 0Xff are also accepted.
Renato Golinf5dd1da2014-09-25 11:31:24 +00001710 // FIXME: This is probably wrong and a copy and paste from previous example
Jim Grosbach045b6c72011-12-19 23:51:07 +00001711 return (Value >= 0 && Value < 256) ||
1712 (Value >= 0x0100 && Value <= 0xff00) ||
1713 (Value >= 0x010000 && Value <= 0xff0000) ||
1714 (Value >= 0x01000000 && Value <= 0xff000000) ||
1715 (Value >= 0x01ff && Value <= 0xffff && (Value & 0xff) == 0xff) ||
1716 (Value >= 0x01ffff && Value <= 0xffffff && (Value & 0xffff) == 0xffff);
1717 }
Jim Grosbach8211c052011-10-18 00:22:00 +00001718
Jim Grosbache4454e02011-10-18 16:18:11 +00001719 bool isNEONi64splat() const {
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00001720 if (!isImm()) return false;
Jim Grosbache4454e02011-10-18 16:18:11 +00001721 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1722 // Must be a constant.
1723 if (!CE) return false;
1724 uint64_t Value = CE->getValue();
1725 // i64 value with each byte being either 0 or 0xff.
1726 for (unsigned i = 0; i < 8; ++i)
1727 if ((Value & 0xff) != 0 && (Value & 0xff) != 0xff) return false;
1728 return true;
1729 }
1730
Daniel Dunbar5cd4d0f2010-08-11 05:24:50 +00001731 void addExpr(MCInst &Inst, const MCExpr *Expr) const {
Chris Lattner5d6f6a02010-10-29 00:27:31 +00001732 // Add as immediates when possible. Null MCExpr = 0.
Craig Topper062a2ba2014-04-25 05:30:21 +00001733 if (!Expr)
Chris Lattner5d6f6a02010-10-29 00:27:31 +00001734 Inst.addOperand(MCOperand::CreateImm(0));
1735 else if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr))
Daniel Dunbar5cd4d0f2010-08-11 05:24:50 +00001736 Inst.addOperand(MCOperand::CreateImm(CE->getValue()));
1737 else
1738 Inst.addOperand(MCOperand::CreateExpr(Expr));
1739 }
1740
Daniel Dunbard8042b72010-08-11 06:36:53 +00001741 void addCondCodeOperands(MCInst &Inst, unsigned N) const {
Daniel Dunbar188b47b2010-08-11 06:37:20 +00001742 assert(N == 2 && "Invalid number of operands!");
Daniel Dunbard8042b72010-08-11 06:36:53 +00001743 Inst.addOperand(MCOperand::CreateImm(unsigned(getCondCode())));
Jim Grosbach968c9272010-12-06 18:30:57 +00001744 unsigned RegNum = getCondCode() == ARMCC::AL ? 0: ARM::CPSR;
1745 Inst.addOperand(MCOperand::CreateReg(RegNum));
Daniel Dunbard8042b72010-08-11 06:36:53 +00001746 }
1747
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00001748 void addCoprocNumOperands(MCInst &Inst, unsigned N) const {
1749 assert(N == 1 && "Invalid number of operands!");
1750 Inst.addOperand(MCOperand::CreateImm(getCoproc()));
1751 }
1752
Jim Grosbach48399582011-10-12 17:34:41 +00001753 void addCoprocRegOperands(MCInst &Inst, unsigned N) const {
1754 assert(N == 1 && "Invalid number of operands!");
1755 Inst.addOperand(MCOperand::CreateImm(getCoproc()));
1756 }
1757
1758 void addCoprocOptionOperands(MCInst &Inst, unsigned N) const {
1759 assert(N == 1 && "Invalid number of operands!");
1760 Inst.addOperand(MCOperand::CreateImm(CoprocOption.Val));
1761 }
1762
Jim Grosbach3d1eac82011-08-26 21:43:41 +00001763 void addITMaskOperands(MCInst &Inst, unsigned N) const {
1764 assert(N == 1 && "Invalid number of operands!");
1765 Inst.addOperand(MCOperand::CreateImm(ITMask.Mask));
1766 }
1767
1768 void addITCondCodeOperands(MCInst &Inst, unsigned N) const {
1769 assert(N == 1 && "Invalid number of operands!");
1770 Inst.addOperand(MCOperand::CreateImm(unsigned(getCondCode())));
1771 }
1772
Jim Grosbach0bfb4d52010-12-06 18:21:12 +00001773 void addCCOutOperands(MCInst &Inst, unsigned N) const {
1774 assert(N == 1 && "Invalid number of operands!");
1775 Inst.addOperand(MCOperand::CreateReg(getReg()));
1776 }
1777
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00001778 void addRegOperands(MCInst &Inst, unsigned N) const {
1779 assert(N == 1 && "Invalid number of operands!");
1780 Inst.addOperand(MCOperand::CreateReg(getReg()));
1781 }
1782
Jim Grosbachac798e12011-07-25 20:49:51 +00001783 void addRegShiftedRegOperands(MCInst &Inst, unsigned N) const {
Jim Grosbach7dcd1352011-07-13 17:50:29 +00001784 assert(N == 3 && "Invalid number of operands!");
Jim Grosbachee201fa2011-11-14 17:52:47 +00001785 assert(isRegShiftedReg() &&
Alp Tokerf907b892013-12-05 05:44:44 +00001786 "addRegShiftedRegOperands() on non-RegShiftedReg!");
Jim Grosbachac798e12011-07-25 20:49:51 +00001787 Inst.addOperand(MCOperand::CreateReg(RegShiftedReg.SrcReg));
1788 Inst.addOperand(MCOperand::CreateReg(RegShiftedReg.ShiftReg));
Jim Grosbach7dcd1352011-07-13 17:50:29 +00001789 Inst.addOperand(MCOperand::CreateImm(
Jim Grosbachac798e12011-07-25 20:49:51 +00001790 ARM_AM::getSORegOpc(RegShiftedReg.ShiftTy, RegShiftedReg.ShiftImm)));
Jim Grosbach7dcd1352011-07-13 17:50:29 +00001791 }
1792
Jim Grosbachac798e12011-07-25 20:49:51 +00001793 void addRegShiftedImmOperands(MCInst &Inst, unsigned N) const {
Owen Anderson04912702011-07-21 23:38:37 +00001794 assert(N == 2 && "Invalid number of operands!");
Jim Grosbachee201fa2011-11-14 17:52:47 +00001795 assert(isRegShiftedImm() &&
Alp Tokerf907b892013-12-05 05:44:44 +00001796 "addRegShiftedImmOperands() on non-RegShiftedImm!");
Jim Grosbachac798e12011-07-25 20:49:51 +00001797 Inst.addOperand(MCOperand::CreateReg(RegShiftedImm.SrcReg));
Richard Bartonba5b0cc2012-04-25 18:00:18 +00001798 // Shift of #32 is encoded as 0 where permitted
1799 unsigned Imm = (RegShiftedImm.ShiftImm == 32 ? 0 : RegShiftedImm.ShiftImm);
Owen Andersonb595ed02011-07-21 18:54:16 +00001800 Inst.addOperand(MCOperand::CreateImm(
Richard Bartonba5b0cc2012-04-25 18:00:18 +00001801 ARM_AM::getSORegOpc(RegShiftedImm.ShiftTy, Imm)));
Owen Andersonb595ed02011-07-21 18:54:16 +00001802 }
1803
Jim Grosbach3a9cbee2011-07-25 22:20:28 +00001804 void addShifterImmOperands(MCInst &Inst, unsigned N) const {
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00001805 assert(N == 1 && "Invalid number of operands!");
Jim Grosbach3a9cbee2011-07-25 22:20:28 +00001806 Inst.addOperand(MCOperand::CreateImm((ShifterImm.isASR << 5) |
1807 ShifterImm.Imm));
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00001808 }
1809
Bill Wendling8d2aa032010-11-08 23:49:57 +00001810 void addRegListOperands(MCInst &Inst, unsigned N) const {
Bill Wendling2cae3272010-11-09 22:44:22 +00001811 assert(N == 1 && "Invalid number of operands!");
Bill Wendlingbed94652010-11-09 23:28:44 +00001812 const SmallVectorImpl<unsigned> &RegList = getRegList();
1813 for (SmallVectorImpl<unsigned>::const_iterator
Bill Wendling2cae3272010-11-09 22:44:22 +00001814 I = RegList.begin(), E = RegList.end(); I != E; ++I)
1815 Inst.addOperand(MCOperand::CreateReg(*I));
Bill Wendling8d2aa032010-11-08 23:49:57 +00001816 }
1817
Bill Wendling9898ac92010-11-17 04:32:08 +00001818 void addDPRRegListOperands(MCInst &Inst, unsigned N) const {
1819 addRegListOperands(Inst, N);
1820 }
1821
1822 void addSPRRegListOperands(MCInst &Inst, unsigned N) const {
1823 addRegListOperands(Inst, N);
1824 }
1825
Jim Grosbach833b9d32011-07-27 20:15:40 +00001826 void addRotImmOperands(MCInst &Inst, unsigned N) const {
1827 assert(N == 1 && "Invalid number of operands!");
1828 // Encoded as val>>3. The printer handles display as 8, 16, 24.
1829 Inst.addOperand(MCOperand::CreateImm(RotImm.Imm >> 3));
1830 }
1831
Jim Grosbach864b6092011-07-28 21:34:26 +00001832 void addBitfieldOperands(MCInst &Inst, unsigned N) const {
1833 assert(N == 1 && "Invalid number of operands!");
1834 // Munge the lsb/width into a bitfield mask.
1835 unsigned lsb = Bitfield.LSB;
1836 unsigned width = Bitfield.Width;
1837 // Make a 32-bit mask w/ the referenced bits clear and all other bits set.
1838 uint32_t Mask = ~(((uint32_t)0xffffffff >> lsb) << (32 - width) >>
1839 (32 - (lsb + width)));
1840 Inst.addOperand(MCOperand::CreateImm(Mask));
1841 }
1842
Daniel Dunbar5cd4d0f2010-08-11 05:24:50 +00001843 void addImmOperands(MCInst &Inst, unsigned N) const {
1844 assert(N == 1 && "Invalid number of operands!");
1845 addExpr(Inst, getImm());
1846 }
Jim Grosbach624bcc72010-10-29 14:46:02 +00001847
Jim Grosbachea231912011-12-22 22:19:05 +00001848 void addFBits16Operands(MCInst &Inst, unsigned N) const {
1849 assert(N == 1 && "Invalid number of operands!");
1850 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1851 Inst.addOperand(MCOperand::CreateImm(16 - CE->getValue()));
1852 }
1853
1854 void addFBits32Operands(MCInst &Inst, unsigned N) const {
1855 assert(N == 1 && "Invalid number of operands!");
1856 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1857 Inst.addOperand(MCOperand::CreateImm(32 - CE->getValue()));
1858 }
1859
Jim Grosbache7fbce72011-10-03 23:38:36 +00001860 void addFPImmOperands(MCInst &Inst, unsigned N) const {
1861 assert(N == 1 && "Invalid number of operands!");
Jim Grosbacha9d36fb2012-01-20 18:09:51 +00001862 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1863 int Val = ARM_AM::getFP32Imm(APInt(32, CE->getValue()));
1864 Inst.addOperand(MCOperand::CreateImm(Val));
Jim Grosbache7fbce72011-10-03 23:38:36 +00001865 }
1866
Jim Grosbach7db8d692011-09-08 22:07:06 +00001867 void addImm8s4Operands(MCInst &Inst, unsigned N) const {
1868 assert(N == 1 && "Invalid number of operands!");
1869 // FIXME: We really want to scale the value here, but the LDRD/STRD
1870 // instruction don't encode operands that way yet.
1871 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1872 Inst.addOperand(MCOperand::CreateImm(CE->getValue()));
1873 }
1874
Jim Grosbach0a0b3072011-08-24 21:22:15 +00001875 void addImm0_1020s4Operands(MCInst &Inst, unsigned N) const {
1876 assert(N == 1 && "Invalid number of operands!");
1877 // The immediate is scaled by four in the encoding and is stored
1878 // in the MCInst as such. Lop off the low two bits here.
1879 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1880 Inst.addOperand(MCOperand::CreateImm(CE->getValue() / 4));
1881 }
1882
Jim Grosbach930f2f62012-04-05 20:57:13 +00001883 void addImm0_508s4NegOperands(MCInst &Inst, unsigned N) const {
1884 assert(N == 1 && "Invalid number of operands!");
1885 // The immediate is scaled by four in the encoding and is stored
1886 // in the MCInst as such. Lop off the low two bits here.
1887 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1888 Inst.addOperand(MCOperand::CreateImm(-(CE->getValue() / 4)));
1889 }
1890
Jim Grosbach0a0b3072011-08-24 21:22:15 +00001891 void addImm0_508s4Operands(MCInst &Inst, unsigned N) const {
1892 assert(N == 1 && "Invalid number of operands!");
1893 // The immediate is scaled by four in the encoding and is stored
1894 // in the MCInst as such. Lop off the low two bits here.
1895 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1896 Inst.addOperand(MCOperand::CreateImm(CE->getValue() / 4));
1897 }
1898
Jim Grosbach475c6db2011-07-25 23:09:14 +00001899 void addImm1_16Operands(MCInst &Inst, unsigned N) const {
1900 assert(N == 1 && "Invalid number of operands!");
1901 // The constant encodes as the immediate-1, and we store in the instruction
1902 // the bits as encoded, so subtract off one here.
1903 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1904 Inst.addOperand(MCOperand::CreateImm(CE->getValue() - 1));
1905 }
1906
Jim Grosbach801e0a32011-07-22 23:16:18 +00001907 void addImm1_32Operands(MCInst &Inst, unsigned N) const {
1908 assert(N == 1 && "Invalid number of operands!");
1909 // The constant encodes as the immediate-1, and we store in the instruction
1910 // the bits as encoded, so subtract off one here.
1911 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1912 Inst.addOperand(MCOperand::CreateImm(CE->getValue() - 1));
1913 }
1914
Jim Grosbach46dd4132011-08-17 21:51:27 +00001915 void addImmThumbSROperands(MCInst &Inst, unsigned N) const {
1916 assert(N == 1 && "Invalid number of operands!");
1917 // The constant encodes as the immediate, except for 32, which encodes as
1918 // zero.
1919 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1920 unsigned Imm = CE->getValue();
1921 Inst.addOperand(MCOperand::CreateImm((Imm == 32 ? 0 : Imm)));
1922 }
1923
Jim Grosbach27c1e252011-07-21 17:23:04 +00001924 void addPKHASRImmOperands(MCInst &Inst, unsigned N) const {
1925 assert(N == 1 && "Invalid number of operands!");
1926 // An ASR value of 32 encodes as 0, so that's how we want to add it to
1927 // the instruction as well.
1928 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1929 int Val = CE->getValue();
1930 Inst.addOperand(MCOperand::CreateImm(Val == 32 ? 0 : Val));
1931 }
1932
Jim Grosbachb009a872011-10-28 22:36:30 +00001933 void addT2SOImmNotOperands(MCInst &Inst, unsigned N) const {
1934 assert(N == 1 && "Invalid number of operands!");
1935 // The operand is actually a t2_so_imm, but we have its bitwise
1936 // negation in the assembly source, so twiddle it here.
1937 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1938 Inst.addOperand(MCOperand::CreateImm(~CE->getValue()));
1939 }
1940
Jim Grosbach30506252011-12-08 00:31:07 +00001941 void addT2SOImmNegOperands(MCInst &Inst, unsigned N) const {
1942 assert(N == 1 && "Invalid number of operands!");
1943 // The operand is actually a t2_so_imm, but we have its
1944 // negation in the assembly source, so twiddle it here.
1945 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1946 Inst.addOperand(MCOperand::CreateImm(-CE->getValue()));
1947 }
1948
Jim Grosbach930f2f62012-04-05 20:57:13 +00001949 void addImm0_4095NegOperands(MCInst &Inst, unsigned N) const {
1950 assert(N == 1 && "Invalid number of operands!");
1951 // The operand is actually an imm0_4095, but we have its
1952 // negation in the assembly source, so twiddle it here.
1953 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1954 Inst.addOperand(MCOperand::CreateImm(-CE->getValue()));
1955 }
1956
Mihai Popad36cbaa2013-07-03 09:21:44 +00001957 void addUnsignedOffset_b8s2Operands(MCInst &Inst, unsigned N) const {
1958 if(const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm())) {
1959 Inst.addOperand(MCOperand::CreateImm(CE->getValue() >> 2));
1960 return;
1961 }
1962
1963 const MCSymbolRefExpr *SR = dyn_cast<MCSymbolRefExpr>(Imm.Val);
1964 assert(SR && "Unknown value type!");
1965 Inst.addOperand(MCOperand::CreateExpr(SR));
1966 }
1967
Mihai Popa8a9da5b2013-07-22 15:49:36 +00001968 void addThumbMemPCOperands(MCInst &Inst, unsigned N) const {
1969 assert(N == 1 && "Invalid number of operands!");
1970 if (isImm()) {
1971 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1972 if (CE) {
1973 Inst.addOperand(MCOperand::CreateImm(CE->getValue()));
1974 return;
1975 }
1976
1977 const MCSymbolRefExpr *SR = dyn_cast<MCSymbolRefExpr>(Imm.Val);
1978 assert(SR && "Unknown value type!");
1979 Inst.addOperand(MCOperand::CreateExpr(SR));
1980 return;
1981 }
1982
1983 assert(isMem() && "Unknown value type!");
1984 assert(isa<MCConstantExpr>(Memory.OffsetImm) && "Unknown value type!");
1985 Inst.addOperand(MCOperand::CreateImm(Memory.OffsetImm->getValue()));
1986 }
1987
Jim Grosbach3d785ed2011-10-28 22:50:54 +00001988 void addARMSOImmNotOperands(MCInst &Inst, unsigned N) const {
1989 assert(N == 1 && "Invalid number of operands!");
1990 // The operand is actually a so_imm, but we have its bitwise
1991 // negation in the assembly source, so twiddle it here.
1992 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1993 Inst.addOperand(MCOperand::CreateImm(~CE->getValue()));
1994 }
1995
Jim Grosbach30506252011-12-08 00:31:07 +00001996 void addARMSOImmNegOperands(MCInst &Inst, unsigned N) const {
1997 assert(N == 1 && "Invalid number of operands!");
1998 // The operand is actually a so_imm, but we have its
1999 // negation in the assembly source, so twiddle it here.
2000 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2001 Inst.addOperand(MCOperand::CreateImm(-CE->getValue()));
2002 }
2003
Bruno Cardoso Lopes36dd43f2011-02-07 22:09:15 +00002004 void addMemBarrierOptOperands(MCInst &Inst, unsigned N) const {
2005 assert(N == 1 && "Invalid number of operands!");
2006 Inst.addOperand(MCOperand::CreateImm(unsigned(getMemBarrierOpt())));
2007 }
2008
Amaury de la Vieuville43cb13a2013-06-10 14:17:08 +00002009 void addInstSyncBarrierOptOperands(MCInst &Inst, unsigned N) const {
2010 assert(N == 1 && "Invalid number of operands!");
2011 Inst.addOperand(MCOperand::CreateImm(unsigned(getInstSyncBarrierOpt())));
2012 }
2013
Jim Grosbachd3595712011-08-03 23:50:40 +00002014 void addMemNoOffsetOperands(MCInst &Inst, unsigned N) const {
2015 assert(N == 1 && "Invalid number of operands!");
Jim Grosbach871dff72011-10-11 15:59:20 +00002016 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Bruno Cardoso Lopesf170f8b2011-03-24 21:04:58 +00002017 }
2018
Jim Grosbach94298a92012-01-18 22:46:46 +00002019 void addMemPCRelImm12Operands(MCInst &Inst, unsigned N) const {
2020 assert(N == 1 && "Invalid number of operands!");
2021 int32_t Imm = Memory.OffsetImm->getValue();
Jim Grosbach94298a92012-01-18 22:46:46 +00002022 Inst.addOperand(MCOperand::CreateImm(Imm));
2023 }
2024
Jiangning Liu10dd40e2012-08-02 08:13:13 +00002025 void addAdrLabelOperands(MCInst &Inst, unsigned N) const {
2026 assert(N == 1 && "Invalid number of operands!");
2027 assert(isImm() && "Not an immediate!");
2028
2029 // If we have an immediate that's not a constant, treat it as a label
2030 // reference needing a fixup.
2031 if (!isa<MCConstantExpr>(getImm())) {
2032 Inst.addOperand(MCOperand::CreateExpr(getImm()));
2033 return;
2034 }
2035
2036 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2037 int Val = CE->getValue();
2038 Inst.addOperand(MCOperand::CreateImm(Val));
2039 }
2040
Jim Grosbacha95ec992011-10-11 17:29:55 +00002041 void addAlignedMemoryOperands(MCInst &Inst, unsigned N) const {
2042 assert(N == 2 && "Invalid number of operands!");
2043 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
2044 Inst.addOperand(MCOperand::CreateImm(Memory.Alignment));
2045 }
2046
Kevin Enderby488f20b2014-04-10 20:18:58 +00002047 void addDupAlignedMemoryNoneOperands(MCInst &Inst, unsigned N) const {
2048 addAlignedMemoryOperands(Inst, N);
2049 }
2050
2051 void addAlignedMemoryNoneOperands(MCInst &Inst, unsigned N) const {
2052 addAlignedMemoryOperands(Inst, N);
2053 }
2054
2055 void addAlignedMemory16Operands(MCInst &Inst, unsigned N) const {
2056 addAlignedMemoryOperands(Inst, N);
2057 }
2058
2059 void addDupAlignedMemory16Operands(MCInst &Inst, unsigned N) const {
2060 addAlignedMemoryOperands(Inst, N);
2061 }
2062
2063 void addAlignedMemory32Operands(MCInst &Inst, unsigned N) const {
2064 addAlignedMemoryOperands(Inst, N);
2065 }
2066
2067 void addDupAlignedMemory32Operands(MCInst &Inst, unsigned N) const {
2068 addAlignedMemoryOperands(Inst, N);
2069 }
2070
2071 void addAlignedMemory64Operands(MCInst &Inst, unsigned N) const {
2072 addAlignedMemoryOperands(Inst, N);
2073 }
2074
2075 void addDupAlignedMemory64Operands(MCInst &Inst, unsigned N) const {
2076 addAlignedMemoryOperands(Inst, N);
2077 }
2078
2079 void addAlignedMemory64or128Operands(MCInst &Inst, unsigned N) const {
2080 addAlignedMemoryOperands(Inst, N);
2081 }
2082
2083 void addDupAlignedMemory64or128Operands(MCInst &Inst, unsigned N) const {
2084 addAlignedMemoryOperands(Inst, N);
2085 }
2086
2087 void addAlignedMemory64or128or256Operands(MCInst &Inst, unsigned N) const {
2088 addAlignedMemoryOperands(Inst, N);
2089 }
2090
Jim Grosbachd3595712011-08-03 23:50:40 +00002091 void addAddrMode2Operands(MCInst &Inst, unsigned N) const {
2092 assert(N == 3 && "Invalid number of operands!");
Jim Grosbach871dff72011-10-11 15:59:20 +00002093 int32_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0;
2094 if (!Memory.OffsetRegNum) {
Jim Grosbachd3595712011-08-03 23:50:40 +00002095 ARM_AM::AddrOpc AddSub = Val < 0 ? ARM_AM::sub : ARM_AM::add;
2096 // Special case for #-0
2097 if (Val == INT32_MIN) Val = 0;
2098 if (Val < 0) Val = -Val;
2099 Val = ARM_AM::getAM2Opc(AddSub, Val, ARM_AM::no_shift);
2100 } else {
2101 // For register offset, we encode the shift type and negation flag
2102 // here.
Jim Grosbach871dff72011-10-11 15:59:20 +00002103 Val = ARM_AM::getAM2Opc(Memory.isNegative ? ARM_AM::sub : ARM_AM::add,
2104 Memory.ShiftImm, Memory.ShiftType);
Bruno Cardoso Lopesab830502011-03-31 23:26:08 +00002105 }
Jim Grosbach871dff72011-10-11 15:59:20 +00002106 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
2107 Inst.addOperand(MCOperand::CreateReg(Memory.OffsetRegNum));
Jim Grosbachd3595712011-08-03 23:50:40 +00002108 Inst.addOperand(MCOperand::CreateImm(Val));
Bruno Cardoso Lopesab830502011-03-31 23:26:08 +00002109 }
2110
Jim Grosbachcd17c122011-08-04 23:01:30 +00002111 void addAM2OffsetImmOperands(MCInst &Inst, unsigned N) const {
2112 assert(N == 2 && "Invalid number of operands!");
2113 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2114 assert(CE && "non-constant AM2OffsetImm operand!");
2115 int32_t Val = CE->getValue();
2116 ARM_AM::AddrOpc AddSub = Val < 0 ? ARM_AM::sub : ARM_AM::add;
2117 // Special case for #-0
2118 if (Val == INT32_MIN) Val = 0;
2119 if (Val < 0) Val = -Val;
2120 Val = ARM_AM::getAM2Opc(AddSub, Val, ARM_AM::no_shift);
2121 Inst.addOperand(MCOperand::CreateReg(0));
2122 Inst.addOperand(MCOperand::CreateImm(Val));
2123 }
2124
Jim Grosbach5b96b802011-08-10 20:29:19 +00002125 void addAddrMode3Operands(MCInst &Inst, unsigned N) const {
2126 assert(N == 3 && "Invalid number of operands!");
Jim Grosbach8648c102011-12-19 23:06:24 +00002127 // If we have an immediate that's not a constant, treat it as a label
2128 // reference needing a fixup. If it is a constant, it's something else
2129 // and we reject it.
2130 if (isImm()) {
2131 Inst.addOperand(MCOperand::CreateExpr(getImm()));
2132 Inst.addOperand(MCOperand::CreateReg(0));
2133 Inst.addOperand(MCOperand::CreateImm(0));
2134 return;
2135 }
2136
Jim Grosbach871dff72011-10-11 15:59:20 +00002137 int32_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0;
2138 if (!Memory.OffsetRegNum) {
Jim Grosbach5b96b802011-08-10 20:29:19 +00002139 ARM_AM::AddrOpc AddSub = Val < 0 ? ARM_AM::sub : ARM_AM::add;
2140 // Special case for #-0
2141 if (Val == INT32_MIN) Val = 0;
2142 if (Val < 0) Val = -Val;
2143 Val = ARM_AM::getAM3Opc(AddSub, Val);
2144 } else {
2145 // For register offset, we encode the shift type and negation flag
2146 // here.
Jim Grosbach871dff72011-10-11 15:59:20 +00002147 Val = ARM_AM::getAM3Opc(Memory.isNegative ? ARM_AM::sub : ARM_AM::add, 0);
Jim Grosbach5b96b802011-08-10 20:29:19 +00002148 }
Jim Grosbach871dff72011-10-11 15:59:20 +00002149 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
2150 Inst.addOperand(MCOperand::CreateReg(Memory.OffsetRegNum));
Jim Grosbach5b96b802011-08-10 20:29:19 +00002151 Inst.addOperand(MCOperand::CreateImm(Val));
2152 }
2153
2154 void addAM3OffsetOperands(MCInst &Inst, unsigned N) const {
2155 assert(N == 2 && "Invalid number of operands!");
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002156 if (Kind == k_PostIndexRegister) {
Jim Grosbach5b96b802011-08-10 20:29:19 +00002157 int32_t Val =
2158 ARM_AM::getAM3Opc(PostIdxReg.isAdd ? ARM_AM::add : ARM_AM::sub, 0);
2159 Inst.addOperand(MCOperand::CreateReg(PostIdxReg.RegNum));
2160 Inst.addOperand(MCOperand::CreateImm(Val));
Jim Grosbach1d9d5e92011-08-10 21:56:18 +00002161 return;
Jim Grosbach5b96b802011-08-10 20:29:19 +00002162 }
2163
2164 // Constant offset.
2165 const MCConstantExpr *CE = static_cast<const MCConstantExpr*>(getImm());
2166 int32_t Val = CE->getValue();
2167 ARM_AM::AddrOpc AddSub = Val < 0 ? ARM_AM::sub : ARM_AM::add;
2168 // Special case for #-0
2169 if (Val == INT32_MIN) Val = 0;
2170 if (Val < 0) Val = -Val;
Jim Grosbach1d9d5e92011-08-10 21:56:18 +00002171 Val = ARM_AM::getAM3Opc(AddSub, Val);
Jim Grosbach5b96b802011-08-10 20:29:19 +00002172 Inst.addOperand(MCOperand::CreateReg(0));
2173 Inst.addOperand(MCOperand::CreateImm(Val));
2174 }
2175
Jim Grosbachd3595712011-08-03 23:50:40 +00002176 void addAddrMode5Operands(MCInst &Inst, unsigned N) const {
2177 assert(N == 2 && "Invalid number of operands!");
Jim Grosbachfb2f1d62011-11-01 01:24:45 +00002178 // If we have an immediate that's not a constant, treat it as a label
2179 // reference needing a fixup. If it is a constant, it's something else
2180 // and we reject it.
2181 if (isImm()) {
2182 Inst.addOperand(MCOperand::CreateExpr(getImm()));
2183 Inst.addOperand(MCOperand::CreateImm(0));
2184 return;
2185 }
2186
Jim Grosbachd3595712011-08-03 23:50:40 +00002187 // The lower two bits are always zero and as such are not encoded.
Jim Grosbach871dff72011-10-11 15:59:20 +00002188 int32_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() / 4 : 0;
Jim Grosbachd3595712011-08-03 23:50:40 +00002189 ARM_AM::AddrOpc AddSub = Val < 0 ? ARM_AM::sub : ARM_AM::add;
2190 // Special case for #-0
2191 if (Val == INT32_MIN) Val = 0;
2192 if (Val < 0) Val = -Val;
2193 Val = ARM_AM::getAM5Opc(AddSub, Val);
Jim Grosbach871dff72011-10-11 15:59:20 +00002194 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Jim Grosbachd3595712011-08-03 23:50:40 +00002195 Inst.addOperand(MCOperand::CreateImm(Val));
Bruno Cardoso Lopesbda36322011-04-04 17:18:19 +00002196 }
2197
Jim Grosbach7db8d692011-09-08 22:07:06 +00002198 void addMemImm8s4OffsetOperands(MCInst &Inst, unsigned N) const {
2199 assert(N == 2 && "Invalid number of operands!");
Jim Grosbach8648c102011-12-19 23:06:24 +00002200 // If we have an immediate that's not a constant, treat it as a label
2201 // reference needing a fixup. If it is a constant, it's something else
2202 // and we reject it.
2203 if (isImm()) {
2204 Inst.addOperand(MCOperand::CreateExpr(getImm()));
2205 Inst.addOperand(MCOperand::CreateImm(0));
2206 return;
2207 }
2208
Jim Grosbach871dff72011-10-11 15:59:20 +00002209 int64_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0;
2210 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Jim Grosbach7db8d692011-09-08 22:07:06 +00002211 Inst.addOperand(MCOperand::CreateImm(Val));
2212 }
2213
Jim Grosbacha05627e2011-09-09 18:37:27 +00002214 void addMemImm0_1020s4OffsetOperands(MCInst &Inst, unsigned N) const {
2215 assert(N == 2 && "Invalid number of operands!");
2216 // The lower two bits are always zero and as such are not encoded.
Jim Grosbach871dff72011-10-11 15:59:20 +00002217 int32_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() / 4 : 0;
2218 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Jim Grosbacha05627e2011-09-09 18:37:27 +00002219 Inst.addOperand(MCOperand::CreateImm(Val));
2220 }
2221
Jim Grosbachd3595712011-08-03 23:50:40 +00002222 void addMemImm8OffsetOperands(MCInst &Inst, unsigned N) const {
2223 assert(N == 2 && "Invalid number of operands!");
Jim Grosbach871dff72011-10-11 15:59:20 +00002224 int64_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0;
2225 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Jim Grosbachd3595712011-08-03 23:50:40 +00002226 Inst.addOperand(MCOperand::CreateImm(Val));
Chris Lattner5d6f6a02010-10-29 00:27:31 +00002227 }
Daniel Dunbar5cd4d0f2010-08-11 05:24:50 +00002228
Jim Grosbach2392c532011-09-07 23:39:14 +00002229 void addMemPosImm8OffsetOperands(MCInst &Inst, unsigned N) const {
2230 addMemImm8OffsetOperands(Inst, N);
2231 }
2232
Jim Grosbach5bfa8ba2011-09-07 20:58:57 +00002233 void addMemNegImm8OffsetOperands(MCInst &Inst, unsigned N) const {
Jim Grosbach2392c532011-09-07 23:39:14 +00002234 addMemImm8OffsetOperands(Inst, N);
Jim Grosbach5bfa8ba2011-09-07 20:58:57 +00002235 }
2236
2237 void addMemUImm12OffsetOperands(MCInst &Inst, unsigned N) const {
2238 assert(N == 2 && "Invalid number of operands!");
2239 // If this is an immediate, it's a label reference.
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00002240 if (isImm()) {
Jim Grosbach5bfa8ba2011-09-07 20:58:57 +00002241 addExpr(Inst, getImm());
2242 Inst.addOperand(MCOperand::CreateImm(0));
2243 return;
2244 }
2245
2246 // Otherwise, it's a normal memory reg+offset.
Jim Grosbach871dff72011-10-11 15:59:20 +00002247 int64_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0;
2248 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Jim Grosbach5bfa8ba2011-09-07 20:58:57 +00002249 Inst.addOperand(MCOperand::CreateImm(Val));
2250 }
2251
Jim Grosbachd3595712011-08-03 23:50:40 +00002252 void addMemImm12OffsetOperands(MCInst &Inst, unsigned N) const {
2253 assert(N == 2 && "Invalid number of operands!");
Jim Grosbach95466ce2011-08-08 20:59:31 +00002254 // If this is an immediate, it's a label reference.
Jim Grosbachc4d8d2f2011-12-22 22:02:35 +00002255 if (isImm()) {
Jim Grosbach95466ce2011-08-08 20:59:31 +00002256 addExpr(Inst, getImm());
2257 Inst.addOperand(MCOperand::CreateImm(0));
2258 return;
2259 }
2260
2261 // Otherwise, it's a normal memory reg+offset.
Jim Grosbach871dff72011-10-11 15:59:20 +00002262 int64_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0;
2263 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Jim Grosbachd3595712011-08-03 23:50:40 +00002264 Inst.addOperand(MCOperand::CreateImm(Val));
Bill Wendling092a7bd2010-12-14 03:36:38 +00002265 }
Bill Wendling811c9362010-11-30 07:44:32 +00002266
Jim Grosbach05541f42011-09-19 22:21:13 +00002267 void addMemTBBOperands(MCInst &Inst, unsigned N) const {
2268 assert(N == 2 && "Invalid number of operands!");
Jim Grosbach871dff72011-10-11 15:59:20 +00002269 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
2270 Inst.addOperand(MCOperand::CreateReg(Memory.OffsetRegNum));
Jim Grosbach05541f42011-09-19 22:21:13 +00002271 }
2272
2273 void addMemTBHOperands(MCInst &Inst, unsigned N) const {
2274 assert(N == 2 && "Invalid number of operands!");
Jim Grosbach871dff72011-10-11 15:59:20 +00002275 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
2276 Inst.addOperand(MCOperand::CreateReg(Memory.OffsetRegNum));
Jim Grosbach05541f42011-09-19 22:21:13 +00002277 }
2278
Jim Grosbachd3595712011-08-03 23:50:40 +00002279 void addMemRegOffsetOperands(MCInst &Inst, unsigned N) const {
2280 assert(N == 3 && "Invalid number of operands!");
Jim Grosbachee201fa2011-11-14 17:52:47 +00002281 unsigned Val =
2282 ARM_AM::getAM2Opc(Memory.isNegative ? ARM_AM::sub : ARM_AM::add,
2283 Memory.ShiftImm, Memory.ShiftType);
Jim Grosbach871dff72011-10-11 15:59:20 +00002284 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
2285 Inst.addOperand(MCOperand::CreateReg(Memory.OffsetRegNum));
Jim Grosbachd3595712011-08-03 23:50:40 +00002286 Inst.addOperand(MCOperand::CreateImm(Val));
2287 }
2288
Jim Grosbache0ebc1c2011-09-07 23:10:15 +00002289 void addT2MemRegOffsetOperands(MCInst &Inst, unsigned N) const {
2290 assert(N == 3 && "Invalid number of operands!");
Jim Grosbach871dff72011-10-11 15:59:20 +00002291 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
2292 Inst.addOperand(MCOperand::CreateReg(Memory.OffsetRegNum));
2293 Inst.addOperand(MCOperand::CreateImm(Memory.ShiftImm));
Jim Grosbache0ebc1c2011-09-07 23:10:15 +00002294 }
2295
Jim Grosbachd3595712011-08-03 23:50:40 +00002296 void addMemThumbRROperands(MCInst &Inst, unsigned N) const {
2297 assert(N == 2 && "Invalid number of operands!");
Jim Grosbach871dff72011-10-11 15:59:20 +00002298 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
2299 Inst.addOperand(MCOperand::CreateReg(Memory.OffsetRegNum));
Jim Grosbachd3595712011-08-03 23:50:40 +00002300 }
2301
Jim Grosbach3fe94e32011-08-19 17:55:24 +00002302 void addMemThumbRIs4Operands(MCInst &Inst, unsigned N) const {
2303 assert(N == 2 && "Invalid number of operands!");
Jim Grosbach871dff72011-10-11 15:59:20 +00002304 int64_t Val = Memory.OffsetImm ? (Memory.OffsetImm->getValue() / 4) : 0;
2305 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Jim Grosbach3fe94e32011-08-19 17:55:24 +00002306 Inst.addOperand(MCOperand::CreateImm(Val));
2307 }
2308
Jim Grosbach26d35872011-08-19 18:55:51 +00002309 void addMemThumbRIs2Operands(MCInst &Inst, unsigned N) const {
2310 assert(N == 2 && "Invalid number of operands!");
Jim Grosbach871dff72011-10-11 15:59:20 +00002311 int64_t Val = Memory.OffsetImm ? (Memory.OffsetImm->getValue() / 2) : 0;
2312 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Jim Grosbach26d35872011-08-19 18:55:51 +00002313 Inst.addOperand(MCOperand::CreateImm(Val));
2314 }
2315
Jim Grosbacha32c7532011-08-19 18:49:59 +00002316 void addMemThumbRIs1Operands(MCInst &Inst, unsigned N) const {
2317 assert(N == 2 && "Invalid number of operands!");
Jim Grosbach871dff72011-10-11 15:59:20 +00002318 int64_t Val = Memory.OffsetImm ? (Memory.OffsetImm->getValue()) : 0;
2319 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Jim Grosbacha32c7532011-08-19 18:49:59 +00002320 Inst.addOperand(MCOperand::CreateImm(Val));
2321 }
2322
Jim Grosbach23983d62011-08-19 18:13:48 +00002323 void addMemThumbSPIOperands(MCInst &Inst, unsigned N) const {
2324 assert(N == 2 && "Invalid number of operands!");
Jim Grosbach871dff72011-10-11 15:59:20 +00002325 int64_t Val = Memory.OffsetImm ? (Memory.OffsetImm->getValue() / 4) : 0;
2326 Inst.addOperand(MCOperand::CreateReg(Memory.BaseRegNum));
Jim Grosbach23983d62011-08-19 18:13:48 +00002327 Inst.addOperand(MCOperand::CreateImm(Val));
2328 }
2329
Jim Grosbachd3595712011-08-03 23:50:40 +00002330 void addPostIdxImm8Operands(MCInst &Inst, unsigned N) const {
2331 assert(N == 1 && "Invalid number of operands!");
2332 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2333 assert(CE && "non-constant post-idx-imm8 operand!");
2334 int Imm = CE->getValue();
2335 bool isAdd = Imm >= 0;
Owen Andersonf02d98d2011-08-29 17:17:09 +00002336 if (Imm == INT32_MIN) Imm = 0;
Jim Grosbachd3595712011-08-03 23:50:40 +00002337 Imm = (Imm < 0 ? -Imm : Imm) | (int)isAdd << 8;
2338 Inst.addOperand(MCOperand::CreateImm(Imm));
2339 }
2340
Jim Grosbach93981412011-10-11 21:55:36 +00002341 void addPostIdxImm8s4Operands(MCInst &Inst, unsigned N) const {
2342 assert(N == 1 && "Invalid number of operands!");
2343 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2344 assert(CE && "non-constant post-idx-imm8s4 operand!");
2345 int Imm = CE->getValue();
2346 bool isAdd = Imm >= 0;
2347 if (Imm == INT32_MIN) Imm = 0;
2348 // Immediate is scaled by 4.
2349 Imm = ((Imm < 0 ? -Imm : Imm) / 4) | (int)isAdd << 8;
2350 Inst.addOperand(MCOperand::CreateImm(Imm));
2351 }
2352
Jim Grosbachd3595712011-08-03 23:50:40 +00002353 void addPostIdxRegOperands(MCInst &Inst, unsigned N) const {
2354 assert(N == 2 && "Invalid number of operands!");
2355 Inst.addOperand(MCOperand::CreateReg(PostIdxReg.RegNum));
Jim Grosbachc320c852011-08-05 21:28:30 +00002356 Inst.addOperand(MCOperand::CreateImm(PostIdxReg.isAdd));
2357 }
2358
2359 void addPostIdxRegShiftedOperands(MCInst &Inst, unsigned N) const {
2360 assert(N == 2 && "Invalid number of operands!");
2361 Inst.addOperand(MCOperand::CreateReg(PostIdxReg.RegNum));
2362 // The sign, shift type, and shift amount are encoded in a single operand
2363 // using the AM2 encoding helpers.
2364 ARM_AM::AddrOpc opc = PostIdxReg.isAdd ? ARM_AM::add : ARM_AM::sub;
2365 unsigned Imm = ARM_AM::getAM2Opc(opc, PostIdxReg.ShiftImm,
2366 PostIdxReg.ShiftTy);
2367 Inst.addOperand(MCOperand::CreateImm(Imm));
Bill Wendling811c9362010-11-30 07:44:32 +00002368 }
2369
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +00002370 void addMSRMaskOperands(MCInst &Inst, unsigned N) const {
2371 assert(N == 1 && "Invalid number of operands!");
2372 Inst.addOperand(MCOperand::CreateImm(unsigned(getMSRMask())));
2373 }
2374
Tim Northoveree843ef2014-08-15 10:47:12 +00002375 void addBankedRegOperands(MCInst &Inst, unsigned N) const {
2376 assert(N == 1 && "Invalid number of operands!");
2377 Inst.addOperand(MCOperand::CreateImm(unsigned(getBankedReg())));
2378 }
2379
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00002380 void addProcIFlagsOperands(MCInst &Inst, unsigned N) const {
2381 assert(N == 1 && "Invalid number of operands!");
2382 Inst.addOperand(MCOperand::CreateImm(unsigned(getProcIFlags())));
2383 }
2384
Jim Grosbach182b6a02011-11-29 23:51:09 +00002385 void addVecListOperands(MCInst &Inst, unsigned N) const {
Jim Grosbachad47cfc2011-10-18 23:02:30 +00002386 assert(N == 1 && "Invalid number of operands!");
2387 Inst.addOperand(MCOperand::CreateReg(VectorList.RegNum));
2388 }
2389
Jim Grosbach04945c42011-12-02 00:35:16 +00002390 void addVecListIndexedOperands(MCInst &Inst, unsigned N) const {
2391 assert(N == 2 && "Invalid number of operands!");
2392 Inst.addOperand(MCOperand::CreateReg(VectorList.RegNum));
2393 Inst.addOperand(MCOperand::CreateImm(VectorList.LaneIndex));
2394 }
2395
Jim Grosbachd0637bf2011-10-07 23:56:00 +00002396 void addVectorIndex8Operands(MCInst &Inst, unsigned N) const {
2397 assert(N == 1 && "Invalid number of operands!");
2398 Inst.addOperand(MCOperand::CreateImm(getVectorIndex()));
2399 }
2400
2401 void addVectorIndex16Operands(MCInst &Inst, unsigned N) const {
2402 assert(N == 1 && "Invalid number of operands!");
2403 Inst.addOperand(MCOperand::CreateImm(getVectorIndex()));
2404 }
2405
2406 void addVectorIndex32Operands(MCInst &Inst, unsigned N) const {
2407 assert(N == 1 && "Invalid number of operands!");
2408 Inst.addOperand(MCOperand::CreateImm(getVectorIndex()));
2409 }
2410
Jim Grosbach741cd732011-10-17 22:26:03 +00002411 void addNEONi8splatOperands(MCInst &Inst, unsigned N) const {
2412 assert(N == 1 && "Invalid number of operands!");
2413 // The immediate encodes the type of constant as well as the value.
2414 // Mask in that this is an i8 splat.
2415 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2416 Inst.addOperand(MCOperand::CreateImm(CE->getValue() | 0xe00));
2417 }
2418
Jim Grosbachcda32ae2011-10-17 23:09:09 +00002419 void addNEONi16splatOperands(MCInst &Inst, unsigned N) const {
2420 assert(N == 1 && "Invalid number of operands!");
2421 // The immediate encodes the type of constant as well as the value.
2422 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2423 unsigned Value = CE->getValue();
Renato Golinf5dd1da2014-09-25 11:31:24 +00002424 Value = ARM_AM::encodeNEONi16splat(Value);
2425 Inst.addOperand(MCOperand::CreateImm(Value));
2426 }
2427
2428 void addNEONi16splatNotOperands(MCInst &Inst, unsigned N) const {
2429 assert(N == 1 && "Invalid number of operands!");
2430 // The immediate encodes the type of constant as well as the value.
2431 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2432 unsigned Value = CE->getValue();
2433 Value = ARM_AM::encodeNEONi16splat(~Value & 0xffff);
Jim Grosbachcda32ae2011-10-17 23:09:09 +00002434 Inst.addOperand(MCOperand::CreateImm(Value));
2435 }
2436
Jim Grosbach8211c052011-10-18 00:22:00 +00002437 void addNEONi32splatOperands(MCInst &Inst, unsigned N) const {
2438 assert(N == 1 && "Invalid number of operands!");
2439 // The immediate encodes the type of constant as well as the value.
2440 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2441 unsigned Value = CE->getValue();
Renato Golinf5dd1da2014-09-25 11:31:24 +00002442 Value = ARM_AM::encodeNEONi32splat(Value);
2443 Inst.addOperand(MCOperand::CreateImm(Value));
2444 }
2445
2446 void addNEONi32splatNotOperands(MCInst &Inst, unsigned N) const {
2447 assert(N == 1 && "Invalid number of operands!");
2448 // The immediate encodes the type of constant as well as the value.
2449 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2450 unsigned Value = CE->getValue();
2451 Value = ARM_AM::encodeNEONi32splat(~Value);
Jim Grosbach8211c052011-10-18 00:22:00 +00002452 Inst.addOperand(MCOperand::CreateImm(Value));
2453 }
2454
Stepan Dyatkovskiy00dcc0f2014-04-24 06:03:01 +00002455 void addNEONinvByteReplicateOperands(MCInst &Inst, unsigned N) const {
2456 assert(N == 1 && "Invalid number of operands!");
2457 // The immediate encodes the type of constant as well as the value.
2458 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2459 unsigned Value = CE->getValue();
2460 assert((Inst.getOpcode() == ARM::VMOVv8i8 ||
2461 Inst.getOpcode() == ARM::VMOVv16i8) &&
2462 "All vmvn instructions that wants to replicate non-zero byte "
2463 "always must be replaced with VMOVv8i8 or VMOVv16i8.");
2464 unsigned B = ((~Value) & 0xff);
2465 B |= 0xe00; // cmode = 0b1110
2466 Inst.addOperand(MCOperand::CreateImm(B));
2467 }
Jim Grosbach8211c052011-10-18 00:22:00 +00002468 void addNEONi32vmovOperands(MCInst &Inst, unsigned N) const {
2469 assert(N == 1 && "Invalid number of operands!");
2470 // The immediate encodes the type of constant as well as the value.
2471 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2472 unsigned Value = CE->getValue();
2473 if (Value >= 256 && Value <= 0xffff)
2474 Value = (Value >> 8) | ((Value & 0xff) ? 0xc00 : 0x200);
2475 else if (Value > 0xffff && Value <= 0xffffff)
2476 Value = (Value >> 16) | ((Value & 0xff) ? 0xd00 : 0x400);
2477 else if (Value > 0xffffff)
2478 Value = (Value >> 24) | 0x600;
2479 Inst.addOperand(MCOperand::CreateImm(Value));
2480 }
2481
Stepan Dyatkovskiy00dcc0f2014-04-24 06:03:01 +00002482 void addNEONvmovByteReplicateOperands(MCInst &Inst, unsigned N) const {
2483 assert(N == 1 && "Invalid number of operands!");
2484 // The immediate encodes the type of constant as well as the value.
2485 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2486 unsigned Value = CE->getValue();
2487 assert((Inst.getOpcode() == ARM::VMOVv8i8 ||
2488 Inst.getOpcode() == ARM::VMOVv16i8) &&
2489 "All instructions that wants to replicate non-zero byte "
2490 "always must be replaced with VMOVv8i8 or VMOVv16i8.");
2491 unsigned B = Value & 0xff;
2492 B |= 0xe00; // cmode = 0b1110
2493 Inst.addOperand(MCOperand::CreateImm(B));
2494 }
Jim Grosbach045b6c72011-12-19 23:51:07 +00002495 void addNEONi32vmovNegOperands(MCInst &Inst, unsigned N) const {
2496 assert(N == 1 && "Invalid number of operands!");
2497 // The immediate encodes the type of constant as well as the value.
2498 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2499 unsigned Value = ~CE->getValue();
2500 if (Value >= 256 && Value <= 0xffff)
2501 Value = (Value >> 8) | ((Value & 0xff) ? 0xc00 : 0x200);
2502 else if (Value > 0xffff && Value <= 0xffffff)
2503 Value = (Value >> 16) | ((Value & 0xff) ? 0xd00 : 0x400);
2504 else if (Value > 0xffffff)
2505 Value = (Value >> 24) | 0x600;
2506 Inst.addOperand(MCOperand::CreateImm(Value));
2507 }
2508
Jim Grosbache4454e02011-10-18 16:18:11 +00002509 void addNEONi64splatOperands(MCInst &Inst, unsigned N) const {
2510 assert(N == 1 && "Invalid number of operands!");
2511 // The immediate encodes the type of constant as well as the value.
2512 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2513 uint64_t Value = CE->getValue();
2514 unsigned Imm = 0;
2515 for (unsigned i = 0; i < 8; ++i, Value >>= 8) {
2516 Imm |= (Value & 1) << i;
2517 }
2518 Inst.addOperand(MCOperand::CreateImm(Imm | 0x1e00));
2519 }
2520
Craig Topperca7e3e52014-03-10 03:19:03 +00002521 void print(raw_ostream &OS) const override;
Daniel Dunbarebace222010-08-11 06:37:04 +00002522
David Blaikie960ea3f2014-06-08 16:18:35 +00002523 static std::unique_ptr<ARMOperand> CreateITMask(unsigned Mask, SMLoc S) {
2524 auto Op = make_unique<ARMOperand>(k_ITCondMask);
Jim Grosbach3d1eac82011-08-26 21:43:41 +00002525 Op->ITMask.Mask = Mask;
2526 Op->StartLoc = S;
2527 Op->EndLoc = S;
2528 return Op;
2529 }
2530
David Blaikie960ea3f2014-06-08 16:18:35 +00002531 static std::unique_ptr<ARMOperand> CreateCondCode(ARMCC::CondCodes CC,
2532 SMLoc S) {
2533 auto Op = make_unique<ARMOperand>(k_CondCode);
Daniel Dunbar188b47b2010-08-11 06:37:20 +00002534 Op->CC.Val = CC;
2535 Op->StartLoc = S;
2536 Op->EndLoc = S;
Chris Lattnerbd7c9fa2010-10-28 17:20:03 +00002537 return Op;
Daniel Dunbar188b47b2010-08-11 06:37:20 +00002538 }
2539
David Blaikie960ea3f2014-06-08 16:18:35 +00002540 static std::unique_ptr<ARMOperand> CreateCoprocNum(unsigned CopVal, SMLoc S) {
2541 auto Op = make_unique<ARMOperand>(k_CoprocNum);
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00002542 Op->Cop.Val = CopVal;
2543 Op->StartLoc = S;
2544 Op->EndLoc = S;
2545 return Op;
2546 }
2547
David Blaikie960ea3f2014-06-08 16:18:35 +00002548 static std::unique_ptr<ARMOperand> CreateCoprocReg(unsigned CopVal, SMLoc S) {
2549 auto Op = make_unique<ARMOperand>(k_CoprocReg);
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00002550 Op->Cop.Val = CopVal;
2551 Op->StartLoc = S;
2552 Op->EndLoc = S;
2553 return Op;
2554 }
2555
David Blaikie960ea3f2014-06-08 16:18:35 +00002556 static std::unique_ptr<ARMOperand> CreateCoprocOption(unsigned Val, SMLoc S,
2557 SMLoc E) {
2558 auto Op = make_unique<ARMOperand>(k_CoprocOption);
Jim Grosbach48399582011-10-12 17:34:41 +00002559 Op->Cop.Val = Val;
2560 Op->StartLoc = S;
2561 Op->EndLoc = E;
2562 return Op;
2563 }
2564
David Blaikie960ea3f2014-06-08 16:18:35 +00002565 static std::unique_ptr<ARMOperand> CreateCCOut(unsigned RegNum, SMLoc S) {
2566 auto Op = make_unique<ARMOperand>(k_CCOut);
Jim Grosbach0bfb4d52010-12-06 18:21:12 +00002567 Op->Reg.RegNum = RegNum;
2568 Op->StartLoc = S;
2569 Op->EndLoc = S;
2570 return Op;
2571 }
2572
David Blaikie960ea3f2014-06-08 16:18:35 +00002573 static std::unique_ptr<ARMOperand> CreateToken(StringRef Str, SMLoc S) {
2574 auto Op = make_unique<ARMOperand>(k_Token);
Sean Callanan7ad0ad02010-04-02 22:27:05 +00002575 Op->Tok.Data = Str.data();
2576 Op->Tok.Length = Str.size();
2577 Op->StartLoc = S;
2578 Op->EndLoc = S;
Chris Lattnerbd7c9fa2010-10-28 17:20:03 +00002579 return Op;
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00002580 }
2581
David Blaikie960ea3f2014-06-08 16:18:35 +00002582 static std::unique_ptr<ARMOperand> CreateReg(unsigned RegNum, SMLoc S,
2583 SMLoc E) {
2584 auto Op = make_unique<ARMOperand>(k_Register);
Sean Callanan7ad0ad02010-04-02 22:27:05 +00002585 Op->Reg.RegNum = RegNum;
Sean Callanan7ad0ad02010-04-02 22:27:05 +00002586 Op->StartLoc = S;
2587 Op->EndLoc = E;
Chris Lattnerbd7c9fa2010-10-28 17:20:03 +00002588 return Op;
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00002589 }
2590
David Blaikie960ea3f2014-06-08 16:18:35 +00002591 static std::unique_ptr<ARMOperand>
2592 CreateShiftedRegister(ARM_AM::ShiftOpc ShTy, unsigned SrcReg,
2593 unsigned ShiftReg, unsigned ShiftImm, SMLoc S,
2594 SMLoc E) {
2595 auto Op = make_unique<ARMOperand>(k_ShiftedRegister);
Jim Grosbachac798e12011-07-25 20:49:51 +00002596 Op->RegShiftedReg.ShiftTy = ShTy;
2597 Op->RegShiftedReg.SrcReg = SrcReg;
2598 Op->RegShiftedReg.ShiftReg = ShiftReg;
2599 Op->RegShiftedReg.ShiftImm = ShiftImm;
Jim Grosbach7dcd1352011-07-13 17:50:29 +00002600 Op->StartLoc = S;
2601 Op->EndLoc = E;
2602 return Op;
2603 }
2604
David Blaikie960ea3f2014-06-08 16:18:35 +00002605 static std::unique_ptr<ARMOperand>
2606 CreateShiftedImmediate(ARM_AM::ShiftOpc ShTy, unsigned SrcReg,
2607 unsigned ShiftImm, SMLoc S, SMLoc E) {
2608 auto Op = make_unique<ARMOperand>(k_ShiftedImmediate);
Jim Grosbachac798e12011-07-25 20:49:51 +00002609 Op->RegShiftedImm.ShiftTy = ShTy;
2610 Op->RegShiftedImm.SrcReg = SrcReg;
2611 Op->RegShiftedImm.ShiftImm = ShiftImm;
Owen Andersonb595ed02011-07-21 18:54:16 +00002612 Op->StartLoc = S;
2613 Op->EndLoc = E;
2614 return Op;
2615 }
2616
David Blaikie960ea3f2014-06-08 16:18:35 +00002617 static std::unique_ptr<ARMOperand> CreateShifterImm(bool isASR, unsigned Imm,
2618 SMLoc S, SMLoc E) {
2619 auto Op = make_unique<ARMOperand>(k_ShifterImmediate);
Jim Grosbach3a9cbee2011-07-25 22:20:28 +00002620 Op->ShifterImm.isASR = isASR;
2621 Op->ShifterImm.Imm = Imm;
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00002622 Op->StartLoc = S;
2623 Op->EndLoc = E;
2624 return Op;
2625 }
2626
David Blaikie960ea3f2014-06-08 16:18:35 +00002627 static std::unique_ptr<ARMOperand> CreateRotImm(unsigned Imm, SMLoc S,
2628 SMLoc E) {
2629 auto Op = make_unique<ARMOperand>(k_RotateImmediate);
Jim Grosbach833b9d32011-07-27 20:15:40 +00002630 Op->RotImm.Imm = Imm;
2631 Op->StartLoc = S;
2632 Op->EndLoc = E;
2633 return Op;
2634 }
2635
David Blaikie960ea3f2014-06-08 16:18:35 +00002636 static std::unique_ptr<ARMOperand>
2637 CreateBitfield(unsigned LSB, unsigned Width, SMLoc S, SMLoc E) {
2638 auto Op = make_unique<ARMOperand>(k_BitfieldDescriptor);
Jim Grosbach864b6092011-07-28 21:34:26 +00002639 Op->Bitfield.LSB = LSB;
2640 Op->Bitfield.Width = Width;
2641 Op->StartLoc = S;
2642 Op->EndLoc = E;
2643 return Op;
2644 }
2645
David Blaikie960ea3f2014-06-08 16:18:35 +00002646 static std::unique_ptr<ARMOperand>
2647 CreateRegList(SmallVectorImpl<std::pair<unsigned, unsigned>> &Regs,
Matt Beaumont-Gay55c4cc72010-11-10 00:08:58 +00002648 SMLoc StartLoc, SMLoc EndLoc) {
Chad Rosierfa705ee2013-07-01 20:49:23 +00002649 assert (Regs.size() > 0 && "RegList contains no registers?");
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002650 KindTy Kind = k_RegisterList;
Bill Wendling9898ac92010-11-17 04:32:08 +00002651
Chad Rosierfa705ee2013-07-01 20:49:23 +00002652 if (ARMMCRegisterClasses[ARM::DPRRegClassID].contains(Regs.front().second))
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002653 Kind = k_DPRRegisterList;
Jim Grosbach75461af2011-09-13 22:56:44 +00002654 else if (ARMMCRegisterClasses[ARM::SPRRegClassID].
Chad Rosierfa705ee2013-07-01 20:49:23 +00002655 contains(Regs.front().second))
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002656 Kind = k_SPRRegisterList;
Bill Wendling9898ac92010-11-17 04:32:08 +00002657
Chad Rosierfa705ee2013-07-01 20:49:23 +00002658 // Sort based on the register encoding values.
2659 array_pod_sort(Regs.begin(), Regs.end());
2660
David Blaikie960ea3f2014-06-08 16:18:35 +00002661 auto Op = make_unique<ARMOperand>(Kind);
Chad Rosierfa705ee2013-07-01 20:49:23 +00002662 for (SmallVectorImpl<std::pair<unsigned, unsigned> >::const_iterator
Bill Wendling2cae3272010-11-09 22:44:22 +00002663 I = Regs.begin(), E = Regs.end(); I != E; ++I)
Chad Rosierfa705ee2013-07-01 20:49:23 +00002664 Op->Registers.push_back(I->second);
Matt Beaumont-Gay55c4cc72010-11-10 00:08:58 +00002665 Op->StartLoc = StartLoc;
2666 Op->EndLoc = EndLoc;
Bill Wendling7cef4472010-11-06 19:56:04 +00002667 return Op;
2668 }
2669
David Blaikie960ea3f2014-06-08 16:18:35 +00002670 static std::unique_ptr<ARMOperand> CreateVectorList(unsigned RegNum,
2671 unsigned Count,
2672 bool isDoubleSpaced,
2673 SMLoc S, SMLoc E) {
2674 auto Op = make_unique<ARMOperand>(k_VectorList);
Jim Grosbachad47cfc2011-10-18 23:02:30 +00002675 Op->VectorList.RegNum = RegNum;
2676 Op->VectorList.Count = Count;
Jim Grosbach2f50e922011-12-15 21:44:33 +00002677 Op->VectorList.isDoubleSpaced = isDoubleSpaced;
Jim Grosbachad47cfc2011-10-18 23:02:30 +00002678 Op->StartLoc = S;
2679 Op->EndLoc = E;
2680 return Op;
2681 }
2682
David Blaikie960ea3f2014-06-08 16:18:35 +00002683 static std::unique_ptr<ARMOperand>
2684 CreateVectorListAllLanes(unsigned RegNum, unsigned Count, bool isDoubleSpaced,
2685 SMLoc S, SMLoc E) {
2686 auto Op = make_unique<ARMOperand>(k_VectorListAllLanes);
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00002687 Op->VectorList.RegNum = RegNum;
2688 Op->VectorList.Count = Count;
Jim Grosbachc5af54e2011-12-21 00:38:54 +00002689 Op->VectorList.isDoubleSpaced = isDoubleSpaced;
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00002690 Op->StartLoc = S;
2691 Op->EndLoc = E;
2692 return Op;
2693 }
2694
David Blaikie960ea3f2014-06-08 16:18:35 +00002695 static std::unique_ptr<ARMOperand>
2696 CreateVectorListIndexed(unsigned RegNum, unsigned Count, unsigned Index,
2697 bool isDoubleSpaced, SMLoc S, SMLoc E) {
2698 auto Op = make_unique<ARMOperand>(k_VectorListIndexed);
Jim Grosbach04945c42011-12-02 00:35:16 +00002699 Op->VectorList.RegNum = RegNum;
2700 Op->VectorList.Count = Count;
2701 Op->VectorList.LaneIndex = Index;
Jim Grosbach75e2ab52011-12-20 19:21:26 +00002702 Op->VectorList.isDoubleSpaced = isDoubleSpaced;
Jim Grosbach04945c42011-12-02 00:35:16 +00002703 Op->StartLoc = S;
2704 Op->EndLoc = E;
2705 return Op;
2706 }
2707
David Blaikie960ea3f2014-06-08 16:18:35 +00002708 static std::unique_ptr<ARMOperand>
2709 CreateVectorIndex(unsigned Idx, SMLoc S, SMLoc E, MCContext &Ctx) {
2710 auto Op = make_unique<ARMOperand>(k_VectorIndex);
Jim Grosbachd0637bf2011-10-07 23:56:00 +00002711 Op->VectorIndex.Val = Idx;
2712 Op->StartLoc = S;
2713 Op->EndLoc = E;
2714 return Op;
2715 }
2716
David Blaikie960ea3f2014-06-08 16:18:35 +00002717 static std::unique_ptr<ARMOperand> CreateImm(const MCExpr *Val, SMLoc S,
2718 SMLoc E) {
2719 auto Op = make_unique<ARMOperand>(k_Immediate);
Sean Callanan7ad0ad02010-04-02 22:27:05 +00002720 Op->Imm.Val = Val;
Sean Callanan7ad0ad02010-04-02 22:27:05 +00002721 Op->StartLoc = S;
2722 Op->EndLoc = E;
Chris Lattnerbd7c9fa2010-10-28 17:20:03 +00002723 return Op;
Kevin Enderbyf5079942009-10-13 22:19:02 +00002724 }
2725
David Blaikie960ea3f2014-06-08 16:18:35 +00002726 static std::unique_ptr<ARMOperand>
2727 CreateMem(unsigned BaseRegNum, const MCConstantExpr *OffsetImm,
2728 unsigned OffsetRegNum, ARM_AM::ShiftOpc ShiftType,
2729 unsigned ShiftImm, unsigned Alignment, bool isNegative, SMLoc S,
2730 SMLoc E, SMLoc AlignmentLoc = SMLoc()) {
2731 auto Op = make_unique<ARMOperand>(k_Memory);
Jim Grosbach871dff72011-10-11 15:59:20 +00002732 Op->Memory.BaseRegNum = BaseRegNum;
2733 Op->Memory.OffsetImm = OffsetImm;
2734 Op->Memory.OffsetRegNum = OffsetRegNum;
2735 Op->Memory.ShiftType = ShiftType;
2736 Op->Memory.ShiftImm = ShiftImm;
Jim Grosbacha95ec992011-10-11 17:29:55 +00002737 Op->Memory.Alignment = Alignment;
Jim Grosbach871dff72011-10-11 15:59:20 +00002738 Op->Memory.isNegative = isNegative;
Jim Grosbachd3595712011-08-03 23:50:40 +00002739 Op->StartLoc = S;
2740 Op->EndLoc = E;
Kevin Enderby488f20b2014-04-10 20:18:58 +00002741 Op->AlignmentLoc = AlignmentLoc;
Jim Grosbachd3595712011-08-03 23:50:40 +00002742 return Op;
2743 }
Jim Grosbach624bcc72010-10-29 14:46:02 +00002744
David Blaikie960ea3f2014-06-08 16:18:35 +00002745 static std::unique_ptr<ARMOperand>
2746 CreatePostIdxReg(unsigned RegNum, bool isAdd, ARM_AM::ShiftOpc ShiftTy,
2747 unsigned ShiftImm, SMLoc S, SMLoc E) {
2748 auto Op = make_unique<ARMOperand>(k_PostIndexRegister);
Jim Grosbachd3595712011-08-03 23:50:40 +00002749 Op->PostIdxReg.RegNum = RegNum;
Jim Grosbachc320c852011-08-05 21:28:30 +00002750 Op->PostIdxReg.isAdd = isAdd;
2751 Op->PostIdxReg.ShiftTy = ShiftTy;
2752 Op->PostIdxReg.ShiftImm = ShiftImm;
Sean Callanan7ad0ad02010-04-02 22:27:05 +00002753 Op->StartLoc = S;
2754 Op->EndLoc = E;
Chris Lattnerbd7c9fa2010-10-28 17:20:03 +00002755 return Op;
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00002756 }
Bruno Cardoso Lopes36dd43f2011-02-07 22:09:15 +00002757
David Blaikie960ea3f2014-06-08 16:18:35 +00002758 static std::unique_ptr<ARMOperand> CreateMemBarrierOpt(ARM_MB::MemBOpt Opt,
2759 SMLoc S) {
2760 auto Op = make_unique<ARMOperand>(k_MemBarrierOpt);
Bruno Cardoso Lopes36dd43f2011-02-07 22:09:15 +00002761 Op->MBOpt.Val = Opt;
2762 Op->StartLoc = S;
2763 Op->EndLoc = S;
2764 return Op;
2765 }
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00002766
David Blaikie960ea3f2014-06-08 16:18:35 +00002767 static std::unique_ptr<ARMOperand>
2768 CreateInstSyncBarrierOpt(ARM_ISB::InstSyncBOpt Opt, SMLoc S) {
2769 auto Op = make_unique<ARMOperand>(k_InstSyncBarrierOpt);
Amaury de la Vieuville43cb13a2013-06-10 14:17:08 +00002770 Op->ISBOpt.Val = Opt;
2771 Op->StartLoc = S;
2772 Op->EndLoc = S;
2773 return Op;
2774 }
2775
David Blaikie960ea3f2014-06-08 16:18:35 +00002776 static std::unique_ptr<ARMOperand> CreateProcIFlags(ARM_PROC::IFlags IFlags,
2777 SMLoc S) {
2778 auto Op = make_unique<ARMOperand>(k_ProcIFlags);
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00002779 Op->IFlags.Val = IFlags;
2780 Op->StartLoc = S;
2781 Op->EndLoc = S;
2782 return Op;
2783 }
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +00002784
David Blaikie960ea3f2014-06-08 16:18:35 +00002785 static std::unique_ptr<ARMOperand> CreateMSRMask(unsigned MMask, SMLoc S) {
2786 auto Op = make_unique<ARMOperand>(k_MSRMask);
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +00002787 Op->MMask.Val = MMask;
2788 Op->StartLoc = S;
2789 Op->EndLoc = S;
2790 return Op;
2791 }
Tim Northoveree843ef2014-08-15 10:47:12 +00002792
2793 static std::unique_ptr<ARMOperand> CreateBankedReg(unsigned Reg, SMLoc S) {
2794 auto Op = make_unique<ARMOperand>(k_BankedReg);
2795 Op->BankedReg.Val = Reg;
2796 Op->StartLoc = S;
2797 Op->EndLoc = S;
2798 return Op;
2799 }
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00002800};
2801
2802} // end anonymous namespace.
2803
Jim Grosbach602aa902011-07-13 15:34:57 +00002804void ARMOperand::print(raw_ostream &OS) const {
Daniel Dunbar4a863e62010-08-11 06:37:12 +00002805 switch (Kind) {
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002806 case k_CondCode:
Daniel Dunbar2be732a2011-01-10 15:26:21 +00002807 OS << "<ARMCC::" << ARMCondCodeToString(getCondCode()) << ">";
Daniel Dunbar4a863e62010-08-11 06:37:12 +00002808 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002809 case k_CCOut:
Jim Grosbach0bfb4d52010-12-06 18:21:12 +00002810 OS << "<ccout " << getReg() << ">";
2811 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002812 case k_ITCondMask: {
Craig Topper42b96d12012-05-24 04:11:15 +00002813 static const char *const MaskStr[] = {
Benjamin Kramer0d6d0982011-10-22 16:50:00 +00002814 "()", "(t)", "(e)", "(tt)", "(et)", "(te)", "(ee)", "(ttt)", "(ett)",
2815 "(tet)", "(eet)", "(tte)", "(ete)", "(tee)", "(eee)"
2816 };
Jim Grosbach3d1eac82011-08-26 21:43:41 +00002817 assert((ITMask.Mask & 0xf) == ITMask.Mask);
2818 OS << "<it-mask " << MaskStr[ITMask.Mask] << ">";
2819 break;
2820 }
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002821 case k_CoprocNum:
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00002822 OS << "<coprocessor number: " << getCoproc() << ">";
2823 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002824 case k_CoprocReg:
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00002825 OS << "<coprocessor register: " << getCoproc() << ">";
2826 break;
Jim Grosbach48399582011-10-12 17:34:41 +00002827 case k_CoprocOption:
2828 OS << "<coprocessor option: " << CoprocOption.Val << ">";
2829 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002830 case k_MSRMask:
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +00002831 OS << "<mask: " << getMSRMask() << ">";
2832 break;
Tim Northoveree843ef2014-08-15 10:47:12 +00002833 case k_BankedReg:
2834 OS << "<banked reg: " << getBankedReg() << ">";
2835 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002836 case k_Immediate:
Daniel Dunbar4a863e62010-08-11 06:37:12 +00002837 getImm()->print(OS);
2838 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002839 case k_MemBarrierOpt:
Joey Gouly926d3f52013-09-05 15:35:24 +00002840 OS << "<ARM_MB::" << MemBOptToString(getMemBarrierOpt(), false) << ">";
Bruno Cardoso Lopes36dd43f2011-02-07 22:09:15 +00002841 break;
Amaury de la Vieuville43cb13a2013-06-10 14:17:08 +00002842 case k_InstSyncBarrierOpt:
2843 OS << "<ARM_ISB::" << InstSyncBOptToString(getInstSyncBarrierOpt()) << ">";
2844 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002845 case k_Memory:
Daniel Dunbarbcd8eb02011-01-18 05:55:21 +00002846 OS << "<memory "
Jim Grosbach871dff72011-10-11 15:59:20 +00002847 << " base:" << Memory.BaseRegNum;
Daniel Dunbarbcd8eb02011-01-18 05:55:21 +00002848 OS << ">";
Daniel Dunbar4a863e62010-08-11 06:37:12 +00002849 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002850 case k_PostIndexRegister:
Jim Grosbachc320c852011-08-05 21:28:30 +00002851 OS << "post-idx register " << (PostIdxReg.isAdd ? "" : "-")
2852 << PostIdxReg.RegNum;
2853 if (PostIdxReg.ShiftTy != ARM_AM::no_shift)
2854 OS << ARM_AM::getShiftOpcStr(PostIdxReg.ShiftTy) << " "
2855 << PostIdxReg.ShiftImm;
2856 OS << ">";
Jim Grosbachd3595712011-08-03 23:50:40 +00002857 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002858 case k_ProcIFlags: {
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00002859 OS << "<ARM_PROC::";
2860 unsigned IFlags = getProcIFlags();
2861 for (int i=2; i >= 0; --i)
2862 if (IFlags & (1 << i))
2863 OS << ARM_PROC::IFlagsToString(1 << i);
2864 OS << ">";
2865 break;
2866 }
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002867 case k_Register:
Bill Wendling2063b842010-11-18 23:43:05 +00002868 OS << "<register " << getReg() << ">";
Daniel Dunbar4a863e62010-08-11 06:37:12 +00002869 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002870 case k_ShifterImmediate:
Jim Grosbach3a9cbee2011-07-25 22:20:28 +00002871 OS << "<shift " << (ShifterImm.isASR ? "asr" : "lsl")
2872 << " #" << ShifterImm.Imm << ">";
Jim Grosbach7dcd1352011-07-13 17:50:29 +00002873 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002874 case k_ShiftedRegister:
Owen Andersonb595ed02011-07-21 18:54:16 +00002875 OS << "<so_reg_reg "
Jim Grosbach01e04392011-11-16 21:46:50 +00002876 << RegShiftedReg.SrcReg << " "
2877 << ARM_AM::getShiftOpcStr(RegShiftedReg.ShiftTy)
2878 << " " << RegShiftedReg.ShiftReg << ">";
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00002879 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002880 case k_ShiftedImmediate:
Owen Andersonb595ed02011-07-21 18:54:16 +00002881 OS << "<so_reg_imm "
Jim Grosbach01e04392011-11-16 21:46:50 +00002882 << RegShiftedImm.SrcReg << " "
2883 << ARM_AM::getShiftOpcStr(RegShiftedImm.ShiftTy)
2884 << " #" << RegShiftedImm.ShiftImm << ">";
Owen Andersonb595ed02011-07-21 18:54:16 +00002885 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002886 case k_RotateImmediate:
Jim Grosbach833b9d32011-07-27 20:15:40 +00002887 OS << "<ror " << " #" << (RotImm.Imm * 8) << ">";
2888 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002889 case k_BitfieldDescriptor:
Jim Grosbach864b6092011-07-28 21:34:26 +00002890 OS << "<bitfield " << "lsb: " << Bitfield.LSB
2891 << ", width: " << Bitfield.Width << ">";
2892 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002893 case k_RegisterList:
2894 case k_DPRRegisterList:
2895 case k_SPRRegisterList: {
Bill Wendling7cef4472010-11-06 19:56:04 +00002896 OS << "<register_list ";
Bill Wendling7cef4472010-11-06 19:56:04 +00002897
Bill Wendlingbed94652010-11-09 23:28:44 +00002898 const SmallVectorImpl<unsigned> &RegList = getRegList();
2899 for (SmallVectorImpl<unsigned>::const_iterator
Bill Wendling2cae3272010-11-09 22:44:22 +00002900 I = RegList.begin(), E = RegList.end(); I != E; ) {
2901 OS << *I;
2902 if (++I < E) OS << ", ";
Bill Wendling7cef4472010-11-06 19:56:04 +00002903 }
2904
2905 OS << ">";
2906 break;
2907 }
Jim Grosbachad47cfc2011-10-18 23:02:30 +00002908 case k_VectorList:
2909 OS << "<vector_list " << VectorList.Count << " * "
2910 << VectorList.RegNum << ">";
2911 break;
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00002912 case k_VectorListAllLanes:
2913 OS << "<vector_list(all lanes) " << VectorList.Count << " * "
2914 << VectorList.RegNum << ">";
2915 break;
Jim Grosbach04945c42011-12-02 00:35:16 +00002916 case k_VectorListIndexed:
2917 OS << "<vector_list(lane " << VectorList.LaneIndex << ") "
2918 << VectorList.Count << " * " << VectorList.RegNum << ">";
2919 break;
Jim Grosbach6e5778f2011-10-07 23:24:09 +00002920 case k_Token:
Daniel Dunbar4a863e62010-08-11 06:37:12 +00002921 OS << "'" << getToken() << "'";
2922 break;
Jim Grosbachd0637bf2011-10-07 23:56:00 +00002923 case k_VectorIndex:
2924 OS << "<vectorindex " << getVectorIndex() << ">";
2925 break;
Daniel Dunbar4a863e62010-08-11 06:37:12 +00002926 }
2927}
Daniel Dunbar5cd4d0f2010-08-11 05:24:50 +00002928
2929/// @name Auto-generated Match Functions
2930/// {
2931
2932static unsigned MatchRegisterName(StringRef Name);
2933
2934/// }
2935
Bob Wilsonfb0bd042011-02-03 21:46:10 +00002936bool ARMAsmParser::ParseRegister(unsigned &RegNo,
2937 SMLoc &StartLoc, SMLoc &EndLoc) {
Jim Grosbachab5830e2011-12-14 02:16:11 +00002938 StartLoc = Parser.getTok().getLoc();
Jordan Rosee8f1eae2013-01-07 19:00:49 +00002939 EndLoc = Parser.getTok().getEndLoc();
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00002940 RegNo = tryParseRegister();
Roman Divacky36b1b472011-01-27 17:14:22 +00002941
2942 return (RegNo == (unsigned)-1);
2943}
2944
Kevin Enderby8be42bd2009-10-30 22:55:57 +00002945/// Try to parse a register name. The token must be an Identifier when called,
Chris Lattner44e5981c2010-10-30 04:09:10 +00002946/// and if it is a register name the token is eaten and the register number is
2947/// returned. Otherwise return -1.
2948///
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00002949int ARMAsmParser::tryParseRegister() {
Chris Lattner44e5981c2010-10-30 04:09:10 +00002950 const AsmToken &Tok = Parser.getTok();
Jim Grosbachd3595712011-08-03 23:50:40 +00002951 if (Tok.isNot(AsmToken::Identifier)) return -1;
Jim Grosbach99710a82010-11-01 16:44:21 +00002952
Benjamin Kramer20baffb2011-11-06 20:37:06 +00002953 std::string lowerCase = Tok.getString().lower();
Owen Andersona098d152011-01-13 22:50:36 +00002954 unsigned RegNum = MatchRegisterName(lowerCase);
2955 if (!RegNum) {
2956 RegNum = StringSwitch<unsigned>(lowerCase)
2957 .Case("r13", ARM::SP)
2958 .Case("r14", ARM::LR)
2959 .Case("r15", ARM::PC)
2960 .Case("ip", ARM::R12)
Jim Grosbach4edc7362011-12-08 19:27:38 +00002961 // Additional register name aliases for 'gas' compatibility.
2962 .Case("a1", ARM::R0)
2963 .Case("a2", ARM::R1)
2964 .Case("a3", ARM::R2)
2965 .Case("a4", ARM::R3)
2966 .Case("v1", ARM::R4)
2967 .Case("v2", ARM::R5)
2968 .Case("v3", ARM::R6)
2969 .Case("v4", ARM::R7)
2970 .Case("v5", ARM::R8)
2971 .Case("v6", ARM::R9)
2972 .Case("v7", ARM::R10)
2973 .Case("v8", ARM::R11)
2974 .Case("sb", ARM::R9)
2975 .Case("sl", ARM::R10)
2976 .Case("fp", ARM::R11)
Owen Andersona098d152011-01-13 22:50:36 +00002977 .Default(0);
2978 }
Jim Grosbachab5830e2011-12-14 02:16:11 +00002979 if (!RegNum) {
Jim Grosbachcd22e4a2011-12-20 23:11:00 +00002980 // Check for aliases registered via .req. Canonicalize to lower case.
2981 // That's more consistent since register names are case insensitive, and
2982 // it's how the original entry was passed in from MC/MCParser/AsmParser.
2983 StringMap<unsigned>::const_iterator Entry = RegisterReqs.find(lowerCase);
Jim Grosbachab5830e2011-12-14 02:16:11 +00002984 // If no match, return failure.
2985 if (Entry == RegisterReqs.end())
2986 return -1;
2987 Parser.Lex(); // Eat identifier token.
2988 return Entry->getValue();
2989 }
Bob Wilsonfb0bd042011-02-03 21:46:10 +00002990
Chris Lattner44e5981c2010-10-30 04:09:10 +00002991 Parser.Lex(); // Eat identifier token.
Jim Grosbachd0637bf2011-10-07 23:56:00 +00002992
Chris Lattner44e5981c2010-10-30 04:09:10 +00002993 return RegNum;
2994}
Jim Grosbach99710a82010-11-01 16:44:21 +00002995
Jim Grosbachbb24c592011-07-13 18:49:30 +00002996// Try to parse a shifter (e.g., "lsl <amt>"). On success, return 0.
2997// If a recoverable error occurs, return 1. If an irrecoverable error
2998// occurs, return -1. An irrecoverable error is one where tokens have been
2999// consumed in the process of trying to parse the shifter (i.e., when it is
3000// indeed a shifter operand, but malformed).
David Blaikie960ea3f2014-06-08 16:18:35 +00003001int ARMAsmParser::tryParseShiftRegister(OperandVector &Operands) {
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00003002 SMLoc S = Parser.getTok().getLoc();
3003 const AsmToken &Tok = Parser.getTok();
Kevin Enderby62873712014-02-17 21:45:27 +00003004 if (Tok.isNot(AsmToken::Identifier))
3005 return -1;
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00003006
Benjamin Kramer20baffb2011-11-06 20:37:06 +00003007 std::string lowerCase = Tok.getString().lower();
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00003008 ARM_AM::ShiftOpc ShiftTy = StringSwitch<ARM_AM::ShiftOpc>(lowerCase)
Jim Grosbach3b559ff2011-12-07 23:40:58 +00003009 .Case("asl", ARM_AM::lsl)
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00003010 .Case("lsl", ARM_AM::lsl)
3011 .Case("lsr", ARM_AM::lsr)
3012 .Case("asr", ARM_AM::asr)
3013 .Case("ror", ARM_AM::ror)
3014 .Case("rrx", ARM_AM::rrx)
3015 .Default(ARM_AM::no_shift);
3016
3017 if (ShiftTy == ARM_AM::no_shift)
Jim Grosbachbb24c592011-07-13 18:49:30 +00003018 return 1;
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00003019
Jim Grosbach7dcd1352011-07-13 17:50:29 +00003020 Parser.Lex(); // Eat the operator.
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00003021
Jim Grosbach7dcd1352011-07-13 17:50:29 +00003022 // The source register for the shift has already been added to the
3023 // operand list, so we need to pop it off and combine it into the shifted
3024 // register operand instead.
David Blaikie960ea3f2014-06-08 16:18:35 +00003025 std::unique_ptr<ARMOperand> PrevOp(
3026 (ARMOperand *)Operands.pop_back_val().release());
Jim Grosbach7dcd1352011-07-13 17:50:29 +00003027 if (!PrevOp->isReg())
3028 return Error(PrevOp->getStartLoc(), "shift must be of a register");
3029 int SrcReg = PrevOp->getReg();
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003030
3031 SMLoc EndLoc;
Jim Grosbach7dcd1352011-07-13 17:50:29 +00003032 int64_t Imm = 0;
3033 int ShiftReg = 0;
3034 if (ShiftTy == ARM_AM::rrx) {
3035 // RRX Doesn't have an explicit shift amount. The encoder expects
3036 // the shift register to be the same as the source register. Seems odd,
3037 // but OK.
3038 ShiftReg = SrcReg;
3039 } else {
3040 // Figure out if this is shifted by a constant or a register (for non-RRX).
Jim Grosbachef70e9b2011-12-09 22:25:03 +00003041 if (Parser.getTok().is(AsmToken::Hash) ||
3042 Parser.getTok().is(AsmToken::Dollar)) {
Jim Grosbach7dcd1352011-07-13 17:50:29 +00003043 Parser.Lex(); // Eat hash.
3044 SMLoc ImmLoc = Parser.getTok().getLoc();
Craig Topper062a2ba2014-04-25 05:30:21 +00003045 const MCExpr *ShiftExpr = nullptr;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00003046 if (getParser().parseExpression(ShiftExpr, EndLoc)) {
Jim Grosbachbb24c592011-07-13 18:49:30 +00003047 Error(ImmLoc, "invalid immediate shift value");
3048 return -1;
3049 }
Jim Grosbach7dcd1352011-07-13 17:50:29 +00003050 // The expression must be evaluatable as an immediate.
3051 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ShiftExpr);
Jim Grosbachbb24c592011-07-13 18:49:30 +00003052 if (!CE) {
3053 Error(ImmLoc, "invalid immediate shift value");
3054 return -1;
3055 }
Jim Grosbach7dcd1352011-07-13 17:50:29 +00003056 // Range check the immediate.
3057 // lsl, ror: 0 <= imm <= 31
3058 // lsr, asr: 0 <= imm <= 32
3059 Imm = CE->getValue();
3060 if (Imm < 0 ||
3061 ((ShiftTy == ARM_AM::lsl || ShiftTy == ARM_AM::ror) && Imm > 31) ||
3062 ((ShiftTy == ARM_AM::lsr || ShiftTy == ARM_AM::asr) && Imm > 32)) {
Jim Grosbachbb24c592011-07-13 18:49:30 +00003063 Error(ImmLoc, "immediate shift value out of range");
3064 return -1;
Jim Grosbach7dcd1352011-07-13 17:50:29 +00003065 }
Jim Grosbach21488b82011-12-22 17:37:00 +00003066 // shift by zero is a nop. Always send it through as lsl.
3067 // ('as' compatibility)
3068 if (Imm == 0)
3069 ShiftTy = ARM_AM::lsl;
Jim Grosbach7dcd1352011-07-13 17:50:29 +00003070 } else if (Parser.getTok().is(AsmToken::Identifier)) {
Jim Grosbach7dcd1352011-07-13 17:50:29 +00003071 SMLoc L = Parser.getTok().getLoc();
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003072 EndLoc = Parser.getTok().getEndLoc();
3073 ShiftReg = tryParseRegister();
Jim Grosbachbb24c592011-07-13 18:49:30 +00003074 if (ShiftReg == -1) {
Saleem Abdulrasool6d11b7c2014-05-17 21:49:54 +00003075 Error(L, "expected immediate or register in shift operand");
Jim Grosbachbb24c592011-07-13 18:49:30 +00003076 return -1;
3077 }
3078 } else {
Saleem Abdulrasool6d11b7c2014-05-17 21:49:54 +00003079 Error(Parser.getTok().getLoc(),
3080 "expected immediate or register in shift operand");
Jim Grosbachbb24c592011-07-13 18:49:30 +00003081 return -1;
3082 }
Jim Grosbach7dcd1352011-07-13 17:50:29 +00003083 }
3084
Owen Andersonb595ed02011-07-21 18:54:16 +00003085 if (ShiftReg && ShiftTy != ARM_AM::rrx)
3086 Operands.push_back(ARMOperand::CreateShiftedRegister(ShiftTy, SrcReg,
Jim Grosbachac798e12011-07-25 20:49:51 +00003087 ShiftReg, Imm,
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003088 S, EndLoc));
Owen Andersonb595ed02011-07-21 18:54:16 +00003089 else
3090 Operands.push_back(ARMOperand::CreateShiftedImmediate(ShiftTy, SrcReg, Imm,
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003091 S, EndLoc));
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00003092
Jim Grosbachbb24c592011-07-13 18:49:30 +00003093 return 0;
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00003094}
3095
3096
Bill Wendling2063b842010-11-18 23:43:05 +00003097/// Try to parse a register name. The token must be an Identifier when called.
3098/// If it's a register, an AsmOperand is created. Another AsmOperand is created
3099/// if there is a "writeback". 'true' if it's not a register.
Chris Lattnerbd7c9fa2010-10-28 17:20:03 +00003100///
Kevin Enderby8be42bd2009-10-30 22:55:57 +00003101/// TODO this is likely to change to allow different register types and or to
3102/// parse for a specific register type.
David Blaikie960ea3f2014-06-08 16:18:35 +00003103bool ARMAsmParser::tryParseRegisterWithWriteBack(OperandVector &Operands) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003104 const AsmToken &RegTok = Parser.getTok();
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00003105 int RegNo = tryParseRegister();
Bill Wendlinge18980a2010-11-06 22:36:58 +00003106 if (RegNo == -1)
Bill Wendling2063b842010-11-18 23:43:05 +00003107 return true;
Jim Grosbach99710a82010-11-01 16:44:21 +00003108
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003109 Operands.push_back(ARMOperand::CreateReg(RegNo, RegTok.getLoc(),
3110 RegTok.getEndLoc()));
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00003111
Chris Lattner44e5981c2010-10-30 04:09:10 +00003112 const AsmToken &ExclaimTok = Parser.getTok();
3113 if (ExclaimTok.is(AsmToken::Exclaim)) {
Bill Wendling2063b842010-11-18 23:43:05 +00003114 Operands.push_back(ARMOperand::CreateToken(ExclaimTok.getString(),
3115 ExclaimTok.getLoc()));
Chris Lattner44e5981c2010-10-30 04:09:10 +00003116 Parser.Lex(); // Eat exclaim token
Jim Grosbachd0637bf2011-10-07 23:56:00 +00003117 return false;
3118 }
3119
3120 // Also check for an index operand. This is only legal for vector registers,
3121 // but that'll get caught OK in operand matching, so we don't need to
3122 // explicitly filter everything else out here.
3123 if (Parser.getTok().is(AsmToken::LBrac)) {
3124 SMLoc SIdx = Parser.getTok().getLoc();
3125 Parser.Lex(); // Eat left bracket token.
3126
3127 const MCExpr *ImmVal;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00003128 if (getParser().parseExpression(ImmVal))
Jim Grosbacha2147ce2012-01-31 23:51:09 +00003129 return true;
Jim Grosbachd0637bf2011-10-07 23:56:00 +00003130 const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(ImmVal);
Jim Grosbachc8f2b782012-01-26 15:56:45 +00003131 if (!MCE)
3132 return TokError("immediate value expected for vector index");
Jim Grosbachd0637bf2011-10-07 23:56:00 +00003133
Jim Grosbachc8f2b782012-01-26 15:56:45 +00003134 if (Parser.getTok().isNot(AsmToken::RBrac))
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003135 return Error(Parser.getTok().getLoc(), "']' expected");
Jim Grosbachd0637bf2011-10-07 23:56:00 +00003136
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003137 SMLoc E = Parser.getTok().getEndLoc();
Jim Grosbachd0637bf2011-10-07 23:56:00 +00003138 Parser.Lex(); // Eat right bracket token.
3139
3140 Operands.push_back(ARMOperand::CreateVectorIndex(MCE->getValue(),
3141 SIdx, E,
3142 getContext()));
Kevin Enderby2207e5f2009-10-07 18:01:35 +00003143 }
3144
Bill Wendling2063b842010-11-18 23:43:05 +00003145 return false;
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00003146}
3147
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00003148/// MatchCoprocessorOperandName - Try to parse an coprocessor related
Renato Golinac561c32014-06-26 13:10:53 +00003149/// instruction with a symbolic operand name.
3150/// We accept "crN" syntax for GAS compatibility.
3151/// <operand-name> ::= <prefix><number>
3152/// If CoprocOp is 'c', then:
3153/// <prefix> ::= c | cr
3154/// If CoprocOp is 'p', then :
3155/// <prefix> ::= p
3156/// <number> ::= integer in range [0, 15]
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00003157static int MatchCoprocessorOperandName(StringRef Name, char CoprocOp) {
Owen Andersonc3c7f5d2011-01-13 21:46:02 +00003158 // Use the same layout as the tablegen'erated register name matcher. Ugly,
3159 // but efficient.
Renato Golinac561c32014-06-26 13:10:53 +00003160 if (Name.size() < 2 || Name[0] != CoprocOp)
3161 return -1;
3162 Name = (Name[1] == 'r') ? Name.drop_front(2) : Name.drop_front();
3163
Owen Andersonc3c7f5d2011-01-13 21:46:02 +00003164 switch (Name.size()) {
David Blaikie46a9f012012-01-20 21:51:11 +00003165 default: return -1;
Renato Golinac561c32014-06-26 13:10:53 +00003166 case 1:
3167 switch (Name[0]) {
Owen Andersonc3c7f5d2011-01-13 21:46:02 +00003168 default: return -1;
3169 case '0': return 0;
3170 case '1': return 1;
3171 case '2': return 2;
3172 case '3': return 3;
3173 case '4': return 4;
3174 case '5': return 5;
3175 case '6': return 6;
3176 case '7': return 7;
3177 case '8': return 8;
3178 case '9': return 9;
3179 }
Renato Golinac561c32014-06-26 13:10:53 +00003180 case 2:
3181 if (Name[0] != '1')
Owen Andersonc3c7f5d2011-01-13 21:46:02 +00003182 return -1;
Renato Golinac561c32014-06-26 13:10:53 +00003183 switch (Name[1]) {
Owen Andersonc3c7f5d2011-01-13 21:46:02 +00003184 default: return -1;
Renato Golinbc0b0372014-08-04 23:21:56 +00003185 // CP10 and CP11 are VFP/NEON and so vector instructions should be used.
3186 // However, old cores (v5/v6) did use them in that way.
3187 case '0': return 10;
3188 case '1': return 11;
Owen Andersonc3c7f5d2011-01-13 21:46:02 +00003189 case '2': return 12;
3190 case '3': return 13;
3191 case '4': return 14;
3192 case '5': return 15;
3193 }
Owen Andersonc3c7f5d2011-01-13 21:46:02 +00003194 }
Owen Andersonc3c7f5d2011-01-13 21:46:02 +00003195}
3196
Jim Grosbach3d1eac82011-08-26 21:43:41 +00003197/// parseITCondCode - Try to parse a condition code for an IT instruction.
David Blaikie960ea3f2014-06-08 16:18:35 +00003198ARMAsmParser::OperandMatchResultTy
3199ARMAsmParser::parseITCondCode(OperandVector &Operands) {
Jim Grosbach3d1eac82011-08-26 21:43:41 +00003200 SMLoc S = Parser.getTok().getLoc();
3201 const AsmToken &Tok = Parser.getTok();
3202 if (!Tok.is(AsmToken::Identifier))
3203 return MatchOperand_NoMatch;
Richard Barton82f95ea2012-04-27 17:34:01 +00003204 unsigned CC = StringSwitch<unsigned>(Tok.getString().lower())
Jim Grosbach3d1eac82011-08-26 21:43:41 +00003205 .Case("eq", ARMCC::EQ)
3206 .Case("ne", ARMCC::NE)
3207 .Case("hs", ARMCC::HS)
3208 .Case("cs", ARMCC::HS)
3209 .Case("lo", ARMCC::LO)
3210 .Case("cc", ARMCC::LO)
3211 .Case("mi", ARMCC::MI)
3212 .Case("pl", ARMCC::PL)
3213 .Case("vs", ARMCC::VS)
3214 .Case("vc", ARMCC::VC)
3215 .Case("hi", ARMCC::HI)
3216 .Case("ls", ARMCC::LS)
3217 .Case("ge", ARMCC::GE)
3218 .Case("lt", ARMCC::LT)
3219 .Case("gt", ARMCC::GT)
3220 .Case("le", ARMCC::LE)
3221 .Case("al", ARMCC::AL)
3222 .Default(~0U);
3223 if (CC == ~0U)
3224 return MatchOperand_NoMatch;
3225 Parser.Lex(); // Eat the token.
3226
3227 Operands.push_back(ARMOperand::CreateCondCode(ARMCC::CondCodes(CC), S));
3228
3229 return MatchOperand_Success;
3230}
3231
Jim Grosbach2d6ef442011-07-25 20:14:50 +00003232/// parseCoprocNumOperand - Try to parse an coprocessor number operand. The
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00003233/// token must be an Identifier when called, and if it is a coprocessor
3234/// number, the token is eaten and the operand is added to the operand list.
David Blaikie960ea3f2014-06-08 16:18:35 +00003235ARMAsmParser::OperandMatchResultTy
3236ARMAsmParser::parseCoprocNumOperand(OperandVector &Operands) {
Owen Andersonc3c7f5d2011-01-13 21:46:02 +00003237 SMLoc S = Parser.getTok().getLoc();
3238 const AsmToken &Tok = Parser.getTok();
Jim Grosbach54a20ed2011-10-12 20:54:17 +00003239 if (Tok.isNot(AsmToken::Identifier))
3240 return MatchOperand_NoMatch;
Owen Andersonc3c7f5d2011-01-13 21:46:02 +00003241
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00003242 int Num = MatchCoprocessorOperandName(Tok.getString(), 'p');
Owen Andersonc3c7f5d2011-01-13 21:46:02 +00003243 if (Num == -1)
Jim Grosbach861e49c2011-02-12 01:34:40 +00003244 return MatchOperand_NoMatch;
Renato Golinbc0b0372014-08-04 23:21:56 +00003245 // ARMv7 and v8 don't allow cp10/cp11 due to VFP/NEON specific instructions
3246 if ((hasV7Ops() || hasV8Ops()) && (Num == 10 || Num == 11))
3247 return MatchOperand_NoMatch;
Owen Andersonc3c7f5d2011-01-13 21:46:02 +00003248
3249 Parser.Lex(); // Eat identifier token.
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00003250 Operands.push_back(ARMOperand::CreateCoprocNum(Num, S));
Jim Grosbach861e49c2011-02-12 01:34:40 +00003251 return MatchOperand_Success;
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00003252}
3253
Jim Grosbach2d6ef442011-07-25 20:14:50 +00003254/// parseCoprocRegOperand - Try to parse an coprocessor register operand. The
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00003255/// token must be an Identifier when called, and if it is a coprocessor
3256/// number, the token is eaten and the operand is added to the operand list.
David Blaikie960ea3f2014-06-08 16:18:35 +00003257ARMAsmParser::OperandMatchResultTy
3258ARMAsmParser::parseCoprocRegOperand(OperandVector &Operands) {
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00003259 SMLoc S = Parser.getTok().getLoc();
3260 const AsmToken &Tok = Parser.getTok();
Jim Grosbach54a20ed2011-10-12 20:54:17 +00003261 if (Tok.isNot(AsmToken::Identifier))
3262 return MatchOperand_NoMatch;
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00003263
3264 int Reg = MatchCoprocessorOperandName(Tok.getString(), 'c');
3265 if (Reg == -1)
Jim Grosbach861e49c2011-02-12 01:34:40 +00003266 return MatchOperand_NoMatch;
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00003267
3268 Parser.Lex(); // Eat identifier token.
3269 Operands.push_back(ARMOperand::CreateCoprocReg(Reg, S));
Jim Grosbach861e49c2011-02-12 01:34:40 +00003270 return MatchOperand_Success;
Owen Andersonc3c7f5d2011-01-13 21:46:02 +00003271}
3272
Jim Grosbach48399582011-10-12 17:34:41 +00003273/// parseCoprocOptionOperand - Try to parse an coprocessor option operand.
3274/// coproc_option : '{' imm0_255 '}'
David Blaikie960ea3f2014-06-08 16:18:35 +00003275ARMAsmParser::OperandMatchResultTy
3276ARMAsmParser::parseCoprocOptionOperand(OperandVector &Operands) {
Jim Grosbach48399582011-10-12 17:34:41 +00003277 SMLoc S = Parser.getTok().getLoc();
3278
3279 // If this isn't a '{', this isn't a coprocessor immediate operand.
3280 if (Parser.getTok().isNot(AsmToken::LCurly))
3281 return MatchOperand_NoMatch;
3282 Parser.Lex(); // Eat the '{'
3283
3284 const MCExpr *Expr;
3285 SMLoc Loc = Parser.getTok().getLoc();
Jim Grosbachd2037eb2013-02-20 22:21:35 +00003286 if (getParser().parseExpression(Expr)) {
Jim Grosbach48399582011-10-12 17:34:41 +00003287 Error(Loc, "illegal expression");
3288 return MatchOperand_ParseFail;
3289 }
3290 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr);
3291 if (!CE || CE->getValue() < 0 || CE->getValue() > 255) {
3292 Error(Loc, "coprocessor option must be an immediate in range [0, 255]");
3293 return MatchOperand_ParseFail;
3294 }
3295 int Val = CE->getValue();
3296
3297 // Check for and consume the closing '}'
3298 if (Parser.getTok().isNot(AsmToken::RCurly))
3299 return MatchOperand_ParseFail;
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003300 SMLoc E = Parser.getTok().getEndLoc();
Jim Grosbach48399582011-10-12 17:34:41 +00003301 Parser.Lex(); // Eat the '}'
3302
3303 Operands.push_back(ARMOperand::CreateCoprocOption(Val, S, E));
3304 return MatchOperand_Success;
3305}
3306
Jim Grosbach3ac26b12011-09-14 18:08:35 +00003307// For register list parsing, we need to map from raw GPR register numbering
3308// to the enumeration values. The enumeration values aren't sorted by
3309// register number due to our using "sp", "lr" and "pc" as canonical names.
3310static unsigned getNextRegister(unsigned Reg) {
3311 // If this is a GPR, we need to do it manually, otherwise we can rely
3312 // on the sort ordering of the enumeration since the other reg-classes
3313 // are sane.
3314 if (!ARMMCRegisterClasses[ARM::GPRRegClassID].contains(Reg))
3315 return Reg + 1;
3316 switch(Reg) {
Craig Toppere55c5562012-02-07 02:50:20 +00003317 default: llvm_unreachable("Invalid GPR number!");
Jim Grosbach3ac26b12011-09-14 18:08:35 +00003318 case ARM::R0: return ARM::R1; case ARM::R1: return ARM::R2;
3319 case ARM::R2: return ARM::R3; case ARM::R3: return ARM::R4;
3320 case ARM::R4: return ARM::R5; case ARM::R5: return ARM::R6;
3321 case ARM::R6: return ARM::R7; case ARM::R7: return ARM::R8;
3322 case ARM::R8: return ARM::R9; case ARM::R9: return ARM::R10;
3323 case ARM::R10: return ARM::R11; case ARM::R11: return ARM::R12;
3324 case ARM::R12: return ARM::SP; case ARM::SP: return ARM::LR;
3325 case ARM::LR: return ARM::PC; case ARM::PC: return ARM::R0;
3326 }
3327}
3328
Jim Grosbach85a23432011-11-11 21:27:40 +00003329// Return the low-subreg of a given Q register.
3330static unsigned getDRegFromQReg(unsigned QReg) {
3331 switch (QReg) {
3332 default: llvm_unreachable("expected a Q register!");
3333 case ARM::Q0: return ARM::D0;
3334 case ARM::Q1: return ARM::D2;
3335 case ARM::Q2: return ARM::D4;
3336 case ARM::Q3: return ARM::D6;
3337 case ARM::Q4: return ARM::D8;
3338 case ARM::Q5: return ARM::D10;
3339 case ARM::Q6: return ARM::D12;
3340 case ARM::Q7: return ARM::D14;
3341 case ARM::Q8: return ARM::D16;
Jim Grosbacha92a5d82011-11-15 21:01:30 +00003342 case ARM::Q9: return ARM::D18;
Jim Grosbach85a23432011-11-11 21:27:40 +00003343 case ARM::Q10: return ARM::D20;
3344 case ARM::Q11: return ARM::D22;
3345 case ARM::Q12: return ARM::D24;
3346 case ARM::Q13: return ARM::D26;
3347 case ARM::Q14: return ARM::D28;
3348 case ARM::Q15: return ARM::D30;
3349 }
3350}
3351
Jim Grosbach3ac26b12011-09-14 18:08:35 +00003352/// Parse a register list.
David Blaikie960ea3f2014-06-08 16:18:35 +00003353bool ARMAsmParser::parseRegisterList(OperandVector &Operands) {
Sean Callanan936b0d32010-01-19 21:44:56 +00003354 assert(Parser.getTok().is(AsmToken::LCurly) &&
Bill Wendling4f4bce02010-11-06 10:48:18 +00003355 "Token is not a Left Curly Brace");
Bill Wendlinge18980a2010-11-06 22:36:58 +00003356 SMLoc S = Parser.getTok().getLoc();
Jim Grosbach3ac26b12011-09-14 18:08:35 +00003357 Parser.Lex(); // Eat '{' token.
3358 SMLoc RegLoc = Parser.getTok().getLoc();
Kevin Enderbya2b99102009-10-09 21:12:28 +00003359
Jim Grosbach3ac26b12011-09-14 18:08:35 +00003360 // Check the first register in the list to see what register class
3361 // this is a list of.
3362 int Reg = tryParseRegister();
3363 if (Reg == -1)
3364 return Error(RegLoc, "register expected");
3365
Jim Grosbach85a23432011-11-11 21:27:40 +00003366 // The reglist instructions have at most 16 registers, so reserve
3367 // space for that many.
Chad Rosierfa705ee2013-07-01 20:49:23 +00003368 int EReg = 0;
3369 SmallVector<std::pair<unsigned, unsigned>, 16> Registers;
Jim Grosbach85a23432011-11-11 21:27:40 +00003370
3371 // Allow Q regs and just interpret them as the two D sub-registers.
3372 if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(Reg)) {
3373 Reg = getDRegFromQReg(Reg);
Chad Rosierfa705ee2013-07-01 20:49:23 +00003374 EReg = MRI->getEncodingValue(Reg);
3375 Registers.push_back(std::pair<unsigned, unsigned>(EReg, Reg));
Jim Grosbach85a23432011-11-11 21:27:40 +00003376 ++Reg;
3377 }
Benjamin Kramer0d6d0982011-10-22 16:50:00 +00003378 const MCRegisterClass *RC;
Jim Grosbach3ac26b12011-09-14 18:08:35 +00003379 if (ARMMCRegisterClasses[ARM::GPRRegClassID].contains(Reg))
3380 RC = &ARMMCRegisterClasses[ARM::GPRRegClassID];
3381 else if (ARMMCRegisterClasses[ARM::DPRRegClassID].contains(Reg))
3382 RC = &ARMMCRegisterClasses[ARM::DPRRegClassID];
3383 else if (ARMMCRegisterClasses[ARM::SPRRegClassID].contains(Reg))
3384 RC = &ARMMCRegisterClasses[ARM::SPRRegClassID];
3385 else
3386 return Error(RegLoc, "invalid register in register list");
3387
Jim Grosbach85a23432011-11-11 21:27:40 +00003388 // Store the register.
Chad Rosierfa705ee2013-07-01 20:49:23 +00003389 EReg = MRI->getEncodingValue(Reg);
3390 Registers.push_back(std::pair<unsigned, unsigned>(EReg, Reg));
Kevin Enderbya2b99102009-10-09 21:12:28 +00003391
Jim Grosbach3ac26b12011-09-14 18:08:35 +00003392 // This starts immediately after the first register token in the list,
3393 // so we can see either a comma or a minus (range separator) as a legal
3394 // next token.
3395 while (Parser.getTok().is(AsmToken::Comma) ||
3396 Parser.getTok().is(AsmToken::Minus)) {
3397 if (Parser.getTok().is(AsmToken::Minus)) {
Jim Grosbache891fe82011-11-15 23:19:15 +00003398 Parser.Lex(); // Eat the minus.
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003399 SMLoc AfterMinusLoc = Parser.getTok().getLoc();
Jim Grosbach3ac26b12011-09-14 18:08:35 +00003400 int EndReg = tryParseRegister();
3401 if (EndReg == -1)
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003402 return Error(AfterMinusLoc, "register expected");
Jim Grosbach85a23432011-11-11 21:27:40 +00003403 // Allow Q regs and just interpret them as the two D sub-registers.
3404 if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(EndReg))
3405 EndReg = getDRegFromQReg(EndReg) + 1;
Jim Grosbach3ac26b12011-09-14 18:08:35 +00003406 // If the register is the same as the start reg, there's nothing
3407 // more to do.
3408 if (Reg == EndReg)
3409 continue;
3410 // The register must be in the same register class as the first.
3411 if (!RC->contains(EndReg))
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003412 return Error(AfterMinusLoc, "invalid register in register list");
Jim Grosbach3ac26b12011-09-14 18:08:35 +00003413 // Ranges must go from low to high.
Eric Christopher6ac277c2012-08-09 22:10:21 +00003414 if (MRI->getEncodingValue(Reg) > MRI->getEncodingValue(EndReg))
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003415 return Error(AfterMinusLoc, "bad range in register list");
Kevin Enderbya2b99102009-10-09 21:12:28 +00003416
Jim Grosbach3ac26b12011-09-14 18:08:35 +00003417 // Add all the registers in the range to the register list.
3418 while (Reg != EndReg) {
3419 Reg = getNextRegister(Reg);
Chad Rosierfa705ee2013-07-01 20:49:23 +00003420 EReg = MRI->getEncodingValue(Reg);
3421 Registers.push_back(std::pair<unsigned, unsigned>(EReg, Reg));
Jim Grosbach3ac26b12011-09-14 18:08:35 +00003422 }
3423 continue;
3424 }
3425 Parser.Lex(); // Eat the comma.
3426 RegLoc = Parser.getTok().getLoc();
3427 int OldReg = Reg;
Jim Grosbach98bc7972011-12-08 21:34:20 +00003428 const AsmToken RegTok = Parser.getTok();
Jim Grosbach3ac26b12011-09-14 18:08:35 +00003429 Reg = tryParseRegister();
3430 if (Reg == -1)
Jim Grosbach3337e392011-09-12 23:36:42 +00003431 return Error(RegLoc, "register expected");
Jim Grosbach85a23432011-11-11 21:27:40 +00003432 // Allow Q regs and just interpret them as the two D sub-registers.
3433 bool isQReg = false;
3434 if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(Reg)) {
3435 Reg = getDRegFromQReg(Reg);
3436 isQReg = true;
3437 }
Jim Grosbach3ac26b12011-09-14 18:08:35 +00003438 // The register must be in the same register class as the first.
3439 if (!RC->contains(Reg))
3440 return Error(RegLoc, "invalid register in register list");
3441 // List must be monotonically increasing.
Eric Christopher6ac277c2012-08-09 22:10:21 +00003442 if (MRI->getEncodingValue(Reg) < MRI->getEncodingValue(OldReg)) {
Jim Grosbach905686a2012-03-16 20:48:38 +00003443 if (ARMMCRegisterClasses[ARM::GPRRegClassID].contains(Reg))
3444 Warning(RegLoc, "register list not in ascending order");
3445 else
3446 return Error(RegLoc, "register list not in ascending order");
3447 }
Eric Christopher6ac277c2012-08-09 22:10:21 +00003448 if (MRI->getEncodingValue(Reg) == MRI->getEncodingValue(OldReg)) {
Jim Grosbach98bc7972011-12-08 21:34:20 +00003449 Warning(RegLoc, "duplicated register (" + RegTok.getString() +
3450 ") in register list");
3451 continue;
3452 }
Jim Grosbach3ac26b12011-09-14 18:08:35 +00003453 // VFP register lists must also be contiguous.
Jim Grosbach3ac26b12011-09-14 18:08:35 +00003454 if (RC != &ARMMCRegisterClasses[ARM::GPRRegClassID] &&
3455 Reg != OldReg + 1)
3456 return Error(RegLoc, "non-contiguous register range");
Chad Rosierfa705ee2013-07-01 20:49:23 +00003457 EReg = MRI->getEncodingValue(Reg);
3458 Registers.push_back(std::pair<unsigned, unsigned>(EReg, Reg));
3459 if (isQReg) {
3460 EReg = MRI->getEncodingValue(++Reg);
3461 Registers.push_back(std::pair<unsigned, unsigned>(EReg, Reg));
3462 }
Bill Wendlinge18980a2010-11-06 22:36:58 +00003463 }
3464
Jim Grosbach3ac26b12011-09-14 18:08:35 +00003465 if (Parser.getTok().isNot(AsmToken::RCurly))
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003466 return Error(Parser.getTok().getLoc(), "'}' expected");
3467 SMLoc E = Parser.getTok().getEndLoc();
Jim Grosbach3ac26b12011-09-14 18:08:35 +00003468 Parser.Lex(); // Eat '}' token.
3469
Jim Grosbach18bf3632011-12-13 21:48:29 +00003470 // Push the register list operand.
Bill Wendling2063b842010-11-18 23:43:05 +00003471 Operands.push_back(ARMOperand::CreateRegList(Registers, S, E));
Jim Grosbach18bf3632011-12-13 21:48:29 +00003472
3473 // The ARM system instruction variants for LDM/STM have a '^' token here.
3474 if (Parser.getTok().is(AsmToken::Caret)) {
3475 Operands.push_back(ARMOperand::CreateToken("^",Parser.getTok().getLoc()));
3476 Parser.Lex(); // Eat '^' token.
3477 }
3478
Bill Wendling2063b842010-11-18 23:43:05 +00003479 return false;
Kevin Enderbya2b99102009-10-09 21:12:28 +00003480}
3481
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003482// Helper function to parse the lane index for vector lists.
3483ARMAsmParser::OperandMatchResultTy ARMAsmParser::
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003484parseVectorLane(VectorLaneTy &LaneKind, unsigned &Index, SMLoc &EndLoc) {
Jim Grosbach04945c42011-12-02 00:35:16 +00003485 Index = 0; // Always return a defined index value.
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003486 if (Parser.getTok().is(AsmToken::LBrac)) {
3487 Parser.Lex(); // Eat the '['.
3488 if (Parser.getTok().is(AsmToken::RBrac)) {
3489 // "Dn[]" is the 'all lanes' syntax.
3490 LaneKind = AllLanes;
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003491 EndLoc = Parser.getTok().getEndLoc();
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003492 Parser.Lex(); // Eat the ']'.
3493 return MatchOperand_Success;
3494 }
Jim Grosbach67e76ba2012-03-19 20:39:53 +00003495
3496 // There's an optional '#' token here. Normally there wouldn't be, but
3497 // inline assemble puts one in, and it's friendly to accept that.
3498 if (Parser.getTok().is(AsmToken::Hash))
Amaury de la Vieuvillebac917f2013-06-10 14:17:15 +00003499 Parser.Lex(); // Eat '#' or '$'.
Jim Grosbach67e76ba2012-03-19 20:39:53 +00003500
Jim Grosbach7de7ab82011-12-21 01:19:23 +00003501 const MCExpr *LaneIndex;
3502 SMLoc Loc = Parser.getTok().getLoc();
Jim Grosbachd2037eb2013-02-20 22:21:35 +00003503 if (getParser().parseExpression(LaneIndex)) {
Jim Grosbach7de7ab82011-12-21 01:19:23 +00003504 Error(Loc, "illegal expression");
3505 return MatchOperand_ParseFail;
Jim Grosbach04945c42011-12-02 00:35:16 +00003506 }
Jim Grosbach7de7ab82011-12-21 01:19:23 +00003507 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(LaneIndex);
3508 if (!CE) {
3509 Error(Loc, "lane index must be empty or an integer");
3510 return MatchOperand_ParseFail;
3511 }
3512 if (Parser.getTok().isNot(AsmToken::RBrac)) {
3513 Error(Parser.getTok().getLoc(), "']' expected");
3514 return MatchOperand_ParseFail;
3515 }
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003516 EndLoc = Parser.getTok().getEndLoc();
Jim Grosbach7de7ab82011-12-21 01:19:23 +00003517 Parser.Lex(); // Eat the ']'.
3518 int64_t Val = CE->getValue();
3519
3520 // FIXME: Make this range check context sensitive for .8, .16, .32.
3521 if (Val < 0 || Val > 7) {
3522 Error(Parser.getTok().getLoc(), "lane index out of range");
3523 return MatchOperand_ParseFail;
3524 }
3525 Index = Val;
3526 LaneKind = IndexedLane;
3527 return MatchOperand_Success;
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003528 }
3529 LaneKind = NoLanes;
3530 return MatchOperand_Success;
3531}
3532
Jim Grosbachad47cfc2011-10-18 23:02:30 +00003533// parse a vector register list
David Blaikie960ea3f2014-06-08 16:18:35 +00003534ARMAsmParser::OperandMatchResultTy
3535ARMAsmParser::parseVectorList(OperandVector &Operands) {
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003536 VectorLaneTy LaneKind;
Jim Grosbach04945c42011-12-02 00:35:16 +00003537 unsigned LaneIndex;
Jim Grosbach8d579232011-11-15 21:45:55 +00003538 SMLoc S = Parser.getTok().getLoc();
3539 // As an extension (to match gas), support a plain D register or Q register
3540 // (without encosing curly braces) as a single or double entry list,
3541 // respectively.
3542 if (Parser.getTok().is(AsmToken::Identifier)) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003543 SMLoc E = Parser.getTok().getEndLoc();
Jim Grosbach8d579232011-11-15 21:45:55 +00003544 int Reg = tryParseRegister();
3545 if (Reg == -1)
3546 return MatchOperand_NoMatch;
Jim Grosbach8d579232011-11-15 21:45:55 +00003547 if (ARMMCRegisterClasses[ARM::DPRRegClassID].contains(Reg)) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003548 OperandMatchResultTy Res = parseVectorLane(LaneKind, LaneIndex, E);
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003549 if (Res != MatchOperand_Success)
3550 return Res;
3551 switch (LaneKind) {
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003552 case NoLanes:
Jim Grosbach2f50e922011-12-15 21:44:33 +00003553 Operands.push_back(ARMOperand::CreateVectorList(Reg, 1, false, S, E));
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003554 break;
3555 case AllLanes:
Jim Grosbachc5af54e2011-12-21 00:38:54 +00003556 Operands.push_back(ARMOperand::CreateVectorListAllLanes(Reg, 1, false,
3557 S, E));
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003558 break;
Jim Grosbach04945c42011-12-02 00:35:16 +00003559 case IndexedLane:
3560 Operands.push_back(ARMOperand::CreateVectorListIndexed(Reg, 1,
Jim Grosbach75e2ab52011-12-20 19:21:26 +00003561 LaneIndex,
3562 false, S, E));
Jim Grosbach04945c42011-12-02 00:35:16 +00003563 break;
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003564 }
Jim Grosbach8d579232011-11-15 21:45:55 +00003565 return MatchOperand_Success;
3566 }
3567 if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(Reg)) {
3568 Reg = getDRegFromQReg(Reg);
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003569 OperandMatchResultTy Res = parseVectorLane(LaneKind, LaneIndex, E);
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003570 if (Res != MatchOperand_Success)
3571 return Res;
3572 switch (LaneKind) {
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003573 case NoLanes:
Jim Grosbachc988e0c2012-03-05 19:33:30 +00003574 Reg = MRI->getMatchingSuperReg(Reg, ARM::dsub_0,
Jim Grosbach13a292c2012-03-06 22:01:44 +00003575 &ARMMCRegisterClasses[ARM::DPairRegClassID]);
Jim Grosbach2f50e922011-12-15 21:44:33 +00003576 Operands.push_back(ARMOperand::CreateVectorList(Reg, 2, false, S, E));
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003577 break;
3578 case AllLanes:
Jim Grosbach13a292c2012-03-06 22:01:44 +00003579 Reg = MRI->getMatchingSuperReg(Reg, ARM::dsub_0,
3580 &ARMMCRegisterClasses[ARM::DPairRegClassID]);
Jim Grosbachc5af54e2011-12-21 00:38:54 +00003581 Operands.push_back(ARMOperand::CreateVectorListAllLanes(Reg, 2, false,
3582 S, E));
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003583 break;
Jim Grosbach04945c42011-12-02 00:35:16 +00003584 case IndexedLane:
3585 Operands.push_back(ARMOperand::CreateVectorListIndexed(Reg, 2,
Jim Grosbach75e2ab52011-12-20 19:21:26 +00003586 LaneIndex,
3587 false, S, E));
Jim Grosbach04945c42011-12-02 00:35:16 +00003588 break;
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003589 }
Jim Grosbach8d579232011-11-15 21:45:55 +00003590 return MatchOperand_Success;
3591 }
3592 Error(S, "vector register expected");
3593 return MatchOperand_ParseFail;
3594 }
3595
3596 if (Parser.getTok().isNot(AsmToken::LCurly))
Jim Grosbachad47cfc2011-10-18 23:02:30 +00003597 return MatchOperand_NoMatch;
3598
Jim Grosbachad47cfc2011-10-18 23:02:30 +00003599 Parser.Lex(); // Eat '{' token.
3600 SMLoc RegLoc = Parser.getTok().getLoc();
3601
3602 int Reg = tryParseRegister();
3603 if (Reg == -1) {
3604 Error(RegLoc, "register expected");
3605 return MatchOperand_ParseFail;
3606 }
Jim Grosbachad47cfc2011-10-18 23:02:30 +00003607 unsigned Count = 1;
Jim Grosbachc2f16a32011-12-15 21:54:55 +00003608 int Spacing = 0;
Jim Grosbach080a4992011-10-28 00:06:50 +00003609 unsigned FirstReg = Reg;
3610 // The list is of D registers, but we also allow Q regs and just interpret
3611 // them as the two D sub-registers.
3612 if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(Reg)) {
3613 FirstReg = Reg = getDRegFromQReg(Reg);
Jim Grosbach2f50e922011-12-15 21:44:33 +00003614 Spacing = 1; // double-spacing requires explicit D registers, otherwise
3615 // it's ambiguous with four-register single spaced.
Jim Grosbach080a4992011-10-28 00:06:50 +00003616 ++Reg;
3617 ++Count;
3618 }
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003619
3620 SMLoc E;
3621 if (parseVectorLane(LaneKind, LaneIndex, E) != MatchOperand_Success)
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003622 return MatchOperand_ParseFail;
Jim Grosbach080a4992011-10-28 00:06:50 +00003623
Jim Grosbache891fe82011-11-15 23:19:15 +00003624 while (Parser.getTok().is(AsmToken::Comma) ||
3625 Parser.getTok().is(AsmToken::Minus)) {
3626 if (Parser.getTok().is(AsmToken::Minus)) {
Jim Grosbach2f50e922011-12-15 21:44:33 +00003627 if (!Spacing)
3628 Spacing = 1; // Register range implies a single spaced list.
3629 else if (Spacing == 2) {
3630 Error(Parser.getTok().getLoc(),
3631 "sequential registers in double spaced list");
3632 return MatchOperand_ParseFail;
3633 }
Jim Grosbache891fe82011-11-15 23:19:15 +00003634 Parser.Lex(); // Eat the minus.
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003635 SMLoc AfterMinusLoc = Parser.getTok().getLoc();
Jim Grosbache891fe82011-11-15 23:19:15 +00003636 int EndReg = tryParseRegister();
3637 if (EndReg == -1) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003638 Error(AfterMinusLoc, "register expected");
Jim Grosbache891fe82011-11-15 23:19:15 +00003639 return MatchOperand_ParseFail;
3640 }
3641 // Allow Q regs and just interpret them as the two D sub-registers.
3642 if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(EndReg))
3643 EndReg = getDRegFromQReg(EndReg) + 1;
3644 // If the register is the same as the start reg, there's nothing
3645 // more to do.
3646 if (Reg == EndReg)
3647 continue;
3648 // The register must be in the same register class as the first.
3649 if (!ARMMCRegisterClasses[ARM::DPRRegClassID].contains(EndReg)) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003650 Error(AfterMinusLoc, "invalid register in register list");
Jim Grosbache891fe82011-11-15 23:19:15 +00003651 return MatchOperand_ParseFail;
3652 }
3653 // Ranges must go from low to high.
3654 if (Reg > EndReg) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003655 Error(AfterMinusLoc, "bad range in register list");
Jim Grosbache891fe82011-11-15 23:19:15 +00003656 return MatchOperand_ParseFail;
3657 }
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003658 // Parse the lane specifier if present.
3659 VectorLaneTy NextLaneKind;
Jim Grosbach04945c42011-12-02 00:35:16 +00003660 unsigned NextLaneIndex;
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003661 if (parseVectorLane(NextLaneKind, NextLaneIndex, E) !=
3662 MatchOperand_Success)
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003663 return MatchOperand_ParseFail;
Jim Grosbach04945c42011-12-02 00:35:16 +00003664 if (NextLaneKind != LaneKind || LaneIndex != NextLaneIndex) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003665 Error(AfterMinusLoc, "mismatched lane index in register list");
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003666 return MatchOperand_ParseFail;
3667 }
Jim Grosbache891fe82011-11-15 23:19:15 +00003668
3669 // Add all the registers in the range to the register list.
3670 Count += EndReg - Reg;
3671 Reg = EndReg;
3672 continue;
3673 }
Jim Grosbachad47cfc2011-10-18 23:02:30 +00003674 Parser.Lex(); // Eat the comma.
3675 RegLoc = Parser.getTok().getLoc();
3676 int OldReg = Reg;
3677 Reg = tryParseRegister();
3678 if (Reg == -1) {
3679 Error(RegLoc, "register expected");
3680 return MatchOperand_ParseFail;
3681 }
Jim Grosbach080a4992011-10-28 00:06:50 +00003682 // vector register lists must be contiguous.
Jim Grosbachad47cfc2011-10-18 23:02:30 +00003683 // It's OK to use the enumeration values directly here rather, as the
3684 // VFP register classes have the enum sorted properly.
Jim Grosbach080a4992011-10-28 00:06:50 +00003685 //
3686 // The list is of D registers, but we also allow Q regs and just interpret
3687 // them as the two D sub-registers.
3688 if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(Reg)) {
Jim Grosbach2f50e922011-12-15 21:44:33 +00003689 if (!Spacing)
3690 Spacing = 1; // Register range implies a single spaced list.
3691 else if (Spacing == 2) {
3692 Error(RegLoc,
3693 "invalid register in double-spaced list (must be 'D' register')");
3694 return MatchOperand_ParseFail;
3695 }
Jim Grosbach080a4992011-10-28 00:06:50 +00003696 Reg = getDRegFromQReg(Reg);
3697 if (Reg != OldReg + 1) {
3698 Error(RegLoc, "non-contiguous register range");
3699 return MatchOperand_ParseFail;
3700 }
3701 ++Reg;
3702 Count += 2;
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003703 // Parse the lane specifier if present.
3704 VectorLaneTy NextLaneKind;
Jim Grosbach04945c42011-12-02 00:35:16 +00003705 unsigned NextLaneIndex;
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003706 SMLoc LaneLoc = Parser.getTok().getLoc();
3707 if (parseVectorLane(NextLaneKind, NextLaneIndex, E) !=
3708 MatchOperand_Success)
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003709 return MatchOperand_ParseFail;
Jim Grosbach04945c42011-12-02 00:35:16 +00003710 if (NextLaneKind != LaneKind || LaneIndex != NextLaneIndex) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003711 Error(LaneLoc, "mismatched lane index in register list");
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003712 return MatchOperand_ParseFail;
3713 }
Jim Grosbach080a4992011-10-28 00:06:50 +00003714 continue;
3715 }
Jim Grosbach2f50e922011-12-15 21:44:33 +00003716 // Normal D register.
3717 // Figure out the register spacing (single or double) of the list if
3718 // we don't know it already.
3719 if (!Spacing)
3720 Spacing = 1 + (Reg == OldReg + 2);
3721
3722 // Just check that it's contiguous and keep going.
3723 if (Reg != OldReg + Spacing) {
Jim Grosbachad47cfc2011-10-18 23:02:30 +00003724 Error(RegLoc, "non-contiguous register range");
3725 return MatchOperand_ParseFail;
3726 }
Jim Grosbachad47cfc2011-10-18 23:02:30 +00003727 ++Count;
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003728 // Parse the lane specifier if present.
3729 VectorLaneTy NextLaneKind;
Jim Grosbach04945c42011-12-02 00:35:16 +00003730 unsigned NextLaneIndex;
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003731 SMLoc EndLoc = Parser.getTok().getLoc();
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003732 if (parseVectorLane(NextLaneKind, NextLaneIndex, E) != MatchOperand_Success)
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003733 return MatchOperand_ParseFail;
Jim Grosbach04945c42011-12-02 00:35:16 +00003734 if (NextLaneKind != LaneKind || LaneIndex != NextLaneIndex) {
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003735 Error(EndLoc, "mismatched lane index in register list");
3736 return MatchOperand_ParseFail;
3737 }
Jim Grosbachad47cfc2011-10-18 23:02:30 +00003738 }
3739
Jim Grosbachad47cfc2011-10-18 23:02:30 +00003740 if (Parser.getTok().isNot(AsmToken::RCurly)) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003741 Error(Parser.getTok().getLoc(), "'}' expected");
Jim Grosbachad47cfc2011-10-18 23:02:30 +00003742 return MatchOperand_ParseFail;
3743 }
Jordan Rosee8f1eae2013-01-07 19:00:49 +00003744 E = Parser.getTok().getEndLoc();
Jim Grosbachad47cfc2011-10-18 23:02:30 +00003745 Parser.Lex(); // Eat '}' token.
3746
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003747 switch (LaneKind) {
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003748 case NoLanes:
Jim Grosbach13a292c2012-03-06 22:01:44 +00003749 // Two-register operands have been converted to the
Jim Grosbache5307f92012-03-05 21:43:40 +00003750 // composite register classes.
3751 if (Count == 2) {
3752 const MCRegisterClass *RC = (Spacing == 1) ?
3753 &ARMMCRegisterClasses[ARM::DPairRegClassID] :
3754 &ARMMCRegisterClasses[ARM::DPairSpcRegClassID];
3755 FirstReg = MRI->getMatchingSuperReg(FirstReg, ARM::dsub_0, RC);
3756 }
Jim Grosbachc988e0c2012-03-05 19:33:30 +00003757
Jim Grosbach2f50e922011-12-15 21:44:33 +00003758 Operands.push_back(ARMOperand::CreateVectorList(FirstReg, Count,
3759 (Spacing == 2), S, E));
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003760 break;
3761 case AllLanes:
Jim Grosbach13a292c2012-03-06 22:01:44 +00003762 // Two-register operands have been converted to the
3763 // composite register classes.
Jim Grosbached428bc2012-03-06 23:10:38 +00003764 if (Count == 2) {
3765 const MCRegisterClass *RC = (Spacing == 1) ?
3766 &ARMMCRegisterClasses[ARM::DPairRegClassID] :
3767 &ARMMCRegisterClasses[ARM::DPairSpcRegClassID];
Jim Grosbach13a292c2012-03-06 22:01:44 +00003768 FirstReg = MRI->getMatchingSuperReg(FirstReg, ARM::dsub_0, RC);
3769 }
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003770 Operands.push_back(ARMOperand::CreateVectorListAllLanes(FirstReg, Count,
Jim Grosbachc5af54e2011-12-21 00:38:54 +00003771 (Spacing == 2),
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003772 S, E));
3773 break;
Jim Grosbach04945c42011-12-02 00:35:16 +00003774 case IndexedLane:
3775 Operands.push_back(ARMOperand::CreateVectorListIndexed(FirstReg, Count,
Jim Grosbach75e2ab52011-12-20 19:21:26 +00003776 LaneIndex,
3777 (Spacing == 2),
3778 S, E));
Jim Grosbach04945c42011-12-02 00:35:16 +00003779 break;
Jim Grosbachcd6f5e72011-11-30 01:09:44 +00003780 }
Jim Grosbachad47cfc2011-10-18 23:02:30 +00003781 return MatchOperand_Success;
3782}
3783
Jim Grosbach2d6ef442011-07-25 20:14:50 +00003784/// parseMemBarrierOptOperand - Try to parse DSB/DMB data barrier options.
David Blaikie960ea3f2014-06-08 16:18:35 +00003785ARMAsmParser::OperandMatchResultTy
3786ARMAsmParser::parseMemBarrierOptOperand(OperandVector &Operands) {
Bruno Cardoso Lopes36dd43f2011-02-07 22:09:15 +00003787 SMLoc S = Parser.getTok().getLoc();
3788 const AsmToken &Tok = Parser.getTok();
Jiangning Liu288e1af2012-08-02 08:21:27 +00003789 unsigned Opt;
Bruno Cardoso Lopes36dd43f2011-02-07 22:09:15 +00003790
Jiangning Liu288e1af2012-08-02 08:21:27 +00003791 if (Tok.is(AsmToken::Identifier)) {
3792 StringRef OptStr = Tok.getString();
Bruno Cardoso Lopes36dd43f2011-02-07 22:09:15 +00003793
Jiangning Liu288e1af2012-08-02 08:21:27 +00003794 Opt = StringSwitch<unsigned>(OptStr.slice(0, OptStr.size()).lower())
3795 .Case("sy", ARM_MB::SY)
3796 .Case("st", ARM_MB::ST)
Joey Gouly926d3f52013-09-05 15:35:24 +00003797 .Case("ld", ARM_MB::LD)
Jiangning Liu288e1af2012-08-02 08:21:27 +00003798 .Case("sh", ARM_MB::ISH)
3799 .Case("ish", ARM_MB::ISH)
3800 .Case("shst", ARM_MB::ISHST)
3801 .Case("ishst", ARM_MB::ISHST)
Joey Gouly926d3f52013-09-05 15:35:24 +00003802 .Case("ishld", ARM_MB::ISHLD)
Jiangning Liu288e1af2012-08-02 08:21:27 +00003803 .Case("nsh", ARM_MB::NSH)
3804 .Case("un", ARM_MB::NSH)
3805 .Case("nshst", ARM_MB::NSHST)
Joey Gouly926d3f52013-09-05 15:35:24 +00003806 .Case("nshld", ARM_MB::NSHLD)
Jiangning Liu288e1af2012-08-02 08:21:27 +00003807 .Case("unst", ARM_MB::NSHST)
3808 .Case("osh", ARM_MB::OSH)
3809 .Case("oshst", ARM_MB::OSHST)
Joey Gouly926d3f52013-09-05 15:35:24 +00003810 .Case("oshld", ARM_MB::OSHLD)
Jiangning Liu288e1af2012-08-02 08:21:27 +00003811 .Default(~0U);
Bruno Cardoso Lopes36dd43f2011-02-07 22:09:15 +00003812
Joey Gouly926d3f52013-09-05 15:35:24 +00003813 // ishld, oshld, nshld and ld are only available from ARMv8.
3814 if (!hasV8Ops() && (Opt == ARM_MB::ISHLD || Opt == ARM_MB::OSHLD ||
3815 Opt == ARM_MB::NSHLD || Opt == ARM_MB::LD))
3816 Opt = ~0U;
3817
Jiangning Liu288e1af2012-08-02 08:21:27 +00003818 if (Opt == ~0U)
3819 return MatchOperand_NoMatch;
3820
3821 Parser.Lex(); // Eat identifier token.
3822 } else if (Tok.is(AsmToken::Hash) ||
3823 Tok.is(AsmToken::Dollar) ||
3824 Tok.is(AsmToken::Integer)) {
3825 if (Parser.getTok().isNot(AsmToken::Integer))
Amaury de la Vieuvillebac917f2013-06-10 14:17:15 +00003826 Parser.Lex(); // Eat '#' or '$'.
Jiangning Liu288e1af2012-08-02 08:21:27 +00003827 SMLoc Loc = Parser.getTok().getLoc();
3828
3829 const MCExpr *MemBarrierID;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00003830 if (getParser().parseExpression(MemBarrierID)) {
Jiangning Liu288e1af2012-08-02 08:21:27 +00003831 Error(Loc, "illegal expression");
3832 return MatchOperand_ParseFail;
3833 }
Saleem Abdulrasool4ab6e732014-02-23 17:45:36 +00003834
Jiangning Liu288e1af2012-08-02 08:21:27 +00003835 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(MemBarrierID);
3836 if (!CE) {
3837 Error(Loc, "constant expression expected");
3838 return MatchOperand_ParseFail;
3839 }
3840
3841 int Val = CE->getValue();
3842 if (Val & ~0xf) {
3843 Error(Loc, "immediate value out of range");
3844 return MatchOperand_ParseFail;
3845 }
3846
3847 Opt = ARM_MB::RESERVED_0 + Val;
3848 } else
3849 return MatchOperand_ParseFail;
3850
Bruno Cardoso Lopes36dd43f2011-02-07 22:09:15 +00003851 Operands.push_back(ARMOperand::CreateMemBarrierOpt((ARM_MB::MemBOpt)Opt, S));
Jim Grosbach861e49c2011-02-12 01:34:40 +00003852 return MatchOperand_Success;
Bruno Cardoso Lopes36dd43f2011-02-07 22:09:15 +00003853}
3854
Amaury de la Vieuville43cb13a2013-06-10 14:17:08 +00003855/// parseInstSyncBarrierOptOperand - Try to parse ISB inst sync barrier options.
David Blaikie960ea3f2014-06-08 16:18:35 +00003856ARMAsmParser::OperandMatchResultTy
3857ARMAsmParser::parseInstSyncBarrierOptOperand(OperandVector &Operands) {
Amaury de la Vieuville43cb13a2013-06-10 14:17:08 +00003858 SMLoc S = Parser.getTok().getLoc();
3859 const AsmToken &Tok = Parser.getTok();
3860 unsigned Opt;
3861
3862 if (Tok.is(AsmToken::Identifier)) {
3863 StringRef OptStr = Tok.getString();
3864
Benjamin Kramer3e9237a2013-11-09 22:48:13 +00003865 if (OptStr.equals_lower("sy"))
Amaury de la Vieuville43cb13a2013-06-10 14:17:08 +00003866 Opt = ARM_ISB::SY;
3867 else
3868 return MatchOperand_NoMatch;
3869
3870 Parser.Lex(); // Eat identifier token.
3871 } else if (Tok.is(AsmToken::Hash) ||
3872 Tok.is(AsmToken::Dollar) ||
3873 Tok.is(AsmToken::Integer)) {
3874 if (Parser.getTok().isNot(AsmToken::Integer))
Amaury de la Vieuvillebac917f2013-06-10 14:17:15 +00003875 Parser.Lex(); // Eat '#' or '$'.
Amaury de la Vieuville43cb13a2013-06-10 14:17:08 +00003876 SMLoc Loc = Parser.getTok().getLoc();
3877
3878 const MCExpr *ISBarrierID;
3879 if (getParser().parseExpression(ISBarrierID)) {
3880 Error(Loc, "illegal expression");
3881 return MatchOperand_ParseFail;
3882 }
3883
3884 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ISBarrierID);
3885 if (!CE) {
3886 Error(Loc, "constant expression expected");
3887 return MatchOperand_ParseFail;
3888 }
3889
3890 int Val = CE->getValue();
3891 if (Val & ~0xf) {
3892 Error(Loc, "immediate value out of range");
3893 return MatchOperand_ParseFail;
3894 }
3895
3896 Opt = ARM_ISB::RESERVED_0 + Val;
3897 } else
3898 return MatchOperand_ParseFail;
3899
3900 Operands.push_back(ARMOperand::CreateInstSyncBarrierOpt(
3901 (ARM_ISB::InstSyncBOpt)Opt, S));
3902 return MatchOperand_Success;
3903}
3904
3905
Jim Grosbach2d6ef442011-07-25 20:14:50 +00003906/// parseProcIFlagsOperand - Try to parse iflags from CPS instruction.
David Blaikie960ea3f2014-06-08 16:18:35 +00003907ARMAsmParser::OperandMatchResultTy
3908ARMAsmParser::parseProcIFlagsOperand(OperandVector &Operands) {
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00003909 SMLoc S = Parser.getTok().getLoc();
3910 const AsmToken &Tok = Parser.getTok();
Richard Bartonb0ec3752012-06-14 10:48:04 +00003911 if (!Tok.is(AsmToken::Identifier))
3912 return MatchOperand_NoMatch;
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00003913 StringRef IFlagsStr = Tok.getString();
3914
Owen Anderson10c5b122011-10-05 17:16:40 +00003915 // An iflags string of "none" is interpreted to mean that none of the AIF
3916 // bits are set. Not a terribly useful instruction, but a valid encoding.
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00003917 unsigned IFlags = 0;
Owen Anderson10c5b122011-10-05 17:16:40 +00003918 if (IFlagsStr != "none") {
3919 for (int i = 0, e = IFlagsStr.size(); i != e; ++i) {
3920 unsigned Flag = StringSwitch<unsigned>(IFlagsStr.substr(i, 1))
3921 .Case("a", ARM_PROC::A)
3922 .Case("i", ARM_PROC::I)
3923 .Case("f", ARM_PROC::F)
3924 .Default(~0U);
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00003925
Owen Anderson10c5b122011-10-05 17:16:40 +00003926 // If some specific iflag is already set, it means that some letter is
3927 // present more than once, this is not acceptable.
3928 if (Flag == ~0U || (IFlags & Flag))
3929 return MatchOperand_NoMatch;
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00003930
Owen Anderson10c5b122011-10-05 17:16:40 +00003931 IFlags |= Flag;
3932 }
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00003933 }
3934
3935 Parser.Lex(); // Eat identifier token.
3936 Operands.push_back(ARMOperand::CreateProcIFlags((ARM_PROC::IFlags)IFlags, S));
3937 return MatchOperand_Success;
3938}
3939
Jim Grosbach2d6ef442011-07-25 20:14:50 +00003940/// parseMSRMaskOperand - Try to parse mask flags from MSR instruction.
David Blaikie960ea3f2014-06-08 16:18:35 +00003941ARMAsmParser::OperandMatchResultTy
3942ARMAsmParser::parseMSRMaskOperand(OperandVector &Operands) {
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +00003943 SMLoc S = Parser.getTok().getLoc();
3944 const AsmToken &Tok = Parser.getTok();
Craig Toppera004b0d2012-10-09 04:55:28 +00003945 if (!Tok.is(AsmToken::Identifier))
3946 return MatchOperand_NoMatch;
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +00003947 StringRef Mask = Tok.getString();
3948
James Molloy21efa7d2011-09-28 14:21:38 +00003949 if (isMClass()) {
3950 // See ARMv6-M 10.1.1
Jim Grosbachd28888d2012-03-15 21:34:14 +00003951 std::string Name = Mask.lower();
3952 unsigned FlagsVal = StringSwitch<unsigned>(Name)
Kevin Enderbyf1b225d2012-05-17 22:18:01 +00003953 // Note: in the documentation:
3954 // ARM deprecates using MSR APSR without a _<bits> qualifier as an alias
3955 // for MSR APSR_nzcvq.
3956 // but we do make it an alias here. This is so to get the "mask encoding"
3957 // bits correct on MSR APSR writes.
3958 //
3959 // FIXME: Note the 0xc00 "mask encoding" bits version of the registers
3960 // should really only be allowed when writing a special register. Note
3961 // they get dropped in the MRS instruction reading a special register as
3962 // the SYSm field is only 8 bits.
Kevin Enderbyf1b225d2012-05-17 22:18:01 +00003963 .Case("apsr", 0x800)
3964 .Case("apsr_nzcvq", 0x800)
3965 .Case("apsr_g", 0x400)
3966 .Case("apsr_nzcvqg", 0xc00)
3967 .Case("iapsr", 0x801)
3968 .Case("iapsr_nzcvq", 0x801)
3969 .Case("iapsr_g", 0x401)
3970 .Case("iapsr_nzcvqg", 0xc01)
3971 .Case("eapsr", 0x802)
3972 .Case("eapsr_nzcvq", 0x802)
3973 .Case("eapsr_g", 0x402)
3974 .Case("eapsr_nzcvqg", 0xc02)
3975 .Case("xpsr", 0x803)
3976 .Case("xpsr_nzcvq", 0x803)
3977 .Case("xpsr_g", 0x403)
3978 .Case("xpsr_nzcvqg", 0xc03)
Kevin Enderby6c7279e2012-06-15 22:14:44 +00003979 .Case("ipsr", 0x805)
3980 .Case("epsr", 0x806)
3981 .Case("iepsr", 0x807)
3982 .Case("msp", 0x808)
3983 .Case("psp", 0x809)
3984 .Case("primask", 0x810)
3985 .Case("basepri", 0x811)
3986 .Case("basepri_max", 0x812)
3987 .Case("faultmask", 0x813)
3988 .Case("control", 0x814)
James Molloy21efa7d2011-09-28 14:21:38 +00003989 .Default(~0U);
Jim Grosbach3794d822011-12-22 17:17:10 +00003990
James Molloy21efa7d2011-09-28 14:21:38 +00003991 if (FlagsVal == ~0U)
3992 return MatchOperand_NoMatch;
3993
Renato Golin92c816c2014-09-01 11:25:07 +00003994 if (!hasThumb2DSP() && (FlagsVal & 0x400))
3995 // The _g and _nzcvqg versions are only valid if the DSP extension is
3996 // available.
3997 return MatchOperand_NoMatch;
3998
Kevin Enderby6c7279e2012-06-15 22:14:44 +00003999 if (!hasV7Ops() && FlagsVal >= 0x811 && FlagsVal <= 0x813)
James Molloy21efa7d2011-09-28 14:21:38 +00004000 // basepri, basepri_max and faultmask only valid for V7m.
4001 return MatchOperand_NoMatch;
Jim Grosbach3794d822011-12-22 17:17:10 +00004002
James Molloy21efa7d2011-09-28 14:21:38 +00004003 Parser.Lex(); // Eat identifier token.
4004 Operands.push_back(ARMOperand::CreateMSRMask(FlagsVal, S));
4005 return MatchOperand_Success;
4006 }
4007
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +00004008 // Split spec_reg from flag, example: CPSR_sxf => "CPSR" and "sxf"
4009 size_t Start = 0, Next = Mask.find('_');
4010 StringRef Flags = "";
Benjamin Kramer20baffb2011-11-06 20:37:06 +00004011 std::string SpecReg = Mask.slice(Start, Next).lower();
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +00004012 if (Next != StringRef::npos)
4013 Flags = Mask.slice(Next+1, Mask.size());
4014
4015 // FlagsVal contains the complete mask:
4016 // 3-0: Mask
4017 // 4: Special Reg (cpsr, apsr => 0; spsr => 1)
4018 unsigned FlagsVal = 0;
4019
4020 if (SpecReg == "apsr") {
4021 FlagsVal = StringSwitch<unsigned>(Flags)
Jim Grosbachd25c2cd2011-07-19 22:45:10 +00004022 .Case("nzcvq", 0x8) // same as CPSR_f
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +00004023 .Case("g", 0x4) // same as CPSR_s
4024 .Case("nzcvqg", 0xc) // same as CPSR_fs
4025 .Default(~0U);
4026
Joerg Sonnenberger740467a2011-02-19 00:43:45 +00004027 if (FlagsVal == ~0U) {
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +00004028 if (!Flags.empty())
4029 return MatchOperand_NoMatch;
4030 else
Jim Grosbach0ecd3952011-09-14 20:03:46 +00004031 FlagsVal = 8; // No flag
Joerg Sonnenberger740467a2011-02-19 00:43:45 +00004032 }
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +00004033 } else if (SpecReg == "cpsr" || SpecReg == "spsr") {
Jim Grosbach3d00eec2012-04-05 03:17:53 +00004034 // cpsr_all is an alias for cpsr_fc, as is plain cpsr.
4035 if (Flags == "all" || Flags == "")
Bruno Cardoso Lopes54452132011-05-25 00:35:03 +00004036 Flags = "fc";
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +00004037 for (int i = 0, e = Flags.size(); i != e; ++i) {
4038 unsigned Flag = StringSwitch<unsigned>(Flags.substr(i, 1))
4039 .Case("c", 1)
4040 .Case("x", 2)
4041 .Case("s", 4)
4042 .Case("f", 8)
4043 .Default(~0U);
4044
4045 // If some specific flag is already set, it means that some letter is
4046 // present more than once, this is not acceptable.
4047 if (FlagsVal == ~0U || (FlagsVal & Flag))
4048 return MatchOperand_NoMatch;
4049 FlagsVal |= Flag;
4050 }
4051 } else // No match for special register.
4052 return MatchOperand_NoMatch;
4053
Owen Anderson03a173e2011-10-21 18:43:28 +00004054 // Special register without flags is NOT equivalent to "fc" flags.
4055 // NOTE: This is a divergence from gas' behavior. Uncommenting the following
4056 // two lines would enable gas compatibility at the expense of breaking
4057 // round-tripping.
4058 //
4059 // if (!FlagsVal)
4060 // FlagsVal = 0x9;
Bruno Cardoso Lopes9cd43972011-02-18 19:45:59 +00004061
4062 // Bit 4: Special Reg (cpsr, apsr => 0; spsr => 1)
4063 if (SpecReg == "spsr")
4064 FlagsVal |= 16;
4065
4066 Parser.Lex(); // Eat identifier token.
4067 Operands.push_back(ARMOperand::CreateMSRMask(FlagsVal, S));
4068 return MatchOperand_Success;
4069}
4070
Tim Northoveree843ef2014-08-15 10:47:12 +00004071/// parseBankedRegOperand - Try to parse a banked register (e.g. "lr_irq") for
4072/// use in the MRS/MSR instructions added to support virtualization.
4073ARMAsmParser::OperandMatchResultTy
4074ARMAsmParser::parseBankedRegOperand(OperandVector &Operands) {
4075 SMLoc S = Parser.getTok().getLoc();
4076 const AsmToken &Tok = Parser.getTok();
4077 if (!Tok.is(AsmToken::Identifier))
4078 return MatchOperand_NoMatch;
4079 StringRef RegName = Tok.getString();
4080
4081 // The values here come from B9.2.3 of the ARM ARM, where bits 4-0 are SysM
4082 // and bit 5 is R.
4083 unsigned Encoding = StringSwitch<unsigned>(RegName.lower())
4084 .Case("r8_usr", 0x00)
4085 .Case("r9_usr", 0x01)
4086 .Case("r10_usr", 0x02)
4087 .Case("r11_usr", 0x03)
4088 .Case("r12_usr", 0x04)
4089 .Case("sp_usr", 0x05)
4090 .Case("lr_usr", 0x06)
4091 .Case("r8_fiq", 0x08)
4092 .Case("r9_fiq", 0x09)
4093 .Case("r10_fiq", 0x0a)
4094 .Case("r11_fiq", 0x0b)
4095 .Case("r12_fiq", 0x0c)
4096 .Case("sp_fiq", 0x0d)
4097 .Case("lr_fiq", 0x0e)
4098 .Case("lr_irq", 0x10)
4099 .Case("sp_irq", 0x11)
4100 .Case("lr_svc", 0x12)
4101 .Case("sp_svc", 0x13)
4102 .Case("lr_abt", 0x14)
4103 .Case("sp_abt", 0x15)
4104 .Case("lr_und", 0x16)
4105 .Case("sp_und", 0x17)
4106 .Case("lr_mon", 0x1c)
4107 .Case("sp_mon", 0x1d)
4108 .Case("elr_hyp", 0x1e)
4109 .Case("sp_hyp", 0x1f)
4110 .Case("spsr_fiq", 0x2e)
4111 .Case("spsr_irq", 0x30)
4112 .Case("spsr_svc", 0x32)
4113 .Case("spsr_abt", 0x34)
4114 .Case("spsr_und", 0x36)
4115 .Case("spsr_mon", 0x3c)
4116 .Case("spsr_hyp", 0x3e)
4117 .Default(~0U);
4118
4119 if (Encoding == ~0U)
4120 return MatchOperand_NoMatch;
4121
4122 Parser.Lex(); // Eat identifier token.
4123 Operands.push_back(ARMOperand::CreateBankedReg(Encoding, S));
4124 return MatchOperand_Success;
4125}
4126
David Blaikie960ea3f2014-06-08 16:18:35 +00004127ARMAsmParser::OperandMatchResultTy
4128ARMAsmParser::parsePKHImm(OperandVector &Operands, StringRef Op, int Low,
4129 int High) {
Jim Grosbach27c1e252011-07-21 17:23:04 +00004130 const AsmToken &Tok = Parser.getTok();
4131 if (Tok.isNot(AsmToken::Identifier)) {
4132 Error(Parser.getTok().getLoc(), Op + " operand expected.");
4133 return MatchOperand_ParseFail;
4134 }
4135 StringRef ShiftName = Tok.getString();
Benjamin Kramer20baffb2011-11-06 20:37:06 +00004136 std::string LowerOp = Op.lower();
4137 std::string UpperOp = Op.upper();
Jim Grosbach27c1e252011-07-21 17:23:04 +00004138 if (ShiftName != LowerOp && ShiftName != UpperOp) {
4139 Error(Parser.getTok().getLoc(), Op + " operand expected.");
4140 return MatchOperand_ParseFail;
4141 }
4142 Parser.Lex(); // Eat shift type token.
4143
4144 // There must be a '#' and a shift amount.
Jim Grosbachef70e9b2011-12-09 22:25:03 +00004145 if (Parser.getTok().isNot(AsmToken::Hash) &&
4146 Parser.getTok().isNot(AsmToken::Dollar)) {
Jim Grosbach27c1e252011-07-21 17:23:04 +00004147 Error(Parser.getTok().getLoc(), "'#' expected");
4148 return MatchOperand_ParseFail;
4149 }
4150 Parser.Lex(); // Eat hash token.
4151
4152 const MCExpr *ShiftAmount;
4153 SMLoc Loc = Parser.getTok().getLoc();
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004154 SMLoc EndLoc;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00004155 if (getParser().parseExpression(ShiftAmount, EndLoc)) {
Jim Grosbach27c1e252011-07-21 17:23:04 +00004156 Error(Loc, "illegal expression");
4157 return MatchOperand_ParseFail;
4158 }
4159 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ShiftAmount);
4160 if (!CE) {
4161 Error(Loc, "constant expression expected");
4162 return MatchOperand_ParseFail;
4163 }
4164 int Val = CE->getValue();
4165 if (Val < Low || Val > High) {
4166 Error(Loc, "immediate value out of range");
4167 return MatchOperand_ParseFail;
4168 }
4169
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004170 Operands.push_back(ARMOperand::CreateImm(CE, Loc, EndLoc));
Jim Grosbach27c1e252011-07-21 17:23:04 +00004171
4172 return MatchOperand_Success;
4173}
4174
David Blaikie960ea3f2014-06-08 16:18:35 +00004175ARMAsmParser::OperandMatchResultTy
4176ARMAsmParser::parseSetEndImm(OperandVector &Operands) {
Jim Grosbach0a547702011-07-22 17:44:50 +00004177 const AsmToken &Tok = Parser.getTok();
4178 SMLoc S = Tok.getLoc();
4179 if (Tok.isNot(AsmToken::Identifier)) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004180 Error(S, "'be' or 'le' operand expected");
Jim Grosbach0a547702011-07-22 17:44:50 +00004181 return MatchOperand_ParseFail;
4182 }
Tim Northover4d141442013-05-31 15:58:45 +00004183 int Val = StringSwitch<int>(Tok.getString().lower())
Jim Grosbach0a547702011-07-22 17:44:50 +00004184 .Case("be", 1)
4185 .Case("le", 0)
4186 .Default(-1);
4187 Parser.Lex(); // Eat the token.
4188
4189 if (Val == -1) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004190 Error(S, "'be' or 'le' operand expected");
Jim Grosbach0a547702011-07-22 17:44:50 +00004191 return MatchOperand_ParseFail;
4192 }
4193 Operands.push_back(ARMOperand::CreateImm(MCConstantExpr::Create(Val,
4194 getContext()),
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004195 S, Tok.getEndLoc()));
Jim Grosbach0a547702011-07-22 17:44:50 +00004196 return MatchOperand_Success;
4197}
4198
Jim Grosbach3a9cbee2011-07-25 22:20:28 +00004199/// parseShifterImm - Parse the shifter immediate operand for SSAT/USAT
4200/// instructions. Legal values are:
4201/// lsl #n 'n' in [0,31]
4202/// asr #n 'n' in [1,32]
4203/// n == 32 encoded as n == 0.
David Blaikie960ea3f2014-06-08 16:18:35 +00004204ARMAsmParser::OperandMatchResultTy
4205ARMAsmParser::parseShifterImm(OperandVector &Operands) {
Jim Grosbach3a9cbee2011-07-25 22:20:28 +00004206 const AsmToken &Tok = Parser.getTok();
4207 SMLoc S = Tok.getLoc();
4208 if (Tok.isNot(AsmToken::Identifier)) {
4209 Error(S, "shift operator 'asr' or 'lsl' expected");
4210 return MatchOperand_ParseFail;
4211 }
4212 StringRef ShiftName = Tok.getString();
4213 bool isASR;
4214 if (ShiftName == "lsl" || ShiftName == "LSL")
4215 isASR = false;
4216 else if (ShiftName == "asr" || ShiftName == "ASR")
4217 isASR = true;
4218 else {
4219 Error(S, "shift operator 'asr' or 'lsl' expected");
4220 return MatchOperand_ParseFail;
4221 }
4222 Parser.Lex(); // Eat the operator.
4223
4224 // A '#' and a shift amount.
Jim Grosbachef70e9b2011-12-09 22:25:03 +00004225 if (Parser.getTok().isNot(AsmToken::Hash) &&
4226 Parser.getTok().isNot(AsmToken::Dollar)) {
Jim Grosbach3a9cbee2011-07-25 22:20:28 +00004227 Error(Parser.getTok().getLoc(), "'#' expected");
4228 return MatchOperand_ParseFail;
4229 }
4230 Parser.Lex(); // Eat hash token.
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004231 SMLoc ExLoc = Parser.getTok().getLoc();
Jim Grosbach3a9cbee2011-07-25 22:20:28 +00004232
4233 const MCExpr *ShiftAmount;
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004234 SMLoc EndLoc;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00004235 if (getParser().parseExpression(ShiftAmount, EndLoc)) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004236 Error(ExLoc, "malformed shift expression");
Jim Grosbach3a9cbee2011-07-25 22:20:28 +00004237 return MatchOperand_ParseFail;
4238 }
4239 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ShiftAmount);
4240 if (!CE) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004241 Error(ExLoc, "shift amount must be an immediate");
Jim Grosbach3a9cbee2011-07-25 22:20:28 +00004242 return MatchOperand_ParseFail;
4243 }
4244
4245 int64_t Val = CE->getValue();
4246 if (isASR) {
4247 // Shift amount must be in [1,32]
4248 if (Val < 1 || Val > 32) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004249 Error(ExLoc, "'asr' shift amount must be in range [1,32]");
Jim Grosbach3a9cbee2011-07-25 22:20:28 +00004250 return MatchOperand_ParseFail;
4251 }
Owen Andersonf01e2de2011-09-26 21:06:22 +00004252 // asr #32 encoded as asr #0, but is not allowed in Thumb2 mode.
4253 if (isThumb() && Val == 32) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004254 Error(ExLoc, "'asr #32' shift amount not allowed in Thumb mode");
Owen Andersonf01e2de2011-09-26 21:06:22 +00004255 return MatchOperand_ParseFail;
4256 }
Jim Grosbach3a9cbee2011-07-25 22:20:28 +00004257 if (Val == 32) Val = 0;
4258 } else {
4259 // Shift amount must be in [1,32]
4260 if (Val < 0 || Val > 31) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004261 Error(ExLoc, "'lsr' shift amount must be in range [0,31]");
Jim Grosbach3a9cbee2011-07-25 22:20:28 +00004262 return MatchOperand_ParseFail;
4263 }
4264 }
4265
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004266 Operands.push_back(ARMOperand::CreateShifterImm(isASR, Val, S, EndLoc));
Jim Grosbach3a9cbee2011-07-25 22:20:28 +00004267
4268 return MatchOperand_Success;
4269}
4270
Jim Grosbach833b9d32011-07-27 20:15:40 +00004271/// parseRotImm - Parse the shifter immediate operand for SXTB/UXTB family
4272/// of instructions. Legal values are:
4273/// ror #n 'n' in {0, 8, 16, 24}
David Blaikie960ea3f2014-06-08 16:18:35 +00004274ARMAsmParser::OperandMatchResultTy
4275ARMAsmParser::parseRotImm(OperandVector &Operands) {
Jim Grosbach833b9d32011-07-27 20:15:40 +00004276 const AsmToken &Tok = Parser.getTok();
4277 SMLoc S = Tok.getLoc();
Jim Grosbach82213192011-09-19 20:29:33 +00004278 if (Tok.isNot(AsmToken::Identifier))
4279 return MatchOperand_NoMatch;
Jim Grosbach833b9d32011-07-27 20:15:40 +00004280 StringRef ShiftName = Tok.getString();
Jim Grosbach82213192011-09-19 20:29:33 +00004281 if (ShiftName != "ror" && ShiftName != "ROR")
4282 return MatchOperand_NoMatch;
Jim Grosbach833b9d32011-07-27 20:15:40 +00004283 Parser.Lex(); // Eat the operator.
4284
4285 // A '#' and a rotate amount.
Jim Grosbachef70e9b2011-12-09 22:25:03 +00004286 if (Parser.getTok().isNot(AsmToken::Hash) &&
4287 Parser.getTok().isNot(AsmToken::Dollar)) {
Jim Grosbach833b9d32011-07-27 20:15:40 +00004288 Error(Parser.getTok().getLoc(), "'#' expected");
4289 return MatchOperand_ParseFail;
4290 }
4291 Parser.Lex(); // Eat hash token.
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004292 SMLoc ExLoc = Parser.getTok().getLoc();
Jim Grosbach833b9d32011-07-27 20:15:40 +00004293
4294 const MCExpr *ShiftAmount;
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004295 SMLoc EndLoc;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00004296 if (getParser().parseExpression(ShiftAmount, EndLoc)) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004297 Error(ExLoc, "malformed rotate expression");
Jim Grosbach833b9d32011-07-27 20:15:40 +00004298 return MatchOperand_ParseFail;
4299 }
4300 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ShiftAmount);
4301 if (!CE) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004302 Error(ExLoc, "rotate amount must be an immediate");
Jim Grosbach833b9d32011-07-27 20:15:40 +00004303 return MatchOperand_ParseFail;
4304 }
4305
4306 int64_t Val = CE->getValue();
4307 // Shift amount must be in {0, 8, 16, 24} (0 is undocumented extension)
4308 // normally, zero is represented in asm by omitting the rotate operand
4309 // entirely.
4310 if (Val != 8 && Val != 16 && Val != 24 && Val != 0) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004311 Error(ExLoc, "'ror' rotate amount must be 8, 16, or 24");
Jim Grosbach833b9d32011-07-27 20:15:40 +00004312 return MatchOperand_ParseFail;
4313 }
4314
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004315 Operands.push_back(ARMOperand::CreateRotImm(Val, S, EndLoc));
Jim Grosbach833b9d32011-07-27 20:15:40 +00004316
4317 return MatchOperand_Success;
4318}
4319
David Blaikie960ea3f2014-06-08 16:18:35 +00004320ARMAsmParser::OperandMatchResultTy
4321ARMAsmParser::parseBitfield(OperandVector &Operands) {
Jim Grosbach864b6092011-07-28 21:34:26 +00004322 SMLoc S = Parser.getTok().getLoc();
4323 // The bitfield descriptor is really two operands, the LSB and the width.
Jim Grosbachef70e9b2011-12-09 22:25:03 +00004324 if (Parser.getTok().isNot(AsmToken::Hash) &&
4325 Parser.getTok().isNot(AsmToken::Dollar)) {
Jim Grosbach864b6092011-07-28 21:34:26 +00004326 Error(Parser.getTok().getLoc(), "'#' expected");
4327 return MatchOperand_ParseFail;
4328 }
4329 Parser.Lex(); // Eat hash token.
4330
4331 const MCExpr *LSBExpr;
4332 SMLoc E = Parser.getTok().getLoc();
Jim Grosbachd2037eb2013-02-20 22:21:35 +00004333 if (getParser().parseExpression(LSBExpr)) {
Jim Grosbach864b6092011-07-28 21:34:26 +00004334 Error(E, "malformed immediate expression");
4335 return MatchOperand_ParseFail;
4336 }
4337 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(LSBExpr);
4338 if (!CE) {
4339 Error(E, "'lsb' operand must be an immediate");
4340 return MatchOperand_ParseFail;
4341 }
4342
4343 int64_t LSB = CE->getValue();
4344 // The LSB must be in the range [0,31]
4345 if (LSB < 0 || LSB > 31) {
4346 Error(E, "'lsb' operand must be in the range [0,31]");
4347 return MatchOperand_ParseFail;
4348 }
4349 E = Parser.getTok().getLoc();
4350
4351 // Expect another immediate operand.
4352 if (Parser.getTok().isNot(AsmToken::Comma)) {
4353 Error(Parser.getTok().getLoc(), "too few operands");
4354 return MatchOperand_ParseFail;
4355 }
4356 Parser.Lex(); // Eat hash token.
Jim Grosbachef70e9b2011-12-09 22:25:03 +00004357 if (Parser.getTok().isNot(AsmToken::Hash) &&
4358 Parser.getTok().isNot(AsmToken::Dollar)) {
Jim Grosbach864b6092011-07-28 21:34:26 +00004359 Error(Parser.getTok().getLoc(), "'#' expected");
4360 return MatchOperand_ParseFail;
4361 }
4362 Parser.Lex(); // Eat hash token.
4363
4364 const MCExpr *WidthExpr;
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004365 SMLoc EndLoc;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00004366 if (getParser().parseExpression(WidthExpr, EndLoc)) {
Jim Grosbach864b6092011-07-28 21:34:26 +00004367 Error(E, "malformed immediate expression");
4368 return MatchOperand_ParseFail;
4369 }
4370 CE = dyn_cast<MCConstantExpr>(WidthExpr);
4371 if (!CE) {
4372 Error(E, "'width' operand must be an immediate");
4373 return MatchOperand_ParseFail;
4374 }
4375
4376 int64_t Width = CE->getValue();
4377 // The LSB must be in the range [1,32-lsb]
4378 if (Width < 1 || Width > 32 - LSB) {
4379 Error(E, "'width' operand must be in the range [1,32-lsb]");
4380 return MatchOperand_ParseFail;
4381 }
Jim Grosbach864b6092011-07-28 21:34:26 +00004382
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004383 Operands.push_back(ARMOperand::CreateBitfield(LSB, Width, S, EndLoc));
Jim Grosbach864b6092011-07-28 21:34:26 +00004384
4385 return MatchOperand_Success;
4386}
4387
David Blaikie960ea3f2014-06-08 16:18:35 +00004388ARMAsmParser::OperandMatchResultTy
4389ARMAsmParser::parsePostIdxReg(OperandVector &Operands) {
Jim Grosbachd3595712011-08-03 23:50:40 +00004390 // Check for a post-index addressing register operand. Specifically:
Jim Grosbachc320c852011-08-05 21:28:30 +00004391 // postidx_reg := '+' register {, shift}
4392 // | '-' register {, shift}
4393 // | register {, shift}
Jim Grosbachd3595712011-08-03 23:50:40 +00004394
4395 // This method must return MatchOperand_NoMatch without consuming any tokens
4396 // in the case where there is no match, as other alternatives take other
4397 // parse methods.
4398 AsmToken Tok = Parser.getTok();
4399 SMLoc S = Tok.getLoc();
4400 bool haveEaten = false;
Jim Grosbacha70fbfd52011-08-05 16:11:38 +00004401 bool isAdd = true;
Jim Grosbachd3595712011-08-03 23:50:40 +00004402 if (Tok.is(AsmToken::Plus)) {
4403 Parser.Lex(); // Eat the '+' token.
4404 haveEaten = true;
4405 } else if (Tok.is(AsmToken::Minus)) {
4406 Parser.Lex(); // Eat the '-' token.
Jim Grosbacha70fbfd52011-08-05 16:11:38 +00004407 isAdd = false;
Jim Grosbachd3595712011-08-03 23:50:40 +00004408 haveEaten = true;
4409 }
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004410
4411 SMLoc E = Parser.getTok().getEndLoc();
4412 int Reg = tryParseRegister();
Jim Grosbachd3595712011-08-03 23:50:40 +00004413 if (Reg == -1) {
4414 if (!haveEaten)
4415 return MatchOperand_NoMatch;
4416 Error(Parser.getTok().getLoc(), "register expected");
4417 return MatchOperand_ParseFail;
4418 }
Jim Grosbachd3595712011-08-03 23:50:40 +00004419
Jim Grosbachc320c852011-08-05 21:28:30 +00004420 ARM_AM::ShiftOpc ShiftTy = ARM_AM::no_shift;
4421 unsigned ShiftImm = 0;
Jim Grosbach3d0b3a32011-08-05 22:03:36 +00004422 if (Parser.getTok().is(AsmToken::Comma)) {
4423 Parser.Lex(); // Eat the ','.
4424 if (parseMemRegOffsetShift(ShiftTy, ShiftImm))
4425 return MatchOperand_ParseFail;
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004426
4427 // FIXME: Only approximates end...may include intervening whitespace.
4428 E = Parser.getTok().getLoc();
Jim Grosbach3d0b3a32011-08-05 22:03:36 +00004429 }
Jim Grosbachc320c852011-08-05 21:28:30 +00004430
4431 Operands.push_back(ARMOperand::CreatePostIdxReg(Reg, isAdd, ShiftTy,
4432 ShiftImm, S, E));
Jim Grosbachd3595712011-08-03 23:50:40 +00004433
4434 return MatchOperand_Success;
4435}
4436
David Blaikie960ea3f2014-06-08 16:18:35 +00004437ARMAsmParser::OperandMatchResultTy
4438ARMAsmParser::parseAM3Offset(OperandVector &Operands) {
Jim Grosbach1d9d5e92011-08-10 21:56:18 +00004439 // Check for a post-index addressing register operand. Specifically:
4440 // am3offset := '+' register
4441 // | '-' register
4442 // | register
4443 // | # imm
4444 // | # + imm
4445 // | # - imm
4446
4447 // This method must return MatchOperand_NoMatch without consuming any tokens
4448 // in the case where there is no match, as other alternatives take other
4449 // parse methods.
4450 AsmToken Tok = Parser.getTok();
4451 SMLoc S = Tok.getLoc();
4452
4453 // Do immediates first, as we always parse those if we have a '#'.
Jim Grosbachef70e9b2011-12-09 22:25:03 +00004454 if (Parser.getTok().is(AsmToken::Hash) ||
4455 Parser.getTok().is(AsmToken::Dollar)) {
Amaury de la Vieuvillebac917f2013-06-10 14:17:15 +00004456 Parser.Lex(); // Eat '#' or '$'.
Jim Grosbach1d9d5e92011-08-10 21:56:18 +00004457 // Explicitly look for a '-', as we need to encode negative zero
4458 // differently.
4459 bool isNegative = Parser.getTok().is(AsmToken::Minus);
4460 const MCExpr *Offset;
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004461 SMLoc E;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00004462 if (getParser().parseExpression(Offset, E))
Jim Grosbach1d9d5e92011-08-10 21:56:18 +00004463 return MatchOperand_ParseFail;
4464 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Offset);
4465 if (!CE) {
4466 Error(S, "constant expression expected");
4467 return MatchOperand_ParseFail;
4468 }
Jim Grosbach1d9d5e92011-08-10 21:56:18 +00004469 // Negative zero is encoded as the flag value INT32_MIN.
4470 int32_t Val = CE->getValue();
4471 if (isNegative && Val == 0)
4472 Val = INT32_MIN;
4473
4474 Operands.push_back(
4475 ARMOperand::CreateImm(MCConstantExpr::Create(Val, getContext()), S, E));
4476
4477 return MatchOperand_Success;
4478 }
4479
4480
4481 bool haveEaten = false;
4482 bool isAdd = true;
Jim Grosbach1d9d5e92011-08-10 21:56:18 +00004483 if (Tok.is(AsmToken::Plus)) {
4484 Parser.Lex(); // Eat the '+' token.
4485 haveEaten = true;
4486 } else if (Tok.is(AsmToken::Minus)) {
4487 Parser.Lex(); // Eat the '-' token.
4488 isAdd = false;
4489 haveEaten = true;
4490 }
Saleem Abdulrasool4ab6e732014-02-23 17:45:36 +00004491
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004492 Tok = Parser.getTok();
4493 int Reg = tryParseRegister();
Jim Grosbach1d9d5e92011-08-10 21:56:18 +00004494 if (Reg == -1) {
4495 if (!haveEaten)
4496 return MatchOperand_NoMatch;
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004497 Error(Tok.getLoc(), "register expected");
Jim Grosbach1d9d5e92011-08-10 21:56:18 +00004498 return MatchOperand_ParseFail;
4499 }
Jim Grosbach1d9d5e92011-08-10 21:56:18 +00004500
4501 Operands.push_back(ARMOperand::CreatePostIdxReg(Reg, isAdd, ARM_AM::no_shift,
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004502 0, S, Tok.getEndLoc()));
Jim Grosbach1d9d5e92011-08-10 21:56:18 +00004503
4504 return MatchOperand_Success;
4505}
4506
Tim Northovereb5e4d52013-07-22 09:06:12 +00004507/// Convert parsed operands to MCInst. Needed here because this instruction
4508/// only has two register operands, but multiplication is commutative so
4509/// assemblers should accept both "mul rD, rN, rD" and "mul rD, rD, rN".
David Blaikie960ea3f2014-06-08 16:18:35 +00004510void ARMAsmParser::cvtThumbMultiply(MCInst &Inst,
4511 const OperandVector &Operands) {
4512 ((ARMOperand &)*Operands[3]).addRegOperands(Inst, 1);
4513 ((ARMOperand &)*Operands[1]).addCCOutOperands(Inst, 1);
Jim Grosbach5a5ce632011-11-10 22:10:12 +00004514 // If we have a three-operand form, make sure to set Rn to be the operand
4515 // that isn't the same as Rd.
4516 unsigned RegOp = 4;
4517 if (Operands.size() == 6 &&
David Blaikie960ea3f2014-06-08 16:18:35 +00004518 ((ARMOperand &)*Operands[4]).getReg() ==
4519 ((ARMOperand &)*Operands[3]).getReg())
Jim Grosbach5a5ce632011-11-10 22:10:12 +00004520 RegOp = 5;
David Blaikie960ea3f2014-06-08 16:18:35 +00004521 ((ARMOperand &)*Operands[RegOp]).addRegOperands(Inst, 1);
Jim Grosbach5a5ce632011-11-10 22:10:12 +00004522 Inst.addOperand(Inst.getOperand(0));
David Blaikie960ea3f2014-06-08 16:18:35 +00004523 ((ARMOperand &)*Operands[2]).addCondCodeOperands(Inst, 2);
Jim Grosbach8e048492011-08-19 22:07:46 +00004524}
Jim Grosbachcd4dd252011-08-10 22:42:16 +00004525
David Blaikie960ea3f2014-06-08 16:18:35 +00004526void ARMAsmParser::cvtThumbBranches(MCInst &Inst,
4527 const OperandVector &Operands) {
Mihai Popaad18d3c2013-08-09 10:38:32 +00004528 int CondOp = -1, ImmOp = -1;
4529 switch(Inst.getOpcode()) {
4530 case ARM::tB:
4531 case ARM::tBcc: CondOp = 1; ImmOp = 2; break;
4532
4533 case ARM::t2B:
4534 case ARM::t2Bcc: CondOp = 1; ImmOp = 3; break;
4535
4536 default: llvm_unreachable("Unexpected instruction in cvtThumbBranches");
4537 }
4538 // first decide whether or not the branch should be conditional
4539 // by looking at it's location relative to an IT block
4540 if(inITBlock()) {
4541 // inside an IT block we cannot have any conditional branches. any
4542 // such instructions needs to be converted to unconditional form
4543 switch(Inst.getOpcode()) {
4544 case ARM::tBcc: Inst.setOpcode(ARM::tB); break;
4545 case ARM::t2Bcc: Inst.setOpcode(ARM::t2B); break;
4546 }
4547 } else {
4548 // outside IT blocks we can only have unconditional branches with AL
4549 // condition code or conditional branches with non-AL condition code
David Blaikie960ea3f2014-06-08 16:18:35 +00004550 unsigned Cond = static_cast<ARMOperand &>(*Operands[CondOp]).getCondCode();
Mihai Popaad18d3c2013-08-09 10:38:32 +00004551 switch(Inst.getOpcode()) {
4552 case ARM::tB:
4553 case ARM::tBcc:
4554 Inst.setOpcode(Cond == ARMCC::AL ? ARM::tB : ARM::tBcc);
4555 break;
4556 case ARM::t2B:
4557 case ARM::t2Bcc:
4558 Inst.setOpcode(Cond == ARMCC::AL ? ARM::t2B : ARM::t2Bcc);
4559 break;
4560 }
4561 }
Saleem Abdulrasool4ab6e732014-02-23 17:45:36 +00004562
Mihai Popaad18d3c2013-08-09 10:38:32 +00004563 // now decide on encoding size based on branch target range
4564 switch(Inst.getOpcode()) {
4565 // classify tB as either t2B or t1B based on range of immediate operand
4566 case ARM::tB: {
David Blaikie960ea3f2014-06-08 16:18:35 +00004567 ARMOperand &op = static_cast<ARMOperand &>(*Operands[ImmOp]);
4568 if (!op.isSignedOffset<11, 1>() && isThumbTwo())
Mihai Popaad18d3c2013-08-09 10:38:32 +00004569 Inst.setOpcode(ARM::t2B);
4570 break;
4571 }
4572 // classify tBcc as either t2Bcc or t1Bcc based on range of immediate operand
4573 case ARM::tBcc: {
David Blaikie960ea3f2014-06-08 16:18:35 +00004574 ARMOperand &op = static_cast<ARMOperand &>(*Operands[ImmOp]);
4575 if (!op.isSignedOffset<8, 1>() && isThumbTwo())
Mihai Popaad18d3c2013-08-09 10:38:32 +00004576 Inst.setOpcode(ARM::t2Bcc);
4577 break;
4578 }
4579 }
David Blaikie960ea3f2014-06-08 16:18:35 +00004580 ((ARMOperand &)*Operands[ImmOp]).addImmOperands(Inst, 1);
4581 ((ARMOperand &)*Operands[CondOp]).addCondCodeOperands(Inst, 2);
Mihai Popaad18d3c2013-08-09 10:38:32 +00004582}
4583
Bill Wendlinge18980a2010-11-06 22:36:58 +00004584/// Parse an ARM memory expression, return false if successful else return true
Kevin Enderby8be42bd2009-10-30 22:55:57 +00004585/// or an error. The first token must be a '[' when called.
David Blaikie960ea3f2014-06-08 16:18:35 +00004586bool ARMAsmParser::parseMemory(OperandVector &Operands) {
Sean Callanan7ad0ad02010-04-02 22:27:05 +00004587 SMLoc S, E;
Sean Callanan936b0d32010-01-19 21:44:56 +00004588 assert(Parser.getTok().is(AsmToken::LBrac) &&
Bill Wendling4f4bce02010-11-06 10:48:18 +00004589 "Token is not a Left Bracket");
Sean Callanan7ad0ad02010-04-02 22:27:05 +00004590 S = Parser.getTok().getLoc();
Sean Callanana83fd7d2010-01-19 20:27:46 +00004591 Parser.Lex(); // Eat left bracket token.
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00004592
Sean Callanan936b0d32010-01-19 21:44:56 +00004593 const AsmToken &BaseRegTok = Parser.getTok();
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00004594 int BaseRegNum = tryParseRegister();
Jim Grosbachd3595712011-08-03 23:50:40 +00004595 if (BaseRegNum == -1)
4596 return Error(BaseRegTok.getLoc(), "register expected");
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00004597
Kristof Beyls2efb59a2013-02-14 14:46:12 +00004598 // The next token must either be a comma, a colon or a closing bracket.
Daniel Dunbar1d5e9542011-01-18 05:34:17 +00004599 const AsmToken &Tok = Parser.getTok();
Kristof Beyls2efb59a2013-02-14 14:46:12 +00004600 if (!Tok.is(AsmToken::Colon) && !Tok.is(AsmToken::Comma) &&
4601 !Tok.is(AsmToken::RBrac))
Jim Grosbachd3595712011-08-03 23:50:40 +00004602 return Error(Tok.getLoc(), "malformed memory operand");
Daniel Dunbar1d5e9542011-01-18 05:34:17 +00004603
Jim Grosbachd3595712011-08-03 23:50:40 +00004604 if (Tok.is(AsmToken::RBrac)) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004605 E = Tok.getEndLoc();
Sean Callanana83fd7d2010-01-19 20:27:46 +00004606 Parser.Lex(); // Eat right bracket token.
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00004607
Craig Topper062a2ba2014-04-25 05:30:21 +00004608 Operands.push_back(ARMOperand::CreateMem(BaseRegNum, nullptr, 0,
4609 ARM_AM::no_shift, 0, 0, false,
4610 S, E));
Jim Grosbach32ff5582010-11-29 23:18:01 +00004611
Jim Grosbach40700e02011-09-19 18:42:21 +00004612 // If there's a pre-indexing writeback marker, '!', just add it as a token
4613 // operand. It's rather odd, but syntactically valid.
4614 if (Parser.getTok().is(AsmToken::Exclaim)) {
4615 Operands.push_back(ARMOperand::CreateToken("!",Parser.getTok().getLoc()));
4616 Parser.Lex(); // Eat the '!'.
4617 }
4618
Jim Grosbachd3595712011-08-03 23:50:40 +00004619 return false;
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00004620 }
Daniel Dunbarf5164f42011-01-18 05:34:24 +00004621
Kristof Beyls2efb59a2013-02-14 14:46:12 +00004622 assert((Tok.is(AsmToken::Colon) || Tok.is(AsmToken::Comma)) &&
4623 "Lost colon or comma in memory operand?!");
4624 if (Tok.is(AsmToken::Comma)) {
4625 Parser.Lex(); // Eat the comma.
4626 }
Daniel Dunbarf5164f42011-01-18 05:34:24 +00004627
Jim Grosbacha95ec992011-10-11 17:29:55 +00004628 // If we have a ':', it's an alignment specifier.
4629 if (Parser.getTok().is(AsmToken::Colon)) {
4630 Parser.Lex(); // Eat the ':'.
4631 E = Parser.getTok().getLoc();
Kevin Enderby488f20b2014-04-10 20:18:58 +00004632 SMLoc AlignmentLoc = Tok.getLoc();
Jim Grosbacha95ec992011-10-11 17:29:55 +00004633
4634 const MCExpr *Expr;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00004635 if (getParser().parseExpression(Expr))
Jim Grosbacha95ec992011-10-11 17:29:55 +00004636 return true;
4637
4638 // The expression has to be a constant. Memory references with relocations
4639 // don't come through here, as they use the <label> forms of the relevant
4640 // instructions.
4641 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr);
4642 if (!CE)
4643 return Error (E, "constant expression expected");
4644
4645 unsigned Align = 0;
4646 switch (CE->getValue()) {
4647 default:
Jim Grosbachcef98cd2011-12-19 18:31:43 +00004648 return Error(E,
4649 "alignment specifier must be 16, 32, 64, 128, or 256 bits");
4650 case 16: Align = 2; break;
4651 case 32: Align = 4; break;
Jim Grosbacha95ec992011-10-11 17:29:55 +00004652 case 64: Align = 8; break;
4653 case 128: Align = 16; break;
4654 case 256: Align = 32; break;
4655 }
4656
4657 // Now we should have the closing ']'
Jim Grosbacha95ec992011-10-11 17:29:55 +00004658 if (Parser.getTok().isNot(AsmToken::RBrac))
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004659 return Error(Parser.getTok().getLoc(), "']' expected");
4660 E = Parser.getTok().getEndLoc();
Jim Grosbacha95ec992011-10-11 17:29:55 +00004661 Parser.Lex(); // Eat right bracket token.
4662
4663 // Don't worry about range checking the value here. That's handled by
4664 // the is*() predicates.
Craig Topper062a2ba2014-04-25 05:30:21 +00004665 Operands.push_back(ARMOperand::CreateMem(BaseRegNum, nullptr, 0,
Jim Grosbacha95ec992011-10-11 17:29:55 +00004666 ARM_AM::no_shift, 0, Align,
Kevin Enderby488f20b2014-04-10 20:18:58 +00004667 false, S, E, AlignmentLoc));
Jim Grosbacha95ec992011-10-11 17:29:55 +00004668
4669 // If there's a pre-indexing writeback marker, '!', just add it as a token
4670 // operand.
4671 if (Parser.getTok().is(AsmToken::Exclaim)) {
4672 Operands.push_back(ARMOperand::CreateToken("!",Parser.getTok().getLoc()));
4673 Parser.Lex(); // Eat the '!'.
4674 }
4675
4676 return false;
4677 }
4678
4679 // If we have a '#', it's an immediate offset, else assume it's a register
Jim Grosbach8279c182011-11-15 22:14:41 +00004680 // offset. Be friendly and also accept a plain integer (without a leading
4681 // hash) for gas compatibility.
4682 if (Parser.getTok().is(AsmToken::Hash) ||
Jim Grosbachef70e9b2011-12-09 22:25:03 +00004683 Parser.getTok().is(AsmToken::Dollar) ||
Jim Grosbach8279c182011-11-15 22:14:41 +00004684 Parser.getTok().is(AsmToken::Integer)) {
Jim Grosbachef70e9b2011-12-09 22:25:03 +00004685 if (Parser.getTok().isNot(AsmToken::Integer))
Amaury de la Vieuvillebac917f2013-06-10 14:17:15 +00004686 Parser.Lex(); // Eat '#' or '$'.
Jim Grosbachd3595712011-08-03 23:50:40 +00004687 E = Parser.getTok().getLoc();
Daniel Dunbarf5164f42011-01-18 05:34:24 +00004688
Owen Anderson967674d2011-08-29 19:36:44 +00004689 bool isNegative = getParser().getTok().is(AsmToken::Minus);
Jim Grosbachd3595712011-08-03 23:50:40 +00004690 const MCExpr *Offset;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00004691 if (getParser().parseExpression(Offset))
Kevin Enderby8be42bd2009-10-30 22:55:57 +00004692 return true;
Jim Grosbachd3595712011-08-03 23:50:40 +00004693
4694 // The expression has to be a constant. Memory references with relocations
4695 // don't come through here, as they use the <label> forms of the relevant
4696 // instructions.
4697 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Offset);
4698 if (!CE)
4699 return Error (E, "constant expression expected");
4700
Owen Anderson967674d2011-08-29 19:36:44 +00004701 // If the constant was #-0, represent it as INT32_MIN.
4702 int32_t Val = CE->getValue();
4703 if (isNegative && Val == 0)
4704 CE = MCConstantExpr::Create(INT32_MIN, getContext());
4705
Jim Grosbachd3595712011-08-03 23:50:40 +00004706 // Now we should have the closing ']'
Jim Grosbachd3595712011-08-03 23:50:40 +00004707 if (Parser.getTok().isNot(AsmToken::RBrac))
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004708 return Error(Parser.getTok().getLoc(), "']' expected");
4709 E = Parser.getTok().getEndLoc();
Jim Grosbachd3595712011-08-03 23:50:40 +00004710 Parser.Lex(); // Eat right bracket token.
4711
4712 // Don't worry about range checking the value here. That's handled by
4713 // the is*() predicates.
4714 Operands.push_back(ARMOperand::CreateMem(BaseRegNum, CE, 0,
Jim Grosbacha95ec992011-10-11 17:29:55 +00004715 ARM_AM::no_shift, 0, 0,
4716 false, S, E));
Jim Grosbachd3595712011-08-03 23:50:40 +00004717
4718 // If there's a pre-indexing writeback marker, '!', just add it as a token
4719 // operand.
4720 if (Parser.getTok().is(AsmToken::Exclaim)) {
4721 Operands.push_back(ARMOperand::CreateToken("!",Parser.getTok().getLoc()));
4722 Parser.Lex(); // Eat the '!'.
4723 }
4724
4725 return false;
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00004726 }
Jim Grosbachd3595712011-08-03 23:50:40 +00004727
4728 // The register offset is optionally preceded by a '+' or '-'
4729 bool isNegative = false;
4730 if (Parser.getTok().is(AsmToken::Minus)) {
4731 isNegative = true;
4732 Parser.Lex(); // Eat the '-'.
4733 } else if (Parser.getTok().is(AsmToken::Plus)) {
4734 // Nothing to do.
4735 Parser.Lex(); // Eat the '+'.
4736 }
4737
4738 E = Parser.getTok().getLoc();
4739 int OffsetRegNum = tryParseRegister();
4740 if (OffsetRegNum == -1)
4741 return Error(E, "register expected");
4742
4743 // If there's a shift operator, handle it.
4744 ARM_AM::ShiftOpc ShiftType = ARM_AM::no_shift;
Jim Grosbach3d0b3a32011-08-05 22:03:36 +00004745 unsigned ShiftImm = 0;
Jim Grosbachd3595712011-08-03 23:50:40 +00004746 if (Parser.getTok().is(AsmToken::Comma)) {
4747 Parser.Lex(); // Eat the ','.
Jim Grosbach3d0b3a32011-08-05 22:03:36 +00004748 if (parseMemRegOffsetShift(ShiftType, ShiftImm))
Jim Grosbachd3595712011-08-03 23:50:40 +00004749 return true;
4750 }
4751
4752 // Now we should have the closing ']'
Jim Grosbachd3595712011-08-03 23:50:40 +00004753 if (Parser.getTok().isNot(AsmToken::RBrac))
Jordan Rosee8f1eae2013-01-07 19:00:49 +00004754 return Error(Parser.getTok().getLoc(), "']' expected");
4755 E = Parser.getTok().getEndLoc();
Jim Grosbachd3595712011-08-03 23:50:40 +00004756 Parser.Lex(); // Eat right bracket token.
4757
Craig Topper062a2ba2014-04-25 05:30:21 +00004758 Operands.push_back(ARMOperand::CreateMem(BaseRegNum, nullptr, OffsetRegNum,
Jim Grosbacha95ec992011-10-11 17:29:55 +00004759 ShiftType, ShiftImm, 0, isNegative,
Jim Grosbachd3595712011-08-03 23:50:40 +00004760 S, E));
4761
Jim Grosbachc320c852011-08-05 21:28:30 +00004762 // If there's a pre-indexing writeback marker, '!', just add it as a token
4763 // operand.
4764 if (Parser.getTok().is(AsmToken::Exclaim)) {
4765 Operands.push_back(ARMOperand::CreateToken("!",Parser.getTok().getLoc()));
4766 Parser.Lex(); // Eat the '!'.
4767 }
Jim Grosbachd3595712011-08-03 23:50:40 +00004768
Kevin Enderby8be42bd2009-10-30 22:55:57 +00004769 return false;
4770}
4771
Jim Grosbachd3595712011-08-03 23:50:40 +00004772/// parseMemRegOffsetShift - one of these two:
Kevin Enderby8be42bd2009-10-30 22:55:57 +00004773/// ( lsl | lsr | asr | ror ) , # shift_amount
4774/// rrx
Jim Grosbachd3595712011-08-03 23:50:40 +00004775/// return true if it parses a shift otherwise it returns false.
4776bool ARMAsmParser::parseMemRegOffsetShift(ARM_AM::ShiftOpc &St,
4777 unsigned &Amount) {
4778 SMLoc Loc = Parser.getTok().getLoc();
Sean Callanan936b0d32010-01-19 21:44:56 +00004779 const AsmToken &Tok = Parser.getTok();
Kevin Enderby8be42bd2009-10-30 22:55:57 +00004780 if (Tok.isNot(AsmToken::Identifier))
4781 return true;
Benjamin Kramer92d89982010-07-14 22:38:02 +00004782 StringRef ShiftName = Tok.getString();
Jim Grosbach3b559ff2011-12-07 23:40:58 +00004783 if (ShiftName == "lsl" || ShiftName == "LSL" ||
4784 ShiftName == "asl" || ShiftName == "ASL")
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00004785 St = ARM_AM::lsl;
Kevin Enderby8be42bd2009-10-30 22:55:57 +00004786 else if (ShiftName == "lsr" || ShiftName == "LSR")
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00004787 St = ARM_AM::lsr;
Kevin Enderby8be42bd2009-10-30 22:55:57 +00004788 else if (ShiftName == "asr" || ShiftName == "ASR")
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00004789 St = ARM_AM::asr;
Kevin Enderby8be42bd2009-10-30 22:55:57 +00004790 else if (ShiftName == "ror" || ShiftName == "ROR")
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00004791 St = ARM_AM::ror;
Kevin Enderby8be42bd2009-10-30 22:55:57 +00004792 else if (ShiftName == "rrx" || ShiftName == "RRX")
Owen Anderson1d2f5ce2011-03-18 22:50:18 +00004793 St = ARM_AM::rrx;
Kevin Enderby8be42bd2009-10-30 22:55:57 +00004794 else
Jim Grosbachd3595712011-08-03 23:50:40 +00004795 return Error(Loc, "illegal shift operator");
Sean Callanana83fd7d2010-01-19 20:27:46 +00004796 Parser.Lex(); // Eat shift type token.
Kevin Enderby8be42bd2009-10-30 22:55:57 +00004797
Jim Grosbachd3595712011-08-03 23:50:40 +00004798 // rrx stands alone.
4799 Amount = 0;
4800 if (St != ARM_AM::rrx) {
4801 Loc = Parser.getTok().getLoc();
4802 // A '#' and a shift amount.
4803 const AsmToken &HashTok = Parser.getTok();
Jim Grosbachef70e9b2011-12-09 22:25:03 +00004804 if (HashTok.isNot(AsmToken::Hash) &&
4805 HashTok.isNot(AsmToken::Dollar))
Jim Grosbachd3595712011-08-03 23:50:40 +00004806 return Error(HashTok.getLoc(), "'#' expected");
4807 Parser.Lex(); // Eat hash token.
Kevin Enderby8be42bd2009-10-30 22:55:57 +00004808
Jim Grosbachd3595712011-08-03 23:50:40 +00004809 const MCExpr *Expr;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00004810 if (getParser().parseExpression(Expr))
Jim Grosbachd3595712011-08-03 23:50:40 +00004811 return true;
4812 // Range check the immediate.
4813 // lsl, ror: 0 <= imm <= 31
4814 // lsr, asr: 0 <= imm <= 32
4815 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr);
4816 if (!CE)
4817 return Error(Loc, "shift amount must be an immediate");
4818 int64_t Imm = CE->getValue();
4819 if (Imm < 0 ||
4820 ((St == ARM_AM::lsl || St == ARM_AM::ror) && Imm > 31) ||
4821 ((St == ARM_AM::lsr || St == ARM_AM::asr) && Imm > 32))
4822 return Error(Loc, "immediate shift value out of range");
Tim Northover0c97e762012-09-22 11:18:12 +00004823 // If <ShiftTy> #0, turn it into a no_shift.
4824 if (Imm == 0)
4825 St = ARM_AM::lsl;
4826 // For consistency, treat lsr #32 and asr #32 as having immediate value 0.
4827 if (Imm == 32)
4828 Imm = 0;
Jim Grosbachd3595712011-08-03 23:50:40 +00004829 Amount = Imm;
4830 }
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00004831
4832 return false;
4833}
4834
Jim Grosbache7fbce72011-10-03 23:38:36 +00004835/// parseFPImm - A floating point immediate expression operand.
David Blaikie960ea3f2014-06-08 16:18:35 +00004836ARMAsmParser::OperandMatchResultTy
4837ARMAsmParser::parseFPImm(OperandVector &Operands) {
Jim Grosbacha9d36fb2012-01-20 18:09:51 +00004838 // Anything that can accept a floating point constant as an operand
Jim Grosbachd2037eb2013-02-20 22:21:35 +00004839 // needs to go through here, as the regular parseExpression is
Jim Grosbacha9d36fb2012-01-20 18:09:51 +00004840 // integer only.
4841 //
4842 // This routine still creates a generic Immediate operand, containing
4843 // a bitcast of the 64-bit floating point value. The various operands
4844 // that accept floats can check whether the value is valid for them
4845 // via the standard is*() predicates.
4846
Jim Grosbache7fbce72011-10-03 23:38:36 +00004847 SMLoc S = Parser.getTok().getLoc();
4848
Jim Grosbachef70e9b2011-12-09 22:25:03 +00004849 if (Parser.getTok().isNot(AsmToken::Hash) &&
4850 Parser.getTok().isNot(AsmToken::Dollar))
Jim Grosbache7fbce72011-10-03 23:38:36 +00004851 return MatchOperand_NoMatch;
Jim Grosbach741cd732011-10-17 22:26:03 +00004852
4853 // Disambiguate the VMOV forms that can accept an FP immediate.
4854 // vmov.f32 <sreg>, #imm
4855 // vmov.f64 <dreg>, #imm
4856 // vmov.f32 <dreg>, #imm @ vector f32x2
4857 // vmov.f32 <qreg>, #imm @ vector f32x4
4858 //
4859 // There are also the NEON VMOV instructions which expect an
4860 // integer constant. Make sure we don't try to parse an FPImm
4861 // for these:
4862 // vmov.i{8|16|32|64} <dreg|qreg>, #imm
David Blaikie960ea3f2014-06-08 16:18:35 +00004863 ARMOperand &TyOp = static_cast<ARMOperand &>(*Operands[2]);
4864 bool isVmovf = TyOp.isToken() &&
4865 (TyOp.getToken() == ".f32" || TyOp.getToken() == ".f64");
4866 ARMOperand &Mnemonic = static_cast<ARMOperand &>(*Operands[0]);
4867 bool isFconst = Mnemonic.isToken() && (Mnemonic.getToken() == "fconstd" ||
4868 Mnemonic.getToken() == "fconsts");
David Peixottoa872e0e2014-01-07 18:19:23 +00004869 if (!(isVmovf || isFconst))
Jim Grosbach741cd732011-10-17 22:26:03 +00004870 return MatchOperand_NoMatch;
4871
Amaury de la Vieuvillebac917f2013-06-10 14:17:15 +00004872 Parser.Lex(); // Eat '#' or '$'.
Jim Grosbache7fbce72011-10-03 23:38:36 +00004873
4874 // Handle negation, as that still comes through as a separate token.
4875 bool isNegative = false;
4876 if (Parser.getTok().is(AsmToken::Minus)) {
4877 isNegative = true;
4878 Parser.Lex();
4879 }
4880 const AsmToken &Tok = Parser.getTok();
Jim Grosbach235c8d22012-01-19 02:47:30 +00004881 SMLoc Loc = Tok.getLoc();
David Peixottoa872e0e2014-01-07 18:19:23 +00004882 if (Tok.is(AsmToken::Real) && isVmovf) {
Jim Grosbacha9d36fb2012-01-20 18:09:51 +00004883 APFloat RealVal(APFloat::IEEEsingle, Tok.getString());
Jim Grosbache7fbce72011-10-03 23:38:36 +00004884 uint64_t IntVal = RealVal.bitcastToAPInt().getZExtValue();
4885 // If we had a '-' in front, toggle the sign bit.
Jim Grosbacha9d36fb2012-01-20 18:09:51 +00004886 IntVal ^= (uint64_t)isNegative << 31;
Jim Grosbache7fbce72011-10-03 23:38:36 +00004887 Parser.Lex(); // Eat the token.
Jim Grosbacha9d36fb2012-01-20 18:09:51 +00004888 Operands.push_back(ARMOperand::CreateImm(
4889 MCConstantExpr::Create(IntVal, getContext()),
4890 S, Parser.getTok().getLoc()));
Jim Grosbache7fbce72011-10-03 23:38:36 +00004891 return MatchOperand_Success;
4892 }
Jim Grosbacha9d36fb2012-01-20 18:09:51 +00004893 // Also handle plain integers. Instructions which allow floating point
4894 // immediates also allow a raw encoded 8-bit value.
David Peixottoa872e0e2014-01-07 18:19:23 +00004895 if (Tok.is(AsmToken::Integer) && isFconst) {
Jim Grosbache7fbce72011-10-03 23:38:36 +00004896 int64_t Val = Tok.getIntVal();
4897 Parser.Lex(); // Eat the token.
4898 if (Val > 255 || Val < 0) {
Jim Grosbach235c8d22012-01-19 02:47:30 +00004899 Error(Loc, "encoded floating point value out of range");
Jim Grosbache7fbce72011-10-03 23:38:36 +00004900 return MatchOperand_ParseFail;
4901 }
David Peixottoa872e0e2014-01-07 18:19:23 +00004902 float RealVal = ARM_AM::getFPImmFloat(Val);
4903 Val = APFloat(RealVal).bitcastToAPInt().getZExtValue();
4904
Jim Grosbacha9d36fb2012-01-20 18:09:51 +00004905 Operands.push_back(ARMOperand::CreateImm(
4906 MCConstantExpr::Create(Val, getContext()), S,
4907 Parser.getTok().getLoc()));
Jim Grosbache7fbce72011-10-03 23:38:36 +00004908 return MatchOperand_Success;
4909 }
4910
Jim Grosbach235c8d22012-01-19 02:47:30 +00004911 Error(Loc, "invalid floating point immediate");
Jim Grosbache7fbce72011-10-03 23:38:36 +00004912 return MatchOperand_ParseFail;
4913}
Jim Grosbacha9d36fb2012-01-20 18:09:51 +00004914
Kevin Enderby8be42bd2009-10-30 22:55:57 +00004915/// Parse a arm instruction operand. For now this parses the operand regardless
4916/// of the mnemonic.
David Blaikie960ea3f2014-06-08 16:18:35 +00004917bool ARMAsmParser::parseOperand(OperandVector &Operands, StringRef Mnemonic) {
Sean Callanan7ad0ad02010-04-02 22:27:05 +00004918 SMLoc S, E;
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00004919
4920 // Check if the current operand has a custom associated parser, if so, try to
4921 // custom parse the operand, or fallback to the general approach.
Jim Grosbach861e49c2011-02-12 01:34:40 +00004922 OperandMatchResultTy ResTy = MatchOperandParserImpl(Operands, Mnemonic);
4923 if (ResTy == MatchOperand_Success)
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00004924 return false;
Jim Grosbach861e49c2011-02-12 01:34:40 +00004925 // If there wasn't a custom match, try the generic matcher below. Otherwise,
4926 // there was a match, but an error occurred, in which case, just return that
4927 // the operand parsing failed.
4928 if (ResTy == MatchOperand_ParseFail)
4929 return true;
Bruno Cardoso Lopesc9253b42011-02-07 21:41:25 +00004930
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00004931 switch (getLexer().getKind()) {
Bill Wendlingee7f1f92010-11-06 21:42:12 +00004932 default:
4933 Error(Parser.getTok().getLoc(), "unexpected token in operand");
Bill Wendling2063b842010-11-18 23:43:05 +00004934 return true;
Jim Grosbachbb24c592011-07-13 18:49:30 +00004935 case AsmToken::Identifier: {
Chad Rosierb162a5c2013-03-19 23:44:03 +00004936 // If we've seen a branch mnemonic, the next operand must be a label. This
4937 // is true even if the label is a register name. So "br r1" means branch to
4938 // label "r1".
4939 bool ExpectLabel = Mnemonic == "b" || Mnemonic == "bl";
4940 if (!ExpectLabel) {
4941 if (!tryParseRegisterWithWriteBack(Operands))
4942 return false;
4943 int Res = tryParseShiftRegister(Operands);
4944 if (Res == 0) // success
4945 return false;
4946 else if (Res == -1) // irrecoverable error
4947 return true;
4948 // If this is VMRS, check for the apsr_nzcv operand.
4949 if (Mnemonic == "vmrs" &&
4950 Parser.getTok().getString().equals_lower("apsr_nzcv")) {
4951 S = Parser.getTok().getLoc();
4952 Parser.Lex();
4953 Operands.push_back(ARMOperand::CreateToken("APSR_nzcv", S));
4954 return false;
4955 }
Jim Grosbach4ab23b52011-10-03 21:12:43 +00004956 }
Owen Andersonc3c7f5d2011-01-13 21:46:02 +00004957
4958 // Fall though for the Identifier case that is not a register or a
4959 // special name.
Jim Grosbachbb24c592011-07-13 18:49:30 +00004960 }
Jim Grosbach4e380352011-10-26 21:14:08 +00004961 case AsmToken::LParen: // parenthesized expressions like (_strcmp-4)
Kevin Enderbyb084be92011-01-13 20:32:36 +00004962 case AsmToken::Integer: // things like 1f and 2b as a branch targets
Jim Grosbach5c6b6342011-11-01 22:38:31 +00004963 case AsmToken::String: // quoted label names.
Kevin Enderbyb084be92011-01-13 20:32:36 +00004964 case AsmToken::Dot: { // . as a branch target
Kevin Enderby146dcf22009-10-15 20:48:48 +00004965 // This was not a register so parse other operands that start with an
4966 // identifier (like labels) as expressions and create them as immediates.
4967 const MCExpr *IdVal;
Sean Callanan7ad0ad02010-04-02 22:27:05 +00004968 S = Parser.getTok().getLoc();
Jim Grosbachd2037eb2013-02-20 22:21:35 +00004969 if (getParser().parseExpression(IdVal))
Bill Wendling2063b842010-11-18 23:43:05 +00004970 return true;
Sean Callanan7ad0ad02010-04-02 22:27:05 +00004971 E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
Bill Wendling2063b842010-11-18 23:43:05 +00004972 Operands.push_back(ARMOperand::CreateImm(IdVal, S, E));
4973 return false;
4974 }
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00004975 case AsmToken::LBrac:
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00004976 return parseMemory(Operands);
Kevin Enderbya2b99102009-10-09 21:12:28 +00004977 case AsmToken::LCurly:
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00004978 return parseRegisterList(Operands);
Jim Grosbachef70e9b2011-12-09 22:25:03 +00004979 case AsmToken::Dollar:
Owen Andersonf02d98d2011-08-29 17:17:09 +00004980 case AsmToken::Hash: {
Kevin Enderby3a80dac2009-10-13 23:33:38 +00004981 // #42 -> immediate.
Sean Callanan7ad0ad02010-04-02 22:27:05 +00004982 S = Parser.getTok().getLoc();
Sean Callanana83fd7d2010-01-19 20:27:46 +00004983 Parser.Lex();
Jim Grosbach003607f2012-04-16 21:18:46 +00004984
4985 if (Parser.getTok().isNot(AsmToken::Colon)) {
4986 bool isNegative = Parser.getTok().is(AsmToken::Minus);
4987 const MCExpr *ImmVal;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00004988 if (getParser().parseExpression(ImmVal))
Jim Grosbach003607f2012-04-16 21:18:46 +00004989 return true;
4990 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ImmVal);
4991 if (CE) {
4992 int32_t Val = CE->getValue();
4993 if (isNegative && Val == 0)
4994 ImmVal = MCConstantExpr::Create(INT32_MIN, getContext());
4995 }
4996 E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
4997 Operands.push_back(ARMOperand::CreateImm(ImmVal, S, E));
Jim Grosbach9be2d712013-02-23 00:52:09 +00004998
4999 // There can be a trailing '!' on operands that we want as a separate
Saleem Abdulrasool83e37702013-12-28 03:07:12 +00005000 // '!' Token operand. Handle that here. For example, the compatibility
Jim Grosbach9be2d712013-02-23 00:52:09 +00005001 // alias for 'srsdb sp!, #imm' is 'srsdb #imm!'.
5002 if (Parser.getTok().is(AsmToken::Exclaim)) {
5003 Operands.push_back(ARMOperand::CreateToken(Parser.getTok().getString(),
5004 Parser.getTok().getLoc()));
5005 Parser.Lex(); // Eat exclaim token
5006 }
Jim Grosbach003607f2012-04-16 21:18:46 +00005007 return false;
Owen Andersonf02d98d2011-08-29 17:17:09 +00005008 }
Jim Grosbach003607f2012-04-16 21:18:46 +00005009 // w/ a ':' after the '#', it's just like a plain ':'.
5010 // FALLTHROUGH
Owen Andersonf02d98d2011-08-29 17:17:09 +00005011 }
Jason W Kim1f7bc072011-01-11 23:53:41 +00005012 case AsmToken::Colon: {
5013 // ":lower16:" and ":upper16:" expression prefixes
Evan Cheng965b3c72011-01-13 07:58:56 +00005014 // FIXME: Check it's an expression prefix,
5015 // e.g. (FOO - :lower16:BAR) isn't legal.
5016 ARMMCExpr::VariantKind RefKind;
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00005017 if (parsePrefix(RefKind))
Jason W Kim1f7bc072011-01-11 23:53:41 +00005018 return true;
5019
Evan Cheng965b3c72011-01-13 07:58:56 +00005020 const MCExpr *SubExprVal;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00005021 if (getParser().parseExpression(SubExprVal))
Jason W Kim1f7bc072011-01-11 23:53:41 +00005022 return true;
5023
Evan Cheng965b3c72011-01-13 07:58:56 +00005024 const MCExpr *ExprVal = ARMMCExpr::Create(RefKind, SubExprVal,
Jim Grosbach9659ed92012-09-21 00:26:53 +00005025 getContext());
Jason W Kim1f7bc072011-01-11 23:53:41 +00005026 E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
Evan Cheng965b3c72011-01-13 07:58:56 +00005027 Operands.push_back(ARMOperand::CreateImm(ExprVal, S, E));
Jason W Kim1f7bc072011-01-11 23:53:41 +00005028 return false;
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00005029 }
David Peixottoe407d092013-12-19 18:12:36 +00005030 case AsmToken::Equal: {
5031 if (Mnemonic != "ldr") // only parse for ldr pseudo (e.g. ldr r0, =val)
5032 return Error(Parser.getTok().getLoc(), "unexpected token in operand");
5033
David Peixottoe407d092013-12-19 18:12:36 +00005034 Parser.Lex(); // Eat '='
5035 const MCExpr *SubExprVal;
5036 if (getParser().parseExpression(SubExprVal))
5037 return true;
5038 E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
5039
David Peixottob9b73622014-02-04 17:22:40 +00005040 const MCExpr *CPLoc = getTargetStreamer().addConstantPoolEntry(SubExprVal);
David Peixottoe407d092013-12-19 18:12:36 +00005041 Operands.push_back(ARMOperand::CreateImm(CPLoc, S, E));
5042 return false;
5043 }
Jason W Kim1f7bc072011-01-11 23:53:41 +00005044 }
5045}
5046
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00005047// parsePrefix - Parse ARM 16-bit relocations expression prefix, i.e.
Evan Cheng965b3c72011-01-13 07:58:56 +00005048// :lower16: and :upper16:.
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00005049bool ARMAsmParser::parsePrefix(ARMMCExpr::VariantKind &RefKind) {
Evan Cheng965b3c72011-01-13 07:58:56 +00005050 RefKind = ARMMCExpr::VK_ARM_None;
Jason W Kim1f7bc072011-01-11 23:53:41 +00005051
Saleem Abdulrasool435f4562014-01-10 04:38:40 +00005052 // consume an optional '#' (GNU compatibility)
5053 if (getLexer().is(AsmToken::Hash))
5054 Parser.Lex();
5055
Jason W Kim1f7bc072011-01-11 23:53:41 +00005056 // :lower16: and :upper16: modifiers
Jason W Kim93229972011-01-13 00:27:00 +00005057 assert(getLexer().is(AsmToken::Colon) && "expected a :");
Jason W Kim1f7bc072011-01-11 23:53:41 +00005058 Parser.Lex(); // Eat ':'
5059
5060 if (getLexer().isNot(AsmToken::Identifier)) {
5061 Error(Parser.getTok().getLoc(), "expected prefix identifier in operand");
5062 return true;
5063 }
5064
5065 StringRef IDVal = Parser.getTok().getIdentifier();
5066 if (IDVal == "lower16") {
Evan Cheng965b3c72011-01-13 07:58:56 +00005067 RefKind = ARMMCExpr::VK_ARM_LO16;
Jason W Kim1f7bc072011-01-11 23:53:41 +00005068 } else if (IDVal == "upper16") {
Evan Cheng965b3c72011-01-13 07:58:56 +00005069 RefKind = ARMMCExpr::VK_ARM_HI16;
Jason W Kim1f7bc072011-01-11 23:53:41 +00005070 } else {
5071 Error(Parser.getTok().getLoc(), "unexpected prefix in operand");
5072 return true;
5073 }
5074 Parser.Lex();
5075
5076 if (getLexer().isNot(AsmToken::Colon)) {
5077 Error(Parser.getTok().getLoc(), "unexpected token after prefix");
5078 return true;
5079 }
5080 Parser.Lex(); // Eat the last ':'
5081 return false;
5082}
5083
Daniel Dunbar9d944b32011-01-11 15:59:50 +00005084/// \brief Given a mnemonic, split out possible predication code and carry
5085/// setting letters to form a canonical mnemonic and flags.
5086//
Daniel Dunbar876bb0182011-01-10 12:24:52 +00005087// FIXME: Would be nice to autogen this.
Jim Grosbach3d1eac82011-08-26 21:43:41 +00005088// FIXME: This is a bit of a maze of special cases.
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00005089StringRef ARMAsmParser::splitMnemonic(StringRef Mnemonic,
Jim Grosbach5cc3b4c2011-07-19 20:10:31 +00005090 unsigned &PredicationCode,
5091 bool &CarrySetting,
Jim Grosbach3d1eac82011-08-26 21:43:41 +00005092 unsigned &ProcessorIMod,
5093 StringRef &ITMask) {
Daniel Dunbar9d944b32011-01-11 15:59:50 +00005094 PredicationCode = ARMCC::AL;
5095 CarrySetting = false;
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00005096 ProcessorIMod = 0;
Daniel Dunbar9d944b32011-01-11 15:59:50 +00005097
Daniel Dunbar876bb0182011-01-10 12:24:52 +00005098 // Ignore some mnemonics we know aren't predicated forms.
Daniel Dunbar9d944b32011-01-11 15:59:50 +00005099 //
5100 // FIXME: Would be nice to autogen this.
Jim Grosbach5cc3b4c2011-07-19 20:10:31 +00005101 if ((Mnemonic == "movs" && isThumb()) ||
5102 Mnemonic == "teq" || Mnemonic == "vceq" || Mnemonic == "svc" ||
5103 Mnemonic == "mls" || Mnemonic == "smmls" || Mnemonic == "vcls" ||
5104 Mnemonic == "vmls" || Mnemonic == "vnmls" || Mnemonic == "vacge" ||
5105 Mnemonic == "vcge" || Mnemonic == "vclt" || Mnemonic == "vacgt" ||
Richard Barton8d519fe2013-09-05 14:14:19 +00005106 Mnemonic == "vaclt" || Mnemonic == "vacle" || Mnemonic == "hlt" ||
Jim Grosbach5cc3b4c2011-07-19 20:10:31 +00005107 Mnemonic == "vcgt" || Mnemonic == "vcle" || Mnemonic == "smlal" ||
5108 Mnemonic == "umaal" || Mnemonic == "umlal" || Mnemonic == "vabal" ||
Jim Grosbache16acac2011-12-19 19:43:50 +00005109 Mnemonic == "vmlal" || Mnemonic == "vpadal" || Mnemonic == "vqdmlal" ||
Joey Gouly2efaa732013-07-06 20:50:18 +00005110 Mnemonic == "fmuls" || Mnemonic == "vmaxnm" || Mnemonic == "vminnm" ||
Joey Gouly0f12aa22013-07-09 11:26:18 +00005111 Mnemonic == "vcvta" || Mnemonic == "vcvtn" || Mnemonic == "vcvtp" ||
5112 Mnemonic == "vcvtm" || Mnemonic == "vrinta" || Mnemonic == "vrintn" ||
5113 Mnemonic == "vrintp" || Mnemonic == "vrintm" || Mnemonic.startswith("vsel"))
Daniel Dunbar9d944b32011-01-11 15:59:50 +00005114 return Mnemonic;
Daniel Dunbar75d26be2010-08-11 06:37:16 +00005115
Jim Grosbacha9a3f0a2011-07-11 17:09:57 +00005116 // First, split out any predication code. Ignore mnemonics we know aren't
5117 // predicated but do have a carry-set and so weren't caught above.
Jim Grosbach8d114902011-07-20 18:20:31 +00005118 if (Mnemonic != "adcs" && Mnemonic != "bics" && Mnemonic != "movs" &&
Jim Grosbach0c398b92011-07-27 21:58:11 +00005119 Mnemonic != "muls" && Mnemonic != "smlals" && Mnemonic != "smulls" &&
Jim Grosbach3636be32011-08-22 23:55:58 +00005120 Mnemonic != "umlals" && Mnemonic != "umulls" && Mnemonic != "lsls" &&
Jim Grosbachf6d5d602011-09-01 18:22:13 +00005121 Mnemonic != "sbcs" && Mnemonic != "rscs") {
Jim Grosbacha9a3f0a2011-07-11 17:09:57 +00005122 unsigned CC = StringSwitch<unsigned>(Mnemonic.substr(Mnemonic.size()-2))
5123 .Case("eq", ARMCC::EQ)
5124 .Case("ne", ARMCC::NE)
5125 .Case("hs", ARMCC::HS)
5126 .Case("cs", ARMCC::HS)
5127 .Case("lo", ARMCC::LO)
5128 .Case("cc", ARMCC::LO)
5129 .Case("mi", ARMCC::MI)
5130 .Case("pl", ARMCC::PL)
5131 .Case("vs", ARMCC::VS)
5132 .Case("vc", ARMCC::VC)
5133 .Case("hi", ARMCC::HI)
5134 .Case("ls", ARMCC::LS)
5135 .Case("ge", ARMCC::GE)
5136 .Case("lt", ARMCC::LT)
5137 .Case("gt", ARMCC::GT)
5138 .Case("le", ARMCC::LE)
5139 .Case("al", ARMCC::AL)
5140 .Default(~0U);
5141 if (CC != ~0U) {
5142 Mnemonic = Mnemonic.slice(0, Mnemonic.size() - 2);
5143 PredicationCode = CC;
5144 }
Bill Wendling193961b2010-10-29 23:50:21 +00005145 }
Daniel Dunbar188b47b2010-08-11 06:37:20 +00005146
Daniel Dunbar9d944b32011-01-11 15:59:50 +00005147 // Next, determine if we have a carry setting bit. We explicitly ignore all
5148 // the instructions we know end in 's'.
5149 if (Mnemonic.endswith("s") &&
Jim Grosbachd3e8e292011-08-17 22:49:09 +00005150 !(Mnemonic == "cps" || Mnemonic == "mls" ||
Jim Grosbach5cc3b4c2011-07-19 20:10:31 +00005151 Mnemonic == "mrs" || Mnemonic == "smmls" || Mnemonic == "vabs" ||
5152 Mnemonic == "vcls" || Mnemonic == "vmls" || Mnemonic == "vmrs" ||
5153 Mnemonic == "vnmls" || Mnemonic == "vqabs" || Mnemonic == "vrecps" ||
Jim Grosbach086d0132011-12-08 00:49:29 +00005154 Mnemonic == "vrsqrts" || Mnemonic == "srs" || Mnemonic == "flds" ||
Jim Grosbach54337b82011-12-10 00:01:02 +00005155 Mnemonic == "fmrs" || Mnemonic == "fsqrts" || Mnemonic == "fsubs" ||
Jim Grosbach92a939a2011-12-19 19:02:41 +00005156 Mnemonic == "fsts" || Mnemonic == "fcpys" || Mnemonic == "fdivs" ||
Jim Grosbachd74560b2012-03-15 20:48:18 +00005157 Mnemonic == "fmuls" || Mnemonic == "fcmps" || Mnemonic == "fcmpzs" ||
David Peixottoa872e0e2014-01-07 18:19:23 +00005158 Mnemonic == "vfms" || Mnemonic == "vfnms" || Mnemonic == "fconsts" ||
Jim Grosbach51726e22011-07-29 20:26:09 +00005159 (Mnemonic == "movs" && isThumb()))) {
Daniel Dunbar9d944b32011-01-11 15:59:50 +00005160 Mnemonic = Mnemonic.slice(0, Mnemonic.size() - 1);
5161 CarrySetting = true;
5162 }
5163
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00005164 // The "cps" instruction can have a interrupt mode operand which is glued into
5165 // the mnemonic. Check if this is the case, split it and parse the imod op
5166 if (Mnemonic.startswith("cps")) {
5167 // Split out any imod code.
5168 unsigned IMod =
5169 StringSwitch<unsigned>(Mnemonic.substr(Mnemonic.size()-2, 2))
5170 .Case("ie", ARM_PROC::IE)
5171 .Case("id", ARM_PROC::ID)
5172 .Default(~0U);
5173 if (IMod != ~0U) {
5174 Mnemonic = Mnemonic.slice(0, Mnemonic.size()-2);
5175 ProcessorIMod = IMod;
5176 }
5177 }
5178
Jim Grosbach3d1eac82011-08-26 21:43:41 +00005179 // The "it" instruction has the condition mask on the end of the mnemonic.
5180 if (Mnemonic.startswith("it")) {
5181 ITMask = Mnemonic.slice(2, Mnemonic.size());
5182 Mnemonic = Mnemonic.slice(0, 2);
5183 }
5184
Daniel Dunbar9d944b32011-01-11 15:59:50 +00005185 return Mnemonic;
5186}
Daniel Dunbar5a384c82011-01-11 15:59:53 +00005187
5188/// \brief Given a canonical mnemonic, determine if the instruction ever allows
5189/// inclusion of carry set or predication code operands.
5190//
5191// FIXME: It would be nice to autogen this.
Bruno Cardoso Lopese6290cc2011-01-18 20:55:11 +00005192void ARMAsmParser::
Amara Emerson33089092013-09-19 11:59:01 +00005193getMnemonicAcceptInfo(StringRef Mnemonic, StringRef FullInst,
5194 bool &CanAcceptCarrySet, bool &CanAcceptPredicationCode) {
Daniel Dunbar09264122011-01-11 19:06:29 +00005195 if (Mnemonic == "and" || Mnemonic == "lsl" || Mnemonic == "lsr" ||
5196 Mnemonic == "rrx" || Mnemonic == "ror" || Mnemonic == "sub" ||
Jim Grosbachd73c6452011-09-16 18:05:48 +00005197 Mnemonic == "add" || Mnemonic == "adc" ||
Daniel Dunbar09264122011-01-11 19:06:29 +00005198 Mnemonic == "mul" || Mnemonic == "bic" || Mnemonic == "asr" ||
Jim Grosbachfc545182011-09-19 23:31:02 +00005199 Mnemonic == "orr" || Mnemonic == "mvn" ||
Daniel Dunbar09264122011-01-11 19:06:29 +00005200 Mnemonic == "rsb" || Mnemonic == "rsc" || Mnemonic == "orn" ||
Jim Grosbachfc545182011-09-19 23:31:02 +00005201 Mnemonic == "sbc" || Mnemonic == "eor" || Mnemonic == "neg" ||
Evan Chengaca6c822012-04-11 00:13:00 +00005202 Mnemonic == "vfm" || Mnemonic == "vfnm" ||
Jim Grosbachd73c6452011-09-16 18:05:48 +00005203 (!isThumb() && (Mnemonic == "smull" || Mnemonic == "mov" ||
Jim Grosbachfc545182011-09-19 23:31:02 +00005204 Mnemonic == "mla" || Mnemonic == "smlal" ||
5205 Mnemonic == "umlal" || Mnemonic == "umull"))) {
Daniel Dunbar09264122011-01-11 19:06:29 +00005206 CanAcceptCarrySet = true;
Jim Grosbach6c45b752011-09-16 16:39:25 +00005207 } else
Daniel Dunbar09264122011-01-11 19:06:29 +00005208 CanAcceptCarrySet = false;
Daniel Dunbar5a384c82011-01-11 15:59:53 +00005209
Tim Northover2c45a382013-06-26 16:52:40 +00005210 if (Mnemonic == "bkpt" || Mnemonic == "cbnz" || Mnemonic == "setend" ||
5211 Mnemonic == "cps" || Mnemonic == "it" || Mnemonic == "cbz" ||
Saleem Abdulrasool27351f22014-05-14 03:47:39 +00005212 Mnemonic == "trap" || Mnemonic == "hlt" || Mnemonic == "udf" ||
5213 Mnemonic.startswith("crc32") || Mnemonic.startswith("cps") ||
5214 Mnemonic.startswith("vsel") ||
Joey Gouly2d0175e2013-07-09 09:59:04 +00005215 Mnemonic == "vmaxnm" || Mnemonic == "vminnm" || Mnemonic == "vcvta" ||
Joey Gouly0f12aa22013-07-09 11:26:18 +00005216 Mnemonic == "vcvtn" || Mnemonic == "vcvtp" || Mnemonic == "vcvtm" ||
5217 Mnemonic == "vrinta" || Mnemonic == "vrintn" || Mnemonic == "vrintp" ||
Amara Emerson33089092013-09-19 11:59:01 +00005218 Mnemonic == "vrintm" || Mnemonic.startswith("aes") ||
5219 Mnemonic.startswith("sha1") || Mnemonic.startswith("sha256") ||
5220 (FullInst.startswith("vmull") && FullInst.endswith(".p64"))) {
Tim Northover2c45a382013-06-26 16:52:40 +00005221 // These mnemonics are never predicable
Daniel Dunbar5a384c82011-01-11 15:59:53 +00005222 CanAcceptPredicationCode = false;
Tim Northover2c45a382013-06-26 16:52:40 +00005223 } else if (!isThumb()) {
5224 // Some instructions are only predicable in Thumb mode
5225 CanAcceptPredicationCode
5226 = Mnemonic != "cdp2" && Mnemonic != "clrex" && Mnemonic != "mcr2" &&
5227 Mnemonic != "mcrr2" && Mnemonic != "mrc2" && Mnemonic != "mrrc2" &&
5228 Mnemonic != "dmb" && Mnemonic != "dsb" && Mnemonic != "isb" &&
5229 Mnemonic != "pld" && Mnemonic != "pli" && Mnemonic != "pldw" &&
5230 Mnemonic != "ldc2" && Mnemonic != "ldc2l" &&
5231 Mnemonic != "stc2" && Mnemonic != "stc2l" &&
5232 !Mnemonic.startswith("rfe") && !Mnemonic.startswith("srs");
5233 } else if (isThumbOne()) {
Tim Northoverf86d1f02013-10-07 11:10:47 +00005234 if (hasV6MOps())
5235 CanAcceptPredicationCode = Mnemonic != "movs";
5236 else
5237 CanAcceptPredicationCode = Mnemonic != "nop" && Mnemonic != "movs";
Jim Grosbach6c45b752011-09-16 16:39:25 +00005238 } else
Daniel Dunbar5a384c82011-01-11 15:59:53 +00005239 CanAcceptPredicationCode = true;
Daniel Dunbar876bb0182011-01-10 12:24:52 +00005240}
5241
Jim Grosbach7283da92011-08-16 21:12:37 +00005242bool ARMAsmParser::shouldOmitCCOutOperand(StringRef Mnemonic,
David Blaikie960ea3f2014-06-08 16:18:35 +00005243 OperandVector &Operands) {
Jim Grosbach1d3c1372011-09-01 00:28:52 +00005244 // FIXME: This is all horribly hacky. We really need a better way to deal
5245 // with optional operands like this in the matcher table.
Jim Grosbach7283da92011-08-16 21:12:37 +00005246
5247 // The 'mov' mnemonic is special. One variant has a cc_out operand, while
5248 // another does not. Specifically, the MOVW instruction does not. So we
5249 // special case it here and remove the defaulted (non-setting) cc_out
5250 // operand if that's the instruction we're trying to match.
5251 //
5252 // We do this as post-processing of the explicit operands rather than just
5253 // conditionally adding the cc_out in the first place because we need
5254 // to check the type of the parsed immediate operand.
Owen Andersond7791b92011-09-14 22:46:14 +00005255 if (Mnemonic == "mov" && Operands.size() > 4 && !isThumb() &&
David Blaikie960ea3f2014-06-08 16:18:35 +00005256 !static_cast<ARMOperand &>(*Operands[4]).isARMSOImm() &&
5257 static_cast<ARMOperand &>(*Operands[4]).isImm0_65535Expr() &&
5258 static_cast<ARMOperand &>(*Operands[1]).getReg() == 0)
Jim Grosbach7283da92011-08-16 21:12:37 +00005259 return true;
Jim Grosbach58ffdcc2011-08-16 21:34:08 +00005260
5261 // Register-register 'add' for thumb does not have a cc_out operand
5262 // when there are only two register operands.
5263 if (isThumb() && Mnemonic == "add" && Operands.size() == 5 &&
David Blaikie960ea3f2014-06-08 16:18:35 +00005264 static_cast<ARMOperand &>(*Operands[3]).isReg() &&
5265 static_cast<ARMOperand &>(*Operands[4]).isReg() &&
5266 static_cast<ARMOperand &>(*Operands[1]).getReg() == 0)
Jim Grosbach58ffdcc2011-08-16 21:34:08 +00005267 return true;
Jim Grosbach0a0b3072011-08-24 21:22:15 +00005268 // Register-register 'add' for thumb does not have a cc_out operand
Jim Grosbach1d3c1372011-09-01 00:28:52 +00005269 // when it's an ADD Rdm, SP, {Rdm|#imm0_255} instruction. We do
5270 // have to check the immediate range here since Thumb2 has a variant
5271 // that can handle a different range and has a cc_out operand.
Jim Grosbachd0c435c2011-09-16 22:58:42 +00005272 if (((isThumb() && Mnemonic == "add") ||
5273 (isThumbTwo() && Mnemonic == "sub")) &&
David Blaikie960ea3f2014-06-08 16:18:35 +00005274 Operands.size() == 6 && static_cast<ARMOperand &>(*Operands[3]).isReg() &&
5275 static_cast<ARMOperand &>(*Operands[4]).isReg() &&
5276 static_cast<ARMOperand &>(*Operands[4]).getReg() == ARM::SP &&
5277 static_cast<ARMOperand &>(*Operands[1]).getReg() == 0 &&
5278 ((Mnemonic == "add" && static_cast<ARMOperand &>(*Operands[5]).isReg()) ||
5279 static_cast<ARMOperand &>(*Operands[5]).isImm0_1020s4()))
Jim Grosbach0a0b3072011-08-24 21:22:15 +00005280 return true;
Jim Grosbachd0c435c2011-09-16 22:58:42 +00005281 // For Thumb2, add/sub immediate does not have a cc_out operand for the
5282 // imm0_4095 variant. That's the least-preferred variant when
Jim Grosbach1d3c1372011-09-01 00:28:52 +00005283 // selecting via the generic "add" mnemonic, so to know that we
5284 // should remove the cc_out operand, we have to explicitly check that
5285 // it's not one of the other variants. Ugh.
Jim Grosbachd0c435c2011-09-16 22:58:42 +00005286 if (isThumbTwo() && (Mnemonic == "add" || Mnemonic == "sub") &&
David Blaikie960ea3f2014-06-08 16:18:35 +00005287 Operands.size() == 6 && static_cast<ARMOperand &>(*Operands[3]).isReg() &&
5288 static_cast<ARMOperand &>(*Operands[4]).isReg() &&
5289 static_cast<ARMOperand &>(*Operands[5]).isImm()) {
Jim Grosbach1d3c1372011-09-01 00:28:52 +00005290 // Nest conditions rather than one big 'if' statement for readability.
5291 //
Jim Grosbach1d3c1372011-09-01 00:28:52 +00005292 // If both registers are low, we're in an IT block, and the immediate is
5293 // in range, we should use encoding T1 instead, which has a cc_out.
5294 if (inITBlock() &&
David Blaikie960ea3f2014-06-08 16:18:35 +00005295 isARMLowRegister(static_cast<ARMOperand &>(*Operands[3]).getReg()) &&
5296 isARMLowRegister(static_cast<ARMOperand &>(*Operands[4]).getReg()) &&
5297 static_cast<ARMOperand &>(*Operands[5]).isImm0_7())
Jim Grosbach1d3c1372011-09-01 00:28:52 +00005298 return false;
Tilmann Schelleref5666f2013-07-03 20:38:01 +00005299 // Check against T3. If the second register is the PC, this is an
5300 // alternate form of ADR, which uses encoding T4, so check for that too.
David Blaikie960ea3f2014-06-08 16:18:35 +00005301 if (static_cast<ARMOperand &>(*Operands[4]).getReg() != ARM::PC &&
5302 static_cast<ARMOperand &>(*Operands[5]).isT2SOImm())
Tilmann Schelleref5666f2013-07-03 20:38:01 +00005303 return false;
Jim Grosbach1d3c1372011-09-01 00:28:52 +00005304
5305 // Otherwise, we use encoding T4, which does not have a cc_out
5306 // operand.
5307 return true;
5308 }
5309
Jim Grosbach9c8b9932011-09-14 21:00:40 +00005310 // The thumb2 multiply instruction doesn't have a CCOut register, so
5311 // if we have a "mul" mnemonic in Thumb mode, check if we'll be able to
5312 // use the 16-bit encoding or not.
5313 if (isThumbTwo() && Mnemonic == "mul" && Operands.size() == 6 &&
David Blaikie960ea3f2014-06-08 16:18:35 +00005314 static_cast<ARMOperand &>(*Operands[1]).getReg() == 0 &&
5315 static_cast<ARMOperand &>(*Operands[3]).isReg() &&
5316 static_cast<ARMOperand &>(*Operands[4]).isReg() &&
5317 static_cast<ARMOperand &>(*Operands[5]).isReg() &&
Jim Grosbach9c8b9932011-09-14 21:00:40 +00005318 // If the registers aren't low regs, the destination reg isn't the
5319 // same as one of the source regs, or the cc_out operand is zero
5320 // outside of an IT block, we have to use the 32-bit encoding, so
5321 // remove the cc_out operand.
David Blaikie960ea3f2014-06-08 16:18:35 +00005322 (!isARMLowRegister(static_cast<ARMOperand &>(*Operands[3]).getReg()) ||
5323 !isARMLowRegister(static_cast<ARMOperand &>(*Operands[4]).getReg()) ||
5324 !isARMLowRegister(static_cast<ARMOperand &>(*Operands[5]).getReg()) ||
5325 !inITBlock() || (static_cast<ARMOperand &>(*Operands[3]).getReg() !=
5326 static_cast<ARMOperand &>(*Operands[5]).getReg() &&
5327 static_cast<ARMOperand &>(*Operands[3]).getReg() !=
5328 static_cast<ARMOperand &>(*Operands[4]).getReg())))
Jim Grosbach9c8b9932011-09-14 21:00:40 +00005329 return true;
5330
Jim Grosbachefa7e952011-11-15 19:55:16 +00005331 // Also check the 'mul' syntax variant that doesn't specify an explicit
5332 // destination register.
5333 if (isThumbTwo() && Mnemonic == "mul" && Operands.size() == 5 &&
David Blaikie960ea3f2014-06-08 16:18:35 +00005334 static_cast<ARMOperand &>(*Operands[1]).getReg() == 0 &&
5335 static_cast<ARMOperand &>(*Operands[3]).isReg() &&
5336 static_cast<ARMOperand &>(*Operands[4]).isReg() &&
Jim Grosbachefa7e952011-11-15 19:55:16 +00005337 // If the registers aren't low regs or the cc_out operand is zero
5338 // outside of an IT block, we have to use the 32-bit encoding, so
5339 // remove the cc_out operand.
David Blaikie960ea3f2014-06-08 16:18:35 +00005340 (!isARMLowRegister(static_cast<ARMOperand &>(*Operands[3]).getReg()) ||
5341 !isARMLowRegister(static_cast<ARMOperand &>(*Operands[4]).getReg()) ||
Jim Grosbachefa7e952011-11-15 19:55:16 +00005342 !inITBlock()))
5343 return true;
5344
Jim Grosbach9c8b9932011-09-14 21:00:40 +00005345
Jim Grosbach1d3c1372011-09-01 00:28:52 +00005346
Jim Grosbach4b701af2011-08-24 21:42:27 +00005347 // Register-register 'add/sub' for thumb does not have a cc_out operand
5348 // when it's an ADD/SUB SP, #imm. Be lenient on count since there's also
5349 // the "add/sub SP, SP, #imm" version. If the follow-up operands aren't
5350 // right, this will result in better diagnostics (which operand is off)
5351 // anyway.
5352 if (isThumb() && (Mnemonic == "add" || Mnemonic == "sub") &&
5353 (Operands.size() == 5 || Operands.size() == 6) &&
David Blaikie960ea3f2014-06-08 16:18:35 +00005354 static_cast<ARMOperand &>(*Operands[3]).isReg() &&
5355 static_cast<ARMOperand &>(*Operands[3]).getReg() == ARM::SP &&
5356 static_cast<ARMOperand &>(*Operands[1]).getReg() == 0 &&
5357 (static_cast<ARMOperand &>(*Operands[4]).isImm() ||
Jim Grosbachdf5a2442012-04-10 17:31:55 +00005358 (Operands.size() == 6 &&
David Blaikie960ea3f2014-06-08 16:18:35 +00005359 static_cast<ARMOperand &>(*Operands[5]).isImm())))
Jim Grosbach0a0b3072011-08-24 21:22:15 +00005360 return true;
Jim Grosbach58ffdcc2011-08-16 21:34:08 +00005361
Jim Grosbach7283da92011-08-16 21:12:37 +00005362 return false;
5363}
5364
David Blaikie960ea3f2014-06-08 16:18:35 +00005365bool ARMAsmParser::shouldOmitPredicateOperand(StringRef Mnemonic,
5366 OperandVector &Operands) {
Joey Goulye8602552013-07-19 16:34:16 +00005367 // VRINT{Z, R, X} have a predicate operand in VFP, but not in NEON
5368 unsigned RegIdx = 3;
5369 if ((Mnemonic == "vrintz" || Mnemonic == "vrintx" || Mnemonic == "vrintr") &&
David Blaikie960ea3f2014-06-08 16:18:35 +00005370 static_cast<ARMOperand &>(*Operands[2]).getToken() == ".f32") {
5371 if (static_cast<ARMOperand &>(*Operands[3]).isToken() &&
5372 static_cast<ARMOperand &>(*Operands[3]).getToken() == ".f32")
Joey Goulye8602552013-07-19 16:34:16 +00005373 RegIdx = 4;
5374
David Blaikie960ea3f2014-06-08 16:18:35 +00005375 if (static_cast<ARMOperand &>(*Operands[RegIdx]).isReg() &&
5376 (ARMMCRegisterClasses[ARM::DPRRegClassID].contains(
5377 static_cast<ARMOperand &>(*Operands[RegIdx]).getReg()) ||
5378 ARMMCRegisterClasses[ARM::QPRRegClassID].contains(
5379 static_cast<ARMOperand &>(*Operands[RegIdx]).getReg())))
Joey Goulye8602552013-07-19 16:34:16 +00005380 return true;
5381 }
Joey Goulyf520d5e2013-07-19 16:45:16 +00005382 return false;
Joey Goulye8602552013-07-19 16:34:16 +00005383}
5384
Jim Grosbach12952fe2011-11-11 23:08:10 +00005385static bool isDataTypeToken(StringRef Tok) {
5386 return Tok == ".8" || Tok == ".16" || Tok == ".32" || Tok == ".64" ||
5387 Tok == ".i8" || Tok == ".i16" || Tok == ".i32" || Tok == ".i64" ||
5388 Tok == ".u8" || Tok == ".u16" || Tok == ".u32" || Tok == ".u64" ||
5389 Tok == ".s8" || Tok == ".s16" || Tok == ".s32" || Tok == ".s64" ||
5390 Tok == ".p8" || Tok == ".p16" || Tok == ".f32" || Tok == ".f64" ||
5391 Tok == ".f" || Tok == ".d";
5392}
5393
5394// FIXME: This bit should probably be handled via an explicit match class
5395// in the .td files that matches the suffix instead of having it be
5396// a literal string token the way it is now.
5397static bool doesIgnoreDataTypeSuffix(StringRef Mnemonic, StringRef DT) {
5398 return Mnemonic.startswith("vldm") || Mnemonic.startswith("vstm");
5399}
Tim Northover26bb14e2014-08-18 11:49:42 +00005400static void applyMnemonicAliases(StringRef &Mnemonic, uint64_t Features,
Chad Rosier9f7a2212013-04-18 22:35:36 +00005401 unsigned VariantID);
Saleem Abdulrasoole3a9dc12013-12-30 18:38:01 +00005402
5403static bool RequiresVFPRegListValidation(StringRef Inst,
5404 bool &AcceptSinglePrecisionOnly,
5405 bool &AcceptDoublePrecisionOnly) {
5406 if (Inst.size() < 7)
5407 return false;
5408
5409 if (Inst.startswith("fldm") || Inst.startswith("fstm")) {
5410 StringRef AddressingMode = Inst.substr(4, 2);
5411 if (AddressingMode == "ia" || AddressingMode == "db" ||
5412 AddressingMode == "ea" || AddressingMode == "fd") {
5413 AcceptSinglePrecisionOnly = Inst[6] == 's';
5414 AcceptDoublePrecisionOnly = Inst[6] == 'd' || Inst[6] == 'x';
5415 return true;
5416 }
5417 }
5418
5419 return false;
5420}
5421
Daniel Dunbar876bb0182011-01-10 12:24:52 +00005422/// Parse an arm instruction mnemonic followed by its operands.
Chad Rosierf0e87202012-10-25 20:41:34 +00005423bool ARMAsmParser::ParseInstruction(ParseInstructionInfo &Info, StringRef Name,
David Blaikie960ea3f2014-06-08 16:18:35 +00005424 SMLoc NameLoc, OperandVector &Operands) {
Saleem Abdulrasool4da9c6e2013-12-29 17:58:35 +00005425 // FIXME: Can this be done via tablegen in some fashion?
Saleem Abdulrasoole3a9dc12013-12-30 18:38:01 +00005426 bool RequireVFPRegisterListCheck;
Saleem Abdulrasool4da9c6e2013-12-29 17:58:35 +00005427 bool AcceptSinglePrecisionOnly;
Saleem Abdulrasoole3a9dc12013-12-30 18:38:01 +00005428 bool AcceptDoublePrecisionOnly;
5429 RequireVFPRegisterListCheck =
5430 RequiresVFPRegListValidation(Name, AcceptSinglePrecisionOnly,
5431 AcceptDoublePrecisionOnly);
Saleem Abdulrasool4da9c6e2013-12-29 17:58:35 +00005432
Jim Grosbach8be2f652011-12-09 23:34:09 +00005433 // Apply mnemonic aliases before doing anything else, as the destination
Saleem Abdulrasoola1937cb2013-12-29 17:58:31 +00005434 // mnemonic may include suffices and we want to handle them normally.
Jim Grosbach8be2f652011-12-09 23:34:09 +00005435 // The generic tblgen'erated code does this later, at the start of
5436 // MatchInstructionImpl(), but that's too late for aliases that include
5437 // any sort of suffix.
Tim Northover26bb14e2014-08-18 11:49:42 +00005438 uint64_t AvailableFeatures = getAvailableFeatures();
Chad Rosier9f7a2212013-04-18 22:35:36 +00005439 unsigned AssemblerDialect = getParser().getAssemblerDialect();
5440 applyMnemonicAliases(Name, AvailableFeatures, AssemblerDialect);
Jim Grosbach8be2f652011-12-09 23:34:09 +00005441
Jim Grosbachab5830e2011-12-14 02:16:11 +00005442 // First check for the ARM-specific .req directive.
5443 if (Parser.getTok().is(AsmToken::Identifier) &&
5444 Parser.getTok().getIdentifier() == ".req") {
5445 parseDirectiveReq(Name, NameLoc);
5446 // We always return 'error' for this, as we're done with this
5447 // statement and don't need to match the 'instruction."
5448 return true;
5449 }
5450
Daniel Dunbar876bb0182011-01-10 12:24:52 +00005451 // Create the leading tokens for the mnemonic, split by '.' characters.
5452 size_t Start = 0, Next = Name.find('.');
Jim Grosbach7c09e3c2011-07-19 19:13:28 +00005453 StringRef Mnemonic = Name.slice(Start, Next);
Daniel Dunbar876bb0182011-01-10 12:24:52 +00005454
Daniel Dunbar9d944b32011-01-11 15:59:50 +00005455 // Split out the predication code and carry setting flag from the mnemonic.
5456 unsigned PredicationCode;
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00005457 unsigned ProcessorIMod;
Daniel Dunbar9d944b32011-01-11 15:59:50 +00005458 bool CarrySetting;
Jim Grosbach3d1eac82011-08-26 21:43:41 +00005459 StringRef ITMask;
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00005460 Mnemonic = splitMnemonic(Mnemonic, PredicationCode, CarrySetting,
Jim Grosbach3d1eac82011-08-26 21:43:41 +00005461 ProcessorIMod, ITMask);
Daniel Dunbar876bb0182011-01-10 12:24:52 +00005462
Jim Grosbach1c171b12011-08-25 17:23:55 +00005463 // In Thumb1, only the branch (B) instruction can be predicated.
5464 if (isThumbOne() && PredicationCode != ARMCC::AL && Mnemonic != "b") {
Jim Grosbachd2037eb2013-02-20 22:21:35 +00005465 Parser.eatToEndOfStatement();
Jim Grosbach1c171b12011-08-25 17:23:55 +00005466 return Error(NameLoc, "conditional execution not supported in Thumb1");
5467 }
5468
Jim Grosbach7c09e3c2011-07-19 19:13:28 +00005469 Operands.push_back(ARMOperand::CreateToken(Mnemonic, NameLoc));
5470
Jim Grosbach3d1eac82011-08-26 21:43:41 +00005471 // Handle the IT instruction ITMask. Convert it to a bitmask. This
5472 // is the mask as it will be for the IT encoding if the conditional
5473 // encoding has a '1' as it's bit0 (i.e. 't' ==> '1'). In the case
5474 // where the conditional bit0 is zero, the instruction post-processing
5475 // will adjust the mask accordingly.
5476 if (Mnemonic == "it") {
Jim Grosbached16ec42011-08-29 22:24:09 +00005477 SMLoc Loc = SMLoc::getFromPointer(NameLoc.getPointer() + 2);
5478 if (ITMask.size() > 3) {
Jim Grosbachd2037eb2013-02-20 22:21:35 +00005479 Parser.eatToEndOfStatement();
Jim Grosbached16ec42011-08-29 22:24:09 +00005480 return Error(Loc, "too many conditions on IT instruction");
5481 }
Jim Grosbach3d1eac82011-08-26 21:43:41 +00005482 unsigned Mask = 8;
5483 for (unsigned i = ITMask.size(); i != 0; --i) {
5484 char pos = ITMask[i - 1];
5485 if (pos != 't' && pos != 'e') {
Jim Grosbachd2037eb2013-02-20 22:21:35 +00005486 Parser.eatToEndOfStatement();
Jim Grosbached16ec42011-08-29 22:24:09 +00005487 return Error(Loc, "illegal IT block condition mask '" + ITMask + "'");
Jim Grosbach3d1eac82011-08-26 21:43:41 +00005488 }
5489 Mask >>= 1;
5490 if (ITMask[i - 1] == 't')
5491 Mask |= 8;
5492 }
Jim Grosbached16ec42011-08-29 22:24:09 +00005493 Operands.push_back(ARMOperand::CreateITMask(Mask, Loc));
Jim Grosbach3d1eac82011-08-26 21:43:41 +00005494 }
5495
Jim Grosbach7c09e3c2011-07-19 19:13:28 +00005496 // FIXME: This is all a pretty gross hack. We should automatically handle
5497 // optional operands like this via tblgen.
Bill Wendling219dabd2010-11-21 10:56:05 +00005498
Daniel Dunbar5a384c82011-01-11 15:59:53 +00005499 // Next, add the CCOut and ConditionCode operands, if needed.
5500 //
5501 // For mnemonics which can ever incorporate a carry setting bit or predication
5502 // code, our matching model involves us always generating CCOut and
5503 // ConditionCode operands to match the mnemonic "as written" and then we let
5504 // the matcher deal with finding the right instruction or generating an
5505 // appropriate error.
5506 bool CanAcceptCarrySet, CanAcceptPredicationCode;
Amara Emerson33089092013-09-19 11:59:01 +00005507 getMnemonicAcceptInfo(Mnemonic, Name, CanAcceptCarrySet, CanAcceptPredicationCode);
Daniel Dunbar5a384c82011-01-11 15:59:53 +00005508
Jim Grosbach03a8a162011-07-14 22:04:21 +00005509 // If we had a carry-set on an instruction that can't do that, issue an
5510 // error.
5511 if (!CanAcceptCarrySet && CarrySetting) {
Jim Grosbachd2037eb2013-02-20 22:21:35 +00005512 Parser.eatToEndOfStatement();
Jim Grosbach7c09e3c2011-07-19 19:13:28 +00005513 return Error(NameLoc, "instruction '" + Mnemonic +
Jim Grosbach03a8a162011-07-14 22:04:21 +00005514 "' can not set flags, but 's' suffix specified");
5515 }
Jim Grosbach0a547702011-07-22 17:44:50 +00005516 // If we had a predication code on an instruction that can't do that, issue an
5517 // error.
5518 if (!CanAcceptPredicationCode && PredicationCode != ARMCC::AL) {
Jim Grosbachd2037eb2013-02-20 22:21:35 +00005519 Parser.eatToEndOfStatement();
Jim Grosbach0a547702011-07-22 17:44:50 +00005520 return Error(NameLoc, "instruction '" + Mnemonic +
5521 "' is not predicable, but condition code specified");
5522 }
Jim Grosbach03a8a162011-07-14 22:04:21 +00005523
Daniel Dunbar5a384c82011-01-11 15:59:53 +00005524 // Add the carry setting operand, if necessary.
Jim Grosbached16ec42011-08-29 22:24:09 +00005525 if (CanAcceptCarrySet) {
5526 SMLoc Loc = SMLoc::getFromPointer(NameLoc.getPointer() + Mnemonic.size());
Daniel Dunbar5a384c82011-01-11 15:59:53 +00005527 Operands.push_back(ARMOperand::CreateCCOut(CarrySetting ? ARM::CPSR : 0,
Jim Grosbached16ec42011-08-29 22:24:09 +00005528 Loc));
5529 }
Daniel Dunbar5a384c82011-01-11 15:59:53 +00005530
5531 // Add the predication code operand, if necessary.
5532 if (CanAcceptPredicationCode) {
Jim Grosbached16ec42011-08-29 22:24:09 +00005533 SMLoc Loc = SMLoc::getFromPointer(NameLoc.getPointer() + Mnemonic.size() +
5534 CarrySetting);
Daniel Dunbar5a384c82011-01-11 15:59:53 +00005535 Operands.push_back(ARMOperand::CreateCondCode(
Jim Grosbached16ec42011-08-29 22:24:09 +00005536 ARMCC::CondCodes(PredicationCode), Loc));
Daniel Dunbar876bb0182011-01-10 12:24:52 +00005537 }
Daniel Dunbar188b47b2010-08-11 06:37:20 +00005538
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00005539 // Add the processor imod operand, if necessary.
5540 if (ProcessorIMod) {
5541 Operands.push_back(ARMOperand::CreateImm(
5542 MCConstantExpr::Create(ProcessorIMod, getContext()),
5543 NameLoc, NameLoc));
Oliver Stannard1ae8b472014-09-24 14:20:01 +00005544 } else if (Mnemonic == "cps" && isMClass()) {
5545 return Error(NameLoc, "instruction 'cps' requires effect for M-class");
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00005546 }
5547
Daniel Dunbar188b47b2010-08-11 06:37:20 +00005548 // Add the remaining tokens in the mnemonic.
Daniel Dunbar75d26be2010-08-11 06:37:16 +00005549 while (Next != StringRef::npos) {
5550 Start = Next;
5551 Next = Name.find('.', Start + 1);
Bruno Cardoso Lopes90d1dfe2011-02-14 13:09:44 +00005552 StringRef ExtraToken = Name.slice(Start, Next);
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00005553
Jim Grosbach12952fe2011-11-11 23:08:10 +00005554 // Some NEON instructions have an optional datatype suffix that is
5555 // completely ignored. Check for that.
5556 if (isDataTypeToken(ExtraToken) &&
5557 doesIgnoreDataTypeSuffix(Mnemonic, ExtraToken))
5558 continue;
5559
Kevin Enderbyc5d09352013-06-18 20:19:24 +00005560 // For for ARM mode generate an error if the .n qualifier is used.
5561 if (ExtraToken == ".n" && !isThumb()) {
5562 SMLoc Loc = SMLoc::getFromPointer(NameLoc.getPointer() + Start);
Saleem Abdulrasoolbdae4b82014-01-12 05:25:44 +00005563 Parser.eatToEndOfStatement();
Kevin Enderbyc5d09352013-06-18 20:19:24 +00005564 return Error(Loc, "instruction with .n (narrow) qualifier not allowed in "
5565 "arm mode");
5566 }
5567
5568 // The .n qualifier is always discarded as that is what the tables
5569 // and matcher expect. In ARM mode the .w qualifier has no effect,
5570 // so discard it to avoid errors that can be caused by the matcher.
5571 if (ExtraToken != ".n" && (isThumb() || ExtraToken != ".w")) {
Jim Grosbach39c6e1d2011-09-07 16:06:04 +00005572 SMLoc Loc = SMLoc::getFromPointer(NameLoc.getPointer() + Start);
5573 Operands.push_back(ARMOperand::CreateToken(ExtraToken, Loc));
5574 }
Daniel Dunbar75d26be2010-08-11 06:37:16 +00005575 }
5576
5577 // Read the remaining operands.
5578 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00005579 // Read the first operand.
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00005580 if (parseOperand(Operands, Mnemonic)) {
Jim Grosbachd2037eb2013-02-20 22:21:35 +00005581 Parser.eatToEndOfStatement();
Chris Lattnera2a9d162010-09-11 16:18:25 +00005582 return true;
5583 }
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00005584
5585 while (getLexer().is(AsmToken::Comma)) {
Sean Callanana83fd7d2010-01-19 20:27:46 +00005586 Parser.Lex(); // Eat the comma.
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00005587
5588 // Parse and remember the operand.
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00005589 if (parseOperand(Operands, Mnemonic)) {
Jim Grosbachd2037eb2013-02-20 22:21:35 +00005590 Parser.eatToEndOfStatement();
Chris Lattnera2a9d162010-09-11 16:18:25 +00005591 return true;
5592 }
Kevin Enderbyfebe39b2009-10-06 22:26:42 +00005593 }
5594 }
Jim Grosbach624bcc72010-10-29 14:46:02 +00005595
Chris Lattnera2a9d162010-09-11 16:18:25 +00005596 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Jim Grosbachb8d9f512011-10-07 18:27:04 +00005597 SMLoc Loc = getLexer().getLoc();
Jim Grosbachd2037eb2013-02-20 22:21:35 +00005598 Parser.eatToEndOfStatement();
Jim Grosbachb8d9f512011-10-07 18:27:04 +00005599 return Error(Loc, "unexpected token in argument list");
Chris Lattnera2a9d162010-09-11 16:18:25 +00005600 }
Bill Wendlingee7f1f92010-11-06 21:42:12 +00005601
Chris Lattner91689c12010-09-08 05:10:46 +00005602 Parser.Lex(); // Consume the EndOfStatement
Jim Grosbach7c09e3c2011-07-19 19:13:28 +00005603
Saleem Abdulrasoole3a9dc12013-12-30 18:38:01 +00005604 if (RequireVFPRegisterListCheck) {
David Blaikie960ea3f2014-06-08 16:18:35 +00005605 ARMOperand &Op = static_cast<ARMOperand &>(*Operands.back());
5606 if (AcceptSinglePrecisionOnly && !Op.isSPRRegList())
5607 return Error(Op.getStartLoc(),
Saleem Abdulrasoolaca443c2013-12-29 18:53:16 +00005608 "VFP/Neon single precision register expected");
David Blaikie960ea3f2014-06-08 16:18:35 +00005609 if (AcceptDoublePrecisionOnly && !Op.isDPRRegList())
5610 return Error(Op.getStartLoc(),
Saleem Abdulrasoolaca443c2013-12-29 18:53:16 +00005611 "VFP/Neon double precision register expected");
Saleem Abdulrasool4da9c6e2013-12-29 17:58:35 +00005612 }
5613
Jim Grosbach7283da92011-08-16 21:12:37 +00005614 // Some instructions, mostly Thumb, have forms for the same mnemonic that
5615 // do and don't have a cc_out optional-def operand. With some spot-checks
5616 // of the operand list, we can figure out which variant we're trying to
Jim Grosbach1d3c1372011-09-01 00:28:52 +00005617 // parse and adjust accordingly before actually matching. We shouldn't ever
5618 // try to remove a cc_out operand that was explicitly set on the the
5619 // mnemonic, of course (CarrySetting == true). Reason number #317 the
5620 // table driven matcher doesn't fit well with the ARM instruction set.
David Blaikie960ea3f2014-06-08 16:18:35 +00005621 if (!CarrySetting && shouldOmitCCOutOperand(Mnemonic, Operands))
Jim Grosbach7c09e3c2011-07-19 19:13:28 +00005622 Operands.erase(Operands.begin() + 1);
Jim Grosbach7c09e3c2011-07-19 19:13:28 +00005623
Joey Goulye8602552013-07-19 16:34:16 +00005624 // Some instructions have the same mnemonic, but don't always
5625 // have a predicate. Distinguish them here and delete the
5626 // predicate if needed.
David Blaikie960ea3f2014-06-08 16:18:35 +00005627 if (shouldOmitPredicateOperand(Mnemonic, Operands))
Joey Goulye8602552013-07-19 16:34:16 +00005628 Operands.erase(Operands.begin() + 1);
Joey Goulye8602552013-07-19 16:34:16 +00005629
Jim Grosbacha03ab0e2011-07-28 21:57:55 +00005630 // ARM mode 'blx' need special handling, as the register operand version
5631 // is predicable, but the label operand version is not. So, we can't rely
5632 // on the Mnemonic based checking to correctly figure out when to put
Jim Grosbach6e5778f2011-10-07 23:24:09 +00005633 // a k_CondCode operand in the list. If we're trying to match the label
5634 // version, remove the k_CondCode operand here.
Jim Grosbacha03ab0e2011-07-28 21:57:55 +00005635 if (!isThumb() && Mnemonic == "blx" && Operands.size() == 3 &&
David Blaikie960ea3f2014-06-08 16:18:35 +00005636 static_cast<ARMOperand &>(*Operands[2]).isImm())
Jim Grosbacha03ab0e2011-07-28 21:57:55 +00005637 Operands.erase(Operands.begin() + 1);
Jim Grosbach8cffa282011-08-11 23:51:13 +00005638
Weiming Zhao8f56f882012-11-16 21:55:34 +00005639 // Adjust operands of ldrexd/strexd to MCK_GPRPair.
5640 // ldrexd/strexd require even/odd GPR pair. To enforce this constraint,
5641 // a single GPRPair reg operand is used in the .td file to replace the two
5642 // GPRs. However, when parsing from asm, the two GRPs cannot be automatically
5643 // expressed as a GPRPair, so we have to manually merge them.
5644 // FIXME: We would really like to be able to tablegen'erate this.
5645 if (!isThumb() && Operands.size() > 4 &&
Joey Goulye6d165c2013-08-27 17:38:16 +00005646 (Mnemonic == "ldrexd" || Mnemonic == "strexd" || Mnemonic == "ldaexd" ||
5647 Mnemonic == "stlexd")) {
5648 bool isLoad = (Mnemonic == "ldrexd" || Mnemonic == "ldaexd");
Weiming Zhao8f56f882012-11-16 21:55:34 +00005649 unsigned Idx = isLoad ? 2 : 3;
David Blaikie960ea3f2014-06-08 16:18:35 +00005650 ARMOperand &Op1 = static_cast<ARMOperand &>(*Operands[Idx]);
5651 ARMOperand &Op2 = static_cast<ARMOperand &>(*Operands[Idx + 1]);
Weiming Zhao8f56f882012-11-16 21:55:34 +00005652
5653 const MCRegisterClass& MRC = MRI->getRegClass(ARM::GPRRegClassID);
5654 // Adjust only if Op1 and Op2 are GPRs.
David Blaikie960ea3f2014-06-08 16:18:35 +00005655 if (Op1.isReg() && Op2.isReg() && MRC.contains(Op1.getReg()) &&
5656 MRC.contains(Op2.getReg())) {
5657 unsigned Reg1 = Op1.getReg();
5658 unsigned Reg2 = Op2.getReg();
Weiming Zhao8f56f882012-11-16 21:55:34 +00005659 unsigned Rt = MRI->getEncodingValue(Reg1);
5660 unsigned Rt2 = MRI->getEncodingValue(Reg2);
5661
5662 // Rt2 must be Rt + 1 and Rt must be even.
5663 if (Rt + 1 != Rt2 || (Rt & 1)) {
David Blaikie960ea3f2014-06-08 16:18:35 +00005664 Error(Op2.getStartLoc(), isLoad
5665 ? "destination operands must be sequential"
5666 : "source operands must be sequential");
Weiming Zhao8f56f882012-11-16 21:55:34 +00005667 return true;
5668 }
5669 unsigned NewReg = MRI->getMatchingSuperReg(Reg1, ARM::gsub_0,
5670 &(MRI->getRegClass(ARM::GPRPairRegClassID)));
David Blaikie960ea3f2014-06-08 16:18:35 +00005671 Operands[Idx] =
5672 ARMOperand::CreateReg(NewReg, Op1.getStartLoc(), Op2.getEndLoc());
5673 Operands.erase(Operands.begin() + Idx + 1);
Weiming Zhao8f56f882012-11-16 21:55:34 +00005674 }
5675 }
5676
Renato Golin36c626e2014-09-26 16:14:29 +00005677 // If first 2 operands of a 3 operand instruction are the same
5678 // then transform to 2 operand version of the same instruction
5679 // e.g. 'adds r0, r0, #1' transforms to 'adds r0, #1'
5680 // FIXME: We would really like to be able to tablegen'erate this.
5681 if (isThumbOne() && Operands.size() == 6 &&
5682 (Mnemonic == "add" || Mnemonic == "sub" || Mnemonic == "and" ||
5683 Mnemonic == "eor" || Mnemonic == "lsl" || Mnemonic == "lsr" ||
5684 Mnemonic == "asr" || Mnemonic == "adc" || Mnemonic == "sbc" ||
5685 Mnemonic == "ror" || Mnemonic == "orr" || Mnemonic == "bic")) {
5686 ARMOperand &Op3 = static_cast<ARMOperand &>(*Operands[3]);
5687 ARMOperand &Op4 = static_cast<ARMOperand &>(*Operands[4]);
5688 ARMOperand &Op5 = static_cast<ARMOperand &>(*Operands[5]);
5689
5690 // If both registers are the same then remove one of them from
5691 // the operand list.
5692 if (Op3.isReg() && Op4.isReg() && Op3.getReg() == Op4.getReg()) {
5693 // If 3rd operand (variable Op5) is a register and the instruction is adds/sub
5694 // then do not transform as the backend already handles this instruction
5695 // correctly.
5696 if (!Op5.isReg() || !((Mnemonic == "add" && CarrySetting) || Mnemonic == "sub")) {
5697 Operands.erase(Operands.begin() + 3);
5698 if (Mnemonic == "add" && !CarrySetting) {
5699 // Special case for 'add' (not 'adds') instruction must
5700 // remove the CCOut operand as well.
5701 Operands.erase(Operands.begin() + 1);
5702 }
5703 }
5704 }
5705 }
5706
5707 // If instruction is 'add' and first two register operands
5708 // use SP register, then remove one of the SP registers from
5709 // the instruction.
5710 // FIXME: We would really like to be able to tablegen'erate this.
5711 if (isThumbOne() && Operands.size() == 5 && Mnemonic == "add" && !CarrySetting) {
5712 ARMOperand &Op2 = static_cast<ARMOperand &>(*Operands[2]);
5713 ARMOperand &Op3 = static_cast<ARMOperand &>(*Operands[3]);
5714 if (Op2.isReg() && Op3.isReg() && Op2.getReg() == ARM::SP && Op3.getReg() == ARM::SP) {
5715 Operands.erase(Operands.begin() + 2);
5716 }
5717 }
5718
Saleem Abdulrasoole6e6d712014-01-10 04:38:35 +00005719 // GNU Assembler extension (compatibility)
Stepan Dyatkovskiy3f1fa3d2014-04-04 10:17:56 +00005720 if ((Mnemonic == "ldrd" || Mnemonic == "strd")) {
David Blaikie960ea3f2014-06-08 16:18:35 +00005721 ARMOperand &Op2 = static_cast<ARMOperand &>(*Operands[2]);
5722 ARMOperand &Op3 = static_cast<ARMOperand &>(*Operands[3]);
5723 if (Op3.isMem()) {
5724 assert(Op2.isReg() && "expected register argument");
Stepan Dyatkovskiy6207a4d2014-04-03 11:29:15 +00005725
Stepan Dyatkovskiy3f1fa3d2014-04-04 10:17:56 +00005726 unsigned SuperReg = MRI->getMatchingSuperReg(
David Blaikie960ea3f2014-06-08 16:18:35 +00005727 Op2.getReg(), ARM::gsub_0, &MRI->getRegClass(ARM::GPRPairRegClassID));
Stepan Dyatkovskiy6207a4d2014-04-03 11:29:15 +00005728
Stepan Dyatkovskiy3f1fa3d2014-04-04 10:17:56 +00005729 assert(SuperReg && "expected register pair");
Stepan Dyatkovskiy6207a4d2014-04-03 11:29:15 +00005730
Stepan Dyatkovskiy3f1fa3d2014-04-04 10:17:56 +00005731 unsigned PairedReg = MRI->getSubReg(SuperReg, ARM::gsub_1);
Stepan Dyatkovskiy6207a4d2014-04-03 11:29:15 +00005732
David Blaikie960ea3f2014-06-08 16:18:35 +00005733 Operands.insert(
5734 Operands.begin() + 3,
5735 ARMOperand::CreateReg(PairedReg, Op2.getStartLoc(), Op2.getEndLoc()));
Stepan Dyatkovskiy3f1fa3d2014-04-04 10:17:56 +00005736 }
Saleem Abdulrasoole6e6d712014-01-10 04:38:35 +00005737 }
5738
Kevin Enderby78f95722013-07-31 21:05:30 +00005739 // FIXME: As said above, this is all a pretty gross hack. This instruction
5740 // does not fit with other "subs" and tblgen.
5741 // Adjust operands of B9.3.19 SUBS PC, LR, #imm (Thumb2) system instruction
5742 // so the Mnemonic is the original name "subs" and delete the predicate
5743 // operand so it will match the table entry.
5744 if (isThumbTwo() && Mnemonic == "sub" && Operands.size() == 6 &&
David Blaikie960ea3f2014-06-08 16:18:35 +00005745 static_cast<ARMOperand &>(*Operands[3]).isReg() &&
5746 static_cast<ARMOperand &>(*Operands[3]).getReg() == ARM::PC &&
5747 static_cast<ARMOperand &>(*Operands[4]).isReg() &&
5748 static_cast<ARMOperand &>(*Operands[4]).getReg() == ARM::LR &&
5749 static_cast<ARMOperand &>(*Operands[5]).isImm()) {
5750 Operands.front() = ARMOperand::CreateToken(Name, NameLoc);
Kevin Enderby78f95722013-07-31 21:05:30 +00005751 Operands.erase(Operands.begin() + 1);
Kevin Enderby78f95722013-07-31 21:05:30 +00005752 }
Chris Lattnerf29c0b62010-01-14 22:21:20 +00005753 return false;
Kevin Enderbyccab3172009-09-15 00:27:25 +00005754}
5755
Jim Grosbachedaa35a2011-07-26 18:25:39 +00005756// Validate context-sensitive operand constraints.
Jim Grosbach169b2be2011-08-23 18:13:04 +00005757
5758// return 'true' if register list contains non-low GPR registers,
5759// 'false' otherwise. If Reg is in the register list or is HiReg, set
5760// 'containsReg' to true.
5761static bool checkLowRegisterList(MCInst Inst, unsigned OpNo, unsigned Reg,
5762 unsigned HiReg, bool &containsReg) {
5763 containsReg = false;
5764 for (unsigned i = OpNo; i < Inst.getNumOperands(); ++i) {
5765 unsigned OpReg = Inst.getOperand(i).getReg();
5766 if (OpReg == Reg)
5767 containsReg = true;
5768 // Anything other than a low register isn't legal here.
5769 if (!isARMLowRegister(OpReg) && (!HiReg || OpReg != HiReg))
5770 return true;
5771 }
5772 return false;
5773}
5774
Jim Grosbacha31f2232011-09-07 18:05:34 +00005775// Check if the specified regisgter is in the register list of the inst,
5776// starting at the indicated operand number.
5777static bool listContainsReg(MCInst &Inst, unsigned OpNo, unsigned Reg) {
5778 for (unsigned i = OpNo; i < Inst.getNumOperands(); ++i) {
5779 unsigned OpReg = Inst.getOperand(i).getReg();
5780 if (OpReg == Reg)
5781 return true;
5782 }
5783 return false;
5784}
5785
Richard Barton8d519fe2013-09-05 14:14:19 +00005786// Return true if instruction has the interesting property of being
5787// allowed in IT blocks, but not being predicable.
5788static bool instIsBreakpoint(const MCInst &Inst) {
5789 return Inst.getOpcode() == ARM::tBKPT ||
5790 Inst.getOpcode() == ARM::BKPT ||
5791 Inst.getOpcode() == ARM::tHLT ||
5792 Inst.getOpcode() == ARM::HLT;
5793
5794}
5795
Jim Grosbachedaa35a2011-07-26 18:25:39 +00005796// FIXME: We would really like to be able to tablegen'erate this.
David Blaikie960ea3f2014-06-08 16:18:35 +00005797bool ARMAsmParser::validateInstruction(MCInst &Inst,
5798 const OperandVector &Operands) {
Joey Gouly0e76fa72013-09-12 10:28:05 +00005799 const MCInstrDesc &MCID = MII.get(Inst.getOpcode());
Jim Grosbached16ec42011-08-29 22:24:09 +00005800 SMLoc Loc = Operands[0]->getStartLoc();
Mihai Popaad18d3c2013-08-09 10:38:32 +00005801
Jim Grosbached16ec42011-08-29 22:24:09 +00005802 // Check the IT block state first.
Richard Barton8d519fe2013-09-05 14:14:19 +00005803 // NOTE: BKPT and HLT instructions have the interesting property of being
Tilmann Schellerbe904772013-09-30 17:57:30 +00005804 // allowed in IT blocks, but not being predicable. They just always execute.
Richard Barton8d519fe2013-09-05 14:14:19 +00005805 if (inITBlock() && !instIsBreakpoint(Inst)) {
Tilmann Schellerbe904772013-09-30 17:57:30 +00005806 unsigned Bit = 1;
Jim Grosbached16ec42011-08-29 22:24:09 +00005807 if (ITState.FirstCond)
5808 ITState.FirstCond = false;
5809 else
Tilmann Schellerbe904772013-09-30 17:57:30 +00005810 Bit = (ITState.Mask >> (5 - ITState.CurPosition)) & 1;
Jim Grosbached16ec42011-08-29 22:24:09 +00005811 // The instruction must be predicable.
5812 if (!MCID.isPredicable())
5813 return Error(Loc, "instructions in IT block must be predicable");
5814 unsigned Cond = Inst.getOperand(MCID.findFirstPredOperandIdx()).getImm();
Tilmann Schellerbe904772013-09-30 17:57:30 +00005815 unsigned ITCond = Bit ? ITState.Cond :
Jim Grosbached16ec42011-08-29 22:24:09 +00005816 ARMCC::getOppositeCondition(ITState.Cond);
5817 if (Cond != ITCond) {
5818 // Find the condition code Operand to get its SMLoc information.
5819 SMLoc CondLoc;
Tilmann Schellerbe904772013-09-30 17:57:30 +00005820 for (unsigned I = 1; I < Operands.size(); ++I)
David Blaikie960ea3f2014-06-08 16:18:35 +00005821 if (static_cast<ARMOperand &>(*Operands[I]).isCondCode())
Tilmann Schellerbe904772013-09-30 17:57:30 +00005822 CondLoc = Operands[I]->getStartLoc();
Jim Grosbached16ec42011-08-29 22:24:09 +00005823 return Error(CondLoc, "incorrect condition in IT block; got '" +
5824 StringRef(ARMCondCodeToString(ARMCC::CondCodes(Cond))) +
5825 "', but expected '" +
5826 ARMCondCodeToString(ARMCC::CondCodes(ITCond)) + "'");
5827 }
Jim Grosbachc61fc8f2011-08-31 18:29:05 +00005828 // Check for non-'al' condition codes outside of the IT block.
Jim Grosbached16ec42011-08-29 22:24:09 +00005829 } else if (isThumbTwo() && MCID.isPredicable() &&
5830 Inst.getOperand(MCID.findFirstPredOperandIdx()).getImm() !=
Mihai Popaad18d3c2013-08-09 10:38:32 +00005831 ARMCC::AL && Inst.getOpcode() != ARM::tBcc &&
5832 Inst.getOpcode() != ARM::t2Bcc)
Jim Grosbached16ec42011-08-29 22:24:09 +00005833 return Error(Loc, "predicated instructions must be in IT block");
5834
Tilmann Scheller255722b2013-09-30 16:11:48 +00005835 const unsigned Opcode = Inst.getOpcode();
5836 switch (Opcode) {
Jim Grosbach5b96b802011-08-10 20:29:19 +00005837 case ARM::LDRD:
5838 case ARM::LDRD_PRE:
Weiming Zhao8f56f882012-11-16 21:55:34 +00005839 case ARM::LDRD_POST: {
Tilmann Scheller255722b2013-09-30 16:11:48 +00005840 const unsigned RtReg = Inst.getOperand(0).getReg();
5841
Tilmann Scheller1aebfa02013-09-27 13:28:17 +00005842 // Rt can't be R14.
5843 if (RtReg == ARM::LR)
5844 return Error(Operands[3]->getStartLoc(),
5845 "Rt can't be R14");
Tilmann Scheller255722b2013-09-30 16:11:48 +00005846
5847 const unsigned Rt = MRI->getEncodingValue(RtReg);
Tilmann Scheller1aebfa02013-09-27 13:28:17 +00005848 // Rt must be even-numbered.
5849 if ((Rt & 1) == 1)
5850 return Error(Operands[3]->getStartLoc(),
5851 "Rt must be even-numbered");
Tilmann Scheller255722b2013-09-30 16:11:48 +00005852
Jim Grosbachedaa35a2011-07-26 18:25:39 +00005853 // Rt2 must be Rt + 1.
Tilmann Scheller255722b2013-09-30 16:11:48 +00005854 const unsigned Rt2 = MRI->getEncodingValue(Inst.getOperand(1).getReg());
Jim Grosbachedaa35a2011-07-26 18:25:39 +00005855 if (Rt2 != Rt + 1)
5856 return Error(Operands[3]->getStartLoc(),
5857 "destination operands must be sequential");
Tilmann Scheller255722b2013-09-30 16:11:48 +00005858
5859 if (Opcode == ARM::LDRD_PRE || Opcode == ARM::LDRD_POST) {
5860 const unsigned Rn = MRI->getEncodingValue(Inst.getOperand(3).getReg());
5861 // For addressing modes with writeback, the base register needs to be
5862 // different from the destination registers.
5863 if (Rn == Rt || Rn == Rt2)
5864 return Error(Operands[3]->getStartLoc(),
5865 "base register needs to be different from destination "
5866 "registers");
5867 }
5868
Jim Grosbachedaa35a2011-07-26 18:25:39 +00005869 return false;
5870 }
Tilmann Scheller88c8f162013-09-27 10:30:18 +00005871 case ARM::t2LDRDi8:
5872 case ARM::t2LDRD_PRE:
5873 case ARM::t2LDRD_POST: {
Tilmann Scheller041f7172013-09-27 10:38:11 +00005874 // Rt2 must be different from Rt.
Tilmann Scheller88c8f162013-09-27 10:30:18 +00005875 unsigned Rt = MRI->getEncodingValue(Inst.getOperand(0).getReg());
5876 unsigned Rt2 = MRI->getEncodingValue(Inst.getOperand(1).getReg());
5877 if (Rt2 == Rt)
5878 return Error(Operands[3]->getStartLoc(),
5879 "destination operands can't be identical");
5880 return false;
5881 }
Jim Grosbacheb09f492011-08-11 20:28:23 +00005882 case ARM::STRD: {
5883 // Rt2 must be Rt + 1.
Eric Christopher6ac277c2012-08-09 22:10:21 +00005884 unsigned Rt = MRI->getEncodingValue(Inst.getOperand(0).getReg());
5885 unsigned Rt2 = MRI->getEncodingValue(Inst.getOperand(1).getReg());
Jim Grosbacheb09f492011-08-11 20:28:23 +00005886 if (Rt2 != Rt + 1)
5887 return Error(Operands[3]->getStartLoc(),
5888 "source operands must be sequential");
5889 return false;
5890 }
Jim Grosbachf7164b22011-08-10 20:49:18 +00005891 case ARM::STRD_PRE:
Weiming Zhao8f56f882012-11-16 21:55:34 +00005892 case ARM::STRD_POST: {
Jim Grosbachedaa35a2011-07-26 18:25:39 +00005893 // Rt2 must be Rt + 1.
Eric Christopher6ac277c2012-08-09 22:10:21 +00005894 unsigned Rt = MRI->getEncodingValue(Inst.getOperand(1).getReg());
5895 unsigned Rt2 = MRI->getEncodingValue(Inst.getOperand(2).getReg());
Jim Grosbachedaa35a2011-07-26 18:25:39 +00005896 if (Rt2 != Rt + 1)
Jim Grosbacheb09f492011-08-11 20:28:23 +00005897 return Error(Operands[3]->getStartLoc(),
Jim Grosbachedaa35a2011-07-26 18:25:39 +00005898 "source operands must be sequential");
5899 return false;
5900 }
Tilmann Scheller3352a582014-07-23 12:38:17 +00005901 case ARM::STR_PRE_IMM:
5902 case ARM::STR_PRE_REG:
5903 case ARM::STR_POST_IMM:
Tilmann Scheller27272792014-07-23 13:03:47 +00005904 case ARM::STR_POST_REG:
Tilmann Scheller96ef72e2014-07-24 09:55:46 +00005905 case ARM::STRH_PRE:
5906 case ARM::STRH_POST:
Tilmann Scheller27272792014-07-23 13:03:47 +00005907 case ARM::STRB_PRE_IMM:
5908 case ARM::STRB_PRE_REG:
5909 case ARM::STRB_POST_IMM:
5910 case ARM::STRB_POST_REG: {
Tilmann Scheller3352a582014-07-23 12:38:17 +00005911 // Rt must be different from Rn.
5912 const unsigned Rt = MRI->getEncodingValue(Inst.getOperand(1).getReg());
5913 const unsigned Rn = MRI->getEncodingValue(Inst.getOperand(2).getReg());
5914
5915 if (Rt == Rn)
5916 return Error(Operands[3]->getStartLoc(),
5917 "source register and base register can't be identical");
5918 return false;
5919 }
Tilmann Scheller8ba74302014-08-01 11:08:51 +00005920 case ARM::LDR_PRE_IMM:
5921 case ARM::LDR_PRE_REG:
5922 case ARM::LDR_POST_IMM:
Tilmann Scheller8ff079c2014-08-01 11:33:47 +00005923 case ARM::LDR_POST_REG:
5924 case ARM::LDRH_PRE:
5925 case ARM::LDRH_POST:
5926 case ARM::LDRSH_PRE:
Tilmann Scheller7cc0ed42014-08-01 12:08:04 +00005927 case ARM::LDRSH_POST:
5928 case ARM::LDRB_PRE_IMM:
5929 case ARM::LDRB_PRE_REG:
5930 case ARM::LDRB_POST_IMM:
5931 case ARM::LDRB_POST_REG:
5932 case ARM::LDRSB_PRE:
5933 case ARM::LDRSB_POST: {
Tilmann Scheller8ba74302014-08-01 11:08:51 +00005934 // Rt must be different from Rn.
5935 const unsigned Rt = MRI->getEncodingValue(Inst.getOperand(0).getReg());
5936 const unsigned Rn = MRI->getEncodingValue(Inst.getOperand(2).getReg());
5937
5938 if (Rt == Rn)
5939 return Error(Operands[3]->getStartLoc(),
5940 "destination register and base register can't be identical");
5941 return false;
5942 }
Jim Grosbach03f56d92011-07-27 21:09:25 +00005943 case ARM::SBFX:
5944 case ARM::UBFX: {
Tilmann Schellerbe904772013-09-30 17:57:30 +00005945 // Width must be in range [1, 32-lsb].
5946 unsigned LSB = Inst.getOperand(2).getImm();
5947 unsigned Widthm1 = Inst.getOperand(3).getImm();
5948 if (Widthm1 >= 32 - LSB)
Jim Grosbach03f56d92011-07-27 21:09:25 +00005949 return Error(Operands[5]->getStartLoc(),
5950 "bitfield width must be in range [1,32-lsb]");
Jim Grosbach64610e52011-08-16 21:42:31 +00005951 return false;
Jim Grosbach03f56d92011-07-27 21:09:25 +00005952 }
Tim Northover08a86602013-10-22 19:00:39 +00005953 // Notionally handles ARM::tLDMIA_UPD too.
Jim Grosbach90103cc2011-08-18 21:50:53 +00005954 case ARM::tLDMIA: {
Jim Grosbacha31f2232011-09-07 18:05:34 +00005955 // If we're parsing Thumb2, the .w variant is available and handles
Tilmann Schellerbe904772013-09-30 17:57:30 +00005956 // most cases that are normally illegal for a Thumb1 LDM instruction.
5957 // We'll make the transformation in processInstruction() if necessary.
Jim Grosbacha31f2232011-09-07 18:05:34 +00005958 //
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00005959 // Thumb LDM instructions are writeback iff the base register is not
Jim Grosbach90103cc2011-08-18 21:50:53 +00005960 // in the register list.
5961 unsigned Rn = Inst.getOperand(0).getReg();
Tilmann Schellerbe904772013-09-30 17:57:30 +00005962 bool HasWritebackToken =
David Blaikie960ea3f2014-06-08 16:18:35 +00005963 (static_cast<ARMOperand &>(*Operands[3]).isToken() &&
5964 static_cast<ARMOperand &>(*Operands[3]).getToken() == "!");
Tilmann Schellerbe904772013-09-30 17:57:30 +00005965 bool ListContainsBase;
5966 if (checkLowRegisterList(Inst, 3, Rn, 0, ListContainsBase) && !isThumbTwo())
5967 return Error(Operands[3 + HasWritebackToken]->getStartLoc(),
Jim Grosbach169b2be2011-08-23 18:13:04 +00005968 "registers must be in range r0-r7");
Jim Grosbach90103cc2011-08-18 21:50:53 +00005969 // If we should have writeback, then there should be a '!' token.
Tilmann Schellerbe904772013-09-30 17:57:30 +00005970 if (!ListContainsBase && !HasWritebackToken && !isThumbTwo())
Jim Grosbach90103cc2011-08-18 21:50:53 +00005971 return Error(Operands[2]->getStartLoc(),
5972 "writeback operator '!' expected");
Jim Grosbacha31f2232011-09-07 18:05:34 +00005973 // If we should not have writeback, there must not be a '!'. This is
5974 // true even for the 32-bit wide encodings.
Tilmann Schellerbe904772013-09-30 17:57:30 +00005975 if (ListContainsBase && HasWritebackToken)
Jim Grosbach139acd22011-08-22 23:01:07 +00005976 return Error(Operands[3]->getStartLoc(),
5977 "writeback operator '!' not allowed when base register "
5978 "in register list");
Jyoti Allur3b686072014-10-22 10:41:14 +00005979 if (listContainsReg(Inst, 3 + HasWritebackToken, ARM::SP))
5980 return Error(Operands[3 + HasWritebackToken]->getStartLoc(),
5981 "SP not allowed in register list");
Jim Grosbach90103cc2011-08-18 21:50:53 +00005982 break;
5983 }
Tim Northover08a86602013-10-22 19:00:39 +00005984 case ARM::LDMIA_UPD:
5985 case ARM::LDMDB_UPD:
5986 case ARM::LDMIB_UPD:
5987 case ARM::LDMDA_UPD:
5988 // ARM variants loading and updating the same register are only officially
5989 // UNPREDICTABLE on v7 upwards. Goodness knows what they did before.
5990 if (!hasV7Ops())
5991 break;
Jyoti Allur3b686072014-10-22 10:41:14 +00005992 if (listContainsReg(Inst, 3, Inst.getOperand(0).getReg()))
5993 return Error(Operands.back()->getStartLoc(),
5994 "writeback register not allowed in register list");
5995 break;
5996 case ARM::t2LDMIA:
5997 case ARM::t2LDMDB:
5998 case ARM::t2STMIA:
5999 case ARM::t2STMDB: {
6000 if (listContainsReg(Inst, 3, ARM::SP))
6001 return Error(Operands.back()->getStartLoc(),
6002 "SP not allowed in register list");
6003 break;
6004 }
Tim Northover08a86602013-10-22 19:00:39 +00006005 case ARM::t2LDMIA_UPD:
6006 case ARM::t2LDMDB_UPD:
6007 case ARM::t2STMIA_UPD:
6008 case ARM::t2STMDB_UPD: {
Jim Grosbacha31f2232011-09-07 18:05:34 +00006009 if (listContainsReg(Inst, 3, Inst.getOperand(0).getReg()))
Tim Northover741e6ef2013-10-24 09:37:18 +00006010 return Error(Operands.back()->getStartLoc(),
6011 "writeback register not allowed in register list");
Jyoti Allur3b686072014-10-22 10:41:14 +00006012
6013 if (listContainsReg(Inst, 4, ARM::SP))
6014 return Error(Operands.back()->getStartLoc(),
6015 "SP not allowed in register list");
Jim Grosbacha31f2232011-09-07 18:05:34 +00006016 break;
6017 }
Tim Northover8eaf1542013-11-12 21:32:41 +00006018 case ARM::sysLDMIA_UPD:
6019 case ARM::sysLDMDA_UPD:
6020 case ARM::sysLDMDB_UPD:
6021 case ARM::sysLDMIB_UPD:
6022 if (!listContainsReg(Inst, 3, ARM::PC))
6023 return Error(Operands[4]->getStartLoc(),
6024 "writeback register only allowed on system LDM "
6025 "if PC in register-list");
6026 break;
6027 case ARM::sysSTMIA_UPD:
6028 case ARM::sysSTMDA_UPD:
6029 case ARM::sysSTMDB_UPD:
6030 case ARM::sysSTMIB_UPD:
6031 return Error(Operands[2]->getStartLoc(),
6032 "system STM cannot have writeback register");
Chad Rosier8513ffb2012-08-30 23:20:38 +00006033 case ARM::tMUL: {
6034 // The second source operand must be the same register as the destination
6035 // operand.
Chad Rosier9d1fc362012-08-31 17:24:10 +00006036 //
6037 // In this case, we must directly check the parsed operands because the
6038 // cvtThumbMultiply() function is written in such a way that it guarantees
6039 // this first statement is always true for the new Inst. Essentially, the
6040 // destination is unconditionally copied into the second source operand
6041 // without checking to see if it matches what we actually parsed.
David Blaikie960ea3f2014-06-08 16:18:35 +00006042 if (Operands.size() == 6 && (((ARMOperand &)*Operands[3]).getReg() !=
6043 ((ARMOperand &)*Operands[5]).getReg()) &&
6044 (((ARMOperand &)*Operands[3]).getReg() !=
6045 ((ARMOperand &)*Operands[4]).getReg())) {
Chad Rosierdb482ef2012-08-30 23:22:05 +00006046 return Error(Operands[3]->getStartLoc(),
6047 "destination register must match source register");
Chad Rosier8513ffb2012-08-30 23:20:38 +00006048 }
6049 break;
6050 }
Jim Grosbach9bded9d2011-11-10 23:17:11 +00006051 // Like for ldm/stm, push and pop have hi-reg handling version in Thumb2,
6052 // so only issue a diagnostic for thumb1. The instructions will be
6053 // switched to the t2 encodings in processInstruction() if necessary.
Jim Grosbach38c59fc2011-08-22 23:17:34 +00006054 case ARM::tPOP: {
Tilmann Schellerbe904772013-09-30 17:57:30 +00006055 bool ListContainsBase;
6056 if (checkLowRegisterList(Inst, 2, 0, ARM::PC, ListContainsBase) &&
Jim Grosbach9bded9d2011-11-10 23:17:11 +00006057 !isThumbTwo())
Jim Grosbach169b2be2011-08-23 18:13:04 +00006058 return Error(Operands[2]->getStartLoc(),
6059 "registers must be in range r0-r7 or pc");
Jim Grosbach38c59fc2011-08-22 23:17:34 +00006060 break;
6061 }
6062 case ARM::tPUSH: {
Tilmann Schellerbe904772013-09-30 17:57:30 +00006063 bool ListContainsBase;
6064 if (checkLowRegisterList(Inst, 2, 0, ARM::LR, ListContainsBase) &&
Jim Grosbach9bded9d2011-11-10 23:17:11 +00006065 !isThumbTwo())
Jim Grosbach169b2be2011-08-23 18:13:04 +00006066 return Error(Operands[2]->getStartLoc(),
6067 "registers must be in range r0-r7 or lr");
Jim Grosbach38c59fc2011-08-22 23:17:34 +00006068 break;
6069 }
Jim Grosbachd80d1692011-08-23 18:15:37 +00006070 case ARM::tSTMIA_UPD: {
Tim Northover08a86602013-10-22 19:00:39 +00006071 bool ListContainsBase, InvalidLowList;
6072 InvalidLowList = checkLowRegisterList(Inst, 4, Inst.getOperand(0).getReg(),
6073 0, ListContainsBase);
6074 if (InvalidLowList && !isThumbTwo())
Jim Grosbachd80d1692011-08-23 18:15:37 +00006075 return Error(Operands[4]->getStartLoc(),
6076 "registers must be in range r0-r7");
Tim Northover08a86602013-10-22 19:00:39 +00006077
6078 // This would be converted to a 32-bit stm, but that's not valid if the
6079 // writeback register is in the list.
6080 if (InvalidLowList && ListContainsBase)
6081 return Error(Operands[4]->getStartLoc(),
6082 "writeback operator '!' not allowed when base register "
6083 "in register list");
Jyoti Allur3b686072014-10-22 10:41:14 +00006084 if (listContainsReg(Inst, 4, ARM::SP) && !inITBlock())
6085 return Error(Operands.back()->getStartLoc(),
6086 "SP not allowed in register list");
Jim Grosbachd80d1692011-08-23 18:15:37 +00006087 break;
6088 }
Jim Grosbachc6f32b32012-04-27 23:51:36 +00006089 case ARM::tADDrSP: {
6090 // If the non-SP source operand and the destination operand are not the
6091 // same, we need thumb2 (for the wide encoding), or we have an error.
6092 if (!isThumbTwo() &&
6093 Inst.getOperand(0).getReg() != Inst.getOperand(2).getReg()) {
6094 return Error(Operands[4]->getStartLoc(),
6095 "source register must be the same as destination");
6096 }
6097 break;
6098 }
Tilmann Schellerbe904772013-09-30 17:57:30 +00006099 // Final range checking for Thumb unconditional branch instructions.
Mihai Popaad18d3c2013-08-09 10:38:32 +00006100 case ARM::tB:
David Blaikie960ea3f2014-06-08 16:18:35 +00006101 if (!(static_cast<ARMOperand &>(*Operands[2])).isSignedOffset<11, 1>())
Tilmann Schellerbe904772013-09-30 17:57:30 +00006102 return Error(Operands[2]->getStartLoc(), "branch target out of range");
Mihai Popaad18d3c2013-08-09 10:38:32 +00006103 break;
6104 case ARM::t2B: {
6105 int op = (Operands[2]->isImm()) ? 2 : 3;
David Blaikie960ea3f2014-06-08 16:18:35 +00006106 if (!static_cast<ARMOperand &>(*Operands[op]).isSignedOffset<24, 1>())
Tilmann Schellerbe904772013-09-30 17:57:30 +00006107 return Error(Operands[op]->getStartLoc(), "branch target out of range");
Mihai Popaad18d3c2013-08-09 10:38:32 +00006108 break;
6109 }
Tilmann Schellerbe904772013-09-30 17:57:30 +00006110 // Final range checking for Thumb conditional branch instructions.
Mihai Popaad18d3c2013-08-09 10:38:32 +00006111 case ARM::tBcc:
David Blaikie960ea3f2014-06-08 16:18:35 +00006112 if (!static_cast<ARMOperand &>(*Operands[2]).isSignedOffset<8, 1>())
Tilmann Schellerbe904772013-09-30 17:57:30 +00006113 return Error(Operands[2]->getStartLoc(), "branch target out of range");
Mihai Popaad18d3c2013-08-09 10:38:32 +00006114 break;
6115 case ARM::t2Bcc: {
Tilmann Schellerbe904772013-09-30 17:57:30 +00006116 int Op = (Operands[2]->isImm()) ? 2 : 3;
David Blaikie960ea3f2014-06-08 16:18:35 +00006117 if (!static_cast<ARMOperand &>(*Operands[Op]).isSignedOffset<20, 1>())
Tilmann Schellerbe904772013-09-30 17:57:30 +00006118 return Error(Operands[Op]->getStartLoc(), "branch target out of range");
Mihai Popaad18d3c2013-08-09 10:38:32 +00006119 break;
6120 }
Kevin Enderbyb7e51f62014-04-18 23:06:39 +00006121 case ARM::MOVi16:
6122 case ARM::t2MOVi16:
6123 case ARM::t2MOVTi16:
6124 {
6125 // We want to avoid misleadingly allowing something like "mov r0, <symbol>"
6126 // especially when we turn it into a movw and the expression <symbol> does
6127 // not have a :lower16: or :upper16 as part of the expression. We don't
6128 // want the behavior of silently truncating, which can be unexpected and
6129 // lead to bugs that are difficult to find since this is an easy mistake
6130 // to make.
6131 int i = (Operands[3]->isImm()) ? 3 : 4;
David Blaikie960ea3f2014-06-08 16:18:35 +00006132 ARMOperand &Op = static_cast<ARMOperand &>(*Operands[i]);
6133 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Op.getImm());
Kevin Enderbyb7e51f62014-04-18 23:06:39 +00006134 if (CE) break;
David Blaikie960ea3f2014-06-08 16:18:35 +00006135 const MCExpr *E = dyn_cast<MCExpr>(Op.getImm());
Kevin Enderbyb7e51f62014-04-18 23:06:39 +00006136 if (!E) break;
6137 const ARMMCExpr *ARM16Expr = dyn_cast<ARMMCExpr>(E);
6138 if (!ARM16Expr || (ARM16Expr->getKind() != ARMMCExpr::VK_ARM_HI16 &&
David Blaikie960ea3f2014-06-08 16:18:35 +00006139 ARM16Expr->getKind() != ARMMCExpr::VK_ARM_LO16))
6140 return Error(
6141 Op.getStartLoc(),
6142 "immediate expression for mov requires :lower16: or :upper16");
6143 break;
6144 }
Jim Grosbachedaa35a2011-07-26 18:25:39 +00006145 }
6146
6147 return false;
6148}
6149
Jim Grosbach1a747242012-01-23 23:45:44 +00006150static unsigned getRealVSTOpcode(unsigned Opc, unsigned &Spacing) {
Jim Grosbacheb538222011-12-02 22:34:51 +00006151 switch(Opc) {
Craig Toppere55c5562012-02-07 02:50:20 +00006152 default: llvm_unreachable("unexpected opcode!");
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006153 // VST1LN
Jim Grosbach1e946a42012-01-24 00:43:12 +00006154 case ARM::VST1LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VST1LNd8_UPD;
6155 case ARM::VST1LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VST1LNd16_UPD;
6156 case ARM::VST1LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VST1LNd32_UPD;
6157 case ARM::VST1LNdWB_register_Asm_8: Spacing = 1; return ARM::VST1LNd8_UPD;
6158 case ARM::VST1LNdWB_register_Asm_16: Spacing = 1; return ARM::VST1LNd16_UPD;
6159 case ARM::VST1LNdWB_register_Asm_32: Spacing = 1; return ARM::VST1LNd32_UPD;
6160 case ARM::VST1LNdAsm_8: Spacing = 1; return ARM::VST1LNd8;
6161 case ARM::VST1LNdAsm_16: Spacing = 1; return ARM::VST1LNd16;
6162 case ARM::VST1LNdAsm_32: Spacing = 1; return ARM::VST1LNd32;
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006163
6164 // VST2LN
Jim Grosbach1e946a42012-01-24 00:43:12 +00006165 case ARM::VST2LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VST2LNd8_UPD;
6166 case ARM::VST2LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VST2LNd16_UPD;
6167 case ARM::VST2LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VST2LNd32_UPD;
6168 case ARM::VST2LNqWB_fixed_Asm_16: Spacing = 2; return ARM::VST2LNq16_UPD;
6169 case ARM::VST2LNqWB_fixed_Asm_32: Spacing = 2; return ARM::VST2LNq32_UPD;
Jim Grosbach2c590522011-12-20 20:46:29 +00006170
Jim Grosbach1e946a42012-01-24 00:43:12 +00006171 case ARM::VST2LNdWB_register_Asm_8: Spacing = 1; return ARM::VST2LNd8_UPD;
6172 case ARM::VST2LNdWB_register_Asm_16: Spacing = 1; return ARM::VST2LNd16_UPD;
6173 case ARM::VST2LNdWB_register_Asm_32: Spacing = 1; return ARM::VST2LNd32_UPD;
6174 case ARM::VST2LNqWB_register_Asm_16: Spacing = 2; return ARM::VST2LNq16_UPD;
6175 case ARM::VST2LNqWB_register_Asm_32: Spacing = 2; return ARM::VST2LNq32_UPD;
Jim Grosbach2c590522011-12-20 20:46:29 +00006176
Jim Grosbach1e946a42012-01-24 00:43:12 +00006177 case ARM::VST2LNdAsm_8: Spacing = 1; return ARM::VST2LNd8;
6178 case ARM::VST2LNdAsm_16: Spacing = 1; return ARM::VST2LNd16;
6179 case ARM::VST2LNdAsm_32: Spacing = 1; return ARM::VST2LNd32;
6180 case ARM::VST2LNqAsm_16: Spacing = 2; return ARM::VST2LNq16;
6181 case ARM::VST2LNqAsm_32: Spacing = 2; return ARM::VST2LNq32;
Jim Grosbach1a747242012-01-23 23:45:44 +00006182
Jim Grosbachd3d36d92012-01-24 00:07:41 +00006183 // VST3LN
Jim Grosbach1e946a42012-01-24 00:43:12 +00006184 case ARM::VST3LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VST3LNd8_UPD;
6185 case ARM::VST3LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VST3LNd16_UPD;
6186 case ARM::VST3LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VST3LNd32_UPD;
6187 case ARM::VST3LNqWB_fixed_Asm_16: Spacing = 1; return ARM::VST3LNq16_UPD;
6188 case ARM::VST3LNqWB_fixed_Asm_32: Spacing = 2; return ARM::VST3LNq32_UPD;
6189 case ARM::VST3LNdWB_register_Asm_8: Spacing = 1; return ARM::VST3LNd8_UPD;
6190 case ARM::VST3LNdWB_register_Asm_16: Spacing = 1; return ARM::VST3LNd16_UPD;
6191 case ARM::VST3LNdWB_register_Asm_32: Spacing = 1; return ARM::VST3LNd32_UPD;
6192 case ARM::VST3LNqWB_register_Asm_16: Spacing = 2; return ARM::VST3LNq16_UPD;
6193 case ARM::VST3LNqWB_register_Asm_32: Spacing = 2; return ARM::VST3LNq32_UPD;
6194 case ARM::VST3LNdAsm_8: Spacing = 1; return ARM::VST3LNd8;
6195 case ARM::VST3LNdAsm_16: Spacing = 1; return ARM::VST3LNd16;
6196 case ARM::VST3LNdAsm_32: Spacing = 1; return ARM::VST3LNd32;
6197 case ARM::VST3LNqAsm_16: Spacing = 2; return ARM::VST3LNq16;
6198 case ARM::VST3LNqAsm_32: Spacing = 2; return ARM::VST3LNq32;
Jim Grosbachd3d36d92012-01-24 00:07:41 +00006199
Jim Grosbach1a747242012-01-23 23:45:44 +00006200 // VST3
Jim Grosbach1e946a42012-01-24 00:43:12 +00006201 case ARM::VST3dWB_fixed_Asm_8: Spacing = 1; return ARM::VST3d8_UPD;
6202 case ARM::VST3dWB_fixed_Asm_16: Spacing = 1; return ARM::VST3d16_UPD;
6203 case ARM::VST3dWB_fixed_Asm_32: Spacing = 1; return ARM::VST3d32_UPD;
6204 case ARM::VST3qWB_fixed_Asm_8: Spacing = 2; return ARM::VST3q8_UPD;
6205 case ARM::VST3qWB_fixed_Asm_16: Spacing = 2; return ARM::VST3q16_UPD;
6206 case ARM::VST3qWB_fixed_Asm_32: Spacing = 2; return ARM::VST3q32_UPD;
6207 case ARM::VST3dWB_register_Asm_8: Spacing = 1; return ARM::VST3d8_UPD;
6208 case ARM::VST3dWB_register_Asm_16: Spacing = 1; return ARM::VST3d16_UPD;
6209 case ARM::VST3dWB_register_Asm_32: Spacing = 1; return ARM::VST3d32_UPD;
6210 case ARM::VST3qWB_register_Asm_8: Spacing = 2; return ARM::VST3q8_UPD;
6211 case ARM::VST3qWB_register_Asm_16: Spacing = 2; return ARM::VST3q16_UPD;
6212 case ARM::VST3qWB_register_Asm_32: Spacing = 2; return ARM::VST3q32_UPD;
6213 case ARM::VST3dAsm_8: Spacing = 1; return ARM::VST3d8;
6214 case ARM::VST3dAsm_16: Spacing = 1; return ARM::VST3d16;
6215 case ARM::VST3dAsm_32: Spacing = 1; return ARM::VST3d32;
6216 case ARM::VST3qAsm_8: Spacing = 2; return ARM::VST3q8;
6217 case ARM::VST3qAsm_16: Spacing = 2; return ARM::VST3q16;
6218 case ARM::VST3qAsm_32: Spacing = 2; return ARM::VST3q32;
Jim Grosbachda70eac2012-01-24 00:58:13 +00006219
Jim Grosbach8e2722c2012-01-24 18:53:13 +00006220 // VST4LN
6221 case ARM::VST4LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VST4LNd8_UPD;
6222 case ARM::VST4LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VST4LNd16_UPD;
6223 case ARM::VST4LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VST4LNd32_UPD;
6224 case ARM::VST4LNqWB_fixed_Asm_16: Spacing = 1; return ARM::VST4LNq16_UPD;
6225 case ARM::VST4LNqWB_fixed_Asm_32: Spacing = 2; return ARM::VST4LNq32_UPD;
6226 case ARM::VST4LNdWB_register_Asm_8: Spacing = 1; return ARM::VST4LNd8_UPD;
6227 case ARM::VST4LNdWB_register_Asm_16: Spacing = 1; return ARM::VST4LNd16_UPD;
6228 case ARM::VST4LNdWB_register_Asm_32: Spacing = 1; return ARM::VST4LNd32_UPD;
6229 case ARM::VST4LNqWB_register_Asm_16: Spacing = 2; return ARM::VST4LNq16_UPD;
6230 case ARM::VST4LNqWB_register_Asm_32: Spacing = 2; return ARM::VST4LNq32_UPD;
6231 case ARM::VST4LNdAsm_8: Spacing = 1; return ARM::VST4LNd8;
6232 case ARM::VST4LNdAsm_16: Spacing = 1; return ARM::VST4LNd16;
6233 case ARM::VST4LNdAsm_32: Spacing = 1; return ARM::VST4LNd32;
6234 case ARM::VST4LNqAsm_16: Spacing = 2; return ARM::VST4LNq16;
6235 case ARM::VST4LNqAsm_32: Spacing = 2; return ARM::VST4LNq32;
6236
Jim Grosbachda70eac2012-01-24 00:58:13 +00006237 // VST4
6238 case ARM::VST4dWB_fixed_Asm_8: Spacing = 1; return ARM::VST4d8_UPD;
6239 case ARM::VST4dWB_fixed_Asm_16: Spacing = 1; return ARM::VST4d16_UPD;
6240 case ARM::VST4dWB_fixed_Asm_32: Spacing = 1; return ARM::VST4d32_UPD;
6241 case ARM::VST4qWB_fixed_Asm_8: Spacing = 2; return ARM::VST4q8_UPD;
6242 case ARM::VST4qWB_fixed_Asm_16: Spacing = 2; return ARM::VST4q16_UPD;
6243 case ARM::VST4qWB_fixed_Asm_32: Spacing = 2; return ARM::VST4q32_UPD;
6244 case ARM::VST4dWB_register_Asm_8: Spacing = 1; return ARM::VST4d8_UPD;
6245 case ARM::VST4dWB_register_Asm_16: Spacing = 1; return ARM::VST4d16_UPD;
6246 case ARM::VST4dWB_register_Asm_32: Spacing = 1; return ARM::VST4d32_UPD;
6247 case ARM::VST4qWB_register_Asm_8: Spacing = 2; return ARM::VST4q8_UPD;
6248 case ARM::VST4qWB_register_Asm_16: Spacing = 2; return ARM::VST4q16_UPD;
6249 case ARM::VST4qWB_register_Asm_32: Spacing = 2; return ARM::VST4q32_UPD;
6250 case ARM::VST4dAsm_8: Spacing = 1; return ARM::VST4d8;
6251 case ARM::VST4dAsm_16: Spacing = 1; return ARM::VST4d16;
6252 case ARM::VST4dAsm_32: Spacing = 1; return ARM::VST4d32;
6253 case ARM::VST4qAsm_8: Spacing = 2; return ARM::VST4q8;
6254 case ARM::VST4qAsm_16: Spacing = 2; return ARM::VST4q16;
6255 case ARM::VST4qAsm_32: Spacing = 2; return ARM::VST4q32;
Jim Grosbacheb538222011-12-02 22:34:51 +00006256 }
6257}
6258
Jim Grosbach1a747242012-01-23 23:45:44 +00006259static unsigned getRealVLDOpcode(unsigned Opc, unsigned &Spacing) {
Jim Grosbach04945c42011-12-02 00:35:16 +00006260 switch(Opc) {
Craig Toppere55c5562012-02-07 02:50:20 +00006261 default: llvm_unreachable("unexpected opcode!");
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006262 // VLD1LN
Jim Grosbach1e946a42012-01-24 00:43:12 +00006263 case ARM::VLD1LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VLD1LNd8_UPD;
6264 case ARM::VLD1LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VLD1LNd16_UPD;
6265 case ARM::VLD1LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VLD1LNd32_UPD;
6266 case ARM::VLD1LNdWB_register_Asm_8: Spacing = 1; return ARM::VLD1LNd8_UPD;
6267 case ARM::VLD1LNdWB_register_Asm_16: Spacing = 1; return ARM::VLD1LNd16_UPD;
6268 case ARM::VLD1LNdWB_register_Asm_32: Spacing = 1; return ARM::VLD1LNd32_UPD;
6269 case ARM::VLD1LNdAsm_8: Spacing = 1; return ARM::VLD1LNd8;
6270 case ARM::VLD1LNdAsm_16: Spacing = 1; return ARM::VLD1LNd16;
6271 case ARM::VLD1LNdAsm_32: Spacing = 1; return ARM::VLD1LNd32;
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006272
6273 // VLD2LN
Jim Grosbach1e946a42012-01-24 00:43:12 +00006274 case ARM::VLD2LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VLD2LNd8_UPD;
6275 case ARM::VLD2LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VLD2LNd16_UPD;
6276 case ARM::VLD2LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VLD2LNd32_UPD;
6277 case ARM::VLD2LNqWB_fixed_Asm_16: Spacing = 1; return ARM::VLD2LNq16_UPD;
6278 case ARM::VLD2LNqWB_fixed_Asm_32: Spacing = 2; return ARM::VLD2LNq32_UPD;
6279 case ARM::VLD2LNdWB_register_Asm_8: Spacing = 1; return ARM::VLD2LNd8_UPD;
6280 case ARM::VLD2LNdWB_register_Asm_16: Spacing = 1; return ARM::VLD2LNd16_UPD;
6281 case ARM::VLD2LNdWB_register_Asm_32: Spacing = 1; return ARM::VLD2LNd32_UPD;
6282 case ARM::VLD2LNqWB_register_Asm_16: Spacing = 2; return ARM::VLD2LNq16_UPD;
6283 case ARM::VLD2LNqWB_register_Asm_32: Spacing = 2; return ARM::VLD2LNq32_UPD;
6284 case ARM::VLD2LNdAsm_8: Spacing = 1; return ARM::VLD2LNd8;
6285 case ARM::VLD2LNdAsm_16: Spacing = 1; return ARM::VLD2LNd16;
6286 case ARM::VLD2LNdAsm_32: Spacing = 1; return ARM::VLD2LNd32;
6287 case ARM::VLD2LNqAsm_16: Spacing = 2; return ARM::VLD2LNq16;
6288 case ARM::VLD2LNqAsm_32: Spacing = 2; return ARM::VLD2LNq32;
Jim Grosbacha8b444b2012-01-23 21:53:26 +00006289
Jim Grosbachb78403c2012-01-24 23:47:04 +00006290 // VLD3DUP
6291 case ARM::VLD3DUPdWB_fixed_Asm_8: Spacing = 1; return ARM::VLD3DUPd8_UPD;
6292 case ARM::VLD3DUPdWB_fixed_Asm_16: Spacing = 1; return ARM::VLD3DUPd16_UPD;
6293 case ARM::VLD3DUPdWB_fixed_Asm_32: Spacing = 1; return ARM::VLD3DUPd32_UPD;
6294 case ARM::VLD3DUPqWB_fixed_Asm_8: Spacing = 1; return ARM::VLD3DUPq8_UPD;
Kevin Enderbyd88fec32014-04-08 18:00:52 +00006295 case ARM::VLD3DUPqWB_fixed_Asm_16: Spacing = 2; return ARM::VLD3DUPq16_UPD;
Jim Grosbachb78403c2012-01-24 23:47:04 +00006296 case ARM::VLD3DUPqWB_fixed_Asm_32: Spacing = 2; return ARM::VLD3DUPq32_UPD;
6297 case ARM::VLD3DUPdWB_register_Asm_8: Spacing = 1; return ARM::VLD3DUPd8_UPD;
6298 case ARM::VLD3DUPdWB_register_Asm_16: Spacing = 1; return ARM::VLD3DUPd16_UPD;
6299 case ARM::VLD3DUPdWB_register_Asm_32: Spacing = 1; return ARM::VLD3DUPd32_UPD;
6300 case ARM::VLD3DUPqWB_register_Asm_8: Spacing = 2; return ARM::VLD3DUPq8_UPD;
6301 case ARM::VLD3DUPqWB_register_Asm_16: Spacing = 2; return ARM::VLD3DUPq16_UPD;
6302 case ARM::VLD3DUPqWB_register_Asm_32: Spacing = 2; return ARM::VLD3DUPq32_UPD;
6303 case ARM::VLD3DUPdAsm_8: Spacing = 1; return ARM::VLD3DUPd8;
6304 case ARM::VLD3DUPdAsm_16: Spacing = 1; return ARM::VLD3DUPd16;
6305 case ARM::VLD3DUPdAsm_32: Spacing = 1; return ARM::VLD3DUPd32;
6306 case ARM::VLD3DUPqAsm_8: Spacing = 2; return ARM::VLD3DUPq8;
6307 case ARM::VLD3DUPqAsm_16: Spacing = 2; return ARM::VLD3DUPq16;
6308 case ARM::VLD3DUPqAsm_32: Spacing = 2; return ARM::VLD3DUPq32;
6309
Jim Grosbacha8b444b2012-01-23 21:53:26 +00006310 // VLD3LN
Jim Grosbach1e946a42012-01-24 00:43:12 +00006311 case ARM::VLD3LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VLD3LNd8_UPD;
6312 case ARM::VLD3LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VLD3LNd16_UPD;
6313 case ARM::VLD3LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VLD3LNd32_UPD;
6314 case ARM::VLD3LNqWB_fixed_Asm_16: Spacing = 1; return ARM::VLD3LNq16_UPD;
6315 case ARM::VLD3LNqWB_fixed_Asm_32: Spacing = 2; return ARM::VLD3LNq32_UPD;
6316 case ARM::VLD3LNdWB_register_Asm_8: Spacing = 1; return ARM::VLD3LNd8_UPD;
6317 case ARM::VLD3LNdWB_register_Asm_16: Spacing = 1; return ARM::VLD3LNd16_UPD;
6318 case ARM::VLD3LNdWB_register_Asm_32: Spacing = 1; return ARM::VLD3LNd32_UPD;
6319 case ARM::VLD3LNqWB_register_Asm_16: Spacing = 2; return ARM::VLD3LNq16_UPD;
6320 case ARM::VLD3LNqWB_register_Asm_32: Spacing = 2; return ARM::VLD3LNq32_UPD;
6321 case ARM::VLD3LNdAsm_8: Spacing = 1; return ARM::VLD3LNd8;
6322 case ARM::VLD3LNdAsm_16: Spacing = 1; return ARM::VLD3LNd16;
6323 case ARM::VLD3LNdAsm_32: Spacing = 1; return ARM::VLD3LNd32;
6324 case ARM::VLD3LNqAsm_16: Spacing = 2; return ARM::VLD3LNq16;
6325 case ARM::VLD3LNqAsm_32: Spacing = 2; return ARM::VLD3LNq32;
Jim Grosbachac2af3f2012-01-23 23:20:46 +00006326
6327 // VLD3
Jim Grosbach1e946a42012-01-24 00:43:12 +00006328 case ARM::VLD3dWB_fixed_Asm_8: Spacing = 1; return ARM::VLD3d8_UPD;
6329 case ARM::VLD3dWB_fixed_Asm_16: Spacing = 1; return ARM::VLD3d16_UPD;
6330 case ARM::VLD3dWB_fixed_Asm_32: Spacing = 1; return ARM::VLD3d32_UPD;
6331 case ARM::VLD3qWB_fixed_Asm_8: Spacing = 2; return ARM::VLD3q8_UPD;
6332 case ARM::VLD3qWB_fixed_Asm_16: Spacing = 2; return ARM::VLD3q16_UPD;
6333 case ARM::VLD3qWB_fixed_Asm_32: Spacing = 2; return ARM::VLD3q32_UPD;
6334 case ARM::VLD3dWB_register_Asm_8: Spacing = 1; return ARM::VLD3d8_UPD;
6335 case ARM::VLD3dWB_register_Asm_16: Spacing = 1; return ARM::VLD3d16_UPD;
6336 case ARM::VLD3dWB_register_Asm_32: Spacing = 1; return ARM::VLD3d32_UPD;
6337 case ARM::VLD3qWB_register_Asm_8: Spacing = 2; return ARM::VLD3q8_UPD;
6338 case ARM::VLD3qWB_register_Asm_16: Spacing = 2; return ARM::VLD3q16_UPD;
6339 case ARM::VLD3qWB_register_Asm_32: Spacing = 2; return ARM::VLD3q32_UPD;
6340 case ARM::VLD3dAsm_8: Spacing = 1; return ARM::VLD3d8;
6341 case ARM::VLD3dAsm_16: Spacing = 1; return ARM::VLD3d16;
6342 case ARM::VLD3dAsm_32: Spacing = 1; return ARM::VLD3d32;
6343 case ARM::VLD3qAsm_8: Spacing = 2; return ARM::VLD3q8;
6344 case ARM::VLD3qAsm_16: Spacing = 2; return ARM::VLD3q16;
6345 case ARM::VLD3qAsm_32: Spacing = 2; return ARM::VLD3q32;
Jim Grosbached561fc2012-01-24 00:43:17 +00006346
Jim Grosbach14952a02012-01-24 18:37:25 +00006347 // VLD4LN
6348 case ARM::VLD4LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VLD4LNd8_UPD;
6349 case ARM::VLD4LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VLD4LNd16_UPD;
6350 case ARM::VLD4LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VLD4LNd32_UPD;
Kevin Enderby8108f382014-03-26 19:35:40 +00006351 case ARM::VLD4LNqWB_fixed_Asm_16: Spacing = 2; return ARM::VLD4LNq16_UPD;
Jim Grosbach14952a02012-01-24 18:37:25 +00006352 case ARM::VLD4LNqWB_fixed_Asm_32: Spacing = 2; return ARM::VLD4LNq32_UPD;
6353 case ARM::VLD4LNdWB_register_Asm_8: Spacing = 1; return ARM::VLD4LNd8_UPD;
6354 case ARM::VLD4LNdWB_register_Asm_16: Spacing = 1; return ARM::VLD4LNd16_UPD;
6355 case ARM::VLD4LNdWB_register_Asm_32: Spacing = 1; return ARM::VLD4LNd32_UPD;
6356 case ARM::VLD4LNqWB_register_Asm_16: Spacing = 2; return ARM::VLD4LNq16_UPD;
6357 case ARM::VLD4LNqWB_register_Asm_32: Spacing = 2; return ARM::VLD4LNq32_UPD;
6358 case ARM::VLD4LNdAsm_8: Spacing = 1; return ARM::VLD4LNd8;
6359 case ARM::VLD4LNdAsm_16: Spacing = 1; return ARM::VLD4LNd16;
6360 case ARM::VLD4LNdAsm_32: Spacing = 1; return ARM::VLD4LNd32;
6361 case ARM::VLD4LNqAsm_16: Spacing = 2; return ARM::VLD4LNq16;
6362 case ARM::VLD4LNqAsm_32: Spacing = 2; return ARM::VLD4LNq32;
6363
Jim Grosbach086cbfa2012-01-25 00:01:08 +00006364 // VLD4DUP
6365 case ARM::VLD4DUPdWB_fixed_Asm_8: Spacing = 1; return ARM::VLD4DUPd8_UPD;
6366 case ARM::VLD4DUPdWB_fixed_Asm_16: Spacing = 1; return ARM::VLD4DUPd16_UPD;
6367 case ARM::VLD4DUPdWB_fixed_Asm_32: Spacing = 1; return ARM::VLD4DUPd32_UPD;
6368 case ARM::VLD4DUPqWB_fixed_Asm_8: Spacing = 1; return ARM::VLD4DUPq8_UPD;
6369 case ARM::VLD4DUPqWB_fixed_Asm_16: Spacing = 1; return ARM::VLD4DUPq16_UPD;
6370 case ARM::VLD4DUPqWB_fixed_Asm_32: Spacing = 2; return ARM::VLD4DUPq32_UPD;
6371 case ARM::VLD4DUPdWB_register_Asm_8: Spacing = 1; return ARM::VLD4DUPd8_UPD;
6372 case ARM::VLD4DUPdWB_register_Asm_16: Spacing = 1; return ARM::VLD4DUPd16_UPD;
6373 case ARM::VLD4DUPdWB_register_Asm_32: Spacing = 1; return ARM::VLD4DUPd32_UPD;
6374 case ARM::VLD4DUPqWB_register_Asm_8: Spacing = 2; return ARM::VLD4DUPq8_UPD;
6375 case ARM::VLD4DUPqWB_register_Asm_16: Spacing = 2; return ARM::VLD4DUPq16_UPD;
6376 case ARM::VLD4DUPqWB_register_Asm_32: Spacing = 2; return ARM::VLD4DUPq32_UPD;
6377 case ARM::VLD4DUPdAsm_8: Spacing = 1; return ARM::VLD4DUPd8;
6378 case ARM::VLD4DUPdAsm_16: Spacing = 1; return ARM::VLD4DUPd16;
6379 case ARM::VLD4DUPdAsm_32: Spacing = 1; return ARM::VLD4DUPd32;
6380 case ARM::VLD4DUPqAsm_8: Spacing = 2; return ARM::VLD4DUPq8;
6381 case ARM::VLD4DUPqAsm_16: Spacing = 2; return ARM::VLD4DUPq16;
6382 case ARM::VLD4DUPqAsm_32: Spacing = 2; return ARM::VLD4DUPq32;
6383
Jim Grosbached561fc2012-01-24 00:43:17 +00006384 // VLD4
6385 case ARM::VLD4dWB_fixed_Asm_8: Spacing = 1; return ARM::VLD4d8_UPD;
6386 case ARM::VLD4dWB_fixed_Asm_16: Spacing = 1; return ARM::VLD4d16_UPD;
6387 case ARM::VLD4dWB_fixed_Asm_32: Spacing = 1; return ARM::VLD4d32_UPD;
6388 case ARM::VLD4qWB_fixed_Asm_8: Spacing = 2; return ARM::VLD4q8_UPD;
6389 case ARM::VLD4qWB_fixed_Asm_16: Spacing = 2; return ARM::VLD4q16_UPD;
6390 case ARM::VLD4qWB_fixed_Asm_32: Spacing = 2; return ARM::VLD4q32_UPD;
6391 case ARM::VLD4dWB_register_Asm_8: Spacing = 1; return ARM::VLD4d8_UPD;
6392 case ARM::VLD4dWB_register_Asm_16: Spacing = 1; return ARM::VLD4d16_UPD;
6393 case ARM::VLD4dWB_register_Asm_32: Spacing = 1; return ARM::VLD4d32_UPD;
6394 case ARM::VLD4qWB_register_Asm_8: Spacing = 2; return ARM::VLD4q8_UPD;
6395 case ARM::VLD4qWB_register_Asm_16: Spacing = 2; return ARM::VLD4q16_UPD;
6396 case ARM::VLD4qWB_register_Asm_32: Spacing = 2; return ARM::VLD4q32_UPD;
6397 case ARM::VLD4dAsm_8: Spacing = 1; return ARM::VLD4d8;
6398 case ARM::VLD4dAsm_16: Spacing = 1; return ARM::VLD4d16;
6399 case ARM::VLD4dAsm_32: Spacing = 1; return ARM::VLD4d32;
6400 case ARM::VLD4qAsm_8: Spacing = 2; return ARM::VLD4q8;
6401 case ARM::VLD4qAsm_16: Spacing = 2; return ARM::VLD4q16;
6402 case ARM::VLD4qAsm_32: Spacing = 2; return ARM::VLD4q32;
Jim Grosbach04945c42011-12-02 00:35:16 +00006403 }
6404}
6405
David Blaikie960ea3f2014-06-08 16:18:35 +00006406bool ARMAsmParser::processInstruction(MCInst &Inst,
6407 const OperandVector &Operands) {
Jim Grosbach8ba76c62011-08-11 17:35:48 +00006408 switch (Inst.getOpcode()) {
Saleem Abdulrasoolfb3950e2014-01-12 04:36:01 +00006409 // Alias for alternate form of 'ldr{,b}t Rt, [Rn], #imm' instruction.
6410 case ARM::LDRT_POST:
6411 case ARM::LDRBT_POST: {
6412 const unsigned Opcode =
6413 (Inst.getOpcode() == ARM::LDRT_POST) ? ARM::LDRT_POST_IMM
6414 : ARM::LDRBT_POST_IMM;
6415 MCInst TmpInst;
6416 TmpInst.setOpcode(Opcode);
6417 TmpInst.addOperand(Inst.getOperand(0));
6418 TmpInst.addOperand(Inst.getOperand(1));
6419 TmpInst.addOperand(Inst.getOperand(1));
6420 TmpInst.addOperand(MCOperand::CreateReg(0));
6421 TmpInst.addOperand(MCOperand::CreateImm(0));
6422 TmpInst.addOperand(Inst.getOperand(2));
6423 TmpInst.addOperand(Inst.getOperand(3));
6424 Inst = TmpInst;
6425 return true;
6426 }
6427 // Alias for alternate form of 'str{,b}t Rt, [Rn], #imm' instruction.
6428 case ARM::STRT_POST:
6429 case ARM::STRBT_POST: {
6430 const unsigned Opcode =
6431 (Inst.getOpcode() == ARM::STRT_POST) ? ARM::STRT_POST_IMM
6432 : ARM::STRBT_POST_IMM;
6433 MCInst TmpInst;
6434 TmpInst.setOpcode(Opcode);
6435 TmpInst.addOperand(Inst.getOperand(1));
6436 TmpInst.addOperand(Inst.getOperand(0));
6437 TmpInst.addOperand(Inst.getOperand(1));
6438 TmpInst.addOperand(MCOperand::CreateReg(0));
6439 TmpInst.addOperand(MCOperand::CreateImm(0));
6440 TmpInst.addOperand(Inst.getOperand(2));
6441 TmpInst.addOperand(Inst.getOperand(3));
6442 Inst = TmpInst;
6443 return true;
6444 }
Jim Grosbache974a6a2012-09-25 00:08:13 +00006445 // Alias for alternate form of 'ADR Rd, #imm' instruction.
6446 case ARM::ADDri: {
6447 if (Inst.getOperand(1).getReg() != ARM::PC ||
6448 Inst.getOperand(5).getReg() != 0)
6449 return false;
6450 MCInst TmpInst;
6451 TmpInst.setOpcode(ARM::ADR);
6452 TmpInst.addOperand(Inst.getOperand(0));
6453 TmpInst.addOperand(Inst.getOperand(2));
6454 TmpInst.addOperand(Inst.getOperand(3));
6455 TmpInst.addOperand(Inst.getOperand(4));
6456 Inst = TmpInst;
6457 return true;
6458 }
Jim Grosbach94298a92012-01-18 22:46:46 +00006459 // Aliases for alternate PC+imm syntax of LDR instructions.
6460 case ARM::t2LDRpcrel:
Kevin Enderby06aa3eb82012-12-14 23:04:25 +00006461 // Select the narrow version if the immediate will fit.
6462 if (Inst.getOperand(1).getImm() > 0 &&
Amaury de la Vieuvilleeac0bad2013-06-18 08:13:05 +00006463 Inst.getOperand(1).getImm() <= 0xff &&
David Blaikie960ea3f2014-06-08 16:18:35 +00006464 !(static_cast<ARMOperand &>(*Operands[2]).isToken() &&
6465 static_cast<ARMOperand &>(*Operands[2]).getToken() == ".w"))
Kevin Enderby06aa3eb82012-12-14 23:04:25 +00006466 Inst.setOpcode(ARM::tLDRpci);
6467 else
6468 Inst.setOpcode(ARM::t2LDRpci);
Jim Grosbach94298a92012-01-18 22:46:46 +00006469 return true;
6470 case ARM::t2LDRBpcrel:
6471 Inst.setOpcode(ARM::t2LDRBpci);
6472 return true;
6473 case ARM::t2LDRHpcrel:
6474 Inst.setOpcode(ARM::t2LDRHpci);
6475 return true;
6476 case ARM::t2LDRSBpcrel:
6477 Inst.setOpcode(ARM::t2LDRSBpci);
6478 return true;
6479 case ARM::t2LDRSHpcrel:
6480 Inst.setOpcode(ARM::t2LDRSHpci);
6481 return true;
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006482 // Handle NEON VST complex aliases.
Jim Grosbachd28ef9a2012-01-23 19:39:08 +00006483 case ARM::VST1LNdWB_register_Asm_8:
6484 case ARM::VST1LNdWB_register_Asm_16:
6485 case ARM::VST1LNdWB_register_Asm_32: {
Jim Grosbacheb538222011-12-02 22:34:51 +00006486 MCInst TmpInst;
6487 // Shuffle the operands around so the lane index operand is in the
6488 // right place.
Jim Grosbach2c590522011-12-20 20:46:29 +00006489 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00006490 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
Jim Grosbacheb538222011-12-02 22:34:51 +00006491 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
6492 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6493 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6494 TmpInst.addOperand(Inst.getOperand(4)); // Rm
6495 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6496 TmpInst.addOperand(Inst.getOperand(1)); // lane
6497 TmpInst.addOperand(Inst.getOperand(5)); // CondCode
6498 TmpInst.addOperand(Inst.getOperand(6));
6499 Inst = TmpInst;
6500 return true;
6501 }
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006502
Jim Grosbachd28ef9a2012-01-23 19:39:08 +00006503 case ARM::VST2LNdWB_register_Asm_8:
6504 case ARM::VST2LNdWB_register_Asm_16:
6505 case ARM::VST2LNdWB_register_Asm_32:
6506 case ARM::VST2LNqWB_register_Asm_16:
6507 case ARM::VST2LNqWB_register_Asm_32: {
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006508 MCInst TmpInst;
6509 // Shuffle the operands around so the lane index operand is in the
6510 // right place.
Jim Grosbach2c590522011-12-20 20:46:29 +00006511 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00006512 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006513 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
6514 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6515 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6516 TmpInst.addOperand(Inst.getOperand(4)); // Rm
6517 TmpInst.addOperand(Inst.getOperand(0)); // Vd
Jim Grosbach2c590522011-12-20 20:46:29 +00006518 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6519 Spacing));
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006520 TmpInst.addOperand(Inst.getOperand(1)); // lane
6521 TmpInst.addOperand(Inst.getOperand(5)); // CondCode
6522 TmpInst.addOperand(Inst.getOperand(6));
6523 Inst = TmpInst;
6524 return true;
6525 }
Jim Grosbachd3d36d92012-01-24 00:07:41 +00006526
6527 case ARM::VST3LNdWB_register_Asm_8:
6528 case ARM::VST3LNdWB_register_Asm_16:
6529 case ARM::VST3LNdWB_register_Asm_32:
6530 case ARM::VST3LNqWB_register_Asm_16:
6531 case ARM::VST3LNqWB_register_Asm_32: {
6532 MCInst TmpInst;
6533 // Shuffle the operands around so the lane index operand is in the
6534 // right place.
6535 unsigned Spacing;
6536 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
6537 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
6538 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6539 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6540 TmpInst.addOperand(Inst.getOperand(4)); // Rm
6541 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6542 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6543 Spacing));
6544 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6545 Spacing * 2));
6546 TmpInst.addOperand(Inst.getOperand(1)); // lane
6547 TmpInst.addOperand(Inst.getOperand(5)); // CondCode
6548 TmpInst.addOperand(Inst.getOperand(6));
6549 Inst = TmpInst;
6550 return true;
6551 }
6552
Jim Grosbach8e2722c2012-01-24 18:53:13 +00006553 case ARM::VST4LNdWB_register_Asm_8:
6554 case ARM::VST4LNdWB_register_Asm_16:
6555 case ARM::VST4LNdWB_register_Asm_32:
6556 case ARM::VST4LNqWB_register_Asm_16:
6557 case ARM::VST4LNqWB_register_Asm_32: {
6558 MCInst TmpInst;
6559 // Shuffle the operands around so the lane index operand is in the
6560 // right place.
6561 unsigned Spacing;
6562 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
6563 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
6564 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6565 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6566 TmpInst.addOperand(Inst.getOperand(4)); // Rm
6567 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6568 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6569 Spacing));
6570 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6571 Spacing * 2));
6572 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6573 Spacing * 3));
6574 TmpInst.addOperand(Inst.getOperand(1)); // lane
6575 TmpInst.addOperand(Inst.getOperand(5)); // CondCode
6576 TmpInst.addOperand(Inst.getOperand(6));
6577 Inst = TmpInst;
6578 return true;
6579 }
6580
Jim Grosbachd28ef9a2012-01-23 19:39:08 +00006581 case ARM::VST1LNdWB_fixed_Asm_8:
6582 case ARM::VST1LNdWB_fixed_Asm_16:
6583 case ARM::VST1LNdWB_fixed_Asm_32: {
Jim Grosbacheb538222011-12-02 22:34:51 +00006584 MCInst TmpInst;
6585 // Shuffle the operands around so the lane index operand is in the
6586 // right place.
Jim Grosbach2c590522011-12-20 20:46:29 +00006587 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00006588 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
Jim Grosbacheb538222011-12-02 22:34:51 +00006589 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
6590 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6591 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6592 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
6593 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6594 TmpInst.addOperand(Inst.getOperand(1)); // lane
6595 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6596 TmpInst.addOperand(Inst.getOperand(5));
6597 Inst = TmpInst;
6598 return true;
6599 }
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006600
Jim Grosbachd28ef9a2012-01-23 19:39:08 +00006601 case ARM::VST2LNdWB_fixed_Asm_8:
6602 case ARM::VST2LNdWB_fixed_Asm_16:
6603 case ARM::VST2LNdWB_fixed_Asm_32:
6604 case ARM::VST2LNqWB_fixed_Asm_16:
6605 case ARM::VST2LNqWB_fixed_Asm_32: {
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006606 MCInst TmpInst;
6607 // Shuffle the operands around so the lane index operand is in the
6608 // right place.
Jim Grosbach2c590522011-12-20 20:46:29 +00006609 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00006610 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006611 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
6612 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6613 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6614 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
6615 TmpInst.addOperand(Inst.getOperand(0)); // Vd
Jim Grosbach2c590522011-12-20 20:46:29 +00006616 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6617 Spacing));
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006618 TmpInst.addOperand(Inst.getOperand(1)); // lane
6619 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6620 TmpInst.addOperand(Inst.getOperand(5));
6621 Inst = TmpInst;
6622 return true;
6623 }
Jim Grosbachd3d36d92012-01-24 00:07:41 +00006624
6625 case ARM::VST3LNdWB_fixed_Asm_8:
6626 case ARM::VST3LNdWB_fixed_Asm_16:
6627 case ARM::VST3LNdWB_fixed_Asm_32:
6628 case ARM::VST3LNqWB_fixed_Asm_16:
6629 case ARM::VST3LNqWB_fixed_Asm_32: {
6630 MCInst TmpInst;
6631 // Shuffle the operands around so the lane index operand is in the
6632 // right place.
6633 unsigned Spacing;
6634 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
6635 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
6636 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6637 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6638 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
6639 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6640 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6641 Spacing));
6642 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6643 Spacing * 2));
6644 TmpInst.addOperand(Inst.getOperand(1)); // lane
6645 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6646 TmpInst.addOperand(Inst.getOperand(5));
6647 Inst = TmpInst;
6648 return true;
6649 }
6650
Jim Grosbach8e2722c2012-01-24 18:53:13 +00006651 case ARM::VST4LNdWB_fixed_Asm_8:
6652 case ARM::VST4LNdWB_fixed_Asm_16:
6653 case ARM::VST4LNdWB_fixed_Asm_32:
6654 case ARM::VST4LNqWB_fixed_Asm_16:
6655 case ARM::VST4LNqWB_fixed_Asm_32: {
6656 MCInst TmpInst;
6657 // Shuffle the operands around so the lane index operand is in the
6658 // right place.
6659 unsigned Spacing;
6660 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
6661 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
6662 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6663 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6664 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
6665 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6666 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6667 Spacing));
6668 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6669 Spacing * 2));
6670 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6671 Spacing * 3));
6672 TmpInst.addOperand(Inst.getOperand(1)); // lane
6673 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6674 TmpInst.addOperand(Inst.getOperand(5));
6675 Inst = TmpInst;
6676 return true;
6677 }
6678
Jim Grosbachd28ef9a2012-01-23 19:39:08 +00006679 case ARM::VST1LNdAsm_8:
6680 case ARM::VST1LNdAsm_16:
6681 case ARM::VST1LNdAsm_32: {
Jim Grosbacheb538222011-12-02 22:34:51 +00006682 MCInst TmpInst;
6683 // Shuffle the operands around so the lane index operand is in the
6684 // right place.
Jim Grosbach2c590522011-12-20 20:46:29 +00006685 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00006686 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
Jim Grosbacheb538222011-12-02 22:34:51 +00006687 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6688 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6689 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6690 TmpInst.addOperand(Inst.getOperand(1)); // lane
6691 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6692 TmpInst.addOperand(Inst.getOperand(5));
6693 Inst = TmpInst;
6694 return true;
6695 }
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006696
Jim Grosbachd28ef9a2012-01-23 19:39:08 +00006697 case ARM::VST2LNdAsm_8:
6698 case ARM::VST2LNdAsm_16:
6699 case ARM::VST2LNdAsm_32:
6700 case ARM::VST2LNqAsm_16:
6701 case ARM::VST2LNqAsm_32: {
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006702 MCInst TmpInst;
6703 // Shuffle the operands around so the lane index operand is in the
6704 // right place.
Jim Grosbach2c590522011-12-20 20:46:29 +00006705 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00006706 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006707 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6708 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6709 TmpInst.addOperand(Inst.getOperand(0)); // Vd
Jim Grosbach2c590522011-12-20 20:46:29 +00006710 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6711 Spacing));
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006712 TmpInst.addOperand(Inst.getOperand(1)); // lane
6713 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6714 TmpInst.addOperand(Inst.getOperand(5));
6715 Inst = TmpInst;
6716 return true;
6717 }
Jim Grosbachd3d36d92012-01-24 00:07:41 +00006718
6719 case ARM::VST3LNdAsm_8:
6720 case ARM::VST3LNdAsm_16:
6721 case ARM::VST3LNdAsm_32:
6722 case ARM::VST3LNqAsm_16:
6723 case ARM::VST3LNqAsm_32: {
6724 MCInst TmpInst;
6725 // Shuffle the operands around so the lane index operand is in the
6726 // right place.
6727 unsigned Spacing;
6728 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
6729 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6730 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6731 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6732 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6733 Spacing));
6734 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6735 Spacing * 2));
6736 TmpInst.addOperand(Inst.getOperand(1)); // lane
6737 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6738 TmpInst.addOperand(Inst.getOperand(5));
6739 Inst = TmpInst;
6740 return true;
6741 }
6742
Jim Grosbach8e2722c2012-01-24 18:53:13 +00006743 case ARM::VST4LNdAsm_8:
6744 case ARM::VST4LNdAsm_16:
6745 case ARM::VST4LNdAsm_32:
6746 case ARM::VST4LNqAsm_16:
6747 case ARM::VST4LNqAsm_32: {
6748 MCInst TmpInst;
6749 // Shuffle the operands around so the lane index operand is in the
6750 // right place.
6751 unsigned Spacing;
6752 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
6753 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6754 TmpInst.addOperand(Inst.getOperand(3)); // 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(1)); // lane
6763 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6764 TmpInst.addOperand(Inst.getOperand(5));
6765 Inst = TmpInst;
6766 return true;
6767 }
6768
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006769 // Handle NEON VLD complex aliases.
Jim Grosbachd28ef9a2012-01-23 19:39:08 +00006770 case ARM::VLD1LNdWB_register_Asm_8:
6771 case ARM::VLD1LNdWB_register_Asm_16:
6772 case ARM::VLD1LNdWB_register_Asm_32: {
Jim Grosbachdda976b2011-12-02 22:01:52 +00006773 MCInst TmpInst;
6774 // Shuffle the operands around so the lane index operand is in the
6775 // right place.
Jim Grosbach75e2ab52011-12-20 19:21:26 +00006776 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00006777 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbachdda976b2011-12-02 22:01:52 +00006778 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6779 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
6780 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6781 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6782 TmpInst.addOperand(Inst.getOperand(4)); // Rm
6783 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
6784 TmpInst.addOperand(Inst.getOperand(1)); // lane
6785 TmpInst.addOperand(Inst.getOperand(5)); // CondCode
6786 TmpInst.addOperand(Inst.getOperand(6));
6787 Inst = TmpInst;
6788 return true;
6789 }
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006790
Jim Grosbachd28ef9a2012-01-23 19:39:08 +00006791 case ARM::VLD2LNdWB_register_Asm_8:
6792 case ARM::VLD2LNdWB_register_Asm_16:
6793 case ARM::VLD2LNdWB_register_Asm_32:
6794 case ARM::VLD2LNqWB_register_Asm_16:
6795 case ARM::VLD2LNqWB_register_Asm_32: {
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006796 MCInst TmpInst;
6797 // Shuffle the operands around so the lane index operand is in the
6798 // right place.
Jim Grosbach75e2ab52011-12-20 19:21:26 +00006799 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00006800 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006801 TmpInst.addOperand(Inst.getOperand(0)); // Vd
Jim Grosbach75e2ab52011-12-20 19:21:26 +00006802 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6803 Spacing));
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006804 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
6805 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6806 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6807 TmpInst.addOperand(Inst.getOperand(4)); // Rm
6808 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
Jim Grosbach75e2ab52011-12-20 19:21:26 +00006809 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6810 Spacing));
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006811 TmpInst.addOperand(Inst.getOperand(1)); // lane
6812 TmpInst.addOperand(Inst.getOperand(5)); // CondCode
6813 TmpInst.addOperand(Inst.getOperand(6));
6814 Inst = TmpInst;
6815 return true;
6816 }
6817
Jim Grosbacha8b444b2012-01-23 21:53:26 +00006818 case ARM::VLD3LNdWB_register_Asm_8:
6819 case ARM::VLD3LNdWB_register_Asm_16:
6820 case ARM::VLD3LNdWB_register_Asm_32:
6821 case ARM::VLD3LNqWB_register_Asm_16:
6822 case ARM::VLD3LNqWB_register_Asm_32: {
6823 MCInst TmpInst;
6824 // Shuffle the operands around so the lane index operand is in the
6825 // right place.
6826 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00006827 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbacha8b444b2012-01-23 21:53:26 +00006828 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6829 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6830 Spacing));
6831 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
Jim Grosbachac2af3f2012-01-23 23:20:46 +00006832 Spacing * 2));
Jim Grosbacha8b444b2012-01-23 21:53:26 +00006833 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
6834 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6835 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6836 TmpInst.addOperand(Inst.getOperand(4)); // Rm
6837 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
6838 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6839 Spacing));
6840 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
Jim Grosbachac2af3f2012-01-23 23:20:46 +00006841 Spacing * 2));
Jim Grosbacha8b444b2012-01-23 21:53:26 +00006842 TmpInst.addOperand(Inst.getOperand(1)); // lane
6843 TmpInst.addOperand(Inst.getOperand(5)); // CondCode
6844 TmpInst.addOperand(Inst.getOperand(6));
6845 Inst = TmpInst;
6846 return true;
6847 }
6848
Jim Grosbach14952a02012-01-24 18:37:25 +00006849 case ARM::VLD4LNdWB_register_Asm_8:
6850 case ARM::VLD4LNdWB_register_Asm_16:
6851 case ARM::VLD4LNdWB_register_Asm_32:
6852 case ARM::VLD4LNqWB_register_Asm_16:
6853 case ARM::VLD4LNqWB_register_Asm_32: {
6854 MCInst TmpInst;
6855 // Shuffle the operands around so the lane index operand is in the
6856 // right place.
6857 unsigned Spacing;
6858 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
6859 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6860 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6861 Spacing));
6862 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6863 Spacing * 2));
6864 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6865 Spacing * 3));
6866 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
6867 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6868 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6869 TmpInst.addOperand(Inst.getOperand(4)); // Rm
6870 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
6871 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6872 Spacing));
6873 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6874 Spacing * 2));
6875 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6876 Spacing * 3));
6877 TmpInst.addOperand(Inst.getOperand(1)); // lane
6878 TmpInst.addOperand(Inst.getOperand(5)); // CondCode
6879 TmpInst.addOperand(Inst.getOperand(6));
6880 Inst = TmpInst;
6881 return true;
6882 }
6883
Jim Grosbachd28ef9a2012-01-23 19:39:08 +00006884 case ARM::VLD1LNdWB_fixed_Asm_8:
6885 case ARM::VLD1LNdWB_fixed_Asm_16:
6886 case ARM::VLD1LNdWB_fixed_Asm_32: {
Jim Grosbachdda976b2011-12-02 22:01:52 +00006887 MCInst TmpInst;
6888 // Shuffle the operands around so the lane index operand is in the
6889 // right place.
Jim Grosbach75e2ab52011-12-20 19:21:26 +00006890 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00006891 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbachdda976b2011-12-02 22:01:52 +00006892 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6893 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
6894 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6895 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6896 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
6897 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
6898 TmpInst.addOperand(Inst.getOperand(1)); // lane
6899 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6900 TmpInst.addOperand(Inst.getOperand(5));
6901 Inst = TmpInst;
6902 return true;
6903 }
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006904
Jim Grosbachd28ef9a2012-01-23 19:39:08 +00006905 case ARM::VLD2LNdWB_fixed_Asm_8:
6906 case ARM::VLD2LNdWB_fixed_Asm_16:
6907 case ARM::VLD2LNdWB_fixed_Asm_32:
6908 case ARM::VLD2LNqWB_fixed_Asm_16:
6909 case ARM::VLD2LNqWB_fixed_Asm_32: {
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006910 MCInst TmpInst;
6911 // Shuffle the operands around so the lane index operand is in the
6912 // right place.
Jim Grosbach75e2ab52011-12-20 19:21:26 +00006913 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00006914 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006915 TmpInst.addOperand(Inst.getOperand(0)); // Vd
Jim Grosbach75e2ab52011-12-20 19:21:26 +00006916 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6917 Spacing));
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006918 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
6919 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6920 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6921 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
6922 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
Jim Grosbach75e2ab52011-12-20 19:21:26 +00006923 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6924 Spacing));
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00006925 TmpInst.addOperand(Inst.getOperand(1)); // lane
6926 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6927 TmpInst.addOperand(Inst.getOperand(5));
6928 Inst = TmpInst;
6929 return true;
6930 }
6931
Jim Grosbacha8b444b2012-01-23 21:53:26 +00006932 case ARM::VLD3LNdWB_fixed_Asm_8:
6933 case ARM::VLD3LNdWB_fixed_Asm_16:
6934 case ARM::VLD3LNdWB_fixed_Asm_32:
6935 case ARM::VLD3LNqWB_fixed_Asm_16:
6936 case ARM::VLD3LNqWB_fixed_Asm_32: {
6937 MCInst TmpInst;
6938 // Shuffle the operands around so the lane index operand is in the
6939 // right place.
6940 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00006941 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbacha8b444b2012-01-23 21:53:26 +00006942 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6943 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6944 Spacing));
6945 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
Jim Grosbachac2af3f2012-01-23 23:20:46 +00006946 Spacing * 2));
Jim Grosbacha8b444b2012-01-23 21:53:26 +00006947 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
6948 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6949 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6950 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
6951 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
6952 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6953 Spacing));
6954 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
Jim Grosbachac2af3f2012-01-23 23:20:46 +00006955 Spacing * 2));
Jim Grosbacha8b444b2012-01-23 21:53:26 +00006956 TmpInst.addOperand(Inst.getOperand(1)); // lane
6957 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6958 TmpInst.addOperand(Inst.getOperand(5));
6959 Inst = TmpInst;
6960 return true;
6961 }
6962
Jim Grosbach14952a02012-01-24 18:37:25 +00006963 case ARM::VLD4LNdWB_fixed_Asm_8:
6964 case ARM::VLD4LNdWB_fixed_Asm_16:
6965 case ARM::VLD4LNdWB_fixed_Asm_32:
6966 case ARM::VLD4LNqWB_fixed_Asm_16:
6967 case ARM::VLD4LNqWB_fixed_Asm_32: {
6968 MCInst TmpInst;
6969 // Shuffle the operands around so the lane index operand is in the
6970 // right place.
6971 unsigned Spacing;
6972 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
6973 TmpInst.addOperand(Inst.getOperand(0)); // Vd
6974 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6975 Spacing));
6976 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6977 Spacing * 2));
6978 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6979 Spacing * 3));
6980 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
6981 TmpInst.addOperand(Inst.getOperand(2)); // Rn
6982 TmpInst.addOperand(Inst.getOperand(3)); // alignment
6983 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
6984 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
6985 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6986 Spacing));
6987 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6988 Spacing * 2));
6989 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
6990 Spacing * 3));
6991 TmpInst.addOperand(Inst.getOperand(1)); // lane
6992 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
6993 TmpInst.addOperand(Inst.getOperand(5));
6994 Inst = TmpInst;
6995 return true;
6996 }
6997
Jim Grosbachd28ef9a2012-01-23 19:39:08 +00006998 case ARM::VLD1LNdAsm_8:
6999 case ARM::VLD1LNdAsm_16:
7000 case ARM::VLD1LNdAsm_32: {
Jim Grosbach04945c42011-12-02 00:35:16 +00007001 MCInst TmpInst;
7002 // Shuffle the operands around so the lane index operand is in the
7003 // right place.
Jim Grosbach75e2ab52011-12-20 19:21:26 +00007004 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00007005 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbach04945c42011-12-02 00:35:16 +00007006 TmpInst.addOperand(Inst.getOperand(0)); // Vd
7007 TmpInst.addOperand(Inst.getOperand(2)); // Rn
7008 TmpInst.addOperand(Inst.getOperand(3)); // alignment
7009 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
7010 TmpInst.addOperand(Inst.getOperand(1)); // lane
7011 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
7012 TmpInst.addOperand(Inst.getOperand(5));
7013 Inst = TmpInst;
7014 return true;
7015 }
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00007016
Jim Grosbachd28ef9a2012-01-23 19:39:08 +00007017 case ARM::VLD2LNdAsm_8:
7018 case ARM::VLD2LNdAsm_16:
7019 case ARM::VLD2LNdAsm_32:
7020 case ARM::VLD2LNqAsm_16:
7021 case ARM::VLD2LNqAsm_32: {
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00007022 MCInst TmpInst;
7023 // Shuffle the operands around so the lane index operand is in the
7024 // right place.
Jim Grosbach75e2ab52011-12-20 19:21:26 +00007025 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00007026 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00007027 TmpInst.addOperand(Inst.getOperand(0)); // Vd
Jim Grosbach75e2ab52011-12-20 19:21:26 +00007028 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7029 Spacing));
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00007030 TmpInst.addOperand(Inst.getOperand(2)); // Rn
7031 TmpInst.addOperand(Inst.getOperand(3)); // alignment
7032 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
Jim Grosbach75e2ab52011-12-20 19:21:26 +00007033 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7034 Spacing));
Jim Grosbacha8aa30b2011-12-14 23:25:46 +00007035 TmpInst.addOperand(Inst.getOperand(1)); // lane
7036 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
7037 TmpInst.addOperand(Inst.getOperand(5));
7038 Inst = TmpInst;
7039 return true;
7040 }
Jim Grosbacha8b444b2012-01-23 21:53:26 +00007041
7042 case ARM::VLD3LNdAsm_8:
7043 case ARM::VLD3LNdAsm_16:
7044 case ARM::VLD3LNdAsm_32:
7045 case ARM::VLD3LNqAsm_16:
7046 case ARM::VLD3LNqAsm_32: {
7047 MCInst TmpInst;
7048 // Shuffle the operands around so the lane index operand is in the
7049 // right place.
7050 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00007051 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbacha8b444b2012-01-23 21:53:26 +00007052 TmpInst.addOperand(Inst.getOperand(0)); // Vd
7053 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7054 Spacing));
7055 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
Jim Grosbachac2af3f2012-01-23 23:20:46 +00007056 Spacing * 2));
Jim Grosbacha8b444b2012-01-23 21:53:26 +00007057 TmpInst.addOperand(Inst.getOperand(2)); // Rn
7058 TmpInst.addOperand(Inst.getOperand(3)); // alignment
7059 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
7060 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7061 Spacing));
7062 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
Jim Grosbachac2af3f2012-01-23 23:20:46 +00007063 Spacing * 2));
Jim Grosbacha8b444b2012-01-23 21:53:26 +00007064 TmpInst.addOperand(Inst.getOperand(1)); // lane
7065 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
7066 TmpInst.addOperand(Inst.getOperand(5));
7067 Inst = TmpInst;
7068 return true;
7069 }
7070
Jim Grosbach14952a02012-01-24 18:37:25 +00007071 case ARM::VLD4LNdAsm_8:
7072 case ARM::VLD4LNdAsm_16:
7073 case ARM::VLD4LNdAsm_32:
7074 case ARM::VLD4LNqAsm_16:
7075 case ARM::VLD4LNqAsm_32: {
7076 MCInst TmpInst;
7077 // Shuffle the operands around so the lane index operand is in the
7078 // right place.
7079 unsigned Spacing;
7080 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
7081 TmpInst.addOperand(Inst.getOperand(0)); // Vd
7082 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7083 Spacing));
7084 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7085 Spacing * 2));
7086 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7087 Spacing * 3));
7088 TmpInst.addOperand(Inst.getOperand(2)); // Rn
7089 TmpInst.addOperand(Inst.getOperand(3)); // alignment
7090 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
7091 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7092 Spacing));
7093 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7094 Spacing * 2));
7095 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7096 Spacing * 3));
7097 TmpInst.addOperand(Inst.getOperand(1)); // lane
7098 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
7099 TmpInst.addOperand(Inst.getOperand(5));
7100 Inst = TmpInst;
7101 return true;
7102 }
7103
Jim Grosbachb78403c2012-01-24 23:47:04 +00007104 // VLD3DUP single 3-element structure to all lanes instructions.
7105 case ARM::VLD3DUPdAsm_8:
7106 case ARM::VLD3DUPdAsm_16:
7107 case ARM::VLD3DUPdAsm_32:
7108 case ARM::VLD3DUPqAsm_8:
7109 case ARM::VLD3DUPqAsm_16:
7110 case ARM::VLD3DUPqAsm_32: {
7111 MCInst TmpInst;
7112 unsigned Spacing;
7113 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
7114 TmpInst.addOperand(Inst.getOperand(0)); // Vd
7115 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7116 Spacing));
7117 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7118 Spacing * 2));
7119 TmpInst.addOperand(Inst.getOperand(1)); // Rn
7120 TmpInst.addOperand(Inst.getOperand(2)); // alignment
7121 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
7122 TmpInst.addOperand(Inst.getOperand(4));
7123 Inst = TmpInst;
7124 return true;
7125 }
7126
7127 case ARM::VLD3DUPdWB_fixed_Asm_8:
7128 case ARM::VLD3DUPdWB_fixed_Asm_16:
7129 case ARM::VLD3DUPdWB_fixed_Asm_32:
7130 case ARM::VLD3DUPqWB_fixed_Asm_8:
7131 case ARM::VLD3DUPqWB_fixed_Asm_16:
7132 case ARM::VLD3DUPqWB_fixed_Asm_32: {
7133 MCInst TmpInst;
7134 unsigned Spacing;
7135 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
7136 TmpInst.addOperand(Inst.getOperand(0)); // Vd
7137 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7138 Spacing));
7139 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7140 Spacing * 2));
7141 TmpInst.addOperand(Inst.getOperand(1)); // Rn
7142 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
7143 TmpInst.addOperand(Inst.getOperand(2)); // alignment
7144 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
7145 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
7146 TmpInst.addOperand(Inst.getOperand(4));
7147 Inst = TmpInst;
7148 return true;
7149 }
7150
7151 case ARM::VLD3DUPdWB_register_Asm_8:
7152 case ARM::VLD3DUPdWB_register_Asm_16:
7153 case ARM::VLD3DUPdWB_register_Asm_32:
7154 case ARM::VLD3DUPqWB_register_Asm_8:
7155 case ARM::VLD3DUPqWB_register_Asm_16:
7156 case ARM::VLD3DUPqWB_register_Asm_32: {
7157 MCInst TmpInst;
7158 unsigned Spacing;
7159 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
7160 TmpInst.addOperand(Inst.getOperand(0)); // Vd
7161 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7162 Spacing));
7163 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7164 Spacing * 2));
7165 TmpInst.addOperand(Inst.getOperand(1)); // Rn
7166 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
7167 TmpInst.addOperand(Inst.getOperand(2)); // alignment
7168 TmpInst.addOperand(Inst.getOperand(3)); // Rm
7169 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
7170 TmpInst.addOperand(Inst.getOperand(5));
7171 Inst = TmpInst;
7172 return true;
7173 }
7174
Jim Grosbachac2af3f2012-01-23 23:20:46 +00007175 // VLD3 multiple 3-element structure instructions.
7176 case ARM::VLD3dAsm_8:
7177 case ARM::VLD3dAsm_16:
7178 case ARM::VLD3dAsm_32:
7179 case ARM::VLD3qAsm_8:
7180 case ARM::VLD3qAsm_16:
7181 case ARM::VLD3qAsm_32: {
7182 MCInst TmpInst;
7183 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00007184 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbachac2af3f2012-01-23 23:20:46 +00007185 TmpInst.addOperand(Inst.getOperand(0)); // Vd
7186 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7187 Spacing));
7188 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7189 Spacing * 2));
7190 TmpInst.addOperand(Inst.getOperand(1)); // Rn
7191 TmpInst.addOperand(Inst.getOperand(2)); // alignment
7192 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
7193 TmpInst.addOperand(Inst.getOperand(4));
7194 Inst = TmpInst;
7195 return true;
7196 }
7197
7198 case ARM::VLD3dWB_fixed_Asm_8:
7199 case ARM::VLD3dWB_fixed_Asm_16:
7200 case ARM::VLD3dWB_fixed_Asm_32:
7201 case ARM::VLD3qWB_fixed_Asm_8:
7202 case ARM::VLD3qWB_fixed_Asm_16:
7203 case ARM::VLD3qWB_fixed_Asm_32: {
7204 MCInst TmpInst;
7205 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00007206 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbachac2af3f2012-01-23 23:20:46 +00007207 TmpInst.addOperand(Inst.getOperand(0)); // Vd
7208 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7209 Spacing));
7210 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7211 Spacing * 2));
7212 TmpInst.addOperand(Inst.getOperand(1)); // Rn
7213 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
7214 TmpInst.addOperand(Inst.getOperand(2)); // alignment
7215 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
7216 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
7217 TmpInst.addOperand(Inst.getOperand(4));
7218 Inst = TmpInst;
7219 return true;
7220 }
7221
7222 case ARM::VLD3dWB_register_Asm_8:
7223 case ARM::VLD3dWB_register_Asm_16:
7224 case ARM::VLD3dWB_register_Asm_32:
7225 case ARM::VLD3qWB_register_Asm_8:
7226 case ARM::VLD3qWB_register_Asm_16:
7227 case ARM::VLD3qWB_register_Asm_32: {
7228 MCInst TmpInst;
7229 unsigned Spacing;
Jim Grosbach1a747242012-01-23 23:45:44 +00007230 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
Jim Grosbachac2af3f2012-01-23 23:20:46 +00007231 TmpInst.addOperand(Inst.getOperand(0)); // Vd
7232 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7233 Spacing));
7234 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7235 Spacing * 2));
7236 TmpInst.addOperand(Inst.getOperand(1)); // Rn
7237 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
7238 TmpInst.addOperand(Inst.getOperand(2)); // alignment
7239 TmpInst.addOperand(Inst.getOperand(3)); // Rm
7240 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
7241 TmpInst.addOperand(Inst.getOperand(5));
7242 Inst = TmpInst;
7243 return true;
7244 }
7245
Jim Grosbach086cbfa2012-01-25 00:01:08 +00007246 // VLD4DUP single 3-element structure to all lanes instructions.
7247 case ARM::VLD4DUPdAsm_8:
7248 case ARM::VLD4DUPdAsm_16:
7249 case ARM::VLD4DUPdAsm_32:
7250 case ARM::VLD4DUPqAsm_8:
7251 case ARM::VLD4DUPqAsm_16:
7252 case ARM::VLD4DUPqAsm_32: {
7253 MCInst TmpInst;
7254 unsigned Spacing;
7255 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
7256 TmpInst.addOperand(Inst.getOperand(0)); // Vd
7257 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7258 Spacing));
7259 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7260 Spacing * 2));
7261 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7262 Spacing * 3));
7263 TmpInst.addOperand(Inst.getOperand(1)); // Rn
7264 TmpInst.addOperand(Inst.getOperand(2)); // alignment
7265 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
7266 TmpInst.addOperand(Inst.getOperand(4));
7267 Inst = TmpInst;
7268 return true;
7269 }
7270
7271 case ARM::VLD4DUPdWB_fixed_Asm_8:
7272 case ARM::VLD4DUPdWB_fixed_Asm_16:
7273 case ARM::VLD4DUPdWB_fixed_Asm_32:
7274 case ARM::VLD4DUPqWB_fixed_Asm_8:
7275 case ARM::VLD4DUPqWB_fixed_Asm_16:
7276 case ARM::VLD4DUPqWB_fixed_Asm_32: {
7277 MCInst TmpInst;
7278 unsigned Spacing;
7279 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
7280 TmpInst.addOperand(Inst.getOperand(0)); // Vd
7281 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7282 Spacing));
7283 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7284 Spacing * 2));
7285 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7286 Spacing * 3));
7287 TmpInst.addOperand(Inst.getOperand(1)); // Rn
7288 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
7289 TmpInst.addOperand(Inst.getOperand(2)); // alignment
7290 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
7291 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
7292 TmpInst.addOperand(Inst.getOperand(4));
7293 Inst = TmpInst;
7294 return true;
7295 }
7296
7297 case ARM::VLD4DUPdWB_register_Asm_8:
7298 case ARM::VLD4DUPdWB_register_Asm_16:
7299 case ARM::VLD4DUPdWB_register_Asm_32:
7300 case ARM::VLD4DUPqWB_register_Asm_8:
7301 case ARM::VLD4DUPqWB_register_Asm_16:
7302 case ARM::VLD4DUPqWB_register_Asm_32: {
7303 MCInst TmpInst;
7304 unsigned Spacing;
7305 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
7306 TmpInst.addOperand(Inst.getOperand(0)); // Vd
7307 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7308 Spacing));
7309 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7310 Spacing * 2));
7311 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7312 Spacing * 3));
7313 TmpInst.addOperand(Inst.getOperand(1)); // Rn
7314 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
7315 TmpInst.addOperand(Inst.getOperand(2)); // alignment
7316 TmpInst.addOperand(Inst.getOperand(3)); // Rm
7317 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
7318 TmpInst.addOperand(Inst.getOperand(5));
7319 Inst = TmpInst;
7320 return true;
7321 }
7322
7323 // VLD4 multiple 4-element structure instructions.
Jim Grosbached561fc2012-01-24 00:43:17 +00007324 case ARM::VLD4dAsm_8:
7325 case ARM::VLD4dAsm_16:
7326 case ARM::VLD4dAsm_32:
7327 case ARM::VLD4qAsm_8:
7328 case ARM::VLD4qAsm_16:
7329 case ARM::VLD4qAsm_32: {
7330 MCInst TmpInst;
7331 unsigned Spacing;
7332 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
7333 TmpInst.addOperand(Inst.getOperand(0)); // Vd
7334 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7335 Spacing));
7336 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7337 Spacing * 2));
7338 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7339 Spacing * 3));
7340 TmpInst.addOperand(Inst.getOperand(1)); // Rn
7341 TmpInst.addOperand(Inst.getOperand(2)); // alignment
7342 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
7343 TmpInst.addOperand(Inst.getOperand(4));
7344 Inst = TmpInst;
7345 return true;
7346 }
7347
7348 case ARM::VLD4dWB_fixed_Asm_8:
7349 case ARM::VLD4dWB_fixed_Asm_16:
7350 case ARM::VLD4dWB_fixed_Asm_32:
7351 case ARM::VLD4qWB_fixed_Asm_8:
7352 case ARM::VLD4qWB_fixed_Asm_16:
7353 case ARM::VLD4qWB_fixed_Asm_32: {
7354 MCInst TmpInst;
7355 unsigned Spacing;
7356 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
7357 TmpInst.addOperand(Inst.getOperand(0)); // Vd
7358 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7359 Spacing));
7360 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7361 Spacing * 2));
7362 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7363 Spacing * 3));
7364 TmpInst.addOperand(Inst.getOperand(1)); // Rn
7365 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
7366 TmpInst.addOperand(Inst.getOperand(2)); // alignment
7367 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
7368 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
7369 TmpInst.addOperand(Inst.getOperand(4));
7370 Inst = TmpInst;
7371 return true;
7372 }
7373
7374 case ARM::VLD4dWB_register_Asm_8:
7375 case ARM::VLD4dWB_register_Asm_16:
7376 case ARM::VLD4dWB_register_Asm_32:
7377 case ARM::VLD4qWB_register_Asm_8:
7378 case ARM::VLD4qWB_register_Asm_16:
7379 case ARM::VLD4qWB_register_Asm_32: {
7380 MCInst TmpInst;
7381 unsigned Spacing;
7382 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
7383 TmpInst.addOperand(Inst.getOperand(0)); // Vd
7384 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7385 Spacing));
7386 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7387 Spacing * 2));
7388 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7389 Spacing * 3));
7390 TmpInst.addOperand(Inst.getOperand(1)); // Rn
7391 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
7392 TmpInst.addOperand(Inst.getOperand(2)); // alignment
7393 TmpInst.addOperand(Inst.getOperand(3)); // Rm
7394 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
7395 TmpInst.addOperand(Inst.getOperand(5));
7396 Inst = TmpInst;
7397 return true;
7398 }
7399
Jim Grosbach1a747242012-01-23 23:45:44 +00007400 // VST3 multiple 3-element structure instructions.
7401 case ARM::VST3dAsm_8:
7402 case ARM::VST3dAsm_16:
7403 case ARM::VST3dAsm_32:
7404 case ARM::VST3qAsm_8:
7405 case ARM::VST3qAsm_16:
7406 case ARM::VST3qAsm_32: {
7407 MCInst TmpInst;
7408 unsigned Spacing;
7409 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
7410 TmpInst.addOperand(Inst.getOperand(1)); // Rn
7411 TmpInst.addOperand(Inst.getOperand(2)); // alignment
7412 TmpInst.addOperand(Inst.getOperand(0)); // Vd
7413 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7414 Spacing));
7415 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7416 Spacing * 2));
7417 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
7418 TmpInst.addOperand(Inst.getOperand(4));
7419 Inst = TmpInst;
7420 return true;
7421 }
7422
7423 case ARM::VST3dWB_fixed_Asm_8:
7424 case ARM::VST3dWB_fixed_Asm_16:
7425 case ARM::VST3dWB_fixed_Asm_32:
7426 case ARM::VST3qWB_fixed_Asm_8:
7427 case ARM::VST3qWB_fixed_Asm_16:
7428 case ARM::VST3qWB_fixed_Asm_32: {
7429 MCInst TmpInst;
7430 unsigned Spacing;
7431 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
7432 TmpInst.addOperand(Inst.getOperand(1)); // Rn
7433 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
7434 TmpInst.addOperand(Inst.getOperand(2)); // alignment
7435 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
7436 TmpInst.addOperand(Inst.getOperand(0)); // Vd
7437 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7438 Spacing));
7439 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7440 Spacing * 2));
7441 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
7442 TmpInst.addOperand(Inst.getOperand(4));
7443 Inst = TmpInst;
7444 return true;
7445 }
7446
7447 case ARM::VST3dWB_register_Asm_8:
7448 case ARM::VST3dWB_register_Asm_16:
7449 case ARM::VST3dWB_register_Asm_32:
7450 case ARM::VST3qWB_register_Asm_8:
7451 case ARM::VST3qWB_register_Asm_16:
7452 case ARM::VST3qWB_register_Asm_32: {
7453 MCInst TmpInst;
7454 unsigned Spacing;
7455 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
7456 TmpInst.addOperand(Inst.getOperand(1)); // Rn
7457 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
7458 TmpInst.addOperand(Inst.getOperand(2)); // alignment
7459 TmpInst.addOperand(Inst.getOperand(3)); // Rm
7460 TmpInst.addOperand(Inst.getOperand(0)); // Vd
7461 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7462 Spacing));
7463 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7464 Spacing * 2));
7465 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
7466 TmpInst.addOperand(Inst.getOperand(5));
7467 Inst = TmpInst;
7468 return true;
7469 }
7470
Jim Grosbachda70eac2012-01-24 00:58:13 +00007471 // VST4 multiple 3-element structure instructions.
7472 case ARM::VST4dAsm_8:
7473 case ARM::VST4dAsm_16:
7474 case ARM::VST4dAsm_32:
7475 case ARM::VST4qAsm_8:
7476 case ARM::VST4qAsm_16:
7477 case ARM::VST4qAsm_32: {
7478 MCInst TmpInst;
7479 unsigned Spacing;
7480 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
7481 TmpInst.addOperand(Inst.getOperand(1)); // Rn
7482 TmpInst.addOperand(Inst.getOperand(2)); // alignment
7483 TmpInst.addOperand(Inst.getOperand(0)); // Vd
7484 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7485 Spacing));
7486 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7487 Spacing * 2));
7488 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7489 Spacing * 3));
7490 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
7491 TmpInst.addOperand(Inst.getOperand(4));
7492 Inst = TmpInst;
7493 return true;
7494 }
7495
7496 case ARM::VST4dWB_fixed_Asm_8:
7497 case ARM::VST4dWB_fixed_Asm_16:
7498 case ARM::VST4dWB_fixed_Asm_32:
7499 case ARM::VST4qWB_fixed_Asm_8:
7500 case ARM::VST4qWB_fixed_Asm_16:
7501 case ARM::VST4qWB_fixed_Asm_32: {
7502 MCInst TmpInst;
7503 unsigned Spacing;
7504 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
7505 TmpInst.addOperand(Inst.getOperand(1)); // Rn
7506 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
7507 TmpInst.addOperand(Inst.getOperand(2)); // alignment
7508 TmpInst.addOperand(MCOperand::CreateReg(0)); // Rm
7509 TmpInst.addOperand(Inst.getOperand(0)); // Vd
7510 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7511 Spacing));
7512 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7513 Spacing * 2));
7514 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7515 Spacing * 3));
7516 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
7517 TmpInst.addOperand(Inst.getOperand(4));
7518 Inst = TmpInst;
7519 return true;
7520 }
7521
7522 case ARM::VST4dWB_register_Asm_8:
7523 case ARM::VST4dWB_register_Asm_16:
7524 case ARM::VST4dWB_register_Asm_32:
7525 case ARM::VST4qWB_register_Asm_8:
7526 case ARM::VST4qWB_register_Asm_16:
7527 case ARM::VST4qWB_register_Asm_32: {
7528 MCInst TmpInst;
7529 unsigned Spacing;
7530 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
7531 TmpInst.addOperand(Inst.getOperand(1)); // Rn
7532 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
7533 TmpInst.addOperand(Inst.getOperand(2)); // alignment
7534 TmpInst.addOperand(Inst.getOperand(3)); // Rm
7535 TmpInst.addOperand(Inst.getOperand(0)); // Vd
7536 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7537 Spacing));
7538 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7539 Spacing * 2));
7540 TmpInst.addOperand(MCOperand::CreateReg(Inst.getOperand(0).getReg() +
7541 Spacing * 3));
7542 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
7543 TmpInst.addOperand(Inst.getOperand(5));
7544 Inst = TmpInst;
7545 return true;
7546 }
7547
Jim Grosbachad66de12012-04-11 00:15:16 +00007548 // Handle encoding choice for the shift-immediate instructions.
7549 case ARM::t2LSLri:
7550 case ARM::t2LSRri:
7551 case ARM::t2ASRri: {
7552 if (isARMLowRegister(Inst.getOperand(0).getReg()) &&
7553 Inst.getOperand(0).getReg() == Inst.getOperand(1).getReg() &&
7554 Inst.getOperand(5).getReg() == (inITBlock() ? 0 : ARM::CPSR) &&
David Blaikie960ea3f2014-06-08 16:18:35 +00007555 !(static_cast<ARMOperand &>(*Operands[3]).isToken() &&
7556 static_cast<ARMOperand &>(*Operands[3]).getToken() == ".w")) {
Jim Grosbachad66de12012-04-11 00:15:16 +00007557 unsigned NewOpc;
7558 switch (Inst.getOpcode()) {
7559 default: llvm_unreachable("unexpected opcode");
7560 case ARM::t2LSLri: NewOpc = ARM::tLSLri; break;
7561 case ARM::t2LSRri: NewOpc = ARM::tLSRri; break;
7562 case ARM::t2ASRri: NewOpc = ARM::tASRri; break;
7563 }
7564 // The Thumb1 operands aren't in the same order. Awesome, eh?
7565 MCInst TmpInst;
7566 TmpInst.setOpcode(NewOpc);
7567 TmpInst.addOperand(Inst.getOperand(0));
7568 TmpInst.addOperand(Inst.getOperand(5));
7569 TmpInst.addOperand(Inst.getOperand(1));
7570 TmpInst.addOperand(Inst.getOperand(2));
7571 TmpInst.addOperand(Inst.getOperand(3));
7572 TmpInst.addOperand(Inst.getOperand(4));
7573 Inst = TmpInst;
7574 return true;
7575 }
7576 return false;
7577 }
7578
Jim Grosbach485e5622011-12-13 22:45:11 +00007579 // Handle the Thumb2 mode MOV complex aliases.
Jim Grosbachb3ef7132011-12-21 20:54:00 +00007580 case ARM::t2MOVsr:
7581 case ARM::t2MOVSsr: {
7582 // Which instruction to expand to depends on the CCOut operand and
7583 // whether we're in an IT block if the register operands are low
7584 // registers.
7585 bool isNarrow = false;
7586 if (isARMLowRegister(Inst.getOperand(0).getReg()) &&
7587 isARMLowRegister(Inst.getOperand(1).getReg()) &&
7588 isARMLowRegister(Inst.getOperand(2).getReg()) &&
7589 Inst.getOperand(0).getReg() == Inst.getOperand(1).getReg() &&
7590 inITBlock() == (Inst.getOpcode() == ARM::t2MOVsr))
7591 isNarrow = true;
7592 MCInst TmpInst;
7593 unsigned newOpc;
7594 switch(ARM_AM::getSORegShOp(Inst.getOperand(3).getImm())) {
7595 default: llvm_unreachable("unexpected opcode!");
7596 case ARM_AM::asr: newOpc = isNarrow ? ARM::tASRrr : ARM::t2ASRrr; break;
7597 case ARM_AM::lsr: newOpc = isNarrow ? ARM::tLSRrr : ARM::t2LSRrr; break;
7598 case ARM_AM::lsl: newOpc = isNarrow ? ARM::tLSLrr : ARM::t2LSLrr; break;
7599 case ARM_AM::ror: newOpc = isNarrow ? ARM::tROR : ARM::t2RORrr; break;
7600 }
7601 TmpInst.setOpcode(newOpc);
7602 TmpInst.addOperand(Inst.getOperand(0)); // Rd
7603 if (isNarrow)
7604 TmpInst.addOperand(MCOperand::CreateReg(
7605 Inst.getOpcode() == ARM::t2MOVSsr ? ARM::CPSR : 0));
7606 TmpInst.addOperand(Inst.getOperand(1)); // Rn
7607 TmpInst.addOperand(Inst.getOperand(2)); // Rm
7608 TmpInst.addOperand(Inst.getOperand(4)); // CondCode
7609 TmpInst.addOperand(Inst.getOperand(5));
7610 if (!isNarrow)
7611 TmpInst.addOperand(MCOperand::CreateReg(
7612 Inst.getOpcode() == ARM::t2MOVSsr ? ARM::CPSR : 0));
7613 Inst = TmpInst;
7614 return true;
7615 }
Jim Grosbach485e5622011-12-13 22:45:11 +00007616 case ARM::t2MOVsi:
7617 case ARM::t2MOVSsi: {
7618 // Which instruction to expand to depends on the CCOut operand and
7619 // whether we're in an IT block if the register operands are low
7620 // registers.
7621 bool isNarrow = false;
7622 if (isARMLowRegister(Inst.getOperand(0).getReg()) &&
7623 isARMLowRegister(Inst.getOperand(1).getReg()) &&
7624 inITBlock() == (Inst.getOpcode() == ARM::t2MOVsi))
7625 isNarrow = true;
7626 MCInst TmpInst;
7627 unsigned newOpc;
7628 switch(ARM_AM::getSORegShOp(Inst.getOperand(2).getImm())) {
7629 default: llvm_unreachable("unexpected opcode!");
7630 case ARM_AM::asr: newOpc = isNarrow ? ARM::tASRri : ARM::t2ASRri; break;
7631 case ARM_AM::lsr: newOpc = isNarrow ? ARM::tLSRri : ARM::t2LSRri; break;
7632 case ARM_AM::lsl: newOpc = isNarrow ? ARM::tLSLri : ARM::t2LSLri; break;
7633 case ARM_AM::ror: newOpc = ARM::t2RORri; isNarrow = false; break;
Jim Grosbach8c59bbc2011-12-21 21:04:19 +00007634 case ARM_AM::rrx: isNarrow = false; newOpc = ARM::t2RRX; break;
Jim Grosbach485e5622011-12-13 22:45:11 +00007635 }
Benjamin Kramerbde91762012-06-02 10:20:22 +00007636 unsigned Amount = ARM_AM::getSORegOffset(Inst.getOperand(2).getImm());
7637 if (Amount == 32) Amount = 0;
Jim Grosbach485e5622011-12-13 22:45:11 +00007638 TmpInst.setOpcode(newOpc);
7639 TmpInst.addOperand(Inst.getOperand(0)); // Rd
7640 if (isNarrow)
7641 TmpInst.addOperand(MCOperand::CreateReg(
7642 Inst.getOpcode() == ARM::t2MOVSsi ? ARM::CPSR : 0));
7643 TmpInst.addOperand(Inst.getOperand(1)); // Rn
Jim Grosbach8c59bbc2011-12-21 21:04:19 +00007644 if (newOpc != ARM::t2RRX)
Benjamin Kramerbde91762012-06-02 10:20:22 +00007645 TmpInst.addOperand(MCOperand::CreateImm(Amount));
Jim Grosbach485e5622011-12-13 22:45:11 +00007646 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
7647 TmpInst.addOperand(Inst.getOperand(4));
7648 if (!isNarrow)
7649 TmpInst.addOperand(MCOperand::CreateReg(
7650 Inst.getOpcode() == ARM::t2MOVSsi ? ARM::CPSR : 0));
7651 Inst = TmpInst;
7652 return true;
7653 }
7654 // Handle the ARM mode MOV complex aliases.
Jim Grosbachabcac562011-11-16 18:31:45 +00007655 case ARM::ASRr:
7656 case ARM::LSRr:
7657 case ARM::LSLr:
7658 case ARM::RORr: {
7659 ARM_AM::ShiftOpc ShiftTy;
7660 switch(Inst.getOpcode()) {
7661 default: llvm_unreachable("unexpected opcode!");
7662 case ARM::ASRr: ShiftTy = ARM_AM::asr; break;
7663 case ARM::LSRr: ShiftTy = ARM_AM::lsr; break;
7664 case ARM::LSLr: ShiftTy = ARM_AM::lsl; break;
7665 case ARM::RORr: ShiftTy = ARM_AM::ror; break;
7666 }
Jim Grosbachabcac562011-11-16 18:31:45 +00007667 unsigned Shifter = ARM_AM::getSORegOpc(ShiftTy, 0);
7668 MCInst TmpInst;
7669 TmpInst.setOpcode(ARM::MOVsr);
7670 TmpInst.addOperand(Inst.getOperand(0)); // Rd
7671 TmpInst.addOperand(Inst.getOperand(1)); // Rn
7672 TmpInst.addOperand(Inst.getOperand(2)); // Rm
7673 TmpInst.addOperand(MCOperand::CreateImm(Shifter)); // Shift value and ty
7674 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
7675 TmpInst.addOperand(Inst.getOperand(4));
7676 TmpInst.addOperand(Inst.getOperand(5)); // cc_out
7677 Inst = TmpInst;
7678 return true;
7679 }
Jim Grosbachc14871c2011-11-10 19:18:01 +00007680 case ARM::ASRi:
7681 case ARM::LSRi:
7682 case ARM::LSLi:
7683 case ARM::RORi: {
7684 ARM_AM::ShiftOpc ShiftTy;
Jim Grosbachc14871c2011-11-10 19:18:01 +00007685 switch(Inst.getOpcode()) {
7686 default: llvm_unreachable("unexpected opcode!");
7687 case ARM::ASRi: ShiftTy = ARM_AM::asr; break;
7688 case ARM::LSRi: ShiftTy = ARM_AM::lsr; break;
7689 case ARM::LSLi: ShiftTy = ARM_AM::lsl; break;
7690 case ARM::RORi: ShiftTy = ARM_AM::ror; break;
7691 }
7692 // A shift by zero is a plain MOVr, not a MOVsi.
Jim Grosbach1a2f9ee2011-11-16 19:05:59 +00007693 unsigned Amt = Inst.getOperand(2).getImm();
Jim Grosbachc14871c2011-11-10 19:18:01 +00007694 unsigned Opc = Amt == 0 ? ARM::MOVr : ARM::MOVsi;
Richard Bartonba5b0cc2012-04-25 18:00:18 +00007695 // A shift by 32 should be encoded as 0 when permitted
7696 if (Amt == 32 && (ShiftTy == ARM_AM::lsr || ShiftTy == ARM_AM::asr))
7697 Amt = 0;
Jim Grosbachc14871c2011-11-10 19:18:01 +00007698 unsigned Shifter = ARM_AM::getSORegOpc(ShiftTy, Amt);
Jim Grosbach61db5a52011-11-10 16:44:55 +00007699 MCInst TmpInst;
Jim Grosbachc14871c2011-11-10 19:18:01 +00007700 TmpInst.setOpcode(Opc);
Jim Grosbach61db5a52011-11-10 16:44:55 +00007701 TmpInst.addOperand(Inst.getOperand(0)); // Rd
7702 TmpInst.addOperand(Inst.getOperand(1)); // Rn
Jim Grosbachc14871c2011-11-10 19:18:01 +00007703 if (Opc == ARM::MOVsi)
7704 TmpInst.addOperand(MCOperand::CreateImm(Shifter)); // Shift value and ty
Jim Grosbach61db5a52011-11-10 16:44:55 +00007705 TmpInst.addOperand(Inst.getOperand(3)); // CondCode
7706 TmpInst.addOperand(Inst.getOperand(4));
7707 TmpInst.addOperand(Inst.getOperand(5)); // cc_out
7708 Inst = TmpInst;
Jim Grosbachafad0532011-11-10 23:42:14 +00007709 return true;
Jim Grosbach61db5a52011-11-10 16:44:55 +00007710 }
Jim Grosbach1a2f9ee2011-11-16 19:05:59 +00007711 case ARM::RRXi: {
7712 unsigned Shifter = ARM_AM::getSORegOpc(ARM_AM::rrx, 0);
7713 MCInst TmpInst;
7714 TmpInst.setOpcode(ARM::MOVsi);
7715 TmpInst.addOperand(Inst.getOperand(0)); // Rd
7716 TmpInst.addOperand(Inst.getOperand(1)); // Rn
7717 TmpInst.addOperand(MCOperand::CreateImm(Shifter)); // Shift value and ty
7718 TmpInst.addOperand(Inst.getOperand(2)); // CondCode
7719 TmpInst.addOperand(Inst.getOperand(3));
7720 TmpInst.addOperand(Inst.getOperand(4)); // cc_out
7721 Inst = TmpInst;
7722 return true;
7723 }
Jim Grosbachd9a9be22011-11-10 23:58:34 +00007724 case ARM::t2LDMIA_UPD: {
7725 // If this is a load of a single register, then we should use
7726 // a post-indexed LDR instruction instead, per the ARM ARM.
7727 if (Inst.getNumOperands() != 5)
7728 return false;
7729 MCInst TmpInst;
7730 TmpInst.setOpcode(ARM::t2LDR_POST);
7731 TmpInst.addOperand(Inst.getOperand(4)); // Rt
7732 TmpInst.addOperand(Inst.getOperand(0)); // Rn_wb
7733 TmpInst.addOperand(Inst.getOperand(1)); // Rn
7734 TmpInst.addOperand(MCOperand::CreateImm(4));
7735 TmpInst.addOperand(Inst.getOperand(2)); // CondCode
7736 TmpInst.addOperand(Inst.getOperand(3));
7737 Inst = TmpInst;
7738 return true;
7739 }
7740 case ARM::t2STMDB_UPD: {
7741 // If this is a store of a single register, then we should use
7742 // a pre-indexed STR instruction instead, per the ARM ARM.
7743 if (Inst.getNumOperands() != 5)
7744 return false;
7745 MCInst TmpInst;
7746 TmpInst.setOpcode(ARM::t2STR_PRE);
7747 TmpInst.addOperand(Inst.getOperand(0)); // Rn_wb
7748 TmpInst.addOperand(Inst.getOperand(4)); // Rt
7749 TmpInst.addOperand(Inst.getOperand(1)); // Rn
7750 TmpInst.addOperand(MCOperand::CreateImm(-4));
7751 TmpInst.addOperand(Inst.getOperand(2)); // CondCode
7752 TmpInst.addOperand(Inst.getOperand(3));
7753 Inst = TmpInst;
7754 return true;
7755 }
Jim Grosbach8ba76c62011-08-11 17:35:48 +00007756 case ARM::LDMIA_UPD:
7757 // If this is a load of a single register via a 'pop', then we should use
7758 // a post-indexed LDR instruction instead, per the ARM ARM.
David Blaikie960ea3f2014-06-08 16:18:35 +00007759 if (static_cast<ARMOperand &>(*Operands[0]).getToken() == "pop" &&
Jim Grosbach8ba76c62011-08-11 17:35:48 +00007760 Inst.getNumOperands() == 5) {
7761 MCInst TmpInst;
7762 TmpInst.setOpcode(ARM::LDR_POST_IMM);
7763 TmpInst.addOperand(Inst.getOperand(4)); // Rt
7764 TmpInst.addOperand(Inst.getOperand(0)); // Rn_wb
7765 TmpInst.addOperand(Inst.getOperand(1)); // Rn
7766 TmpInst.addOperand(MCOperand::CreateReg(0)); // am2offset
7767 TmpInst.addOperand(MCOperand::CreateImm(4));
7768 TmpInst.addOperand(Inst.getOperand(2)); // CondCode
7769 TmpInst.addOperand(Inst.getOperand(3));
7770 Inst = TmpInst;
Jim Grosbachafad0532011-11-10 23:42:14 +00007771 return true;
Jim Grosbach8ba76c62011-08-11 17:35:48 +00007772 }
7773 break;
Jim Grosbach27ad83d2011-08-11 18:07:11 +00007774 case ARM::STMDB_UPD:
7775 // If this is a store of a single register via a 'push', then we should use
7776 // a pre-indexed STR instruction instead, per the ARM ARM.
David Blaikie960ea3f2014-06-08 16:18:35 +00007777 if (static_cast<ARMOperand &>(*Operands[0]).getToken() == "push" &&
Jim Grosbach27ad83d2011-08-11 18:07:11 +00007778 Inst.getNumOperands() == 5) {
7779 MCInst TmpInst;
7780 TmpInst.setOpcode(ARM::STR_PRE_IMM);
7781 TmpInst.addOperand(Inst.getOperand(0)); // Rn_wb
7782 TmpInst.addOperand(Inst.getOperand(4)); // Rt
7783 TmpInst.addOperand(Inst.getOperand(1)); // addrmode_imm12
7784 TmpInst.addOperand(MCOperand::CreateImm(-4));
7785 TmpInst.addOperand(Inst.getOperand(2)); // CondCode
7786 TmpInst.addOperand(Inst.getOperand(3));
7787 Inst = TmpInst;
7788 }
7789 break;
Jim Grosbachec9ba982011-12-05 21:06:26 +00007790 case ARM::t2ADDri12:
7791 // If the immediate fits for encoding T3 (t2ADDri) and the generic "add"
7792 // mnemonic was used (not "addw"), encoding T3 is preferred.
David Blaikie960ea3f2014-06-08 16:18:35 +00007793 if (static_cast<ARMOperand &>(*Operands[0]).getToken() != "add" ||
Jim Grosbachec9ba982011-12-05 21:06:26 +00007794 ARM_AM::getT2SOImmVal(Inst.getOperand(2).getImm()) == -1)
7795 break;
7796 Inst.setOpcode(ARM::t2ADDri);
7797 Inst.addOperand(MCOperand::CreateReg(0)); // cc_out
7798 break;
7799 case ARM::t2SUBri12:
7800 // If the immediate fits for encoding T3 (t2SUBri) and the generic "sub"
7801 // mnemonic was used (not "subw"), encoding T3 is preferred.
David Blaikie960ea3f2014-06-08 16:18:35 +00007802 if (static_cast<ARMOperand &>(*Operands[0]).getToken() != "sub" ||
Jim Grosbachec9ba982011-12-05 21:06:26 +00007803 ARM_AM::getT2SOImmVal(Inst.getOperand(2).getImm()) == -1)
7804 break;
7805 Inst.setOpcode(ARM::t2SUBri);
7806 Inst.addOperand(MCOperand::CreateReg(0)); // cc_out
7807 break;
Jim Grosbache9ab47a2011-08-16 23:57:34 +00007808 case ARM::tADDi8:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00007809 // If the immediate is in the range 0-7, we want tADDi3 iff Rd was
Jim Grosbach6d606fb2011-08-31 17:07:33 +00007810 // explicitly specified. From the ARM ARM: "Encoding T1 is preferred
7811 // to encoding T2 if <Rd> is specified and encoding T2 is preferred
7812 // to encoding T1 if <Rd> is omitted."
Jim Grosbach199ab902012-03-30 16:31:31 +00007813 if ((unsigned)Inst.getOperand(3).getImm() < 8 && Operands.size() == 6) {
Jim Grosbache9ab47a2011-08-16 23:57:34 +00007814 Inst.setOpcode(ARM::tADDi3);
Jim Grosbachafad0532011-11-10 23:42:14 +00007815 return true;
7816 }
Jim Grosbache9ab47a2011-08-16 23:57:34 +00007817 break;
Jim Grosbachd0c435c2011-09-16 22:58:42 +00007818 case ARM::tSUBi8:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00007819 // If the immediate is in the range 0-7, we want tADDi3 iff Rd was
Jim Grosbachd0c435c2011-09-16 22:58:42 +00007820 // explicitly specified. From the ARM ARM: "Encoding T1 is preferred
7821 // to encoding T2 if <Rd> is specified and encoding T2 is preferred
7822 // to encoding T1 if <Rd> is omitted."
Jim Grosbach199ab902012-03-30 16:31:31 +00007823 if ((unsigned)Inst.getOperand(3).getImm() < 8 && Operands.size() == 6) {
Jim Grosbachd0c435c2011-09-16 22:58:42 +00007824 Inst.setOpcode(ARM::tSUBi3);
Jim Grosbachafad0532011-11-10 23:42:14 +00007825 return true;
7826 }
Jim Grosbachd0c435c2011-09-16 22:58:42 +00007827 break;
Jim Grosbachdef5e342012-03-30 17:20:40 +00007828 case ARM::t2ADDri:
7829 case ARM::t2SUBri: {
7830 // If the destination and first source operand are the same, and
7831 // the flags are compatible with the current IT status, use encoding T2
7832 // instead of T3. For compatibility with the system 'as'. Make sure the
7833 // wide encoding wasn't explicit.
7834 if (Inst.getOperand(0).getReg() != Inst.getOperand(1).getReg() ||
Jim Grosbach74005ae2012-03-30 18:39:43 +00007835 !isARMLowRegister(Inst.getOperand(0).getReg()) ||
Jim Grosbachdef5e342012-03-30 17:20:40 +00007836 (unsigned)Inst.getOperand(2).getImm() > 255 ||
7837 ((!inITBlock() && Inst.getOperand(5).getReg() != ARM::CPSR) ||
David Blaikie960ea3f2014-06-08 16:18:35 +00007838 (inITBlock() && Inst.getOperand(5).getReg() != 0)) ||
7839 (static_cast<ARMOperand &>(*Operands[3]).isToken() &&
7840 static_cast<ARMOperand &>(*Operands[3]).getToken() == ".w"))
Jim Grosbachdef5e342012-03-30 17:20:40 +00007841 break;
7842 MCInst TmpInst;
7843 TmpInst.setOpcode(Inst.getOpcode() == ARM::t2ADDri ?
7844 ARM::tADDi8 : ARM::tSUBi8);
7845 TmpInst.addOperand(Inst.getOperand(0));
7846 TmpInst.addOperand(Inst.getOperand(5));
7847 TmpInst.addOperand(Inst.getOperand(0));
7848 TmpInst.addOperand(Inst.getOperand(2));
7849 TmpInst.addOperand(Inst.getOperand(3));
7850 TmpInst.addOperand(Inst.getOperand(4));
7851 Inst = TmpInst;
7852 return true;
7853 }
Jim Grosbache489bab2011-12-05 22:16:39 +00007854 case ARM::t2ADDrr: {
7855 // If the destination and first source operand are the same, and
7856 // there's no setting of the flags, use encoding T2 instead of T3.
7857 // Note that this is only for ADD, not SUB. This mirrors the system
7858 // 'as' behaviour. Make sure the wide encoding wasn't explicit.
7859 if (Inst.getOperand(0).getReg() != Inst.getOperand(1).getReg() ||
7860 Inst.getOperand(5).getReg() != 0 ||
David Blaikie960ea3f2014-06-08 16:18:35 +00007861 (static_cast<ARMOperand &>(*Operands[3]).isToken() &&
7862 static_cast<ARMOperand &>(*Operands[3]).getToken() == ".w"))
Jim Grosbache489bab2011-12-05 22:16:39 +00007863 break;
7864 MCInst TmpInst;
7865 TmpInst.setOpcode(ARM::tADDhirr);
7866 TmpInst.addOperand(Inst.getOperand(0));
7867 TmpInst.addOperand(Inst.getOperand(0));
7868 TmpInst.addOperand(Inst.getOperand(2));
7869 TmpInst.addOperand(Inst.getOperand(3));
7870 TmpInst.addOperand(Inst.getOperand(4));
7871 Inst = TmpInst;
7872 return true;
7873 }
Jim Grosbachc6f32b32012-04-27 23:51:36 +00007874 case ARM::tADDrSP: {
7875 // If the non-SP source operand and the destination operand are not the
7876 // same, we need to use the 32-bit encoding if it's available.
7877 if (Inst.getOperand(0).getReg() != Inst.getOperand(2).getReg()) {
7878 Inst.setOpcode(ARM::t2ADDrr);
7879 Inst.addOperand(MCOperand::CreateReg(0)); // cc_out
7880 return true;
7881 }
7882 break;
7883 }
Owen Anderson29cfe6c2011-09-09 21:48:23 +00007884 case ARM::tB:
7885 // A Thumb conditional branch outside of an IT block is a tBcc.
Jim Grosbachafad0532011-11-10 23:42:14 +00007886 if (Inst.getOperand(1).getImm() != ARMCC::AL && !inITBlock()) {
Owen Anderson29cfe6c2011-09-09 21:48:23 +00007887 Inst.setOpcode(ARM::tBcc);
Jim Grosbachafad0532011-11-10 23:42:14 +00007888 return true;
7889 }
Owen Anderson29cfe6c2011-09-09 21:48:23 +00007890 break;
7891 case ARM::t2B:
7892 // A Thumb2 conditional branch outside of an IT block is a t2Bcc.
Jim Grosbachafad0532011-11-10 23:42:14 +00007893 if (Inst.getOperand(1).getImm() != ARMCC::AL && !inITBlock()){
Owen Anderson29cfe6c2011-09-09 21:48:23 +00007894 Inst.setOpcode(ARM::t2Bcc);
Jim Grosbachafad0532011-11-10 23:42:14 +00007895 return true;
7896 }
Owen Anderson29cfe6c2011-09-09 21:48:23 +00007897 break;
Jim Grosbach99bc8462011-08-31 21:17:31 +00007898 case ARM::t2Bcc:
Jim Grosbacha0d34d32011-09-02 23:22:08 +00007899 // If the conditional is AL or we're in an IT block, we really want t2B.
Jim Grosbachafad0532011-11-10 23:42:14 +00007900 if (Inst.getOperand(1).getImm() == ARMCC::AL || inITBlock()) {
Jim Grosbach99bc8462011-08-31 21:17:31 +00007901 Inst.setOpcode(ARM::t2B);
Jim Grosbachafad0532011-11-10 23:42:14 +00007902 return true;
7903 }
Jim Grosbach99bc8462011-08-31 21:17:31 +00007904 break;
Jim Grosbachcbd4ab12011-08-17 22:57:40 +00007905 case ARM::tBcc:
7906 // If the conditional is AL, we really want tB.
Jim Grosbachafad0532011-11-10 23:42:14 +00007907 if (Inst.getOperand(1).getImm() == ARMCC::AL) {
Jim Grosbachcbd4ab12011-08-17 22:57:40 +00007908 Inst.setOpcode(ARM::tB);
Jim Grosbachafad0532011-11-10 23:42:14 +00007909 return true;
7910 }
Jim Grosbach6ddb5682011-08-18 16:08:39 +00007911 break;
Jim Grosbacha31f2232011-09-07 18:05:34 +00007912 case ARM::tLDMIA: {
7913 // If the register list contains any high registers, or if the writeback
7914 // doesn't match what tLDMIA can do, we need to use the 32-bit encoding
7915 // instead if we're in Thumb2. Otherwise, this should have generated
7916 // an error in validateInstruction().
7917 unsigned Rn = Inst.getOperand(0).getReg();
7918 bool hasWritebackToken =
David Blaikie960ea3f2014-06-08 16:18:35 +00007919 (static_cast<ARMOperand &>(*Operands[3]).isToken() &&
7920 static_cast<ARMOperand &>(*Operands[3]).getToken() == "!");
Jim Grosbacha31f2232011-09-07 18:05:34 +00007921 bool listContainsBase;
7922 if (checkLowRegisterList(Inst, 3, Rn, 0, listContainsBase) ||
7923 (!listContainsBase && !hasWritebackToken) ||
7924 (listContainsBase && hasWritebackToken)) {
7925 // 16-bit encoding isn't sufficient. Switch to the 32-bit version.
7926 assert (isThumbTwo());
7927 Inst.setOpcode(hasWritebackToken ? ARM::t2LDMIA_UPD : ARM::t2LDMIA);
7928 // If we're switching to the updating version, we need to insert
7929 // the writeback tied operand.
7930 if (hasWritebackToken)
7931 Inst.insert(Inst.begin(),
7932 MCOperand::CreateReg(Inst.getOperand(0).getReg()));
Jim Grosbachafad0532011-11-10 23:42:14 +00007933 return true;
Jim Grosbacha31f2232011-09-07 18:05:34 +00007934 }
7935 break;
7936 }
Jim Grosbach099c9762011-09-16 20:50:13 +00007937 case ARM::tSTMIA_UPD: {
7938 // If the register list contains any high registers, we need to use
7939 // the 32-bit encoding instead if we're in Thumb2. Otherwise, this
7940 // should have generated an error in validateInstruction().
7941 unsigned Rn = Inst.getOperand(0).getReg();
7942 bool listContainsBase;
7943 if (checkLowRegisterList(Inst, 4, Rn, 0, listContainsBase)) {
7944 // 16-bit encoding isn't sufficient. Switch to the 32-bit version.
7945 assert (isThumbTwo());
7946 Inst.setOpcode(ARM::t2STMIA_UPD);
Jim Grosbachafad0532011-11-10 23:42:14 +00007947 return true;
Jim Grosbach099c9762011-09-16 20:50:13 +00007948 }
7949 break;
7950 }
Jim Grosbach9bded9d2011-11-10 23:17:11 +00007951 case ARM::tPOP: {
7952 bool listContainsBase;
7953 // If the register list contains any high registers, we need to use
7954 // the 32-bit encoding instead if we're in Thumb2. Otherwise, this
7955 // should have generated an error in validateInstruction().
7956 if (!checkLowRegisterList(Inst, 2, 0, ARM::PC, listContainsBase))
Jim Grosbachafad0532011-11-10 23:42:14 +00007957 return false;
Jim Grosbach9bded9d2011-11-10 23:17:11 +00007958 assert (isThumbTwo());
7959 Inst.setOpcode(ARM::t2LDMIA_UPD);
7960 // Add the base register and writeback operands.
7961 Inst.insert(Inst.begin(), MCOperand::CreateReg(ARM::SP));
7962 Inst.insert(Inst.begin(), MCOperand::CreateReg(ARM::SP));
Jim Grosbachafad0532011-11-10 23:42:14 +00007963 return true;
Jim Grosbach9bded9d2011-11-10 23:17:11 +00007964 }
7965 case ARM::tPUSH: {
7966 bool listContainsBase;
7967 if (!checkLowRegisterList(Inst, 2, 0, ARM::LR, listContainsBase))
Jim Grosbachafad0532011-11-10 23:42:14 +00007968 return false;
Jim Grosbach9bded9d2011-11-10 23:17:11 +00007969 assert (isThumbTwo());
7970 Inst.setOpcode(ARM::t2STMDB_UPD);
7971 // Add the base register and writeback operands.
7972 Inst.insert(Inst.begin(), MCOperand::CreateReg(ARM::SP));
7973 Inst.insert(Inst.begin(), MCOperand::CreateReg(ARM::SP));
Jim Grosbachafad0532011-11-10 23:42:14 +00007974 return true;
Jim Grosbach9bded9d2011-11-10 23:17:11 +00007975 }
Jim Grosbachb908b7a2011-09-10 00:15:36 +00007976 case ARM::t2MOVi: {
7977 // If we can use the 16-bit encoding and the user didn't explicitly
7978 // request the 32-bit variant, transform it here.
7979 if (isARMLowRegister(Inst.getOperand(0).getReg()) &&
Jim Grosbach199ab902012-03-30 16:31:31 +00007980 (unsigned)Inst.getOperand(1).getImm() <= 255 &&
Jim Grosbach18b8b172011-09-14 19:12:11 +00007981 ((!inITBlock() && Inst.getOperand(2).getImm() == ARMCC::AL &&
David Blaikie960ea3f2014-06-08 16:18:35 +00007982 Inst.getOperand(4).getReg() == ARM::CPSR) ||
7983 (inITBlock() && Inst.getOperand(4).getReg() == 0)) &&
7984 (!static_cast<ARMOperand &>(*Operands[2]).isToken() ||
7985 static_cast<ARMOperand &>(*Operands[2]).getToken() != ".w")) {
Jim Grosbachb908b7a2011-09-10 00:15:36 +00007986 // The operands aren't in the same order for tMOVi8...
7987 MCInst TmpInst;
7988 TmpInst.setOpcode(ARM::tMOVi8);
7989 TmpInst.addOperand(Inst.getOperand(0));
7990 TmpInst.addOperand(Inst.getOperand(4));
7991 TmpInst.addOperand(Inst.getOperand(1));
7992 TmpInst.addOperand(Inst.getOperand(2));
7993 TmpInst.addOperand(Inst.getOperand(3));
7994 Inst = TmpInst;
Jim Grosbachafad0532011-11-10 23:42:14 +00007995 return true;
Jim Grosbachb908b7a2011-09-10 00:15:36 +00007996 }
7997 break;
7998 }
7999 case ARM::t2MOVr: {
8000 // If we can use the 16-bit encoding and the user didn't explicitly
8001 // request the 32-bit variant, transform it here.
8002 if (isARMLowRegister(Inst.getOperand(0).getReg()) &&
8003 isARMLowRegister(Inst.getOperand(1).getReg()) &&
8004 Inst.getOperand(2).getImm() == ARMCC::AL &&
8005 Inst.getOperand(4).getReg() == ARM::CPSR &&
David Blaikie960ea3f2014-06-08 16:18:35 +00008006 (!static_cast<ARMOperand &>(*Operands[2]).isToken() ||
8007 static_cast<ARMOperand &>(*Operands[2]).getToken() != ".w")) {
Jim Grosbachb908b7a2011-09-10 00:15:36 +00008008 // The operands aren't the same for tMOV[S]r... (no cc_out)
8009 MCInst TmpInst;
8010 TmpInst.setOpcode(Inst.getOperand(4).getReg() ? ARM::tMOVSr : ARM::tMOVr);
8011 TmpInst.addOperand(Inst.getOperand(0));
8012 TmpInst.addOperand(Inst.getOperand(1));
8013 TmpInst.addOperand(Inst.getOperand(2));
8014 TmpInst.addOperand(Inst.getOperand(3));
8015 Inst = TmpInst;
Jim Grosbachafad0532011-11-10 23:42:14 +00008016 return true;
Jim Grosbachb908b7a2011-09-10 00:15:36 +00008017 }
8018 break;
8019 }
Jim Grosbach82213192011-09-19 20:29:33 +00008020 case ARM::t2SXTH:
Jim Grosbachb3519802011-09-20 00:46:54 +00008021 case ARM::t2SXTB:
8022 case ARM::t2UXTH:
8023 case ARM::t2UXTB: {
Jim Grosbach82213192011-09-19 20:29:33 +00008024 // If we can use the 16-bit encoding and the user didn't explicitly
8025 // request the 32-bit variant, transform it here.
8026 if (isARMLowRegister(Inst.getOperand(0).getReg()) &&
8027 isARMLowRegister(Inst.getOperand(1).getReg()) &&
8028 Inst.getOperand(2).getImm() == 0 &&
David Blaikie960ea3f2014-06-08 16:18:35 +00008029 (!static_cast<ARMOperand &>(*Operands[2]).isToken() ||
8030 static_cast<ARMOperand &>(*Operands[2]).getToken() != ".w")) {
Jim Grosbachb3519802011-09-20 00:46:54 +00008031 unsigned NewOpc;
8032 switch (Inst.getOpcode()) {
8033 default: llvm_unreachable("Illegal opcode!");
8034 case ARM::t2SXTH: NewOpc = ARM::tSXTH; break;
8035 case ARM::t2SXTB: NewOpc = ARM::tSXTB; break;
8036 case ARM::t2UXTH: NewOpc = ARM::tUXTH; break;
8037 case ARM::t2UXTB: NewOpc = ARM::tUXTB; break;
8038 }
Jim Grosbach82213192011-09-19 20:29:33 +00008039 // The operands aren't the same for thumb1 (no rotate operand).
8040 MCInst TmpInst;
8041 TmpInst.setOpcode(NewOpc);
8042 TmpInst.addOperand(Inst.getOperand(0));
8043 TmpInst.addOperand(Inst.getOperand(1));
8044 TmpInst.addOperand(Inst.getOperand(3));
8045 TmpInst.addOperand(Inst.getOperand(4));
8046 Inst = TmpInst;
Jim Grosbachafad0532011-11-10 23:42:14 +00008047 return true;
Jim Grosbach82213192011-09-19 20:29:33 +00008048 }
8049 break;
8050 }
Jim Grosbache2ca9e52011-12-20 00:59:38 +00008051 case ARM::MOVsi: {
8052 ARM_AM::ShiftOpc SOpc = ARM_AM::getSORegShOp(Inst.getOperand(2).getImm());
Richard Bartonba5b0cc2012-04-25 18:00:18 +00008053 // rrx shifts and asr/lsr of #32 is encoded as 0
8054 if (SOpc == ARM_AM::rrx || SOpc == ARM_AM::asr || SOpc == ARM_AM::lsr)
8055 return false;
Jim Grosbache2ca9e52011-12-20 00:59:38 +00008056 if (ARM_AM::getSORegOffset(Inst.getOperand(2).getImm()) == 0) {
8057 // Shifting by zero is accepted as a vanilla 'MOVr'
8058 MCInst TmpInst;
8059 TmpInst.setOpcode(ARM::MOVr);
8060 TmpInst.addOperand(Inst.getOperand(0));
8061 TmpInst.addOperand(Inst.getOperand(1));
8062 TmpInst.addOperand(Inst.getOperand(3));
8063 TmpInst.addOperand(Inst.getOperand(4));
8064 TmpInst.addOperand(Inst.getOperand(5));
8065 Inst = TmpInst;
8066 return true;
8067 }
8068 return false;
8069 }
Jim Grosbach12ccf452011-12-22 18:04:04 +00008070 case ARM::ANDrsi:
8071 case ARM::ORRrsi:
8072 case ARM::EORrsi:
8073 case ARM::BICrsi:
8074 case ARM::SUBrsi:
8075 case ARM::ADDrsi: {
8076 unsigned newOpc;
8077 ARM_AM::ShiftOpc SOpc = ARM_AM::getSORegShOp(Inst.getOperand(3).getImm());
8078 if (SOpc == ARM_AM::rrx) return false;
8079 switch (Inst.getOpcode()) {
Craig Toppere55c5562012-02-07 02:50:20 +00008080 default: llvm_unreachable("unexpected opcode!");
Jim Grosbach12ccf452011-12-22 18:04:04 +00008081 case ARM::ANDrsi: newOpc = ARM::ANDrr; break;
8082 case ARM::ORRrsi: newOpc = ARM::ORRrr; break;
8083 case ARM::EORrsi: newOpc = ARM::EORrr; break;
8084 case ARM::BICrsi: newOpc = ARM::BICrr; break;
8085 case ARM::SUBrsi: newOpc = ARM::SUBrr; break;
8086 case ARM::ADDrsi: newOpc = ARM::ADDrr; break;
8087 }
8088 // If the shift is by zero, use the non-shifted instruction definition.
Richard Barton35aceb82012-07-09 16:31:14 +00008089 // The exception is for right shifts, where 0 == 32
8090 if (ARM_AM::getSORegOffset(Inst.getOperand(3).getImm()) == 0 &&
8091 !(SOpc == ARM_AM::lsr || SOpc == ARM_AM::asr)) {
Jim Grosbach12ccf452011-12-22 18:04:04 +00008092 MCInst TmpInst;
8093 TmpInst.setOpcode(newOpc);
8094 TmpInst.addOperand(Inst.getOperand(0));
8095 TmpInst.addOperand(Inst.getOperand(1));
8096 TmpInst.addOperand(Inst.getOperand(2));
8097 TmpInst.addOperand(Inst.getOperand(4));
8098 TmpInst.addOperand(Inst.getOperand(5));
8099 TmpInst.addOperand(Inst.getOperand(6));
8100 Inst = TmpInst;
8101 return true;
8102 }
8103 return false;
8104 }
Jim Grosbach82f76d12012-01-25 19:52:01 +00008105 case ARM::ITasm:
Jim Grosbach3d1eac82011-08-26 21:43:41 +00008106 case ARM::t2IT: {
8107 // The mask bits for all but the first condition are represented as
8108 // the low bit of the condition code value implies 't'. We currently
8109 // always have 1 implies 't', so XOR toggle the bits if the low bit
Richard Bartonf435b092012-04-27 08:42:59 +00008110 // of the condition code is zero.
Jim Grosbach3d1eac82011-08-26 21:43:41 +00008111 MCOperand &MO = Inst.getOperand(1);
8112 unsigned Mask = MO.getImm();
Jim Grosbached16ec42011-08-29 22:24:09 +00008113 unsigned OrigMask = Mask;
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +00008114 unsigned TZ = countTrailingZeros(Mask);
Jim Grosbach3d1eac82011-08-26 21:43:41 +00008115 if ((Inst.getOperand(0).getImm() & 1) == 0) {
Jim Grosbach3d1eac82011-08-26 21:43:41 +00008116 assert(Mask && TZ <= 3 && "illegal IT mask value!");
Benjamin Kramer8bad66e2013-05-19 22:01:57 +00008117 Mask ^= (0xE << TZ) & 0xF;
Richard Bartonf435b092012-04-27 08:42:59 +00008118 }
Jim Grosbach3d1eac82011-08-26 21:43:41 +00008119 MO.setImm(Mask);
Jim Grosbached16ec42011-08-29 22:24:09 +00008120
8121 // Set up the IT block state according to the IT instruction we just
8122 // matched.
8123 assert(!inITBlock() && "nested IT blocks?!");
8124 ITState.Cond = ARMCC::CondCodes(Inst.getOperand(0).getImm());
8125 ITState.Mask = OrigMask; // Use the original mask, not the updated one.
8126 ITState.CurPosition = 0;
8127 ITState.FirstCond = true;
Jim Grosbach3d1eac82011-08-26 21:43:41 +00008128 break;
8129 }
Richard Bartona39625e2012-07-09 16:12:24 +00008130 case ARM::t2LSLrr:
8131 case ARM::t2LSRrr:
8132 case ARM::t2ASRrr:
8133 case ARM::t2SBCrr:
8134 case ARM::t2RORrr:
8135 case ARM::t2BICrr:
8136 {
Richard Bartond5660372012-07-09 16:14:28 +00008137 // Assemblers should use the narrow encodings of these instructions when permissible.
Richard Bartona39625e2012-07-09 16:12:24 +00008138 if ((isARMLowRegister(Inst.getOperand(1).getReg()) &&
8139 isARMLowRegister(Inst.getOperand(2).getReg())) &&
8140 Inst.getOperand(0).getReg() == Inst.getOperand(1).getReg() &&
Richard Barton984d0ba2012-07-09 18:30:56 +00008141 ((!inITBlock() && Inst.getOperand(5).getReg() == ARM::CPSR) ||
David Blaikie960ea3f2014-06-08 16:18:35 +00008142 (inITBlock() && Inst.getOperand(5).getReg() != ARM::CPSR)) &&
8143 (!static_cast<ARMOperand &>(*Operands[3]).isToken() ||
8144 !static_cast<ARMOperand &>(*Operands[3]).getToken().equals_lower(
8145 ".w"))) {
Richard Bartona39625e2012-07-09 16:12:24 +00008146 unsigned NewOpc;
8147 switch (Inst.getOpcode()) {
8148 default: llvm_unreachable("unexpected opcode");
8149 case ARM::t2LSLrr: NewOpc = ARM::tLSLrr; break;
8150 case ARM::t2LSRrr: NewOpc = ARM::tLSRrr; break;
8151 case ARM::t2ASRrr: NewOpc = ARM::tASRrr; break;
8152 case ARM::t2SBCrr: NewOpc = ARM::tSBC; break;
8153 case ARM::t2RORrr: NewOpc = ARM::tROR; break;
8154 case ARM::t2BICrr: NewOpc = ARM::tBIC; break;
8155 }
8156 MCInst TmpInst;
8157 TmpInst.setOpcode(NewOpc);
8158 TmpInst.addOperand(Inst.getOperand(0));
8159 TmpInst.addOperand(Inst.getOperand(5));
8160 TmpInst.addOperand(Inst.getOperand(1));
8161 TmpInst.addOperand(Inst.getOperand(2));
8162 TmpInst.addOperand(Inst.getOperand(3));
8163 TmpInst.addOperand(Inst.getOperand(4));
8164 Inst = TmpInst;
8165 return true;
8166 }
8167 return false;
8168 }
8169 case ARM::t2ANDrr:
8170 case ARM::t2EORrr:
8171 case ARM::t2ADCrr:
8172 case ARM::t2ORRrr:
8173 {
Richard Bartond5660372012-07-09 16:14:28 +00008174 // Assemblers should use the narrow encodings of these instructions when permissible.
Richard Bartona39625e2012-07-09 16:12:24 +00008175 // These instructions are special in that they are commutable, so shorter encodings
8176 // are available more often.
8177 if ((isARMLowRegister(Inst.getOperand(1).getReg()) &&
8178 isARMLowRegister(Inst.getOperand(2).getReg())) &&
8179 (Inst.getOperand(0).getReg() == Inst.getOperand(1).getReg() ||
8180 Inst.getOperand(0).getReg() == Inst.getOperand(2).getReg()) &&
Richard Barton984d0ba2012-07-09 18:30:56 +00008181 ((!inITBlock() && Inst.getOperand(5).getReg() == ARM::CPSR) ||
David Blaikie960ea3f2014-06-08 16:18:35 +00008182 (inITBlock() && Inst.getOperand(5).getReg() != ARM::CPSR)) &&
8183 (!static_cast<ARMOperand &>(*Operands[3]).isToken() ||
8184 !static_cast<ARMOperand &>(*Operands[3]).getToken().equals_lower(
8185 ".w"))) {
Richard Bartona39625e2012-07-09 16:12:24 +00008186 unsigned NewOpc;
8187 switch (Inst.getOpcode()) {
8188 default: llvm_unreachable("unexpected opcode");
8189 case ARM::t2ADCrr: NewOpc = ARM::tADC; break;
8190 case ARM::t2ANDrr: NewOpc = ARM::tAND; break;
8191 case ARM::t2EORrr: NewOpc = ARM::tEOR; break;
8192 case ARM::t2ORRrr: NewOpc = ARM::tORR; break;
8193 }
8194 MCInst TmpInst;
8195 TmpInst.setOpcode(NewOpc);
8196 TmpInst.addOperand(Inst.getOperand(0));
8197 TmpInst.addOperand(Inst.getOperand(5));
8198 if (Inst.getOperand(0).getReg() == Inst.getOperand(1).getReg()) {
8199 TmpInst.addOperand(Inst.getOperand(1));
8200 TmpInst.addOperand(Inst.getOperand(2));
8201 } else {
8202 TmpInst.addOperand(Inst.getOperand(2));
8203 TmpInst.addOperand(Inst.getOperand(1));
8204 }
8205 TmpInst.addOperand(Inst.getOperand(3));
8206 TmpInst.addOperand(Inst.getOperand(4));
8207 Inst = TmpInst;
8208 return true;
8209 }
8210 return false;
8211 }
Jim Grosbach8ba76c62011-08-11 17:35:48 +00008212 }
Jim Grosbachafad0532011-11-10 23:42:14 +00008213 return false;
Jim Grosbach8ba76c62011-08-11 17:35:48 +00008214}
8215
Jim Grosbach3e941ae2011-08-16 20:45:50 +00008216unsigned ARMAsmParser::checkTargetMatchPredicate(MCInst &Inst) {
8217 // 16-bit thumb arithmetic instructions either require or preclude the 'S'
8218 // suffix depending on whether they're in an IT block or not.
Jim Grosbachb7fa2c02011-08-16 22:20:01 +00008219 unsigned Opc = Inst.getOpcode();
Joey Gouly0e76fa72013-09-12 10:28:05 +00008220 const MCInstrDesc &MCID = MII.get(Opc);
Jim Grosbach3e941ae2011-08-16 20:45:50 +00008221 if (MCID.TSFlags & ARMII::ThumbArithFlagSetting) {
8222 assert(MCID.hasOptionalDef() &&
8223 "optionally flag setting instruction missing optional def operand");
8224 assert(MCID.NumOperands == Inst.getNumOperands() &&
8225 "operand count mismatch!");
8226 // Find the optional-def operand (cc_out).
8227 unsigned OpNo;
8228 for (OpNo = 0;
8229 !MCID.OpInfo[OpNo].isOptionalDef() && OpNo < MCID.NumOperands;
8230 ++OpNo)
8231 ;
8232 // If we're parsing Thumb1, reject it completely.
8233 if (isThumbOne() && Inst.getOperand(OpNo).getReg() != ARM::CPSR)
8234 return Match_MnemonicFail;
8235 // If we're parsing Thumb2, which form is legal depends on whether we're
8236 // in an IT block.
Jim Grosbached16ec42011-08-29 22:24:09 +00008237 if (isThumbTwo() && Inst.getOperand(OpNo).getReg() != ARM::CPSR &&
8238 !inITBlock())
Jim Grosbach3e941ae2011-08-16 20:45:50 +00008239 return Match_RequiresITBlock;
Jim Grosbached16ec42011-08-29 22:24:09 +00008240 if (isThumbTwo() && Inst.getOperand(OpNo).getReg() == ARM::CPSR &&
8241 inITBlock())
8242 return Match_RequiresNotITBlock;
Jim Grosbach3e941ae2011-08-16 20:45:50 +00008243 }
Jim Grosbachb7fa2c02011-08-16 22:20:01 +00008244 // Some high-register supporting Thumb1 encodings only allow both registers
8245 // to be from r0-r7 when in Thumb2.
Renato Golin36c626e2014-09-26 16:14:29 +00008246 else if (Opc == ARM::tADDhirr && isThumbOne() && !hasV6MOps() &&
Jim Grosbachb7fa2c02011-08-16 22:20:01 +00008247 isARMLowRegister(Inst.getOperand(1).getReg()) &&
8248 isARMLowRegister(Inst.getOperand(2).getReg()))
8249 return Match_RequiresThumb2;
8250 // Others only require ARMv6 or later.
Jim Grosbachf86cd372011-08-19 20:46:54 +00008251 else if (Opc == ARM::tMOVr && isThumbOne() && !hasV6Ops() &&
Jim Grosbachb7fa2c02011-08-16 22:20:01 +00008252 isARMLowRegister(Inst.getOperand(0).getReg()) &&
8253 isARMLowRegister(Inst.getOperand(1).getReg()))
8254 return Match_RequiresV6;
Jim Grosbach3e941ae2011-08-16 20:45:50 +00008255 return Match_Success;
8256}
8257
Benjamin Kramer44a53da2014-04-12 18:45:24 +00008258namespace llvm {
8259template <> inline bool IsCPSRDead<MCInst>(MCInst *Instr) {
Artyom Skrobov1a6cd1d2014-02-26 11:27:28 +00008260 return true; // In an assembly source, no need to second-guess
8261}
Benjamin Kramer44a53da2014-04-12 18:45:24 +00008262}
Artyom Skrobov1a6cd1d2014-02-26 11:27:28 +00008263
Tim Northover26bb14e2014-08-18 11:49:42 +00008264static const char *getSubtargetFeatureName(uint64_t Val);
David Blaikie960ea3f2014-06-08 16:18:35 +00008265bool ARMAsmParser::MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode,
8266 OperandVector &Operands,
Tim Northover26bb14e2014-08-18 11:49:42 +00008267 MCStreamer &Out, uint64_t &ErrorInfo,
David Blaikie960ea3f2014-06-08 16:18:35 +00008268 bool MatchingInlineAsm) {
Chris Lattner9487de62010-10-28 21:28:01 +00008269 MCInst Inst;
Jim Grosbach120a96a2011-08-15 23:03:29 +00008270 unsigned MatchResult;
Weiming Zhao8f56f882012-11-16 21:55:34 +00008271
Chad Rosier2f480a82012-10-12 22:53:36 +00008272 MatchResult = MatchInstructionImpl(Operands, Inst, ErrorInfo,
Chad Rosier49963552012-10-13 00:26:04 +00008273 MatchingInlineAsm);
Kevin Enderby3164a342010-12-09 19:19:43 +00008274 switch (MatchResult) {
Jim Grosbach120a96a2011-08-15 23:03:29 +00008275 default: break;
Chris Lattnerd27b05e2010-10-28 21:41:58 +00008276 case Match_Success:
Jim Grosbachedaa35a2011-07-26 18:25:39 +00008277 // Context sensitive operand constraints aren't handled by the matcher,
8278 // so check them here.
Jim Grosbacha0d34d32011-09-02 23:22:08 +00008279 if (validateInstruction(Inst, Operands)) {
8280 // Still progress the IT block, otherwise one wrong condition causes
8281 // nasty cascading errors.
8282 forwardITPosition();
Jim Grosbachedaa35a2011-07-26 18:25:39 +00008283 return true;
Jim Grosbacha0d34d32011-09-02 23:22:08 +00008284 }
Jim Grosbachedaa35a2011-07-26 18:25:39 +00008285
Amara Emerson52cfb6a2013-10-03 09:31:51 +00008286 { // processInstruction() updates inITBlock state, we need to save it away
8287 bool wasInITBlock = inITBlock();
8288
8289 // Some instructions need post-processing to, for example, tweak which
8290 // encoding is selected. Loop on it while changes happen so the
8291 // individual transformations can chain off each other. E.g.,
8292 // tPOP(r8)->t2LDMIA_UPD(sp,r8)->t2STR_POST(sp,r8)
8293 while (processInstruction(Inst, Operands))
8294 ;
8295
8296 // Only after the instruction is fully processed, we can validate it
8297 if (wasInITBlock && hasV8Ops() && isThumb() &&
Weiming Zhao5930ae62014-01-23 19:55:33 +00008298 !isV8EligibleForIT(&Inst)) {
Amara Emerson52cfb6a2013-10-03 09:31:51 +00008299 Warning(IDLoc, "deprecated instruction in IT block");
8300 }
8301 }
Jim Grosbach8ba76c62011-08-11 17:35:48 +00008302
Jim Grosbacha0d34d32011-09-02 23:22:08 +00008303 // Only move forward at the very end so that everything in validate
8304 // and process gets a consistent answer about whether we're in an IT
8305 // block.
8306 forwardITPosition();
8307
Jim Grosbach82f76d12012-01-25 19:52:01 +00008308 // ITasm is an ARM mode pseudo-instruction that just sets the ITblock and
8309 // doesn't actually encode.
8310 if (Inst.getOpcode() == ARM::ITasm)
8311 return false;
8312
Jim Grosbach5e5eabb2012-01-26 23:20:15 +00008313 Inst.setLoc(IDLoc);
David Woodhousee6c13e42014-01-28 23:12:42 +00008314 Out.EmitInstruction(Inst, STI);
Chris Lattner9487de62010-10-28 21:28:01 +00008315 return false;
Jim Grosbach5117ef72012-04-24 22:40:08 +00008316 case Match_MissingFeature: {
8317 assert(ErrorInfo && "Unknown missing feature!");
8318 // Special case the error message for the very common case where only
8319 // a single subtarget feature is missing (Thumb vs. ARM, e.g.).
8320 std::string Msg = "instruction requires:";
Tim Northover26bb14e2014-08-18 11:49:42 +00008321 uint64_t Mask = 1;
Jim Grosbach5117ef72012-04-24 22:40:08 +00008322 for (unsigned i = 0; i < (sizeof(ErrorInfo)*8-1); ++i) {
8323 if (ErrorInfo & Mask) {
8324 Msg += " ";
8325 Msg += getSubtargetFeatureName(ErrorInfo & Mask);
8326 }
8327 Mask <<= 1;
8328 }
8329 return Error(IDLoc, Msg);
8330 }
Chris Lattnerd27b05e2010-10-28 21:41:58 +00008331 case Match_InvalidOperand: {
8332 SMLoc ErrorLoc = IDLoc;
Tim Northover26bb14e2014-08-18 11:49:42 +00008333 if (ErrorInfo != ~0ULL) {
Chris Lattnerd27b05e2010-10-28 21:41:58 +00008334 if (ErrorInfo >= Operands.size())
8335 return Error(IDLoc, "too few operands for instruction");
Jim Grosbach624bcc72010-10-29 14:46:02 +00008336
David Blaikie960ea3f2014-06-08 16:18:35 +00008337 ErrorLoc = ((ARMOperand &)*Operands[ErrorInfo]).getStartLoc();
Chris Lattnerd27b05e2010-10-28 21:41:58 +00008338 if (ErrorLoc == SMLoc()) ErrorLoc = IDLoc;
8339 }
Jim Grosbach624bcc72010-10-29 14:46:02 +00008340
Chris Lattnerd27b05e2010-10-28 21:41:58 +00008341 return Error(ErrorLoc, "invalid operand for instruction");
Chris Lattner9487de62010-10-28 21:28:01 +00008342 }
Chris Lattnerd27b05e2010-10-28 21:41:58 +00008343 case Match_MnemonicFail:
Benjamin Kramer673824b2012-04-15 17:04:27 +00008344 return Error(IDLoc, "invalid instruction",
David Blaikie960ea3f2014-06-08 16:18:35 +00008345 ((ARMOperand &)*Operands[0]).getLocRange());
Jim Grosbached16ec42011-08-29 22:24:09 +00008346 case Match_RequiresNotITBlock:
8347 return Error(IDLoc, "flag setting instruction only valid outside IT block");
Jim Grosbach3e941ae2011-08-16 20:45:50 +00008348 case Match_RequiresITBlock:
8349 return Error(IDLoc, "instruction only valid inside IT block");
Jim Grosbachb7fa2c02011-08-16 22:20:01 +00008350 case Match_RequiresV6:
8351 return Error(IDLoc, "instruction variant requires ARMv6 or later");
8352 case Match_RequiresThumb2:
8353 return Error(IDLoc, "instruction variant requires Thumb2");
Jim Grosbach087affe2012-06-22 23:56:48 +00008354 case Match_ImmRange0_15: {
David Blaikie960ea3f2014-06-08 16:18:35 +00008355 SMLoc ErrorLoc = ((ARMOperand &)*Operands[ErrorInfo]).getStartLoc();
Jim Grosbach087affe2012-06-22 23:56:48 +00008356 if (ErrorLoc == SMLoc()) ErrorLoc = IDLoc;
8357 return Error(ErrorLoc, "immediate operand must be in the range [0,15]");
8358 }
Artyom Skrobovfc12e702013-10-23 10:14:40 +00008359 case Match_ImmRange0_239: {
David Blaikie960ea3f2014-06-08 16:18:35 +00008360 SMLoc ErrorLoc = ((ARMOperand &)*Operands[ErrorInfo]).getStartLoc();
Artyom Skrobovfc12e702013-10-23 10:14:40 +00008361 if (ErrorLoc == SMLoc()) ErrorLoc = IDLoc;
8362 return Error(ErrorLoc, "immediate operand must be in the range [0,239]");
8363 }
Kevin Enderby488f20b2014-04-10 20:18:58 +00008364 case Match_AlignedMemoryRequiresNone:
8365 case Match_DupAlignedMemoryRequiresNone:
8366 case Match_AlignedMemoryRequires16:
8367 case Match_DupAlignedMemoryRequires16:
8368 case Match_AlignedMemoryRequires32:
8369 case Match_DupAlignedMemoryRequires32:
8370 case Match_AlignedMemoryRequires64:
8371 case Match_DupAlignedMemoryRequires64:
8372 case Match_AlignedMemoryRequires64or128:
8373 case Match_DupAlignedMemoryRequires64or128:
8374 case Match_AlignedMemoryRequires64or128or256:
8375 {
David Blaikie960ea3f2014-06-08 16:18:35 +00008376 SMLoc ErrorLoc = ((ARMOperand &)*Operands[ErrorInfo]).getAlignmentLoc();
Kevin Enderby488f20b2014-04-10 20:18:58 +00008377 if (ErrorLoc == SMLoc()) ErrorLoc = IDLoc;
8378 switch (MatchResult) {
8379 default:
8380 llvm_unreachable("Missing Match_Aligned type");
8381 case Match_AlignedMemoryRequiresNone:
8382 case Match_DupAlignedMemoryRequiresNone:
8383 return Error(ErrorLoc, "alignment must be omitted");
8384 case Match_AlignedMemoryRequires16:
8385 case Match_DupAlignedMemoryRequires16:
8386 return Error(ErrorLoc, "alignment must be 16 or omitted");
8387 case Match_AlignedMemoryRequires32:
8388 case Match_DupAlignedMemoryRequires32:
8389 return Error(ErrorLoc, "alignment must be 32 or omitted");
8390 case Match_AlignedMemoryRequires64:
8391 case Match_DupAlignedMemoryRequires64:
8392 return Error(ErrorLoc, "alignment must be 64 or omitted");
8393 case Match_AlignedMemoryRequires64or128:
8394 case Match_DupAlignedMemoryRequires64or128:
8395 return Error(ErrorLoc, "alignment must be 64, 128 or omitted");
8396 case Match_AlignedMemoryRequires64or128or256:
8397 return Error(ErrorLoc, "alignment must be 64, 128, 256 or omitted");
8398 }
8399 }
Chris Lattnerd27b05e2010-10-28 21:41:58 +00008400 }
Jim Grosbach624bcc72010-10-29 14:46:02 +00008401
Eric Christopher91d7b902010-10-29 09:26:59 +00008402 llvm_unreachable("Implement any new match types added!");
Chris Lattner9487de62010-10-28 21:28:01 +00008403}
8404
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00008405/// parseDirective parses the arm specific directives
Kevin Enderbyccab3172009-09-15 00:27:25 +00008406bool ARMAsmParser::ParseDirective(AsmToken DirectiveID) {
Saleem Abdulrasooldd979e62014-04-05 22:09:51 +00008407 const MCObjectFileInfo::Environment Format =
8408 getContext().getObjectFileInfo()->getObjectFileType();
8409 bool IsMachO = Format == MCObjectFileInfo::IsMachO;
Saleem Abdulrasoolbfdfb142014-09-18 04:28:29 +00008410 bool IsCOFF = Format == MCObjectFileInfo::IsCOFF;
Saleem Abdulrasooldd979e62014-04-05 22:09:51 +00008411
Kevin Enderbyccab3172009-09-15 00:27:25 +00008412 StringRef IDVal = DirectiveID.getIdentifier();
8413 if (IDVal == ".word")
Saleem Abdulrasool38976512014-02-23 06:22:09 +00008414 return parseLiteralValues(4, DirectiveID.getLoc());
8415 else if (IDVal == ".short" || IDVal == ".hword")
8416 return parseLiteralValues(2, DirectiveID.getLoc());
Kevin Enderby146dcf22009-10-15 20:48:48 +00008417 else if (IDVal == ".thumb")
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00008418 return parseDirectiveThumb(DirectiveID.getLoc());
Jim Grosbach7f882392011-12-07 18:04:19 +00008419 else if (IDVal == ".arm")
8420 return parseDirectiveARM(DirectiveID.getLoc());
Kevin Enderby146dcf22009-10-15 20:48:48 +00008421 else if (IDVal == ".thumb_func")
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00008422 return parseDirectiveThumbFunc(DirectiveID.getLoc());
Kevin Enderby146dcf22009-10-15 20:48:48 +00008423 else if (IDVal == ".code")
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00008424 return parseDirectiveCode(DirectiveID.getLoc());
Kevin Enderby146dcf22009-10-15 20:48:48 +00008425 else if (IDVal == ".syntax")
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00008426 return parseDirectiveSyntax(DirectiveID.getLoc());
Jim Grosbachab5830e2011-12-14 02:16:11 +00008427 else if (IDVal == ".unreq")
8428 return parseDirectiveUnreq(DirectiveID.getLoc());
Logan Chien4ea23b52013-05-10 16:17:24 +00008429 else if (IDVal == ".fnend")
8430 return parseDirectiveFnEnd(DirectiveID.getLoc());
8431 else if (IDVal == ".cantunwind")
8432 return parseDirectiveCantUnwind(DirectiveID.getLoc());
8433 else if (IDVal == ".personality")
8434 return parseDirectivePersonality(DirectiveID.getLoc());
8435 else if (IDVal == ".handlerdata")
8436 return parseDirectiveHandlerData(DirectiveID.getLoc());
8437 else if (IDVal == ".setfp")
8438 return parseDirectiveSetFP(DirectiveID.getLoc());
8439 else if (IDVal == ".pad")
8440 return parseDirectivePad(DirectiveID.getLoc());
8441 else if (IDVal == ".save")
8442 return parseDirectiveRegSave(DirectiveID.getLoc(), false);
8443 else if (IDVal == ".vsave")
8444 return parseDirectiveRegSave(DirectiveID.getLoc(), true);
Saleem Abdulrasool6e6c2392013-12-20 07:21:16 +00008445 else if (IDVal == ".ltorg" || IDVal == ".pool")
David Peixotto80c083a2013-12-19 18:26:07 +00008446 return parseDirectiveLtorg(DirectiveID.getLoc());
Saleem Abdulrasoola5549682013-12-26 01:52:28 +00008447 else if (IDVal == ".even")
8448 return parseDirectiveEven(DirectiveID.getLoc());
Saleem Abdulrasool662f5c12014-01-21 02:33:02 +00008449 else if (IDVal == ".personalityindex")
8450 return parseDirectivePersonalityIndex(DirectiveID.getLoc());
Saleem Abdulrasoold9f08602014-01-21 02:33:10 +00008451 else if (IDVal == ".unwind_raw")
8452 return parseDirectiveUnwindRaw(DirectiveID.getLoc());
Saleem Abdulrasool5d962d32014-01-30 04:46:24 +00008453 else if (IDVal == ".movsp")
8454 return parseDirectiveMovSP(DirectiveID.getLoc());
Saleem Abdulrasool49480bf2014-02-16 00:16:41 +00008455 else if (IDVal == ".arch_extension")
8456 return parseDirectiveArchExtension(DirectiveID.getLoc());
Saleem Abdulrasoolfd6ed1e2014-02-23 17:45:32 +00008457 else if (IDVal == ".align")
8458 return parseDirectiveAlign(DirectiveID.getLoc());
Saleem Abdulrasool39f773f2014-03-20 06:05:33 +00008459 else if (IDVal == ".thumb_set")
8460 return parseDirectiveThumbSet(DirectiveID.getLoc());
Saleem Abdulrasooldd979e62014-04-05 22:09:51 +00008461
Saleem Abdulrasoolbfdfb142014-09-18 04:28:29 +00008462 if (!IsMachO && !IsCOFF) {
Saleem Abdulrasooldd979e62014-04-05 22:09:51 +00008463 if (IDVal == ".arch")
8464 return parseDirectiveArch(DirectiveID.getLoc());
8465 else if (IDVal == ".cpu")
8466 return parseDirectiveCPU(DirectiveID.getLoc());
8467 else if (IDVal == ".eabi_attribute")
8468 return parseDirectiveEabiAttr(DirectiveID.getLoc());
8469 else if (IDVal == ".fpu")
8470 return parseDirectiveFPU(DirectiveID.getLoc());
8471 else if (IDVal == ".fnstart")
8472 return parseDirectiveFnStart(DirectiveID.getLoc());
8473 else if (IDVal == ".inst")
8474 return parseDirectiveInst(DirectiveID.getLoc());
8475 else if (IDVal == ".inst.n")
8476 return parseDirectiveInst(DirectiveID.getLoc(), 'n');
8477 else if (IDVal == ".inst.w")
8478 return parseDirectiveInst(DirectiveID.getLoc(), 'w');
8479 else if (IDVal == ".object_arch")
8480 return parseDirectiveObjectArch(DirectiveID.getLoc());
8481 else if (IDVal == ".tlsdescseq")
8482 return parseDirectiveTLSDescSeq(DirectiveID.getLoc());
8483 }
8484
Kevin Enderbyccab3172009-09-15 00:27:25 +00008485 return true;
8486}
8487
Saleem Abdulrasool38976512014-02-23 06:22:09 +00008488/// parseLiteralValues
8489/// ::= .hword expression [, expression]*
8490/// ::= .short expression [, expression]*
8491/// ::= .word expression [, expression]*
8492bool ARMAsmParser::parseLiteralValues(unsigned Size, SMLoc L) {
Kevin Enderbyccab3172009-09-15 00:27:25 +00008493 if (getLexer().isNot(AsmToken::EndOfStatement)) {
8494 for (;;) {
8495 const MCExpr *Value;
Saleem Abdulrasoola9036612014-01-26 22:29:50 +00008496 if (getParser().parseExpression(Value)) {
8497 Parser.eatToEndOfStatement();
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00008498 return false;
Saleem Abdulrasoola9036612014-01-26 22:29:50 +00008499 }
Kevin Enderbyccab3172009-09-15 00:27:25 +00008500
Eric Christopherbf7bc492013-01-09 03:52:05 +00008501 getParser().getStreamer().EmitValue(Value, Size);
Kevin Enderbyccab3172009-09-15 00:27:25 +00008502
8503 if (getLexer().is(AsmToken::EndOfStatement))
8504 break;
Jim Grosbach624bcc72010-10-29 14:46:02 +00008505
Kevin Enderbyccab3172009-09-15 00:27:25 +00008506 // FIXME: Improve diagnostic.
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00008507 if (getLexer().isNot(AsmToken::Comma)) {
8508 Error(L, "unexpected token in directive");
8509 return false;
8510 }
Sean Callanana83fd7d2010-01-19 20:27:46 +00008511 Parser.Lex();
Kevin Enderbyccab3172009-09-15 00:27:25 +00008512 }
8513 }
8514
Sean Callanana83fd7d2010-01-19 20:27:46 +00008515 Parser.Lex();
Kevin Enderbyccab3172009-09-15 00:27:25 +00008516 return false;
8517}
8518
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00008519/// parseDirectiveThumb
Kevin Enderby146dcf22009-10-15 20:48:48 +00008520/// ::= .thumb
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00008521bool ARMAsmParser::parseDirectiveThumb(SMLoc L) {
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00008522 if (getLexer().isNot(AsmToken::EndOfStatement)) {
8523 Error(L, "unexpected token in directive");
8524 return false;
8525 }
Sean Callanana83fd7d2010-01-19 20:27:46 +00008526 Parser.Lex();
Kevin Enderby146dcf22009-10-15 20:48:48 +00008527
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00008528 if (!hasThumb()) {
8529 Error(L, "target does not support Thumb mode");
8530 return false;
8531 }
Tim Northovera2292d02013-06-10 23:20:58 +00008532
Jim Grosbach7f882392011-12-07 18:04:19 +00008533 if (!isThumb())
8534 SwitchMode();
Saleem Abdulrasool44419fc2014-03-22 19:26:18 +00008535
Jim Grosbach7f882392011-12-07 18:04:19 +00008536 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code16);
8537 return false;
8538}
8539
8540/// parseDirectiveARM
8541/// ::= .arm
8542bool ARMAsmParser::parseDirectiveARM(SMLoc L) {
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00008543 if (getLexer().isNot(AsmToken::EndOfStatement)) {
8544 Error(L, "unexpected token in directive");
8545 return false;
8546 }
Jim Grosbach7f882392011-12-07 18:04:19 +00008547 Parser.Lex();
8548
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00008549 if (!hasARM()) {
8550 Error(L, "target does not support ARM mode");
8551 return false;
8552 }
Tim Northovera2292d02013-06-10 23:20:58 +00008553
Jim Grosbach7f882392011-12-07 18:04:19 +00008554 if (isThumb())
8555 SwitchMode();
Saleem Abdulrasool44419fc2014-03-22 19:26:18 +00008556
Jim Grosbach7f882392011-12-07 18:04:19 +00008557 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code32);
Kevin Enderby146dcf22009-10-15 20:48:48 +00008558 return false;
8559}
8560
Tim Northover1744d0a2013-10-25 12:49:50 +00008561void ARMAsmParser::onLabelParsed(MCSymbol *Symbol) {
8562 if (NextSymbolIsThumb) {
8563 getParser().getStreamer().EmitThumbFunc(Symbol);
8564 NextSymbolIsThumb = false;
8565 }
8566}
8567
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00008568/// parseDirectiveThumbFunc
Kevin Enderby146dcf22009-10-15 20:48:48 +00008569/// ::= .thumbfunc symbol_name
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00008570bool ARMAsmParser::parseDirectiveThumbFunc(SMLoc L) {
Saleem Abdulrasool8c61c6c2014-09-18 03:49:55 +00008571 const auto Format = getContext().getObjectFileInfo()->getObjectFileType();
8572 bool IsMachO = Format == MCObjectFileInfo::IsMachO;
Rafael Espindolae90c1cb2011-05-16 16:17:21 +00008573
Jim Grosbach1152cc02011-12-21 22:30:16 +00008574 // Darwin asm has (optionally) function name after .thumb_func direction
Rafael Espindolae90c1cb2011-05-16 16:17:21 +00008575 // ELF doesn't
Saleem Abdulrasool8c61c6c2014-09-18 03:49:55 +00008576 if (IsMachO) {
Rafael Espindolae90c1cb2011-05-16 16:17:21 +00008577 const AsmToken &Tok = Parser.getTok();
Jim Grosbach1152cc02011-12-21 22:30:16 +00008578 if (Tok.isNot(AsmToken::EndOfStatement)) {
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00008579 if (Tok.isNot(AsmToken::Identifier) && Tok.isNot(AsmToken::String)) {
8580 Error(L, "unexpected token in .thumb_func directive");
8581 return false;
8582 }
8583
Tim Northover1744d0a2013-10-25 12:49:50 +00008584 MCSymbol *Func =
8585 getParser().getContext().GetOrCreateSymbol(Tok.getIdentifier());
8586 getParser().getStreamer().EmitThumbFunc(Func);
Jim Grosbach1152cc02011-12-21 22:30:16 +00008587 Parser.Lex(); // Consume the identifier token.
Tim Northover1744d0a2013-10-25 12:49:50 +00008588 return false;
Jim Grosbach1152cc02011-12-21 22:30:16 +00008589 }
Rafael Espindolae90c1cb2011-05-16 16:17:21 +00008590 }
8591
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00008592 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Saleem Abdulrasool8c61c6c2014-09-18 03:49:55 +00008593 Error(Parser.getTok().getLoc(), "unexpected token in directive");
8594 Parser.eatToEndOfStatement();
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00008595 return false;
8596 }
Jim Grosbach1152cc02011-12-21 22:30:16 +00008597
Tim Northover1744d0a2013-10-25 12:49:50 +00008598 NextSymbolIsThumb = true;
Kevin Enderby146dcf22009-10-15 20:48:48 +00008599 return false;
8600}
8601
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00008602/// parseDirectiveSyntax
Kevin Enderby146dcf22009-10-15 20:48:48 +00008603/// ::= .syntax unified | divided
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00008604bool ARMAsmParser::parseDirectiveSyntax(SMLoc L) {
Sean Callanan936b0d32010-01-19 21:44:56 +00008605 const AsmToken &Tok = Parser.getTok();
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00008606 if (Tok.isNot(AsmToken::Identifier)) {
8607 Error(L, "unexpected token in .syntax directive");
8608 return false;
8609 }
8610
Benjamin Kramer92d89982010-07-14 22:38:02 +00008611 StringRef Mode = Tok.getString();
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00008612 if (Mode == "unified" || Mode == "UNIFIED") {
Sean Callanana83fd7d2010-01-19 20:27:46 +00008613 Parser.Lex();
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00008614 } else if (Mode == "divided" || Mode == "DIVIDED") {
8615 Error(L, "'.syntax divided' arm asssembly not supported");
8616 return false;
8617 } else {
8618 Error(L, "unrecognized syntax mode in .syntax directive");
8619 return false;
8620 }
Kevin Enderby146dcf22009-10-15 20:48:48 +00008621
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00008622 if (getLexer().isNot(AsmToken::EndOfStatement)) {
8623 Error(Parser.getTok().getLoc(), "unexpected token in directive");
8624 return false;
8625 }
Sean Callanana83fd7d2010-01-19 20:27:46 +00008626 Parser.Lex();
Kevin Enderby146dcf22009-10-15 20:48:48 +00008627
8628 // TODO tell the MC streamer the mode
8629 // getParser().getStreamer().Emit???();
8630 return false;
8631}
8632
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00008633/// parseDirectiveCode
Kevin Enderby146dcf22009-10-15 20:48:48 +00008634/// ::= .code 16 | 32
Jim Grosbacheab1c0d2011-07-26 17:10:22 +00008635bool ARMAsmParser::parseDirectiveCode(SMLoc L) {
Sean Callanan936b0d32010-01-19 21:44:56 +00008636 const AsmToken &Tok = Parser.getTok();
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00008637 if (Tok.isNot(AsmToken::Integer)) {
8638 Error(L, "unexpected token in .code directive");
8639 return false;
8640 }
Sean Callanan936b0d32010-01-19 21:44:56 +00008641 int64_t Val = Parser.getTok().getIntVal();
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00008642 if (Val != 16 && Val != 32) {
8643 Error(L, "invalid operand to .code directive");
8644 return false;
8645 }
8646 Parser.Lex();
Kevin Enderby146dcf22009-10-15 20:48:48 +00008647
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00008648 if (getLexer().isNot(AsmToken::EndOfStatement)) {
8649 Error(Parser.getTok().getLoc(), "unexpected token in directive");
8650 return false;
8651 }
Sean Callanana83fd7d2010-01-19 20:27:46 +00008652 Parser.Lex();
Kevin Enderby146dcf22009-10-15 20:48:48 +00008653
Evan Cheng284b4672011-07-08 22:36:29 +00008654 if (Val == 16) {
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00008655 if (!hasThumb()) {
8656 Error(L, "target does not support Thumb mode");
8657 return false;
8658 }
Tim Northovera2292d02013-06-10 23:20:58 +00008659
Jim Grosbachf471ac32011-09-06 18:46:23 +00008660 if (!isThumb())
Evan Cheng91111d22011-07-09 05:47:46 +00008661 SwitchMode();
Jim Grosbachf471ac32011-09-06 18:46:23 +00008662 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code16);
Evan Cheng284b4672011-07-08 22:36:29 +00008663 } else {
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00008664 if (!hasARM()) {
8665 Error(L, "target does not support ARM mode");
8666 return false;
8667 }
Tim Northovera2292d02013-06-10 23:20:58 +00008668
Jim Grosbachf471ac32011-09-06 18:46:23 +00008669 if (isThumb())
Evan Cheng91111d22011-07-09 05:47:46 +00008670 SwitchMode();
Jim Grosbachf471ac32011-09-06 18:46:23 +00008671 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code32);
Evan Cheng45543ba2011-07-08 22:49:55 +00008672 }
Jim Grosbach2db0ea02010-11-05 22:40:53 +00008673
Kevin Enderby146dcf22009-10-15 20:48:48 +00008674 return false;
8675}
8676
Jim Grosbachab5830e2011-12-14 02:16:11 +00008677/// parseDirectiveReq
8678/// ::= name .req registername
8679bool ARMAsmParser::parseDirectiveReq(StringRef Name, SMLoc L) {
8680 Parser.Lex(); // Eat the '.req' token.
8681 unsigned Reg;
8682 SMLoc SRegLoc, ERegLoc;
8683 if (ParseRegister(Reg, SRegLoc, ERegLoc)) {
Jim Grosbachd2037eb2013-02-20 22:21:35 +00008684 Parser.eatToEndOfStatement();
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00008685 Error(SRegLoc, "register name expected");
8686 return false;
Jim Grosbachab5830e2011-12-14 02:16:11 +00008687 }
8688
8689 // Shouldn't be anything else.
8690 if (Parser.getTok().isNot(AsmToken::EndOfStatement)) {
Jim Grosbachd2037eb2013-02-20 22:21:35 +00008691 Parser.eatToEndOfStatement();
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00008692 Error(Parser.getTok().getLoc(), "unexpected input in .req directive.");
8693 return false;
Jim Grosbachab5830e2011-12-14 02:16:11 +00008694 }
8695
8696 Parser.Lex(); // Consume the EndOfStatement
8697
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00008698 if (RegisterReqs.GetOrCreateValue(Name, Reg).getValue() != Reg) {
8699 Error(SRegLoc, "redefinition of '" + Name + "' does not match original.");
8700 return false;
8701 }
Jim Grosbachab5830e2011-12-14 02:16:11 +00008702
8703 return false;
8704}
8705
8706/// parseDirectiveUneq
8707/// ::= .unreq registername
8708bool ARMAsmParser::parseDirectiveUnreq(SMLoc L) {
8709 if (Parser.getTok().isNot(AsmToken::Identifier)) {
Jim Grosbachd2037eb2013-02-20 22:21:35 +00008710 Parser.eatToEndOfStatement();
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00008711 Error(L, "unexpected input in .unreq directive.");
8712 return false;
Jim Grosbachab5830e2011-12-14 02:16:11 +00008713 }
Duncan P. N. Exon Smith29db0eb2014-03-07 16:16:52 +00008714 RegisterReqs.erase(Parser.getTok().getIdentifier().lower());
Jim Grosbachab5830e2011-12-14 02:16:11 +00008715 Parser.Lex(); // Eat the identifier.
8716 return false;
8717}
8718
Jason W Kim135d2442011-12-20 17:38:12 +00008719/// parseDirectiveArch
8720/// ::= .arch token
8721bool ARMAsmParser::parseDirectiveArch(SMLoc L) {
Logan Chien439e8f92013-12-11 17:16:25 +00008722 StringRef Arch = getParser().parseStringToEndOfStatement().trim();
8723
8724 unsigned ID = StringSwitch<unsigned>(Arch)
8725#define ARM_ARCH_NAME(NAME, ID, DEFAULT_CPU_NAME, DEFAULT_CPU_ARCH) \
8726 .Case(NAME, ARM::ID)
Joerg Sonnenbergera13f8b42013-12-26 11:50:28 +00008727#define ARM_ARCH_ALIAS(NAME, ID) \
8728 .Case(NAME, ARM::ID)
Logan Chien439e8f92013-12-11 17:16:25 +00008729#include "MCTargetDesc/ARMArchName.def"
8730 .Default(ARM::INVALID_ARCH);
8731
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00008732 if (ID == ARM::INVALID_ARCH) {
8733 Error(L, "Unknown arch name");
8734 return false;
8735 }
Logan Chien439e8f92013-12-11 17:16:25 +00008736
8737 getTargetStreamer().emitArch(ID);
8738 return false;
Jason W Kim135d2442011-12-20 17:38:12 +00008739}
8740
8741/// parseDirectiveEabiAttr
Saleem Abdulrasool87ccd362014-01-07 02:28:42 +00008742/// ::= .eabi_attribute int, int [, "str"]
8743/// ::= .eabi_attribute Tag_name, int [, "str"]
Jason W Kim135d2442011-12-20 17:38:12 +00008744bool ARMAsmParser::parseDirectiveEabiAttr(SMLoc L) {
Saleem Abdulrasool87ccd362014-01-07 02:28:42 +00008745 int64_t Tag;
8746 SMLoc TagLoc;
Saleem Abdulrasool87ccd362014-01-07 02:28:42 +00008747 TagLoc = Parser.getTok().getLoc();
8748 if (Parser.getTok().is(AsmToken::Identifier)) {
8749 StringRef Name = Parser.getTok().getIdentifier();
8750 Tag = ARMBuildAttrs::AttrTypeFromString(Name);
8751 if (Tag == -1) {
8752 Error(TagLoc, "attribute name not recognised: " + Name);
8753 Parser.eatToEndOfStatement();
8754 return false;
8755 }
8756 Parser.Lex();
8757 } else {
8758 const MCExpr *AttrExpr;
8759
8760 TagLoc = Parser.getTok().getLoc();
8761 if (Parser.parseExpression(AttrExpr)) {
8762 Parser.eatToEndOfStatement();
8763 return false;
8764 }
8765
8766 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(AttrExpr);
8767 if (!CE) {
8768 Error(TagLoc, "expected numeric constant");
8769 Parser.eatToEndOfStatement();
8770 return false;
8771 }
8772
8773 Tag = CE->getValue();
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00008774 }
Logan Chien8cbb80d2013-10-28 17:51:12 +00008775
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00008776 if (Parser.getTok().isNot(AsmToken::Comma)) {
Saleem Abdulrasool87ccd362014-01-07 02:28:42 +00008777 Error(Parser.getTok().getLoc(), "comma expected");
8778 Parser.eatToEndOfStatement();
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00008779 return false;
8780 }
Logan Chien8cbb80d2013-10-28 17:51:12 +00008781 Parser.Lex(); // skip comma
8782
Saleem Abdulrasool87ccd362014-01-07 02:28:42 +00008783 StringRef StringValue = "";
8784 bool IsStringValue = false;
Logan Chien8cbb80d2013-10-28 17:51:12 +00008785
Saleem Abdulrasool87ccd362014-01-07 02:28:42 +00008786 int64_t IntegerValue = 0;
8787 bool IsIntegerValue = false;
8788
8789 if (Tag == ARMBuildAttrs::CPU_raw_name || Tag == ARMBuildAttrs::CPU_name)
8790 IsStringValue = true;
8791 else if (Tag == ARMBuildAttrs::compatibility) {
8792 IsStringValue = true;
8793 IsIntegerValue = true;
Saleem Abdulrasool9dedf642014-01-19 08:25:19 +00008794 } else if (Tag < 32 || Tag % 2 == 0)
Saleem Abdulrasool87ccd362014-01-07 02:28:42 +00008795 IsIntegerValue = true;
8796 else if (Tag % 2 == 1)
8797 IsStringValue = true;
8798 else
8799 llvm_unreachable("invalid tag type");
8800
8801 if (IsIntegerValue) {
8802 const MCExpr *ValueExpr;
8803 SMLoc ValueExprLoc = Parser.getTok().getLoc();
8804 if (Parser.parseExpression(ValueExpr)) {
8805 Parser.eatToEndOfStatement();
8806 return false;
8807 }
8808
8809 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ValueExpr);
8810 if (!CE) {
8811 Error(ValueExprLoc, "expected numeric constant");
8812 Parser.eatToEndOfStatement();
8813 return false;
8814 }
8815
8816 IntegerValue = CE->getValue();
8817 }
8818
8819 if (Tag == ARMBuildAttrs::compatibility) {
8820 if (Parser.getTok().isNot(AsmToken::Comma))
8821 IsStringValue = false;
8822 else
8823 Parser.Lex();
8824 }
8825
8826 if (IsStringValue) {
8827 if (Parser.getTok().isNot(AsmToken::String)) {
8828 Error(Parser.getTok().getLoc(), "bad string constant");
8829 Parser.eatToEndOfStatement();
8830 return false;
8831 }
8832
8833 StringValue = Parser.getTok().getStringContents();
8834 Parser.Lex();
8835 }
8836
8837 if (IsIntegerValue && IsStringValue) {
8838 assert(Tag == ARMBuildAttrs::compatibility);
8839 getTargetStreamer().emitIntTextAttribute(Tag, IntegerValue, StringValue);
8840 } else if (IsIntegerValue)
8841 getTargetStreamer().emitAttribute(Tag, IntegerValue);
8842 else if (IsStringValue)
8843 getTargetStreamer().emitTextAttribute(Tag, StringValue);
Logan Chien8cbb80d2013-10-28 17:51:12 +00008844 return false;
8845}
8846
8847/// parseDirectiveCPU
8848/// ::= .cpu str
8849bool ARMAsmParser::parseDirectiveCPU(SMLoc L) {
8850 StringRef CPU = getParser().parseStringToEndOfStatement().trim();
8851 getTargetStreamer().emitTextAttribute(ARMBuildAttrs::CPU_name, CPU);
8852 return false;
8853}
8854
Nico Weberae050bb2014-08-16 05:37:51 +00008855// FIXME: This is duplicated in getARMFPUFeatures() in
8856// tools/clang/lib/Driver/Tools.cpp
8857static const struct {
8858 const unsigned Fpu;
8859 const uint64_t Enabled;
8860 const uint64_t Disabled;
8861} Fpus[] = {
8862 {ARM::VFP, ARM::FeatureVFP2, ARM::FeatureNEON},
8863 {ARM::VFPV2, ARM::FeatureVFP2, ARM::FeatureNEON},
8864 {ARM::VFPV3, ARM::FeatureVFP3, ARM::FeatureNEON},
8865 {ARM::VFPV3_D16, ARM::FeatureVFP3 | ARM::FeatureD16, ARM::FeatureNEON},
8866 {ARM::VFPV4, ARM::FeatureVFP4, ARM::FeatureNEON},
8867 {ARM::VFPV4_D16, ARM::FeatureVFP4 | ARM::FeatureD16, ARM::FeatureNEON},
Oliver Stannard37e4daa2014-10-01 09:02:17 +00008868 {ARM::FPV5_D16, ARM::FeatureFPARMv8 | ARM::FeatureD16,
8869 ARM::FeatureNEON | ARM::FeatureCrypto},
Nico Weberae050bb2014-08-16 05:37:51 +00008870 {ARM::FP_ARMV8, ARM::FeatureFPARMv8,
8871 ARM::FeatureNEON | ARM::FeatureCrypto},
8872 {ARM::NEON, ARM::FeatureNEON, 0},
8873 {ARM::NEON_VFPV4, ARM::FeatureVFP4 | ARM::FeatureNEON, 0},
8874 {ARM::NEON_FP_ARMV8, ARM::FeatureFPARMv8 | ARM::FeatureNEON,
8875 ARM::FeatureCrypto},
8876 {ARM::CRYPTO_NEON_FP_ARMV8,
8877 ARM::FeatureFPARMv8 | ARM::FeatureNEON | ARM::FeatureCrypto, 0},
8878 {ARM::SOFTVFP, 0, 0},
8879};
8880
Logan Chien8cbb80d2013-10-28 17:51:12 +00008881/// parseDirectiveFPU
8882/// ::= .fpu str
8883bool ARMAsmParser::parseDirectiveFPU(SMLoc L) {
8884 StringRef FPU = getParser().parseStringToEndOfStatement().trim();
8885
8886 unsigned ID = StringSwitch<unsigned>(FPU)
8887#define ARM_FPU_NAME(NAME, ID) .Case(NAME, ARM::ID)
8888#include "ARMFPUName.def"
8889 .Default(ARM::INVALID_FPU);
8890
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00008891 if (ID == ARM::INVALID_FPU) {
8892 Error(L, "Unknown FPU name");
8893 return false;
8894 }
Logan Chien8cbb80d2013-10-28 17:51:12 +00008895
Nico Weberae050bb2014-08-16 05:37:51 +00008896 for (const auto &Fpu : Fpus) {
8897 if (Fpu.Fpu != ID)
8898 continue;
8899
8900 // Need to toggle features that should be on but are off and that
8901 // should off but are on.
Tim Northover26bb14e2014-08-18 11:49:42 +00008902 uint64_t Toggle = (Fpu.Enabled & ~STI.getFeatureBits()) |
Nico Weberae050bb2014-08-16 05:37:51 +00008903 (Fpu.Disabled & STI.getFeatureBits());
8904 setAvailableFeatures(ComputeAvailableFeatures(STI.ToggleFeature(Toggle)));
8905 break;
8906 }
8907
Logan Chien8cbb80d2013-10-28 17:51:12 +00008908 getTargetStreamer().emitFPU(ID);
8909 return false;
Jason W Kim135d2442011-12-20 17:38:12 +00008910}
8911
Logan Chien4ea23b52013-05-10 16:17:24 +00008912/// parseDirectiveFnStart
8913/// ::= .fnstart
8914bool ARMAsmParser::parseDirectiveFnStart(SMLoc L) {
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00008915 if (UC.hasFnStart()) {
Logan Chien4ea23b52013-05-10 16:17:24 +00008916 Error(L, ".fnstart starts before the end of previous one");
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00008917 UC.emitFnStartLocNotes();
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00008918 return false;
Logan Chien4ea23b52013-05-10 16:17:24 +00008919 }
8920
Saleem Abdulrasool662f5c12014-01-21 02:33:02 +00008921 // Reset the unwind directives parser state
8922 UC.reset();
8923
Rafael Espindolaa17151a2013-10-08 13:08:17 +00008924 getTargetStreamer().emitFnStart();
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00008925
8926 UC.recordFnStart(L);
Logan Chien4ea23b52013-05-10 16:17:24 +00008927 return false;
8928}
8929
8930/// parseDirectiveFnEnd
8931/// ::= .fnend
8932bool ARMAsmParser::parseDirectiveFnEnd(SMLoc L) {
8933 // Check the ordering of unwind directives
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00008934 if (!UC.hasFnStart()) {
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00008935 Error(L, ".fnstart must precede .fnend directive");
8936 return false;
8937 }
Logan Chien4ea23b52013-05-10 16:17:24 +00008938
8939 // Reset the unwind directives parser state
Rafael Espindolaa17151a2013-10-08 13:08:17 +00008940 getTargetStreamer().emitFnEnd();
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00008941
8942 UC.reset();
Logan Chien4ea23b52013-05-10 16:17:24 +00008943 return false;
8944}
8945
8946/// parseDirectiveCantUnwind
8947/// ::= .cantunwind
8948bool ARMAsmParser::parseDirectiveCantUnwind(SMLoc L) {
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00008949 UC.recordCantUnwind(L);
8950
Logan Chien4ea23b52013-05-10 16:17:24 +00008951 // Check the ordering of unwind directives
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00008952 if (!UC.hasFnStart()) {
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00008953 Error(L, ".fnstart must precede .cantunwind directive");
8954 return false;
8955 }
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00008956 if (UC.hasHandlerData()) {
Logan Chien4ea23b52013-05-10 16:17:24 +00008957 Error(L, ".cantunwind can't be used with .handlerdata directive");
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00008958 UC.emitHandlerDataLocNotes();
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00008959 return false;
Logan Chien4ea23b52013-05-10 16:17:24 +00008960 }
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00008961 if (UC.hasPersonality()) {
Logan Chien4ea23b52013-05-10 16:17:24 +00008962 Error(L, ".cantunwind can't be used with .personality directive");
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00008963 UC.emitPersonalityLocNotes();
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00008964 return false;
Logan Chien4ea23b52013-05-10 16:17:24 +00008965 }
8966
Rafael Espindolaa17151a2013-10-08 13:08:17 +00008967 getTargetStreamer().emitCantUnwind();
Logan Chien4ea23b52013-05-10 16:17:24 +00008968 return false;
8969}
8970
8971/// parseDirectivePersonality
8972/// ::= .personality name
8973bool ARMAsmParser::parseDirectivePersonality(SMLoc L) {
Saleem Abdulrasool662f5c12014-01-21 02:33:02 +00008974 bool HasExistingPersonality = UC.hasPersonality();
8975
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00008976 UC.recordPersonality(L);
8977
Logan Chien4ea23b52013-05-10 16:17:24 +00008978 // Check the ordering of unwind directives
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00008979 if (!UC.hasFnStart()) {
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00008980 Error(L, ".fnstart must precede .personality directive");
8981 return false;
8982 }
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00008983 if (UC.cantUnwind()) {
Logan Chien4ea23b52013-05-10 16:17:24 +00008984 Error(L, ".personality can't be used with .cantunwind directive");
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00008985 UC.emitCantUnwindLocNotes();
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00008986 return false;
Logan Chien4ea23b52013-05-10 16:17:24 +00008987 }
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00008988 if (UC.hasHandlerData()) {
Logan Chien4ea23b52013-05-10 16:17:24 +00008989 Error(L, ".personality must precede .handlerdata directive");
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00008990 UC.emitHandlerDataLocNotes();
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00008991 return false;
Logan Chien4ea23b52013-05-10 16:17:24 +00008992 }
Saleem Abdulrasool662f5c12014-01-21 02:33:02 +00008993 if (HasExistingPersonality) {
8994 Parser.eatToEndOfStatement();
8995 Error(L, "multiple personality directives");
8996 UC.emitPersonalityLocNotes();
8997 return false;
8998 }
Logan Chien4ea23b52013-05-10 16:17:24 +00008999
9000 // Parse the name of the personality routine
9001 if (Parser.getTok().isNot(AsmToken::Identifier)) {
9002 Parser.eatToEndOfStatement();
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00009003 Error(L, "unexpected input in .personality directive.");
9004 return false;
Logan Chien4ea23b52013-05-10 16:17:24 +00009005 }
9006 StringRef Name(Parser.getTok().getIdentifier());
9007 Parser.Lex();
9008
9009 MCSymbol *PR = getParser().getContext().GetOrCreateSymbol(Name);
Rafael Espindolaa17151a2013-10-08 13:08:17 +00009010 getTargetStreamer().emitPersonality(PR);
Logan Chien4ea23b52013-05-10 16:17:24 +00009011 return false;
9012}
9013
9014/// parseDirectiveHandlerData
9015/// ::= .handlerdata
9016bool ARMAsmParser::parseDirectiveHandlerData(SMLoc L) {
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00009017 UC.recordHandlerData(L);
9018
Logan Chien4ea23b52013-05-10 16:17:24 +00009019 // Check the ordering of unwind directives
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00009020 if (!UC.hasFnStart()) {
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00009021 Error(L, ".fnstart must precede .personality directive");
9022 return false;
9023 }
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00009024 if (UC.cantUnwind()) {
Logan Chien4ea23b52013-05-10 16:17:24 +00009025 Error(L, ".handlerdata can't be used with .cantunwind directive");
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00009026 UC.emitCantUnwindLocNotes();
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00009027 return false;
Logan Chien4ea23b52013-05-10 16:17:24 +00009028 }
9029
Rafael Espindolaa17151a2013-10-08 13:08:17 +00009030 getTargetStreamer().emitHandlerData();
Logan Chien4ea23b52013-05-10 16:17:24 +00009031 return false;
9032}
9033
9034/// parseDirectiveSetFP
9035/// ::= .setfp fpreg, spreg [, offset]
9036bool ARMAsmParser::parseDirectiveSetFP(SMLoc L) {
9037 // Check the ordering of unwind directives
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00009038 if (!UC.hasFnStart()) {
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00009039 Error(L, ".fnstart must precede .setfp directive");
9040 return false;
9041 }
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00009042 if (UC.hasHandlerData()) {
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00009043 Error(L, ".setfp must precede .handlerdata directive");
9044 return false;
9045 }
Logan Chien4ea23b52013-05-10 16:17:24 +00009046
9047 // Parse fpreg
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00009048 SMLoc FPRegLoc = Parser.getTok().getLoc();
9049 int FPReg = tryParseRegister();
9050 if (FPReg == -1) {
9051 Error(FPRegLoc, "frame pointer register expected");
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00009052 return false;
9053 }
Logan Chien4ea23b52013-05-10 16:17:24 +00009054
9055 // Consume comma
Saleem Abdulrasool5d962d32014-01-30 04:46:24 +00009056 if (Parser.getTok().isNot(AsmToken::Comma)) {
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00009057 Error(Parser.getTok().getLoc(), "comma expected");
9058 return false;
9059 }
Logan Chien4ea23b52013-05-10 16:17:24 +00009060 Parser.Lex(); // skip comma
9061
9062 // Parse spreg
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00009063 SMLoc SPRegLoc = Parser.getTok().getLoc();
9064 int SPReg = tryParseRegister();
9065 if (SPReg == -1) {
9066 Error(SPRegLoc, "stack pointer register expected");
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00009067 return false;
9068 }
Logan Chien4ea23b52013-05-10 16:17:24 +00009069
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00009070 if (SPReg != ARM::SP && SPReg != UC.getFPReg()) {
9071 Error(SPRegLoc, "register should be either $sp or the latest fp register");
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00009072 return false;
9073 }
Logan Chien4ea23b52013-05-10 16:17:24 +00009074
9075 // Update the frame pointer register
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00009076 UC.saveFPReg(FPReg);
Logan Chien4ea23b52013-05-10 16:17:24 +00009077
9078 // Parse offset
9079 int64_t Offset = 0;
9080 if (Parser.getTok().is(AsmToken::Comma)) {
9081 Parser.Lex(); // skip comma
9082
9083 if (Parser.getTok().isNot(AsmToken::Hash) &&
9084 Parser.getTok().isNot(AsmToken::Dollar)) {
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00009085 Error(Parser.getTok().getLoc(), "'#' expected");
9086 return false;
Logan Chien4ea23b52013-05-10 16:17:24 +00009087 }
9088 Parser.Lex(); // skip hash token.
9089
9090 const MCExpr *OffsetExpr;
9091 SMLoc ExLoc = Parser.getTok().getLoc();
9092 SMLoc EndLoc;
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00009093 if (getParser().parseExpression(OffsetExpr, EndLoc)) {
9094 Error(ExLoc, "malformed setfp offset");
9095 return false;
9096 }
Logan Chien4ea23b52013-05-10 16:17:24 +00009097 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(OffsetExpr);
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00009098 if (!CE) {
9099 Error(ExLoc, "setfp offset must be an immediate");
9100 return false;
9101 }
Logan Chien4ea23b52013-05-10 16:17:24 +00009102
9103 Offset = CE->getValue();
9104 }
9105
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00009106 getTargetStreamer().emitSetFP(static_cast<unsigned>(FPReg),
9107 static_cast<unsigned>(SPReg), Offset);
Logan Chien4ea23b52013-05-10 16:17:24 +00009108 return false;
9109}
9110
9111/// parseDirective
9112/// ::= .pad offset
9113bool ARMAsmParser::parseDirectivePad(SMLoc L) {
9114 // Check the ordering of unwind directives
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00009115 if (!UC.hasFnStart()) {
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00009116 Error(L, ".fnstart must precede .pad directive");
9117 return false;
9118 }
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00009119 if (UC.hasHandlerData()) {
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00009120 Error(L, ".pad must precede .handlerdata directive");
9121 return false;
9122 }
Logan Chien4ea23b52013-05-10 16:17:24 +00009123
9124 // Parse the offset
9125 if (Parser.getTok().isNot(AsmToken::Hash) &&
9126 Parser.getTok().isNot(AsmToken::Dollar)) {
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00009127 Error(Parser.getTok().getLoc(), "'#' expected");
9128 return false;
Logan Chien4ea23b52013-05-10 16:17:24 +00009129 }
9130 Parser.Lex(); // skip hash token.
9131
9132 const MCExpr *OffsetExpr;
9133 SMLoc ExLoc = Parser.getTok().getLoc();
9134 SMLoc EndLoc;
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00009135 if (getParser().parseExpression(OffsetExpr, EndLoc)) {
9136 Error(ExLoc, "malformed pad offset");
9137 return false;
9138 }
Logan Chien4ea23b52013-05-10 16:17:24 +00009139 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(OffsetExpr);
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00009140 if (!CE) {
9141 Error(ExLoc, "pad offset must be an immediate");
9142 return false;
9143 }
Logan Chien4ea23b52013-05-10 16:17:24 +00009144
Rafael Espindolaa17151a2013-10-08 13:08:17 +00009145 getTargetStreamer().emitPad(CE->getValue());
Logan Chien4ea23b52013-05-10 16:17:24 +00009146 return false;
9147}
9148
9149/// parseDirectiveRegSave
9150/// ::= .save { registers }
9151/// ::= .vsave { registers }
9152bool ARMAsmParser::parseDirectiveRegSave(SMLoc L, bool IsVector) {
9153 // Check the ordering of unwind directives
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00009154 if (!UC.hasFnStart()) {
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00009155 Error(L, ".fnstart must precede .save or .vsave directives");
9156 return false;
9157 }
Saleem Abdulrasoolc493d142014-01-07 02:28:55 +00009158 if (UC.hasHandlerData()) {
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00009159 Error(L, ".save or .vsave must precede .handlerdata directive");
9160 return false;
9161 }
Logan Chien4ea23b52013-05-10 16:17:24 +00009162
Benjamin Kramer23632bd2013-08-03 22:16:24 +00009163 // RAII object to make sure parsed operands are deleted.
David Blaikie960ea3f2014-06-08 16:18:35 +00009164 SmallVector<std::unique_ptr<MCParsedAsmOperand>, 1> Operands;
Benjamin Kramer23632bd2013-08-03 22:16:24 +00009165
Logan Chien4ea23b52013-05-10 16:17:24 +00009166 // Parse the register list
David Blaikie960ea3f2014-06-08 16:18:35 +00009167 if (parseRegisterList(Operands))
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00009168 return false;
David Blaikie960ea3f2014-06-08 16:18:35 +00009169 ARMOperand &Op = (ARMOperand &)*Operands[0];
9170 if (!IsVector && !Op.isRegList()) {
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00009171 Error(L, ".save expects GPR registers");
9172 return false;
9173 }
David Blaikie960ea3f2014-06-08 16:18:35 +00009174 if (IsVector && !Op.isDPRRegList()) {
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00009175 Error(L, ".vsave expects DPR registers");
9176 return false;
9177 }
Logan Chien4ea23b52013-05-10 16:17:24 +00009178
David Blaikie960ea3f2014-06-08 16:18:35 +00009179 getTargetStreamer().emitRegSave(Op.getRegList(), IsVector);
Logan Chien4ea23b52013-05-10 16:17:24 +00009180 return false;
9181}
9182
Saleem Abdulrasoolc0da2cb2013-12-19 05:17:58 +00009183/// parseDirectiveInst
9184/// ::= .inst opcode [, ...]
9185/// ::= .inst.n opcode [, ...]
9186/// ::= .inst.w opcode [, ...]
9187bool ARMAsmParser::parseDirectiveInst(SMLoc Loc, char Suffix) {
9188 int Width;
9189
9190 if (isThumb()) {
9191 switch (Suffix) {
9192 case 'n':
9193 Width = 2;
9194 break;
9195 case 'w':
9196 Width = 4;
9197 break;
9198 default:
9199 Parser.eatToEndOfStatement();
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00009200 Error(Loc, "cannot determine Thumb instruction size, "
9201 "use inst.n/inst.w instead");
9202 return false;
Saleem Abdulrasoolc0da2cb2013-12-19 05:17:58 +00009203 }
9204 } else {
9205 if (Suffix) {
9206 Parser.eatToEndOfStatement();
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00009207 Error(Loc, "width suffixes are invalid in ARM mode");
9208 return false;
Saleem Abdulrasoolc0da2cb2013-12-19 05:17:58 +00009209 }
9210 Width = 4;
9211 }
9212
9213 if (getLexer().is(AsmToken::EndOfStatement)) {
9214 Parser.eatToEndOfStatement();
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00009215 Error(Loc, "expected expression following directive");
9216 return false;
Saleem Abdulrasoolc0da2cb2013-12-19 05:17:58 +00009217 }
9218
9219 for (;;) {
9220 const MCExpr *Expr;
9221
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00009222 if (getParser().parseExpression(Expr)) {
9223 Error(Loc, "expected expression");
9224 return false;
9225 }
Saleem Abdulrasoolc0da2cb2013-12-19 05:17:58 +00009226
9227 const MCConstantExpr *Value = dyn_cast_or_null<MCConstantExpr>(Expr);
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00009228 if (!Value) {
9229 Error(Loc, "expected constant expression");
9230 return false;
9231 }
Saleem Abdulrasoolc0da2cb2013-12-19 05:17:58 +00009232
9233 switch (Width) {
9234 case 2:
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00009235 if (Value->getValue() > 0xffff) {
9236 Error(Loc, "inst.n operand is too big, use inst.w instead");
9237 return false;
9238 }
Saleem Abdulrasoolc0da2cb2013-12-19 05:17:58 +00009239 break;
9240 case 4:
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00009241 if (Value->getValue() > 0xffffffff) {
9242 Error(Loc,
9243 StringRef(Suffix ? "inst.w" : "inst") + " operand is too big");
9244 return false;
9245 }
Saleem Abdulrasoolc0da2cb2013-12-19 05:17:58 +00009246 break;
9247 default:
9248 llvm_unreachable("only supported widths are 2 and 4");
9249 }
9250
9251 getTargetStreamer().emitInst(Value->getValue(), Suffix);
9252
9253 if (getLexer().is(AsmToken::EndOfStatement))
9254 break;
9255
Saleem Abdulrasool0c4b1022013-12-28 22:47:53 +00009256 if (getLexer().isNot(AsmToken::Comma)) {
9257 Error(Loc, "unexpected token in directive");
9258 return false;
9259 }
Saleem Abdulrasoolc0da2cb2013-12-19 05:17:58 +00009260
9261 Parser.Lex();
9262 }
9263
9264 Parser.Lex();
9265 return false;
9266}
9267
David Peixotto80c083a2013-12-19 18:26:07 +00009268/// parseDirectiveLtorg
Saleem Abdulrasool6e6c2392013-12-20 07:21:16 +00009269/// ::= .ltorg | .pool
David Peixotto80c083a2013-12-19 18:26:07 +00009270bool ARMAsmParser::parseDirectiveLtorg(SMLoc L) {
David Peixottob9b73622014-02-04 17:22:40 +00009271 getTargetStreamer().emitCurrentConstantPool();
David Peixotto80c083a2013-12-19 18:26:07 +00009272 return false;
9273}
9274
Saleem Abdulrasoola5549682013-12-26 01:52:28 +00009275bool ARMAsmParser::parseDirectiveEven(SMLoc L) {
9276 const MCSection *Section = getStreamer().getCurrentSection().first;
9277
9278 if (getLexer().isNot(AsmToken::EndOfStatement)) {
9279 TokError("unexpected token in directive");
9280 return false;
9281 }
9282
9283 if (!Section) {
Rafael Espindola7b61ddf2014-10-15 16:12:52 +00009284 getStreamer().InitSections(false);
Saleem Abdulrasoola5549682013-12-26 01:52:28 +00009285 Section = getStreamer().getCurrentSection().first;
9286 }
9287
Saleem Abdulrasool42b233a2014-03-18 05:26:55 +00009288 assert(Section && "must have section to emit alignment");
Saleem Abdulrasoola5549682013-12-26 01:52:28 +00009289 if (Section->UseCodeAlign())
Rafael Espindola7b514962014-02-04 18:34:04 +00009290 getStreamer().EmitCodeAlignment(2);
Saleem Abdulrasoola5549682013-12-26 01:52:28 +00009291 else
Rafael Espindola7b514962014-02-04 18:34:04 +00009292 getStreamer().EmitValueToAlignment(2);
Saleem Abdulrasoola5549682013-12-26 01:52:28 +00009293
9294 return false;
9295}
9296
Saleem Abdulrasool662f5c12014-01-21 02:33:02 +00009297/// parseDirectivePersonalityIndex
9298/// ::= .personalityindex index
9299bool ARMAsmParser::parseDirectivePersonalityIndex(SMLoc L) {
9300 bool HasExistingPersonality = UC.hasPersonality();
9301
9302 UC.recordPersonalityIndex(L);
9303
9304 if (!UC.hasFnStart()) {
9305 Parser.eatToEndOfStatement();
9306 Error(L, ".fnstart must precede .personalityindex directive");
9307 return false;
9308 }
9309 if (UC.cantUnwind()) {
9310 Parser.eatToEndOfStatement();
9311 Error(L, ".personalityindex cannot be used with .cantunwind");
9312 UC.emitCantUnwindLocNotes();
9313 return false;
9314 }
9315 if (UC.hasHandlerData()) {
9316 Parser.eatToEndOfStatement();
9317 Error(L, ".personalityindex must precede .handlerdata directive");
9318 UC.emitHandlerDataLocNotes();
9319 return false;
9320 }
9321 if (HasExistingPersonality) {
9322 Parser.eatToEndOfStatement();
9323 Error(L, "multiple personality directives");
9324 UC.emitPersonalityLocNotes();
9325 return false;
9326 }
9327
9328 const MCExpr *IndexExpression;
9329 SMLoc IndexLoc = Parser.getTok().getLoc();
9330 if (Parser.parseExpression(IndexExpression)) {
9331 Parser.eatToEndOfStatement();
9332 return false;
9333 }
9334
9335 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(IndexExpression);
9336 if (!CE) {
9337 Parser.eatToEndOfStatement();
9338 Error(IndexLoc, "index must be a constant number");
9339 return false;
9340 }
9341 if (CE->getValue() < 0 ||
9342 CE->getValue() >= ARM::EHABI::NUM_PERSONALITY_INDEX) {
9343 Parser.eatToEndOfStatement();
9344 Error(IndexLoc, "personality routine index should be in range [0-3]");
9345 return false;
9346 }
9347
9348 getTargetStreamer().emitPersonalityIndex(CE->getValue());
9349 return false;
9350}
9351
Saleem Abdulrasoold9f08602014-01-21 02:33:10 +00009352/// parseDirectiveUnwindRaw
9353/// ::= .unwind_raw offset, opcode [, opcode...]
9354bool ARMAsmParser::parseDirectiveUnwindRaw(SMLoc L) {
9355 if (!UC.hasFnStart()) {
9356 Parser.eatToEndOfStatement();
9357 Error(L, ".fnstart must precede .unwind_raw directives");
9358 return false;
9359 }
9360
9361 int64_t StackOffset;
9362
9363 const MCExpr *OffsetExpr;
9364 SMLoc OffsetLoc = getLexer().getLoc();
9365 if (getLexer().is(AsmToken::EndOfStatement) ||
9366 getParser().parseExpression(OffsetExpr)) {
9367 Error(OffsetLoc, "expected expression");
9368 Parser.eatToEndOfStatement();
9369 return false;
9370 }
9371
9372 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(OffsetExpr);
9373 if (!CE) {
9374 Error(OffsetLoc, "offset must be a constant");
9375 Parser.eatToEndOfStatement();
9376 return false;
9377 }
9378
9379 StackOffset = CE->getValue();
9380
9381 if (getLexer().isNot(AsmToken::Comma)) {
9382 Error(getLexer().getLoc(), "expected comma");
9383 Parser.eatToEndOfStatement();
9384 return false;
9385 }
9386 Parser.Lex();
9387
9388 SmallVector<uint8_t, 16> Opcodes;
9389 for (;;) {
9390 const MCExpr *OE;
9391
9392 SMLoc OpcodeLoc = getLexer().getLoc();
9393 if (getLexer().is(AsmToken::EndOfStatement) || Parser.parseExpression(OE)) {
9394 Error(OpcodeLoc, "expected opcode expression");
9395 Parser.eatToEndOfStatement();
9396 return false;
9397 }
9398
9399 const MCConstantExpr *OC = dyn_cast<MCConstantExpr>(OE);
9400 if (!OC) {
9401 Error(OpcodeLoc, "opcode value must be a constant");
9402 Parser.eatToEndOfStatement();
9403 return false;
9404 }
9405
9406 const int64_t Opcode = OC->getValue();
9407 if (Opcode & ~0xff) {
9408 Error(OpcodeLoc, "invalid opcode");
9409 Parser.eatToEndOfStatement();
9410 return false;
9411 }
9412
9413 Opcodes.push_back(uint8_t(Opcode));
9414
9415 if (getLexer().is(AsmToken::EndOfStatement))
9416 break;
9417
9418 if (getLexer().isNot(AsmToken::Comma)) {
9419 Error(getLexer().getLoc(), "unexpected token in directive");
9420 Parser.eatToEndOfStatement();
9421 return false;
9422 }
9423
9424 Parser.Lex();
9425 }
9426
9427 getTargetStreamer().emitUnwindRaw(StackOffset, Opcodes);
9428
9429 Parser.Lex();
9430 return false;
9431}
9432
Saleem Abdulrasool56e06e82014-01-30 04:02:47 +00009433/// parseDirectiveTLSDescSeq
9434/// ::= .tlsdescseq tls-variable
9435bool ARMAsmParser::parseDirectiveTLSDescSeq(SMLoc L) {
9436 if (getLexer().isNot(AsmToken::Identifier)) {
9437 TokError("expected variable after '.tlsdescseq' directive");
9438 Parser.eatToEndOfStatement();
9439 return false;
9440 }
9441
9442 const MCSymbolRefExpr *SRE =
9443 MCSymbolRefExpr::Create(Parser.getTok().getIdentifier(),
9444 MCSymbolRefExpr::VK_ARM_TLSDESCSEQ, getContext());
9445 Lex();
9446
9447 if (getLexer().isNot(AsmToken::EndOfStatement)) {
9448 Error(Parser.getTok().getLoc(), "unexpected token");
9449 Parser.eatToEndOfStatement();
9450 return false;
9451 }
9452
9453 getTargetStreamer().AnnotateTLSDescriptorSequence(SRE);
9454 return false;
9455}
9456
Saleem Abdulrasool5d962d32014-01-30 04:46:24 +00009457/// parseDirectiveMovSP
9458/// ::= .movsp reg [, #offset]
9459bool ARMAsmParser::parseDirectiveMovSP(SMLoc L) {
9460 if (!UC.hasFnStart()) {
9461 Parser.eatToEndOfStatement();
9462 Error(L, ".fnstart must precede .movsp directives");
9463 return false;
9464 }
9465 if (UC.getFPReg() != ARM::SP) {
9466 Parser.eatToEndOfStatement();
9467 Error(L, "unexpected .movsp directive");
9468 return false;
9469 }
9470
9471 SMLoc SPRegLoc = Parser.getTok().getLoc();
9472 int SPReg = tryParseRegister();
9473 if (SPReg == -1) {
9474 Parser.eatToEndOfStatement();
9475 Error(SPRegLoc, "register expected");
9476 return false;
9477 }
9478
9479 if (SPReg == ARM::SP || SPReg == ARM::PC) {
9480 Parser.eatToEndOfStatement();
9481 Error(SPRegLoc, "sp and pc are not permitted in .movsp directive");
9482 return false;
9483 }
9484
9485 int64_t Offset = 0;
9486 if (Parser.getTok().is(AsmToken::Comma)) {
9487 Parser.Lex();
9488
9489 if (Parser.getTok().isNot(AsmToken::Hash)) {
9490 Error(Parser.getTok().getLoc(), "expected #constant");
9491 Parser.eatToEndOfStatement();
9492 return false;
9493 }
9494 Parser.Lex();
9495
9496 const MCExpr *OffsetExpr;
9497 SMLoc OffsetLoc = Parser.getTok().getLoc();
9498 if (Parser.parseExpression(OffsetExpr)) {
9499 Parser.eatToEndOfStatement();
9500 Error(OffsetLoc, "malformed offset expression");
9501 return false;
9502 }
9503
9504 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(OffsetExpr);
9505 if (!CE) {
9506 Parser.eatToEndOfStatement();
9507 Error(OffsetLoc, "offset must be an immediate constant");
9508 return false;
9509 }
9510
9511 Offset = CE->getValue();
9512 }
9513
9514 getTargetStreamer().emitMovSP(SPReg, Offset);
9515 UC.saveFPReg(SPReg);
9516
9517 return false;
9518}
9519
Saleem Abdulrasool4c4789b2014-01-30 04:46:41 +00009520/// parseDirectiveObjectArch
9521/// ::= .object_arch name
9522bool ARMAsmParser::parseDirectiveObjectArch(SMLoc L) {
9523 if (getLexer().isNot(AsmToken::Identifier)) {
9524 Error(getLexer().getLoc(), "unexpected token");
9525 Parser.eatToEndOfStatement();
9526 return false;
9527 }
9528
9529 StringRef Arch = Parser.getTok().getString();
9530 SMLoc ArchLoc = Parser.getTok().getLoc();
9531 getLexer().Lex();
9532
9533 unsigned ID = StringSwitch<unsigned>(Arch)
9534#define ARM_ARCH_NAME(NAME, ID, DEFAULT_CPU_NAME, DEFAULT_CPU_ARCH) \
9535 .Case(NAME, ARM::ID)
9536#define ARM_ARCH_ALIAS(NAME, ID) \
9537 .Case(NAME, ARM::ID)
9538#include "MCTargetDesc/ARMArchName.def"
9539#undef ARM_ARCH_NAME
9540#undef ARM_ARCH_ALIAS
9541 .Default(ARM::INVALID_ARCH);
9542
9543 if (ID == ARM::INVALID_ARCH) {
9544 Error(ArchLoc, "unknown architecture '" + Arch + "'");
9545 Parser.eatToEndOfStatement();
9546 return false;
9547 }
9548
9549 getTargetStreamer().emitObjectArch(ID);
9550
9551 if (getLexer().isNot(AsmToken::EndOfStatement)) {
9552 Error(getLexer().getLoc(), "unexpected token");
9553 Parser.eatToEndOfStatement();
9554 }
9555
9556 return false;
9557}
9558
Saleem Abdulrasoolfd6ed1e2014-02-23 17:45:32 +00009559/// parseDirectiveAlign
9560/// ::= .align
9561bool ARMAsmParser::parseDirectiveAlign(SMLoc L) {
9562 // NOTE: if this is not the end of the statement, fall back to the target
9563 // agnostic handling for this directive which will correctly handle this.
9564 if (getLexer().isNot(AsmToken::EndOfStatement))
9565 return true;
9566
9567 // '.align' is target specifically handled to mean 2**2 byte alignment.
9568 if (getStreamer().getCurrentSection().first->UseCodeAlign())
9569 getStreamer().EmitCodeAlignment(4, 0);
9570 else
9571 getStreamer().EmitValueToAlignment(4, 0, 1, 0);
9572
9573 return false;
9574}
9575
Saleem Abdulrasool39f773f2014-03-20 06:05:33 +00009576/// parseDirectiveThumbSet
9577/// ::= .thumb_set name, value
9578bool ARMAsmParser::parseDirectiveThumbSet(SMLoc L) {
9579 StringRef Name;
9580 if (Parser.parseIdentifier(Name)) {
9581 TokError("expected identifier after '.thumb_set'");
9582 Parser.eatToEndOfStatement();
9583 return false;
9584 }
9585
9586 if (getLexer().isNot(AsmToken::Comma)) {
9587 TokError("expected comma after name '" + Name + "'");
9588 Parser.eatToEndOfStatement();
9589 return false;
9590 }
9591 Lex();
9592
9593 const MCExpr *Value;
9594 if (Parser.parseExpression(Value)) {
9595 TokError("missing expression");
9596 Parser.eatToEndOfStatement();
9597 return false;
9598 }
9599
9600 if (getLexer().isNot(AsmToken::EndOfStatement)) {
9601 TokError("unexpected token");
9602 Parser.eatToEndOfStatement();
9603 return false;
9604 }
9605 Lex();
9606
9607 MCSymbol *Alias = getContext().GetOrCreateSymbol(Name);
Rafael Espindola466d6632014-04-27 20:23:58 +00009608 getTargetStreamer().emitThumbSet(Alias, Value);
Saleem Abdulrasool39f773f2014-03-20 06:05:33 +00009609 return false;
9610}
9611
Kevin Enderby8be42bd2009-10-30 22:55:57 +00009612/// Force static initialization.
Kevin Enderbyccab3172009-09-15 00:27:25 +00009613extern "C" void LLVMInitializeARMAsmParser() {
Christian Pirkerdc9ff752014-04-01 15:19:30 +00009614 RegisterMCAsmParser<ARMAsmParser> X(TheARMLETarget);
9615 RegisterMCAsmParser<ARMAsmParser> Y(TheARMBETarget);
9616 RegisterMCAsmParser<ARMAsmParser> A(TheThumbLETarget);
9617 RegisterMCAsmParser<ARMAsmParser> B(TheThumbBETarget);
Kevin Enderbyccab3172009-09-15 00:27:25 +00009618}
Daniel Dunbar5cd4d0f2010-08-11 05:24:50 +00009619
Chris Lattner3e4582a2010-09-06 19:11:01 +00009620#define GET_REGISTER_MATCHER
Craig Topper3ec7c2a2012-04-25 06:56:34 +00009621#define GET_SUBTARGET_FEATURE_NAME
Chris Lattner3e4582a2010-09-06 19:11:01 +00009622#define GET_MATCHER_IMPLEMENTATION
Daniel Dunbar5cd4d0f2010-08-11 05:24:50 +00009623#include "ARMGenAsmMatcher.inc"
Jim Grosbach231e7aa2013-02-06 06:00:11 +00009624
Saleem Abdulrasool45cf67b2014-07-27 19:07:05 +00009625static const struct {
9626 const char *Name;
Saleem Abdulrasool49480bf2014-02-16 00:16:41 +00009627 const unsigned ArchCheck;
9628 const uint64_t Features;
9629} Extensions[] = {
9630 { "crc", Feature_HasV8, ARM::FeatureCRC },
9631 { "crypto", Feature_HasV8,
9632 ARM::FeatureCrypto | ARM::FeatureNEON | ARM::FeatureFPARMv8 },
9633 { "fp", Feature_HasV8, ARM::FeatureFPARMv8 },
9634 { "idiv", Feature_HasV7 | Feature_IsNotMClass,
9635 ARM::FeatureHWDiv | ARM::FeatureHWDivARM },
9636 // FIXME: iWMMXT not supported
9637 { "iwmmxt", Feature_None, 0 },
9638 // FIXME: iWMMXT2 not supported
9639 { "iwmmxt2", Feature_None, 0 },
9640 // FIXME: Maverick not supported
9641 { "maverick", Feature_None, 0 },
9642 { "mp", Feature_HasV7 | Feature_IsNotMClass, ARM::FeatureMP },
9643 // FIXME: ARMv6-m OS Extensions feature not checked
9644 { "os", Feature_None, 0 },
9645 // FIXME: Also available in ARMv6-K
9646 { "sec", Feature_HasV7, ARM::FeatureTrustZone },
9647 { "simd", Feature_HasV8, ARM::FeatureNEON | ARM::FeatureFPARMv8 },
9648 // FIXME: Only available in A-class, isel not predicated
9649 { "virt", Feature_HasV7, ARM::FeatureVirtualization },
9650 // FIXME: xscale not supported
9651 { "xscale", Feature_None, 0 },
9652};
9653
Saleem Abdulrasool49480bf2014-02-16 00:16:41 +00009654/// parseDirectiveArchExtension
9655/// ::= .arch_extension [no]feature
9656bool ARMAsmParser::parseDirectiveArchExtension(SMLoc L) {
9657 if (getLexer().isNot(AsmToken::Identifier)) {
9658 Error(getLexer().getLoc(), "unexpected token");
9659 Parser.eatToEndOfStatement();
9660 return false;
9661 }
9662
Saleem Abdulrasool45cf67b2014-07-27 19:07:05 +00009663 StringRef Name = Parser.getTok().getString();
Saleem Abdulrasool49480bf2014-02-16 00:16:41 +00009664 SMLoc ExtLoc = Parser.getTok().getLoc();
9665 getLexer().Lex();
9666
9667 bool EnableFeature = true;
Saleem Abdulrasool45cf67b2014-07-27 19:07:05 +00009668 if (Name.startswith_lower("no")) {
Saleem Abdulrasool49480bf2014-02-16 00:16:41 +00009669 EnableFeature = false;
Saleem Abdulrasool45cf67b2014-07-27 19:07:05 +00009670 Name = Name.substr(2);
Saleem Abdulrasool49480bf2014-02-16 00:16:41 +00009671 }
9672
Saleem Abdulrasool45cf67b2014-07-27 19:07:05 +00009673 for (const auto &Extension : Extensions) {
9674 if (Extension.Name != Name)
Saleem Abdulrasool49480bf2014-02-16 00:16:41 +00009675 continue;
9676
Saleem Abdulrasool8988c2a2014-07-27 19:07:09 +00009677 if (!Extension.Features)
9678 report_fatal_error("unsupported architectural extension: " + Name);
9679
9680 if ((getAvailableFeatures() & Extension.ArchCheck) != Extension.ArchCheck) {
Saleem Abdulrasool45cf67b2014-07-27 19:07:05 +00009681 Error(ExtLoc, "architectural extension '" + Name + "' is not "
Saleem Abdulrasool49480bf2014-02-16 00:16:41 +00009682 "allowed for the current base architecture");
9683 return false;
9684 }
9685
Tim Northover26bb14e2014-08-18 11:49:42 +00009686 uint64_t ToggleFeatures = EnableFeature
Saleem Abdulrasool78c44722014-08-17 19:20:38 +00009687 ? (~STI.getFeatureBits() & Extension.Features)
9688 : ( STI.getFeatureBits() & Extension.Features);
Tim Northover26bb14e2014-08-18 11:49:42 +00009689 uint64_t Features =
Saleem Abdulrasool78c44722014-08-17 19:20:38 +00009690 ComputeAvailableFeatures(STI.ToggleFeature(ToggleFeatures));
9691 setAvailableFeatures(Features);
Saleem Abdulrasool49480bf2014-02-16 00:16:41 +00009692 return false;
9693 }
9694
Saleem Abdulrasool45cf67b2014-07-27 19:07:05 +00009695 Error(ExtLoc, "unknown architectural extension: " + Name);
Saleem Abdulrasool49480bf2014-02-16 00:16:41 +00009696 Parser.eatToEndOfStatement();
9697 return false;
9698}
9699
Jim Grosbach231e7aa2013-02-06 06:00:11 +00009700// Define this matcher function after the auto-generated include so we
9701// have the match class enum definitions.
David Blaikie960ea3f2014-06-08 16:18:35 +00009702unsigned ARMAsmParser::validateTargetOperandClass(MCParsedAsmOperand &AsmOp,
Jim Grosbach231e7aa2013-02-06 06:00:11 +00009703 unsigned Kind) {
David Blaikie960ea3f2014-06-08 16:18:35 +00009704 ARMOperand &Op = static_cast<ARMOperand &>(AsmOp);
Jim Grosbach231e7aa2013-02-06 06:00:11 +00009705 // If the kind is a token for a literal immediate, check if our asm
9706 // operand matches. This is for InstAliases which have a fixed-value
9707 // immediate in the syntax.
Saleem Abdulrasoold88affb2014-01-08 03:28:14 +00009708 switch (Kind) {
9709 default: break;
9710 case MCK__35_0:
David Blaikie960ea3f2014-06-08 16:18:35 +00009711 if (Op.isImm())
9712 if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Op.getImm()))
Saleem Abdulrasoold88affb2014-01-08 03:28:14 +00009713 if (CE->getValue() == 0)
9714 return Match_Success;
9715 break;
9716 case MCK_ARMSOImm:
David Blaikie960ea3f2014-06-08 16:18:35 +00009717 if (Op.isImm()) {
9718 const MCExpr *SOExpr = Op.getImm();
Saleem Abdulrasoold88affb2014-01-08 03:28:14 +00009719 int64_t Value;
9720 if (!SOExpr->EvaluateAsAbsolute(Value))
Stepan Dyatkovskiydf657cc2014-03-29 13:12:40 +00009721 return Match_Success;
Richard Barton3db1d582014-05-01 11:37:44 +00009722 assert((Value >= INT32_MIN && Value <= UINT32_MAX) &&
9723 "expression value must be representable in 32 bits");
Saleem Abdulrasoold88affb2014-01-08 03:28:14 +00009724 }
9725 break;
Saleem Abdulrasoole6e6d712014-01-10 04:38:35 +00009726 case MCK_GPRPair:
David Blaikie960ea3f2014-06-08 16:18:35 +00009727 if (Op.isReg() &&
9728 MRI->getRegClass(ARM::GPRRegClassID).contains(Op.getReg()))
Saleem Abdulrasoole6e6d712014-01-10 04:38:35 +00009729 return Match_Success;
9730 break;
Jim Grosbach231e7aa2013-02-06 06:00:11 +00009731 }
9732 return Match_InvalidOperand;
9733}