1 //===- ARMAsmParser.cpp - Parse ARM assembly to MCInst instructions -------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #include "ARMFeatures.h"
10 #include "ARMBaseInstrInfo.h"
11 #include "Utils/ARMBaseInfo.h"
12 #include "MCTargetDesc/ARMAddressingModes.h"
13 #include "MCTargetDesc/ARMBaseInfo.h"
14 #include "MCTargetDesc/ARMInstPrinter.h"
15 #include "MCTargetDesc/ARMMCExpr.h"
16 #include "MCTargetDesc/ARMMCTargetDesc.h"
17 #include "TargetInfo/ARMTargetInfo.h"
18 #include "llvm/ADT/APFloat.h"
19 #include "llvm/ADT/APInt.h"
20 #include "llvm/ADT/None.h"
21 #include "llvm/ADT/STLExtras.h"
22 #include "llvm/ADT/SmallSet.h"
23 #include "llvm/ADT/SmallVector.h"
24 #include "llvm/ADT/StringMap.h"
25 #include "llvm/ADT/StringSet.h"
26 #include "llvm/ADT/StringRef.h"
27 #include "llvm/ADT/StringSwitch.h"
28 #include "llvm/ADT/Triple.h"
29 #include "llvm/ADT/Twine.h"
30 #include "llvm/MC/MCContext.h"
31 #include "llvm/MC/MCExpr.h"
32 #include "llvm/MC/MCInst.h"
33 #include "llvm/MC/MCInstrDesc.h"
34 #include "llvm/MC/MCInstrInfo.h"
35 #include "llvm/MC/MCObjectFileInfo.h"
36 #include "llvm/MC/MCParser/MCAsmLexer.h"
37 #include "llvm/MC/MCParser/MCAsmParser.h"
38 #include "llvm/MC/MCParser/MCAsmParserExtension.h"
39 #include "llvm/MC/MCParser/MCAsmParserUtils.h"
40 #include "llvm/MC/MCParser/MCParsedAsmOperand.h"
41 #include "llvm/MC/MCParser/MCTargetAsmParser.h"
42 #include "llvm/MC/MCRegisterInfo.h"
43 #include "llvm/MC/MCSection.h"
44 #include "llvm/MC/MCStreamer.h"
45 #include "llvm/MC/MCSubtargetInfo.h"
46 #include "llvm/MC/MCSymbol.h"
47 #include "llvm/MC/SubtargetFeature.h"
48 #include "llvm/Support/ARMBuildAttributes.h"
49 #include "llvm/Support/ARMEHABI.h"
50 #include "llvm/Support/Casting.h"
51 #include "llvm/Support/CommandLine.h"
52 #include "llvm/Support/Compiler.h"
53 #include "llvm/Support/ErrorHandling.h"
54 #include "llvm/Support/MathExtras.h"
55 #include "llvm/Support/SMLoc.h"
56 #include "llvm/Support/TargetParser.h"
57 #include "llvm/Support/TargetRegistry.h"
58 #include "llvm/Support/raw_ostream.h"
59 #include <algorithm>
60 #include <cassert>
61 #include <cstddef>
62 #include <cstdint>
63 #include <iterator>
64 #include <limits>
65 #include <memory>
66 #include <string>
67 #include <utility>
68 #include <vector>
69 
70 #define DEBUG_TYPE "asm-parser"
71 
72 using namespace llvm;
73 
74 namespace llvm {
75 extern const MCInstrDesc ARMInsts[];
76 } // end namespace llvm
77 
78 namespace {
79 
80 enum class ImplicitItModeTy { Always, Never, ARMOnly, ThumbOnly };
81 
82 static cl::opt<ImplicitItModeTy> ImplicitItMode(
83     "arm-implicit-it", cl::init(ImplicitItModeTy::ARMOnly),
84     cl::desc("Allow conditional instructions outdside of an IT block"),
85     cl::values(clEnumValN(ImplicitItModeTy::Always, "always",
86                           "Accept in both ISAs, emit implicit ITs in Thumb"),
87                clEnumValN(ImplicitItModeTy::Never, "never",
88                           "Warn in ARM, reject in Thumb"),
89                clEnumValN(ImplicitItModeTy::ARMOnly, "arm",
90                           "Accept in ARM, reject in Thumb"),
91                clEnumValN(ImplicitItModeTy::ThumbOnly, "thumb",
92                           "Warn in ARM, emit implicit ITs in Thumb")));
93 
94 static cl::opt<bool> AddBuildAttributes("arm-add-build-attributes",
95                                         cl::init(false));
96 
97 enum VectorLaneTy { NoLanes, AllLanes, IndexedLane };
98 
99 static inline unsigned extractITMaskBit(unsigned Mask, unsigned Position) {
100   // Position==0 means we're not in an IT block at all. Position==1
101   // means we want the first state bit, which is always 0 (Then).
102   // Position==2 means we want the second state bit, stored at bit 3
103   // of Mask, and so on downwards. So (5 - Position) will shift the
104   // right bit down to bit 0, including the always-0 bit at bit 4 for
105   // the mandatory initial Then.
106   return (Mask >> (5 - Position) & 1);
107 }
108 
109 class UnwindContext {
110   using Locs = SmallVector<SMLoc, 4>;
111 
112   MCAsmParser &Parser;
113   Locs FnStartLocs;
114   Locs CantUnwindLocs;
115   Locs PersonalityLocs;
116   Locs PersonalityIndexLocs;
117   Locs HandlerDataLocs;
118   int FPReg;
119 
120 public:
121   UnwindContext(MCAsmParser &P) : Parser(P), FPReg(ARM::SP) {}
122 
123   bool hasFnStart() const { return !FnStartLocs.empty(); }
124   bool cantUnwind() const { return !CantUnwindLocs.empty(); }
125   bool hasHandlerData() const { return !HandlerDataLocs.empty(); }
126 
127   bool hasPersonality() const {
128     return !(PersonalityLocs.empty() && PersonalityIndexLocs.empty());
129   }
130 
131   void recordFnStart(SMLoc L) { FnStartLocs.push_back(L); }
132   void recordCantUnwind(SMLoc L) { CantUnwindLocs.push_back(L); }
133   void recordPersonality(SMLoc L) { PersonalityLocs.push_back(L); }
134   void recordHandlerData(SMLoc L) { HandlerDataLocs.push_back(L); }
135   void recordPersonalityIndex(SMLoc L) { PersonalityIndexLocs.push_back(L); }
136 
137   void saveFPReg(int Reg) { FPReg = Reg; }
138   int getFPReg() const { return FPReg; }
139 
140   void emitFnStartLocNotes() const {
141     for (Locs::const_iterator FI = FnStartLocs.begin(), FE = FnStartLocs.end();
142          FI != FE; ++FI)
143       Parser.Note(*FI, ".fnstart was specified here");
144   }
145 
146   void emitCantUnwindLocNotes() const {
147     for (Locs::const_iterator UI = CantUnwindLocs.begin(),
148                               UE = CantUnwindLocs.end(); UI != UE; ++UI)
149       Parser.Note(*UI, ".cantunwind was specified here");
150   }
151 
152   void emitHandlerDataLocNotes() const {
153     for (Locs::const_iterator HI = HandlerDataLocs.begin(),
154                               HE = HandlerDataLocs.end(); HI != HE; ++HI)
155       Parser.Note(*HI, ".handlerdata was specified here");
156   }
157 
158   void emitPersonalityLocNotes() const {
159     for (Locs::const_iterator PI = PersonalityLocs.begin(),
160                               PE = PersonalityLocs.end(),
161                               PII = PersonalityIndexLocs.begin(),
162                               PIE = PersonalityIndexLocs.end();
163          PI != PE || PII != PIE;) {
164       if (PI != PE && (PII == PIE || PI->getPointer() < PII->getPointer()))
165         Parser.Note(*PI++, ".personality was specified here");
166       else if (PII != PIE && (PI == PE || PII->getPointer() < PI->getPointer()))
167         Parser.Note(*PII++, ".personalityindex was specified here");
168       else
169         llvm_unreachable(".personality and .personalityindex cannot be "
170                          "at the same location");
171     }
172   }
173 
174   void reset() {
175     FnStartLocs = Locs();
176     CantUnwindLocs = Locs();
177     PersonalityLocs = Locs();
178     HandlerDataLocs = Locs();
179     PersonalityIndexLocs = Locs();
180     FPReg = ARM::SP;
181   }
182 };
183 
184 // Various sets of ARM instruction mnemonics which are used by the asm parser
185 class ARMMnemonicSets {
186   StringSet<> CDE;
187   StringSet<> CDEWithVPTSuffix;
188 public:
189   ARMMnemonicSets(const MCSubtargetInfo &STI);
190 
191   /// Returns true iff a given mnemonic is a CDE instruction
192   bool isCDEInstr(StringRef Mnemonic) {
193     // Quick check before searching the set
194     if (!Mnemonic.startswith("cx") && !Mnemonic.startswith("vcx"))
195       return false;
196     return CDE.count(Mnemonic);
197   }
198 
199   /// Returns true iff a given mnemonic is a VPT-predicable CDE instruction
200   /// (possibly with a predication suffix "e" or "t")
201   bool isVPTPredicableCDEInstr(StringRef Mnemonic) {
202     if (!Mnemonic.startswith("vcx"))
203       return false;
204     return CDEWithVPTSuffix.count(Mnemonic);
205   }
206 
207   /// Returns true iff a given mnemonic is an IT-predicable CDE instruction
208   /// (possibly with a condition suffix)
209   bool isITPredicableCDEInstr(StringRef Mnemonic) {
210     if (!Mnemonic.startswith("cx"))
211       return false;
212     return Mnemonic.startswith("cx1a") || Mnemonic.startswith("cx1da") ||
213            Mnemonic.startswith("cx2a") || Mnemonic.startswith("cx2da") ||
214            Mnemonic.startswith("cx3a") || Mnemonic.startswith("cx3da");
215   }
216 
217   /// Return true iff a given mnemonic is an integer CDE instruction with
218   /// dual-register destination
219   bool isCDEDualRegInstr(StringRef Mnemonic) {
220     if (!Mnemonic.startswith("cx"))
221       return false;
222     return Mnemonic == "cx1d" || Mnemonic == "cx1da" ||
223            Mnemonic == "cx2d" || Mnemonic == "cx2da" ||
224            Mnemonic == "cx3d" || Mnemonic == "cx3da";
225   }
226 };
227 
228 ARMMnemonicSets::ARMMnemonicSets(const MCSubtargetInfo &STI) {
229   for (StringRef Mnemonic: { "cx1", "cx1a", "cx1d", "cx1da",
230                              "cx2", "cx2a", "cx2d", "cx2da",
231                              "cx3", "cx3a", "cx3d", "cx3da", })
232     CDE.insert(Mnemonic);
233   for (StringRef Mnemonic :
234        {"vcx1", "vcx1a", "vcx2", "vcx2a", "vcx3", "vcx3a"}) {
235     CDE.insert(Mnemonic);
236     CDEWithVPTSuffix.insert(Mnemonic);
237     CDEWithVPTSuffix.insert(std::string(Mnemonic) + "t");
238     CDEWithVPTSuffix.insert(std::string(Mnemonic) + "e");
239   }
240 }
241 
242 class ARMAsmParser : public MCTargetAsmParser {
243   const MCRegisterInfo *MRI;
244   UnwindContext UC;
245   ARMMnemonicSets MS;
246 
247   ARMTargetStreamer &getTargetStreamer() {
248     assert(getParser().getStreamer().getTargetStreamer() &&
249            "do not have a target streamer");
250     MCTargetStreamer &TS = *getParser().getStreamer().getTargetStreamer();
251     return static_cast<ARMTargetStreamer &>(TS);
252   }
253 
254   // Map of register aliases registers via the .req directive.
255   StringMap<unsigned> RegisterReqs;
256 
257   bool NextSymbolIsThumb;
258 
259   bool useImplicitITThumb() const {
260     return ImplicitItMode == ImplicitItModeTy::Always ||
261            ImplicitItMode == ImplicitItModeTy::ThumbOnly;
262   }
263 
264   bool useImplicitITARM() const {
265     return ImplicitItMode == ImplicitItModeTy::Always ||
266            ImplicitItMode == ImplicitItModeTy::ARMOnly;
267   }
268 
269   struct {
270     ARMCC::CondCodes Cond;    // Condition for IT block.
271     unsigned Mask:4;          // Condition mask for instructions.
272                               // Starting at first 1 (from lsb).
273                               //   '1'  condition as indicated in IT.
274                               //   '0'  inverse of condition (else).
275                               // Count of instructions in IT block is
276                               // 4 - trailingzeroes(mask)
277                               // Note that this does not have the same encoding
278                               // as in the IT instruction, which also depends
279                               // on the low bit of the condition code.
280 
281     unsigned CurPosition;     // Current position in parsing of IT
282                               // block. In range [0,4], with 0 being the IT
283                               // instruction itself. Initialized according to
284                               // count of instructions in block.  ~0U if no
285                               // active IT block.
286 
287     bool IsExplicit;          // true  - The IT instruction was present in the
288                               //         input, we should not modify it.
289                               // false - The IT instruction was added
290                               //         implicitly, we can extend it if that
291                               //         would be legal.
292   } ITState;
293 
294   SmallVector<MCInst, 4> PendingConditionalInsts;
295 
296   void flushPendingInstructions(MCStreamer &Out) override {
297     if (!inImplicitITBlock()) {
298       assert(PendingConditionalInsts.size() == 0);
299       return;
300     }
301 
302     // Emit the IT instruction
303     MCInst ITInst;
304     ITInst.setOpcode(ARM::t2IT);
305     ITInst.addOperand(MCOperand::createImm(ITState.Cond));
306     ITInst.addOperand(MCOperand::createImm(ITState.Mask));
307     Out.emitInstruction(ITInst, getSTI());
308 
309     // Emit the conditonal instructions
310     assert(PendingConditionalInsts.size() <= 4);
311     for (const MCInst &Inst : PendingConditionalInsts) {
312       Out.emitInstruction(Inst, getSTI());
313     }
314     PendingConditionalInsts.clear();
315 
316     // Clear the IT state
317     ITState.Mask = 0;
318     ITState.CurPosition = ~0U;
319   }
320 
321   bool inITBlock() { return ITState.CurPosition != ~0U; }
322   bool inExplicitITBlock() { return inITBlock() && ITState.IsExplicit; }
323   bool inImplicitITBlock() { return inITBlock() && !ITState.IsExplicit; }
324 
325   bool lastInITBlock() {
326     return ITState.CurPosition == 4 - countTrailingZeros(ITState.Mask);
327   }
328 
329   void forwardITPosition() {
330     if (!inITBlock()) return;
331     // Move to the next instruction in the IT block, if there is one. If not,
332     // mark the block as done, except for implicit IT blocks, which we leave
333     // open until we find an instruction that can't be added to it.
334     unsigned TZ = countTrailingZeros(ITState.Mask);
335     if (++ITState.CurPosition == 5 - TZ && ITState.IsExplicit)
336       ITState.CurPosition = ~0U; // Done with the IT block after this.
337   }
338 
339   // Rewind the state of the current IT block, removing the last slot from it.
340   void rewindImplicitITPosition() {
341     assert(inImplicitITBlock());
342     assert(ITState.CurPosition > 1);
343     ITState.CurPosition--;
344     unsigned TZ = countTrailingZeros(ITState.Mask);
345     unsigned NewMask = 0;
346     NewMask |= ITState.Mask & (0xC << TZ);
347     NewMask |= 0x2 << TZ;
348     ITState.Mask = NewMask;
349   }
350 
351   // Rewind the state of the current IT block, removing the last slot from it.
352   // If we were at the first slot, this closes the IT block.
353   void discardImplicitITBlock() {
354     assert(inImplicitITBlock());
355     assert(ITState.CurPosition == 1);
356     ITState.CurPosition = ~0U;
357   }
358 
359   // Return the low-subreg of a given Q register.
360   unsigned getDRegFromQReg(unsigned QReg) const {
361     return MRI->getSubReg(QReg, ARM::dsub_0);
362   }
363 
364   // Get the condition code corresponding to the current IT block slot.
365   ARMCC::CondCodes currentITCond() {
366     unsigned MaskBit = extractITMaskBit(ITState.Mask, ITState.CurPosition);
367     return MaskBit ? ARMCC::getOppositeCondition(ITState.Cond) : ITState.Cond;
368   }
369 
370   // Invert the condition of the current IT block slot without changing any
371   // other slots in the same block.
372   void invertCurrentITCondition() {
373     if (ITState.CurPosition == 1) {
374       ITState.Cond = ARMCC::getOppositeCondition(ITState.Cond);
375     } else {
376       ITState.Mask ^= 1 << (5 - ITState.CurPosition);
377     }
378   }
379 
380   // Returns true if the current IT block is full (all 4 slots used).
381   bool isITBlockFull() {
382     return inITBlock() && (ITState.Mask & 1);
383   }
384 
385   // Extend the current implicit IT block to have one more slot with the given
386   // condition code.
387   void extendImplicitITBlock(ARMCC::CondCodes Cond) {
388     assert(inImplicitITBlock());
389     assert(!isITBlockFull());
390     assert(Cond == ITState.Cond ||
391            Cond == ARMCC::getOppositeCondition(ITState.Cond));
392     unsigned TZ = countTrailingZeros(ITState.Mask);
393     unsigned NewMask = 0;
394     // Keep any existing condition bits.
395     NewMask |= ITState.Mask & (0xE << TZ);
396     // Insert the new condition bit.
397     NewMask |= (Cond != ITState.Cond) << TZ;
398     // Move the trailing 1 down one bit.
399     NewMask |= 1 << (TZ - 1);
400     ITState.Mask = NewMask;
401   }
402 
403   // Create a new implicit IT block with a dummy condition code.
404   void startImplicitITBlock() {
405     assert(!inITBlock());
406     ITState.Cond = ARMCC::AL;
407     ITState.Mask = 8;
408     ITState.CurPosition = 1;
409     ITState.IsExplicit = false;
410   }
411 
412   // Create a new explicit IT block with the given condition and mask.
413   // The mask should be in the format used in ARMOperand and
414   // MCOperand, with a 1 implying 'e', regardless of the low bit of
415   // the condition.
416   void startExplicitITBlock(ARMCC::CondCodes Cond, unsigned Mask) {
417     assert(!inITBlock());
418     ITState.Cond = Cond;
419     ITState.Mask = Mask;
420     ITState.CurPosition = 0;
421     ITState.IsExplicit = true;
422   }
423 
424   struct {
425     unsigned Mask : 4;
426     unsigned CurPosition;
427   } VPTState;
428   bool inVPTBlock() { return VPTState.CurPosition != ~0U; }
429   void forwardVPTPosition() {
430     if (!inVPTBlock()) return;
431     unsigned TZ = countTrailingZeros(VPTState.Mask);
432     if (++VPTState.CurPosition == 5 - TZ)
433       VPTState.CurPosition = ~0U;
434   }
435 
436   void Note(SMLoc L, const Twine &Msg, SMRange Range = None) {
437     return getParser().Note(L, Msg, Range);
438   }
439 
440   bool Warning(SMLoc L, const Twine &Msg, SMRange Range = None) {
441     return getParser().Warning(L, Msg, Range);
442   }
443 
444   bool Error(SMLoc L, const Twine &Msg, SMRange Range = None) {
445     return getParser().Error(L, Msg, Range);
446   }
447 
448   bool validatetLDMRegList(const MCInst &Inst, const OperandVector &Operands,
449                            unsigned ListNo, bool IsARPop = false);
450   bool validatetSTMRegList(const MCInst &Inst, const OperandVector &Operands,
451                            unsigned ListNo);
452 
453   int tryParseRegister();
454   bool tryParseRegisterWithWriteBack(OperandVector &);
455   int tryParseShiftRegister(OperandVector &);
456   bool parseRegisterList(OperandVector &, bool EnforceOrder = true);
457   bool parseMemory(OperandVector &);
458   bool parseOperand(OperandVector &, StringRef Mnemonic);
459   bool parsePrefix(ARMMCExpr::VariantKind &RefKind);
460   bool parseMemRegOffsetShift(ARM_AM::ShiftOpc &ShiftType,
461                               unsigned &ShiftAmount);
462   bool parseLiteralValues(unsigned Size, SMLoc L);
463   bool parseDirectiveThumb(SMLoc L);
464   bool parseDirectiveARM(SMLoc L);
465   bool parseDirectiveThumbFunc(SMLoc L);
466   bool parseDirectiveCode(SMLoc L);
467   bool parseDirectiveSyntax(SMLoc L);
468   bool parseDirectiveReq(StringRef Name, SMLoc L);
469   bool parseDirectiveUnreq(SMLoc L);
470   bool parseDirectiveArch(SMLoc L);
471   bool parseDirectiveEabiAttr(SMLoc L);
472   bool parseDirectiveCPU(SMLoc L);
473   bool parseDirectiveFPU(SMLoc L);
474   bool parseDirectiveFnStart(SMLoc L);
475   bool parseDirectiveFnEnd(SMLoc L);
476   bool parseDirectiveCantUnwind(SMLoc L);
477   bool parseDirectivePersonality(SMLoc L);
478   bool parseDirectiveHandlerData(SMLoc L);
479   bool parseDirectiveSetFP(SMLoc L);
480   bool parseDirectivePad(SMLoc L);
481   bool parseDirectiveRegSave(SMLoc L, bool IsVector);
482   bool parseDirectiveInst(SMLoc L, char Suffix = '\0');
483   bool parseDirectiveLtorg(SMLoc L);
484   bool parseDirectiveEven(SMLoc L);
485   bool parseDirectivePersonalityIndex(SMLoc L);
486   bool parseDirectiveUnwindRaw(SMLoc L);
487   bool parseDirectiveTLSDescSeq(SMLoc L);
488   bool parseDirectiveMovSP(SMLoc L);
489   bool parseDirectiveObjectArch(SMLoc L);
490   bool parseDirectiveArchExtension(SMLoc L);
491   bool parseDirectiveAlign(SMLoc L);
492   bool parseDirectiveThumbSet(SMLoc L);
493 
494   bool isMnemonicVPTPredicable(StringRef Mnemonic, StringRef ExtraToken);
495   StringRef splitMnemonic(StringRef Mnemonic, StringRef ExtraToken,
496                           unsigned &PredicationCode,
497                           unsigned &VPTPredicationCode, bool &CarrySetting,
498                           unsigned &ProcessorIMod, StringRef &ITMask);
499   void getMnemonicAcceptInfo(StringRef Mnemonic, StringRef ExtraToken,
500                              StringRef FullInst, bool &CanAcceptCarrySet,
501                              bool &CanAcceptPredicationCode,
502                              bool &CanAcceptVPTPredicationCode);
503 
504   void tryConvertingToTwoOperandForm(StringRef Mnemonic, bool CarrySetting,
505                                      OperandVector &Operands);
506   bool CDEConvertDualRegOperand(StringRef Mnemonic, OperandVector &Operands);
507 
508   bool isThumb() const {
509     // FIXME: Can tablegen auto-generate this?
510     return getSTI().getFeatureBits()[ARM::ModeThumb];
511   }
512 
513   bool isThumbOne() const {
514     return isThumb() && !getSTI().getFeatureBits()[ARM::FeatureThumb2];
515   }
516 
517   bool isThumbTwo() const {
518     return isThumb() && getSTI().getFeatureBits()[ARM::FeatureThumb2];
519   }
520 
521   bool hasThumb() const {
522     return getSTI().getFeatureBits()[ARM::HasV4TOps];
523   }
524 
525   bool hasThumb2() const {
526     return getSTI().getFeatureBits()[ARM::FeatureThumb2];
527   }
528 
529   bool hasV6Ops() const {
530     return getSTI().getFeatureBits()[ARM::HasV6Ops];
531   }
532 
533   bool hasV6T2Ops() const {
534     return getSTI().getFeatureBits()[ARM::HasV6T2Ops];
535   }
536 
537   bool hasV6MOps() const {
538     return getSTI().getFeatureBits()[ARM::HasV6MOps];
539   }
540 
541   bool hasV7Ops() const {
542     return getSTI().getFeatureBits()[ARM::HasV7Ops];
543   }
544 
545   bool hasV8Ops() const {
546     return getSTI().getFeatureBits()[ARM::HasV8Ops];
547   }
548 
549   bool hasV8MBaseline() const {
550     return getSTI().getFeatureBits()[ARM::HasV8MBaselineOps];
551   }
552 
553   bool hasV8MMainline() const {
554     return getSTI().getFeatureBits()[ARM::HasV8MMainlineOps];
555   }
556   bool hasV8_1MMainline() const {
557     return getSTI().getFeatureBits()[ARM::HasV8_1MMainlineOps];
558   }
559   bool hasMVE() const {
560     return getSTI().getFeatureBits()[ARM::HasMVEIntegerOps];
561   }
562   bool hasMVEFloat() const {
563     return getSTI().getFeatureBits()[ARM::HasMVEFloatOps];
564   }
565   bool hasCDE() const {
566     return getSTI().getFeatureBits()[ARM::HasCDEOps];
567   }
568   bool has8MSecExt() const {
569     return getSTI().getFeatureBits()[ARM::Feature8MSecExt];
570   }
571 
572   bool hasARM() const {
573     return !getSTI().getFeatureBits()[ARM::FeatureNoARM];
574   }
575 
576   bool hasDSP() const {
577     return getSTI().getFeatureBits()[ARM::FeatureDSP];
578   }
579 
580   bool hasD32() const {
581     return getSTI().getFeatureBits()[ARM::FeatureD32];
582   }
583 
584   bool hasV8_1aOps() const {
585     return getSTI().getFeatureBits()[ARM::HasV8_1aOps];
586   }
587 
588   bool hasRAS() const {
589     return getSTI().getFeatureBits()[ARM::FeatureRAS];
590   }
591 
592   void SwitchMode() {
593     MCSubtargetInfo &STI = copySTI();
594     auto FB = ComputeAvailableFeatures(STI.ToggleFeature(ARM::ModeThumb));
595     setAvailableFeatures(FB);
596   }
597 
598   void FixModeAfterArchChange(bool WasThumb, SMLoc Loc);
599 
600   bool isMClass() const {
601     return getSTI().getFeatureBits()[ARM::FeatureMClass];
602   }
603 
604   /// @name Auto-generated Match Functions
605   /// {
606 
607 #define GET_ASSEMBLER_HEADER
608 #include "ARMGenAsmMatcher.inc"
609 
610   /// }
611 
612   OperandMatchResultTy parseITCondCode(OperandVector &);
613   OperandMatchResultTy parseCoprocNumOperand(OperandVector &);
614   OperandMatchResultTy parseCoprocRegOperand(OperandVector &);
615   OperandMatchResultTy parseCoprocOptionOperand(OperandVector &);
616   OperandMatchResultTy parseMemBarrierOptOperand(OperandVector &);
617   OperandMatchResultTy parseTraceSyncBarrierOptOperand(OperandVector &);
618   OperandMatchResultTy parseInstSyncBarrierOptOperand(OperandVector &);
619   OperandMatchResultTy parseProcIFlagsOperand(OperandVector &);
620   OperandMatchResultTy parseMSRMaskOperand(OperandVector &);
621   OperandMatchResultTy parseBankedRegOperand(OperandVector &);
622   OperandMatchResultTy parsePKHImm(OperandVector &O, StringRef Op, int Low,
623                                    int High);
624   OperandMatchResultTy parsePKHLSLImm(OperandVector &O) {
625     return parsePKHImm(O, "lsl", 0, 31);
626   }
627   OperandMatchResultTy parsePKHASRImm(OperandVector &O) {
628     return parsePKHImm(O, "asr", 1, 32);
629   }
630   OperandMatchResultTy parseSetEndImm(OperandVector &);
631   OperandMatchResultTy parseShifterImm(OperandVector &);
632   OperandMatchResultTy parseRotImm(OperandVector &);
633   OperandMatchResultTy parseModImm(OperandVector &);
634   OperandMatchResultTy parseBitfield(OperandVector &);
635   OperandMatchResultTy parsePostIdxReg(OperandVector &);
636   OperandMatchResultTy parseAM3Offset(OperandVector &);
637   OperandMatchResultTy parseFPImm(OperandVector &);
638   OperandMatchResultTy parseVectorList(OperandVector &);
639   OperandMatchResultTy parseVectorLane(VectorLaneTy &LaneKind, unsigned &Index,
640                                        SMLoc &EndLoc);
641 
642   // Asm Match Converter Methods
643   void cvtThumbMultiply(MCInst &Inst, const OperandVector &);
644   void cvtThumbBranches(MCInst &Inst, const OperandVector &);
645   void cvtMVEVMOVQtoDReg(MCInst &Inst, const OperandVector &);
646 
647   bool validateInstruction(MCInst &Inst, const OperandVector &Ops);
648   bool processInstruction(MCInst &Inst, const OperandVector &Ops, MCStreamer &Out);
649   bool shouldOmitCCOutOperand(StringRef Mnemonic, OperandVector &Operands);
650   bool shouldOmitPredicateOperand(StringRef Mnemonic, OperandVector &Operands);
651   bool shouldOmitVectorPredicateOperand(StringRef Mnemonic, OperandVector &Operands);
652   bool isITBlockTerminator(MCInst &Inst) const;
653   void fixupGNULDRDAlias(StringRef Mnemonic, OperandVector &Operands);
654   bool validateLDRDSTRD(MCInst &Inst, const OperandVector &Operands,
655                         bool Load, bool ARMMode, bool Writeback);
656 
657 public:
658   enum ARMMatchResultTy {
659     Match_RequiresITBlock = FIRST_TARGET_MATCH_RESULT_TY,
660     Match_RequiresNotITBlock,
661     Match_RequiresV6,
662     Match_RequiresThumb2,
663     Match_RequiresV8,
664     Match_RequiresFlagSetting,
665 #define GET_OPERAND_DIAGNOSTIC_TYPES
666 #include "ARMGenAsmMatcher.inc"
667 
668   };
669 
670   ARMAsmParser(const MCSubtargetInfo &STI, MCAsmParser &Parser,
671                const MCInstrInfo &MII, const MCTargetOptions &Options)
672     : MCTargetAsmParser(Options, STI, MII), UC(Parser), MS(STI) {
673     MCAsmParserExtension::Initialize(Parser);
674 
675     // Cache the MCRegisterInfo.
676     MRI = getContext().getRegisterInfo();
677 
678     // Initialize the set of available features.
679     setAvailableFeatures(ComputeAvailableFeatures(STI.getFeatureBits()));
680 
681     // Add build attributes based on the selected target.
682     if (AddBuildAttributes)
683       getTargetStreamer().emitTargetAttributes(STI);
684 
685     // Not in an ITBlock to start with.
686     ITState.CurPosition = ~0U;
687 
688     VPTState.CurPosition = ~0U;
689 
690     NextSymbolIsThumb = false;
691   }
692 
693   // Implementation of the MCTargetAsmParser interface:
694   bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override;
695   OperandMatchResultTy tryParseRegister(unsigned &RegNo, SMLoc &StartLoc,
696                                         SMLoc &EndLoc) override;
697   bool ParseInstruction(ParseInstructionInfo &Info, StringRef Name,
698                         SMLoc NameLoc, OperandVector &Operands) override;
699   bool ParseDirective(AsmToken DirectiveID) override;
700 
701   unsigned validateTargetOperandClass(MCParsedAsmOperand &Op,
702                                       unsigned Kind) override;
703   unsigned checkTargetMatchPredicate(MCInst &Inst) override;
704 
705   bool MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode,
706                                OperandVector &Operands, MCStreamer &Out,
707                                uint64_t &ErrorInfo,
708                                bool MatchingInlineAsm) override;
709   unsigned MatchInstruction(OperandVector &Operands, MCInst &Inst,
710                             SmallVectorImpl<NearMissInfo> &NearMisses,
711                             bool MatchingInlineAsm, bool &EmitInITBlock,
712                             MCStreamer &Out);
713 
714   struct NearMissMessage {
715     SMLoc Loc;
716     SmallString<128> Message;
717   };
718 
719   const char *getCustomOperandDiag(ARMMatchResultTy MatchError);
720 
721   void FilterNearMisses(SmallVectorImpl<NearMissInfo> &NearMissesIn,
722                         SmallVectorImpl<NearMissMessage> &NearMissesOut,
723                         SMLoc IDLoc, OperandVector &Operands);
724   void ReportNearMisses(SmallVectorImpl<NearMissInfo> &NearMisses, SMLoc IDLoc,
725                         OperandVector &Operands);
726 
727   void doBeforeLabelEmit(MCSymbol *Symbol) override;
728 
729   void onLabelParsed(MCSymbol *Symbol) override;
730 };
731 
732 /// ARMOperand - Instances of this class represent a parsed ARM machine
733 /// operand.
734 class ARMOperand : public MCParsedAsmOperand {
735   enum KindTy {
736     k_CondCode,
737     k_VPTPred,
738     k_CCOut,
739     k_ITCondMask,
740     k_CoprocNum,
741     k_CoprocReg,
742     k_CoprocOption,
743     k_Immediate,
744     k_MemBarrierOpt,
745     k_InstSyncBarrierOpt,
746     k_TraceSyncBarrierOpt,
747     k_Memory,
748     k_PostIndexRegister,
749     k_MSRMask,
750     k_BankedReg,
751     k_ProcIFlags,
752     k_VectorIndex,
753     k_Register,
754     k_RegisterList,
755     k_RegisterListWithAPSR,
756     k_DPRRegisterList,
757     k_SPRRegisterList,
758     k_FPSRegisterListWithVPR,
759     k_FPDRegisterListWithVPR,
760     k_VectorList,
761     k_VectorListAllLanes,
762     k_VectorListIndexed,
763     k_ShiftedRegister,
764     k_ShiftedImmediate,
765     k_ShifterImmediate,
766     k_RotateImmediate,
767     k_ModifiedImmediate,
768     k_ConstantPoolImmediate,
769     k_BitfieldDescriptor,
770     k_Token,
771   } Kind;
772 
773   SMLoc StartLoc, EndLoc, AlignmentLoc;
774   SmallVector<unsigned, 8> Registers;
775 
776   struct CCOp {
777     ARMCC::CondCodes Val;
778   };
779 
780   struct VCCOp {
781     ARMVCC::VPTCodes Val;
782   };
783 
784   struct CopOp {
785     unsigned Val;
786   };
787 
788   struct CoprocOptionOp {
789     unsigned Val;
790   };
791 
792   struct ITMaskOp {
793     unsigned Mask:4;
794   };
795 
796   struct MBOptOp {
797     ARM_MB::MemBOpt Val;
798   };
799 
800   struct ISBOptOp {
801     ARM_ISB::InstSyncBOpt Val;
802   };
803 
804   struct TSBOptOp {
805     ARM_TSB::TraceSyncBOpt Val;
806   };
807 
808   struct IFlagsOp {
809     ARM_PROC::IFlags Val;
810   };
811 
812   struct MMaskOp {
813     unsigned Val;
814   };
815 
816   struct BankedRegOp {
817     unsigned Val;
818   };
819 
820   struct TokOp {
821     const char *Data;
822     unsigned Length;
823   };
824 
825   struct RegOp {
826     unsigned RegNum;
827   };
828 
829   // A vector register list is a sequential list of 1 to 4 registers.
830   struct VectorListOp {
831     unsigned RegNum;
832     unsigned Count;
833     unsigned LaneIndex;
834     bool isDoubleSpaced;
835   };
836 
837   struct VectorIndexOp {
838     unsigned Val;
839   };
840 
841   struct ImmOp {
842     const MCExpr *Val;
843   };
844 
845   /// Combined record for all forms of ARM address expressions.
846   struct MemoryOp {
847     unsigned BaseRegNum;
848     // Offset is in OffsetReg or OffsetImm. If both are zero, no offset
849     // was specified.
850     const MCConstantExpr *OffsetImm;  // Offset immediate value
851     unsigned OffsetRegNum;    // Offset register num, when OffsetImm == NULL
852     ARM_AM::ShiftOpc ShiftType; // Shift type for OffsetReg
853     unsigned ShiftImm;        // shift for OffsetReg.
854     unsigned Alignment;       // 0 = no alignment specified
855     // n = alignment in bytes (2, 4, 8, 16, or 32)
856     unsigned isNegative : 1;  // Negated OffsetReg? (~'U' bit)
857   };
858 
859   struct PostIdxRegOp {
860     unsigned RegNum;
861     bool isAdd;
862     ARM_AM::ShiftOpc ShiftTy;
863     unsigned ShiftImm;
864   };
865 
866   struct ShifterImmOp {
867     bool isASR;
868     unsigned Imm;
869   };
870 
871   struct RegShiftedRegOp {
872     ARM_AM::ShiftOpc ShiftTy;
873     unsigned SrcReg;
874     unsigned ShiftReg;
875     unsigned ShiftImm;
876   };
877 
878   struct RegShiftedImmOp {
879     ARM_AM::ShiftOpc ShiftTy;
880     unsigned SrcReg;
881     unsigned ShiftImm;
882   };
883 
884   struct RotImmOp {
885     unsigned Imm;
886   };
887 
888   struct ModImmOp {
889     unsigned Bits;
890     unsigned Rot;
891   };
892 
893   struct BitfieldOp {
894     unsigned LSB;
895     unsigned Width;
896   };
897 
898   union {
899     struct CCOp CC;
900     struct VCCOp VCC;
901     struct CopOp Cop;
902     struct CoprocOptionOp CoprocOption;
903     struct MBOptOp MBOpt;
904     struct ISBOptOp ISBOpt;
905     struct TSBOptOp TSBOpt;
906     struct ITMaskOp ITMask;
907     struct IFlagsOp IFlags;
908     struct MMaskOp MMask;
909     struct BankedRegOp BankedReg;
910     struct TokOp Tok;
911     struct RegOp Reg;
912     struct VectorListOp VectorList;
913     struct VectorIndexOp VectorIndex;
914     struct ImmOp Imm;
915     struct MemoryOp Memory;
916     struct PostIdxRegOp PostIdxReg;
917     struct ShifterImmOp ShifterImm;
918     struct RegShiftedRegOp RegShiftedReg;
919     struct RegShiftedImmOp RegShiftedImm;
920     struct RotImmOp RotImm;
921     struct ModImmOp ModImm;
922     struct BitfieldOp Bitfield;
923   };
924 
925 public:
926   ARMOperand(KindTy K) : MCParsedAsmOperand(), Kind(K) {}
927 
928   /// getStartLoc - Get the location of the first token of this operand.
929   SMLoc getStartLoc() const override { return StartLoc; }
930 
931   /// getEndLoc - Get the location of the last token of this operand.
932   SMLoc getEndLoc() const override { return EndLoc; }
933 
934   /// getLocRange - Get the range between the first and last token of this
935   /// operand.
936   SMRange getLocRange() const { return SMRange(StartLoc, EndLoc); }
937 
938   /// getAlignmentLoc - Get the location of the Alignment token of this operand.
939   SMLoc getAlignmentLoc() const {
940     assert(Kind == k_Memory && "Invalid access!");
941     return AlignmentLoc;
942   }
943 
944   ARMCC::CondCodes getCondCode() const {
945     assert(Kind == k_CondCode && "Invalid access!");
946     return CC.Val;
947   }
948 
949   ARMVCC::VPTCodes getVPTPred() const {
950     assert(isVPTPred() && "Invalid access!");
951     return VCC.Val;
952   }
953 
954   unsigned getCoproc() const {
955     assert((Kind == k_CoprocNum || Kind == k_CoprocReg) && "Invalid access!");
956     return Cop.Val;
957   }
958 
959   StringRef getToken() const {
960     assert(Kind == k_Token && "Invalid access!");
961     return StringRef(Tok.Data, Tok.Length);
962   }
963 
964   unsigned getReg() const override {
965     assert((Kind == k_Register || Kind == k_CCOut) && "Invalid access!");
966     return Reg.RegNum;
967   }
968 
969   const SmallVectorImpl<unsigned> &getRegList() const {
970     assert((Kind == k_RegisterList || Kind == k_RegisterListWithAPSR ||
971             Kind == k_DPRRegisterList || Kind == k_SPRRegisterList ||
972             Kind == k_FPSRegisterListWithVPR ||
973             Kind == k_FPDRegisterListWithVPR) &&
974            "Invalid access!");
975     return Registers;
976   }
977 
978   const MCExpr *getImm() const {
979     assert(isImm() && "Invalid access!");
980     return Imm.Val;
981   }
982 
983   const MCExpr *getConstantPoolImm() const {
984     assert(isConstantPoolImm() && "Invalid access!");
985     return Imm.Val;
986   }
987 
988   unsigned getVectorIndex() const {
989     assert(Kind == k_VectorIndex && "Invalid access!");
990     return VectorIndex.Val;
991   }
992 
993   ARM_MB::MemBOpt getMemBarrierOpt() const {
994     assert(Kind == k_MemBarrierOpt && "Invalid access!");
995     return MBOpt.Val;
996   }
997 
998   ARM_ISB::InstSyncBOpt getInstSyncBarrierOpt() const {
999     assert(Kind == k_InstSyncBarrierOpt && "Invalid access!");
1000     return ISBOpt.Val;
1001   }
1002 
1003   ARM_TSB::TraceSyncBOpt getTraceSyncBarrierOpt() const {
1004     assert(Kind == k_TraceSyncBarrierOpt && "Invalid access!");
1005     return TSBOpt.Val;
1006   }
1007 
1008   ARM_PROC::IFlags getProcIFlags() const {
1009     assert(Kind == k_ProcIFlags && "Invalid access!");
1010     return IFlags.Val;
1011   }
1012 
1013   unsigned getMSRMask() const {
1014     assert(Kind == k_MSRMask && "Invalid access!");
1015     return MMask.Val;
1016   }
1017 
1018   unsigned getBankedReg() const {
1019     assert(Kind == k_BankedReg && "Invalid access!");
1020     return BankedReg.Val;
1021   }
1022 
1023   bool isCoprocNum() const { return Kind == k_CoprocNum; }
1024   bool isCoprocReg() const { return Kind == k_CoprocReg; }
1025   bool isCoprocOption() const { return Kind == k_CoprocOption; }
1026   bool isCondCode() const { return Kind == k_CondCode; }
1027   bool isVPTPred() const { return Kind == k_VPTPred; }
1028   bool isCCOut() const { return Kind == k_CCOut; }
1029   bool isITMask() const { return Kind == k_ITCondMask; }
1030   bool isITCondCode() const { return Kind == k_CondCode; }
1031   bool isImm() const override {
1032     return Kind == k_Immediate;
1033   }
1034 
1035   bool isARMBranchTarget() const {
1036     if (!isImm()) return false;
1037 
1038     if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()))
1039       return CE->getValue() % 4 == 0;
1040     return true;
1041   }
1042 
1043 
1044   bool isThumbBranchTarget() const {
1045     if (!isImm()) return false;
1046 
1047     if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()))
1048       return CE->getValue() % 2 == 0;
1049     return true;
1050   }
1051 
1052   // checks whether this operand is an unsigned offset which fits is a field
1053   // of specified width and scaled by a specific number of bits
1054   template<unsigned width, unsigned scale>
1055   bool isUnsignedOffset() const {
1056     if (!isImm()) return false;
1057     if (isa<MCSymbolRefExpr>(Imm.Val)) return true;
1058     if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Imm.Val)) {
1059       int64_t Val = CE->getValue();
1060       int64_t Align = 1LL << scale;
1061       int64_t Max = Align * ((1LL << width) - 1);
1062       return ((Val % Align) == 0) && (Val >= 0) && (Val <= Max);
1063     }
1064     return false;
1065   }
1066 
1067   // checks whether this operand is an signed offset which fits is a field
1068   // of specified width and scaled by a specific number of bits
1069   template<unsigned width, unsigned scale>
1070   bool isSignedOffset() const {
1071     if (!isImm()) return false;
1072     if (isa<MCSymbolRefExpr>(Imm.Val)) return true;
1073     if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Imm.Val)) {
1074       int64_t Val = CE->getValue();
1075       int64_t Align = 1LL << scale;
1076       int64_t Max = Align * ((1LL << (width-1)) - 1);
1077       int64_t Min = -Align * (1LL << (width-1));
1078       return ((Val % Align) == 0) && (Val >= Min) && (Val <= Max);
1079     }
1080     return false;
1081   }
1082 
1083   // checks whether this operand is an offset suitable for the LE /
1084   // LETP instructions in Arm v8.1M
1085   bool isLEOffset() const {
1086     if (!isImm()) return false;
1087     if (isa<MCSymbolRefExpr>(Imm.Val)) return true;
1088     if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Imm.Val)) {
1089       int64_t Val = CE->getValue();
1090       return Val < 0 && Val >= -4094 && (Val & 1) == 0;
1091     }
1092     return false;
1093   }
1094 
1095   // checks whether this operand is a memory operand computed as an offset
1096   // applied to PC. the offset may have 8 bits of magnitude and is represented
1097   // with two bits of shift. textually it may be either [pc, #imm], #imm or
1098   // relocable expression...
1099   bool isThumbMemPC() const {
1100     int64_t Val = 0;
1101     if (isImm()) {
1102       if (isa<MCSymbolRefExpr>(Imm.Val)) return true;
1103       const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Imm.Val);
1104       if (!CE) return false;
1105       Val = CE->getValue();
1106     }
1107     else if (isGPRMem()) {
1108       if(!Memory.OffsetImm || Memory.OffsetRegNum) return false;
1109       if(Memory.BaseRegNum != ARM::PC) return false;
1110       Val = Memory.OffsetImm->getValue();
1111     }
1112     else return false;
1113     return ((Val % 4) == 0) && (Val >= 0) && (Val <= 1020);
1114   }
1115 
1116   bool isFPImm() const {
1117     if (!isImm()) return false;
1118     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1119     if (!CE) return false;
1120     int Val = ARM_AM::getFP32Imm(APInt(32, CE->getValue()));
1121     return Val != -1;
1122   }
1123 
1124   template<int64_t N, int64_t M>
1125   bool isImmediate() const {
1126     if (!isImm()) return false;
1127     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1128     if (!CE) return false;
1129     int64_t Value = CE->getValue();
1130     return Value >= N && Value <= M;
1131   }
1132 
1133   template<int64_t N, int64_t M>
1134   bool isImmediateS4() const {
1135     if (!isImm()) return false;
1136     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1137     if (!CE) return false;
1138     int64_t Value = CE->getValue();
1139     return ((Value & 3) == 0) && Value >= N && Value <= M;
1140   }
1141   template<int64_t N, int64_t M>
1142   bool isImmediateS2() const {
1143     if (!isImm()) return false;
1144     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1145     if (!CE) return false;
1146     int64_t Value = CE->getValue();
1147     return ((Value & 1) == 0) && Value >= N && Value <= M;
1148   }
1149   bool isFBits16() const {
1150     return isImmediate<0, 17>();
1151   }
1152   bool isFBits32() const {
1153     return isImmediate<1, 33>();
1154   }
1155   bool isImm8s4() const {
1156     return isImmediateS4<-1020, 1020>();
1157   }
1158   bool isImm7s4() const {
1159     return isImmediateS4<-508, 508>();
1160   }
1161   bool isImm7Shift0() const {
1162     return isImmediate<-127, 127>();
1163   }
1164   bool isImm7Shift1() const {
1165     return isImmediateS2<-255, 255>();
1166   }
1167   bool isImm7Shift2() const {
1168     return isImmediateS4<-511, 511>();
1169   }
1170   bool isImm7() const {
1171     return isImmediate<-127, 127>();
1172   }
1173   bool isImm0_1020s4() const {
1174     return isImmediateS4<0, 1020>();
1175   }
1176   bool isImm0_508s4() const {
1177     return isImmediateS4<0, 508>();
1178   }
1179   bool isImm0_508s4Neg() const {
1180     if (!isImm()) return false;
1181     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1182     if (!CE) return false;
1183     int64_t Value = -CE->getValue();
1184     // explicitly exclude zero. we want that to use the normal 0_508 version.
1185     return ((Value & 3) == 0) && Value > 0 && Value <= 508;
1186   }
1187 
1188   bool isImm0_4095Neg() const {
1189     if (!isImm()) return false;
1190     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1191     if (!CE) return false;
1192     // isImm0_4095Neg is used with 32-bit immediates only.
1193     // 32-bit immediates are zero extended to 64-bit when parsed,
1194     // thus simple -CE->getValue() results in a big negative number,
1195     // not a small positive number as intended
1196     if ((CE->getValue() >> 32) > 0) return false;
1197     uint32_t Value = -static_cast<uint32_t>(CE->getValue());
1198     return Value > 0 && Value < 4096;
1199   }
1200 
1201   bool isImm0_7() const {
1202     return isImmediate<0, 7>();
1203   }
1204 
1205   bool isImm1_16() const {
1206     return isImmediate<1, 16>();
1207   }
1208 
1209   bool isImm1_32() const {
1210     return isImmediate<1, 32>();
1211   }
1212 
1213   bool isImm8_255() const {
1214     return isImmediate<8, 255>();
1215   }
1216 
1217   bool isImm256_65535Expr() const {
1218     if (!isImm()) return false;
1219     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1220     // If it's not a constant expression, it'll generate a fixup and be
1221     // handled later.
1222     if (!CE) return true;
1223     int64_t Value = CE->getValue();
1224     return Value >= 256 && Value < 65536;
1225   }
1226 
1227   bool isImm0_65535Expr() const {
1228     if (!isImm()) return false;
1229     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1230     // If it's not a constant expression, it'll generate a fixup and be
1231     // handled later.
1232     if (!CE) return true;
1233     int64_t Value = CE->getValue();
1234     return Value >= 0 && Value < 65536;
1235   }
1236 
1237   bool isImm24bit() const {
1238     return isImmediate<0, 0xffffff + 1>();
1239   }
1240 
1241   bool isImmThumbSR() const {
1242     return isImmediate<1, 33>();
1243   }
1244 
1245   template<int shift>
1246   bool isExpImmValue(uint64_t Value) const {
1247     uint64_t mask = (1 << shift) - 1;
1248     if ((Value & mask) != 0 || (Value >> shift) > 0xff)
1249       return false;
1250     return true;
1251   }
1252 
1253   template<int shift>
1254   bool isExpImm() const {
1255     if (!isImm()) return false;
1256     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1257     if (!CE) return false;
1258 
1259     return isExpImmValue<shift>(CE->getValue());
1260   }
1261 
1262   template<int shift, int size>
1263   bool isInvertedExpImm() const {
1264     if (!isImm()) return false;
1265     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1266     if (!CE) return false;
1267 
1268     uint64_t OriginalValue = CE->getValue();
1269     uint64_t InvertedValue = OriginalValue ^ (((uint64_t)1 << size) - 1);
1270     return isExpImmValue<shift>(InvertedValue);
1271   }
1272 
1273   bool isPKHLSLImm() const {
1274     return isImmediate<0, 32>();
1275   }
1276 
1277   bool isPKHASRImm() const {
1278     return isImmediate<0, 33>();
1279   }
1280 
1281   bool isAdrLabel() const {
1282     // If we have an immediate that's not a constant, treat it as a label
1283     // reference needing a fixup.
1284     if (isImm() && !isa<MCConstantExpr>(getImm()))
1285       return true;
1286 
1287     // If it is a constant, it must fit into a modified immediate encoding.
1288     if (!isImm()) return false;
1289     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1290     if (!CE) return false;
1291     int64_t Value = CE->getValue();
1292     return (ARM_AM::getSOImmVal(Value) != -1 ||
1293             ARM_AM::getSOImmVal(-Value) != -1);
1294   }
1295 
1296   bool isT2SOImm() const {
1297     // If we have an immediate that's not a constant, treat it as an expression
1298     // needing a fixup.
1299     if (isImm() && !isa<MCConstantExpr>(getImm())) {
1300       // We want to avoid matching :upper16: and :lower16: as we want these
1301       // expressions to match in isImm0_65535Expr()
1302       const ARMMCExpr *ARM16Expr = dyn_cast<ARMMCExpr>(getImm());
1303       return (!ARM16Expr || (ARM16Expr->getKind() != ARMMCExpr::VK_ARM_HI16 &&
1304                              ARM16Expr->getKind() != ARMMCExpr::VK_ARM_LO16));
1305     }
1306     if (!isImm()) return false;
1307     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1308     if (!CE) return false;
1309     int64_t Value = CE->getValue();
1310     return ARM_AM::getT2SOImmVal(Value) != -1;
1311   }
1312 
1313   bool isT2SOImmNot() const {
1314     if (!isImm()) return false;
1315     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1316     if (!CE) return false;
1317     int64_t Value = CE->getValue();
1318     return ARM_AM::getT2SOImmVal(Value) == -1 &&
1319       ARM_AM::getT2SOImmVal(~Value) != -1;
1320   }
1321 
1322   bool isT2SOImmNeg() const {
1323     if (!isImm()) return false;
1324     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1325     if (!CE) return false;
1326     int64_t Value = CE->getValue();
1327     // Only use this when not representable as a plain so_imm.
1328     return ARM_AM::getT2SOImmVal(Value) == -1 &&
1329       ARM_AM::getT2SOImmVal(-Value) != -1;
1330   }
1331 
1332   bool isSetEndImm() const {
1333     if (!isImm()) return false;
1334     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1335     if (!CE) return false;
1336     int64_t Value = CE->getValue();
1337     return Value == 1 || Value == 0;
1338   }
1339 
1340   bool isReg() const override { return Kind == k_Register; }
1341   bool isRegList() const { return Kind == k_RegisterList; }
1342   bool isRegListWithAPSR() const {
1343     return Kind == k_RegisterListWithAPSR || Kind == k_RegisterList;
1344   }
1345   bool isDPRRegList() const { return Kind == k_DPRRegisterList; }
1346   bool isSPRRegList() const { return Kind == k_SPRRegisterList; }
1347   bool isFPSRegListWithVPR() const { return Kind == k_FPSRegisterListWithVPR; }
1348   bool isFPDRegListWithVPR() const { return Kind == k_FPDRegisterListWithVPR; }
1349   bool isToken() const override { return Kind == k_Token; }
1350   bool isMemBarrierOpt() const { return Kind == k_MemBarrierOpt; }
1351   bool isInstSyncBarrierOpt() const { return Kind == k_InstSyncBarrierOpt; }
1352   bool isTraceSyncBarrierOpt() const { return Kind == k_TraceSyncBarrierOpt; }
1353   bool isMem() const override {
1354       return isGPRMem() || isMVEMem();
1355   }
1356   bool isMVEMem() const {
1357     if (Kind != k_Memory)
1358       return false;
1359     if (Memory.BaseRegNum &&
1360         !ARMMCRegisterClasses[ARM::GPRRegClassID].contains(Memory.BaseRegNum) &&
1361         !ARMMCRegisterClasses[ARM::MQPRRegClassID].contains(Memory.BaseRegNum))
1362       return false;
1363     if (Memory.OffsetRegNum &&
1364         !ARMMCRegisterClasses[ARM::MQPRRegClassID].contains(
1365             Memory.OffsetRegNum))
1366       return false;
1367     return true;
1368   }
1369   bool isGPRMem() const {
1370     if (Kind != k_Memory)
1371       return false;
1372     if (Memory.BaseRegNum &&
1373         !ARMMCRegisterClasses[ARM::GPRRegClassID].contains(Memory.BaseRegNum))
1374       return false;
1375     if (Memory.OffsetRegNum &&
1376         !ARMMCRegisterClasses[ARM::GPRRegClassID].contains(Memory.OffsetRegNum))
1377       return false;
1378     return true;
1379   }
1380   bool isShifterImm() const { return Kind == k_ShifterImmediate; }
1381   bool isRegShiftedReg() const {
1382     return Kind == k_ShiftedRegister &&
1383            ARMMCRegisterClasses[ARM::GPRRegClassID].contains(
1384                RegShiftedReg.SrcReg) &&
1385            ARMMCRegisterClasses[ARM::GPRRegClassID].contains(
1386                RegShiftedReg.ShiftReg);
1387   }
1388   bool isRegShiftedImm() const {
1389     return Kind == k_ShiftedImmediate &&
1390            ARMMCRegisterClasses[ARM::GPRRegClassID].contains(
1391                RegShiftedImm.SrcReg);
1392   }
1393   bool isRotImm() const { return Kind == k_RotateImmediate; }
1394 
1395   template<unsigned Min, unsigned Max>
1396   bool isPowerTwoInRange() const {
1397     if (!isImm()) return false;
1398     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1399     if (!CE) return false;
1400     int64_t Value = CE->getValue();
1401     return Value > 0 && countPopulation((uint64_t)Value) == 1 &&
1402            Value >= Min && Value <= Max;
1403   }
1404   bool isModImm() const { return Kind == k_ModifiedImmediate; }
1405 
1406   bool isModImmNot() const {
1407     if (!isImm()) return false;
1408     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1409     if (!CE) return false;
1410     int64_t Value = CE->getValue();
1411     return ARM_AM::getSOImmVal(~Value) != -1;
1412   }
1413 
1414   bool isModImmNeg() const {
1415     if (!isImm()) return false;
1416     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1417     if (!CE) return false;
1418     int64_t Value = CE->getValue();
1419     return ARM_AM::getSOImmVal(Value) == -1 &&
1420       ARM_AM::getSOImmVal(-Value) != -1;
1421   }
1422 
1423   bool isThumbModImmNeg1_7() const {
1424     if (!isImm()) return false;
1425     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1426     if (!CE) return false;
1427     int32_t Value = -(int32_t)CE->getValue();
1428     return 0 < Value && Value < 8;
1429   }
1430 
1431   bool isThumbModImmNeg8_255() const {
1432     if (!isImm()) return false;
1433     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1434     if (!CE) return false;
1435     int32_t Value = -(int32_t)CE->getValue();
1436     return 7 < Value && Value < 256;
1437   }
1438 
1439   bool isConstantPoolImm() const { return Kind == k_ConstantPoolImmediate; }
1440   bool isBitfield() const { return Kind == k_BitfieldDescriptor; }
1441   bool isPostIdxRegShifted() const {
1442     return Kind == k_PostIndexRegister &&
1443            ARMMCRegisterClasses[ARM::GPRRegClassID].contains(PostIdxReg.RegNum);
1444   }
1445   bool isPostIdxReg() const {
1446     return isPostIdxRegShifted() && PostIdxReg.ShiftTy == ARM_AM::no_shift;
1447   }
1448   bool isMemNoOffset(bool alignOK = false, unsigned Alignment = 0) const {
1449     if (!isGPRMem())
1450       return false;
1451     // No offset of any kind.
1452     return Memory.OffsetRegNum == 0 && Memory.OffsetImm == nullptr &&
1453      (alignOK || Memory.Alignment == Alignment);
1454   }
1455   bool isMemNoOffsetT2(bool alignOK = false, unsigned Alignment = 0) const {
1456     if (!isGPRMem())
1457       return false;
1458 
1459     if (!ARMMCRegisterClasses[ARM::GPRnopcRegClassID].contains(
1460             Memory.BaseRegNum))
1461       return false;
1462 
1463     // No offset of any kind.
1464     return Memory.OffsetRegNum == 0 && Memory.OffsetImm == nullptr &&
1465      (alignOK || Memory.Alignment == Alignment);
1466   }
1467   bool isMemNoOffsetT2NoSp(bool alignOK = false, unsigned Alignment = 0) const {
1468     if (!isGPRMem())
1469       return false;
1470 
1471     if (!ARMMCRegisterClasses[ARM::rGPRRegClassID].contains(
1472             Memory.BaseRegNum))
1473       return false;
1474 
1475     // No offset of any kind.
1476     return Memory.OffsetRegNum == 0 && Memory.OffsetImm == nullptr &&
1477      (alignOK || Memory.Alignment == Alignment);
1478   }
1479   bool isMemNoOffsetT(bool alignOK = false, unsigned Alignment = 0) const {
1480     if (!isGPRMem())
1481       return false;
1482 
1483     if (!ARMMCRegisterClasses[ARM::tGPRRegClassID].contains(
1484             Memory.BaseRegNum))
1485       return false;
1486 
1487     // No offset of any kind.
1488     return Memory.OffsetRegNum == 0 && Memory.OffsetImm == nullptr &&
1489      (alignOK || Memory.Alignment == Alignment);
1490   }
1491   bool isMemPCRelImm12() const {
1492     if (!isGPRMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
1493       return false;
1494     // Base register must be PC.
1495     if (Memory.BaseRegNum != ARM::PC)
1496       return false;
1497     // Immediate offset in range [-4095, 4095].
1498     if (!Memory.OffsetImm) return true;
1499     int64_t Val = Memory.OffsetImm->getValue();
1500     return (Val > -4096 && Val < 4096) ||
1501            (Val == std::numeric_limits<int32_t>::min());
1502   }
1503 
1504   bool isAlignedMemory() const {
1505     return isMemNoOffset(true);
1506   }
1507 
1508   bool isAlignedMemoryNone() const {
1509     return isMemNoOffset(false, 0);
1510   }
1511 
1512   bool isDupAlignedMemoryNone() const {
1513     return isMemNoOffset(false, 0);
1514   }
1515 
1516   bool isAlignedMemory16() const {
1517     if (isMemNoOffset(false, 2)) // alignment in bytes for 16-bits is 2.
1518       return true;
1519     return isMemNoOffset(false, 0);
1520   }
1521 
1522   bool isDupAlignedMemory16() const {
1523     if (isMemNoOffset(false, 2)) // alignment in bytes for 16-bits is 2.
1524       return true;
1525     return isMemNoOffset(false, 0);
1526   }
1527 
1528   bool isAlignedMemory32() const {
1529     if (isMemNoOffset(false, 4)) // alignment in bytes for 32-bits is 4.
1530       return true;
1531     return isMemNoOffset(false, 0);
1532   }
1533 
1534   bool isDupAlignedMemory32() const {
1535     if (isMemNoOffset(false, 4)) // alignment in bytes for 32-bits is 4.
1536       return true;
1537     return isMemNoOffset(false, 0);
1538   }
1539 
1540   bool isAlignedMemory64() const {
1541     if (isMemNoOffset(false, 8)) // alignment in bytes for 64-bits is 8.
1542       return true;
1543     return isMemNoOffset(false, 0);
1544   }
1545 
1546   bool isDupAlignedMemory64() const {
1547     if (isMemNoOffset(false, 8)) // alignment in bytes for 64-bits is 8.
1548       return true;
1549     return isMemNoOffset(false, 0);
1550   }
1551 
1552   bool isAlignedMemory64or128() const {
1553     if (isMemNoOffset(false, 8)) // alignment in bytes for 64-bits is 8.
1554       return true;
1555     if (isMemNoOffset(false, 16)) // alignment in bytes for 128-bits is 16.
1556       return true;
1557     return isMemNoOffset(false, 0);
1558   }
1559 
1560   bool isDupAlignedMemory64or128() const {
1561     if (isMemNoOffset(false, 8)) // alignment in bytes for 64-bits is 8.
1562       return true;
1563     if (isMemNoOffset(false, 16)) // alignment in bytes for 128-bits is 16.
1564       return true;
1565     return isMemNoOffset(false, 0);
1566   }
1567 
1568   bool isAlignedMemory64or128or256() const {
1569     if (isMemNoOffset(false, 8)) // alignment in bytes for 64-bits is 8.
1570       return true;
1571     if (isMemNoOffset(false, 16)) // alignment in bytes for 128-bits is 16.
1572       return true;
1573     if (isMemNoOffset(false, 32)) // alignment in bytes for 256-bits is 32.
1574       return true;
1575     return isMemNoOffset(false, 0);
1576   }
1577 
1578   bool isAddrMode2() const {
1579     if (!isGPRMem() || Memory.Alignment != 0) return false;
1580     // Check for register offset.
1581     if (Memory.OffsetRegNum) return true;
1582     // Immediate offset in range [-4095, 4095].
1583     if (!Memory.OffsetImm) return true;
1584     int64_t Val = Memory.OffsetImm->getValue();
1585     return Val > -4096 && Val < 4096;
1586   }
1587 
1588   bool isAM2OffsetImm() const {
1589     if (!isImm()) return false;
1590     // Immediate offset in range [-4095, 4095].
1591     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1592     if (!CE) return false;
1593     int64_t Val = CE->getValue();
1594     return (Val == std::numeric_limits<int32_t>::min()) ||
1595            (Val > -4096 && Val < 4096);
1596   }
1597 
1598   bool isAddrMode3() const {
1599     // If we have an immediate that's not a constant, treat it as a label
1600     // reference needing a fixup. If it is a constant, it's something else
1601     // and we reject it.
1602     if (isImm() && !isa<MCConstantExpr>(getImm()))
1603       return true;
1604     if (!isGPRMem() || Memory.Alignment != 0) return false;
1605     // No shifts are legal for AM3.
1606     if (Memory.ShiftType != ARM_AM::no_shift) return false;
1607     // Check for register offset.
1608     if (Memory.OffsetRegNum) return true;
1609     // Immediate offset in range [-255, 255].
1610     if (!Memory.OffsetImm) return true;
1611     int64_t Val = Memory.OffsetImm->getValue();
1612     // The #-0 offset is encoded as std::numeric_limits<int32_t>::min(), and we
1613     // have to check for this too.
1614     return (Val > -256 && Val < 256) ||
1615            Val == std::numeric_limits<int32_t>::min();
1616   }
1617 
1618   bool isAM3Offset() const {
1619     if (isPostIdxReg())
1620       return true;
1621     if (!isImm())
1622       return false;
1623     // Immediate offset in range [-255, 255].
1624     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1625     if (!CE) return false;
1626     int64_t Val = CE->getValue();
1627     // Special case, #-0 is std::numeric_limits<int32_t>::min().
1628     return (Val > -256 && Val < 256) ||
1629            Val == std::numeric_limits<int32_t>::min();
1630   }
1631 
1632   bool isAddrMode5() const {
1633     // If we have an immediate that's not a constant, treat it as a label
1634     // reference needing a fixup. If it is a constant, it's something else
1635     // and we reject it.
1636     if (isImm() && !isa<MCConstantExpr>(getImm()))
1637       return true;
1638     if (!isGPRMem() || Memory.Alignment != 0) return false;
1639     // Check for register offset.
1640     if (Memory.OffsetRegNum) return false;
1641     // Immediate offset in range [-1020, 1020] and a multiple of 4.
1642     if (!Memory.OffsetImm) return true;
1643     int64_t Val = Memory.OffsetImm->getValue();
1644     return (Val >= -1020 && Val <= 1020 && ((Val & 3) == 0)) ||
1645       Val == std::numeric_limits<int32_t>::min();
1646   }
1647 
1648   bool isAddrMode5FP16() const {
1649     // If we have an immediate that's not a constant, treat it as a label
1650     // reference needing a fixup. If it is a constant, it's something else
1651     // and we reject it.
1652     if (isImm() && !isa<MCConstantExpr>(getImm()))
1653       return true;
1654     if (!isGPRMem() || Memory.Alignment != 0) return false;
1655     // Check for register offset.
1656     if (Memory.OffsetRegNum) return false;
1657     // Immediate offset in range [-510, 510] and a multiple of 2.
1658     if (!Memory.OffsetImm) return true;
1659     int64_t Val = Memory.OffsetImm->getValue();
1660     return (Val >= -510 && Val <= 510 && ((Val & 1) == 0)) ||
1661            Val == std::numeric_limits<int32_t>::min();
1662   }
1663 
1664   bool isMemTBB() const {
1665     if (!isGPRMem() || !Memory.OffsetRegNum || Memory.isNegative ||
1666         Memory.ShiftType != ARM_AM::no_shift || Memory.Alignment != 0)
1667       return false;
1668     return true;
1669   }
1670 
1671   bool isMemTBH() const {
1672     if (!isGPRMem() || !Memory.OffsetRegNum || Memory.isNegative ||
1673         Memory.ShiftType != ARM_AM::lsl || Memory.ShiftImm != 1 ||
1674         Memory.Alignment != 0 )
1675       return false;
1676     return true;
1677   }
1678 
1679   bool isMemRegOffset() const {
1680     if (!isGPRMem() || !Memory.OffsetRegNum || Memory.Alignment != 0)
1681       return false;
1682     return true;
1683   }
1684 
1685   bool isT2MemRegOffset() const {
1686     if (!isGPRMem() || !Memory.OffsetRegNum || Memory.isNegative ||
1687         Memory.Alignment != 0 || Memory.BaseRegNum == ARM::PC)
1688       return false;
1689     // Only lsl #{0, 1, 2, 3} allowed.
1690     if (Memory.ShiftType == ARM_AM::no_shift)
1691       return true;
1692     if (Memory.ShiftType != ARM_AM::lsl || Memory.ShiftImm > 3)
1693       return false;
1694     return true;
1695   }
1696 
1697   bool isMemThumbRR() const {
1698     // Thumb reg+reg addressing is simple. Just two registers, a base and
1699     // an offset. No shifts, negations or any other complicating factors.
1700     if (!isGPRMem() || !Memory.OffsetRegNum || Memory.isNegative ||
1701         Memory.ShiftType != ARM_AM::no_shift || Memory.Alignment != 0)
1702       return false;
1703     return isARMLowRegister(Memory.BaseRegNum) &&
1704       (!Memory.OffsetRegNum || isARMLowRegister(Memory.OffsetRegNum));
1705   }
1706 
1707   bool isMemThumbRIs4() const {
1708     if (!isGPRMem() || Memory.OffsetRegNum != 0 ||
1709         !isARMLowRegister(Memory.BaseRegNum) || Memory.Alignment != 0)
1710       return false;
1711     // Immediate offset, multiple of 4 in range [0, 124].
1712     if (!Memory.OffsetImm) return true;
1713     int64_t Val = Memory.OffsetImm->getValue();
1714     return Val >= 0 && Val <= 124 && (Val % 4) == 0;
1715   }
1716 
1717   bool isMemThumbRIs2() const {
1718     if (!isGPRMem() || Memory.OffsetRegNum != 0 ||
1719         !isARMLowRegister(Memory.BaseRegNum) || Memory.Alignment != 0)
1720       return false;
1721     // Immediate offset, multiple of 4 in range [0, 62].
1722     if (!Memory.OffsetImm) return true;
1723     int64_t Val = Memory.OffsetImm->getValue();
1724     return Val >= 0 && Val <= 62 && (Val % 2) == 0;
1725   }
1726 
1727   bool isMemThumbRIs1() const {
1728     if (!isGPRMem() || Memory.OffsetRegNum != 0 ||
1729         !isARMLowRegister(Memory.BaseRegNum) || Memory.Alignment != 0)
1730       return false;
1731     // Immediate offset in range [0, 31].
1732     if (!Memory.OffsetImm) return true;
1733     int64_t Val = Memory.OffsetImm->getValue();
1734     return Val >= 0 && Val <= 31;
1735   }
1736 
1737   bool isMemThumbSPI() const {
1738     if (!isGPRMem() || Memory.OffsetRegNum != 0 ||
1739         Memory.BaseRegNum != ARM::SP || Memory.Alignment != 0)
1740       return false;
1741     // Immediate offset, multiple of 4 in range [0, 1020].
1742     if (!Memory.OffsetImm) return true;
1743     int64_t Val = Memory.OffsetImm->getValue();
1744     return Val >= 0 && Val <= 1020 && (Val % 4) == 0;
1745   }
1746 
1747   bool isMemImm8s4Offset() const {
1748     // If we have an immediate that's not a constant, treat it as a label
1749     // reference needing a fixup. If it is a constant, it's something else
1750     // and we reject it.
1751     if (isImm() && !isa<MCConstantExpr>(getImm()))
1752       return true;
1753     if (!isGPRMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
1754       return false;
1755     // Immediate offset a multiple of 4 in range [-1020, 1020].
1756     if (!Memory.OffsetImm) return true;
1757     int64_t Val = Memory.OffsetImm->getValue();
1758     // Special case, #-0 is std::numeric_limits<int32_t>::min().
1759     return (Val >= -1020 && Val <= 1020 && (Val & 3) == 0) ||
1760            Val == std::numeric_limits<int32_t>::min();
1761   }
1762   bool isMemImm7s4Offset() const {
1763     // If we have an immediate that's not a constant, treat it as a label
1764     // reference needing a fixup. If it is a constant, it's something else
1765     // and we reject it.
1766     if (isImm() && !isa<MCConstantExpr>(getImm()))
1767       return true;
1768     if (!isGPRMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0 ||
1769         !ARMMCRegisterClasses[ARM::GPRnopcRegClassID].contains(
1770             Memory.BaseRegNum))
1771       return false;
1772     // Immediate offset a multiple of 4 in range [-508, 508].
1773     if (!Memory.OffsetImm) return true;
1774     int64_t Val = Memory.OffsetImm->getValue();
1775     // Special case, #-0 is INT32_MIN.
1776     return (Val >= -508 && Val <= 508 && (Val & 3) == 0) || Val == INT32_MIN;
1777   }
1778   bool isMemImm0_1020s4Offset() const {
1779     if (!isGPRMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
1780       return false;
1781     // Immediate offset a multiple of 4 in range [0, 1020].
1782     if (!Memory.OffsetImm) return true;
1783     int64_t Val = Memory.OffsetImm->getValue();
1784     return Val >= 0 && Val <= 1020 && (Val & 3) == 0;
1785   }
1786 
1787   bool isMemImm8Offset() const {
1788     if (!isGPRMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
1789       return false;
1790     // Base reg of PC isn't allowed for these encodings.
1791     if (Memory.BaseRegNum == ARM::PC) return false;
1792     // Immediate offset in range [-255, 255].
1793     if (!Memory.OffsetImm) return true;
1794     int64_t Val = Memory.OffsetImm->getValue();
1795     return (Val == std::numeric_limits<int32_t>::min()) ||
1796            (Val > -256 && Val < 256);
1797   }
1798 
1799   template<unsigned Bits, unsigned RegClassID>
1800   bool isMemImm7ShiftedOffset() const {
1801     if (!isGPRMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0 ||
1802         !ARMMCRegisterClasses[RegClassID].contains(Memory.BaseRegNum))
1803       return false;
1804 
1805     // Expect an immediate offset equal to an element of the range
1806     // [-127, 127], shifted left by Bits.
1807 
1808     if (!Memory.OffsetImm) return true;
1809     int64_t Val = Memory.OffsetImm->getValue();
1810 
1811     // INT32_MIN is a special-case value (indicating the encoding with
1812     // zero offset and the subtract bit set)
1813     if (Val == INT32_MIN)
1814       return true;
1815 
1816     unsigned Divisor = 1U << Bits;
1817 
1818     // Check that the low bits are zero
1819     if (Val % Divisor != 0)
1820       return false;
1821 
1822     // Check that the remaining offset is within range.
1823     Val /= Divisor;
1824     return (Val >= -127 && Val <= 127);
1825   }
1826 
1827   template <int shift> bool isMemRegRQOffset() const {
1828     if (!isMVEMem() || Memory.OffsetImm != 0 || Memory.Alignment != 0)
1829       return false;
1830 
1831     if (!ARMMCRegisterClasses[ARM::GPRnopcRegClassID].contains(
1832             Memory.BaseRegNum))
1833       return false;
1834     if (!ARMMCRegisterClasses[ARM::MQPRRegClassID].contains(
1835             Memory.OffsetRegNum))
1836       return false;
1837 
1838     if (shift == 0 && Memory.ShiftType != ARM_AM::no_shift)
1839       return false;
1840 
1841     if (shift > 0 &&
1842         (Memory.ShiftType != ARM_AM::uxtw || Memory.ShiftImm != shift))
1843       return false;
1844 
1845     return true;
1846   }
1847 
1848   template <int shift> bool isMemRegQOffset() const {
1849     if (!isMVEMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
1850       return false;
1851 
1852     if (!ARMMCRegisterClasses[ARM::MQPRRegClassID].contains(
1853             Memory.BaseRegNum))
1854       return false;
1855 
1856     if(!Memory.OffsetImm) return true;
1857     static_assert(shift < 56,
1858                   "Such that we dont shift by a value higher than 62");
1859     int64_t Val = Memory.OffsetImm->getValue();
1860 
1861     // The value must be a multiple of (1 << shift)
1862     if ((Val & ((1U << shift) - 1)) != 0)
1863       return false;
1864 
1865     // And be in the right range, depending on the amount that it is shifted
1866     // by.  Shift 0, is equal to 7 unsigned bits, the sign bit is set
1867     // separately.
1868     int64_t Range = (1U << (7+shift)) - 1;
1869     return (Val == INT32_MIN) || (Val > -Range && Val < Range);
1870   }
1871 
1872   bool isMemPosImm8Offset() const {
1873     if (!isGPRMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
1874       return false;
1875     // Immediate offset in range [0, 255].
1876     if (!Memory.OffsetImm) return true;
1877     int64_t Val = Memory.OffsetImm->getValue();
1878     return Val >= 0 && Val < 256;
1879   }
1880 
1881   bool isMemNegImm8Offset() const {
1882     if (!isGPRMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
1883       return false;
1884     // Base reg of PC isn't allowed for these encodings.
1885     if (Memory.BaseRegNum == ARM::PC) return false;
1886     // Immediate offset in range [-255, -1].
1887     if (!Memory.OffsetImm) return false;
1888     int64_t Val = Memory.OffsetImm->getValue();
1889     return (Val == std::numeric_limits<int32_t>::min()) ||
1890            (Val > -256 && Val < 0);
1891   }
1892 
1893   bool isMemUImm12Offset() const {
1894     if (!isGPRMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
1895       return false;
1896     // Immediate offset in range [0, 4095].
1897     if (!Memory.OffsetImm) return true;
1898     int64_t Val = Memory.OffsetImm->getValue();
1899     return (Val >= 0 && Val < 4096);
1900   }
1901 
1902   bool isMemImm12Offset() const {
1903     // If we have an immediate that's not a constant, treat it as a label
1904     // reference needing a fixup. If it is a constant, it's something else
1905     // and we reject it.
1906 
1907     if (isImm() && !isa<MCConstantExpr>(getImm()))
1908       return true;
1909 
1910     if (!isGPRMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
1911       return false;
1912     // Immediate offset in range [-4095, 4095].
1913     if (!Memory.OffsetImm) return true;
1914     int64_t Val = Memory.OffsetImm->getValue();
1915     return (Val > -4096 && Val < 4096) ||
1916            (Val == std::numeric_limits<int32_t>::min());
1917   }
1918 
1919   bool isConstPoolAsmImm() const {
1920     // Delay processing of Constant Pool Immediate, this will turn into
1921     // a constant. Match no other operand
1922     return (isConstantPoolImm());
1923   }
1924 
1925   bool isPostIdxImm8() const {
1926     if (!isImm()) return false;
1927     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1928     if (!CE) return false;
1929     int64_t Val = CE->getValue();
1930     return (Val > -256 && Val < 256) ||
1931            (Val == std::numeric_limits<int32_t>::min());
1932   }
1933 
1934   bool isPostIdxImm8s4() const {
1935     if (!isImm()) return false;
1936     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
1937     if (!CE) return false;
1938     int64_t Val = CE->getValue();
1939     return ((Val & 3) == 0 && Val >= -1020 && Val <= 1020) ||
1940            (Val == std::numeric_limits<int32_t>::min());
1941   }
1942 
1943   bool isMSRMask() const { return Kind == k_MSRMask; }
1944   bool isBankedReg() const { return Kind == k_BankedReg; }
1945   bool isProcIFlags() const { return Kind == k_ProcIFlags; }
1946 
1947   // NEON operands.
1948   bool isSingleSpacedVectorList() const {
1949     return Kind == k_VectorList && !VectorList.isDoubleSpaced;
1950   }
1951 
1952   bool isDoubleSpacedVectorList() const {
1953     return Kind == k_VectorList && VectorList.isDoubleSpaced;
1954   }
1955 
1956   bool isVecListOneD() const {
1957     if (!isSingleSpacedVectorList()) return false;
1958     return VectorList.Count == 1;
1959   }
1960 
1961   bool isVecListTwoMQ() const {
1962     return isSingleSpacedVectorList() && VectorList.Count == 2 &&
1963            ARMMCRegisterClasses[ARM::MQPRRegClassID].contains(
1964                VectorList.RegNum);
1965   }
1966 
1967   bool isVecListDPair() const {
1968     if (!isSingleSpacedVectorList()) return false;
1969     return (ARMMCRegisterClasses[ARM::DPairRegClassID]
1970               .contains(VectorList.RegNum));
1971   }
1972 
1973   bool isVecListThreeD() const {
1974     if (!isSingleSpacedVectorList()) return false;
1975     return VectorList.Count == 3;
1976   }
1977 
1978   bool isVecListFourD() const {
1979     if (!isSingleSpacedVectorList()) return false;
1980     return VectorList.Count == 4;
1981   }
1982 
1983   bool isVecListDPairSpaced() const {
1984     if (Kind != k_VectorList) return false;
1985     if (isSingleSpacedVectorList()) return false;
1986     return (ARMMCRegisterClasses[ARM::DPairSpcRegClassID]
1987               .contains(VectorList.RegNum));
1988   }
1989 
1990   bool isVecListThreeQ() const {
1991     if (!isDoubleSpacedVectorList()) return false;
1992     return VectorList.Count == 3;
1993   }
1994 
1995   bool isVecListFourQ() const {
1996     if (!isDoubleSpacedVectorList()) return false;
1997     return VectorList.Count == 4;
1998   }
1999 
2000   bool isVecListFourMQ() const {
2001     return isSingleSpacedVectorList() && VectorList.Count == 4 &&
2002            ARMMCRegisterClasses[ARM::MQPRRegClassID].contains(
2003                VectorList.RegNum);
2004   }
2005 
2006   bool isSingleSpacedVectorAllLanes() const {
2007     return Kind == k_VectorListAllLanes && !VectorList.isDoubleSpaced;
2008   }
2009 
2010   bool isDoubleSpacedVectorAllLanes() const {
2011     return Kind == k_VectorListAllLanes && VectorList.isDoubleSpaced;
2012   }
2013 
2014   bool isVecListOneDAllLanes() const {
2015     if (!isSingleSpacedVectorAllLanes()) return false;
2016     return VectorList.Count == 1;
2017   }
2018 
2019   bool isVecListDPairAllLanes() const {
2020     if (!isSingleSpacedVectorAllLanes()) return false;
2021     return (ARMMCRegisterClasses[ARM::DPairRegClassID]
2022               .contains(VectorList.RegNum));
2023   }
2024 
2025   bool isVecListDPairSpacedAllLanes() const {
2026     if (!isDoubleSpacedVectorAllLanes()) return false;
2027     return VectorList.Count == 2;
2028   }
2029 
2030   bool isVecListThreeDAllLanes() const {
2031     if (!isSingleSpacedVectorAllLanes()) return false;
2032     return VectorList.Count == 3;
2033   }
2034 
2035   bool isVecListThreeQAllLanes() const {
2036     if (!isDoubleSpacedVectorAllLanes()) return false;
2037     return VectorList.Count == 3;
2038   }
2039 
2040   bool isVecListFourDAllLanes() const {
2041     if (!isSingleSpacedVectorAllLanes()) return false;
2042     return VectorList.Count == 4;
2043   }
2044 
2045   bool isVecListFourQAllLanes() const {
2046     if (!isDoubleSpacedVectorAllLanes()) return false;
2047     return VectorList.Count == 4;
2048   }
2049 
2050   bool isSingleSpacedVectorIndexed() const {
2051     return Kind == k_VectorListIndexed && !VectorList.isDoubleSpaced;
2052   }
2053 
2054   bool isDoubleSpacedVectorIndexed() const {
2055     return Kind == k_VectorListIndexed && VectorList.isDoubleSpaced;
2056   }
2057 
2058   bool isVecListOneDByteIndexed() const {
2059     if (!isSingleSpacedVectorIndexed()) return false;
2060     return VectorList.Count == 1 && VectorList.LaneIndex <= 7;
2061   }
2062 
2063   bool isVecListOneDHWordIndexed() const {
2064     if (!isSingleSpacedVectorIndexed()) return false;
2065     return VectorList.Count == 1 && VectorList.LaneIndex <= 3;
2066   }
2067 
2068   bool isVecListOneDWordIndexed() const {
2069     if (!isSingleSpacedVectorIndexed()) return false;
2070     return VectorList.Count == 1 && VectorList.LaneIndex <= 1;
2071   }
2072 
2073   bool isVecListTwoDByteIndexed() const {
2074     if (!isSingleSpacedVectorIndexed()) return false;
2075     return VectorList.Count == 2 && VectorList.LaneIndex <= 7;
2076   }
2077 
2078   bool isVecListTwoDHWordIndexed() const {
2079     if (!isSingleSpacedVectorIndexed()) return false;
2080     return VectorList.Count == 2 && VectorList.LaneIndex <= 3;
2081   }
2082 
2083   bool isVecListTwoQWordIndexed() const {
2084     if (!isDoubleSpacedVectorIndexed()) return false;
2085     return VectorList.Count == 2 && VectorList.LaneIndex <= 1;
2086   }
2087 
2088   bool isVecListTwoQHWordIndexed() const {
2089     if (!isDoubleSpacedVectorIndexed()) return false;
2090     return VectorList.Count == 2 && VectorList.LaneIndex <= 3;
2091   }
2092 
2093   bool isVecListTwoDWordIndexed() const {
2094     if (!isSingleSpacedVectorIndexed()) return false;
2095     return VectorList.Count == 2 && VectorList.LaneIndex <= 1;
2096   }
2097 
2098   bool isVecListThreeDByteIndexed() const {
2099     if (!isSingleSpacedVectorIndexed()) return false;
2100     return VectorList.Count == 3 && VectorList.LaneIndex <= 7;
2101   }
2102 
2103   bool isVecListThreeDHWordIndexed() const {
2104     if (!isSingleSpacedVectorIndexed()) return false;
2105     return VectorList.Count == 3 && VectorList.LaneIndex <= 3;
2106   }
2107 
2108   bool isVecListThreeQWordIndexed() const {
2109     if (!isDoubleSpacedVectorIndexed()) return false;
2110     return VectorList.Count == 3 && VectorList.LaneIndex <= 1;
2111   }
2112 
2113   bool isVecListThreeQHWordIndexed() const {
2114     if (!isDoubleSpacedVectorIndexed()) return false;
2115     return VectorList.Count == 3 && VectorList.LaneIndex <= 3;
2116   }
2117 
2118   bool isVecListThreeDWordIndexed() const {
2119     if (!isSingleSpacedVectorIndexed()) return false;
2120     return VectorList.Count == 3 && VectorList.LaneIndex <= 1;
2121   }
2122 
2123   bool isVecListFourDByteIndexed() const {
2124     if (!isSingleSpacedVectorIndexed()) return false;
2125     return VectorList.Count == 4 && VectorList.LaneIndex <= 7;
2126   }
2127 
2128   bool isVecListFourDHWordIndexed() const {
2129     if (!isSingleSpacedVectorIndexed()) return false;
2130     return VectorList.Count == 4 && VectorList.LaneIndex <= 3;
2131   }
2132 
2133   bool isVecListFourQWordIndexed() const {
2134     if (!isDoubleSpacedVectorIndexed()) return false;
2135     return VectorList.Count == 4 && VectorList.LaneIndex <= 1;
2136   }
2137 
2138   bool isVecListFourQHWordIndexed() const {
2139     if (!isDoubleSpacedVectorIndexed()) return false;
2140     return VectorList.Count == 4 && VectorList.LaneIndex <= 3;
2141   }
2142 
2143   bool isVecListFourDWordIndexed() const {
2144     if (!isSingleSpacedVectorIndexed()) return false;
2145     return VectorList.Count == 4 && VectorList.LaneIndex <= 1;
2146   }
2147 
2148   bool isVectorIndex() const { return Kind == k_VectorIndex; }
2149 
2150   template <unsigned NumLanes>
2151   bool isVectorIndexInRange() const {
2152     if (Kind != k_VectorIndex) return false;
2153     return VectorIndex.Val < NumLanes;
2154   }
2155 
2156   bool isVectorIndex8()  const { return isVectorIndexInRange<8>(); }
2157   bool isVectorIndex16() const { return isVectorIndexInRange<4>(); }
2158   bool isVectorIndex32() const { return isVectorIndexInRange<2>(); }
2159   bool isVectorIndex64() const { return isVectorIndexInRange<1>(); }
2160 
2161   template<int PermittedValue, int OtherPermittedValue>
2162   bool isMVEPairVectorIndex() const {
2163     if (Kind != k_VectorIndex) return false;
2164     return VectorIndex.Val == PermittedValue ||
2165            VectorIndex.Val == OtherPermittedValue;
2166   }
2167 
2168   bool isNEONi8splat() const {
2169     if (!isImm()) return false;
2170     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2171     // Must be a constant.
2172     if (!CE) return false;
2173     int64_t Value = CE->getValue();
2174     // i8 value splatted across 8 bytes. The immediate is just the 8 byte
2175     // value.
2176     return Value >= 0 && Value < 256;
2177   }
2178 
2179   bool isNEONi16splat() const {
2180     if (isNEONByteReplicate(2))
2181       return false; // Leave that for bytes replication and forbid by default.
2182     if (!isImm())
2183       return false;
2184     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2185     // Must be a constant.
2186     if (!CE) return false;
2187     unsigned Value = CE->getValue();
2188     return ARM_AM::isNEONi16splat(Value);
2189   }
2190 
2191   bool isNEONi16splatNot() const {
2192     if (!isImm())
2193       return false;
2194     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2195     // Must be a constant.
2196     if (!CE) return false;
2197     unsigned Value = CE->getValue();
2198     return ARM_AM::isNEONi16splat(~Value & 0xffff);
2199   }
2200 
2201   bool isNEONi32splat() const {
2202     if (isNEONByteReplicate(4))
2203       return false; // Leave that for bytes replication and forbid by default.
2204     if (!isImm())
2205       return false;
2206     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2207     // Must be a constant.
2208     if (!CE) return false;
2209     unsigned Value = CE->getValue();
2210     return ARM_AM::isNEONi32splat(Value);
2211   }
2212 
2213   bool isNEONi32splatNot() const {
2214     if (!isImm())
2215       return false;
2216     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2217     // Must be a constant.
2218     if (!CE) return false;
2219     unsigned Value = CE->getValue();
2220     return ARM_AM::isNEONi32splat(~Value);
2221   }
2222 
2223   static bool isValidNEONi32vmovImm(int64_t Value) {
2224     // i32 value with set bits only in one byte X000, 0X00, 00X0, or 000X,
2225     // for VMOV/VMVN only, 00Xf or 0Xff are also accepted.
2226     return ((Value & 0xffffffffffffff00) == 0) ||
2227            ((Value & 0xffffffffffff00ff) == 0) ||
2228            ((Value & 0xffffffffff00ffff) == 0) ||
2229            ((Value & 0xffffffff00ffffff) == 0) ||
2230            ((Value & 0xffffffffffff00ff) == 0xff) ||
2231            ((Value & 0xffffffffff00ffff) == 0xffff);
2232   }
2233 
2234   bool isNEONReplicate(unsigned Width, unsigned NumElems, bool Inv) const {
2235     assert((Width == 8 || Width == 16 || Width == 32) &&
2236            "Invalid element width");
2237     assert(NumElems * Width <= 64 && "Invalid result width");
2238 
2239     if (!isImm())
2240       return false;
2241     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2242     // Must be a constant.
2243     if (!CE)
2244       return false;
2245     int64_t Value = CE->getValue();
2246     if (!Value)
2247       return false; // Don't bother with zero.
2248     if (Inv)
2249       Value = ~Value;
2250 
2251     uint64_t Mask = (1ull << Width) - 1;
2252     uint64_t Elem = Value & Mask;
2253     if (Width == 16 && (Elem & 0x00ff) != 0 && (Elem & 0xff00) != 0)
2254       return false;
2255     if (Width == 32 && !isValidNEONi32vmovImm(Elem))
2256       return false;
2257 
2258     for (unsigned i = 1; i < NumElems; ++i) {
2259       Value >>= Width;
2260       if ((Value & Mask) != Elem)
2261         return false;
2262     }
2263     return true;
2264   }
2265 
2266   bool isNEONByteReplicate(unsigned NumBytes) const {
2267     return isNEONReplicate(8, NumBytes, false);
2268   }
2269 
2270   static void checkNeonReplicateArgs(unsigned FromW, unsigned ToW) {
2271     assert((FromW == 8 || FromW == 16 || FromW == 32) &&
2272            "Invalid source width");
2273     assert((ToW == 16 || ToW == 32 || ToW == 64) &&
2274            "Invalid destination width");
2275     assert(FromW < ToW && "ToW is not less than FromW");
2276   }
2277 
2278   template<unsigned FromW, unsigned ToW>
2279   bool isNEONmovReplicate() const {
2280     checkNeonReplicateArgs(FromW, ToW);
2281     if (ToW == 64 && isNEONi64splat())
2282       return false;
2283     return isNEONReplicate(FromW, ToW / FromW, false);
2284   }
2285 
2286   template<unsigned FromW, unsigned ToW>
2287   bool isNEONinvReplicate() const {
2288     checkNeonReplicateArgs(FromW, ToW);
2289     return isNEONReplicate(FromW, ToW / FromW, true);
2290   }
2291 
2292   bool isNEONi32vmov() const {
2293     if (isNEONByteReplicate(4))
2294       return false; // Let it to be classified as byte-replicate case.
2295     if (!isImm())
2296       return false;
2297     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2298     // Must be a constant.
2299     if (!CE)
2300       return false;
2301     return isValidNEONi32vmovImm(CE->getValue());
2302   }
2303 
2304   bool isNEONi32vmovNeg() const {
2305     if (!isImm()) return false;
2306     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2307     // Must be a constant.
2308     if (!CE) return false;
2309     return isValidNEONi32vmovImm(~CE->getValue());
2310   }
2311 
2312   bool isNEONi64splat() const {
2313     if (!isImm()) return false;
2314     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2315     // Must be a constant.
2316     if (!CE) return false;
2317     uint64_t Value = CE->getValue();
2318     // i64 value with each byte being either 0 or 0xff.
2319     for (unsigned i = 0; i < 8; ++i, Value >>= 8)
2320       if ((Value & 0xff) != 0 && (Value & 0xff) != 0xff) return false;
2321     return true;
2322   }
2323 
2324   template<int64_t Angle, int64_t Remainder>
2325   bool isComplexRotation() const {
2326     if (!isImm()) return false;
2327 
2328     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2329     if (!CE) return false;
2330     uint64_t Value = CE->getValue();
2331 
2332     return (Value % Angle == Remainder && Value <= 270);
2333   }
2334 
2335   bool isMVELongShift() const {
2336     if (!isImm()) return false;
2337     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2338     // Must be a constant.
2339     if (!CE) return false;
2340     uint64_t Value = CE->getValue();
2341     return Value >= 1 && Value <= 32;
2342   }
2343 
2344   bool isMveSaturateOp() const {
2345     if (!isImm()) return false;
2346     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2347     if (!CE) return false;
2348     uint64_t Value = CE->getValue();
2349     return Value == 48 || Value == 64;
2350   }
2351 
2352   bool isITCondCodeNoAL() const {
2353     if (!isITCondCode()) return false;
2354     ARMCC::CondCodes CC = getCondCode();
2355     return CC != ARMCC::AL;
2356   }
2357 
2358   bool isITCondCodeRestrictedI() const {
2359     if (!isITCondCode())
2360       return false;
2361     ARMCC::CondCodes CC = getCondCode();
2362     return CC == ARMCC::EQ || CC == ARMCC::NE;
2363   }
2364 
2365   bool isITCondCodeRestrictedS() const {
2366     if (!isITCondCode())
2367       return false;
2368     ARMCC::CondCodes CC = getCondCode();
2369     return CC == ARMCC::LT || CC == ARMCC::GT || CC == ARMCC::LE ||
2370            CC == ARMCC::GE;
2371   }
2372 
2373   bool isITCondCodeRestrictedU() const {
2374     if (!isITCondCode())
2375       return false;
2376     ARMCC::CondCodes CC = getCondCode();
2377     return CC == ARMCC::HS || CC == ARMCC::HI;
2378   }
2379 
2380   bool isITCondCodeRestrictedFP() const {
2381     if (!isITCondCode())
2382       return false;
2383     ARMCC::CondCodes CC = getCondCode();
2384     return CC == ARMCC::EQ || CC == ARMCC::NE || CC == ARMCC::LT ||
2385            CC == ARMCC::GT || CC == ARMCC::LE || CC == ARMCC::GE;
2386   }
2387 
2388   void addExpr(MCInst &Inst, const MCExpr *Expr) const {
2389     // Add as immediates when possible.  Null MCExpr = 0.
2390     if (!Expr)
2391       Inst.addOperand(MCOperand::createImm(0));
2392     else if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr))
2393       Inst.addOperand(MCOperand::createImm(CE->getValue()));
2394     else
2395       Inst.addOperand(MCOperand::createExpr(Expr));
2396   }
2397 
2398   void addARMBranchTargetOperands(MCInst &Inst, unsigned N) const {
2399     assert(N == 1 && "Invalid number of operands!");
2400     addExpr(Inst, getImm());
2401   }
2402 
2403   void addThumbBranchTargetOperands(MCInst &Inst, unsigned N) const {
2404     assert(N == 1 && "Invalid number of operands!");
2405     addExpr(Inst, getImm());
2406   }
2407 
2408   void addCondCodeOperands(MCInst &Inst, unsigned N) const {
2409     assert(N == 2 && "Invalid number of operands!");
2410     Inst.addOperand(MCOperand::createImm(unsigned(getCondCode())));
2411     unsigned RegNum = getCondCode() == ARMCC::AL ? 0: ARM::CPSR;
2412     Inst.addOperand(MCOperand::createReg(RegNum));
2413   }
2414 
2415   void addVPTPredNOperands(MCInst &Inst, unsigned N) const {
2416     assert(N == 2 && "Invalid number of operands!");
2417     Inst.addOperand(MCOperand::createImm(unsigned(getVPTPred())));
2418     unsigned RegNum = getVPTPred() == ARMVCC::None ? 0: ARM::P0;
2419     Inst.addOperand(MCOperand::createReg(RegNum));
2420   }
2421 
2422   void addVPTPredROperands(MCInst &Inst, unsigned N) const {
2423     assert(N == 3 && "Invalid number of operands!");
2424     addVPTPredNOperands(Inst, N-1);
2425     unsigned RegNum;
2426     if (getVPTPred() == ARMVCC::None) {
2427       RegNum = 0;
2428     } else {
2429       unsigned NextOpIndex = Inst.getNumOperands();
2430       const MCInstrDesc &MCID = ARMInsts[Inst.getOpcode()];
2431       int TiedOp = MCID.getOperandConstraint(NextOpIndex, MCOI::TIED_TO);
2432       assert(TiedOp >= 0 &&
2433              "Inactive register in vpred_r is not tied to an output!");
2434       RegNum = Inst.getOperand(TiedOp).getReg();
2435     }
2436     Inst.addOperand(MCOperand::createReg(RegNum));
2437   }
2438 
2439   void addCoprocNumOperands(MCInst &Inst, unsigned N) const {
2440     assert(N == 1 && "Invalid number of operands!");
2441     Inst.addOperand(MCOperand::createImm(getCoproc()));
2442   }
2443 
2444   void addCoprocRegOperands(MCInst &Inst, unsigned N) const {
2445     assert(N == 1 && "Invalid number of operands!");
2446     Inst.addOperand(MCOperand::createImm(getCoproc()));
2447   }
2448 
2449   void addCoprocOptionOperands(MCInst &Inst, unsigned N) const {
2450     assert(N == 1 && "Invalid number of operands!");
2451     Inst.addOperand(MCOperand::createImm(CoprocOption.Val));
2452   }
2453 
2454   void addITMaskOperands(MCInst &Inst, unsigned N) const {
2455     assert(N == 1 && "Invalid number of operands!");
2456     Inst.addOperand(MCOperand::createImm(ITMask.Mask));
2457   }
2458 
2459   void addITCondCodeOperands(MCInst &Inst, unsigned N) const {
2460     assert(N == 1 && "Invalid number of operands!");
2461     Inst.addOperand(MCOperand::createImm(unsigned(getCondCode())));
2462   }
2463 
2464   void addITCondCodeInvOperands(MCInst &Inst, unsigned N) const {
2465     assert(N == 1 && "Invalid number of operands!");
2466     Inst.addOperand(MCOperand::createImm(unsigned(ARMCC::getOppositeCondition(getCondCode()))));
2467   }
2468 
2469   void addCCOutOperands(MCInst &Inst, unsigned N) const {
2470     assert(N == 1 && "Invalid number of operands!");
2471     Inst.addOperand(MCOperand::createReg(getReg()));
2472   }
2473 
2474   void addRegOperands(MCInst &Inst, unsigned N) const {
2475     assert(N == 1 && "Invalid number of operands!");
2476     Inst.addOperand(MCOperand::createReg(getReg()));
2477   }
2478 
2479   void addRegShiftedRegOperands(MCInst &Inst, unsigned N) const {
2480     assert(N == 3 && "Invalid number of operands!");
2481     assert(isRegShiftedReg() &&
2482            "addRegShiftedRegOperands() on non-RegShiftedReg!");
2483     Inst.addOperand(MCOperand::createReg(RegShiftedReg.SrcReg));
2484     Inst.addOperand(MCOperand::createReg(RegShiftedReg.ShiftReg));
2485     Inst.addOperand(MCOperand::createImm(
2486       ARM_AM::getSORegOpc(RegShiftedReg.ShiftTy, RegShiftedReg.ShiftImm)));
2487   }
2488 
2489   void addRegShiftedImmOperands(MCInst &Inst, unsigned N) const {
2490     assert(N == 2 && "Invalid number of operands!");
2491     assert(isRegShiftedImm() &&
2492            "addRegShiftedImmOperands() on non-RegShiftedImm!");
2493     Inst.addOperand(MCOperand::createReg(RegShiftedImm.SrcReg));
2494     // Shift of #32 is encoded as 0 where permitted
2495     unsigned Imm = (RegShiftedImm.ShiftImm == 32 ? 0 : RegShiftedImm.ShiftImm);
2496     Inst.addOperand(MCOperand::createImm(
2497       ARM_AM::getSORegOpc(RegShiftedImm.ShiftTy, Imm)));
2498   }
2499 
2500   void addShifterImmOperands(MCInst &Inst, unsigned N) const {
2501     assert(N == 1 && "Invalid number of operands!");
2502     Inst.addOperand(MCOperand::createImm((ShifterImm.isASR << 5) |
2503                                          ShifterImm.Imm));
2504   }
2505 
2506   void addRegListOperands(MCInst &Inst, unsigned N) const {
2507     assert(N == 1 && "Invalid number of operands!");
2508     const SmallVectorImpl<unsigned> &RegList = getRegList();
2509     for (SmallVectorImpl<unsigned>::const_iterator
2510            I = RegList.begin(), E = RegList.end(); I != E; ++I)
2511       Inst.addOperand(MCOperand::createReg(*I));
2512   }
2513 
2514   void addRegListWithAPSROperands(MCInst &Inst, unsigned N) const {
2515     assert(N == 1 && "Invalid number of operands!");
2516     const SmallVectorImpl<unsigned> &RegList = getRegList();
2517     for (SmallVectorImpl<unsigned>::const_iterator
2518            I = RegList.begin(), E = RegList.end(); I != E; ++I)
2519       Inst.addOperand(MCOperand::createReg(*I));
2520   }
2521 
2522   void addDPRRegListOperands(MCInst &Inst, unsigned N) const {
2523     addRegListOperands(Inst, N);
2524   }
2525 
2526   void addSPRRegListOperands(MCInst &Inst, unsigned N) const {
2527     addRegListOperands(Inst, N);
2528   }
2529 
2530   void addFPSRegListWithVPROperands(MCInst &Inst, unsigned N) const {
2531     addRegListOperands(Inst, N);
2532   }
2533 
2534   void addFPDRegListWithVPROperands(MCInst &Inst, unsigned N) const {
2535     addRegListOperands(Inst, N);
2536   }
2537 
2538   void addRotImmOperands(MCInst &Inst, unsigned N) const {
2539     assert(N == 1 && "Invalid number of operands!");
2540     // Encoded as val>>3. The printer handles display as 8, 16, 24.
2541     Inst.addOperand(MCOperand::createImm(RotImm.Imm >> 3));
2542   }
2543 
2544   void addModImmOperands(MCInst &Inst, unsigned N) const {
2545     assert(N == 1 && "Invalid number of operands!");
2546 
2547     // Support for fixups (MCFixup)
2548     if (isImm())
2549       return addImmOperands(Inst, N);
2550 
2551     Inst.addOperand(MCOperand::createImm(ModImm.Bits | (ModImm.Rot << 7)));
2552   }
2553 
2554   void addModImmNotOperands(MCInst &Inst, unsigned N) const {
2555     assert(N == 1 && "Invalid number of operands!");
2556     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
2557     uint32_t Enc = ARM_AM::getSOImmVal(~CE->getValue());
2558     Inst.addOperand(MCOperand::createImm(Enc));
2559   }
2560 
2561   void addModImmNegOperands(MCInst &Inst, unsigned N) const {
2562     assert(N == 1 && "Invalid number of operands!");
2563     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
2564     uint32_t Enc = ARM_AM::getSOImmVal(-CE->getValue());
2565     Inst.addOperand(MCOperand::createImm(Enc));
2566   }
2567 
2568   void addThumbModImmNeg8_255Operands(MCInst &Inst, unsigned N) const {
2569     assert(N == 1 && "Invalid number of operands!");
2570     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
2571     uint32_t Val = -CE->getValue();
2572     Inst.addOperand(MCOperand::createImm(Val));
2573   }
2574 
2575   void addThumbModImmNeg1_7Operands(MCInst &Inst, unsigned N) const {
2576     assert(N == 1 && "Invalid number of operands!");
2577     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
2578     uint32_t Val = -CE->getValue();
2579     Inst.addOperand(MCOperand::createImm(Val));
2580   }
2581 
2582   void addBitfieldOperands(MCInst &Inst, unsigned N) const {
2583     assert(N == 1 && "Invalid number of operands!");
2584     // Munge the lsb/width into a bitfield mask.
2585     unsigned lsb = Bitfield.LSB;
2586     unsigned width = Bitfield.Width;
2587     // Make a 32-bit mask w/ the referenced bits clear and all other bits set.
2588     uint32_t Mask = ~(((uint32_t)0xffffffff >> lsb) << (32 - width) >>
2589                       (32 - (lsb + width)));
2590     Inst.addOperand(MCOperand::createImm(Mask));
2591   }
2592 
2593   void addImmOperands(MCInst &Inst, unsigned N) const {
2594     assert(N == 1 && "Invalid number of operands!");
2595     addExpr(Inst, getImm());
2596   }
2597 
2598   void addFBits16Operands(MCInst &Inst, unsigned N) const {
2599     assert(N == 1 && "Invalid number of operands!");
2600     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
2601     Inst.addOperand(MCOperand::createImm(16 - CE->getValue()));
2602   }
2603 
2604   void addFBits32Operands(MCInst &Inst, unsigned N) const {
2605     assert(N == 1 && "Invalid number of operands!");
2606     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
2607     Inst.addOperand(MCOperand::createImm(32 - CE->getValue()));
2608   }
2609 
2610   void addFPImmOperands(MCInst &Inst, unsigned N) const {
2611     assert(N == 1 && "Invalid number of operands!");
2612     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
2613     int Val = ARM_AM::getFP32Imm(APInt(32, CE->getValue()));
2614     Inst.addOperand(MCOperand::createImm(Val));
2615   }
2616 
2617   void addImm8s4Operands(MCInst &Inst, unsigned N) const {
2618     assert(N == 1 && "Invalid number of operands!");
2619     // FIXME: We really want to scale the value here, but the LDRD/STRD
2620     // instruction don't encode operands that way yet.
2621     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
2622     Inst.addOperand(MCOperand::createImm(CE->getValue()));
2623   }
2624 
2625   void addImm7s4Operands(MCInst &Inst, unsigned N) const {
2626     assert(N == 1 && "Invalid number of operands!");
2627     // FIXME: We really want to scale the value here, but the VSTR/VLDR_VSYSR
2628     // instruction don't encode operands that way yet.
2629     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
2630     Inst.addOperand(MCOperand::createImm(CE->getValue()));
2631   }
2632 
2633   void addImm7Shift0Operands(MCInst &Inst, unsigned N) const {
2634     assert(N == 1 && "Invalid number of operands!");
2635     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
2636     Inst.addOperand(MCOperand::createImm(CE->getValue()));
2637   }
2638 
2639   void addImm7Shift1Operands(MCInst &Inst, unsigned N) const {
2640     assert(N == 1 && "Invalid number of operands!");
2641     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
2642     Inst.addOperand(MCOperand::createImm(CE->getValue()));
2643   }
2644 
2645   void addImm7Shift2Operands(MCInst &Inst, unsigned N) const {
2646     assert(N == 1 && "Invalid number of operands!");
2647     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
2648     Inst.addOperand(MCOperand::createImm(CE->getValue()));
2649   }
2650 
2651   void addImm7Operands(MCInst &Inst, unsigned N) const {
2652     assert(N == 1 && "Invalid number of operands!");
2653     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
2654     Inst.addOperand(MCOperand::createImm(CE->getValue()));
2655   }
2656 
2657   void addImm0_1020s4Operands(MCInst &Inst, unsigned N) const {
2658     assert(N == 1 && "Invalid number of operands!");
2659     // The immediate is scaled by four in the encoding and is stored
2660     // in the MCInst as such. Lop off the low two bits here.
2661     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
2662     Inst.addOperand(MCOperand::createImm(CE->getValue() / 4));
2663   }
2664 
2665   void addImm0_508s4NegOperands(MCInst &Inst, unsigned N) const {
2666     assert(N == 1 && "Invalid number of operands!");
2667     // The immediate is scaled by four in the encoding and is stored
2668     // in the MCInst as such. Lop off the low two bits here.
2669     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
2670     Inst.addOperand(MCOperand::createImm(-(CE->getValue() / 4)));
2671   }
2672 
2673   void addImm0_508s4Operands(MCInst &Inst, unsigned N) const {
2674     assert(N == 1 && "Invalid number of operands!");
2675     // The immediate is scaled by four in the encoding and is stored
2676     // in the MCInst as such. Lop off the low two bits here.
2677     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
2678     Inst.addOperand(MCOperand::createImm(CE->getValue() / 4));
2679   }
2680 
2681   void addImm1_16Operands(MCInst &Inst, unsigned N) const {
2682     assert(N == 1 && "Invalid number of operands!");
2683     // The constant encodes as the immediate-1, and we store in the instruction
2684     // the bits as encoded, so subtract off one here.
2685     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
2686     Inst.addOperand(MCOperand::createImm(CE->getValue() - 1));
2687   }
2688 
2689   void addImm1_32Operands(MCInst &Inst, unsigned N) const {
2690     assert(N == 1 && "Invalid number of operands!");
2691     // The constant encodes as the immediate-1, and we store in the instruction
2692     // the bits as encoded, so subtract off one here.
2693     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
2694     Inst.addOperand(MCOperand::createImm(CE->getValue() - 1));
2695   }
2696 
2697   void addImmThumbSROperands(MCInst &Inst, unsigned N) const {
2698     assert(N == 1 && "Invalid number of operands!");
2699     // The constant encodes as the immediate, except for 32, which encodes as
2700     // zero.
2701     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
2702     unsigned Imm = CE->getValue();
2703     Inst.addOperand(MCOperand::createImm((Imm == 32 ? 0 : Imm)));
2704   }
2705 
2706   void addPKHASRImmOperands(MCInst &Inst, unsigned N) const {
2707     assert(N == 1 && "Invalid number of operands!");
2708     // An ASR value of 32 encodes as 0, so that's how we want to add it to
2709     // the instruction as well.
2710     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
2711     int Val = CE->getValue();
2712     Inst.addOperand(MCOperand::createImm(Val == 32 ? 0 : Val));
2713   }
2714 
2715   void addT2SOImmNotOperands(MCInst &Inst, unsigned N) const {
2716     assert(N == 1 && "Invalid number of operands!");
2717     // The operand is actually a t2_so_imm, but we have its bitwise
2718     // negation in the assembly source, so twiddle it here.
2719     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
2720     Inst.addOperand(MCOperand::createImm(~(uint32_t)CE->getValue()));
2721   }
2722 
2723   void addT2SOImmNegOperands(MCInst &Inst, unsigned N) const {
2724     assert(N == 1 && "Invalid number of operands!");
2725     // The operand is actually a t2_so_imm, but we have its
2726     // negation in the assembly source, so twiddle it here.
2727     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
2728     Inst.addOperand(MCOperand::createImm(-(uint32_t)CE->getValue()));
2729   }
2730 
2731   void addImm0_4095NegOperands(MCInst &Inst, unsigned N) const {
2732     assert(N == 1 && "Invalid number of operands!");
2733     // The operand is actually an imm0_4095, but we have its
2734     // negation in the assembly source, so twiddle it here.
2735     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
2736     Inst.addOperand(MCOperand::createImm(-(uint32_t)CE->getValue()));
2737   }
2738 
2739   void addUnsignedOffset_b8s2Operands(MCInst &Inst, unsigned N) const {
2740     if(const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm())) {
2741       Inst.addOperand(MCOperand::createImm(CE->getValue() >> 2));
2742       return;
2743     }
2744     const MCSymbolRefExpr *SR = cast<MCSymbolRefExpr>(Imm.Val);
2745     Inst.addOperand(MCOperand::createExpr(SR));
2746   }
2747 
2748   void addThumbMemPCOperands(MCInst &Inst, unsigned N) const {
2749     assert(N == 1 && "Invalid number of operands!");
2750     if (isImm()) {
2751       const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2752       if (CE) {
2753         Inst.addOperand(MCOperand::createImm(CE->getValue()));
2754         return;
2755       }
2756       const MCSymbolRefExpr *SR = cast<MCSymbolRefExpr>(Imm.Val);
2757       Inst.addOperand(MCOperand::createExpr(SR));
2758       return;
2759     }
2760 
2761     assert(isGPRMem()  && "Unknown value type!");
2762     assert(isa<MCConstantExpr>(Memory.OffsetImm) && "Unknown value type!");
2763     Inst.addOperand(MCOperand::createImm(Memory.OffsetImm->getValue()));
2764   }
2765 
2766   void addMemBarrierOptOperands(MCInst &Inst, unsigned N) const {
2767     assert(N == 1 && "Invalid number of operands!");
2768     Inst.addOperand(MCOperand::createImm(unsigned(getMemBarrierOpt())));
2769   }
2770 
2771   void addInstSyncBarrierOptOperands(MCInst &Inst, unsigned N) const {
2772     assert(N == 1 && "Invalid number of operands!");
2773     Inst.addOperand(MCOperand::createImm(unsigned(getInstSyncBarrierOpt())));
2774   }
2775 
2776   void addTraceSyncBarrierOptOperands(MCInst &Inst, unsigned N) const {
2777     assert(N == 1 && "Invalid number of operands!");
2778     Inst.addOperand(MCOperand::createImm(unsigned(getTraceSyncBarrierOpt())));
2779   }
2780 
2781   void addMemNoOffsetOperands(MCInst &Inst, unsigned N) const {
2782     assert(N == 1 && "Invalid number of operands!");
2783     Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum));
2784   }
2785 
2786   void addMemNoOffsetT2Operands(MCInst &Inst, unsigned N) const {
2787     assert(N == 1 && "Invalid number of operands!");
2788     Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum));
2789   }
2790 
2791   void addMemNoOffsetT2NoSpOperands(MCInst &Inst, unsigned N) const {
2792     assert(N == 1 && "Invalid number of operands!");
2793     Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum));
2794   }
2795 
2796   void addMemNoOffsetTOperands(MCInst &Inst, unsigned N) const {
2797     assert(N == 1 && "Invalid number of operands!");
2798     Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum));
2799   }
2800 
2801   void addMemPCRelImm12Operands(MCInst &Inst, unsigned N) const {
2802     assert(N == 1 && "Invalid number of operands!");
2803     int32_t Imm = Memory.OffsetImm->getValue();
2804     Inst.addOperand(MCOperand::createImm(Imm));
2805   }
2806 
2807   void addAdrLabelOperands(MCInst &Inst, unsigned N) const {
2808     assert(N == 1 && "Invalid number of operands!");
2809     assert(isImm() && "Not an immediate!");
2810 
2811     // If we have an immediate that's not a constant, treat it as a label
2812     // reference needing a fixup.
2813     if (!isa<MCConstantExpr>(getImm())) {
2814       Inst.addOperand(MCOperand::createExpr(getImm()));
2815       return;
2816     }
2817 
2818     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
2819     int Val = CE->getValue();
2820     Inst.addOperand(MCOperand::createImm(Val));
2821   }
2822 
2823   void addAlignedMemoryOperands(MCInst &Inst, unsigned N) const {
2824     assert(N == 2 && "Invalid number of operands!");
2825     Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum));
2826     Inst.addOperand(MCOperand::createImm(Memory.Alignment));
2827   }
2828 
2829   void addDupAlignedMemoryNoneOperands(MCInst &Inst, unsigned N) const {
2830     addAlignedMemoryOperands(Inst, N);
2831   }
2832 
2833   void addAlignedMemoryNoneOperands(MCInst &Inst, unsigned N) const {
2834     addAlignedMemoryOperands(Inst, N);
2835   }
2836 
2837   void addAlignedMemory16Operands(MCInst &Inst, unsigned N) const {
2838     addAlignedMemoryOperands(Inst, N);
2839   }
2840 
2841   void addDupAlignedMemory16Operands(MCInst &Inst, unsigned N) const {
2842     addAlignedMemoryOperands(Inst, N);
2843   }
2844 
2845   void addAlignedMemory32Operands(MCInst &Inst, unsigned N) const {
2846     addAlignedMemoryOperands(Inst, N);
2847   }
2848 
2849   void addDupAlignedMemory32Operands(MCInst &Inst, unsigned N) const {
2850     addAlignedMemoryOperands(Inst, N);
2851   }
2852 
2853   void addAlignedMemory64Operands(MCInst &Inst, unsigned N) const {
2854     addAlignedMemoryOperands(Inst, N);
2855   }
2856 
2857   void addDupAlignedMemory64Operands(MCInst &Inst, unsigned N) const {
2858     addAlignedMemoryOperands(Inst, N);
2859   }
2860 
2861   void addAlignedMemory64or128Operands(MCInst &Inst, unsigned N) const {
2862     addAlignedMemoryOperands(Inst, N);
2863   }
2864 
2865   void addDupAlignedMemory64or128Operands(MCInst &Inst, unsigned N) const {
2866     addAlignedMemoryOperands(Inst, N);
2867   }
2868 
2869   void addAlignedMemory64or128or256Operands(MCInst &Inst, unsigned N) const {
2870     addAlignedMemoryOperands(Inst, N);
2871   }
2872 
2873   void addAddrMode2Operands(MCInst &Inst, unsigned N) const {
2874     assert(N == 3 && "Invalid number of operands!");
2875     int32_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0;
2876     if (!Memory.OffsetRegNum) {
2877       ARM_AM::AddrOpc AddSub = Val < 0 ? ARM_AM::sub : ARM_AM::add;
2878       // Special case for #-0
2879       if (Val == std::numeric_limits<int32_t>::min()) Val = 0;
2880       if (Val < 0) Val = -Val;
2881       Val = ARM_AM::getAM2Opc(AddSub, Val, ARM_AM::no_shift);
2882     } else {
2883       // For register offset, we encode the shift type and negation flag
2884       // here.
2885       Val = ARM_AM::getAM2Opc(Memory.isNegative ? ARM_AM::sub : ARM_AM::add,
2886                               Memory.ShiftImm, Memory.ShiftType);
2887     }
2888     Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum));
2889     Inst.addOperand(MCOperand::createReg(Memory.OffsetRegNum));
2890     Inst.addOperand(MCOperand::createImm(Val));
2891   }
2892 
2893   void addAM2OffsetImmOperands(MCInst &Inst, unsigned N) const {
2894     assert(N == 2 && "Invalid number of operands!");
2895     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
2896     assert(CE && "non-constant AM2OffsetImm operand!");
2897     int32_t Val = CE->getValue();
2898     ARM_AM::AddrOpc AddSub = Val < 0 ? ARM_AM::sub : ARM_AM::add;
2899     // Special case for #-0
2900     if (Val == std::numeric_limits<int32_t>::min()) Val = 0;
2901     if (Val < 0) Val = -Val;
2902     Val = ARM_AM::getAM2Opc(AddSub, Val, ARM_AM::no_shift);
2903     Inst.addOperand(MCOperand::createReg(0));
2904     Inst.addOperand(MCOperand::createImm(Val));
2905   }
2906 
2907   void addAddrMode3Operands(MCInst &Inst, unsigned N) const {
2908     assert(N == 3 && "Invalid number of operands!");
2909     // If we have an immediate that's not a constant, treat it as a label
2910     // reference needing a fixup. If it is a constant, it's something else
2911     // and we reject it.
2912     if (isImm()) {
2913       Inst.addOperand(MCOperand::createExpr(getImm()));
2914       Inst.addOperand(MCOperand::createReg(0));
2915       Inst.addOperand(MCOperand::createImm(0));
2916       return;
2917     }
2918 
2919     int32_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0;
2920     if (!Memory.OffsetRegNum) {
2921       ARM_AM::AddrOpc AddSub = Val < 0 ? ARM_AM::sub : ARM_AM::add;
2922       // Special case for #-0
2923       if (Val == std::numeric_limits<int32_t>::min()) Val = 0;
2924       if (Val < 0) Val = -Val;
2925       Val = ARM_AM::getAM3Opc(AddSub, Val);
2926     } else {
2927       // For register offset, we encode the shift type and negation flag
2928       // here.
2929       Val = ARM_AM::getAM3Opc(Memory.isNegative ? ARM_AM::sub : ARM_AM::add, 0);
2930     }
2931     Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum));
2932     Inst.addOperand(MCOperand::createReg(Memory.OffsetRegNum));
2933     Inst.addOperand(MCOperand::createImm(Val));
2934   }
2935 
2936   void addAM3OffsetOperands(MCInst &Inst, unsigned N) const {
2937     assert(N == 2 && "Invalid number of operands!");
2938     if (Kind == k_PostIndexRegister) {
2939       int32_t Val =
2940         ARM_AM::getAM3Opc(PostIdxReg.isAdd ? ARM_AM::add : ARM_AM::sub, 0);
2941       Inst.addOperand(MCOperand::createReg(PostIdxReg.RegNum));
2942       Inst.addOperand(MCOperand::createImm(Val));
2943       return;
2944     }
2945 
2946     // Constant offset.
2947     const MCConstantExpr *CE = static_cast<const MCConstantExpr*>(getImm());
2948     int32_t Val = CE->getValue();
2949     ARM_AM::AddrOpc AddSub = Val < 0 ? ARM_AM::sub : ARM_AM::add;
2950     // Special case for #-0
2951     if (Val == std::numeric_limits<int32_t>::min()) Val = 0;
2952     if (Val < 0) Val = -Val;
2953     Val = ARM_AM::getAM3Opc(AddSub, Val);
2954     Inst.addOperand(MCOperand::createReg(0));
2955     Inst.addOperand(MCOperand::createImm(Val));
2956   }
2957 
2958   void addAddrMode5Operands(MCInst &Inst, unsigned N) const {
2959     assert(N == 2 && "Invalid number of operands!");
2960     // If we have an immediate that's not a constant, treat it as a label
2961     // reference needing a fixup. If it is a constant, it's something else
2962     // and we reject it.
2963     if (isImm()) {
2964       Inst.addOperand(MCOperand::createExpr(getImm()));
2965       Inst.addOperand(MCOperand::createImm(0));
2966       return;
2967     }
2968 
2969     // The lower two bits are always zero and as such are not encoded.
2970     int32_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() / 4 : 0;
2971     ARM_AM::AddrOpc AddSub = Val < 0 ? ARM_AM::sub : ARM_AM::add;
2972     // Special case for #-0
2973     if (Val == std::numeric_limits<int32_t>::min()) Val = 0;
2974     if (Val < 0) Val = -Val;
2975     Val = ARM_AM::getAM5Opc(AddSub, Val);
2976     Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum));
2977     Inst.addOperand(MCOperand::createImm(Val));
2978   }
2979 
2980   void addAddrMode5FP16Operands(MCInst &Inst, unsigned N) const {
2981     assert(N == 2 && "Invalid number of operands!");
2982     // If we have an immediate that's not a constant, treat it as a label
2983     // reference needing a fixup. If it is a constant, it's something else
2984     // and we reject it.
2985     if (isImm()) {
2986       Inst.addOperand(MCOperand::createExpr(getImm()));
2987       Inst.addOperand(MCOperand::createImm(0));
2988       return;
2989     }
2990 
2991     // The lower bit is always zero and as such is not encoded.
2992     int32_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() / 2 : 0;
2993     ARM_AM::AddrOpc AddSub = Val < 0 ? ARM_AM::sub : ARM_AM::add;
2994     // Special case for #-0
2995     if (Val == std::numeric_limits<int32_t>::min()) Val = 0;
2996     if (Val < 0) Val = -Val;
2997     Val = ARM_AM::getAM5FP16Opc(AddSub, Val);
2998     Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum));
2999     Inst.addOperand(MCOperand::createImm(Val));
3000   }
3001 
3002   void addMemImm8s4OffsetOperands(MCInst &Inst, unsigned N) const {
3003     assert(N == 2 && "Invalid number of operands!");
3004     // If we have an immediate that's not a constant, treat it as a label
3005     // reference needing a fixup. If it is a constant, it's something else
3006     // and we reject it.
3007     if (isImm()) {
3008       Inst.addOperand(MCOperand::createExpr(getImm()));
3009       Inst.addOperand(MCOperand::createImm(0));
3010       return;
3011     }
3012 
3013     int64_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0;
3014     Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum));
3015     Inst.addOperand(MCOperand::createImm(Val));
3016   }
3017 
3018   void addMemImm7s4OffsetOperands(MCInst &Inst, unsigned N) const {
3019     assert(N == 2 && "Invalid number of operands!");
3020     // If we have an immediate that's not a constant, treat it as a label
3021     // reference needing a fixup. If it is a constant, it's something else
3022     // and we reject it.
3023     if (isImm()) {
3024       Inst.addOperand(MCOperand::createExpr(getImm()));
3025       Inst.addOperand(MCOperand::createImm(0));
3026       return;
3027     }
3028 
3029     int64_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0;
3030     Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum));
3031     Inst.addOperand(MCOperand::createImm(Val));
3032   }
3033 
3034   void addMemImm0_1020s4OffsetOperands(MCInst &Inst, unsigned N) const {
3035     assert(N == 2 && "Invalid number of operands!");
3036     // The lower two bits are always zero and as such are not encoded.
3037     int32_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() / 4 : 0;
3038     Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum));
3039     Inst.addOperand(MCOperand::createImm(Val));
3040   }
3041 
3042   void addMemImmOffsetOperands(MCInst &Inst, unsigned N) const {
3043     assert(N == 2 && "Invalid number of operands!");
3044     int64_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0;
3045     Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum));
3046     Inst.addOperand(MCOperand::createImm(Val));
3047   }
3048 
3049   void addMemRegRQOffsetOperands(MCInst &Inst, unsigned N) const {
3050     assert(N == 2 && "Invalid number of operands!");
3051     Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum));
3052     Inst.addOperand(MCOperand::createReg(Memory.OffsetRegNum));
3053   }
3054 
3055   void addMemUImm12OffsetOperands(MCInst &Inst, unsigned N) const {
3056     assert(N == 2 && "Invalid number of operands!");
3057     // If this is an immediate, it's a label reference.
3058     if (isImm()) {
3059       addExpr(Inst, getImm());
3060       Inst.addOperand(MCOperand::createImm(0));
3061       return;
3062     }
3063 
3064     // Otherwise, it's a normal memory reg+offset.
3065     int64_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0;
3066     Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum));
3067     Inst.addOperand(MCOperand::createImm(Val));
3068   }
3069 
3070   void addMemImm12OffsetOperands(MCInst &Inst, unsigned N) const {
3071     assert(N == 2 && "Invalid number of operands!");
3072     // If this is an immediate, it's a label reference.
3073     if (isImm()) {
3074       addExpr(Inst, getImm());
3075       Inst.addOperand(MCOperand::createImm(0));
3076       return;
3077     }
3078 
3079     // Otherwise, it's a normal memory reg+offset.
3080     int64_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0;
3081     Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum));
3082     Inst.addOperand(MCOperand::createImm(Val));
3083   }
3084 
3085   void addConstPoolAsmImmOperands(MCInst &Inst, unsigned N) const {
3086     assert(N == 1 && "Invalid number of operands!");
3087     // This is container for the immediate that we will create the constant
3088     // pool from
3089     addExpr(Inst, getConstantPoolImm());
3090     return;
3091   }
3092 
3093   void addMemTBBOperands(MCInst &Inst, unsigned N) const {
3094     assert(N == 2 && "Invalid number of operands!");
3095     Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum));
3096     Inst.addOperand(MCOperand::createReg(Memory.OffsetRegNum));
3097   }
3098 
3099   void addMemTBHOperands(MCInst &Inst, unsigned N) const {
3100     assert(N == 2 && "Invalid number of operands!");
3101     Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum));
3102     Inst.addOperand(MCOperand::createReg(Memory.OffsetRegNum));
3103   }
3104 
3105   void addMemRegOffsetOperands(MCInst &Inst, unsigned N) const {
3106     assert(N == 3 && "Invalid number of operands!");
3107     unsigned Val =
3108       ARM_AM::getAM2Opc(Memory.isNegative ? ARM_AM::sub : ARM_AM::add,
3109                         Memory.ShiftImm, Memory.ShiftType);
3110     Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum));
3111     Inst.addOperand(MCOperand::createReg(Memory.OffsetRegNum));
3112     Inst.addOperand(MCOperand::createImm(Val));
3113   }
3114 
3115   void addT2MemRegOffsetOperands(MCInst &Inst, unsigned N) const {
3116     assert(N == 3 && "Invalid number of operands!");
3117     Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum));
3118     Inst.addOperand(MCOperand::createReg(Memory.OffsetRegNum));
3119     Inst.addOperand(MCOperand::createImm(Memory.ShiftImm));
3120   }
3121 
3122   void addMemThumbRROperands(MCInst &Inst, unsigned N) const {
3123     assert(N == 2 && "Invalid number of operands!");
3124     Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum));
3125     Inst.addOperand(MCOperand::createReg(Memory.OffsetRegNum));
3126   }
3127 
3128   void addMemThumbRIs4Operands(MCInst &Inst, unsigned N) const {
3129     assert(N == 2 && "Invalid number of operands!");
3130     int64_t Val = Memory.OffsetImm ? (Memory.OffsetImm->getValue() / 4) : 0;
3131     Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum));
3132     Inst.addOperand(MCOperand::createImm(Val));
3133   }
3134 
3135   void addMemThumbRIs2Operands(MCInst &Inst, unsigned N) const {
3136     assert(N == 2 && "Invalid number of operands!");
3137     int64_t Val = Memory.OffsetImm ? (Memory.OffsetImm->getValue() / 2) : 0;
3138     Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum));
3139     Inst.addOperand(MCOperand::createImm(Val));
3140   }
3141 
3142   void addMemThumbRIs1Operands(MCInst &Inst, unsigned N) const {
3143     assert(N == 2 && "Invalid number of operands!");
3144     int64_t Val = Memory.OffsetImm ? (Memory.OffsetImm->getValue()) : 0;
3145     Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum));
3146     Inst.addOperand(MCOperand::createImm(Val));
3147   }
3148 
3149   void addMemThumbSPIOperands(MCInst &Inst, unsigned N) const {
3150     assert(N == 2 && "Invalid number of operands!");
3151     int64_t Val = Memory.OffsetImm ? (Memory.OffsetImm->getValue() / 4) : 0;
3152     Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum));
3153     Inst.addOperand(MCOperand::createImm(Val));
3154   }
3155 
3156   void addPostIdxImm8Operands(MCInst &Inst, unsigned N) const {
3157     assert(N == 1 && "Invalid number of operands!");
3158     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
3159     assert(CE && "non-constant post-idx-imm8 operand!");
3160     int Imm = CE->getValue();
3161     bool isAdd = Imm >= 0;
3162     if (Imm == std::numeric_limits<int32_t>::min()) Imm = 0;
3163     Imm = (Imm < 0 ? -Imm : Imm) | (int)isAdd << 8;
3164     Inst.addOperand(MCOperand::createImm(Imm));
3165   }
3166 
3167   void addPostIdxImm8s4Operands(MCInst &Inst, unsigned N) const {
3168     assert(N == 1 && "Invalid number of operands!");
3169     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
3170     assert(CE && "non-constant post-idx-imm8s4 operand!");
3171     int Imm = CE->getValue();
3172     bool isAdd = Imm >= 0;
3173     if (Imm == std::numeric_limits<int32_t>::min()) Imm = 0;
3174     // Immediate is scaled by 4.
3175     Imm = ((Imm < 0 ? -Imm : Imm) / 4) | (int)isAdd << 8;
3176     Inst.addOperand(MCOperand::createImm(Imm));
3177   }
3178 
3179   void addPostIdxRegOperands(MCInst &Inst, unsigned N) const {
3180     assert(N == 2 && "Invalid number of operands!");
3181     Inst.addOperand(MCOperand::createReg(PostIdxReg.RegNum));
3182     Inst.addOperand(MCOperand::createImm(PostIdxReg.isAdd));
3183   }
3184 
3185   void addPostIdxRegShiftedOperands(MCInst &Inst, unsigned N) const {
3186     assert(N == 2 && "Invalid number of operands!");
3187     Inst.addOperand(MCOperand::createReg(PostIdxReg.RegNum));
3188     // The sign, shift type, and shift amount are encoded in a single operand
3189     // using the AM2 encoding helpers.
3190     ARM_AM::AddrOpc opc = PostIdxReg.isAdd ? ARM_AM::add : ARM_AM::sub;
3191     unsigned Imm = ARM_AM::getAM2Opc(opc, PostIdxReg.ShiftImm,
3192                                      PostIdxReg.ShiftTy);
3193     Inst.addOperand(MCOperand::createImm(Imm));
3194   }
3195 
3196   void addPowerTwoOperands(MCInst &Inst, unsigned N) const {
3197     assert(N == 1 && "Invalid number of operands!");
3198     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
3199     Inst.addOperand(MCOperand::createImm(CE->getValue()));
3200   }
3201 
3202   void addMSRMaskOperands(MCInst &Inst, unsigned N) const {
3203     assert(N == 1 && "Invalid number of operands!");
3204     Inst.addOperand(MCOperand::createImm(unsigned(getMSRMask())));
3205   }
3206 
3207   void addBankedRegOperands(MCInst &Inst, unsigned N) const {
3208     assert(N == 1 && "Invalid number of operands!");
3209     Inst.addOperand(MCOperand::createImm(unsigned(getBankedReg())));
3210   }
3211 
3212   void addProcIFlagsOperands(MCInst &Inst, unsigned N) const {
3213     assert(N == 1 && "Invalid number of operands!");
3214     Inst.addOperand(MCOperand::createImm(unsigned(getProcIFlags())));
3215   }
3216 
3217   void addVecListOperands(MCInst &Inst, unsigned N) const {
3218     assert(N == 1 && "Invalid number of operands!");
3219     Inst.addOperand(MCOperand::createReg(VectorList.RegNum));
3220   }
3221 
3222   void addMVEVecListOperands(MCInst &Inst, unsigned N) const {
3223     assert(N == 1 && "Invalid number of operands!");
3224 
3225     // When we come here, the VectorList field will identify a range
3226     // of q-registers by its base register and length, and it will
3227     // have already been error-checked to be the expected length of
3228     // range and contain only q-regs in the range q0-q7. So we can
3229     // count on the base register being in the range q0-q6 (for 2
3230     // regs) or q0-q4 (for 4)
3231     //
3232     // The MVE instructions taking a register range of this kind will
3233     // need an operand in the QQPR or QQQQPR class, representing the
3234     // entire range as a unit. So we must translate into that class,
3235     // by finding the index of the base register in the MQPR reg
3236     // class, and returning the super-register at the corresponding
3237     // index in the target class.
3238 
3239     const MCRegisterClass *RC_in = &ARMMCRegisterClasses[ARM::MQPRRegClassID];
3240     const MCRegisterClass *RC_out = (VectorList.Count == 2) ?
3241       &ARMMCRegisterClasses[ARM::QQPRRegClassID] :
3242       &ARMMCRegisterClasses[ARM::QQQQPRRegClassID];
3243 
3244     unsigned I, E = RC_out->getNumRegs();
3245     for (I = 0; I < E; I++)
3246       if (RC_in->getRegister(I) == VectorList.RegNum)
3247         break;
3248     assert(I < E && "Invalid vector list start register!");
3249 
3250     Inst.addOperand(MCOperand::createReg(RC_out->getRegister(I)));
3251   }
3252 
3253   void addVecListIndexedOperands(MCInst &Inst, unsigned N) const {
3254     assert(N == 2 && "Invalid number of operands!");
3255     Inst.addOperand(MCOperand::createReg(VectorList.RegNum));
3256     Inst.addOperand(MCOperand::createImm(VectorList.LaneIndex));
3257   }
3258 
3259   void addVectorIndex8Operands(MCInst &Inst, unsigned N) const {
3260     assert(N == 1 && "Invalid number of operands!");
3261     Inst.addOperand(MCOperand::createImm(getVectorIndex()));
3262   }
3263 
3264   void addVectorIndex16Operands(MCInst &Inst, unsigned N) const {
3265     assert(N == 1 && "Invalid number of operands!");
3266     Inst.addOperand(MCOperand::createImm(getVectorIndex()));
3267   }
3268 
3269   void addVectorIndex32Operands(MCInst &Inst, unsigned N) const {
3270     assert(N == 1 && "Invalid number of operands!");
3271     Inst.addOperand(MCOperand::createImm(getVectorIndex()));
3272   }
3273 
3274   void addVectorIndex64Operands(MCInst &Inst, unsigned N) const {
3275     assert(N == 1 && "Invalid number of operands!");
3276     Inst.addOperand(MCOperand::createImm(getVectorIndex()));
3277   }
3278 
3279   void addMVEVectorIndexOperands(MCInst &Inst, unsigned N) const {
3280     assert(N == 1 && "Invalid number of operands!");
3281     Inst.addOperand(MCOperand::createImm(getVectorIndex()));
3282   }
3283 
3284   void addMVEPairVectorIndexOperands(MCInst &Inst, unsigned N) const {
3285     assert(N == 1 && "Invalid number of operands!");
3286     Inst.addOperand(MCOperand::createImm(getVectorIndex()));
3287   }
3288 
3289   void addNEONi8splatOperands(MCInst &Inst, unsigned N) const {
3290     assert(N == 1 && "Invalid number of operands!");
3291     // The immediate encodes the type of constant as well as the value.
3292     // Mask in that this is an i8 splat.
3293     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
3294     Inst.addOperand(MCOperand::createImm(CE->getValue() | 0xe00));
3295   }
3296 
3297   void addNEONi16splatOperands(MCInst &Inst, unsigned N) const {
3298     assert(N == 1 && "Invalid number of operands!");
3299     // The immediate encodes the type of constant as well as the value.
3300     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
3301     unsigned Value = CE->getValue();
3302     Value = ARM_AM::encodeNEONi16splat(Value);
3303     Inst.addOperand(MCOperand::createImm(Value));
3304   }
3305 
3306   void addNEONi16splatNotOperands(MCInst &Inst, unsigned N) const {
3307     assert(N == 1 && "Invalid number of operands!");
3308     // The immediate encodes the type of constant as well as the value.
3309     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
3310     unsigned Value = CE->getValue();
3311     Value = ARM_AM::encodeNEONi16splat(~Value & 0xffff);
3312     Inst.addOperand(MCOperand::createImm(Value));
3313   }
3314 
3315   void addNEONi32splatOperands(MCInst &Inst, unsigned N) const {
3316     assert(N == 1 && "Invalid number of operands!");
3317     // The immediate encodes the type of constant as well as the value.
3318     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
3319     unsigned Value = CE->getValue();
3320     Value = ARM_AM::encodeNEONi32splat(Value);
3321     Inst.addOperand(MCOperand::createImm(Value));
3322   }
3323 
3324   void addNEONi32splatNotOperands(MCInst &Inst, unsigned N) const {
3325     assert(N == 1 && "Invalid number of operands!");
3326     // The immediate encodes the type of constant as well as the value.
3327     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
3328     unsigned Value = CE->getValue();
3329     Value = ARM_AM::encodeNEONi32splat(~Value);
3330     Inst.addOperand(MCOperand::createImm(Value));
3331   }
3332 
3333   void addNEONi8ReplicateOperands(MCInst &Inst, bool Inv) const {
3334     // The immediate encodes the type of constant as well as the value.
3335     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
3336     assert((Inst.getOpcode() == ARM::VMOVv8i8 ||
3337             Inst.getOpcode() == ARM::VMOVv16i8) &&
3338           "All instructions that wants to replicate non-zero byte "
3339           "always must be replaced with VMOVv8i8 or VMOVv16i8.");
3340     unsigned Value = CE->getValue();
3341     if (Inv)
3342       Value = ~Value;
3343     unsigned B = Value & 0xff;
3344     B |= 0xe00; // cmode = 0b1110
3345     Inst.addOperand(MCOperand::createImm(B));
3346   }
3347 
3348   void addNEONinvi8ReplicateOperands(MCInst &Inst, unsigned N) const {
3349     assert(N == 1 && "Invalid number of operands!");
3350     addNEONi8ReplicateOperands(Inst, true);
3351   }
3352 
3353   static unsigned encodeNeonVMOVImmediate(unsigned Value) {
3354     if (Value >= 256 && Value <= 0xffff)
3355       Value = (Value >> 8) | ((Value & 0xff) ? 0xc00 : 0x200);
3356     else if (Value > 0xffff && Value <= 0xffffff)
3357       Value = (Value >> 16) | ((Value & 0xff) ? 0xd00 : 0x400);
3358     else if (Value > 0xffffff)
3359       Value = (Value >> 24) | 0x600;
3360     return Value;
3361   }
3362 
3363   void addNEONi32vmovOperands(MCInst &Inst, unsigned N) const {
3364     assert(N == 1 && "Invalid number of operands!");
3365     // The immediate encodes the type of constant as well as the value.
3366     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
3367     unsigned Value = encodeNeonVMOVImmediate(CE->getValue());
3368     Inst.addOperand(MCOperand::createImm(Value));
3369   }
3370 
3371   void addNEONvmovi8ReplicateOperands(MCInst &Inst, unsigned N) const {
3372     assert(N == 1 && "Invalid number of operands!");
3373     addNEONi8ReplicateOperands(Inst, false);
3374   }
3375 
3376   void addNEONvmovi16ReplicateOperands(MCInst &Inst, unsigned N) const {
3377     assert(N == 1 && "Invalid number of operands!");
3378     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
3379     assert((Inst.getOpcode() == ARM::VMOVv4i16 ||
3380             Inst.getOpcode() == ARM::VMOVv8i16 ||
3381             Inst.getOpcode() == ARM::VMVNv4i16 ||
3382             Inst.getOpcode() == ARM::VMVNv8i16) &&
3383           "All instructions that want to replicate non-zero half-word "
3384           "always must be replaced with V{MOV,MVN}v{4,8}i16.");
3385     uint64_t Value = CE->getValue();
3386     unsigned Elem = Value & 0xffff;
3387     if (Elem >= 256)
3388       Elem = (Elem >> 8) | 0x200;
3389     Inst.addOperand(MCOperand::createImm(Elem));
3390   }
3391 
3392   void addNEONi32vmovNegOperands(MCInst &Inst, unsigned N) const {
3393     assert(N == 1 && "Invalid number of operands!");
3394     // The immediate encodes the type of constant as well as the value.
3395     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
3396     unsigned Value = encodeNeonVMOVImmediate(~CE->getValue());
3397     Inst.addOperand(MCOperand::createImm(Value));
3398   }
3399 
3400   void addNEONvmovi32ReplicateOperands(MCInst &Inst, unsigned N) const {
3401     assert(N == 1 && "Invalid number of operands!");
3402     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
3403     assert((Inst.getOpcode() == ARM::VMOVv2i32 ||
3404             Inst.getOpcode() == ARM::VMOVv4i32 ||
3405             Inst.getOpcode() == ARM::VMVNv2i32 ||
3406             Inst.getOpcode() == ARM::VMVNv4i32) &&
3407           "All instructions that want to replicate non-zero word "
3408           "always must be replaced with V{MOV,MVN}v{2,4}i32.");
3409     uint64_t Value = CE->getValue();
3410     unsigned Elem = encodeNeonVMOVImmediate(Value & 0xffffffff);
3411     Inst.addOperand(MCOperand::createImm(Elem));
3412   }
3413 
3414   void addNEONi64splatOperands(MCInst &Inst, unsigned N) const {
3415     assert(N == 1 && "Invalid number of operands!");
3416     // The immediate encodes the type of constant as well as the value.
3417     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
3418     uint64_t Value = CE->getValue();
3419     unsigned Imm = 0;
3420     for (unsigned i = 0; i < 8; ++i, Value >>= 8) {
3421       Imm |= (Value & 1) << i;
3422     }
3423     Inst.addOperand(MCOperand::createImm(Imm | 0x1e00));
3424   }
3425 
3426   void addComplexRotationEvenOperands(MCInst &Inst, unsigned N) const {
3427     assert(N == 1 && "Invalid number of operands!");
3428     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
3429     Inst.addOperand(MCOperand::createImm(CE->getValue() / 90));
3430   }
3431 
3432   void addComplexRotationOddOperands(MCInst &Inst, unsigned N) const {
3433     assert(N == 1 && "Invalid number of operands!");
3434     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
3435     Inst.addOperand(MCOperand::createImm((CE->getValue() - 90) / 180));
3436   }
3437 
3438   void addMveSaturateOperands(MCInst &Inst, unsigned N) const {
3439     assert(N == 1 && "Invalid number of operands!");
3440     const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
3441     unsigned Imm = CE->getValue();
3442     assert((Imm == 48 || Imm == 64) && "Invalid saturate operand");
3443     Inst.addOperand(MCOperand::createImm(Imm == 48 ? 1 : 0));
3444   }
3445 
3446   void print(raw_ostream &OS) const override;
3447 
3448   static std::unique_ptr<ARMOperand> CreateITMask(unsigned Mask, SMLoc S) {
3449     auto Op = std::make_unique<ARMOperand>(k_ITCondMask);
3450     Op->ITMask.Mask = Mask;
3451     Op->StartLoc = S;
3452     Op->EndLoc = S;
3453     return Op;
3454   }
3455 
3456   static std::unique_ptr<ARMOperand> CreateCondCode(ARMCC::CondCodes CC,
3457                                                     SMLoc S) {
3458     auto Op = std::make_unique<ARMOperand>(k_CondCode);
3459     Op->CC.Val = CC;
3460     Op->StartLoc = S;
3461     Op->EndLoc = S;
3462     return Op;
3463   }
3464 
3465   static std::unique_ptr<ARMOperand> CreateVPTPred(ARMVCC::VPTCodes CC,
3466                                                    SMLoc S) {
3467     auto Op = std::make_unique<ARMOperand>(k_VPTPred);
3468     Op->VCC.Val = CC;
3469     Op->StartLoc = S;
3470     Op->EndLoc = S;
3471     return Op;
3472   }
3473 
3474   static std::unique_ptr<ARMOperand> CreateCoprocNum(unsigned CopVal, SMLoc S) {
3475     auto Op = std::make_unique<ARMOperand>(k_CoprocNum);
3476     Op->Cop.Val = CopVal;
3477     Op->StartLoc = S;
3478     Op->EndLoc = S;
3479     return Op;
3480   }
3481 
3482   static std::unique_ptr<ARMOperand> CreateCoprocReg(unsigned CopVal, SMLoc S) {
3483     auto Op = std::make_unique<ARMOperand>(k_CoprocReg);
3484     Op->Cop.Val = CopVal;
3485     Op->StartLoc = S;
3486     Op->EndLoc = S;
3487     return Op;
3488   }
3489 
3490   static std::unique_ptr<ARMOperand> CreateCoprocOption(unsigned Val, SMLoc S,
3491                                                         SMLoc E) {
3492     auto Op = std::make_unique<ARMOperand>(k_CoprocOption);
3493     Op->Cop.Val = Val;
3494     Op->StartLoc = S;
3495     Op->EndLoc = E;
3496     return Op;
3497   }
3498 
3499   static std::unique_ptr<ARMOperand> CreateCCOut(unsigned RegNum, SMLoc S) {
3500     auto Op = std::make_unique<ARMOperand>(k_CCOut);
3501     Op->Reg.RegNum = RegNum;
3502     Op->StartLoc = S;
3503     Op->EndLoc = S;
3504     return Op;
3505   }
3506 
3507   static std::unique_ptr<ARMOperand> CreateToken(StringRef Str, SMLoc S) {
3508     auto Op = std::make_unique<ARMOperand>(k_Token);
3509     Op->Tok.Data = Str.data();
3510     Op->Tok.Length = Str.size();
3511     Op->StartLoc = S;
3512     Op->EndLoc = S;
3513     return Op;
3514   }
3515 
3516   static std::unique_ptr<ARMOperand> CreateReg(unsigned RegNum, SMLoc S,
3517                                                SMLoc E) {
3518     auto Op = std::make_unique<ARMOperand>(k_Register);
3519     Op->Reg.RegNum = RegNum;
3520     Op->StartLoc = S;
3521     Op->EndLoc = E;
3522     return Op;
3523   }
3524 
3525   static std::unique_ptr<ARMOperand>
3526   CreateShiftedRegister(ARM_AM::ShiftOpc ShTy, unsigned SrcReg,
3527                         unsigned ShiftReg, unsigned ShiftImm, SMLoc S,
3528                         SMLoc E) {
3529     auto Op = std::make_unique<ARMOperand>(k_ShiftedRegister);
3530     Op->RegShiftedReg.ShiftTy = ShTy;
3531     Op->RegShiftedReg.SrcReg = SrcReg;
3532     Op->RegShiftedReg.ShiftReg = ShiftReg;
3533     Op->RegShiftedReg.ShiftImm = ShiftImm;
3534     Op->StartLoc = S;
3535     Op->EndLoc = E;
3536     return Op;
3537   }
3538 
3539   static std::unique_ptr<ARMOperand>
3540   CreateShiftedImmediate(ARM_AM::ShiftOpc ShTy, unsigned SrcReg,
3541                          unsigned ShiftImm, SMLoc S, SMLoc E) {
3542     auto Op = std::make_unique<ARMOperand>(k_ShiftedImmediate);
3543     Op->RegShiftedImm.ShiftTy = ShTy;
3544     Op->RegShiftedImm.SrcReg = SrcReg;
3545     Op->RegShiftedImm.ShiftImm = ShiftImm;
3546     Op->StartLoc = S;
3547     Op->EndLoc = E;
3548     return Op;
3549   }
3550 
3551   static std::unique_ptr<ARMOperand> CreateShifterImm(bool isASR, unsigned Imm,
3552                                                       SMLoc S, SMLoc E) {
3553     auto Op = std::make_unique<ARMOperand>(k_ShifterImmediate);
3554     Op->ShifterImm.isASR = isASR;
3555     Op->ShifterImm.Imm = Imm;
3556     Op->StartLoc = S;
3557     Op->EndLoc = E;
3558     return Op;
3559   }
3560 
3561   static std::unique_ptr<ARMOperand> CreateRotImm(unsigned Imm, SMLoc S,
3562                                                   SMLoc E) {
3563     auto Op = std::make_unique<ARMOperand>(k_RotateImmediate);
3564     Op->RotImm.Imm = Imm;
3565     Op->StartLoc = S;
3566     Op->EndLoc = E;
3567     return Op;
3568   }
3569 
3570   static std::unique_ptr<ARMOperand> CreateModImm(unsigned Bits, unsigned Rot,
3571                                                   SMLoc S, SMLoc E) {
3572     auto Op = std::make_unique<ARMOperand>(k_ModifiedImmediate);
3573     Op->ModImm.Bits = Bits;
3574     Op->ModImm.Rot = Rot;
3575     Op->StartLoc = S;
3576     Op->EndLoc = E;
3577     return Op;
3578   }
3579 
3580   static std::unique_ptr<ARMOperand>
3581   CreateConstantPoolImm(const MCExpr *Val, SMLoc S, SMLoc E) {
3582     auto Op = std::make_unique<ARMOperand>(k_ConstantPoolImmediate);
3583     Op->Imm.Val = Val;
3584     Op->StartLoc = S;
3585     Op->EndLoc = E;
3586     return Op;
3587   }
3588 
3589   static std::unique_ptr<ARMOperand>
3590   CreateBitfield(unsigned LSB, unsigned Width, SMLoc S, SMLoc E) {
3591     auto Op = std::make_unique<ARMOperand>(k_BitfieldDescriptor);
3592     Op->Bitfield.LSB = LSB;
3593     Op->Bitfield.Width = Width;
3594     Op->StartLoc = S;
3595     Op->EndLoc = E;
3596     return Op;
3597   }
3598 
3599   static std::unique_ptr<ARMOperand>
3600   CreateRegList(SmallVectorImpl<std::pair<unsigned, unsigned>> &Regs,
3601                 SMLoc StartLoc, SMLoc EndLoc) {
3602     assert(Regs.size() > 0 && "RegList contains no registers?");
3603     KindTy Kind = k_RegisterList;
3604 
3605     if (ARMMCRegisterClasses[ARM::DPRRegClassID].contains(
3606             Regs.front().second)) {
3607       if (Regs.back().second == ARM::VPR)
3608         Kind = k_FPDRegisterListWithVPR;
3609       else
3610         Kind = k_DPRRegisterList;
3611     } else if (ARMMCRegisterClasses[ARM::SPRRegClassID].contains(
3612                    Regs.front().second)) {
3613       if (Regs.back().second == ARM::VPR)
3614         Kind = k_FPSRegisterListWithVPR;
3615       else
3616         Kind = k_SPRRegisterList;
3617     }
3618 
3619     if (Kind == k_RegisterList && Regs.back().second == ARM::APSR)
3620       Kind = k_RegisterListWithAPSR;
3621 
3622     assert(std::is_sorted(Regs.begin(), Regs.end()) &&
3623            "Register list must be sorted by encoding");
3624 
3625     auto Op = std::make_unique<ARMOperand>(Kind);
3626     for (const auto &P : Regs)
3627       Op->Registers.push_back(P.second);
3628 
3629     Op->StartLoc = StartLoc;
3630     Op->EndLoc = EndLoc;
3631     return Op;
3632   }
3633 
3634   static std::unique_ptr<ARMOperand> CreateVectorList(unsigned RegNum,
3635                                                       unsigned Count,
3636                                                       bool isDoubleSpaced,
3637                                                       SMLoc S, SMLoc E) {
3638     auto Op = std::make_unique<ARMOperand>(k_VectorList);
3639     Op->VectorList.RegNum = RegNum;
3640     Op->VectorList.Count = Count;
3641     Op->VectorList.isDoubleSpaced = isDoubleSpaced;
3642     Op->StartLoc = S;
3643     Op->EndLoc = E;
3644     return Op;
3645   }
3646 
3647   static std::unique_ptr<ARMOperand>
3648   CreateVectorListAllLanes(unsigned RegNum, unsigned Count, bool isDoubleSpaced,
3649                            SMLoc S, SMLoc E) {
3650     auto Op = std::make_unique<ARMOperand>(k_VectorListAllLanes);
3651     Op->VectorList.RegNum = RegNum;
3652     Op->VectorList.Count = Count;
3653     Op->VectorList.isDoubleSpaced = isDoubleSpaced;
3654     Op->StartLoc = S;
3655     Op->EndLoc = E;
3656     return Op;
3657   }
3658 
3659   static std::unique_ptr<ARMOperand>
3660   CreateVectorListIndexed(unsigned RegNum, unsigned Count, unsigned Index,
3661                           bool isDoubleSpaced, SMLoc S, SMLoc E) {
3662     auto Op = std::make_unique<ARMOperand>(k_VectorListIndexed);
3663     Op->VectorList.RegNum = RegNum;
3664     Op->VectorList.Count = Count;
3665     Op->VectorList.LaneIndex = Index;
3666     Op->VectorList.isDoubleSpaced = isDoubleSpaced;
3667     Op->StartLoc = S;
3668     Op->EndLoc = E;
3669     return Op;
3670   }
3671 
3672   static std::unique_ptr<ARMOperand>
3673   CreateVectorIndex(unsigned Idx, SMLoc S, SMLoc E, MCContext &Ctx) {
3674     auto Op = std::make_unique<ARMOperand>(k_VectorIndex);
3675     Op->VectorIndex.Val = Idx;
3676     Op->StartLoc = S;
3677     Op->EndLoc = E;
3678     return Op;
3679   }
3680 
3681   static std::unique_ptr<ARMOperand> CreateImm(const MCExpr *Val, SMLoc S,
3682                                                SMLoc E) {
3683     auto Op = std::make_unique<ARMOperand>(k_Immediate);
3684     Op->Imm.Val = Val;
3685     Op->StartLoc = S;
3686     Op->EndLoc = E;
3687     return Op;
3688   }
3689 
3690   static std::unique_ptr<ARMOperand>
3691   CreateMem(unsigned BaseRegNum, const MCConstantExpr *OffsetImm,
3692             unsigned OffsetRegNum, ARM_AM::ShiftOpc ShiftType,
3693             unsigned ShiftImm, unsigned Alignment, bool isNegative, SMLoc S,
3694             SMLoc E, SMLoc AlignmentLoc = SMLoc()) {
3695     auto Op = std::make_unique<ARMOperand>(k_Memory);
3696     Op->Memory.BaseRegNum = BaseRegNum;
3697     Op->Memory.OffsetImm = OffsetImm;
3698     Op->Memory.OffsetRegNum = OffsetRegNum;
3699     Op->Memory.ShiftType = ShiftType;
3700     Op->Memory.ShiftImm = ShiftImm;
3701     Op->Memory.Alignment = Alignment;
3702     Op->Memory.isNegative = isNegative;
3703     Op->StartLoc = S;
3704     Op->EndLoc = E;
3705     Op->AlignmentLoc = AlignmentLoc;
3706     return Op;
3707   }
3708 
3709   static std::unique_ptr<ARMOperand>
3710   CreatePostIdxReg(unsigned RegNum, bool isAdd, ARM_AM::ShiftOpc ShiftTy,
3711                    unsigned ShiftImm, SMLoc S, SMLoc E) {
3712     auto Op = std::make_unique<ARMOperand>(k_PostIndexRegister);
3713     Op->PostIdxReg.RegNum = RegNum;
3714     Op->PostIdxReg.isAdd = isAdd;
3715     Op->PostIdxReg.ShiftTy = ShiftTy;
3716     Op->PostIdxReg.ShiftImm = ShiftImm;
3717     Op->StartLoc = S;
3718     Op->EndLoc = E;
3719     return Op;
3720   }
3721 
3722   static std::unique_ptr<ARMOperand> CreateMemBarrierOpt(ARM_MB::MemBOpt Opt,
3723                                                          SMLoc S) {
3724     auto Op = std::make_unique<ARMOperand>(k_MemBarrierOpt);
3725     Op->MBOpt.Val = Opt;
3726     Op->StartLoc = S;
3727     Op->EndLoc = S;
3728     return Op;
3729   }
3730 
3731   static std::unique_ptr<ARMOperand>
3732   CreateInstSyncBarrierOpt(ARM_ISB::InstSyncBOpt Opt, SMLoc S) {
3733     auto Op = std::make_unique<ARMOperand>(k_InstSyncBarrierOpt);
3734     Op->ISBOpt.Val = Opt;
3735     Op->StartLoc = S;
3736     Op->EndLoc = S;
3737     return Op;
3738   }
3739 
3740   static std::unique_ptr<ARMOperand>
3741   CreateTraceSyncBarrierOpt(ARM_TSB::TraceSyncBOpt Opt, SMLoc S) {
3742     auto Op = std::make_unique<ARMOperand>(k_TraceSyncBarrierOpt);
3743     Op->TSBOpt.Val = Opt;
3744     Op->StartLoc = S;
3745     Op->EndLoc = S;
3746     return Op;
3747   }
3748 
3749   static std::unique_ptr<ARMOperand> CreateProcIFlags(ARM_PROC::IFlags IFlags,
3750                                                       SMLoc S) {
3751     auto Op = std::make_unique<ARMOperand>(k_ProcIFlags);
3752     Op->IFlags.Val = IFlags;
3753     Op->StartLoc = S;
3754     Op->EndLoc = S;
3755     return Op;
3756   }
3757 
3758   static std::unique_ptr<ARMOperand> CreateMSRMask(unsigned MMask, SMLoc S) {
3759     auto Op = std::make_unique<ARMOperand>(k_MSRMask);
3760     Op->MMask.Val = MMask;
3761     Op->StartLoc = S;
3762     Op->EndLoc = S;
3763     return Op;
3764   }
3765 
3766   static std::unique_ptr<ARMOperand> CreateBankedReg(unsigned Reg, SMLoc S) {
3767     auto Op = std::make_unique<ARMOperand>(k_BankedReg);
3768     Op->BankedReg.Val = Reg;
3769     Op->StartLoc = S;
3770     Op->EndLoc = S;
3771     return Op;
3772   }
3773 };
3774 
3775 } // end anonymous namespace.
3776 
3777 void ARMOperand::print(raw_ostream &OS) const {
3778   auto RegName = [](unsigned Reg) {
3779     if (Reg)
3780       return ARMInstPrinter::getRegisterName(Reg);
3781     else
3782       return "noreg";
3783   };
3784 
3785   switch (Kind) {
3786   case k_CondCode:
3787     OS << "<ARMCC::" << ARMCondCodeToString(getCondCode()) << ">";
3788     break;
3789   case k_VPTPred:
3790     OS << "<ARMVCC::" << ARMVPTPredToString(getVPTPred()) << ">";
3791     break;
3792   case k_CCOut:
3793     OS << "<ccout " << RegName(getReg()) << ">";
3794     break;
3795   case k_ITCondMask: {
3796     static const char *const MaskStr[] = {
3797       "(invalid)", "(tttt)", "(ttt)", "(ttte)",
3798       "(tt)",      "(ttet)", "(tte)", "(ttee)",
3799       "(t)",       "(tett)", "(tet)", "(tete)",
3800       "(te)",      "(teet)", "(tee)", "(teee)",
3801     };
3802     assert((ITMask.Mask & 0xf) == ITMask.Mask);
3803     OS << "<it-mask " << MaskStr[ITMask.Mask] << ">";
3804     break;
3805   }
3806   case k_CoprocNum:
3807     OS << "<coprocessor number: " << getCoproc() << ">";
3808     break;
3809   case k_CoprocReg:
3810     OS << "<coprocessor register: " << getCoproc() << ">";
3811     break;
3812   case k_CoprocOption:
3813     OS << "<coprocessor option: " << CoprocOption.Val << ">";
3814     break;
3815   case k_MSRMask:
3816     OS << "<mask: " << getMSRMask() << ">";
3817     break;
3818   case k_BankedReg:
3819     OS << "<banked reg: " << getBankedReg() << ">";
3820     break;
3821   case k_Immediate:
3822     OS << *getImm();
3823     break;
3824   case k_MemBarrierOpt:
3825     OS << "<ARM_MB::" << MemBOptToString(getMemBarrierOpt(), false) << ">";
3826     break;
3827   case k_InstSyncBarrierOpt:
3828     OS << "<ARM_ISB::" << InstSyncBOptToString(getInstSyncBarrierOpt()) << ">";
3829     break;
3830   case k_TraceSyncBarrierOpt:
3831     OS << "<ARM_TSB::" << TraceSyncBOptToString(getTraceSyncBarrierOpt()) << ">";
3832     break;
3833   case k_Memory:
3834     OS << "<memory";
3835     if (Memory.BaseRegNum)
3836       OS << " base:" << RegName(Memory.BaseRegNum);
3837     if (Memory.OffsetImm)
3838       OS << " offset-imm:" << *Memory.OffsetImm;
3839     if (Memory.OffsetRegNum)
3840       OS << " offset-reg:" << (Memory.isNegative ? "-" : "")
3841          << RegName(Memory.OffsetRegNum);
3842     if (Memory.ShiftType != ARM_AM::no_shift) {
3843       OS << " shift-type:" << ARM_AM::getShiftOpcStr(Memory.ShiftType);
3844       OS << " shift-imm:" << Memory.ShiftImm;
3845     }
3846     if (Memory.Alignment)
3847       OS << " alignment:" << Memory.Alignment;
3848     OS << ">";
3849     break;
3850   case k_PostIndexRegister:
3851     OS << "post-idx register " << (PostIdxReg.isAdd ? "" : "-")
3852        << RegName(PostIdxReg.RegNum);
3853     if (PostIdxReg.ShiftTy != ARM_AM::no_shift)
3854       OS << ARM_AM::getShiftOpcStr(PostIdxReg.ShiftTy) << " "
3855          << PostIdxReg.ShiftImm;
3856     OS << ">";
3857     break;
3858   case k_ProcIFlags: {
3859     OS << "<ARM_PROC::";
3860     unsigned IFlags = getProcIFlags();
3861     for (int i=2; i >= 0; --i)
3862       if (IFlags & (1 << i))
3863         OS << ARM_PROC::IFlagsToString(1 << i);
3864     OS << ">";
3865     break;
3866   }
3867   case k_Register:
3868     OS << "<register " << RegName(getReg()) << ">";
3869     break;
3870   case k_ShifterImmediate:
3871     OS << "<shift " << (ShifterImm.isASR ? "asr" : "lsl")
3872        << " #" << ShifterImm.Imm << ">";
3873     break;
3874   case k_ShiftedRegister:
3875     OS << "<so_reg_reg " << RegName(RegShiftedReg.SrcReg) << " "
3876        << ARM_AM::getShiftOpcStr(RegShiftedReg.ShiftTy) << " "
3877        << RegName(RegShiftedReg.ShiftReg) << ">";
3878     break;
3879   case k_ShiftedImmediate:
3880     OS << "<so_reg_imm " << RegName(RegShiftedImm.SrcReg) << " "
3881        << ARM_AM::getShiftOpcStr(RegShiftedImm.ShiftTy) << " #"
3882        << RegShiftedImm.ShiftImm << ">";
3883     break;
3884   case k_RotateImmediate:
3885     OS << "<ror " << " #" << (RotImm.Imm * 8) << ">";
3886     break;
3887   case k_ModifiedImmediate:
3888     OS << "<mod_imm #" << ModImm.Bits << ", #"
3889        <<  ModImm.Rot << ")>";
3890     break;
3891   case k_ConstantPoolImmediate:
3892     OS << "<constant_pool_imm #" << *getConstantPoolImm();
3893     break;
3894   case k_BitfieldDescriptor:
3895     OS << "<bitfield " << "lsb: " << Bitfield.LSB
3896        << ", width: " << Bitfield.Width << ">";
3897     break;
3898   case k_RegisterList:
3899   case k_RegisterListWithAPSR:
3900   case k_DPRRegisterList:
3901   case k_SPRRegisterList:
3902   case k_FPSRegisterListWithVPR:
3903   case k_FPDRegisterListWithVPR: {
3904     OS << "<register_list ";
3905 
3906     const SmallVectorImpl<unsigned> &RegList = getRegList();
3907     for (SmallVectorImpl<unsigned>::const_iterator
3908            I = RegList.begin(), E = RegList.end(); I != E; ) {
3909       OS << RegName(*I);
3910       if (++I < E) OS << ", ";
3911     }
3912 
3913     OS << ">";
3914     break;
3915   }
3916   case k_VectorList:
3917     OS << "<vector_list " << VectorList.Count << " * "
3918        << RegName(VectorList.RegNum) << ">";
3919     break;
3920   case k_VectorListAllLanes:
3921     OS << "<vector_list(all lanes) " << VectorList.Count << " * "
3922        << RegName(VectorList.RegNum) << ">";
3923     break;
3924   case k_VectorListIndexed:
3925     OS << "<vector_list(lane " << VectorList.LaneIndex << ") "
3926        << VectorList.Count << " * " << RegName(VectorList.RegNum) << ">";
3927     break;
3928   case k_Token:
3929     OS << "'" << getToken() << "'";
3930     break;
3931   case k_VectorIndex:
3932     OS << "<vectorindex " << getVectorIndex() << ">";
3933     break;
3934   }
3935 }
3936 
3937 /// @name Auto-generated Match Functions
3938 /// {
3939 
3940 static unsigned MatchRegisterName(StringRef Name);
3941 
3942 /// }
3943 
3944 bool ARMAsmParser::ParseRegister(unsigned &RegNo,
3945                                  SMLoc &StartLoc, SMLoc &EndLoc) {
3946   const AsmToken &Tok = getParser().getTok();
3947   StartLoc = Tok.getLoc();
3948   EndLoc = Tok.getEndLoc();
3949   RegNo = tryParseRegister();
3950 
3951   return (RegNo == (unsigned)-1);
3952 }
3953 
3954 OperandMatchResultTy ARMAsmParser::tryParseRegister(unsigned &RegNo,
3955                                                     SMLoc &StartLoc,
3956                                                     SMLoc &EndLoc) {
3957   if (ParseRegister(RegNo, StartLoc, EndLoc))
3958     return MatchOperand_NoMatch;
3959   return MatchOperand_Success;
3960 }
3961 
3962 /// Try to parse a register name.  The token must be an Identifier when called,
3963 /// and if it is a register name the token is eaten and the register number is
3964 /// returned.  Otherwise return -1.
3965 int ARMAsmParser::tryParseRegister() {
3966   MCAsmParser &Parser = getParser();
3967   const AsmToken &Tok = Parser.getTok();
3968   if (Tok.isNot(AsmToken::Identifier)) return -1;
3969 
3970   std::string lowerCase = Tok.getString().lower();
3971   unsigned RegNum = MatchRegisterName(lowerCase);
3972   if (!RegNum) {
3973     RegNum = StringSwitch<unsigned>(lowerCase)
3974       .Case("r13", ARM::SP)
3975       .Case("r14", ARM::LR)
3976       .Case("r15", ARM::PC)
3977       .Case("ip", ARM::R12)
3978       // Additional register name aliases for 'gas' compatibility.
3979       .Case("a1", ARM::R0)
3980       .Case("a2", ARM::R1)
3981       .Case("a3", ARM::R2)
3982       .Case("a4", ARM::R3)
3983       .Case("v1", ARM::R4)
3984       .Case("v2", ARM::R5)
3985       .Case("v3", ARM::R6)
3986       .Case("v4", ARM::R7)
3987       .Case("v5", ARM::R8)
3988       .Case("v6", ARM::R9)
3989       .Case("v7", ARM::R10)
3990       .Case("v8", ARM::R11)
3991       .Case("sb", ARM::R9)
3992       .Case("sl", ARM::R10)
3993       .Case("fp", ARM::R11)
3994       .Default(0);
3995   }
3996   if (!RegNum) {
3997     // Check for aliases registered via .req. Canonicalize to lower case.
3998     // That's more consistent since register names are case insensitive, and
3999     // it's how the original entry was passed in from MC/MCParser/AsmParser.
4000     StringMap<unsigned>::const_iterator Entry = RegisterReqs.find(lowerCase);
4001     // If no match, return failure.
4002     if (Entry == RegisterReqs.end())
4003       return -1;
4004     Parser.Lex(); // Eat identifier token.
4005     return Entry->getValue();
4006   }
4007 
4008   // Some FPUs only have 16 D registers, so D16-D31 are invalid
4009   if (!hasD32() && RegNum >= ARM::D16 && RegNum <= ARM::D31)
4010     return -1;
4011 
4012   Parser.Lex(); // Eat identifier token.
4013 
4014   return RegNum;
4015 }
4016 
4017 // Try to parse a shifter  (e.g., "lsl <amt>"). On success, return 0.
4018 // If a recoverable error occurs, return 1. If an irrecoverable error
4019 // occurs, return -1. An irrecoverable error is one where tokens have been
4020 // consumed in the process of trying to parse the shifter (i.e., when it is
4021 // indeed a shifter operand, but malformed).
4022 int ARMAsmParser::tryParseShiftRegister(OperandVector &Operands) {
4023   MCAsmParser &Parser = getParser();
4024   SMLoc S = Parser.getTok().getLoc();
4025   const AsmToken &Tok = Parser.getTok();
4026   if (Tok.isNot(AsmToken::Identifier))
4027     return -1;
4028 
4029   std::string lowerCase = Tok.getString().lower();
4030   ARM_AM::ShiftOpc ShiftTy = StringSwitch<ARM_AM::ShiftOpc>(lowerCase)
4031       .Case("asl", ARM_AM::lsl)
4032       .Case("lsl", ARM_AM::lsl)
4033       .Case("lsr", ARM_AM::lsr)
4034       .Case("asr", ARM_AM::asr)
4035       .Case("ror", ARM_AM::ror)
4036       .Case("rrx", ARM_AM::rrx)
4037       .Default(ARM_AM::no_shift);
4038 
4039   if (ShiftTy == ARM_AM::no_shift)
4040     return 1;
4041 
4042   Parser.Lex(); // Eat the operator.
4043 
4044   // The source register for the shift has already been added to the
4045   // operand list, so we need to pop it off and combine it into the shifted
4046   // register operand instead.
4047   std::unique_ptr<ARMOperand> PrevOp(
4048       (ARMOperand *)Operands.pop_back_val().release());
4049   if (!PrevOp->isReg())
4050     return Error(PrevOp->getStartLoc(), "shift must be of a register");
4051   int SrcReg = PrevOp->getReg();
4052 
4053   SMLoc EndLoc;
4054   int64_t Imm = 0;
4055   int ShiftReg = 0;
4056   if (ShiftTy == ARM_AM::rrx) {
4057     // RRX Doesn't have an explicit shift amount. The encoder expects
4058     // the shift register to be the same as the source register. Seems odd,
4059     // but OK.
4060     ShiftReg = SrcReg;
4061   } else {
4062     // Figure out if this is shifted by a constant or a register (for non-RRX).
4063     if (Parser.getTok().is(AsmToken::Hash) ||
4064         Parser.getTok().is(AsmToken::Dollar)) {
4065       Parser.Lex(); // Eat hash.
4066       SMLoc ImmLoc = Parser.getTok().getLoc();
4067       const MCExpr *ShiftExpr = nullptr;
4068       if (getParser().parseExpression(ShiftExpr, EndLoc)) {
4069         Error(ImmLoc, "invalid immediate shift value");
4070         return -1;
4071       }
4072       // The expression must be evaluatable as an immediate.
4073       const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ShiftExpr);
4074       if (!CE) {
4075         Error(ImmLoc, "invalid immediate shift value");
4076         return -1;
4077       }
4078       // Range check the immediate.
4079       // lsl, ror: 0 <= imm <= 31
4080       // lsr, asr: 0 <= imm <= 32
4081       Imm = CE->getValue();
4082       if (Imm < 0 ||
4083           ((ShiftTy == ARM_AM::lsl || ShiftTy == ARM_AM::ror) && Imm > 31) ||
4084           ((ShiftTy == ARM_AM::lsr || ShiftTy == ARM_AM::asr) && Imm > 32)) {
4085         Error(ImmLoc, "immediate shift value out of range");
4086         return -1;
4087       }
4088       // shift by zero is a nop. Always send it through as lsl.
4089       // ('as' compatibility)
4090       if (Imm == 0)
4091         ShiftTy = ARM_AM::lsl;
4092     } else if (Parser.getTok().is(AsmToken::Identifier)) {
4093       SMLoc L = Parser.getTok().getLoc();
4094       EndLoc = Parser.getTok().getEndLoc();
4095       ShiftReg = tryParseRegister();
4096       if (ShiftReg == -1) {
4097         Error(L, "expected immediate or register in shift operand");
4098         return -1;
4099       }
4100     } else {
4101       Error(Parser.getTok().getLoc(),
4102             "expected immediate or register in shift operand");
4103       return -1;
4104     }
4105   }
4106 
4107   if (ShiftReg && ShiftTy != ARM_AM::rrx)
4108     Operands.push_back(ARMOperand::CreateShiftedRegister(ShiftTy, SrcReg,
4109                                                          ShiftReg, Imm,
4110                                                          S, EndLoc));
4111   else
4112     Operands.push_back(ARMOperand::CreateShiftedImmediate(ShiftTy, SrcReg, Imm,
4113                                                           S, EndLoc));
4114 
4115   return 0;
4116 }
4117 
4118 /// Try to parse a register name.  The token must be an Identifier when called.
4119 /// If it's a register, an AsmOperand is created. Another AsmOperand is created
4120 /// if there is a "writeback". 'true' if it's not a register.
4121 ///
4122 /// TODO this is likely to change to allow different register types and or to
4123 /// parse for a specific register type.
4124 bool ARMAsmParser::tryParseRegisterWithWriteBack(OperandVector &Operands) {
4125   MCAsmParser &Parser = getParser();
4126   SMLoc RegStartLoc = Parser.getTok().getLoc();
4127   SMLoc RegEndLoc = Parser.getTok().getEndLoc();
4128   int RegNo = tryParseRegister();
4129   if (RegNo == -1)
4130     return true;
4131 
4132   Operands.push_back(ARMOperand::CreateReg(RegNo, RegStartLoc, RegEndLoc));
4133 
4134   const AsmToken &ExclaimTok = Parser.getTok();
4135   if (ExclaimTok.is(AsmToken::Exclaim)) {
4136     Operands.push_back(ARMOperand::CreateToken(ExclaimTok.getString(),
4137                                                ExclaimTok.getLoc()));
4138     Parser.Lex(); // Eat exclaim token
4139     return false;
4140   }
4141 
4142   // Also check for an index operand. This is only legal for vector registers,
4143   // but that'll get caught OK in operand matching, so we don't need to
4144   // explicitly filter everything else out here.
4145   if (Parser.getTok().is(AsmToken::LBrac)) {
4146     SMLoc SIdx = Parser.getTok().getLoc();
4147     Parser.Lex(); // Eat left bracket token.
4148 
4149     const MCExpr *ImmVal;
4150     if (getParser().parseExpression(ImmVal))
4151       return true;
4152     const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(ImmVal);
4153     if (!MCE)
4154       return TokError("immediate value expected for vector index");
4155 
4156     if (Parser.getTok().isNot(AsmToken::RBrac))
4157       return Error(Parser.getTok().getLoc(), "']' expected");
4158 
4159     SMLoc E = Parser.getTok().getEndLoc();
4160     Parser.Lex(); // Eat right bracket token.
4161 
4162     Operands.push_back(ARMOperand::CreateVectorIndex(MCE->getValue(),
4163                                                      SIdx, E,
4164                                                      getContext()));
4165   }
4166 
4167   return false;
4168 }
4169 
4170 /// MatchCoprocessorOperandName - Try to parse an coprocessor related
4171 /// instruction with a symbolic operand name.
4172 /// We accept "crN" syntax for GAS compatibility.
4173 /// <operand-name> ::= <prefix><number>
4174 /// If CoprocOp is 'c', then:
4175 ///   <prefix> ::= c | cr
4176 /// If CoprocOp is 'p', then :
4177 ///   <prefix> ::= p
4178 /// <number> ::= integer in range [0, 15]
4179 static int MatchCoprocessorOperandName(StringRef Name, char CoprocOp) {
4180   // Use the same layout as the tablegen'erated register name matcher. Ugly,
4181   // but efficient.
4182   if (Name.size() < 2 || Name[0] != CoprocOp)
4183     return -1;
4184   Name = (Name[1] == 'r') ? Name.drop_front(2) : Name.drop_front();
4185 
4186   switch (Name.size()) {
4187   default: return -1;
4188   case 1:
4189     switch (Name[0]) {
4190     default:  return -1;
4191     case '0': return 0;
4192     case '1': return 1;
4193     case '2': return 2;
4194     case '3': return 3;
4195     case '4': return 4;
4196     case '5': return 5;
4197     case '6': return 6;
4198     case '7': return 7;
4199     case '8': return 8;
4200     case '9': return 9;
4201     }
4202   case 2:
4203     if (Name[0] != '1')
4204       return -1;
4205     switch (Name[1]) {
4206     default:  return -1;
4207     // CP10 and CP11 are VFP/NEON and so vector instructions should be used.
4208     // However, old cores (v5/v6) did use them in that way.
4209     case '0': return 10;
4210     case '1': return 11;
4211     case '2': return 12;
4212     case '3': return 13;
4213     case '4': return 14;
4214     case '5': return 15;
4215     }
4216   }
4217 }
4218 
4219 /// parseITCondCode - Try to parse a condition code for an IT instruction.
4220 OperandMatchResultTy
4221 ARMAsmParser::parseITCondCode(OperandVector &Operands) {
4222   MCAsmParser &Parser = getParser();
4223   SMLoc S = Parser.getTok().getLoc();
4224   const AsmToken &Tok = Parser.getTok();
4225   if (!Tok.is(AsmToken::Identifier))
4226     return MatchOperand_NoMatch;
4227   unsigned CC = ARMCondCodeFromString(Tok.getString());
4228   if (CC == ~0U)
4229     return MatchOperand_NoMatch;
4230   Parser.Lex(); // Eat the token.
4231 
4232   Operands.push_back(ARMOperand::CreateCondCode(ARMCC::CondCodes(CC), S));
4233 
4234   return MatchOperand_Success;
4235 }
4236 
4237 /// parseCoprocNumOperand - Try to parse an coprocessor number operand. The
4238 /// token must be an Identifier when called, and if it is a coprocessor
4239 /// number, the token is eaten and the operand is added to the operand list.
4240 OperandMatchResultTy
4241 ARMAsmParser::parseCoprocNumOperand(OperandVector &Operands) {
4242   MCAsmParser &Parser = getParser();
4243   SMLoc S = Parser.getTok().getLoc();
4244   const AsmToken &Tok = Parser.getTok();
4245   if (Tok.isNot(AsmToken::Identifier))
4246     return MatchOperand_NoMatch;
4247 
4248   int Num = MatchCoprocessorOperandName(Tok.getString().lower(), 'p');
4249   if (Num == -1)
4250     return MatchOperand_NoMatch;
4251   if (!isValidCoprocessorNumber(Num, getSTI().getFeatureBits()))
4252     return MatchOperand_NoMatch;
4253 
4254   Parser.Lex(); // Eat identifier token.
4255   Operands.push_back(ARMOperand::CreateCoprocNum(Num, S));
4256   return MatchOperand_Success;
4257 }
4258 
4259 /// parseCoprocRegOperand - Try to parse an coprocessor register operand. The
4260 /// token must be an Identifier when called, and if it is a coprocessor
4261 /// number, the token is eaten and the operand is added to the operand list.
4262 OperandMatchResultTy
4263 ARMAsmParser::parseCoprocRegOperand(OperandVector &Operands) {
4264   MCAsmParser &Parser = getParser();
4265   SMLoc S = Parser.getTok().getLoc();
4266   const AsmToken &Tok = Parser.getTok();
4267   if (Tok.isNot(AsmToken::Identifier))
4268     return MatchOperand_NoMatch;
4269 
4270   int Reg = MatchCoprocessorOperandName(Tok.getString().lower(), 'c');
4271   if (Reg == -1)
4272     return MatchOperand_NoMatch;
4273 
4274   Parser.Lex(); // Eat identifier token.
4275   Operands.push_back(ARMOperand::CreateCoprocReg(Reg, S));
4276   return MatchOperand_Success;
4277 }
4278 
4279 /// parseCoprocOptionOperand - Try to parse an coprocessor option operand.
4280 /// coproc_option : '{' imm0_255 '}'
4281 OperandMatchResultTy
4282 ARMAsmParser::parseCoprocOptionOperand(OperandVector &Operands) {
4283   MCAsmParser &Parser = getParser();
4284   SMLoc S = Parser.getTok().getLoc();
4285 
4286   // If this isn't a '{', this isn't a coprocessor immediate operand.
4287   if (Parser.getTok().isNot(AsmToken::LCurly))
4288     return MatchOperand_NoMatch;
4289   Parser.Lex(); // Eat the '{'
4290 
4291   const MCExpr *Expr;
4292   SMLoc Loc = Parser.getTok().getLoc();
4293   if (getParser().parseExpression(Expr)) {
4294     Error(Loc, "illegal expression");
4295     return MatchOperand_ParseFail;
4296   }
4297   const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr);
4298   if (!CE || CE->getValue() < 0 || CE->getValue() > 255) {
4299     Error(Loc, "coprocessor option must be an immediate in range [0, 255]");
4300     return MatchOperand_ParseFail;
4301   }
4302   int Val = CE->getValue();
4303 
4304   // Check for and consume the closing '}'
4305   if (Parser.getTok().isNot(AsmToken::RCurly))
4306     return MatchOperand_ParseFail;
4307   SMLoc E = Parser.getTok().getEndLoc();
4308   Parser.Lex(); // Eat the '}'
4309 
4310   Operands.push_back(ARMOperand::CreateCoprocOption(Val, S, E));
4311   return MatchOperand_Success;
4312 }
4313 
4314 // For register list parsing, we need to map from raw GPR register numbering
4315 // to the enumeration values. The enumeration values aren't sorted by
4316 // register number due to our using "sp", "lr" and "pc" as canonical names.
4317 static unsigned getNextRegister(unsigned Reg) {
4318   // If this is a GPR, we need to do it manually, otherwise we can rely
4319   // on the sort ordering of the enumeration since the other reg-classes
4320   // are sane.
4321   if (!ARMMCRegisterClasses[ARM::GPRRegClassID].contains(Reg))
4322     return Reg + 1;
4323   switch(Reg) {
4324   default: llvm_unreachable("Invalid GPR number!");
4325   case ARM::R0:  return ARM::R1;  case ARM::R1:  return ARM::R2;
4326   case ARM::R2:  return ARM::R3;  case ARM::R3:  return ARM::R4;
4327   case ARM::R4:  return ARM::R5;  case ARM::R5:  return ARM::R6;
4328   case ARM::R6:  return ARM::R7;  case ARM::R7:  return ARM::R8;
4329   case ARM::R8:  return ARM::R9;  case ARM::R9:  return ARM::R10;
4330   case ARM::R10: return ARM::R11; case ARM::R11: return ARM::R12;
4331   case ARM::R12: return ARM::SP;  case ARM::SP:  return ARM::LR;
4332   case ARM::LR:  return ARM::PC;  case ARM::PC:  return ARM::R0;
4333   }
4334 }
4335 
4336 // Insert an <Encoding, Register> pair in an ordered vector. Return true on
4337 // success, or false, if duplicate encoding found.
4338 static bool
4339 insertNoDuplicates(SmallVectorImpl<std::pair<unsigned, unsigned>> &Regs,
4340                    unsigned Enc, unsigned Reg) {
4341   Regs.emplace_back(Enc, Reg);
4342   for (auto I = Regs.rbegin(), J = I + 1, E = Regs.rend(); J != E; ++I, ++J) {
4343     if (J->first == Enc) {
4344       Regs.erase(J.base());
4345       return false;
4346     }
4347     if (J->first < Enc)
4348       break;
4349     std::swap(*I, *J);
4350   }
4351   return true;
4352 }
4353 
4354 /// Parse a register list.
4355 bool ARMAsmParser::parseRegisterList(OperandVector &Operands,
4356                                      bool EnforceOrder) {
4357   MCAsmParser &Parser = getParser();
4358   if (Parser.getTok().isNot(AsmToken::LCurly))
4359     return TokError("Token is not a Left Curly Brace");
4360   SMLoc S = Parser.getTok().getLoc();
4361   Parser.Lex(); // Eat '{' token.
4362   SMLoc RegLoc = Parser.getTok().getLoc();
4363 
4364   // Check the first register in the list to see what register class
4365   // this is a list of.
4366   int Reg = tryParseRegister();
4367   if (Reg == -1)
4368     return Error(RegLoc, "register expected");
4369 
4370   // The reglist instructions have at most 16 registers, so reserve
4371   // space for that many.
4372   int EReg = 0;
4373   SmallVector<std::pair<unsigned, unsigned>, 16> Registers;
4374 
4375   // Allow Q regs and just interpret them as the two D sub-registers.
4376   if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(Reg)) {
4377     Reg = getDRegFromQReg(Reg);
4378     EReg = MRI->getEncodingValue(Reg);
4379     Registers.emplace_back(EReg, Reg);
4380     ++Reg;
4381   }
4382   const MCRegisterClass *RC;
4383   if (ARMMCRegisterClasses[ARM::GPRRegClassID].contains(Reg))
4384     RC = &ARMMCRegisterClasses[ARM::GPRRegClassID];
4385   else if (ARMMCRegisterClasses[ARM::DPRRegClassID].contains(Reg))
4386     RC = &ARMMCRegisterClasses[ARM::DPRRegClassID];
4387   else if (ARMMCRegisterClasses[ARM::SPRRegClassID].contains(Reg))
4388     RC = &ARMMCRegisterClasses[ARM::SPRRegClassID];
4389   else if (ARMMCRegisterClasses[ARM::GPRwithAPSRnospRegClassID].contains(Reg))
4390     RC = &ARMMCRegisterClasses[ARM::GPRwithAPSRnospRegClassID];
4391   else
4392     return Error(RegLoc, "invalid register in register list");
4393 
4394   // Store the register.
4395   EReg = MRI->getEncodingValue(Reg);
4396   Registers.emplace_back(EReg, Reg);
4397 
4398   // This starts immediately after the first register token in the list,
4399   // so we can see either a comma or a minus (range separator) as a legal
4400   // next token.
4401   while (Parser.getTok().is(AsmToken::Comma) ||
4402          Parser.getTok().is(AsmToken::Minus)) {
4403     if (Parser.getTok().is(AsmToken::Minus)) {
4404       Parser.Lex(); // Eat the minus.
4405       SMLoc AfterMinusLoc = Parser.getTok().getLoc();
4406       int EndReg = tryParseRegister();
4407       if (EndReg == -1)
4408         return Error(AfterMinusLoc, "register expected");
4409       // Allow Q regs and just interpret them as the two D sub-registers.
4410       if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(EndReg))
4411         EndReg = getDRegFromQReg(EndReg) + 1;
4412       // If the register is the same as the start reg, there's nothing
4413       // more to do.
4414       if (Reg == EndReg)
4415         continue;
4416       // The register must be in the same register class as the first.
4417       if (!RC->contains(EndReg))
4418         return Error(AfterMinusLoc, "invalid register in register list");
4419       // Ranges must go from low to high.
4420       if (MRI->getEncodingValue(Reg) > MRI->getEncodingValue(EndReg))
4421         return Error(AfterMinusLoc, "bad range in register list");
4422 
4423       // Add all the registers in the range to the register list.
4424       while (Reg != EndReg) {
4425         Reg = getNextRegister(Reg);
4426         EReg = MRI->getEncodingValue(Reg);
4427         if (!insertNoDuplicates(Registers, EReg, Reg)) {
4428           Warning(AfterMinusLoc, StringRef("duplicated register (") +
4429                                      ARMInstPrinter::getRegisterName(Reg) +
4430                                      ") in register list");
4431         }
4432       }
4433       continue;
4434     }
4435     Parser.Lex(); // Eat the comma.
4436     RegLoc = Parser.getTok().getLoc();
4437     int OldReg = Reg;
4438     const AsmToken RegTok = Parser.getTok();
4439     Reg = tryParseRegister();
4440     if (Reg == -1)
4441       return Error(RegLoc, "register expected");
4442     // Allow Q regs and just interpret them as the two D sub-registers.
4443     bool isQReg = false;
4444     if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(Reg)) {
4445       Reg = getDRegFromQReg(Reg);
4446       isQReg = true;
4447     }
4448     if (!RC->contains(Reg) &&
4449         RC->getID() == ARMMCRegisterClasses[ARM::GPRRegClassID].getID() &&
4450         ARMMCRegisterClasses[ARM::GPRwithAPSRnospRegClassID].contains(Reg)) {
4451       // switch the register classes, as GPRwithAPSRnospRegClassID is a partial
4452       // subset of GPRRegClassId except it contains APSR as well.
4453       RC = &ARMMCRegisterClasses[ARM::GPRwithAPSRnospRegClassID];
4454     }
4455     if (Reg == ARM::VPR &&
4456         (RC == &ARMMCRegisterClasses[ARM::SPRRegClassID] ||
4457          RC == &ARMMCRegisterClasses[ARM::DPRRegClassID] ||
4458          RC == &ARMMCRegisterClasses[ARM::FPWithVPRRegClassID])) {
4459       RC = &ARMMCRegisterClasses[ARM::FPWithVPRRegClassID];
4460       EReg = MRI->getEncodingValue(Reg);
4461       if (!insertNoDuplicates(Registers, EReg, Reg)) {
4462         Warning(RegLoc, "duplicated register (" + RegTok.getString() +
4463                             ") in register list");
4464       }
4465       continue;
4466     }
4467     // The register must be in the same register class as the first.
4468     if (!RC->contains(Reg))
4469       return Error(RegLoc, "invalid register in register list");
4470     // In most cases, the list must be monotonically increasing. An
4471     // exception is CLRM, which is order-independent anyway, so
4472     // there's no potential for confusion if you write clrm {r2,r1}
4473     // instead of clrm {r1,r2}.
4474     if (EnforceOrder &&
4475         MRI->getEncodingValue(Reg) < MRI->getEncodingValue(OldReg)) {
4476       if (ARMMCRegisterClasses[ARM::GPRRegClassID].contains(Reg))
4477         Warning(RegLoc, "register list not in ascending order");
4478       else if (!ARMMCRegisterClasses[ARM::GPRwithAPSRnospRegClassID].contains(Reg))
4479         return Error(RegLoc, "register list not in ascending order");
4480     }
4481     // VFP register lists must also be contiguous.
4482     if (RC != &ARMMCRegisterClasses[ARM::GPRRegClassID] &&
4483         RC != &ARMMCRegisterClasses[ARM::GPRwithAPSRnospRegClassID] &&
4484         Reg != OldReg + 1)
4485       return Error(RegLoc, "non-contiguous register range");
4486     EReg = MRI->getEncodingValue(Reg);
4487     if (!insertNoDuplicates(Registers, EReg, Reg)) {
4488       Warning(RegLoc, "duplicated register (" + RegTok.getString() +
4489                           ") in register list");
4490     }
4491     if (isQReg) {
4492       EReg = MRI->getEncodingValue(++Reg);
4493       Registers.emplace_back(EReg, Reg);
4494     }
4495   }
4496 
4497   if (Parser.getTok().isNot(AsmToken::RCurly))
4498     return Error(Parser.getTok().getLoc(), "'}' expected");
4499   SMLoc E = Parser.getTok().getEndLoc();
4500   Parser.Lex(); // Eat '}' token.
4501 
4502   // Push the register list operand.
4503   Operands.push_back(ARMOperand::CreateRegList(Registers, S, E));
4504 
4505   // The ARM system instruction variants for LDM/STM have a '^' token here.
4506   if (Parser.getTok().is(AsmToken::Caret)) {
4507     Operands.push_back(ARMOperand::CreateToken("^",Parser.getTok().getLoc()));
4508     Parser.Lex(); // Eat '^' token.
4509   }
4510 
4511   return false;
4512 }
4513 
4514 // Helper function to parse the lane index for vector lists.
4515 OperandMatchResultTy ARMAsmParser::
4516 parseVectorLane(VectorLaneTy &LaneKind, unsigned &Index, SMLoc &EndLoc) {
4517   MCAsmParser &Parser = getParser();
4518   Index = 0; // Always return a defined index value.
4519   if (Parser.getTok().is(AsmToken::LBrac)) {
4520     Parser.Lex(); // Eat the '['.
4521     if (Parser.getTok().is(AsmToken::RBrac)) {
4522       // "Dn[]" is the 'all lanes' syntax.
4523       LaneKind = AllLanes;
4524       EndLoc = Parser.getTok().getEndLoc();
4525       Parser.Lex(); // Eat the ']'.
4526       return MatchOperand_Success;
4527     }
4528 
4529     // There's an optional '#' token here. Normally there wouldn't be, but
4530     // inline assemble puts one in, and it's friendly to accept that.
4531     if (Parser.getTok().is(AsmToken::Hash))
4532       Parser.Lex(); // Eat '#' or '$'.
4533 
4534     const MCExpr *LaneIndex;
4535     SMLoc Loc = Parser.getTok().getLoc();
4536     if (getParser().parseExpression(LaneIndex)) {
4537       Error(Loc, "illegal expression");
4538       return MatchOperand_ParseFail;
4539     }
4540     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(LaneIndex);
4541     if (!CE) {
4542       Error(Loc, "lane index must be empty or an integer");
4543       return MatchOperand_ParseFail;
4544     }
4545     if (Parser.getTok().isNot(AsmToken::RBrac)) {
4546       Error(Parser.getTok().getLoc(), "']' expected");
4547       return MatchOperand_ParseFail;
4548     }
4549     EndLoc = Parser.getTok().getEndLoc();
4550     Parser.Lex(); // Eat the ']'.
4551     int64_t Val = CE->getValue();
4552 
4553     // FIXME: Make this range check context sensitive for .8, .16, .32.
4554     if (Val < 0 || Val > 7) {
4555       Error(Parser.getTok().getLoc(), "lane index out of range");
4556       return MatchOperand_ParseFail;
4557     }
4558     Index = Val;
4559     LaneKind = IndexedLane;
4560     return MatchOperand_Success;
4561   }
4562   LaneKind = NoLanes;
4563   return MatchOperand_Success;
4564 }
4565 
4566 // parse a vector register list
4567 OperandMatchResultTy
4568 ARMAsmParser::parseVectorList(OperandVector &Operands) {
4569   MCAsmParser &Parser = getParser();
4570   VectorLaneTy LaneKind;
4571   unsigned LaneIndex;
4572   SMLoc S = Parser.getTok().getLoc();
4573   // As an extension (to match gas), support a plain D register or Q register
4574   // (without encosing curly braces) as a single or double entry list,
4575   // respectively.
4576   if (!hasMVE() && Parser.getTok().is(AsmToken::Identifier)) {
4577     SMLoc E = Parser.getTok().getEndLoc();
4578     int Reg = tryParseRegister();
4579     if (Reg == -1)
4580       return MatchOperand_NoMatch;
4581     if (ARMMCRegisterClasses[ARM::DPRRegClassID].contains(Reg)) {
4582       OperandMatchResultTy Res = parseVectorLane(LaneKind, LaneIndex, E);
4583       if (Res != MatchOperand_Success)
4584         return Res;
4585       switch (LaneKind) {
4586       case NoLanes:
4587         Operands.push_back(ARMOperand::CreateVectorList(Reg, 1, false, S, E));
4588         break;
4589       case AllLanes:
4590         Operands.push_back(ARMOperand::CreateVectorListAllLanes(Reg, 1, false,
4591                                                                 S, E));
4592         break;
4593       case IndexedLane:
4594         Operands.push_back(ARMOperand::CreateVectorListIndexed(Reg, 1,
4595                                                                LaneIndex,
4596                                                                false, S, E));
4597         break;
4598       }
4599       return MatchOperand_Success;
4600     }
4601     if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(Reg)) {
4602       Reg = getDRegFromQReg(Reg);
4603       OperandMatchResultTy Res = parseVectorLane(LaneKind, LaneIndex, E);
4604       if (Res != MatchOperand_Success)
4605         return Res;
4606       switch (LaneKind) {
4607       case NoLanes:
4608         Reg = MRI->getMatchingSuperReg(Reg, ARM::dsub_0,
4609                                    &ARMMCRegisterClasses[ARM::DPairRegClassID]);
4610         Operands.push_back(ARMOperand::CreateVectorList(Reg, 2, false, S, E));
4611         break;
4612       case AllLanes:
4613         Reg = MRI->getMatchingSuperReg(Reg, ARM::dsub_0,
4614                                    &ARMMCRegisterClasses[ARM::DPairRegClassID]);
4615         Operands.push_back(ARMOperand::CreateVectorListAllLanes(Reg, 2, false,
4616                                                                 S, E));
4617         break;
4618       case IndexedLane:
4619         Operands.push_back(ARMOperand::CreateVectorListIndexed(Reg, 2,
4620                                                                LaneIndex,
4621                                                                false, S, E));
4622         break;
4623       }
4624       return MatchOperand_Success;
4625     }
4626     Error(S, "vector register expected");
4627     return MatchOperand_ParseFail;
4628   }
4629 
4630   if (Parser.getTok().isNot(AsmToken::LCurly))
4631     return MatchOperand_NoMatch;
4632 
4633   Parser.Lex(); // Eat '{' token.
4634   SMLoc RegLoc = Parser.getTok().getLoc();
4635 
4636   int Reg = tryParseRegister();
4637   if (Reg == -1) {
4638     Error(RegLoc, "register expected");
4639     return MatchOperand_ParseFail;
4640   }
4641   unsigned Count = 1;
4642   int Spacing = 0;
4643   unsigned FirstReg = Reg;
4644 
4645   if (hasMVE() && !ARMMCRegisterClasses[ARM::MQPRRegClassID].contains(Reg)) {
4646       Error(Parser.getTok().getLoc(), "vector register in range Q0-Q7 expected");
4647       return MatchOperand_ParseFail;
4648   }
4649   // The list is of D registers, but we also allow Q regs and just interpret
4650   // them as the two D sub-registers.
4651   else if (!hasMVE() && ARMMCRegisterClasses[ARM::QPRRegClassID].contains(Reg)) {
4652     FirstReg = Reg = getDRegFromQReg(Reg);
4653     Spacing = 1; // double-spacing requires explicit D registers, otherwise
4654                  // it's ambiguous with four-register single spaced.
4655     ++Reg;
4656     ++Count;
4657   }
4658 
4659   SMLoc E;
4660   if (parseVectorLane(LaneKind, LaneIndex, E) != MatchOperand_Success)
4661     return MatchOperand_ParseFail;
4662 
4663   while (Parser.getTok().is(AsmToken::Comma) ||
4664          Parser.getTok().is(AsmToken::Minus)) {
4665     if (Parser.getTok().is(AsmToken::Minus)) {
4666       if (!Spacing)
4667         Spacing = 1; // Register range implies a single spaced list.
4668       else if (Spacing == 2) {
4669         Error(Parser.getTok().getLoc(),
4670               "sequential registers in double spaced list");
4671         return MatchOperand_ParseFail;
4672       }
4673       Parser.Lex(); // Eat the minus.
4674       SMLoc AfterMinusLoc = Parser.getTok().getLoc();
4675       int EndReg = tryParseRegister();
4676       if (EndReg == -1) {
4677         Error(AfterMinusLoc, "register expected");
4678         return MatchOperand_ParseFail;
4679       }
4680       // Allow Q regs and just interpret them as the two D sub-registers.
4681       if (!hasMVE() && ARMMCRegisterClasses[ARM::QPRRegClassID].contains(EndReg))
4682         EndReg = getDRegFromQReg(EndReg) + 1;
4683       // If the register is the same as the start reg, there's nothing
4684       // more to do.
4685       if (Reg == EndReg)
4686         continue;
4687       // The register must be in the same register class as the first.
4688       if ((hasMVE() &&
4689            !ARMMCRegisterClasses[ARM::MQPRRegClassID].contains(EndReg)) ||
4690           (!hasMVE() &&
4691            !ARMMCRegisterClasses[ARM::DPRRegClassID].contains(EndReg))) {
4692         Error(AfterMinusLoc, "invalid register in register list");
4693         return MatchOperand_ParseFail;
4694       }
4695       // Ranges must go from low to high.
4696       if (Reg > EndReg) {
4697         Error(AfterMinusLoc, "bad range in register list");
4698         return MatchOperand_ParseFail;
4699       }
4700       // Parse the lane specifier if present.
4701       VectorLaneTy NextLaneKind;
4702       unsigned NextLaneIndex;
4703       if (parseVectorLane(NextLaneKind, NextLaneIndex, E) !=
4704           MatchOperand_Success)
4705         return MatchOperand_ParseFail;
4706       if (NextLaneKind != LaneKind || LaneIndex != NextLaneIndex) {
4707         Error(AfterMinusLoc, "mismatched lane index in register list");
4708         return MatchOperand_ParseFail;
4709       }
4710 
4711       // Add all the registers in the range to the register list.
4712       Count += EndReg - Reg;
4713       Reg = EndReg;
4714       continue;
4715     }
4716     Parser.Lex(); // Eat the comma.
4717     RegLoc = Parser.getTok().getLoc();
4718     int OldReg = Reg;
4719     Reg = tryParseRegister();
4720     if (Reg == -1) {
4721       Error(RegLoc, "register expected");
4722       return MatchOperand_ParseFail;
4723     }
4724 
4725     if (hasMVE()) {
4726       if (!ARMMCRegisterClasses[ARM::MQPRRegClassID].contains(Reg)) {
4727         Error(RegLoc, "vector register in range Q0-Q7 expected");
4728         return MatchOperand_ParseFail;
4729       }
4730       Spacing = 1;
4731     }
4732     // vector register lists must be contiguous.
4733     // It's OK to use the enumeration values directly here rather, as the
4734     // VFP register classes have the enum sorted properly.
4735     //
4736     // The list is of D registers, but we also allow Q regs and just interpret
4737     // them as the two D sub-registers.
4738     else if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(Reg)) {
4739       if (!Spacing)
4740         Spacing = 1; // Register range implies a single spaced list.
4741       else if (Spacing == 2) {
4742         Error(RegLoc,
4743               "invalid register in double-spaced list (must be 'D' register')");
4744         return MatchOperand_ParseFail;
4745       }
4746       Reg = getDRegFromQReg(Reg);
4747       if (Reg != OldReg + 1) {
4748         Error(RegLoc, "non-contiguous register range");
4749         return MatchOperand_ParseFail;
4750       }
4751       ++Reg;
4752       Count += 2;
4753       // Parse the lane specifier if present.
4754       VectorLaneTy NextLaneKind;
4755       unsigned NextLaneIndex;
4756       SMLoc LaneLoc = Parser.getTok().getLoc();
4757       if (parseVectorLane(NextLaneKind, NextLaneIndex, E) !=
4758           MatchOperand_Success)
4759         return MatchOperand_ParseFail;
4760       if (NextLaneKind != LaneKind || LaneIndex != NextLaneIndex) {
4761         Error(LaneLoc, "mismatched lane index in register list");
4762         return MatchOperand_ParseFail;
4763       }
4764       continue;
4765     }
4766     // Normal D register.
4767     // Figure out the register spacing (single or double) of the list if
4768     // we don't know it already.
4769     if (!Spacing)
4770       Spacing = 1 + (Reg == OldReg + 2);
4771 
4772     // Just check that it's contiguous and keep going.
4773     if (Reg != OldReg + Spacing) {
4774       Error(RegLoc, "non-contiguous register range");
4775       return MatchOperand_ParseFail;
4776     }
4777     ++Count;
4778     // Parse the lane specifier if present.
4779     VectorLaneTy NextLaneKind;
4780     unsigned NextLaneIndex;
4781     SMLoc EndLoc = Parser.getTok().getLoc();
4782     if (parseVectorLane(NextLaneKind, NextLaneIndex, E) != MatchOperand_Success)
4783       return MatchOperand_ParseFail;
4784     if (NextLaneKind != LaneKind || LaneIndex != NextLaneIndex) {
4785       Error(EndLoc, "mismatched lane index in register list");
4786       return MatchOperand_ParseFail;
4787     }
4788   }
4789 
4790   if (Parser.getTok().isNot(AsmToken::RCurly)) {
4791     Error(Parser.getTok().getLoc(), "'}' expected");
4792     return MatchOperand_ParseFail;
4793   }
4794   E = Parser.getTok().getEndLoc();
4795   Parser.Lex(); // Eat '}' token.
4796 
4797   switch (LaneKind) {
4798   case NoLanes:
4799   case AllLanes: {
4800     // Two-register operands have been converted to the
4801     // composite register classes.
4802     if (Count == 2 && !hasMVE()) {
4803       const MCRegisterClass *RC = (Spacing == 1) ?
4804         &ARMMCRegisterClasses[ARM::DPairRegClassID] :
4805         &ARMMCRegisterClasses[ARM::DPairSpcRegClassID];
4806       FirstReg = MRI->getMatchingSuperReg(FirstReg, ARM::dsub_0, RC);
4807     }
4808     auto Create = (LaneKind == NoLanes ? ARMOperand::CreateVectorList :
4809                    ARMOperand::CreateVectorListAllLanes);
4810     Operands.push_back(Create(FirstReg, Count, (Spacing == 2), S, E));
4811     break;
4812   }
4813   case IndexedLane:
4814     Operands.push_back(ARMOperand::CreateVectorListIndexed(FirstReg, Count,
4815                                                            LaneIndex,
4816                                                            (Spacing == 2),
4817                                                            S, E));
4818     break;
4819   }
4820   return MatchOperand_Success;
4821 }
4822 
4823 /// parseMemBarrierOptOperand - Try to parse DSB/DMB data barrier options.
4824 OperandMatchResultTy
4825 ARMAsmParser::parseMemBarrierOptOperand(OperandVector &Operands) {
4826   MCAsmParser &Parser = getParser();
4827   SMLoc S = Parser.getTok().getLoc();
4828   const AsmToken &Tok = Parser.getTok();
4829   unsigned Opt;
4830 
4831   if (Tok.is(AsmToken::Identifier)) {
4832     StringRef OptStr = Tok.getString();
4833 
4834     Opt = StringSwitch<unsigned>(OptStr.slice(0, OptStr.size()).lower())
4835       .Case("sy",    ARM_MB::SY)
4836       .Case("st",    ARM_MB::ST)
4837       .Case("ld",    ARM_MB::LD)
4838       .Case("sh",    ARM_MB::ISH)
4839       .Case("ish",   ARM_MB::ISH)
4840       .Case("shst",  ARM_MB::ISHST)
4841       .Case("ishst", ARM_MB::ISHST)
4842       .Case("ishld", ARM_MB::ISHLD)
4843       .Case("nsh",   ARM_MB::NSH)
4844       .Case("un",    ARM_MB::NSH)
4845       .Case("nshst", ARM_MB::NSHST)
4846       .Case("nshld", ARM_MB::NSHLD)
4847       .Case("unst",  ARM_MB::NSHST)
4848       .Case("osh",   ARM_MB::OSH)
4849       .Case("oshst", ARM_MB::OSHST)
4850       .Case("oshld", ARM_MB::OSHLD)
4851       .Default(~0U);
4852 
4853     // ishld, oshld, nshld and ld are only available from ARMv8.
4854     if (!hasV8Ops() && (Opt == ARM_MB::ISHLD || Opt == ARM_MB::OSHLD ||
4855                         Opt == ARM_MB::NSHLD || Opt == ARM_MB::LD))
4856       Opt = ~0U;
4857 
4858     if (Opt == ~0U)
4859       return MatchOperand_NoMatch;
4860 
4861     Parser.Lex(); // Eat identifier token.
4862   } else if (Tok.is(AsmToken::Hash) ||
4863              Tok.is(AsmToken::Dollar) ||
4864              Tok.is(AsmToken::Integer)) {
4865     if (Parser.getTok().isNot(AsmToken::Integer))
4866       Parser.Lex(); // Eat '#' or '$'.
4867     SMLoc Loc = Parser.getTok().getLoc();
4868 
4869     const MCExpr *MemBarrierID;
4870     if (getParser().parseExpression(MemBarrierID)) {
4871       Error(Loc, "illegal expression");
4872       return MatchOperand_ParseFail;
4873     }
4874 
4875     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(MemBarrierID);
4876     if (!CE) {
4877       Error(Loc, "constant expression expected");
4878       return MatchOperand_ParseFail;
4879     }
4880 
4881     int Val = CE->getValue();
4882     if (Val & ~0xf) {
4883       Error(Loc, "immediate value out of range");
4884       return MatchOperand_ParseFail;
4885     }
4886 
4887     Opt = ARM_MB::RESERVED_0 + Val;
4888   } else
4889     return MatchOperand_ParseFail;
4890 
4891   Operands.push_back(ARMOperand::CreateMemBarrierOpt((ARM_MB::MemBOpt)Opt, S));
4892   return MatchOperand_Success;
4893 }
4894 
4895 OperandMatchResultTy
4896 ARMAsmParser::parseTraceSyncBarrierOptOperand(OperandVector &Operands) {
4897   MCAsmParser &Parser = getParser();
4898   SMLoc S = Parser.getTok().getLoc();
4899   const AsmToken &Tok = Parser.getTok();
4900 
4901   if (Tok.isNot(AsmToken::Identifier))
4902      return MatchOperand_NoMatch;
4903 
4904   if (!Tok.getString().equals_lower("csync"))
4905     return MatchOperand_NoMatch;
4906 
4907   Parser.Lex(); // Eat identifier token.
4908 
4909   Operands.push_back(ARMOperand::CreateTraceSyncBarrierOpt(ARM_TSB::CSYNC, S));
4910   return MatchOperand_Success;
4911 }
4912 
4913 /// parseInstSyncBarrierOptOperand - Try to parse ISB inst sync barrier options.
4914 OperandMatchResultTy
4915 ARMAsmParser::parseInstSyncBarrierOptOperand(OperandVector &Operands) {
4916   MCAsmParser &Parser = getParser();
4917   SMLoc S = Parser.getTok().getLoc();
4918   const AsmToken &Tok = Parser.getTok();
4919   unsigned Opt;
4920 
4921   if (Tok.is(AsmToken::Identifier)) {
4922     StringRef OptStr = Tok.getString();
4923 
4924     if (OptStr.equals_lower("sy"))
4925       Opt = ARM_ISB::SY;
4926     else
4927       return MatchOperand_NoMatch;
4928 
4929     Parser.Lex(); // Eat identifier token.
4930   } else if (Tok.is(AsmToken::Hash) ||
4931              Tok.is(AsmToken::Dollar) ||
4932              Tok.is(AsmToken::Integer)) {
4933     if (Parser.getTok().isNot(AsmToken::Integer))
4934       Parser.Lex(); // Eat '#' or '$'.
4935     SMLoc Loc = Parser.getTok().getLoc();
4936 
4937     const MCExpr *ISBarrierID;
4938     if (getParser().parseExpression(ISBarrierID)) {
4939       Error(Loc, "illegal expression");
4940       return MatchOperand_ParseFail;
4941     }
4942 
4943     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ISBarrierID);
4944     if (!CE) {
4945       Error(Loc, "constant expression expected");
4946       return MatchOperand_ParseFail;
4947     }
4948 
4949     int Val = CE->getValue();
4950     if (Val & ~0xf) {
4951       Error(Loc, "immediate value out of range");
4952       return MatchOperand_ParseFail;
4953     }
4954 
4955     Opt = ARM_ISB::RESERVED_0 + Val;
4956   } else
4957     return MatchOperand_ParseFail;
4958 
4959   Operands.push_back(ARMOperand::CreateInstSyncBarrierOpt(
4960           (ARM_ISB::InstSyncBOpt)Opt, S));
4961   return MatchOperand_Success;
4962 }
4963 
4964 
4965 /// parseProcIFlagsOperand - Try to parse iflags from CPS instruction.
4966 OperandMatchResultTy
4967 ARMAsmParser::parseProcIFlagsOperand(OperandVector &Operands) {
4968   MCAsmParser &Parser = getParser();
4969   SMLoc S = Parser.getTok().getLoc();
4970   const AsmToken &Tok = Parser.getTok();
4971   if (!Tok.is(AsmToken::Identifier))
4972     return MatchOperand_NoMatch;
4973   StringRef IFlagsStr = Tok.getString();
4974 
4975   // An iflags string of "none" is interpreted to mean that none of the AIF
4976   // bits are set.  Not a terribly useful instruction, but a valid encoding.
4977   unsigned IFlags = 0;
4978   if (IFlagsStr != "none") {
4979         for (int i = 0, e = IFlagsStr.size(); i != e; ++i) {
4980       unsigned Flag = StringSwitch<unsigned>(IFlagsStr.substr(i, 1).lower())
4981         .Case("a", ARM_PROC::A)
4982         .Case("i", ARM_PROC::I)
4983         .Case("f", ARM_PROC::F)
4984         .Default(~0U);
4985 
4986       // If some specific iflag is already set, it means that some letter is
4987       // present more than once, this is not acceptable.
4988       if (Flag == ~0U || (IFlags & Flag))
4989         return MatchOperand_NoMatch;
4990 
4991       IFlags |= Flag;
4992     }
4993   }
4994 
4995   Parser.Lex(); // Eat identifier token.
4996   Operands.push_back(ARMOperand::CreateProcIFlags((ARM_PROC::IFlags)IFlags, S));
4997   return MatchOperand_Success;
4998 }
4999 
5000 /// parseMSRMaskOperand - Try to parse mask flags from MSR instruction.
5001 OperandMatchResultTy
5002 ARMAsmParser::parseMSRMaskOperand(OperandVector &Operands) {
5003   MCAsmParser &Parser = getParser();
5004   SMLoc S = Parser.getTok().getLoc();
5005   const AsmToken &Tok = Parser.getTok();
5006 
5007   if (Tok.is(AsmToken::Integer)) {
5008     int64_t Val = Tok.getIntVal();
5009     if (Val > 255 || Val < 0) {
5010       return MatchOperand_NoMatch;
5011     }
5012     unsigned SYSmvalue = Val & 0xFF;
5013     Parser.Lex();
5014     Operands.push_back(ARMOperand::CreateMSRMask(SYSmvalue, S));
5015     return MatchOperand_Success;
5016   }
5017 
5018   if (!Tok.is(AsmToken::Identifier))
5019     return MatchOperand_NoMatch;
5020   StringRef Mask = Tok.getString();
5021 
5022   if (isMClass()) {
5023     auto TheReg = ARMSysReg::lookupMClassSysRegByName(Mask.lower());
5024     if (!TheReg || !TheReg->hasRequiredFeatures(getSTI().getFeatureBits()))
5025       return MatchOperand_NoMatch;
5026 
5027     unsigned SYSmvalue = TheReg->Encoding & 0xFFF;
5028 
5029     Parser.Lex(); // Eat identifier token.
5030     Operands.push_back(ARMOperand::CreateMSRMask(SYSmvalue, S));
5031     return MatchOperand_Success;
5032   }
5033 
5034   // Split spec_reg from flag, example: CPSR_sxf => "CPSR" and "sxf"
5035   size_t Start = 0, Next = Mask.find('_');
5036   StringRef Flags = "";
5037   std::string SpecReg = Mask.slice(Start, Next).lower();
5038   if (Next != StringRef::npos)
5039     Flags = Mask.slice(Next+1, Mask.size());
5040 
5041   // FlagsVal contains the complete mask:
5042   // 3-0: Mask
5043   // 4: Special Reg (cpsr, apsr => 0; spsr => 1)
5044   unsigned FlagsVal = 0;
5045 
5046   if (SpecReg == "apsr") {
5047     FlagsVal = StringSwitch<unsigned>(Flags)
5048     .Case("nzcvq",  0x8) // same as CPSR_f
5049     .Case("g",      0x4) // same as CPSR_s
5050     .Case("nzcvqg", 0xc) // same as CPSR_fs
5051     .Default(~0U);
5052 
5053     if (FlagsVal == ~0U) {
5054       if (!Flags.empty())
5055         return MatchOperand_NoMatch;
5056       else
5057         FlagsVal = 8; // No flag
5058     }
5059   } else if (SpecReg == "cpsr" || SpecReg == "spsr") {
5060     // cpsr_all is an alias for cpsr_fc, as is plain cpsr.
5061     if (Flags == "all" || Flags == "")
5062       Flags = "fc";
5063     for (int i = 0, e = Flags.size(); i != e; ++i) {
5064       unsigned Flag = StringSwitch<unsigned>(Flags.substr(i, 1))
5065       .Case("c", 1)
5066       .Case("x", 2)
5067       .Case("s", 4)
5068       .Case("f", 8)
5069       .Default(~0U);
5070 
5071       // If some specific flag is already set, it means that some letter is
5072       // present more than once, this is not acceptable.
5073       if (Flag == ~0U || (FlagsVal & Flag))
5074         return MatchOperand_NoMatch;
5075       FlagsVal |= Flag;
5076     }
5077   } else // No match for special register.
5078     return MatchOperand_NoMatch;
5079 
5080   // Special register without flags is NOT equivalent to "fc" flags.
5081   // NOTE: This is a divergence from gas' behavior.  Uncommenting the following
5082   // two lines would enable gas compatibility at the expense of breaking
5083   // round-tripping.
5084   //
5085   // if (!FlagsVal)
5086   //  FlagsVal = 0x9;
5087 
5088   // Bit 4: Special Reg (cpsr, apsr => 0; spsr => 1)
5089   if (SpecReg == "spsr")
5090     FlagsVal |= 16;
5091 
5092   Parser.Lex(); // Eat identifier token.
5093   Operands.push_back(ARMOperand::CreateMSRMask(FlagsVal, S));
5094   return MatchOperand_Success;
5095 }
5096 
5097 /// parseBankedRegOperand - Try to parse a banked register (e.g. "lr_irq") for
5098 /// use in the MRS/MSR instructions added to support virtualization.
5099 OperandMatchResultTy
5100 ARMAsmParser::parseBankedRegOperand(OperandVector &Operands) {
5101   MCAsmParser &Parser = getParser();
5102   SMLoc S = Parser.getTok().getLoc();
5103   const AsmToken &Tok = Parser.getTok();
5104   if (!Tok.is(AsmToken::Identifier))
5105     return MatchOperand_NoMatch;
5106   StringRef RegName = Tok.getString();
5107 
5108   auto TheReg = ARMBankedReg::lookupBankedRegByName(RegName.lower());
5109   if (!TheReg)
5110     return MatchOperand_NoMatch;
5111   unsigned Encoding = TheReg->Encoding;
5112 
5113   Parser.Lex(); // Eat identifier token.
5114   Operands.push_back(ARMOperand::CreateBankedReg(Encoding, S));
5115   return MatchOperand_Success;
5116 }
5117 
5118 OperandMatchResultTy
5119 ARMAsmParser::parsePKHImm(OperandVector &Operands, StringRef Op, int Low,
5120                           int High) {
5121   MCAsmParser &Parser = getParser();
5122   const AsmToken &Tok = Parser.getTok();
5123   if (Tok.isNot(AsmToken::Identifier)) {
5124     Error(Parser.getTok().getLoc(), Op + " operand expected.");
5125     return MatchOperand_ParseFail;
5126   }
5127   StringRef ShiftName = Tok.getString();
5128   std::string LowerOp = Op.lower();
5129   std::string UpperOp = Op.upper();
5130   if (ShiftName != LowerOp && ShiftName != UpperOp) {
5131     Error(Parser.getTok().getLoc(), Op + " operand expected.");
5132     return MatchOperand_ParseFail;
5133   }
5134   Parser.Lex(); // Eat shift type token.
5135 
5136   // There must be a '#' and a shift amount.
5137   if (Parser.getTok().isNot(AsmToken::Hash) &&
5138       Parser.getTok().isNot(AsmToken::Dollar)) {
5139     Error(Parser.getTok().getLoc(), "'#' expected");
5140     return MatchOperand_ParseFail;
5141   }
5142   Parser.Lex(); // Eat hash token.
5143 
5144   const MCExpr *ShiftAmount;
5145   SMLoc Loc = Parser.getTok().getLoc();
5146   SMLoc EndLoc;
5147   if (getParser().parseExpression(ShiftAmount, EndLoc)) {
5148     Error(Loc, "illegal expression");
5149     return MatchOperand_ParseFail;
5150   }
5151   const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ShiftAmount);
5152   if (!CE) {
5153     Error(Loc, "constant expression expected");
5154     return MatchOperand_ParseFail;
5155   }
5156   int Val = CE->getValue();
5157   if (Val < Low || Val > High) {
5158     Error(Loc, "immediate value out of range");
5159     return MatchOperand_ParseFail;
5160   }
5161 
5162   Operands.push_back(ARMOperand::CreateImm(CE, Loc, EndLoc));
5163 
5164   return MatchOperand_Success;
5165 }
5166 
5167 OperandMatchResultTy
5168 ARMAsmParser::parseSetEndImm(OperandVector &Operands) {
5169   MCAsmParser &Parser = getParser();
5170   const AsmToken &Tok = Parser.getTok();
5171   SMLoc S = Tok.getLoc();
5172   if (Tok.isNot(AsmToken::Identifier)) {
5173     Error(S, "'be' or 'le' operand expected");
5174     return MatchOperand_ParseFail;
5175   }
5176   int Val = StringSwitch<int>(Tok.getString().lower())
5177     .Case("be", 1)
5178     .Case("le", 0)
5179     .Default(-1);
5180   Parser.Lex(); // Eat the token.
5181 
5182   if (Val == -1) {
5183     Error(S, "'be' or 'le' operand expected");
5184     return MatchOperand_ParseFail;
5185   }
5186   Operands.push_back(ARMOperand::CreateImm(MCConstantExpr::create(Val,
5187                                                                   getContext()),
5188                                            S, Tok.getEndLoc()));
5189   return MatchOperand_Success;
5190 }
5191 
5192 /// parseShifterImm - Parse the shifter immediate operand for SSAT/USAT
5193 /// instructions. Legal values are:
5194 ///     lsl #n  'n' in [0,31]
5195 ///     asr #n  'n' in [1,32]
5196 ///             n == 32 encoded as n == 0.
5197 OperandMatchResultTy
5198 ARMAsmParser::parseShifterImm(OperandVector &Operands) {
5199   MCAsmParser &Parser = getParser();
5200   const AsmToken &Tok = Parser.getTok();
5201   SMLoc S = Tok.getLoc();
5202   if (Tok.isNot(AsmToken::Identifier)) {
5203     Error(S, "shift operator 'asr' or 'lsl' expected");
5204     return MatchOperand_ParseFail;
5205   }
5206   StringRef ShiftName = Tok.getString();
5207   bool isASR;
5208   if (ShiftName == "lsl" || ShiftName == "LSL")
5209     isASR = false;
5210   else if (ShiftName == "asr" || ShiftName == "ASR")
5211     isASR = true;
5212   else {
5213     Error(S, "shift operator 'asr' or 'lsl' expected");
5214     return MatchOperand_ParseFail;
5215   }
5216   Parser.Lex(); // Eat the operator.
5217 
5218   // A '#' and a shift amount.
5219   if (Parser.getTok().isNot(AsmToken::Hash) &&
5220       Parser.getTok().isNot(AsmToken::Dollar)) {
5221     Error(Parser.getTok().getLoc(), "'#' expected");
5222     return MatchOperand_ParseFail;
5223   }
5224   Parser.Lex(); // Eat hash token.
5225   SMLoc ExLoc = Parser.getTok().getLoc();
5226 
5227   const MCExpr *ShiftAmount;
5228   SMLoc EndLoc;
5229   if (getParser().parseExpression(ShiftAmount, EndLoc)) {
5230     Error(ExLoc, "malformed shift expression");
5231     return MatchOperand_ParseFail;
5232   }
5233   const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ShiftAmount);
5234   if (!CE) {
5235     Error(ExLoc, "shift amount must be an immediate");
5236     return MatchOperand_ParseFail;
5237   }
5238 
5239   int64_t Val = CE->getValue();
5240   if (isASR) {
5241     // Shift amount must be in [1,32]
5242     if (Val < 1 || Val > 32) {
5243       Error(ExLoc, "'asr' shift amount must be in range [1,32]");
5244       return MatchOperand_ParseFail;
5245     }
5246     // asr #32 encoded as asr #0, but is not allowed in Thumb2 mode.
5247     if (isThumb() && Val == 32) {
5248       Error(ExLoc, "'asr #32' shift amount not allowed in Thumb mode");
5249       return MatchOperand_ParseFail;
5250     }
5251     if (Val == 32) Val = 0;
5252   } else {
5253     // Shift amount must be in [1,32]
5254     if (Val < 0 || Val > 31) {
5255       Error(ExLoc, "'lsr' shift amount must be in range [0,31]");
5256       return MatchOperand_ParseFail;
5257     }
5258   }
5259 
5260   Operands.push_back(ARMOperand::CreateShifterImm(isASR, Val, S, EndLoc));
5261 
5262   return MatchOperand_Success;
5263 }
5264 
5265 /// parseRotImm - Parse the shifter immediate operand for SXTB/UXTB family
5266 /// of instructions. Legal values are:
5267 ///     ror #n  'n' in {0, 8, 16, 24}
5268 OperandMatchResultTy
5269 ARMAsmParser::parseRotImm(OperandVector &Operands) {
5270   MCAsmParser &Parser = getParser();
5271   const AsmToken &Tok = Parser.getTok();
5272   SMLoc S = Tok.getLoc();
5273   if (Tok.isNot(AsmToken::Identifier))
5274     return MatchOperand_NoMatch;
5275   StringRef ShiftName = Tok.getString();
5276   if (ShiftName != "ror" && ShiftName != "ROR")
5277     return MatchOperand_NoMatch;
5278   Parser.Lex(); // Eat the operator.
5279 
5280   // A '#' and a rotate amount.
5281   if (Parser.getTok().isNot(AsmToken::Hash) &&
5282       Parser.getTok().isNot(AsmToken::Dollar)) {
5283     Error(Parser.getTok().getLoc(), "'#' expected");
5284     return MatchOperand_ParseFail;
5285   }
5286   Parser.Lex(); // Eat hash token.
5287   SMLoc ExLoc = Parser.getTok().getLoc();
5288 
5289   const MCExpr *ShiftAmount;
5290   SMLoc EndLoc;
5291   if (getParser().parseExpression(ShiftAmount, EndLoc)) {
5292     Error(ExLoc, "malformed rotate expression");
5293     return MatchOperand_ParseFail;
5294   }
5295   const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ShiftAmount);
5296   if (!CE) {
5297     Error(ExLoc, "rotate amount must be an immediate");
5298     return MatchOperand_ParseFail;
5299   }
5300 
5301   int64_t Val = CE->getValue();
5302   // Shift amount must be in {0, 8, 16, 24} (0 is undocumented extension)
5303   // normally, zero is represented in asm by omitting the rotate operand
5304   // entirely.
5305   if (Val != 8 && Val != 16 && Val != 24 && Val != 0) {
5306     Error(ExLoc, "'ror' rotate amount must be 8, 16, or 24");
5307     return MatchOperand_ParseFail;
5308   }
5309 
5310   Operands.push_back(ARMOperand::CreateRotImm(Val, S, EndLoc));
5311 
5312   return MatchOperand_Success;
5313 }
5314 
5315 OperandMatchResultTy
5316 ARMAsmParser::parseModImm(OperandVector &Operands) {
5317   MCAsmParser &Parser = getParser();
5318   MCAsmLexer &Lexer = getLexer();
5319   int64_t Imm1, Imm2;
5320 
5321   SMLoc S = Parser.getTok().getLoc();
5322 
5323   // 1) A mod_imm operand can appear in the place of a register name:
5324   //   add r0, #mod_imm
5325   //   add r0, r0, #mod_imm
5326   // to correctly handle the latter, we bail out as soon as we see an
5327   // identifier.
5328   //
5329   // 2) Similarly, we do not want to parse into complex operands:
5330   //   mov r0, #mod_imm
5331   //   mov r0, :lower16:(_foo)
5332   if (Parser.getTok().is(AsmToken::Identifier) ||
5333       Parser.getTok().is(AsmToken::Colon))
5334     return MatchOperand_NoMatch;
5335 
5336   // Hash (dollar) is optional as per the ARMARM
5337   if (Parser.getTok().is(AsmToken::Hash) ||
5338       Parser.getTok().is(AsmToken::Dollar)) {
5339     // Avoid parsing into complex operands (#:)
5340     if (Lexer.peekTok().is(AsmToken::Colon))
5341       return MatchOperand_NoMatch;
5342 
5343     // Eat the hash (dollar)
5344     Parser.Lex();
5345   }
5346 
5347   SMLoc Sx1, Ex1;
5348   Sx1 = Parser.getTok().getLoc();
5349   const MCExpr *Imm1Exp;
5350   if (getParser().parseExpression(Imm1Exp, Ex1)) {
5351     Error(Sx1, "malformed expression");
5352     return MatchOperand_ParseFail;
5353   }
5354 
5355   const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Imm1Exp);
5356 
5357   if (CE) {
5358     // Immediate must fit within 32-bits
5359     Imm1 = CE->getValue();
5360     int Enc = ARM_AM::getSOImmVal(Imm1);
5361     if (Enc != -1 && Parser.getTok().is(AsmToken::EndOfStatement)) {
5362       // We have a match!
5363       Operands.push_back(ARMOperand::CreateModImm((Enc & 0xFF),
5364                                                   (Enc & 0xF00) >> 7,
5365                                                   Sx1, Ex1));
5366       return MatchOperand_Success;
5367     }
5368 
5369     // We have parsed an immediate which is not for us, fallback to a plain
5370     // immediate. This can happen for instruction aliases. For an example,
5371     // ARMInstrInfo.td defines the alias [mov <-> mvn] which can transform
5372     // a mov (mvn) with a mod_imm_neg/mod_imm_not operand into the opposite
5373     // instruction with a mod_imm operand. The alias is defined such that the
5374     // parser method is shared, that's why we have to do this here.
5375     if (Parser.getTok().is(AsmToken::EndOfStatement)) {
5376       Operands.push_back(ARMOperand::CreateImm(Imm1Exp, Sx1, Ex1));
5377       return MatchOperand_Success;
5378     }
5379   } else {
5380     // Operands like #(l1 - l2) can only be evaluated at a later stage (via an
5381     // MCFixup). Fallback to a plain immediate.
5382     Operands.push_back(ARMOperand::CreateImm(Imm1Exp, Sx1, Ex1));
5383     return MatchOperand_Success;
5384   }
5385 
5386   // From this point onward, we expect the input to be a (#bits, #rot) pair
5387   if (Parser.getTok().isNot(AsmToken::Comma)) {
5388     Error(Sx1, "expected modified immediate operand: #[0, 255], #even[0-30]");
5389     return MatchOperand_ParseFail;
5390   }
5391 
5392   if (Imm1 & ~0xFF) {
5393     Error(Sx1, "immediate operand must a number in the range [0, 255]");
5394     return MatchOperand_ParseFail;
5395   }
5396 
5397   // Eat the comma
5398   Parser.Lex();
5399 
5400   // Repeat for #rot
5401   SMLoc Sx2, Ex2;
5402   Sx2 = Parser.getTok().getLoc();
5403 
5404   // Eat the optional hash (dollar)
5405   if (Parser.getTok().is(AsmToken::Hash) ||
5406       Parser.getTok().is(AsmToken::Dollar))
5407     Parser.Lex();
5408 
5409   const MCExpr *Imm2Exp;
5410   if (getParser().parseExpression(Imm2Exp, Ex2)) {
5411     Error(Sx2, "malformed expression");
5412     return MatchOperand_ParseFail;
5413   }
5414 
5415   CE = dyn_cast<MCConstantExpr>(Imm2Exp);
5416 
5417   if (CE) {
5418     Imm2 = CE->getValue();
5419     if (!(Imm2 & ~0x1E)) {
5420       // We have a match!
5421       Operands.push_back(ARMOperand::CreateModImm(Imm1, Imm2, S, Ex2));
5422       return MatchOperand_Success;
5423     }
5424     Error(Sx2, "immediate operand must an even number in the range [0, 30]");
5425     return MatchOperand_ParseFail;
5426   } else {
5427     Error(Sx2, "constant expression expected");
5428     return MatchOperand_ParseFail;
5429   }
5430 }
5431 
5432 OperandMatchResultTy
5433 ARMAsmParser::parseBitfield(OperandVector &Operands) {
5434   MCAsmParser &Parser = getParser();
5435   SMLoc S = Parser.getTok().getLoc();
5436   // The bitfield descriptor is really two operands, the LSB and the width.
5437   if (Parser.getTok().isNot(AsmToken::Hash) &&
5438       Parser.getTok().isNot(AsmToken::Dollar)) {
5439     Error(Parser.getTok().getLoc(), "'#' expected");
5440     return MatchOperand_ParseFail;
5441   }
5442   Parser.Lex(); // Eat hash token.
5443 
5444   const MCExpr *LSBExpr;
5445   SMLoc E = Parser.getTok().getLoc();
5446   if (getParser().parseExpression(LSBExpr)) {
5447     Error(E, "malformed immediate expression");
5448     return MatchOperand_ParseFail;
5449   }
5450   const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(LSBExpr);
5451   if (!CE) {
5452     Error(E, "'lsb' operand must be an immediate");
5453     return MatchOperand_ParseFail;
5454   }
5455 
5456   int64_t LSB = CE->getValue();
5457   // The LSB must be in the range [0,31]
5458   if (LSB < 0 || LSB > 31) {
5459     Error(E, "'lsb' operand must be in the range [0,31]");
5460     return MatchOperand_ParseFail;
5461   }
5462   E = Parser.getTok().getLoc();
5463 
5464   // Expect another immediate operand.
5465   if (Parser.getTok().isNot(AsmToken::Comma)) {
5466     Error(Parser.getTok().getLoc(), "too few operands");
5467     return MatchOperand_ParseFail;
5468   }
5469   Parser.Lex(); // Eat hash token.
5470   if (Parser.getTok().isNot(AsmToken::Hash) &&
5471       Parser.getTok().isNot(AsmToken::Dollar)) {
5472     Error(Parser.getTok().getLoc(), "'#' expected");
5473     return MatchOperand_ParseFail;
5474   }
5475   Parser.Lex(); // Eat hash token.
5476 
5477   const MCExpr *WidthExpr;
5478   SMLoc EndLoc;
5479   if (getParser().parseExpression(WidthExpr, EndLoc)) {
5480     Error(E, "malformed immediate expression");
5481     return MatchOperand_ParseFail;
5482   }
5483   CE = dyn_cast<MCConstantExpr>(WidthExpr);
5484   if (!CE) {
5485     Error(E, "'width' operand must be an immediate");
5486     return MatchOperand_ParseFail;
5487   }
5488 
5489   int64_t Width = CE->getValue();
5490   // The LSB must be in the range [1,32-lsb]
5491   if (Width < 1 || Width > 32 - LSB) {
5492     Error(E, "'width' operand must be in the range [1,32-lsb]");
5493     return MatchOperand_ParseFail;
5494   }
5495 
5496   Operands.push_back(ARMOperand::CreateBitfield(LSB, Width, S, EndLoc));
5497 
5498   return MatchOperand_Success;
5499 }
5500 
5501 OperandMatchResultTy
5502 ARMAsmParser::parsePostIdxReg(OperandVector &Operands) {
5503   // Check for a post-index addressing register operand. Specifically:
5504   // postidx_reg := '+' register {, shift}
5505   //              | '-' register {, shift}
5506   //              | register {, shift}
5507 
5508   // This method must return MatchOperand_NoMatch without consuming any tokens
5509   // in the case where there is no match, as other alternatives take other
5510   // parse methods.
5511   MCAsmParser &Parser = getParser();
5512   AsmToken Tok = Parser.getTok();
5513   SMLoc S = Tok.getLoc();
5514   bool haveEaten = false;
5515   bool isAdd = true;
5516   if (Tok.is(AsmToken::Plus)) {
5517     Parser.Lex(); // Eat the '+' token.
5518     haveEaten = true;
5519   } else if (Tok.is(AsmToken::Minus)) {
5520     Parser.Lex(); // Eat the '-' token.
5521     isAdd = false;
5522     haveEaten = true;
5523   }
5524 
5525   SMLoc E = Parser.getTok().getEndLoc();
5526   int Reg = tryParseRegister();
5527   if (Reg == -1) {
5528     if (!haveEaten)
5529       return MatchOperand_NoMatch;
5530     Error(Parser.getTok().getLoc(), "register expected");
5531     return MatchOperand_ParseFail;
5532   }
5533 
5534   ARM_AM::ShiftOpc ShiftTy = ARM_AM::no_shift;
5535   unsigned ShiftImm = 0;
5536   if (Parser.getTok().is(AsmToken::Comma)) {
5537     Parser.Lex(); // Eat the ','.
5538     if (parseMemRegOffsetShift(ShiftTy, ShiftImm))
5539       return MatchOperand_ParseFail;
5540 
5541     // FIXME: Only approximates end...may include intervening whitespace.
5542     E = Parser.getTok().getLoc();
5543   }
5544 
5545   Operands.push_back(ARMOperand::CreatePostIdxReg(Reg, isAdd, ShiftTy,
5546                                                   ShiftImm, S, E));
5547 
5548   return MatchOperand_Success;
5549 }
5550 
5551 OperandMatchResultTy
5552 ARMAsmParser::parseAM3Offset(OperandVector &Operands) {
5553   // Check for a post-index addressing register operand. Specifically:
5554   // am3offset := '+' register
5555   //              | '-' register
5556   //              | register
5557   //              | # imm
5558   //              | # + imm
5559   //              | # - imm
5560 
5561   // This method must return MatchOperand_NoMatch without consuming any tokens
5562   // in the case where there is no match, as other alternatives take other
5563   // parse methods.
5564   MCAsmParser &Parser = getParser();
5565   AsmToken Tok = Parser.getTok();
5566   SMLoc S = Tok.getLoc();
5567 
5568   // Do immediates first, as we always parse those if we have a '#'.
5569   if (Parser.getTok().is(AsmToken::Hash) ||
5570       Parser.getTok().is(AsmToken::Dollar)) {
5571     Parser.Lex(); // Eat '#' or '$'.
5572     // Explicitly look for a '-', as we need to encode negative zero
5573     // differently.
5574     bool isNegative = Parser.getTok().is(AsmToken::Minus);
5575     const MCExpr *Offset;
5576     SMLoc E;
5577     if (getParser().parseExpression(Offset, E))
5578       return MatchOperand_ParseFail;
5579     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Offset);
5580     if (!CE) {
5581       Error(S, "constant expression expected");
5582       return MatchOperand_ParseFail;
5583     }
5584     // Negative zero is encoded as the flag value
5585     // std::numeric_limits<int32_t>::min().
5586     int32_t Val = CE->getValue();
5587     if (isNegative && Val == 0)
5588       Val = std::numeric_limits<int32_t>::min();
5589 
5590     Operands.push_back(
5591       ARMOperand::CreateImm(MCConstantExpr::create(Val, getContext()), S, E));
5592 
5593     return MatchOperand_Success;
5594   }
5595 
5596   bool haveEaten = false;
5597   bool isAdd = true;
5598   if (Tok.is(AsmToken::Plus)) {
5599     Parser.Lex(); // Eat the '+' token.
5600     haveEaten = true;
5601   } else if (Tok.is(AsmToken::Minus)) {
5602     Parser.Lex(); // Eat the '-' token.
5603     isAdd = false;
5604     haveEaten = true;
5605   }
5606 
5607   Tok = Parser.getTok();
5608   int Reg = tryParseRegister();
5609   if (Reg == -1) {
5610     if (!haveEaten)
5611       return MatchOperand_NoMatch;
5612     Error(Tok.getLoc(), "register expected");
5613     return MatchOperand_ParseFail;
5614   }
5615 
5616   Operands.push_back(ARMOperand::CreatePostIdxReg(Reg, isAdd, ARM_AM::no_shift,
5617                                                   0, S, Tok.getEndLoc()));
5618 
5619   return MatchOperand_Success;
5620 }
5621 
5622 /// Convert parsed operands to MCInst.  Needed here because this instruction
5623 /// only has two register operands, but multiplication is commutative so
5624 /// assemblers should accept both "mul rD, rN, rD" and "mul rD, rD, rN".
5625 void ARMAsmParser::cvtThumbMultiply(MCInst &Inst,
5626                                     const OperandVector &Operands) {
5627   ((ARMOperand &)*Operands[3]).addRegOperands(Inst, 1);
5628   ((ARMOperand &)*Operands[1]).addCCOutOperands(Inst, 1);
5629   // If we have a three-operand form, make sure to set Rn to be the operand
5630   // that isn't the same as Rd.
5631   unsigned RegOp = 4;
5632   if (Operands.size() == 6 &&
5633       ((ARMOperand &)*Operands[4]).getReg() ==
5634           ((ARMOperand &)*Operands[3]).getReg())
5635     RegOp = 5;
5636   ((ARMOperand &)*Operands[RegOp]).addRegOperands(Inst, 1);
5637   Inst.addOperand(Inst.getOperand(0));
5638   ((ARMOperand &)*Operands[2]).addCondCodeOperands(Inst, 2);
5639 }
5640 
5641 void ARMAsmParser::cvtThumbBranches(MCInst &Inst,
5642                                     const OperandVector &Operands) {
5643   int CondOp = -1, ImmOp = -1;
5644   switch(Inst.getOpcode()) {
5645     case ARM::tB:
5646     case ARM::tBcc:  CondOp = 1; ImmOp = 2; break;
5647 
5648     case ARM::t2B:
5649     case ARM::t2Bcc: CondOp = 1; ImmOp = 3; break;
5650 
5651     default: llvm_unreachable("Unexpected instruction in cvtThumbBranches");
5652   }
5653   // first decide whether or not the branch should be conditional
5654   // by looking at it's location relative to an IT block
5655   if(inITBlock()) {
5656     // inside an IT block we cannot have any conditional branches. any
5657     // such instructions needs to be converted to unconditional form
5658     switch(Inst.getOpcode()) {
5659       case ARM::tBcc: Inst.setOpcode(ARM::tB); break;
5660       case ARM::t2Bcc: Inst.setOpcode(ARM::t2B); break;
5661     }
5662   } else {
5663     // outside IT blocks we can only have unconditional branches with AL
5664     // condition code or conditional branches with non-AL condition code
5665     unsigned Cond = static_cast<ARMOperand &>(*Operands[CondOp]).getCondCode();
5666     switch(Inst.getOpcode()) {
5667       case ARM::tB:
5668       case ARM::tBcc:
5669         Inst.setOpcode(Cond == ARMCC::AL ? ARM::tB : ARM::tBcc);
5670         break;
5671       case ARM::t2B:
5672       case ARM::t2Bcc:
5673         Inst.setOpcode(Cond == ARMCC::AL ? ARM::t2B : ARM::t2Bcc);
5674         break;
5675     }
5676   }
5677 
5678   // now decide on encoding size based on branch target range
5679   switch(Inst.getOpcode()) {
5680     // classify tB as either t2B or t1B based on range of immediate operand
5681     case ARM::tB: {
5682       ARMOperand &op = static_cast<ARMOperand &>(*Operands[ImmOp]);
5683       if (!op.isSignedOffset<11, 1>() && isThumb() && hasV8MBaseline())
5684         Inst.setOpcode(ARM::t2B);
5685       break;
5686     }
5687     // classify tBcc as either t2Bcc or t1Bcc based on range of immediate operand
5688     case ARM::tBcc: {
5689       ARMOperand &op = static_cast<ARMOperand &>(*Operands[ImmOp]);
5690       if (!op.isSignedOffset<8, 1>() && isThumb() && hasV8MBaseline())
5691         Inst.setOpcode(ARM::t2Bcc);
5692       break;
5693     }
5694   }
5695   ((ARMOperand &)*Operands[ImmOp]).addImmOperands(Inst, 1);
5696   ((ARMOperand &)*Operands[CondOp]).addCondCodeOperands(Inst, 2);
5697 }
5698 
5699 void ARMAsmParser::cvtMVEVMOVQtoDReg(
5700   MCInst &Inst, const OperandVector &Operands) {
5701 
5702   // mnemonic, condition code, Rt, Rt2, Qd, idx, Qd again, idx2
5703   assert(Operands.size() == 8);
5704 
5705   ((ARMOperand &)*Operands[2]).addRegOperands(Inst, 1); // Rt
5706   ((ARMOperand &)*Operands[3]).addRegOperands(Inst, 1); // Rt2
5707   ((ARMOperand &)*Operands[4]).addRegOperands(Inst, 1); // Qd
5708   ((ARMOperand &)*Operands[5]).addMVEPairVectorIndexOperands(Inst, 1); // idx
5709   // skip second copy of Qd in Operands[6]
5710   ((ARMOperand &)*Operands[7]).addMVEPairVectorIndexOperands(Inst, 1); // idx2
5711   ((ARMOperand &)*Operands[1]).addCondCodeOperands(Inst, 2); // condition code
5712 }
5713 
5714 /// Parse an ARM memory expression, return false if successful else return true
5715 /// or an error.  The first token must be a '[' when called.
5716 bool ARMAsmParser::parseMemory(OperandVector &Operands) {
5717   MCAsmParser &Parser = getParser();
5718   SMLoc S, E;
5719   if (Parser.getTok().isNot(AsmToken::LBrac))
5720     return TokError("Token is not a Left Bracket");
5721   S = Parser.getTok().getLoc();
5722   Parser.Lex(); // Eat left bracket token.
5723 
5724   const AsmToken &BaseRegTok = Parser.getTok();
5725   int BaseRegNum = tryParseRegister();
5726   if (BaseRegNum == -1)
5727     return Error(BaseRegTok.getLoc(), "register expected");
5728 
5729   // The next token must either be a comma, a colon or a closing bracket.
5730   const AsmToken &Tok = Parser.getTok();
5731   if (!Tok.is(AsmToken::Colon) && !Tok.is(AsmToken::Comma) &&
5732       !Tok.is(AsmToken::RBrac))
5733     return Error(Tok.getLoc(), "malformed memory operand");
5734 
5735   if (Tok.is(AsmToken::RBrac)) {
5736     E = Tok.getEndLoc();
5737     Parser.Lex(); // Eat right bracket token.
5738 
5739     Operands.push_back(ARMOperand::CreateMem(BaseRegNum, nullptr, 0,
5740                                              ARM_AM::no_shift, 0, 0, false,
5741                                              S, E));
5742 
5743     // If there's a pre-indexing writeback marker, '!', just add it as a token
5744     // operand. It's rather odd, but syntactically valid.
5745     if (Parser.getTok().is(AsmToken::Exclaim)) {
5746       Operands.push_back(ARMOperand::CreateToken("!",Parser.getTok().getLoc()));
5747       Parser.Lex(); // Eat the '!'.
5748     }
5749 
5750     return false;
5751   }
5752 
5753   assert((Tok.is(AsmToken::Colon) || Tok.is(AsmToken::Comma)) &&
5754          "Lost colon or comma in memory operand?!");
5755   if (Tok.is(AsmToken::Comma)) {
5756     Parser.Lex(); // Eat the comma.
5757   }
5758 
5759   // If we have a ':', it's an alignment specifier.
5760   if (Parser.getTok().is(AsmToken::Colon)) {
5761     Parser.Lex(); // Eat the ':'.
5762     E = Parser.getTok().getLoc();
5763     SMLoc AlignmentLoc = Tok.getLoc();
5764 
5765     const MCExpr *Expr;
5766     if (getParser().parseExpression(Expr))
5767      return true;
5768 
5769     // The expression has to be a constant. Memory references with relocations
5770     // don't come through here, as they use the <label> forms of the relevant
5771     // instructions.
5772     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr);
5773     if (!CE)
5774       return Error (E, "constant expression expected");
5775 
5776     unsigned Align = 0;
5777     switch (CE->getValue()) {
5778     default:
5779       return Error(E,
5780                    "alignment specifier must be 16, 32, 64, 128, or 256 bits");
5781     case 16:  Align = 2; break;
5782     case 32:  Align = 4; break;
5783     case 64:  Align = 8; break;
5784     case 128: Align = 16; break;
5785     case 256: Align = 32; break;
5786     }
5787 
5788     // Now we should have the closing ']'
5789     if (Parser.getTok().isNot(AsmToken::RBrac))
5790       return Error(Parser.getTok().getLoc(), "']' expected");
5791     E = Parser.getTok().getEndLoc();
5792     Parser.Lex(); // Eat right bracket token.
5793 
5794     // Don't worry about range checking the value here. That's handled by
5795     // the is*() predicates.
5796     Operands.push_back(ARMOperand::CreateMem(BaseRegNum, nullptr, 0,
5797                                              ARM_AM::no_shift, 0, Align,
5798                                              false, S, E, AlignmentLoc));
5799 
5800     // If there's a pre-indexing writeback marker, '!', just add it as a token
5801     // operand.
5802     if (Parser.getTok().is(AsmToken::Exclaim)) {
5803       Operands.push_back(ARMOperand::CreateToken("!",Parser.getTok().getLoc()));
5804       Parser.Lex(); // Eat the '!'.
5805     }
5806 
5807     return false;
5808   }
5809 
5810   // If we have a '#' or '$', it's an immediate offset, else assume it's a
5811   // register offset. Be friendly and also accept a plain integer or expression
5812   // (without a leading hash) for gas compatibility.
5813   if (Parser.getTok().is(AsmToken::Hash) ||
5814       Parser.getTok().is(AsmToken::Dollar) ||
5815       Parser.getTok().is(AsmToken::LParen) ||
5816       Parser.getTok().is(AsmToken::Integer)) {
5817     if (Parser.getTok().is(AsmToken::Hash) ||
5818         Parser.getTok().is(AsmToken::Dollar))
5819       Parser.Lex(); // Eat '#' or '$'
5820     E = Parser.getTok().getLoc();
5821 
5822     bool isNegative = getParser().getTok().is(AsmToken::Minus);
5823     const MCExpr *Offset;
5824     if (getParser().parseExpression(Offset))
5825      return true;
5826 
5827     // The expression has to be a constant. Memory references with relocations
5828     // don't come through here, as they use the <label> forms of the relevant
5829     // instructions.
5830     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Offset);
5831     if (!CE)
5832       return Error (E, "constant expression expected");
5833 
5834     // If the constant was #-0, represent it as
5835     // std::numeric_limits<int32_t>::min().
5836     int32_t Val = CE->getValue();
5837     if (isNegative && Val == 0)
5838       CE = MCConstantExpr::create(std::numeric_limits<int32_t>::min(),
5839                                   getContext());
5840 
5841     // Now we should have the closing ']'
5842     if (Parser.getTok().isNot(AsmToken::RBrac))
5843       return Error(Parser.getTok().getLoc(), "']' expected");
5844     E = Parser.getTok().getEndLoc();
5845     Parser.Lex(); // Eat right bracket token.
5846 
5847     // Don't worry about range checking the value here. That's handled by
5848     // the is*() predicates.
5849     Operands.push_back(ARMOperand::CreateMem(BaseRegNum, CE, 0,
5850                                              ARM_AM::no_shift, 0, 0,
5851                                              false, S, E));
5852 
5853     // If there's a pre-indexing writeback marker, '!', just add it as a token
5854     // operand.
5855     if (Parser.getTok().is(AsmToken::Exclaim)) {
5856       Operands.push_back(ARMOperand::CreateToken("!",Parser.getTok().getLoc()));
5857       Parser.Lex(); // Eat the '!'.
5858     }
5859 
5860     return false;
5861   }
5862 
5863   // The register offset is optionally preceded by a '+' or '-'
5864   bool isNegative = false;
5865   if (Parser.getTok().is(AsmToken::Minus)) {
5866     isNegative = true;
5867     Parser.Lex(); // Eat the '-'.
5868   } else if (Parser.getTok().is(AsmToken::Plus)) {
5869     // Nothing to do.
5870     Parser.Lex(); // Eat the '+'.
5871   }
5872 
5873   E = Parser.getTok().getLoc();
5874   int OffsetRegNum = tryParseRegister();
5875   if (OffsetRegNum == -1)
5876     return Error(E, "register expected");
5877 
5878   // If there's a shift operator, handle it.
5879   ARM_AM::ShiftOpc ShiftType = ARM_AM::no_shift;
5880   unsigned ShiftImm = 0;
5881   if (Parser.getTok().is(AsmToken::Comma)) {
5882     Parser.Lex(); // Eat the ','.
5883     if (parseMemRegOffsetShift(ShiftType, ShiftImm))
5884       return true;
5885   }
5886 
5887   // Now we should have the closing ']'
5888   if (Parser.getTok().isNot(AsmToken::RBrac))
5889     return Error(Parser.getTok().getLoc(), "']' expected");
5890   E = Parser.getTok().getEndLoc();
5891   Parser.Lex(); // Eat right bracket token.
5892 
5893   Operands.push_back(ARMOperand::CreateMem(BaseRegNum, nullptr, OffsetRegNum,
5894                                            ShiftType, ShiftImm, 0, isNegative,
5895                                            S, E));
5896 
5897   // If there's a pre-indexing writeback marker, '!', just add it as a token
5898   // operand.
5899   if (Parser.getTok().is(AsmToken::Exclaim)) {
5900     Operands.push_back(ARMOperand::CreateToken("!",Parser.getTok().getLoc()));
5901     Parser.Lex(); // Eat the '!'.
5902   }
5903 
5904   return false;
5905 }
5906 
5907 /// parseMemRegOffsetShift - one of these two:
5908 ///   ( lsl | lsr | asr | ror ) , # shift_amount
5909 ///   rrx
5910 /// return true if it parses a shift otherwise it returns false.
5911 bool ARMAsmParser::parseMemRegOffsetShift(ARM_AM::ShiftOpc &St,
5912                                           unsigned &Amount) {
5913   MCAsmParser &Parser = getParser();
5914   SMLoc Loc = Parser.getTok().getLoc();
5915   const AsmToken &Tok = Parser.getTok();
5916   if (Tok.isNot(AsmToken::Identifier))
5917     return Error(Loc, "illegal shift operator");
5918   StringRef ShiftName = Tok.getString();
5919   if (ShiftName == "lsl" || ShiftName == "LSL" ||
5920       ShiftName == "asl" || ShiftName == "ASL")
5921     St = ARM_AM::lsl;
5922   else if (ShiftName == "lsr" || ShiftName == "LSR")
5923     St = ARM_AM::lsr;
5924   else if (ShiftName == "asr" || ShiftName == "ASR")
5925     St = ARM_AM::asr;
5926   else if (ShiftName == "ror" || ShiftName == "ROR")
5927     St = ARM_AM::ror;
5928   else if (ShiftName == "rrx" || ShiftName == "RRX")
5929     St = ARM_AM::rrx;
5930   else if (ShiftName == "uxtw" || ShiftName == "UXTW")
5931     St = ARM_AM::uxtw;
5932   else
5933     return Error(Loc, "illegal shift operator");
5934   Parser.Lex(); // Eat shift type token.
5935 
5936   // rrx stands alone.
5937   Amount = 0;
5938   if (St != ARM_AM::rrx) {
5939     Loc = Parser.getTok().getLoc();
5940     // A '#' and a shift amount.
5941     const AsmToken &HashTok = Parser.getTok();
5942     if (HashTok.isNot(AsmToken::Hash) &&
5943         HashTok.isNot(AsmToken::Dollar))
5944       return Error(HashTok.getLoc(), "'#' expected");
5945     Parser.Lex(); // Eat hash token.
5946 
5947     const MCExpr *Expr;
5948     if (getParser().parseExpression(Expr))
5949       return true;
5950     // Range check the immediate.
5951     // lsl, ror: 0 <= imm <= 31
5952     // lsr, asr: 0 <= imm <= 32
5953     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr);
5954     if (!CE)
5955       return Error(Loc, "shift amount must be an immediate");
5956     int64_t Imm = CE->getValue();
5957     if (Imm < 0 ||
5958         ((St == ARM_AM::lsl || St == ARM_AM::ror) && Imm > 31) ||
5959         ((St == ARM_AM::lsr || St == ARM_AM::asr) && Imm > 32))
5960       return Error(Loc, "immediate shift value out of range");
5961     // If <ShiftTy> #0, turn it into a no_shift.
5962     if (Imm == 0)
5963       St = ARM_AM::lsl;
5964     // For consistency, treat lsr #32 and asr #32 as having immediate value 0.
5965     if (Imm == 32)
5966       Imm = 0;
5967     Amount = Imm;
5968   }
5969 
5970   return false;
5971 }
5972 
5973 /// parseFPImm - A floating point immediate expression operand.
5974 OperandMatchResultTy
5975 ARMAsmParser::parseFPImm(OperandVector &Operands) {
5976   MCAsmParser &Parser = getParser();
5977   // Anything that can accept a floating point constant as an operand
5978   // needs to go through here, as the regular parseExpression is
5979   // integer only.
5980   //
5981   // This routine still creates a generic Immediate operand, containing
5982   // a bitcast of the 64-bit floating point value. The various operands
5983   // that accept floats can check whether the value is valid for them
5984   // via the standard is*() predicates.
5985 
5986   SMLoc S = Parser.getTok().getLoc();
5987 
5988   if (Parser.getTok().isNot(AsmToken::Hash) &&
5989       Parser.getTok().isNot(AsmToken::Dollar))
5990     return MatchOperand_NoMatch;
5991 
5992   // Disambiguate the VMOV forms that can accept an FP immediate.
5993   // vmov.f32 <sreg>, #imm
5994   // vmov.f64 <dreg>, #imm
5995   // vmov.f32 <dreg>, #imm  @ vector f32x2
5996   // vmov.f32 <qreg>, #imm  @ vector f32x4
5997   //
5998   // There are also the NEON VMOV instructions which expect an
5999   // integer constant. Make sure we don't try to parse an FPImm
6000   // for these:
6001   // vmov.i{8|16|32|64} <dreg|qreg>, #imm
6002   ARMOperand &TyOp = static_cast<ARMOperand &>(*Operands[2]);
6003   bool isVmovf = TyOp.isToken() &&
6004                  (TyOp.getToken() == ".f32" || TyOp.getToken() == ".f64" ||
6005                   TyOp.getToken() == ".f16");
6006   ARMOperand &Mnemonic = static_cast<ARMOperand &>(*Operands[0]);
6007   bool isFconst = Mnemonic.isToken() && (Mnemonic.getToken() == "fconstd" ||
6008                                          Mnemonic.getToken() == "fconsts");
6009   if (!(isVmovf || isFconst))
6010     return MatchOperand_NoMatch;
6011 
6012   Parser.Lex(); // Eat '#' or '$'.
6013 
6014   // Handle negation, as that still comes through as a separate token.
6015   bool isNegative = false;
6016   if (Parser.getTok().is(AsmToken::Minus)) {
6017     isNegative = true;
6018     Parser.Lex();
6019   }
6020   const AsmToken &Tok = Parser.getTok();
6021   SMLoc Loc = Tok.getLoc();
6022   if (Tok.is(AsmToken::Real) && isVmovf) {
6023     APFloat RealVal(APFloat::IEEEsingle(), Tok.getString());
6024     uint64_t IntVal = RealVal.bitcastToAPInt().getZExtValue();
6025     // If we had a '-' in front, toggle the sign bit.
6026     IntVal ^= (uint64_t)isNegative << 31;
6027     Parser.Lex(); // Eat the token.
6028     Operands.push_back(ARMOperand::CreateImm(
6029           MCConstantExpr::create(IntVal, getContext()),
6030           S, Parser.getTok().getLoc()));
6031     return MatchOperand_Success;
6032   }
6033   // Also handle plain integers. Instructions which allow floating point
6034   // immediates also allow a raw encoded 8-bit value.
6035   if (Tok.is(AsmToken::Integer) && isFconst) {
6036     int64_t Val = Tok.getIntVal();
6037     Parser.Lex(); // Eat the token.
6038     if (Val > 255 || Val < 0) {
6039       Error(Loc, "encoded floating point value out of range");
6040       return MatchOperand_ParseFail;
6041     }
6042     float RealVal = ARM_AM::getFPImmFloat(Val);
6043     Val = APFloat(RealVal).bitcastToAPInt().getZExtValue();
6044 
6045     Operands.push_back(ARMOperand::CreateImm(
6046         MCConstantExpr::create(Val, getContext()), S,
6047         Parser.getTok().getLoc()));
6048     return MatchOperand_Success;
6049   }
6050 
6051   Error(Loc, "invalid floating point immediate");
6052   return MatchOperand_ParseFail;
6053 }
6054 
6055 /// Parse a arm instruction operand.  For now this parses the operand regardless
6056 /// of the mnemonic.
6057 bool ARMAsmParser::parseOperand(OperandVector &Operands, StringRef Mnemonic) {
6058   MCAsmParser &Parser = getParser();
6059   SMLoc S, E;
6060 
6061   // Check if the current operand has a custom associated parser, if so, try to
6062   // custom parse the operand, or fallback to the general approach.
6063   OperandMatchResultTy ResTy = MatchOperandParserImpl(Operands, Mnemonic);
6064   if (ResTy == MatchOperand_Success)
6065     return false;
6066   // If there wasn't a custom match, try the generic matcher below. Otherwise,
6067   // there was a match, but an error occurred, in which case, just return that
6068   // the operand parsing failed.
6069   if (ResTy == MatchOperand_ParseFail)
6070     return true;
6071 
6072   switch (getLexer().getKind()) {
6073   default:
6074     Error(Parser.getTok().getLoc(), "unexpected token in operand");
6075     return true;
6076   case AsmToken::Identifier: {
6077     // If we've seen a branch mnemonic, the next operand must be a label.  This
6078     // is true even if the label is a register name.  So "br r1" means branch to
6079     // label "r1".
6080     bool ExpectLabel = Mnemonic == "b" || Mnemonic == "bl";
6081     if (!ExpectLabel) {
6082       if (!tryParseRegisterWithWriteBack(Operands))
6083         return false;
6084       int Res = tryParseShiftRegister(Operands);
6085       if (Res == 0) // success
6086         return false;
6087       else if (Res == -1) // irrecoverable error
6088         return true;
6089       // If this is VMRS, check for the apsr_nzcv operand.
6090       if (Mnemonic == "vmrs" &&
6091           Parser.getTok().getString().equals_lower("apsr_nzcv")) {
6092         S = Parser.getTok().getLoc();
6093         Parser.Lex();
6094         Operands.push_back(ARMOperand::CreateToken("APSR_nzcv", S));
6095         return false;
6096       }
6097     }
6098 
6099     // Fall though for the Identifier case that is not a register or a
6100     // special name.
6101     LLVM_FALLTHROUGH;
6102   }
6103   case AsmToken::LParen:  // parenthesized expressions like (_strcmp-4)
6104   case AsmToken::Integer: // things like 1f and 2b as a branch targets
6105   case AsmToken::String:  // quoted label names.
6106   case AsmToken::Dot: {   // . as a branch target
6107     // This was not a register so parse other operands that start with an
6108     // identifier (like labels) as expressions and create them as immediates.
6109     const MCExpr *IdVal;
6110     S = Parser.getTok().getLoc();
6111     if (getParser().parseExpression(IdVal))
6112       return true;
6113     E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
6114     Operands.push_back(ARMOperand::CreateImm(IdVal, S, E));
6115     return false;
6116   }
6117   case AsmToken::LBrac:
6118     return parseMemory(Operands);
6119   case AsmToken::LCurly:
6120     return parseRegisterList(Operands, !Mnemonic.startswith("clr"));
6121   case AsmToken::Dollar:
6122   case AsmToken::Hash:
6123     // #42 -> immediate.
6124     S = Parser.getTok().getLoc();
6125     Parser.Lex();
6126 
6127     if (Parser.getTok().isNot(AsmToken::Colon)) {
6128       bool isNegative = Parser.getTok().is(AsmToken::Minus);
6129       const MCExpr *ImmVal;
6130       if (getParser().parseExpression(ImmVal))
6131         return true;
6132       const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ImmVal);
6133       if (CE) {
6134         int32_t Val = CE->getValue();
6135         if (isNegative && Val == 0)
6136           ImmVal = MCConstantExpr::create(std::numeric_limits<int32_t>::min(),
6137                                           getContext());
6138       }
6139       E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
6140       Operands.push_back(ARMOperand::CreateImm(ImmVal, S, E));
6141 
6142       // There can be a trailing '!' on operands that we want as a separate
6143       // '!' Token operand. Handle that here. For example, the compatibility
6144       // alias for 'srsdb sp!, #imm' is 'srsdb #imm!'.
6145       if (Parser.getTok().is(AsmToken::Exclaim)) {
6146         Operands.push_back(ARMOperand::CreateToken(Parser.getTok().getString(),
6147                                                    Parser.getTok().getLoc()));
6148         Parser.Lex(); // Eat exclaim token
6149       }
6150       return false;
6151     }
6152     // w/ a ':' after the '#', it's just like a plain ':'.
6153     LLVM_FALLTHROUGH;
6154 
6155   case AsmToken::Colon: {
6156     S = Parser.getTok().getLoc();
6157     // ":lower16:" and ":upper16:" expression prefixes
6158     // FIXME: Check it's an expression prefix,
6159     // e.g. (FOO - :lower16:BAR) isn't legal.
6160     ARMMCExpr::VariantKind RefKind;
6161     if (parsePrefix(RefKind))
6162       return true;
6163 
6164     const MCExpr *SubExprVal;
6165     if (getParser().parseExpression(SubExprVal))
6166       return true;
6167 
6168     const MCExpr *ExprVal = ARMMCExpr::create(RefKind, SubExprVal,
6169                                               getContext());
6170     E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
6171     Operands.push_back(ARMOperand::CreateImm(ExprVal, S, E));
6172     return false;
6173   }
6174   case AsmToken::Equal: {
6175     S = Parser.getTok().getLoc();
6176     if (Mnemonic != "ldr") // only parse for ldr pseudo (e.g. ldr r0, =val)
6177       return Error(S, "unexpected token in operand");
6178     Parser.Lex(); // Eat '='
6179     const MCExpr *SubExprVal;
6180     if (getParser().parseExpression(SubExprVal))
6181       return true;
6182     E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
6183 
6184     // execute-only: we assume that assembly programmers know what they are
6185     // doing and allow literal pool creation here
6186     Operands.push_back(ARMOperand::CreateConstantPoolImm(SubExprVal, S, E));
6187     return false;
6188   }
6189   }
6190 }
6191 
6192 // parsePrefix - Parse ARM 16-bit relocations expression prefix, i.e.
6193 //  :lower16: and :upper16:.
6194 bool ARMAsmParser::parsePrefix(ARMMCExpr::VariantKind &RefKind) {
6195   MCAsmParser &Parser = getParser();
6196   RefKind = ARMMCExpr::VK_ARM_None;
6197 
6198   // consume an optional '#' (GNU compatibility)
6199   if (getLexer().is(AsmToken::Hash))
6200     Parser.Lex();
6201 
6202   // :lower16: and :upper16: modifiers
6203   assert(getLexer().is(AsmToken::Colon) && "expected a :");
6204   Parser.Lex(); // Eat ':'
6205 
6206   if (getLexer().isNot(AsmToken::Identifier)) {
6207     Error(Parser.getTok().getLoc(), "expected prefix identifier in operand");
6208     return true;
6209   }
6210 
6211   enum {
6212     COFF = (1 << MCObjectFileInfo::IsCOFF),
6213     ELF = (1 << MCObjectFileInfo::IsELF),
6214     MACHO = (1 << MCObjectFileInfo::IsMachO),
6215     WASM = (1 << MCObjectFileInfo::IsWasm),
6216   };
6217   static const struct PrefixEntry {
6218     const char *Spelling;
6219     ARMMCExpr::VariantKind VariantKind;
6220     uint8_t SupportedFormats;
6221   } PrefixEntries[] = {
6222     { "lower16", ARMMCExpr::VK_ARM_LO16, COFF | ELF | MACHO },
6223     { "upper16", ARMMCExpr::VK_ARM_HI16, COFF | ELF | MACHO },
6224   };
6225 
6226   StringRef IDVal = Parser.getTok().getIdentifier();
6227 
6228   const auto &Prefix =
6229       std::find_if(std::begin(PrefixEntries), std::end(PrefixEntries),
6230                    [&IDVal](const PrefixEntry &PE) {
6231                       return PE.Spelling == IDVal;
6232                    });
6233   if (Prefix == std::end(PrefixEntries)) {
6234     Error(Parser.getTok().getLoc(), "unexpected prefix in operand");
6235     return true;
6236   }
6237 
6238   uint8_t CurrentFormat;
6239   switch (getContext().getObjectFileInfo()->getObjectFileType()) {
6240   case MCObjectFileInfo::IsMachO:
6241     CurrentFormat = MACHO;
6242     break;
6243   case MCObjectFileInfo::IsELF:
6244     CurrentFormat = ELF;
6245     break;
6246   case MCObjectFileInfo::IsCOFF:
6247     CurrentFormat = COFF;
6248     break;
6249   case MCObjectFileInfo::IsWasm:
6250     CurrentFormat = WASM;
6251     break;
6252   case MCObjectFileInfo::IsXCOFF:
6253     llvm_unreachable("unexpected object format");
6254     break;
6255   }
6256 
6257   if (~Prefix->SupportedFormats & CurrentFormat) {
6258     Error(Parser.getTok().getLoc(),
6259           "cannot represent relocation in the current file format");
6260     return true;
6261   }
6262 
6263   RefKind = Prefix->VariantKind;
6264   Parser.Lex();
6265 
6266   if (getLexer().isNot(AsmToken::Colon)) {
6267     Error(Parser.getTok().getLoc(), "unexpected token after prefix");
6268     return true;
6269   }
6270   Parser.Lex(); // Eat the last ':'
6271 
6272   return false;
6273 }
6274 
6275 /// Given a mnemonic, split out possible predication code and carry
6276 /// setting letters to form a canonical mnemonic and flags.
6277 //
6278 // FIXME: Would be nice to autogen this.
6279 // FIXME: This is a bit of a maze of special cases.
6280 StringRef ARMAsmParser::splitMnemonic(StringRef Mnemonic,
6281                                       StringRef ExtraToken,
6282                                       unsigned &PredicationCode,
6283                                       unsigned &VPTPredicationCode,
6284                                       bool &CarrySetting,
6285                                       unsigned &ProcessorIMod,
6286                                       StringRef &ITMask) {
6287   PredicationCode = ARMCC::AL;
6288   VPTPredicationCode = ARMVCC::None;
6289   CarrySetting = false;
6290   ProcessorIMod = 0;
6291 
6292   // Ignore some mnemonics we know aren't predicated forms.
6293   //
6294   // FIXME: Would be nice to autogen this.
6295   if ((Mnemonic == "movs" && isThumb()) ||
6296       Mnemonic == "teq"   || Mnemonic == "vceq"   || Mnemonic == "svc"   ||
6297       Mnemonic == "mls"   || Mnemonic == "smmls"  || Mnemonic == "vcls"  ||
6298       Mnemonic == "vmls"  || Mnemonic == "vnmls"  || Mnemonic == "vacge" ||
6299       Mnemonic == "vcge"  || Mnemonic == "vclt"   || Mnemonic == "vacgt" ||
6300       Mnemonic == "vaclt" || Mnemonic == "vacle"  || Mnemonic == "hlt" ||
6301       Mnemonic == "vcgt"  || Mnemonic == "vcle"   || Mnemonic == "smlal" ||
6302       Mnemonic == "umaal" || Mnemonic == "umlal"  || Mnemonic == "vabal" ||
6303       Mnemonic == "vmlal" || Mnemonic == "vpadal" || Mnemonic == "vqdmlal" ||
6304       Mnemonic == "fmuls" || Mnemonic == "vmaxnm" || Mnemonic == "vminnm" ||
6305       Mnemonic == "vcvta" || Mnemonic == "vcvtn"  || Mnemonic == "vcvtp" ||
6306       Mnemonic == "vcvtm" || Mnemonic == "vrinta" || Mnemonic == "vrintn" ||
6307       Mnemonic == "vrintp" || Mnemonic == "vrintm" || Mnemonic == "hvc" ||
6308       Mnemonic.startswith("vsel") || Mnemonic == "vins" || Mnemonic == "vmovx" ||
6309       Mnemonic == "bxns"  || Mnemonic == "blxns" ||
6310       Mnemonic == "vudot" || Mnemonic == "vsdot" ||
6311       Mnemonic == "vcmla" || Mnemonic == "vcadd" ||
6312       Mnemonic == "vfmal" || Mnemonic == "vfmsl" ||
6313       Mnemonic == "wls" || Mnemonic == "le" || Mnemonic == "dls" ||
6314       Mnemonic == "csel" || Mnemonic == "csinc" ||
6315       Mnemonic == "csinv" || Mnemonic == "csneg" || Mnemonic == "cinc" ||
6316       Mnemonic == "cinv" || Mnemonic == "cneg" || Mnemonic == "cset" ||
6317       Mnemonic == "csetm")
6318     return Mnemonic;
6319 
6320   // First, split out any predication code. Ignore mnemonics we know aren't
6321   // predicated but do have a carry-set and so weren't caught above.
6322   if (Mnemonic != "adcs" && Mnemonic != "bics" && Mnemonic != "movs" &&
6323       Mnemonic != "muls" && Mnemonic != "smlals" && Mnemonic != "smulls" &&
6324       Mnemonic != "umlals" && Mnemonic != "umulls" && Mnemonic != "lsls" &&
6325       Mnemonic != "sbcs" && Mnemonic != "rscs" &&
6326       !(hasMVE() &&
6327         (Mnemonic == "vmine" ||
6328          Mnemonic == "vshle" || Mnemonic == "vshlt" || Mnemonic == "vshllt" ||
6329          Mnemonic == "vrshle" || Mnemonic == "vrshlt" ||
6330          Mnemonic == "vmvne" || Mnemonic == "vorne" ||
6331          Mnemonic == "vnege" || Mnemonic == "vnegt" ||
6332          Mnemonic == "vmule" || Mnemonic == "vmult" ||
6333          Mnemonic == "vrintne" ||
6334          Mnemonic == "vcmult" || Mnemonic == "vcmule" ||
6335          Mnemonic == "vpsele" || Mnemonic == "vpselt" ||
6336          Mnemonic.startswith("vq")))) {
6337     unsigned CC = ARMCondCodeFromString(Mnemonic.substr(Mnemonic.size()-2));
6338     if (CC != ~0U) {
6339       Mnemonic = Mnemonic.slice(0, Mnemonic.size() - 2);
6340       PredicationCode = CC;
6341     }
6342   }
6343 
6344   // Next, determine if we have a carry setting bit. We explicitly ignore all
6345   // the instructions we know end in 's'.
6346   if (Mnemonic.endswith("s") &&
6347       !(Mnemonic == "cps" || Mnemonic == "mls" ||
6348         Mnemonic == "mrs" || Mnemonic == "smmls" || Mnemonic == "vabs" ||
6349         Mnemonic == "vcls" || Mnemonic == "vmls" || Mnemonic == "vmrs" ||
6350         Mnemonic == "vnmls" || Mnemonic == "vqabs" || Mnemonic == "vrecps" ||
6351         Mnemonic == "vrsqrts" || Mnemonic == "srs" || Mnemonic == "flds" ||
6352         Mnemonic == "fmrs" || Mnemonic == "fsqrts" || Mnemonic == "fsubs" ||
6353         Mnemonic == "fsts" || Mnemonic == "fcpys" || Mnemonic == "fdivs" ||
6354         Mnemonic == "fmuls" || Mnemonic == "fcmps" || Mnemonic == "fcmpzs" ||
6355         Mnemonic == "vfms" || Mnemonic == "vfnms" || Mnemonic == "fconsts" ||
6356         Mnemonic == "bxns" || Mnemonic == "blxns" || Mnemonic == "vfmas" ||
6357         Mnemonic == "vmlas" ||
6358         (Mnemonic == "movs" && isThumb()))) {
6359     Mnemonic = Mnemonic.slice(0, Mnemonic.size() - 1);
6360     CarrySetting = true;
6361   }
6362 
6363   // The "cps" instruction can have a interrupt mode operand which is glued into
6364   // the mnemonic. Check if this is the case, split it and parse the imod op
6365   if (Mnemonic.startswith("cps")) {
6366     // Split out any imod code.
6367     unsigned IMod =
6368       StringSwitch<unsigned>(Mnemonic.substr(Mnemonic.size()-2, 2))
6369       .Case("ie", ARM_PROC::IE)
6370       .Case("id", ARM_PROC::ID)
6371       .Default(~0U);
6372     if (IMod != ~0U) {
6373       Mnemonic = Mnemonic.slice(0, Mnemonic.size()-2);
6374       ProcessorIMod = IMod;
6375     }
6376   }
6377 
6378   if (isMnemonicVPTPredicable(Mnemonic, ExtraToken) && Mnemonic != "vmovlt" &&
6379       Mnemonic != "vshllt" && Mnemonic != "vrshrnt" && Mnemonic != "vshrnt" &&
6380       Mnemonic != "vqrshrunt" && Mnemonic != "vqshrunt" &&
6381       Mnemonic != "vqrshrnt" && Mnemonic != "vqshrnt" && Mnemonic != "vmullt" &&
6382       Mnemonic != "vqmovnt" && Mnemonic != "vqmovunt" &&
6383       Mnemonic != "vqmovnt" && Mnemonic != "vmovnt" && Mnemonic != "vqdmullt" &&
6384       Mnemonic != "vpnot" && Mnemonic != "vcvtt" && Mnemonic != "vcvt") {
6385     unsigned CC = ARMVectorCondCodeFromString(Mnemonic.substr(Mnemonic.size()-1));
6386     if (CC != ~0U) {
6387       Mnemonic = Mnemonic.slice(0, Mnemonic.size()-1);
6388       VPTPredicationCode = CC;
6389     }
6390     return Mnemonic;
6391   }
6392 
6393   // The "it" instruction has the condition mask on the end of the mnemonic.
6394   if (Mnemonic.startswith("it")) {
6395     ITMask = Mnemonic.slice(2, Mnemonic.size());
6396     Mnemonic = Mnemonic.slice(0, 2);
6397   }
6398 
6399   if (Mnemonic.startswith("vpst")) {
6400     ITMask = Mnemonic.slice(4, Mnemonic.size());
6401     Mnemonic = Mnemonic.slice(0, 4);
6402   }
6403   else if (Mnemonic.startswith("vpt")) {
6404     ITMask = Mnemonic.slice(3, Mnemonic.size());
6405     Mnemonic = Mnemonic.slice(0, 3);
6406   }
6407 
6408   return Mnemonic;
6409 }
6410 
6411 /// Given a canonical mnemonic, determine if the instruction ever allows
6412 /// inclusion of carry set or predication code operands.
6413 //
6414 // FIXME: It would be nice to autogen this.
6415 void ARMAsmParser::getMnemonicAcceptInfo(StringRef Mnemonic,
6416                                          StringRef ExtraToken,
6417                                          StringRef FullInst,
6418                                          bool &CanAcceptCarrySet,
6419                                          bool &CanAcceptPredicationCode,
6420                                          bool &CanAcceptVPTPredicationCode) {
6421   CanAcceptVPTPredicationCode = isMnemonicVPTPredicable(Mnemonic, ExtraToken);
6422 
6423   CanAcceptCarrySet =
6424       Mnemonic == "and" || Mnemonic == "lsl" || Mnemonic == "lsr" ||
6425       Mnemonic == "rrx" || Mnemonic == "ror" || Mnemonic == "sub" ||
6426       Mnemonic == "add" || Mnemonic == "adc" || Mnemonic == "mul" ||
6427       Mnemonic == "bic" || Mnemonic == "asr" || Mnemonic == "orr" ||
6428       Mnemonic == "mvn" || Mnemonic == "rsb" || Mnemonic == "rsc" ||
6429       Mnemonic == "orn" || Mnemonic == "sbc" || Mnemonic == "eor" ||
6430       Mnemonic == "neg" || Mnemonic == "vfm" || Mnemonic == "vfnm" ||
6431       (!isThumb() &&
6432        (Mnemonic == "smull" || Mnemonic == "mov" || Mnemonic == "mla" ||
6433         Mnemonic == "smlal" || Mnemonic == "umlal" || Mnemonic == "umull"));
6434 
6435   if (Mnemonic == "bkpt" || Mnemonic == "cbnz" || Mnemonic == "setend" ||
6436       Mnemonic == "cps" || Mnemonic == "it" || Mnemonic == "cbz" ||
6437       Mnemonic == "trap" || Mnemonic == "hlt" || Mnemonic == "udf" ||
6438       Mnemonic.startswith("crc32") || Mnemonic.startswith("cps") ||
6439       Mnemonic.startswith("vsel") || Mnemonic == "vmaxnm" ||
6440       Mnemonic == "vminnm" || Mnemonic == "vcvta" || Mnemonic == "vcvtn" ||
6441       Mnemonic == "vcvtp" || Mnemonic == "vcvtm" || Mnemonic == "vrinta" ||
6442       Mnemonic == "vrintn" || Mnemonic == "vrintp" || Mnemonic == "vrintm" ||
6443       Mnemonic.startswith("aes") || Mnemonic == "hvc" || Mnemonic == "setpan" ||
6444       Mnemonic.startswith("sha1") || Mnemonic.startswith("sha256") ||
6445       (FullInst.startswith("vmull") && FullInst.endswith(".p64")) ||
6446       Mnemonic == "vmovx" || Mnemonic == "vins" ||
6447       Mnemonic == "vudot" || Mnemonic == "vsdot" ||
6448       Mnemonic == "vcmla" || Mnemonic == "vcadd" ||
6449       Mnemonic == "vfmal" || Mnemonic == "vfmsl" ||
6450       Mnemonic == "sb"    || Mnemonic == "ssbb"  ||
6451       Mnemonic == "pssbb" ||
6452       Mnemonic == "bfcsel" || Mnemonic == "wls" ||
6453       Mnemonic == "dls" || Mnemonic == "le" || Mnemonic == "csel" ||
6454       Mnemonic == "csinc" || Mnemonic == "csinv" || Mnemonic == "csneg" ||
6455       Mnemonic == "cinc" || Mnemonic == "cinv" || Mnemonic == "cneg" ||
6456       Mnemonic == "cset" || Mnemonic == "csetm" ||
6457       Mnemonic.startswith("vpt") || Mnemonic.startswith("vpst") ||
6458       (hasCDE() && MS.isCDEInstr(Mnemonic) &&
6459        !MS.isITPredicableCDEInstr(Mnemonic)) ||
6460       (hasMVE() &&
6461        (Mnemonic.startswith("vst2") || Mnemonic.startswith("vld2") ||
6462         Mnemonic.startswith("vst4") || Mnemonic.startswith("vld4") ||
6463         Mnemonic.startswith("wlstp") || Mnemonic.startswith("dlstp") ||
6464         Mnemonic.startswith("letp")))) {
6465     // These mnemonics are never predicable
6466     CanAcceptPredicationCode = false;
6467   } else if (!isThumb()) {
6468     // Some instructions are only predicable in Thumb mode
6469     CanAcceptPredicationCode =
6470         Mnemonic != "cdp2" && Mnemonic != "clrex" && Mnemonic != "mcr2" &&
6471         Mnemonic != "mcrr2" && Mnemonic != "mrc2" && Mnemonic != "mrrc2" &&
6472         Mnemonic != "dmb" && Mnemonic != "dfb" && Mnemonic != "dsb" &&
6473         Mnemonic != "isb" && Mnemonic != "pld" && Mnemonic != "pli" &&
6474         Mnemonic != "pldw" && Mnemonic != "ldc2" && Mnemonic != "ldc2l" &&
6475         Mnemonic != "stc2" && Mnemonic != "stc2l" &&
6476         Mnemonic != "tsb" &&
6477         !Mnemonic.startswith("rfe") && !Mnemonic.startswith("srs");
6478   } else if (isThumbOne()) {
6479     if (hasV6MOps())
6480       CanAcceptPredicationCode = Mnemonic != "movs";
6481     else
6482       CanAcceptPredicationCode = Mnemonic != "nop" && Mnemonic != "movs";
6483   } else
6484     CanAcceptPredicationCode = true;
6485 }
6486 
6487 // Some Thumb instructions have two operand forms that are not
6488 // available as three operand, convert to two operand form if possible.
6489 //
6490 // FIXME: We would really like to be able to tablegen'erate this.
6491 void ARMAsmParser::tryConvertingToTwoOperandForm(StringRef Mnemonic,
6492                                                  bool CarrySetting,
6493                                                  OperandVector &Operands) {
6494   if (Operands.size() != 6)
6495     return;
6496 
6497   const auto &Op3 = static_cast<ARMOperand &>(*Operands[3]);
6498         auto &Op4 = static_cast<ARMOperand &>(*Operands[4]);
6499   if (!Op3.isReg() || !Op4.isReg())
6500     return;
6501 
6502   auto Op3Reg = Op3.getReg();
6503   auto Op4Reg = Op4.getReg();
6504 
6505   // For most Thumb2 cases we just generate the 3 operand form and reduce
6506   // it in processInstruction(), but the 3 operand form of ADD (t2ADDrr)
6507   // won't accept SP or PC so we do the transformation here taking care
6508   // with immediate range in the 'add sp, sp #imm' case.
6509   auto &Op5 = static_cast<ARMOperand &>(*Operands[5]);
6510   if (isThumbTwo()) {
6511     if (Mnemonic != "add")
6512       return;
6513     bool TryTransform = Op3Reg == ARM::PC || Op4Reg == ARM::PC ||
6514                         (Op5.isReg() && Op5.getReg() == ARM::PC);
6515     if (!TryTransform) {
6516       TryTransform = (Op3Reg == ARM::SP || Op4Reg == ARM::SP ||
6517                       (Op5.isReg() && Op5.getReg() == ARM::SP)) &&
6518                      !(Op3Reg == ARM::SP && Op4Reg == ARM::SP &&
6519                        Op5.isImm() && !Op5.isImm0_508s4());
6520     }
6521     if (!TryTransform)
6522       return;
6523   } else if (!isThumbOne())
6524     return;
6525 
6526   if (!(Mnemonic == "add" || Mnemonic == "sub" || Mnemonic == "and" ||
6527         Mnemonic == "eor" || Mnemonic == "lsl" || Mnemonic == "lsr" ||
6528         Mnemonic == "asr" || Mnemonic == "adc" || Mnemonic == "sbc" ||
6529         Mnemonic == "ror" || Mnemonic == "orr" || Mnemonic == "bic"))
6530     return;
6531 
6532   // If first 2 operands of a 3 operand instruction are the same
6533   // then transform to 2 operand version of the same instruction
6534   // e.g. 'adds r0, r0, #1' transforms to 'adds r0, #1'
6535   bool Transform = Op3Reg == Op4Reg;
6536 
6537   // For communtative operations, we might be able to transform if we swap
6538   // Op4 and Op5.  The 'ADD Rdm, SP, Rdm' form is already handled specially
6539   // as tADDrsp.
6540   const ARMOperand *LastOp = &Op5;
6541   bool Swap = false;
6542   if (!Transform && Op5.isReg() && Op3Reg == Op5.getReg() &&
6543       ((Mnemonic == "add" && Op4Reg != ARM::SP) ||
6544        Mnemonic == "and" || Mnemonic == "eor" ||
6545        Mnemonic == "adc" || Mnemonic == "orr")) {
6546     Swap = true;
6547     LastOp = &Op4;
6548     Transform = true;
6549   }
6550 
6551   // If both registers are the same then remove one of them from
6552   // the operand list, with certain exceptions.
6553   if (Transform) {
6554     // Don't transform 'adds Rd, Rd, Rm' or 'sub{s} Rd, Rd, Rm' because the
6555     // 2 operand forms don't exist.
6556     if (((Mnemonic == "add" && CarrySetting) || Mnemonic == "sub") &&
6557         LastOp->isReg())
6558       Transform = false;
6559 
6560     // Don't transform 'add/sub{s} Rd, Rd, #imm' if the immediate fits into
6561     // 3-bits because the ARMARM says not to.
6562     if ((Mnemonic == "add" || Mnemonic == "sub") && LastOp->isImm0_7())
6563       Transform = false;
6564   }
6565 
6566   if (Transform) {
6567     if (Swap)
6568       std::swap(Op4, Op5);
6569     Operands.erase(Operands.begin() + 3);
6570   }
6571 }
6572 
6573 bool ARMAsmParser::shouldOmitCCOutOperand(StringRef Mnemonic,
6574                                           OperandVector &Operands) {
6575   // FIXME: This is all horribly hacky. We really need a better way to deal
6576   // with optional operands like this in the matcher table.
6577 
6578   // The 'mov' mnemonic is special. One variant has a cc_out operand, while
6579   // another does not. Specifically, the MOVW instruction does not. So we
6580   // special case it here and remove the defaulted (non-setting) cc_out
6581   // operand if that's the instruction we're trying to match.
6582   //
6583   // We do this as post-processing of the explicit operands rather than just
6584   // conditionally adding the cc_out in the first place because we need
6585   // to check the type of the parsed immediate operand.
6586   if (Mnemonic == "mov" && Operands.size() > 4 && !isThumb() &&
6587       !static_cast<ARMOperand &>(*Operands[4]).isModImm() &&
6588       static_cast<ARMOperand &>(*Operands[4]).isImm0_65535Expr() &&
6589       static_cast<ARMOperand &>(*Operands[1]).getReg() == 0)
6590     return true;
6591 
6592   // Register-register 'add' for thumb does not have a cc_out operand
6593   // when there are only two register operands.
6594   if (isThumb() && Mnemonic == "add" && Operands.size() == 5 &&
6595       static_cast<ARMOperand &>(*Operands[3]).isReg() &&
6596       static_cast<ARMOperand &>(*Operands[4]).isReg() &&
6597       static_cast<ARMOperand &>(*Operands[1]).getReg() == 0)
6598     return true;
6599   // Register-register 'add' for thumb does not have a cc_out operand
6600   // when it's an ADD Rdm, SP, {Rdm|#imm0_255} instruction. We do
6601   // have to check the immediate range here since Thumb2 has a variant
6602   // that can handle a different range and has a cc_out operand.
6603   if (((isThumb() && Mnemonic == "add") ||
6604        (isThumbTwo() && Mnemonic == "sub")) &&
6605       Operands.size() == 6 && static_cast<ARMOperand &>(*Operands[3]).isReg() &&
6606       static_cast<ARMOperand &>(*Operands[4]).isReg() &&
6607       static_cast<ARMOperand &>(*Operands[4]).getReg() == ARM::SP &&
6608       static_cast<ARMOperand &>(*Operands[1]).getReg() == 0 &&
6609       ((Mnemonic == "add" && static_cast<ARMOperand &>(*Operands[5]).isReg()) ||
6610        static_cast<ARMOperand &>(*Operands[5]).isImm0_1020s4()))
6611     return true;
6612   // For Thumb2, add/sub immediate does not have a cc_out operand for the
6613   // imm0_4095 variant. That's the least-preferred variant when
6614   // selecting via the generic "add" mnemonic, so to know that we
6615   // should remove the cc_out operand, we have to explicitly check that
6616   // it's not one of the other variants. Ugh.
6617   if (isThumbTwo() && (Mnemonic == "add" || Mnemonic == "sub") &&
6618       Operands.size() == 6 && static_cast<ARMOperand &>(*Operands[3]).isReg() &&
6619       static_cast<ARMOperand &>(*Operands[4]).isReg() &&
6620       static_cast<ARMOperand &>(*Operands[5]).isImm()) {
6621     // Nest conditions rather than one big 'if' statement for readability.
6622     //
6623     // If both registers are low, we're in an IT block, and the immediate is
6624     // in range, we should use encoding T1 instead, which has a cc_out.
6625     if (inITBlock() &&
6626         isARMLowRegister(static_cast<ARMOperand &>(*Operands[3]).getReg()) &&
6627         isARMLowRegister(static_cast<ARMOperand &>(*Operands[4]).getReg()) &&
6628         static_cast<ARMOperand &>(*Operands[5]).isImm0_7())
6629       return false;
6630     // Check against T3. If the second register is the PC, this is an
6631     // alternate form of ADR, which uses encoding T4, so check for that too.
6632     if (static_cast<ARMOperand &>(*Operands[4]).getReg() != ARM::PC &&
6633         (static_cast<ARMOperand &>(*Operands[5]).isT2SOImm() ||
6634          static_cast<ARMOperand &>(*Operands[5]).isT2SOImmNeg()))
6635       return false;
6636 
6637     // Otherwise, we use encoding T4, which does not have a cc_out
6638     // operand.
6639     return true;
6640   }
6641 
6642   // The thumb2 multiply instruction doesn't have a CCOut register, so
6643   // if we have a "mul" mnemonic in Thumb mode, check if we'll be able to
6644   // use the 16-bit encoding or not.
6645   if (isThumbTwo() && Mnemonic == "mul" && Operands.size() == 6 &&
6646       static_cast<ARMOperand &>(*Operands[1]).getReg() == 0 &&
6647       static_cast<ARMOperand &>(*Operands[3]).isReg() &&
6648       static_cast<ARMOperand &>(*Operands[4]).isReg() &&
6649       static_cast<ARMOperand &>(*Operands[5]).isReg() &&
6650       // If the registers aren't low regs, the destination reg isn't the
6651       // same as one of the source regs, or the cc_out operand is zero
6652       // outside of an IT block, we have to use the 32-bit encoding, so
6653       // remove the cc_out operand.
6654       (!isARMLowRegister(static_cast<ARMOperand &>(*Operands[3]).getReg()) ||
6655        !isARMLowRegister(static_cast<ARMOperand &>(*Operands[4]).getReg()) ||
6656        !isARMLowRegister(static_cast<ARMOperand &>(*Operands[5]).getReg()) ||
6657        !inITBlock() || (static_cast<ARMOperand &>(*Operands[3]).getReg() !=
6658                             static_cast<ARMOperand &>(*Operands[5]).getReg() &&
6659                         static_cast<ARMOperand &>(*Operands[3]).getReg() !=
6660                             static_cast<ARMOperand &>(*Operands[4]).getReg())))
6661     return true;
6662 
6663   // Also check the 'mul' syntax variant that doesn't specify an explicit
6664   // destination register.
6665   if (isThumbTwo() && Mnemonic == "mul" && Operands.size() == 5 &&
6666       static_cast<ARMOperand &>(*Operands[1]).getReg() == 0 &&
6667       static_cast<ARMOperand &>(*Operands[3]).isReg() &&
6668       static_cast<ARMOperand &>(*Operands[4]).isReg() &&
6669       // If the registers aren't low regs  or the cc_out operand is zero
6670       // outside of an IT block, we have to use the 32-bit encoding, so
6671       // remove the cc_out operand.
6672       (!isARMLowRegister(static_cast<ARMOperand &>(*Operands[3]).getReg()) ||
6673        !isARMLowRegister(static_cast<ARMOperand &>(*Operands[4]).getReg()) ||
6674        !inITBlock()))
6675     return true;
6676 
6677   // Register-register 'add/sub' for thumb does not have a cc_out operand
6678   // when it's an ADD/SUB SP, #imm. Be lenient on count since there's also
6679   // the "add/sub SP, SP, #imm" version. If the follow-up operands aren't
6680   // right, this will result in better diagnostics (which operand is off)
6681   // anyway.
6682   if (isThumb() && (Mnemonic == "add" || Mnemonic == "sub") &&
6683       (Operands.size() == 5 || Operands.size() == 6) &&
6684       static_cast<ARMOperand &>(*Operands[3]).isReg() &&
6685       static_cast<ARMOperand &>(*Operands[3]).getReg() == ARM::SP &&
6686       static_cast<ARMOperand &>(*Operands[1]).getReg() == 0 &&
6687       (static_cast<ARMOperand &>(*Operands[4]).isImm() ||
6688        (Operands.size() == 6 &&
6689         static_cast<ARMOperand &>(*Operands[5]).isImm()))) {
6690     // Thumb2 (add|sub){s}{p}.w GPRnopc, sp, #{T2SOImm} has cc_out
6691     return (!(isThumbTwo() &&
6692               (static_cast<ARMOperand &>(*Operands[4]).isT2SOImm() ||
6693                static_cast<ARMOperand &>(*Operands[4]).isT2SOImmNeg())));
6694   }
6695   // Fixme: Should join all the thumb+thumb2 (add|sub) in a single if case
6696   // Thumb2 ADD r0, #4095 -> ADDW r0, r0, #4095 (T4)
6697   // Thumb2 SUB r0, #4095 -> SUBW r0, r0, #4095
6698   if (isThumbTwo() && (Mnemonic == "add" || Mnemonic == "sub") &&
6699       (Operands.size() == 5) &&
6700       static_cast<ARMOperand &>(*Operands[3]).isReg() &&
6701       static_cast<ARMOperand &>(*Operands[3]).getReg() != ARM::SP &&
6702       static_cast<ARMOperand &>(*Operands[3]).getReg() != ARM::PC &&
6703       static_cast<ARMOperand &>(*Operands[1]).getReg() == 0 &&
6704       static_cast<ARMOperand &>(*Operands[4]).isImm()) {
6705     const ARMOperand &IMM = static_cast<ARMOperand &>(*Operands[4]);
6706     if (IMM.isT2SOImm() || IMM.isT2SOImmNeg())
6707       return false; // add.w / sub.w
6708     if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(IMM.getImm())) {
6709       const int64_t Value = CE->getValue();
6710       // Thumb1 imm8 sub / add
6711       if ((Value < ((1 << 7) - 1) << 2) && inITBlock() && (!(Value & 3)) &&
6712           isARMLowRegister(static_cast<ARMOperand &>(*Operands[3]).getReg()))
6713         return false;
6714       return true; // Thumb2 T4 addw / subw
6715     }
6716   }
6717   return false;
6718 }
6719 
6720 bool ARMAsmParser::shouldOmitPredicateOperand(StringRef Mnemonic,
6721                                               OperandVector &Operands) {
6722   // VRINT{Z, X} have a predicate operand in VFP, but not in NEON
6723   unsigned RegIdx = 3;
6724   if ((((Mnemonic == "vrintz" || Mnemonic == "vrintx") && !hasMVE()) ||
6725       Mnemonic == "vrintr") &&
6726       (static_cast<ARMOperand &>(*Operands[2]).getToken() == ".f32" ||
6727        static_cast<ARMOperand &>(*Operands[2]).getToken() == ".f16")) {
6728     if (static_cast<ARMOperand &>(*Operands[3]).isToken() &&
6729         (static_cast<ARMOperand &>(*Operands[3]).getToken() == ".f32" ||
6730          static_cast<ARMOperand &>(*Operands[3]).getToken() == ".f16"))
6731       RegIdx = 4;
6732 
6733     if (static_cast<ARMOperand &>(*Operands[RegIdx]).isReg() &&
6734         (ARMMCRegisterClasses[ARM::DPRRegClassID].contains(
6735              static_cast<ARMOperand &>(*Operands[RegIdx]).getReg()) ||
6736          ARMMCRegisterClasses[ARM::QPRRegClassID].contains(
6737              static_cast<ARMOperand &>(*Operands[RegIdx]).getReg())))
6738       return true;
6739   }
6740   return false;
6741 }
6742 
6743 bool ARMAsmParser::shouldOmitVectorPredicateOperand(StringRef Mnemonic,
6744                                                     OperandVector &Operands) {
6745   if (!hasMVE() || Operands.size() < 3)
6746     return true;
6747 
6748   if (Mnemonic.startswith("vld2") || Mnemonic.startswith("vld4") ||
6749       Mnemonic.startswith("vst2") || Mnemonic.startswith("vst4"))
6750     return true;
6751 
6752   if (Mnemonic.startswith("vctp") || Mnemonic.startswith("vpnot"))
6753     return false;
6754 
6755   if (Mnemonic.startswith("vmov") &&
6756       !(Mnemonic.startswith("vmovl") || Mnemonic.startswith("vmovn") ||
6757         Mnemonic.startswith("vmovx"))) {
6758     for (auto &Operand : Operands) {
6759       if (static_cast<ARMOperand &>(*Operand).isVectorIndex() ||
6760           ((*Operand).isReg() &&
6761            (ARMMCRegisterClasses[ARM::SPRRegClassID].contains(
6762              (*Operand).getReg()) ||
6763             ARMMCRegisterClasses[ARM::DPRRegClassID].contains(
6764               (*Operand).getReg())))) {
6765         return true;
6766       }
6767     }
6768     return false;
6769   } else {
6770     for (auto &Operand : Operands) {
6771       // We check the larger class QPR instead of just the legal class
6772       // MQPR, to more accurately report errors when using Q registers
6773       // outside of the allowed range.
6774       if (static_cast<ARMOperand &>(*Operand).isVectorIndex() ||
6775           (Operand->isReg() &&
6776            (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(
6777              Operand->getReg()))))
6778         return false;
6779     }
6780     return true;
6781   }
6782 }
6783 
6784 static bool isDataTypeToken(StringRef Tok) {
6785   return Tok == ".8" || Tok == ".16" || Tok == ".32" || Tok == ".64" ||
6786     Tok == ".i8" || Tok == ".i16" || Tok == ".i32" || Tok == ".i64" ||
6787     Tok == ".u8" || Tok == ".u16" || Tok == ".u32" || Tok == ".u64" ||
6788     Tok == ".s8" || Tok == ".s16" || Tok == ".s32" || Tok == ".s64" ||
6789     Tok == ".p8" || Tok == ".p16" || Tok == ".f32" || Tok == ".f64" ||
6790     Tok == ".f" || Tok == ".d";
6791 }
6792 
6793 // FIXME: This bit should probably be handled via an explicit match class
6794 // in the .td files that matches the suffix instead of having it be
6795 // a literal string token the way it is now.
6796 static bool doesIgnoreDataTypeSuffix(StringRef Mnemonic, StringRef DT) {
6797   return Mnemonic.startswith("vldm") || Mnemonic.startswith("vstm");
6798 }
6799 
6800 static void applyMnemonicAliases(StringRef &Mnemonic,
6801                                  const FeatureBitset &Features,
6802                                  unsigned VariantID);
6803 
6804 // The GNU assembler has aliases of ldrd and strd with the second register
6805 // omitted. We don't have a way to do that in tablegen, so fix it up here.
6806 //
6807 // We have to be careful to not emit an invalid Rt2 here, because the rest of
6808 // the assembly parser could then generate confusing diagnostics refering to
6809 // it. If we do find anything that prevents us from doing the transformation we
6810 // bail out, and let the assembly parser report an error on the instruction as
6811 // it is written.
6812 void ARMAsmParser::fixupGNULDRDAlias(StringRef Mnemonic,
6813                                      OperandVector &Operands) {
6814   if (Mnemonic != "ldrd" && Mnemonic != "strd")
6815     return;
6816   if (Operands.size() < 4)
6817     return;
6818 
6819   ARMOperand &Op2 = static_cast<ARMOperand &>(*Operands[2]);
6820   ARMOperand &Op3 = static_cast<ARMOperand &>(*Operands[3]);
6821 
6822   if (!Op2.isReg())
6823     return;
6824   if (!Op3.isGPRMem())
6825     return;
6826 
6827   const MCRegisterClass &GPR = MRI->getRegClass(ARM::GPRRegClassID);
6828   if (!GPR.contains(Op2.getReg()))
6829     return;
6830 
6831   unsigned RtEncoding = MRI->getEncodingValue(Op2.getReg());
6832   if (!isThumb() && (RtEncoding & 1)) {
6833     // In ARM mode, the registers must be from an aligned pair, this
6834     // restriction does not apply in Thumb mode.
6835     return;
6836   }
6837   if (Op2.getReg() == ARM::PC)
6838     return;
6839   unsigned PairedReg = GPR.getRegister(RtEncoding + 1);
6840   if (!PairedReg || PairedReg == ARM::PC ||
6841       (PairedReg == ARM::SP && !hasV8Ops()))
6842     return;
6843 
6844   Operands.insert(
6845       Operands.begin() + 3,
6846       ARMOperand::CreateReg(PairedReg, Op2.getStartLoc(), Op2.getEndLoc()));
6847 }
6848 
6849 // Dual-register instruction have the following syntax:
6850 // <mnemonic> <predicate>? <coproc>, <Rdest>, <Rdest+1>, <Rsrc>, ..., #imm
6851 // This function tries to remove <Rdest+1> and replace <Rdest> with a pair
6852 // operand. If the conversion fails an error is diagnosed, and the function
6853 // returns true.
6854 bool ARMAsmParser::CDEConvertDualRegOperand(StringRef Mnemonic,
6855                                             OperandVector &Operands) {
6856   assert(MS.isCDEDualRegInstr(Mnemonic));
6857   bool isPredicable =
6858       Mnemonic == "cx1da" || Mnemonic == "cx2da" || Mnemonic == "cx3da";
6859   size_t NumPredOps = isPredicable ? 1 : 0;
6860 
6861   if (Operands.size() <= 3 + NumPredOps)
6862     return false;
6863 
6864   StringRef Op2Diag(
6865       "operand must be an even-numbered register in the range [r0, r10]");
6866 
6867   const MCParsedAsmOperand &Op2 = *Operands[2 + NumPredOps];
6868   if (!Op2.isReg())
6869     return Error(Op2.getStartLoc(), Op2Diag);
6870 
6871   unsigned RNext;
6872   unsigned RPair;
6873   switch (Op2.getReg()) {
6874   default:
6875     return Error(Op2.getStartLoc(), Op2Diag);
6876   case ARM::R0:
6877     RNext = ARM::R1;
6878     RPair = ARM::R0_R1;
6879     break;
6880   case ARM::R2:
6881     RNext = ARM::R3;
6882     RPair = ARM::R2_R3;
6883     break;
6884   case ARM::R4:
6885     RNext = ARM::R5;
6886     RPair = ARM::R4_R5;
6887     break;
6888   case ARM::R6:
6889     RNext = ARM::R7;
6890     RPair = ARM::R6_R7;
6891     break;
6892   case ARM::R8:
6893     RNext = ARM::R9;
6894     RPair = ARM::R8_R9;
6895     break;
6896   case ARM::R10:
6897     RNext = ARM::R11;
6898     RPair = ARM::R10_R11;
6899     break;
6900   }
6901 
6902   const MCParsedAsmOperand &Op3 = *Operands[3 + NumPredOps];
6903   if (!Op3.isReg() || Op3.getReg() != RNext)
6904     return Error(Op3.getStartLoc(), "operand must be a consecutive register");
6905 
6906   Operands.erase(Operands.begin() + 3 + NumPredOps);
6907   Operands[2 + NumPredOps] =
6908       ARMOperand::CreateReg(RPair, Op2.getStartLoc(), Op2.getEndLoc());
6909   return false;
6910 }
6911 
6912 /// Parse an arm instruction mnemonic followed by its operands.
6913 bool ARMAsmParser::ParseInstruction(ParseInstructionInfo &Info, StringRef Name,
6914                                     SMLoc NameLoc, OperandVector &Operands) {
6915   MCAsmParser &Parser = getParser();
6916 
6917   // Apply mnemonic aliases before doing anything else, as the destination
6918   // mnemonic may include suffices and we want to handle them normally.
6919   // The generic tblgen'erated code does this later, at the start of
6920   // MatchInstructionImpl(), but that's too late for aliases that include
6921   // any sort of suffix.
6922   const FeatureBitset &AvailableFeatures = getAvailableFeatures();
6923   unsigned AssemblerDialect = getParser().getAssemblerDialect();
6924   applyMnemonicAliases(Name, AvailableFeatures, AssemblerDialect);
6925 
6926   // First check for the ARM-specific .req directive.
6927   if (Parser.getTok().is(AsmToken::Identifier) &&
6928       Parser.getTok().getIdentifier().lower() == ".req") {
6929     parseDirectiveReq(Name, NameLoc);
6930     // We always return 'error' for this, as we're done with this
6931     // statement and don't need to match the 'instruction."
6932     return true;
6933   }
6934 
6935   // Create the leading tokens for the mnemonic, split by '.' characters.
6936   size_t Start = 0, Next = Name.find('.');
6937   StringRef Mnemonic = Name.slice(Start, Next);
6938   StringRef ExtraToken = Name.slice(Next, Name.find(' ', Next + 1));
6939 
6940   // Split out the predication code and carry setting flag from the mnemonic.
6941   unsigned PredicationCode;
6942   unsigned VPTPredicationCode;
6943   unsigned ProcessorIMod;
6944   bool CarrySetting;
6945   StringRef ITMask;
6946   Mnemonic = splitMnemonic(Mnemonic, ExtraToken, PredicationCode, VPTPredicationCode,
6947                            CarrySetting, ProcessorIMod, ITMask);
6948 
6949   // In Thumb1, only the branch (B) instruction can be predicated.
6950   if (isThumbOne() && PredicationCode != ARMCC::AL && Mnemonic != "b") {
6951     return Error(NameLoc, "conditional execution not supported in Thumb1");
6952   }
6953 
6954   Operands.push_back(ARMOperand::CreateToken(Mnemonic, NameLoc));
6955 
6956   // Handle the mask for IT and VPT instructions. In ARMOperand and
6957   // MCOperand, this is stored in a format independent of the
6958   // condition code: the lowest set bit indicates the end of the
6959   // encoding, and above that, a 1 bit indicates 'else', and an 0
6960   // indicates 'then'. E.g.
6961   //    IT    -> 1000
6962   //    ITx   -> x100    (ITT -> 0100, ITE -> 1100)
6963   //    ITxy  -> xy10    (e.g. ITET -> 1010)
6964   //    ITxyz -> xyz1    (e.g. ITEET -> 1101)
6965   if (Mnemonic == "it" || Mnemonic.startswith("vpt") ||
6966       Mnemonic.startswith("vpst")) {
6967     SMLoc Loc = Mnemonic == "it"  ? SMLoc::getFromPointer(NameLoc.getPointer() + 2) :
6968                 Mnemonic == "vpt" ? SMLoc::getFromPointer(NameLoc.getPointer() + 3) :
6969                                     SMLoc::getFromPointer(NameLoc.getPointer() + 4);
6970     if (ITMask.size() > 3) {
6971       if (Mnemonic == "it")
6972         return Error(Loc, "too many conditions on IT instruction");
6973       return Error(Loc, "too many conditions on VPT instruction");
6974     }
6975     unsigned Mask = 8;
6976     for (unsigned i = ITMask.size(); i != 0; --i) {
6977       char pos = ITMask[i - 1];
6978       if (pos != 't' && pos != 'e') {
6979         return Error(Loc, "illegal IT block condition mask '" + ITMask + "'");
6980       }
6981       Mask >>= 1;
6982       if (ITMask[i - 1] == 'e')
6983         Mask |= 8;
6984     }
6985     Operands.push_back(ARMOperand::CreateITMask(Mask, Loc));
6986   }
6987 
6988   // FIXME: This is all a pretty gross hack. We should automatically handle
6989   // optional operands like this via tblgen.
6990 
6991   // Next, add the CCOut and ConditionCode operands, if needed.
6992   //
6993   // For mnemonics which can ever incorporate a carry setting bit or predication
6994   // code, our matching model involves us always generating CCOut and
6995   // ConditionCode operands to match the mnemonic "as written" and then we let
6996   // the matcher deal with finding the right instruction or generating an
6997   // appropriate error.
6998   bool CanAcceptCarrySet, CanAcceptPredicationCode, CanAcceptVPTPredicationCode;
6999   getMnemonicAcceptInfo(Mnemonic, ExtraToken, Name, CanAcceptCarrySet,
7000                         CanAcceptPredicationCode, CanAcceptVPTPredicationCode);
7001 
7002   // If we had a carry-set on an instruction that can't do that, issue an
7003   // error.
7004   if (!CanAcceptCarrySet && CarrySetting) {
7005     return Error(NameLoc, "instruction '" + Mnemonic +
7006                  "' can not set flags, but 's' suffix specified");
7007   }
7008   // If we had a predication code on an instruction that can't do that, issue an
7009   // error.
7010   if (!CanAcceptPredicationCode && PredicationCode != ARMCC::AL) {
7011     return Error(NameLoc, "instruction '" + Mnemonic +
7012                  "' is not predicable, but condition code specified");
7013   }
7014 
7015   // If we had a VPT predication code on an instruction that can't do that, issue an
7016   // error.
7017   if (!CanAcceptVPTPredicationCode && VPTPredicationCode != ARMVCC::None) {
7018     return Error(NameLoc, "instruction '" + Mnemonic +
7019                  "' is not VPT predicable, but VPT code T/E is specified");
7020   }
7021 
7022   // Add the carry setting operand, if necessary.
7023   if (CanAcceptCarrySet) {
7024     SMLoc Loc = SMLoc::getFromPointer(NameLoc.getPointer() + Mnemonic.size());
7025     Operands.push_back(ARMOperand::CreateCCOut(CarrySetting ? ARM::CPSR : 0,
7026                                                Loc));
7027   }
7028 
7029   // Add the predication code operand, if necessary.
7030   if (CanAcceptPredicationCode) {
7031     SMLoc Loc = SMLoc::getFromPointer(NameLoc.getPointer() + Mnemonic.size() +
7032                                       CarrySetting);
7033     Operands.push_back(ARMOperand::CreateCondCode(
7034                        ARMCC::CondCodes(PredicationCode), Loc));
7035   }
7036 
7037   // Add the VPT predication code operand, if necessary.
7038   // FIXME: We don't add them for the instructions filtered below as these can
7039   // have custom operands which need special parsing.  This parsing requires
7040   // the operand to be in the same place in the OperandVector as their
7041   // definition in tblgen.  Since these instructions may also have the
7042   // scalar predication operand we do not add the vector one and leave until
7043   // now to fix it up.
7044   if (CanAcceptVPTPredicationCode && Mnemonic != "vmov" &&
7045       !Mnemonic.startswith("vcmp") &&
7046       !(Mnemonic.startswith("vcvt") && Mnemonic != "vcvta" &&
7047         Mnemonic != "vcvtn" && Mnemonic != "vcvtp" && Mnemonic != "vcvtm")) {
7048     SMLoc Loc = SMLoc::getFromPointer(NameLoc.getPointer() + Mnemonic.size() +
7049                                       CarrySetting);
7050     Operands.push_back(ARMOperand::CreateVPTPred(
7051                          ARMVCC::VPTCodes(VPTPredicationCode), Loc));
7052   }
7053 
7054   // Add the processor imod operand, if necessary.
7055   if (ProcessorIMod) {
7056     Operands.push_back(ARMOperand::CreateImm(
7057           MCConstantExpr::create(ProcessorIMod, getContext()),
7058                                  NameLoc, NameLoc));
7059   } else if (Mnemonic == "cps" && isMClass()) {
7060     return Error(NameLoc, "instruction 'cps' requires effect for M-class");
7061   }
7062 
7063   // Add the remaining tokens in the mnemonic.
7064   while (Next != StringRef::npos) {
7065     Start = Next;
7066     Next = Name.find('.', Start + 1);
7067     ExtraToken = Name.slice(Start, Next);
7068 
7069     // Some NEON instructions have an optional datatype suffix that is
7070     // completely ignored. Check for that.
7071     if (isDataTypeToken(ExtraToken) &&
7072         doesIgnoreDataTypeSuffix(Mnemonic, ExtraToken))
7073       continue;
7074 
7075     // For for ARM mode generate an error if the .n qualifier is used.
7076     if (ExtraToken == ".n" && !isThumb()) {
7077       SMLoc Loc = SMLoc::getFromPointer(NameLoc.getPointer() + Start);
7078       return Error(Loc, "instruction with .n (narrow) qualifier not allowed in "
7079                    "arm mode");
7080     }
7081 
7082     // The .n qualifier is always discarded as that is what the tables
7083     // and matcher expect.  In ARM mode the .w qualifier has no effect,
7084     // so discard it to avoid errors that can be caused by the matcher.
7085     if (ExtraToken != ".n" && (isThumb() || ExtraToken != ".w")) {
7086       SMLoc Loc = SMLoc::getFromPointer(NameLoc.getPointer() + Start);
7087       Operands.push_back(ARMOperand::CreateToken(ExtraToken, Loc));
7088     }
7089   }
7090 
7091   // Read the remaining operands.
7092   if (getLexer().isNot(AsmToken::EndOfStatement)) {
7093     // Read the first operand.
7094     if (parseOperand(Operands, Mnemonic)) {
7095       return true;
7096     }
7097 
7098     while (parseOptionalToken(AsmToken::Comma)) {
7099       // Parse and remember the operand.
7100       if (parseOperand(Operands, Mnemonic)) {
7101         return true;
7102       }
7103     }
7104   }
7105 
7106   if (parseToken(AsmToken::EndOfStatement, "unexpected token in argument list"))
7107     return true;
7108 
7109   tryConvertingToTwoOperandForm(Mnemonic, CarrySetting, Operands);
7110 
7111   if (hasCDE() && MS.isCDEInstr(Mnemonic)) {
7112     // Dual-register instructions use even-odd register pairs as their
7113     // destination operand, in assembly such pair is spelled as two
7114     // consecutive registers, without any special syntax. ConvertDualRegOperand
7115     // tries to convert such operand into register pair, e.g. r2, r3 -> r2_r3.
7116     // It returns true, if an error message has been emitted. If the function
7117     // returns false, the function either succeeded or an error (e.g. missing
7118     // operand) will be diagnosed elsewhere.
7119     if (MS.isCDEDualRegInstr(Mnemonic)) {
7120       bool GotError = CDEConvertDualRegOperand(Mnemonic, Operands);
7121       if (GotError)
7122         return GotError;
7123     }
7124   }
7125 
7126   // Some instructions, mostly Thumb, have forms for the same mnemonic that
7127   // do and don't have a cc_out optional-def operand. With some spot-checks
7128   // of the operand list, we can figure out which variant we're trying to
7129   // parse and adjust accordingly before actually matching. We shouldn't ever
7130   // try to remove a cc_out operand that was explicitly set on the
7131   // mnemonic, of course (CarrySetting == true). Reason number #317 the
7132   // table driven matcher doesn't fit well with the ARM instruction set.
7133   if (!CarrySetting && shouldOmitCCOutOperand(Mnemonic, Operands))
7134     Operands.erase(Operands.begin() + 1);
7135 
7136   // Some instructions have the same mnemonic, but don't always
7137   // have a predicate. Distinguish them here and delete the
7138   // appropriate predicate if needed.  This could be either the scalar
7139   // predication code or the vector predication code.
7140   if (PredicationCode == ARMCC::AL &&
7141       shouldOmitPredicateOperand(Mnemonic, Operands))
7142     Operands.erase(Operands.begin() + 1);
7143 
7144 
7145   if (hasMVE()) {
7146     if (!shouldOmitVectorPredicateOperand(Mnemonic, Operands) &&
7147         Mnemonic == "vmov" && PredicationCode == ARMCC::LT) {
7148       // Very nasty hack to deal with the vector predicated variant of vmovlt
7149       // the scalar predicated vmov with condition 'lt'.  We can not tell them
7150       // apart until we have parsed their operands.
7151       Operands.erase(Operands.begin() + 1);
7152       Operands.erase(Operands.begin());
7153       SMLoc MLoc = SMLoc::getFromPointer(NameLoc.getPointer());
7154       SMLoc PLoc = SMLoc::getFromPointer(NameLoc.getPointer() +
7155                                          Mnemonic.size() - 1 + CarrySetting);
7156       Operands.insert(Operands.begin(),
7157                       ARMOperand::CreateVPTPred(ARMVCC::None, PLoc));
7158       Operands.insert(Operands.begin(),
7159                       ARMOperand::CreateToken(StringRef("vmovlt"), MLoc));
7160     } else if (Mnemonic == "vcvt" && PredicationCode == ARMCC::NE &&
7161                !shouldOmitVectorPredicateOperand(Mnemonic, Operands)) {
7162       // Another nasty hack to deal with the ambiguity between vcvt with scalar
7163       // predication 'ne' and vcvtn with vector predication 'e'.  As above we
7164       // can only distinguish between the two after we have parsed their
7165       // operands.
7166       Operands.erase(Operands.begin() + 1);
7167       Operands.erase(Operands.begin());
7168       SMLoc MLoc = SMLoc::getFromPointer(NameLoc.getPointer());
7169       SMLoc PLoc = SMLoc::getFromPointer(NameLoc.getPointer() +
7170                                          Mnemonic.size() - 1 + CarrySetting);
7171       Operands.insert(Operands.begin(),
7172                       ARMOperand::CreateVPTPred(ARMVCC::Else, PLoc));
7173       Operands.insert(Operands.begin(),
7174                       ARMOperand::CreateToken(StringRef("vcvtn"), MLoc));
7175     } else if (Mnemonic == "vmul" && PredicationCode == ARMCC::LT &&
7176                !shouldOmitVectorPredicateOperand(Mnemonic, Operands)) {
7177       // Another hack, this time to distinguish between scalar predicated vmul
7178       // with 'lt' predication code and the vector instruction vmullt with
7179       // vector predication code "none"
7180       Operands.erase(Operands.begin() + 1);
7181       Operands.erase(Operands.begin());
7182       SMLoc MLoc = SMLoc::getFromPointer(NameLoc.getPointer());
7183       Operands.insert(Operands.begin(),
7184                       ARMOperand::CreateToken(StringRef("vmullt"), MLoc));
7185     }
7186     // For vmov and vcmp, as mentioned earlier, we did not add the vector
7187     // predication code, since these may contain operands that require
7188     // special parsing.  So now we have to see if they require vector
7189     // predication and replace the scalar one with the vector predication
7190     // operand if that is the case.
7191     else if (Mnemonic == "vmov" || Mnemonic.startswith("vcmp") ||
7192              (Mnemonic.startswith("vcvt") && !Mnemonic.startswith("vcvta") &&
7193               !Mnemonic.startswith("vcvtn") && !Mnemonic.startswith("vcvtp") &&
7194               !Mnemonic.startswith("vcvtm"))) {
7195       if (!shouldOmitVectorPredicateOperand(Mnemonic, Operands)) {
7196         // We could not split the vector predicate off vcvt because it might
7197         // have been the scalar vcvtt instruction.  Now we know its a vector
7198         // instruction, we still need to check whether its the vector
7199         // predicated vcvt with 'Then' predication or the vector vcvtt.  We can
7200         // distinguish the two based on the suffixes, if it is any of
7201         // ".f16.f32", ".f32.f16", ".f16.f64" or ".f64.f16" then it is the vcvtt.
7202         if (Mnemonic.startswith("vcvtt") && Operands.size() >= 4) {
7203           auto Sz1 = static_cast<ARMOperand &>(*Operands[2]);
7204           auto Sz2 = static_cast<ARMOperand &>(*Operands[3]);
7205           if (!(Sz1.isToken() && Sz1.getToken().startswith(".f") &&
7206               Sz2.isToken() && Sz2.getToken().startswith(".f"))) {
7207             Operands.erase(Operands.begin());
7208             SMLoc MLoc = SMLoc::getFromPointer(NameLoc.getPointer());
7209             VPTPredicationCode = ARMVCC::Then;
7210 
7211             Mnemonic = Mnemonic.substr(0, 4);
7212             Operands.insert(Operands.begin(),
7213                             ARMOperand::CreateToken(Mnemonic, MLoc));
7214           }
7215         }
7216         Operands.erase(Operands.begin() + 1);
7217         SMLoc PLoc = SMLoc::getFromPointer(NameLoc.getPointer() +
7218                                           Mnemonic.size() + CarrySetting);
7219         Operands.insert(Operands.begin() + 1,
7220                         ARMOperand::CreateVPTPred(
7221                             ARMVCC::VPTCodes(VPTPredicationCode), PLoc));
7222       }
7223     } else if (CanAcceptVPTPredicationCode) {
7224       // For all other instructions, make sure only one of the two
7225       // predication operands is left behind, depending on whether we should
7226       // use the vector predication.
7227       if (shouldOmitVectorPredicateOperand(Mnemonic, Operands)) {
7228         if (CanAcceptPredicationCode)
7229           Operands.erase(Operands.begin() + 2);
7230         else
7231           Operands.erase(Operands.begin() + 1);
7232       } else if (CanAcceptPredicationCode && PredicationCode == ARMCC::AL) {
7233         Operands.erase(Operands.begin() + 1);
7234       }
7235     }
7236   }
7237 
7238   if (VPTPredicationCode != ARMVCC::None) {
7239     bool usedVPTPredicationCode = false;
7240     for (unsigned I = 1; I < Operands.size(); ++I)
7241       if (static_cast<ARMOperand &>(*Operands[I]).isVPTPred())
7242         usedVPTPredicationCode = true;
7243     if (!usedVPTPredicationCode) {
7244       // If we have a VPT predication code and we haven't just turned it
7245       // into an operand, then it was a mistake for splitMnemonic to
7246       // separate it from the rest of the mnemonic in the first place,
7247       // and this may lead to wrong disassembly (e.g. scalar floating
7248       // point VCMPE is actually a different instruction from VCMP, so
7249       // we mustn't treat them the same). In that situation, glue it
7250       // back on.
7251       Mnemonic = Name.slice(0, Mnemonic.size() + 1);
7252       Operands.erase(Operands.begin());
7253       Operands.insert(Operands.begin(),
7254                       ARMOperand::CreateToken(Mnemonic, NameLoc));
7255     }
7256   }
7257 
7258     // ARM mode 'blx' need special handling, as the register operand version
7259     // is predicable, but the label operand version is not. So, we can't rely
7260     // on the Mnemonic based checking to correctly figure out when to put
7261     // a k_CondCode operand in the list. If we're trying to match the label
7262     // version, remove the k_CondCode operand here.
7263     if (!isThumb() && Mnemonic == "blx" && Operands.size() == 3 &&
7264         static_cast<ARMOperand &>(*Operands[2]).isImm())
7265       Operands.erase(Operands.begin() + 1);
7266 
7267     // Adjust operands of ldrexd/strexd to MCK_GPRPair.
7268     // ldrexd/strexd require even/odd GPR pair. To enforce this constraint,
7269     // a single GPRPair reg operand is used in the .td file to replace the two
7270     // GPRs. However, when parsing from asm, the two GRPs cannot be
7271     // automatically
7272     // expressed as a GPRPair, so we have to manually merge them.
7273     // FIXME: We would really like to be able to tablegen'erate this.
7274     if (!isThumb() && Operands.size() > 4 &&
7275         (Mnemonic == "ldrexd" || Mnemonic == "strexd" || Mnemonic == "ldaexd" ||
7276          Mnemonic == "stlexd")) {
7277       bool isLoad = (Mnemonic == "ldrexd" || Mnemonic == "ldaexd");
7278       unsigned Idx = isLoad ? 2 : 3;
7279       ARMOperand &Op1 = static_cast<ARMOperand &>(*Operands[Idx]);
7280       ARMOperand &Op2 = static_cast<ARMOperand &>(*Operands[Idx + 1]);
7281 
7282       const MCRegisterClass &MRC = MRI->getRegClass(ARM::GPRRegClassID);
7283       // Adjust only if Op1 and Op2 are GPRs.
7284       if (Op1.isReg() && Op2.isReg() && MRC.contains(Op1.getReg()) &&
7285           MRC.contains(Op2.getReg())) {
7286         unsigned Reg1 = Op1.getReg();
7287         unsigned Reg2 = Op2.getReg();
7288         unsigned Rt = MRI->getEncodingValue(Reg1);
7289         unsigned Rt2 = MRI->getEncodingValue(Reg2);
7290 
7291         // Rt2 must be Rt + 1 and Rt must be even.
7292         if (Rt + 1 != Rt2 || (Rt & 1)) {
7293           return Error(Op2.getStartLoc(),
7294                        isLoad ? "destination operands must be sequential"
7295                               : "source operands must be sequential");
7296         }
7297         unsigned NewReg = MRI->getMatchingSuperReg(
7298             Reg1, ARM::gsub_0, &(MRI->getRegClass(ARM::GPRPairRegClassID)));
7299         Operands[Idx] =
7300             ARMOperand::CreateReg(NewReg, Op1.getStartLoc(), Op2.getEndLoc());
7301         Operands.erase(Operands.begin() + Idx + 1);
7302       }
7303   }
7304 
7305   // GNU Assembler extension (compatibility).
7306   fixupGNULDRDAlias(Mnemonic, Operands);
7307 
7308   // FIXME: As said above, this is all a pretty gross hack.  This instruction
7309   // does not fit with other "subs" and tblgen.
7310   // Adjust operands of B9.3.19 SUBS PC, LR, #imm (Thumb2) system instruction
7311   // so the Mnemonic is the original name "subs" and delete the predicate
7312   // operand so it will match the table entry.
7313   if (isThumbTwo() && Mnemonic == "sub" && Operands.size() == 6 &&
7314       static_cast<ARMOperand &>(*Operands[3]).isReg() &&
7315       static_cast<ARMOperand &>(*Operands[3]).getReg() == ARM::PC &&
7316       static_cast<ARMOperand &>(*Operands[4]).isReg() &&
7317       static_cast<ARMOperand &>(*Operands[4]).getReg() == ARM::LR &&
7318       static_cast<ARMOperand &>(*Operands[5]).isImm()) {
7319     Operands.front() = ARMOperand::CreateToken(Name, NameLoc);
7320     Operands.erase(Operands.begin() + 1);
7321   }
7322   return false;
7323 }
7324 
7325 // Validate context-sensitive operand constraints.
7326 
7327 // return 'true' if register list contains non-low GPR registers,
7328 // 'false' otherwise. If Reg is in the register list or is HiReg, set
7329 // 'containsReg' to true.
7330 static bool checkLowRegisterList(const MCInst &Inst, unsigned OpNo,
7331                                  unsigned Reg, unsigned HiReg,
7332                                  bool &containsReg) {
7333   containsReg = false;
7334   for (unsigned i = OpNo; i < Inst.getNumOperands(); ++i) {
7335     unsigned OpReg = Inst.getOperand(i).getReg();
7336     if (OpReg == Reg)
7337       containsReg = true;
7338     // Anything other than a low register isn't legal here.
7339     if (!isARMLowRegister(OpReg) && (!HiReg || OpReg != HiReg))
7340       return true;
7341   }
7342   return false;
7343 }
7344 
7345 // Check if the specified regisgter is in the register list of the inst,
7346 // starting at the indicated operand number.
7347 static bool listContainsReg(const MCInst &Inst, unsigned OpNo, unsigned Reg) {
7348   for (unsigned i = OpNo, e = Inst.getNumOperands(); i < e; ++i) {
7349     unsigned OpReg = Inst.getOperand(i).getReg();
7350     if (OpReg == Reg)
7351       return true;
7352   }
7353   return false;
7354 }
7355 
7356 // Return true if instruction has the interesting property of being
7357 // allowed in IT blocks, but not being predicable.
7358 static bool instIsBreakpoint(const MCInst &Inst) {
7359     return Inst.getOpcode() == ARM::tBKPT ||
7360            Inst.getOpcode() == ARM::BKPT ||
7361            Inst.getOpcode() == ARM::tHLT ||
7362            Inst.getOpcode() == ARM::HLT;
7363 }
7364 
7365 bool ARMAsmParser::validatetLDMRegList(const MCInst &Inst,
7366                                        const OperandVector &Operands,
7367                                        unsigned ListNo, bool IsARPop) {
7368   const ARMOperand &Op = static_cast<const ARMOperand &>(*Operands[ListNo]);
7369   bool HasWritebackToken = Op.isToken() && Op.getToken() == "!";
7370 
7371   bool ListContainsSP = listContainsReg(Inst, ListNo, ARM::SP);
7372   bool ListContainsLR = listContainsReg(Inst, ListNo, ARM::LR);
7373   bool ListContainsPC = listContainsReg(Inst, ListNo, ARM::PC);
7374 
7375   if (!IsARPop && ListContainsSP)
7376     return Error(Operands[ListNo + HasWritebackToken]->getStartLoc(),
7377                  "SP may not be in the register list");
7378   else if (ListContainsPC && ListContainsLR)
7379     return Error(Operands[ListNo + HasWritebackToken]->getStartLoc(),
7380                  "PC and LR may not be in the register list simultaneously");
7381   return false;
7382 }
7383 
7384 bool ARMAsmParser::validatetSTMRegList(const MCInst &Inst,
7385                                        const OperandVector &Operands,
7386                                        unsigned ListNo) {
7387   const ARMOperand &Op = static_cast<const ARMOperand &>(*Operands[ListNo]);
7388   bool HasWritebackToken = Op.isToken() && Op.getToken() == "!";
7389 
7390   bool ListContainsSP = listContainsReg(Inst, ListNo, ARM::SP);
7391   bool ListContainsPC = listContainsReg(Inst, ListNo, ARM::PC);
7392 
7393   if (ListContainsSP && ListContainsPC)
7394     return Error(Operands[ListNo + HasWritebackToken]->getStartLoc(),
7395                  "SP and PC may not be in the register list");
7396   else if (ListContainsSP)
7397     return Error(Operands[ListNo + HasWritebackToken]->getStartLoc(),
7398                  "SP may not be in the register list");
7399   else if (ListContainsPC)
7400     return Error(Operands[ListNo + HasWritebackToken]->getStartLoc(),
7401                  "PC may not be in the register list");
7402   return false;
7403 }
7404 
7405 bool ARMAsmParser::validateLDRDSTRD(MCInst &Inst,
7406                                     const OperandVector &Operands,
7407                                     bool Load, bool ARMMode, bool Writeback) {
7408   unsigned RtIndex = Load || !Writeback ? 0 : 1;
7409   unsigned Rt = MRI->getEncodingValue(Inst.getOperand(RtIndex).getReg());
7410   unsigned Rt2 = MRI->getEncodingValue(Inst.getOperand(RtIndex + 1).getReg());
7411 
7412   if (ARMMode) {
7413     // Rt can't be R14.
7414     if (Rt == 14)
7415       return Error(Operands[3]->getStartLoc(),
7416                   "Rt can't be R14");
7417 
7418     // Rt must be even-numbered.
7419     if ((Rt & 1) == 1)
7420       return Error(Operands[3]->getStartLoc(),
7421                    "Rt must be even-numbered");
7422 
7423     // Rt2 must be Rt + 1.
7424     if (Rt2 != Rt + 1) {
7425       if (Load)
7426         return Error(Operands[3]->getStartLoc(),
7427                      "destination operands must be sequential");
7428       else
7429         return Error(Operands[3]->getStartLoc(),
7430                      "source operands must be sequential");
7431     }
7432 
7433     // FIXME: Diagnose m == 15
7434     // FIXME: Diagnose ldrd with m == t || m == t2.
7435   }
7436 
7437   if (!ARMMode && Load) {
7438     if (Rt2 == Rt)
7439       return Error(Operands[3]->getStartLoc(),
7440                    "destination operands can't be identical");
7441   }
7442 
7443   if (Writeback) {
7444     unsigned Rn = MRI->getEncodingValue(Inst.getOperand(3).getReg());
7445 
7446     if (Rn == Rt || Rn == Rt2) {
7447       if (Load)
7448         return Error(Operands[3]->getStartLoc(),
7449                      "base register needs to be different from destination "
7450                      "registers");
7451       else
7452         return Error(Operands[3]->getStartLoc(),
7453                      "source register and base register can't be identical");
7454     }
7455 
7456     // FIXME: Diagnose ldrd/strd with writeback and n == 15.
7457     // (Except the immediate form of ldrd?)
7458   }
7459 
7460   return false;
7461 }
7462 
7463 static int findFirstVectorPredOperandIdx(const MCInstrDesc &MCID) {
7464   for (unsigned i = 0; i < MCID.NumOperands; ++i) {
7465     if (ARM::isVpred(MCID.OpInfo[i].OperandType))
7466       return i;
7467   }
7468   return -1;
7469 }
7470 
7471 static bool isVectorPredicable(const MCInstrDesc &MCID) {
7472   return findFirstVectorPredOperandIdx(MCID) != -1;
7473 }
7474 
7475 // FIXME: We would really like to be able to tablegen'erate this.
7476 bool ARMAsmParser::validateInstruction(MCInst &Inst,
7477                                        const OperandVector &Operands) {
7478   const MCInstrDesc &MCID = MII.get(Inst.getOpcode());
7479   SMLoc Loc = Operands[0]->getStartLoc();
7480 
7481   // Check the IT block state first.
7482   // NOTE: BKPT and HLT instructions have the interesting property of being
7483   // allowed in IT blocks, but not being predicable. They just always execute.
7484   if (inITBlock() && !instIsBreakpoint(Inst)) {
7485     // The instruction must be predicable.
7486     if (!MCID.isPredicable())
7487       return Error(Loc, "instructions in IT block must be predicable");
7488     ARMCC::CondCodes Cond = ARMCC::CondCodes(
7489         Inst.getOperand(MCID.findFirstPredOperandIdx()).getImm());
7490     if (Cond != currentITCond()) {
7491       // Find the condition code Operand to get its SMLoc information.
7492       SMLoc CondLoc;
7493       for (unsigned I = 1; I < Operands.size(); ++I)
7494         if (static_cast<ARMOperand &>(*Operands[I]).isCondCode())
7495           CondLoc = Operands[I]->getStartLoc();
7496       return Error(CondLoc, "incorrect condition in IT block; got '" +
7497                                 StringRef(ARMCondCodeToString(Cond)) +
7498                                 "', but expected '" +
7499                                 ARMCondCodeToString(currentITCond()) + "'");
7500     }
7501   // Check for non-'al' condition codes outside of the IT block.
7502   } else if (isThumbTwo() && MCID.isPredicable() &&
7503              Inst.getOperand(MCID.findFirstPredOperandIdx()).getImm() !=
7504              ARMCC::AL && Inst.getOpcode() != ARM::tBcc &&
7505              Inst.getOpcode() != ARM::t2Bcc &&
7506              Inst.getOpcode() != ARM::t2BFic) {
7507     return Error(Loc, "predicated instructions must be in IT block");
7508   } else if (!isThumb() && !useImplicitITARM() && MCID.isPredicable() &&
7509              Inst.getOperand(MCID.findFirstPredOperandIdx()).getImm() !=
7510                  ARMCC::AL) {
7511     return Warning(Loc, "predicated instructions should be in IT block");
7512   } else if (!MCID.isPredicable()) {
7513     // Check the instruction doesn't have a predicate operand anyway
7514     // that it's not allowed to use. Sometimes this happens in order
7515     // to keep instructions the same shape even though one cannot
7516     // legally be predicated, e.g. vmul.f16 vs vmul.f32.
7517     for (unsigned i = 0, e = MCID.getNumOperands(); i != e; ++i) {
7518       if (MCID.OpInfo[i].isPredicate()) {
7519         if (Inst.getOperand(i).getImm() != ARMCC::AL)
7520           return Error(Loc, "instruction is not predicable");
7521         break;
7522       }
7523     }
7524   }
7525 
7526   // PC-setting instructions in an IT block, but not the last instruction of
7527   // the block, are UNPREDICTABLE.
7528   if (inExplicitITBlock() && !lastInITBlock() && isITBlockTerminator(Inst)) {
7529     return Error(Loc, "instruction must be outside of IT block or the last instruction in an IT block");
7530   }
7531 
7532   if (inVPTBlock() && !instIsBreakpoint(Inst)) {
7533     unsigned Bit = extractITMaskBit(VPTState.Mask, VPTState.CurPosition);
7534     if (!isVectorPredicable(MCID))
7535       return Error(Loc, "instruction in VPT block must be predicable");
7536     unsigned Pred = Inst.getOperand(findFirstVectorPredOperandIdx(MCID)).getImm();
7537     unsigned VPTPred = Bit ? ARMVCC::Else : ARMVCC::Then;
7538     if (Pred != VPTPred) {
7539       SMLoc PredLoc;
7540       for (unsigned I = 1; I < Operands.size(); ++I)
7541         if (static_cast<ARMOperand &>(*Operands[I]).isVPTPred())
7542           PredLoc = Operands[I]->getStartLoc();
7543       return Error(PredLoc, "incorrect predication in VPT block; got '" +
7544                    StringRef(ARMVPTPredToString(ARMVCC::VPTCodes(Pred))) +
7545                    "', but expected '" +
7546                    ARMVPTPredToString(ARMVCC::VPTCodes(VPTPred)) + "'");
7547     }
7548   }
7549   else if (isVectorPredicable(MCID) &&
7550            Inst.getOperand(findFirstVectorPredOperandIdx(MCID)).getImm() !=
7551            ARMVCC::None)
7552     return Error(Loc, "VPT predicated instructions must be in VPT block");
7553 
7554   const unsigned Opcode = Inst.getOpcode();
7555   switch (Opcode) {
7556   case ARM::t2IT: {
7557     // Encoding is unpredictable if it ever results in a notional 'NV'
7558     // predicate. Since we don't parse 'NV' directly this means an 'AL'
7559     // predicate with an "else" mask bit.
7560     unsigned Cond = Inst.getOperand(0).getImm();
7561     unsigned Mask = Inst.getOperand(1).getImm();
7562 
7563     // Conditions only allowing a 't' are those with no set bit except
7564     // the lowest-order one that indicates the end of the sequence. In
7565     // other words, powers of 2.
7566     if (Cond == ARMCC::AL && countPopulation(Mask) != 1)
7567       return Error(Loc, "unpredictable IT predicate sequence");
7568     break;
7569   }
7570   case ARM::LDRD:
7571     if (validateLDRDSTRD(Inst, Operands, /*Load*/true, /*ARMMode*/true,
7572                          /*Writeback*/false))
7573       return true;
7574     break;
7575   case ARM::LDRD_PRE:
7576   case ARM::LDRD_POST:
7577     if (validateLDRDSTRD(Inst, Operands, /*Load*/true, /*ARMMode*/true,
7578                          /*Writeback*/true))
7579       return true;
7580     break;
7581   case ARM::t2LDRDi8:
7582     if (validateLDRDSTRD(Inst, Operands, /*Load*/true, /*ARMMode*/false,
7583                          /*Writeback*/false))
7584       return true;
7585     break;
7586   case ARM::t2LDRD_PRE:
7587   case ARM::t2LDRD_POST:
7588     if (validateLDRDSTRD(Inst, Operands, /*Load*/true, /*ARMMode*/false,
7589                          /*Writeback*/true))
7590       return true;
7591     break;
7592   case ARM::t2BXJ: {
7593     const unsigned RmReg = Inst.getOperand(0).getReg();
7594     // Rm = SP is no longer unpredictable in v8-A
7595     if (RmReg == ARM::SP && !hasV8Ops())
7596       return Error(Operands[2]->getStartLoc(),
7597                    "r13 (SP) is an unpredictable operand to BXJ");
7598     return false;
7599   }
7600   case ARM::STRD:
7601     if (validateLDRDSTRD(Inst, Operands, /*Load*/false, /*ARMMode*/true,
7602                          /*Writeback*/false))
7603       return true;
7604     break;
7605   case ARM::STRD_PRE:
7606   case ARM::STRD_POST:
7607     if (validateLDRDSTRD(Inst, Operands, /*Load*/false, /*ARMMode*/true,
7608                          /*Writeback*/true))
7609       return true;
7610     break;
7611   case ARM::t2STRD_PRE:
7612   case ARM::t2STRD_POST:
7613     if (validateLDRDSTRD(Inst, Operands, /*Load*/false, /*ARMMode*/false,
7614                          /*Writeback*/true))
7615       return true;
7616     break;
7617   case ARM::STR_PRE_IMM:
7618   case ARM::STR_PRE_REG:
7619   case ARM::t2STR_PRE:
7620   case ARM::STR_POST_IMM:
7621   case ARM::STR_POST_REG:
7622   case ARM::t2STR_POST:
7623   case ARM::STRH_PRE:
7624   case ARM::t2STRH_PRE:
7625   case ARM::STRH_POST:
7626   case ARM::t2STRH_POST:
7627   case ARM::STRB_PRE_IMM:
7628   case ARM::STRB_PRE_REG:
7629   case ARM::t2STRB_PRE:
7630   case ARM::STRB_POST_IMM:
7631   case ARM::STRB_POST_REG:
7632   case ARM::t2STRB_POST: {
7633     // Rt must be different from Rn.
7634     const unsigned Rt = MRI->getEncodingValue(Inst.getOperand(1).getReg());
7635     const unsigned Rn = MRI->getEncodingValue(Inst.getOperand(2).getReg());
7636 
7637     if (Rt == Rn)
7638       return Error(Operands[3]->getStartLoc(),
7639                    "source register and base register can't be identical");
7640     return false;
7641   }
7642   case ARM::LDR_PRE_IMM:
7643   case ARM::LDR_PRE_REG:
7644   case ARM::t2LDR_PRE:
7645   case ARM::LDR_POST_IMM:
7646   case ARM::LDR_POST_REG:
7647   case ARM::t2LDR_POST:
7648   case ARM::LDRH_PRE:
7649   case ARM::t2LDRH_PRE:
7650   case ARM::LDRH_POST:
7651   case ARM::t2LDRH_POST:
7652   case ARM::LDRSH_PRE:
7653   case ARM::t2LDRSH_PRE:
7654   case ARM::LDRSH_POST:
7655   case ARM::t2LDRSH_POST:
7656   case ARM::LDRB_PRE_IMM:
7657   case ARM::LDRB_PRE_REG:
7658   case ARM::t2LDRB_PRE:
7659   case ARM::LDRB_POST_IMM:
7660   case ARM::LDRB_POST_REG:
7661   case ARM::t2LDRB_POST:
7662   case ARM::LDRSB_PRE:
7663   case ARM::t2LDRSB_PRE:
7664   case ARM::LDRSB_POST:
7665   case ARM::t2LDRSB_POST: {
7666     // Rt must be different from Rn.
7667     const unsigned Rt = MRI->getEncodingValue(Inst.getOperand(0).getReg());
7668     const unsigned Rn = MRI->getEncodingValue(Inst.getOperand(2).getReg());
7669 
7670     if (Rt == Rn)
7671       return Error(Operands[3]->getStartLoc(),
7672                    "destination register and base register can't be identical");
7673     return false;
7674   }
7675 
7676   case ARM::MVE_VLDRBU8_rq:
7677   case ARM::MVE_VLDRBU16_rq:
7678   case ARM::MVE_VLDRBS16_rq:
7679   case ARM::MVE_VLDRBU32_rq:
7680   case ARM::MVE_VLDRBS32_rq:
7681   case ARM::MVE_VLDRHU16_rq:
7682   case ARM::MVE_VLDRHU16_rq_u:
7683   case ARM::MVE_VLDRHU32_rq:
7684   case ARM::MVE_VLDRHU32_rq_u:
7685   case ARM::MVE_VLDRHS32_rq:
7686   case ARM::MVE_VLDRHS32_rq_u:
7687   case ARM::MVE_VLDRWU32_rq:
7688   case ARM::MVE_VLDRWU32_rq_u:
7689   case ARM::MVE_VLDRDU64_rq:
7690   case ARM::MVE_VLDRDU64_rq_u:
7691   case ARM::MVE_VLDRWU32_qi:
7692   case ARM::MVE_VLDRWU32_qi_pre:
7693   case ARM::MVE_VLDRDU64_qi:
7694   case ARM::MVE_VLDRDU64_qi_pre: {
7695     // Qd must be different from Qm.
7696     unsigned QdIdx = 0, QmIdx = 2;
7697     bool QmIsPointer = false;
7698     switch (Opcode) {
7699     case ARM::MVE_VLDRWU32_qi:
7700     case ARM::MVE_VLDRDU64_qi:
7701       QmIdx = 1;
7702       QmIsPointer = true;
7703       break;
7704     case ARM::MVE_VLDRWU32_qi_pre:
7705     case ARM::MVE_VLDRDU64_qi_pre:
7706       QdIdx = 1;
7707       QmIsPointer = true;
7708       break;
7709     }
7710 
7711     const unsigned Qd = MRI->getEncodingValue(Inst.getOperand(QdIdx).getReg());
7712     const unsigned Qm = MRI->getEncodingValue(Inst.getOperand(QmIdx).getReg());
7713 
7714     if (Qd == Qm) {
7715       return Error(Operands[3]->getStartLoc(),
7716                    Twine("destination vector register and vector ") +
7717                    (QmIsPointer ? "pointer" : "offset") +
7718                    " register can't be identical");
7719     }
7720     return false;
7721   }
7722 
7723   case ARM::SBFX:
7724   case ARM::t2SBFX:
7725   case ARM::UBFX:
7726   case ARM::t2UBFX: {
7727     // Width must be in range [1, 32-lsb].
7728     unsigned LSB = Inst.getOperand(2).getImm();
7729     unsigned Widthm1 = Inst.getOperand(3).getImm();
7730     if (Widthm1 >= 32 - LSB)
7731       return Error(Operands[5]->getStartLoc(),
7732                    "bitfield width must be in range [1,32-lsb]");
7733     return false;
7734   }
7735   // Notionally handles ARM::tLDMIA_UPD too.
7736   case ARM::tLDMIA: {
7737     // If we're parsing Thumb2, the .w variant is available and handles
7738     // most cases that are normally illegal for a Thumb1 LDM instruction.
7739     // We'll make the transformation in processInstruction() if necessary.
7740     //
7741     // Thumb LDM instructions are writeback iff the base register is not
7742     // in the register list.
7743     unsigned Rn = Inst.getOperand(0).getReg();
7744     bool HasWritebackToken =
7745         (static_cast<ARMOperand &>(*Operands[3]).isToken() &&
7746          static_cast<ARMOperand &>(*Operands[3]).getToken() == "!");
7747     bool ListContainsBase;
7748     if (checkLowRegisterList(Inst, 3, Rn, 0, ListContainsBase) && !isThumbTwo())
7749       return Error(Operands[3 + HasWritebackToken]->getStartLoc(),
7750                    "registers must be in range r0-r7");
7751     // If we should have writeback, then there should be a '!' token.
7752     if (!ListContainsBase && !HasWritebackToken && !isThumbTwo())
7753       return Error(Operands[2]->getStartLoc(),
7754                    "writeback operator '!' expected");
7755     // If we should not have writeback, there must not be a '!'. This is
7756     // true even for the 32-bit wide encodings.
7757     if (ListContainsBase && HasWritebackToken)
7758       return Error(Operands[3]->getStartLoc(),
7759                    "writeback operator '!' not allowed when base register "
7760                    "in register list");
7761 
7762     if (validatetLDMRegList(Inst, Operands, 3))
7763       return true;
7764     break;
7765   }
7766   case ARM::LDMIA_UPD:
7767   case ARM::LDMDB_UPD:
7768   case ARM::LDMIB_UPD:
7769   case ARM::LDMDA_UPD:
7770     // ARM variants loading and updating the same register are only officially
7771     // UNPREDICTABLE on v7 upwards. Goodness knows what they did before.
7772     if (!hasV7Ops())
7773       break;
7774     if (listContainsReg(Inst, 3, Inst.getOperand(0).getReg()))
7775       return Error(Operands.back()->getStartLoc(),
7776                    "writeback register not allowed in register list");
7777     break;
7778   case ARM::t2LDMIA:
7779   case ARM::t2LDMDB:
7780     if (validatetLDMRegList(Inst, Operands, 3))
7781       return true;
7782     break;
7783   case ARM::t2STMIA:
7784   case ARM::t2STMDB:
7785     if (validatetSTMRegList(Inst, Operands, 3))
7786       return true;
7787     break;
7788   case ARM::t2LDMIA_UPD:
7789   case ARM::t2LDMDB_UPD:
7790   case ARM::t2STMIA_UPD:
7791   case ARM::t2STMDB_UPD:
7792     if (listContainsReg(Inst, 3, Inst.getOperand(0).getReg()))
7793       return Error(Operands.back()->getStartLoc(),
7794                    "writeback register not allowed in register list");
7795 
7796     if (Opcode == ARM::t2LDMIA_UPD || Opcode == ARM::t2LDMDB_UPD) {
7797       if (validatetLDMRegList(Inst, Operands, 3))
7798         return true;
7799     } else {
7800       if (validatetSTMRegList(Inst, Operands, 3))
7801         return true;
7802     }
7803     break;
7804 
7805   case ARM::sysLDMIA_UPD:
7806   case ARM::sysLDMDA_UPD:
7807   case ARM::sysLDMDB_UPD:
7808   case ARM::sysLDMIB_UPD:
7809     if (!listContainsReg(Inst, 3, ARM::PC))
7810       return Error(Operands[4]->getStartLoc(),
7811                    "writeback register only allowed on system LDM "
7812                    "if PC in register-list");
7813     break;
7814   case ARM::sysSTMIA_UPD:
7815   case ARM::sysSTMDA_UPD:
7816   case ARM::sysSTMDB_UPD:
7817   case ARM::sysSTMIB_UPD:
7818     return Error(Operands[2]->getStartLoc(),
7819                  "system STM cannot have writeback register");
7820   case ARM::tMUL:
7821     // The second source operand must be the same register as the destination
7822     // operand.
7823     //
7824     // In this case, we must directly check the parsed operands because the
7825     // cvtThumbMultiply() function is written in such a way that it guarantees
7826     // this first statement is always true for the new Inst.  Essentially, the
7827     // destination is unconditionally copied into the second source operand
7828     // without checking to see if it matches what we actually parsed.
7829     if (Operands.size() == 6 && (((ARMOperand &)*Operands[3]).getReg() !=
7830                                  ((ARMOperand &)*Operands[5]).getReg()) &&
7831         (((ARMOperand &)*Operands[3]).getReg() !=
7832          ((ARMOperand &)*Operands[4]).getReg())) {
7833       return Error(Operands[3]->getStartLoc(),
7834                    "destination register must match source register");
7835     }
7836     break;
7837 
7838   // Like for ldm/stm, push and pop have hi-reg handling version in Thumb2,
7839   // so only issue a diagnostic for thumb1. The instructions will be
7840   // switched to the t2 encodings in processInstruction() if necessary.
7841   case ARM::tPOP: {
7842     bool ListContainsBase;
7843     if (checkLowRegisterList(Inst, 2, 0, ARM::PC, ListContainsBase) &&
7844         !isThumbTwo())
7845       return Error(Operands[2]->getStartLoc(),
7846                    "registers must be in range r0-r7 or pc");
7847     if (validatetLDMRegList(Inst, Operands, 2, !isMClass()))
7848       return true;
7849     break;
7850   }
7851   case ARM::tPUSH: {
7852     bool ListContainsBase;
7853     if (checkLowRegisterList(Inst, 2, 0, ARM::LR, ListContainsBase) &&
7854         !isThumbTwo())
7855       return Error(Operands[2]->getStartLoc(),
7856                    "registers must be in range r0-r7 or lr");
7857     if (validatetSTMRegList(Inst, Operands, 2))
7858       return true;
7859     break;
7860   }
7861   case ARM::tSTMIA_UPD: {
7862     bool ListContainsBase, InvalidLowList;
7863     InvalidLowList = checkLowRegisterList(Inst, 4, Inst.getOperand(0).getReg(),
7864                                           0, ListContainsBase);
7865     if (InvalidLowList && !isThumbTwo())
7866       return Error(Operands[4]->getStartLoc(),
7867                    "registers must be in range r0-r7");
7868 
7869     // This would be converted to a 32-bit stm, but that's not valid if the
7870     // writeback register is in the list.
7871     if (InvalidLowList && ListContainsBase)
7872       return Error(Operands[4]->getStartLoc(),
7873                    "writeback operator '!' not allowed when base register "
7874                    "in register list");
7875 
7876     if (validatetSTMRegList(Inst, Operands, 4))
7877       return true;
7878     break;
7879   }
7880   case ARM::tADDrSP:
7881     // If the non-SP source operand and the destination operand are not the
7882     // same, we need thumb2 (for the wide encoding), or we have an error.
7883     if (!isThumbTwo() &&
7884         Inst.getOperand(0).getReg() != Inst.getOperand(2).getReg()) {
7885       return Error(Operands[4]->getStartLoc(),
7886                    "source register must be the same as destination");
7887     }
7888     break;
7889 
7890   case ARM::t2ADDrr:
7891   case ARM::t2ADDrs:
7892   case ARM::t2SUBrr:
7893   case ARM::t2SUBrs:
7894     if (Inst.getOperand(0).getReg() == ARM::SP &&
7895         Inst.getOperand(1).getReg() != ARM::SP)
7896       return Error(Operands[4]->getStartLoc(),
7897                    "source register must be sp if destination is sp");
7898     break;
7899 
7900   // Final range checking for Thumb unconditional branch instructions.
7901   case ARM::tB:
7902     if (!(static_cast<ARMOperand &>(*Operands[2])).isSignedOffset<11, 1>())
7903       return Error(Operands[2]->getStartLoc(), "branch target out of range");
7904     break;
7905   case ARM::t2B: {
7906     int op = (Operands[2]->isImm()) ? 2 : 3;
7907     if (!static_cast<ARMOperand &>(*Operands[op]).isSignedOffset<24, 1>())
7908       return Error(Operands[op]->getStartLoc(), "branch target out of range");
7909     break;
7910   }
7911   // Final range checking for Thumb conditional branch instructions.
7912   case ARM::tBcc:
7913     if (!static_cast<ARMOperand &>(*Operands[2]).isSignedOffset<8, 1>())
7914       return Error(Operands[2]->getStartLoc(), "branch target out of range");
7915     break;
7916   case ARM::t2Bcc: {
7917     int Op = (Operands[2]->isImm()) ? 2 : 3;
7918     if (!static_cast<ARMOperand &>(*Operands[Op]).isSignedOffset<20, 1>())
7919       return Error(Operands[Op]->getStartLoc(), "branch target out of range");
7920     break;
7921   }
7922   case ARM::tCBZ:
7923   case ARM::tCBNZ: {
7924     if (!static_cast<ARMOperand &>(*Operands[2]).isUnsignedOffset<6, 1>())
7925       return Error(Operands[2]->getStartLoc(), "branch target out of range");
7926     break;
7927   }
7928   case ARM::MOVi16:
7929   case ARM::MOVTi16:
7930   case ARM::t2MOVi16:
7931   case ARM::t2MOVTi16:
7932     {
7933     // We want to avoid misleadingly allowing something like "mov r0, <symbol>"
7934     // especially when we turn it into a movw and the expression <symbol> does
7935     // not have a :lower16: or :upper16 as part of the expression.  We don't
7936     // want the behavior of silently truncating, which can be unexpected and
7937     // lead to bugs that are difficult to find since this is an easy mistake
7938     // to make.
7939     int i = (Operands[3]->isImm()) ? 3 : 4;
7940     ARMOperand &Op = static_cast<ARMOperand &>(*Operands[i]);
7941     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Op.getImm());
7942     if (CE) break;
7943     const MCExpr *E = dyn_cast<MCExpr>(Op.getImm());
7944     if (!E) break;
7945     const ARMMCExpr *ARM16Expr = dyn_cast<ARMMCExpr>(E);
7946     if (!ARM16Expr || (ARM16Expr->getKind() != ARMMCExpr::VK_ARM_HI16 &&
7947                        ARM16Expr->getKind() != ARMMCExpr::VK_ARM_LO16))
7948       return Error(
7949           Op.getStartLoc(),
7950           "immediate expression for mov requires :lower16: or :upper16");
7951     break;
7952   }
7953   case ARM::HINT:
7954   case ARM::t2HINT: {
7955     unsigned Imm8 = Inst.getOperand(0).getImm();
7956     unsigned Pred = Inst.getOperand(1).getImm();
7957     // ESB is not predicable (pred must be AL). Without the RAS extension, this
7958     // behaves as any other unallocated hint.
7959     if (Imm8 == 0x10 && Pred != ARMCC::AL && hasRAS())
7960       return Error(Operands[1]->getStartLoc(), "instruction 'esb' is not "
7961                                                "predicable, but condition "
7962                                                "code specified");
7963     if (Imm8 == 0x14 && Pred != ARMCC::AL)
7964       return Error(Operands[1]->getStartLoc(), "instruction 'csdb' is not "
7965                                                "predicable, but condition "
7966                                                "code specified");
7967     break;
7968   }
7969   case ARM::t2BFi:
7970   case ARM::t2BFr:
7971   case ARM::t2BFLi:
7972   case ARM::t2BFLr: {
7973     if (!static_cast<ARMOperand &>(*Operands[2]).isUnsignedOffset<4, 1>() ||
7974         (Inst.getOperand(0).isImm() && Inst.getOperand(0).getImm() == 0))
7975       return Error(Operands[2]->getStartLoc(),
7976                    "branch location out of range or not a multiple of 2");
7977 
7978     if (Opcode == ARM::t2BFi) {
7979       if (!static_cast<ARMOperand &>(*Operands[3]).isSignedOffset<16, 1>())
7980         return Error(Operands[3]->getStartLoc(),
7981                      "branch target out of range or not a multiple of 2");
7982     } else if (Opcode == ARM::t2BFLi) {
7983       if (!static_cast<ARMOperand &>(*Operands[3]).isSignedOffset<18, 1>())
7984         return Error(Operands[3]->getStartLoc(),
7985                      "branch target out of range or not a multiple of 2");
7986     }
7987     break;
7988   }
7989   case ARM::t2BFic: {
7990     if (!static_cast<ARMOperand &>(*Operands[1]).isUnsignedOffset<4, 1>() ||
7991         (Inst.getOperand(0).isImm() && Inst.getOperand(0).getImm() == 0))
7992       return Error(Operands[1]->getStartLoc(),
7993                    "branch location out of range or not a multiple of 2");
7994 
7995     if (!static_cast<ARMOperand &>(*Operands[2]).isSignedOffset<16, 1>())
7996       return Error(Operands[2]->getStartLoc(),
7997                    "branch target out of range or not a multiple of 2");
7998 
7999     assert(Inst.getOperand(0).isImm() == Inst.getOperand(2).isImm() &&
8000            "branch location and else branch target should either both be "
8001            "immediates or both labels");
8002 
8003     if (Inst.getOperand(0).isImm() && Inst.getOperand(2).isImm()) {
8004       int Diff = Inst.getOperand(2).getImm() - Inst.getOperand(0).getImm();
8005       if (Diff != 4 && Diff != 2)
8006         return Error(
8007             Operands[3]->getStartLoc(),
8008             "else branch target must be 2 or 4 greater than the branch location");
8009     }
8010     break;
8011   }
8012   case ARM::t2CLRM: {
8013     for (unsigned i = 2; i < Inst.getNumOperands(); i++) {
8014       if (Inst.getOperand(i).isReg() &&
8015           !ARMMCRegisterClasses[ARM::GPRwithAPSRnospRegClassID].contains(
8016               Inst.getOperand(i).getReg())) {
8017         return Error(Operands[2]->getStartLoc(),
8018                      "invalid register in register list. Valid registers are "
8019                      "r0-r12, lr/r14 and APSR.");
8020       }
8021     }
8022     break;
8023   }
8024   case ARM::DSB:
8025   case ARM::t2DSB: {
8026 
8027     if (Inst.getNumOperands() < 2)
8028       break;
8029 
8030     unsigned Option = Inst.getOperand(0).getImm();
8031     unsigned Pred = Inst.getOperand(1).getImm();
8032 
8033     // SSBB and PSSBB (DSB #0|#4) are not predicable (pred must be AL).
8034     if (Option == 0 && Pred != ARMCC::AL)
8035       return Error(Operands[1]->getStartLoc(),
8036                    "instruction 'ssbb' is not predicable, but condition code "
8037                    "specified");
8038     if (Option == 4 && Pred != ARMCC::AL)
8039       return Error(Operands[1]->getStartLoc(),
8040                    "instruction 'pssbb' is not predicable, but condition code "
8041                    "specified");
8042     break;
8043   }
8044   case ARM::VMOVRRS: {
8045     // Source registers must be sequential.
8046     const unsigned Sm = MRI->getEncodingValue(Inst.getOperand(2).getReg());
8047     const unsigned Sm1 = MRI->getEncodingValue(Inst.getOperand(3).getReg());
8048     if (Sm1 != Sm + 1)
8049       return Error(Operands[5]->getStartLoc(),
8050                    "source operands must be sequential");
8051     break;
8052   }
8053   case ARM::VMOVSRR: {
8054     // Destination registers must be sequential.
8055     const unsigned Sm = MRI->getEncodingValue(Inst.getOperand(0).getReg());
8056     const unsigned Sm1 = MRI->getEncodingValue(Inst.getOperand(1).getReg());
8057     if (Sm1 != Sm + 1)
8058       return Error(Operands[3]->getStartLoc(),
8059                    "destination operands must be sequential");
8060     break;
8061   }
8062   case ARM::VLDMDIA:
8063   case ARM::VSTMDIA: {
8064     ARMOperand &Op = static_cast<ARMOperand&>(*Operands[3]);
8065     auto &RegList = Op.getRegList();
8066     if (RegList.size() < 1 || RegList.size() > 16)
8067       return Error(Operands[3]->getStartLoc(),
8068                    "list of registers must be at least 1 and at most 16");
8069     break;
8070   }
8071   case ARM::MVE_VQDMULLs32bh:
8072   case ARM::MVE_VQDMULLs32th:
8073   case ARM::MVE_VCMULf32:
8074   case ARM::MVE_VMULLBs32:
8075   case ARM::MVE_VMULLTs32:
8076   case ARM::MVE_VMULLBu32:
8077   case ARM::MVE_VMULLTu32: {
8078     if (Operands[3]->getReg() == Operands[4]->getReg()) {
8079       return Error (Operands[3]->getStartLoc(),
8080                     "Qd register and Qn register can't be identical");
8081     }
8082     if (Operands[3]->getReg() == Operands[5]->getReg()) {
8083       return Error (Operands[3]->getStartLoc(),
8084                     "Qd register and Qm register can't be identical");
8085     }
8086     break;
8087   }
8088   case ARM::MVE_VMOV_rr_q: {
8089     if (Operands[4]->getReg() != Operands[6]->getReg())
8090       return Error (Operands[4]->getStartLoc(), "Q-registers must be the same");
8091     if (static_cast<ARMOperand &>(*Operands[5]).getVectorIndex() !=
8092         static_cast<ARMOperand &>(*Operands[7]).getVectorIndex() + 2)
8093       return Error (Operands[5]->getStartLoc(), "Q-register indexes must be 2 and 0 or 3 and 1");
8094     break;
8095   }
8096   case ARM::MVE_VMOV_q_rr: {
8097     if (Operands[2]->getReg() != Operands[4]->getReg())
8098       return Error (Operands[2]->getStartLoc(), "Q-registers must be the same");
8099     if (static_cast<ARMOperand &>(*Operands[3]).getVectorIndex() !=
8100         static_cast<ARMOperand &>(*Operands[5]).getVectorIndex() + 2)
8101       return Error (Operands[3]->getStartLoc(), "Q-register indexes must be 2 and 0 or 3 and 1");
8102     break;
8103   }
8104   case ARM::UMAAL:
8105   case ARM::UMLAL:
8106   case ARM::UMULL:
8107   case ARM::t2UMAAL:
8108   case ARM::t2UMLAL:
8109   case ARM::t2UMULL:
8110   case ARM::SMLAL:
8111   case ARM::SMLALBB:
8112   case ARM::SMLALBT:
8113   case ARM::SMLALD:
8114   case ARM::SMLALDX:
8115   case ARM::SMLALTB:
8116   case ARM::SMLALTT:
8117   case ARM::SMLSLD:
8118   case ARM::SMLSLDX:
8119   case ARM::SMULL:
8120   case ARM::t2SMLAL:
8121   case ARM::t2SMLALBB:
8122   case ARM::t2SMLALBT:
8123   case ARM::t2SMLALD:
8124   case ARM::t2SMLALDX:
8125   case ARM::t2SMLALTB:
8126   case ARM::t2SMLALTT:
8127   case ARM::t2SMLSLD:
8128   case ARM::t2SMLSLDX:
8129   case ARM::t2SMULL: {
8130     unsigned RdHi = Inst.getOperand(0).getReg();
8131     unsigned RdLo = Inst.getOperand(1).getReg();
8132     if(RdHi == RdLo) {
8133       return Error(Loc,
8134                    "unpredictable instruction, RdHi and RdLo must be different");
8135     }
8136     break;
8137   }
8138 
8139   case ARM::CDE_CX1: case ARM::CDE_CX1A: case ARM::CDE_CX1D: case ARM::CDE_CX1DA:
8140   case ARM::CDE_CX2: case ARM::CDE_CX2A: case ARM::CDE_CX2D: case ARM::CDE_CX2DA:
8141   case ARM::CDE_CX3: case ARM::CDE_CX3A: case ARM::CDE_CX3D: case ARM::CDE_CX3DA:
8142   case ARM::CDE_VCX1_vec:  case ARM::CDE_VCX1_fpsp:  case ARM::CDE_VCX1_fpdp:
8143   case ARM::CDE_VCX1A_vec: case ARM::CDE_VCX1A_fpsp: case ARM::CDE_VCX1A_fpdp:
8144   case ARM::CDE_VCX2_vec:  case ARM::CDE_VCX2_fpsp:  case ARM::CDE_VCX2_fpdp:
8145   case ARM::CDE_VCX2A_vec: case ARM::CDE_VCX2A_fpsp: case ARM::CDE_VCX2A_fpdp:
8146   case ARM::CDE_VCX3_vec:  case ARM::CDE_VCX3_fpsp:  case ARM::CDE_VCX3_fpdp:
8147   case ARM::CDE_VCX3A_vec: case ARM::CDE_VCX3A_fpsp: case ARM::CDE_VCX3A_fpdp: {
8148     assert(Inst.getOperand(1).isImm() &&
8149            "CDE operand 1 must be a coprocessor ID");
8150     int64_t Coproc = Inst.getOperand(1).getImm();
8151     if (Coproc < 8 && !ARM::isCDECoproc(Coproc, *STI))
8152       return Error(Operands[1]->getStartLoc(),
8153                    "coprocessor must be configured as CDE");
8154     else if (Coproc >= 8)
8155       return Error(Operands[1]->getStartLoc(),
8156                    "coprocessor must be in the range [p0, p7]");
8157     break;
8158   }
8159 
8160   case ARM::t2CDP: case ARM::t2CDP2:
8161   case ARM::t2LDC2L_OFFSET: case ARM::t2LDC2L_OPTION: case ARM::t2LDC2L_POST: case ARM::t2LDC2L_PRE:
8162   case ARM::t2LDC2_OFFSET: case ARM::t2LDC2_OPTION: case ARM::t2LDC2_POST: case ARM::t2LDC2_PRE:
8163   case ARM::t2LDCL_OFFSET: case ARM::t2LDCL_OPTION: case ARM::t2LDCL_POST: case ARM::t2LDCL_PRE:
8164   case ARM::t2LDC_OFFSET: case ARM::t2LDC_OPTION: case ARM::t2LDC_POST: case ARM::t2LDC_PRE:
8165   case ARM::t2MCR: case ARM::t2MCR2: case ARM::t2MCRR: case ARM::t2MCRR2:
8166   case ARM::t2MRC: case ARM::t2MRC2: case ARM::t2MRRC: case ARM::t2MRRC2:
8167   case ARM::t2STC2L_OFFSET: case ARM::t2STC2L_OPTION: case ARM::t2STC2L_POST: case ARM::t2STC2L_PRE:
8168   case ARM::t2STC2_OFFSET: case ARM::t2STC2_OPTION: case ARM::t2STC2_POST: case ARM::t2STC2_PRE:
8169   case ARM::t2STCL_OFFSET: case ARM::t2STCL_OPTION: case ARM::t2STCL_POST: case ARM::t2STCL_PRE:
8170   case ARM::t2STC_OFFSET: case ARM::t2STC_OPTION: case ARM::t2STC_POST: case ARM::t2STC_PRE: {
8171     unsigned Opcode = Inst.getOpcode();
8172     // Inst.getOperand indexes operands in the (oops ...) and (iops ...) dags,
8173     // CopInd is the index of the coprocessor operand.
8174     size_t CopInd = 0;
8175     if (Opcode == ARM::t2MRRC || Opcode == ARM::t2MRRC2)
8176       CopInd = 2;
8177     else if (Opcode == ARM::t2MRC || Opcode == ARM::t2MRC2)
8178       CopInd = 1;
8179     assert(Inst.getOperand(CopInd).isImm() && "Operand must be a coprocessor ID");
8180     int64_t Coproc = Inst.getOperand(CopInd).getImm();
8181     // Operands[2] is the coprocessor operand at syntactic level
8182     if (ARM::isCDECoproc(Coproc, *STI))
8183       return Error(Operands[2]->getStartLoc(), "coprocessor must be configured as GCP");
8184     break;
8185   }
8186   }
8187 
8188   return false;
8189 }
8190 
8191 static unsigned getRealVSTOpcode(unsigned Opc, unsigned &Spacing) {
8192   switch(Opc) {
8193   default: llvm_unreachable("unexpected opcode!");
8194   // VST1LN
8195   case ARM::VST1LNdWB_fixed_Asm_8:  Spacing = 1; return ARM::VST1LNd8_UPD;
8196   case ARM::VST1LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VST1LNd16_UPD;
8197   case ARM::VST1LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VST1LNd32_UPD;
8198   case ARM::VST1LNdWB_register_Asm_8:  Spacing = 1; return ARM::VST1LNd8_UPD;
8199   case ARM::VST1LNdWB_register_Asm_16: Spacing = 1; return ARM::VST1LNd16_UPD;
8200   case ARM::VST1LNdWB_register_Asm_32: Spacing = 1; return ARM::VST1LNd32_UPD;
8201   case ARM::VST1LNdAsm_8:  Spacing = 1; return ARM::VST1LNd8;
8202   case ARM::VST1LNdAsm_16: Spacing = 1; return ARM::VST1LNd16;
8203   case ARM::VST1LNdAsm_32: Spacing = 1; return ARM::VST1LNd32;
8204 
8205   // VST2LN
8206   case ARM::VST2LNdWB_fixed_Asm_8:  Spacing = 1; return ARM::VST2LNd8_UPD;
8207   case ARM::VST2LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VST2LNd16_UPD;
8208   case ARM::VST2LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VST2LNd32_UPD;
8209   case ARM::VST2LNqWB_fixed_Asm_16: Spacing = 2; return ARM::VST2LNq16_UPD;
8210   case ARM::VST2LNqWB_fixed_Asm_32: Spacing = 2; return ARM::VST2LNq32_UPD;
8211 
8212   case ARM::VST2LNdWB_register_Asm_8:  Spacing = 1; return ARM::VST2LNd8_UPD;
8213   case ARM::VST2LNdWB_register_Asm_16: Spacing = 1; return ARM::VST2LNd16_UPD;
8214   case ARM::VST2LNdWB_register_Asm_32: Spacing = 1; return ARM::VST2LNd32_UPD;
8215   case ARM::VST2LNqWB_register_Asm_16: Spacing = 2; return ARM::VST2LNq16_UPD;
8216   case ARM::VST2LNqWB_register_Asm_32: Spacing = 2; return ARM::VST2LNq32_UPD;
8217 
8218   case ARM::VST2LNdAsm_8:  Spacing = 1; return ARM::VST2LNd8;
8219   case ARM::VST2LNdAsm_16: Spacing = 1; return ARM::VST2LNd16;
8220   case ARM::VST2LNdAsm_32: Spacing = 1; return ARM::VST2LNd32;
8221   case ARM::VST2LNqAsm_16: Spacing = 2; return ARM::VST2LNq16;
8222   case ARM::VST2LNqAsm_32: Spacing = 2; return ARM::VST2LNq32;
8223 
8224   // VST3LN
8225   case ARM::VST3LNdWB_fixed_Asm_8:  Spacing = 1; return ARM::VST3LNd8_UPD;
8226   case ARM::VST3LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VST3LNd16_UPD;
8227   case ARM::VST3LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VST3LNd32_UPD;
8228   case ARM::VST3LNqWB_fixed_Asm_16: Spacing = 1; return ARM::VST3LNq16_UPD;
8229   case ARM::VST3LNqWB_fixed_Asm_32: Spacing = 2; return ARM::VST3LNq32_UPD;
8230   case ARM::VST3LNdWB_register_Asm_8:  Spacing = 1; return ARM::VST3LNd8_UPD;
8231   case ARM::VST3LNdWB_register_Asm_16: Spacing = 1; return ARM::VST3LNd16_UPD;
8232   case ARM::VST3LNdWB_register_Asm_32: Spacing = 1; return ARM::VST3LNd32_UPD;
8233   case ARM::VST3LNqWB_register_Asm_16: Spacing = 2; return ARM::VST3LNq16_UPD;
8234   case ARM::VST3LNqWB_register_Asm_32: Spacing = 2; return ARM::VST3LNq32_UPD;
8235   case ARM::VST3LNdAsm_8:  Spacing = 1; return ARM::VST3LNd8;
8236   case ARM::VST3LNdAsm_16: Spacing = 1; return ARM::VST3LNd16;
8237   case ARM::VST3LNdAsm_32: Spacing = 1; return ARM::VST3LNd32;
8238   case ARM::VST3LNqAsm_16: Spacing = 2; return ARM::VST3LNq16;
8239   case ARM::VST3LNqAsm_32: Spacing = 2; return ARM::VST3LNq32;
8240 
8241   // VST3
8242   case ARM::VST3dWB_fixed_Asm_8:  Spacing = 1; return ARM::VST3d8_UPD;
8243   case ARM::VST3dWB_fixed_Asm_16: Spacing = 1; return ARM::VST3d16_UPD;
8244   case ARM::VST3dWB_fixed_Asm_32: Spacing = 1; return ARM::VST3d32_UPD;
8245   case ARM::VST3qWB_fixed_Asm_8:  Spacing = 2; return ARM::VST3q8_UPD;
8246   case ARM::VST3qWB_fixed_Asm_16: Spacing = 2; return ARM::VST3q16_UPD;
8247   case ARM::VST3qWB_fixed_Asm_32: Spacing = 2; return ARM::VST3q32_UPD;
8248   case ARM::VST3dWB_register_Asm_8:  Spacing = 1; return ARM::VST3d8_UPD;
8249   case ARM::VST3dWB_register_Asm_16: Spacing = 1; return ARM::VST3d16_UPD;
8250   case ARM::VST3dWB_register_Asm_32: Spacing = 1; return ARM::VST3d32_UPD;
8251   case ARM::VST3qWB_register_Asm_8:  Spacing = 2; return ARM::VST3q8_UPD;
8252   case ARM::VST3qWB_register_Asm_16: Spacing = 2; return ARM::VST3q16_UPD;
8253   case ARM::VST3qWB_register_Asm_32: Spacing = 2; return ARM::VST3q32_UPD;
8254   case ARM::VST3dAsm_8:  Spacing = 1; return ARM::VST3d8;
8255   case ARM::VST3dAsm_16: Spacing = 1; return ARM::VST3d16;
8256   case ARM::VST3dAsm_32: Spacing = 1; return ARM::VST3d32;
8257   case ARM::VST3qAsm_8:  Spacing = 2; return ARM::VST3q8;
8258   case ARM::VST3qAsm_16: Spacing = 2; return ARM::VST3q16;
8259   case ARM::VST3qAsm_32: Spacing = 2; return ARM::VST3q32;
8260 
8261   // VST4LN
8262   case ARM::VST4LNdWB_fixed_Asm_8:  Spacing = 1; return ARM::VST4LNd8_UPD;
8263   case ARM::VST4LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VST4LNd16_UPD;
8264   case ARM::VST4LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VST4LNd32_UPD;
8265   case ARM::VST4LNqWB_fixed_Asm_16: Spacing = 1; return ARM::VST4LNq16_UPD;
8266   case ARM::VST4LNqWB_fixed_Asm_32: Spacing = 2; return ARM::VST4LNq32_UPD;
8267   case ARM::VST4LNdWB_register_Asm_8:  Spacing = 1; return ARM::VST4LNd8_UPD;
8268   case ARM::VST4LNdWB_register_Asm_16: Spacing = 1; return ARM::VST4LNd16_UPD;
8269   case ARM::VST4LNdWB_register_Asm_32: Spacing = 1; return ARM::VST4LNd32_UPD;
8270   case ARM::VST4LNqWB_register_Asm_16: Spacing = 2; return ARM::VST4LNq16_UPD;
8271   case ARM::VST4LNqWB_register_Asm_32: Spacing = 2; return ARM::VST4LNq32_UPD;
8272   case ARM::VST4LNdAsm_8:  Spacing = 1; return ARM::VST4LNd8;
8273   case ARM::VST4LNdAsm_16: Spacing = 1; return ARM::VST4LNd16;
8274   case ARM::VST4LNdAsm_32: Spacing = 1; return ARM::VST4LNd32;
8275   case ARM::VST4LNqAsm_16: Spacing = 2; return ARM::VST4LNq16;
8276   case ARM::VST4LNqAsm_32: Spacing = 2; return ARM::VST4LNq32;
8277 
8278   // VST4
8279   case ARM::VST4dWB_fixed_Asm_8:  Spacing = 1; return ARM::VST4d8_UPD;
8280   case ARM::VST4dWB_fixed_Asm_16: Spacing = 1; return ARM::VST4d16_UPD;
8281   case ARM::VST4dWB_fixed_Asm_32: Spacing = 1; return ARM::VST4d32_UPD;
8282   case ARM::VST4qWB_fixed_Asm_8:  Spacing = 2; return ARM::VST4q8_UPD;
8283   case ARM::VST4qWB_fixed_Asm_16: Spacing = 2; return ARM::VST4q16_UPD;
8284   case ARM::VST4qWB_fixed_Asm_32: Spacing = 2; return ARM::VST4q32_UPD;
8285   case ARM::VST4dWB_register_Asm_8:  Spacing = 1; return ARM::VST4d8_UPD;
8286   case ARM::VST4dWB_register_Asm_16: Spacing = 1; return ARM::VST4d16_UPD;
8287   case ARM::VST4dWB_register_Asm_32: Spacing = 1; return ARM::VST4d32_UPD;
8288   case ARM::VST4qWB_register_Asm_8:  Spacing = 2; return ARM::VST4q8_UPD;
8289   case ARM::VST4qWB_register_Asm_16: Spacing = 2; return ARM::VST4q16_UPD;
8290   case ARM::VST4qWB_register_Asm_32: Spacing = 2; return ARM::VST4q32_UPD;
8291   case ARM::VST4dAsm_8:  Spacing = 1; return ARM::VST4d8;
8292   case ARM::VST4dAsm_16: Spacing = 1; return ARM::VST4d16;
8293   case ARM::VST4dAsm_32: Spacing = 1; return ARM::VST4d32;
8294   case ARM::VST4qAsm_8:  Spacing = 2; return ARM::VST4q8;
8295   case ARM::VST4qAsm_16: Spacing = 2; return ARM::VST4q16;
8296   case ARM::VST4qAsm_32: Spacing = 2; return ARM::VST4q32;
8297   }
8298 }
8299 
8300 static unsigned getRealVLDOpcode(unsigned Opc, unsigned &Spacing) {
8301   switch(Opc) {
8302   default: llvm_unreachable("unexpected opcode!");
8303   // VLD1LN
8304   case ARM::VLD1LNdWB_fixed_Asm_8:  Spacing = 1; return ARM::VLD1LNd8_UPD;
8305   case ARM::VLD1LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VLD1LNd16_UPD;
8306   case ARM::VLD1LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VLD1LNd32_UPD;
8307   case ARM::VLD1LNdWB_register_Asm_8:  Spacing = 1; return ARM::VLD1LNd8_UPD;
8308   case ARM::VLD1LNdWB_register_Asm_16: Spacing = 1; return ARM::VLD1LNd16_UPD;
8309   case ARM::VLD1LNdWB_register_Asm_32: Spacing = 1; return ARM::VLD1LNd32_UPD;
8310   case ARM::VLD1LNdAsm_8:  Spacing = 1; return ARM::VLD1LNd8;
8311   case ARM::VLD1LNdAsm_16: Spacing = 1; return ARM::VLD1LNd16;
8312   case ARM::VLD1LNdAsm_32: Spacing = 1; return ARM::VLD1LNd32;
8313 
8314   // VLD2LN
8315   case ARM::VLD2LNdWB_fixed_Asm_8:  Spacing = 1; return ARM::VLD2LNd8_UPD;
8316   case ARM::VLD2LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VLD2LNd16_UPD;
8317   case ARM::VLD2LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VLD2LNd32_UPD;
8318   case ARM::VLD2LNqWB_fixed_Asm_16: Spacing = 1; return ARM::VLD2LNq16_UPD;
8319   case ARM::VLD2LNqWB_fixed_Asm_32: Spacing = 2; return ARM::VLD2LNq32_UPD;
8320   case ARM::VLD2LNdWB_register_Asm_8:  Spacing = 1; return ARM::VLD2LNd8_UPD;
8321   case ARM::VLD2LNdWB_register_Asm_16: Spacing = 1; return ARM::VLD2LNd16_UPD;
8322   case ARM::VLD2LNdWB_register_Asm_32: Spacing = 1; return ARM::VLD2LNd32_UPD;
8323   case ARM::VLD2LNqWB_register_Asm_16: Spacing = 2; return ARM::VLD2LNq16_UPD;
8324   case ARM::VLD2LNqWB_register_Asm_32: Spacing = 2; return ARM::VLD2LNq32_UPD;
8325   case ARM::VLD2LNdAsm_8:  Spacing = 1; return ARM::VLD2LNd8;
8326   case ARM::VLD2LNdAsm_16: Spacing = 1; return ARM::VLD2LNd16;
8327   case ARM::VLD2LNdAsm_32: Spacing = 1; return ARM::VLD2LNd32;
8328   case ARM::VLD2LNqAsm_16: Spacing = 2; return ARM::VLD2LNq16;
8329   case ARM::VLD2LNqAsm_32: Spacing = 2; return ARM::VLD2LNq32;
8330 
8331   // VLD3DUP
8332   case ARM::VLD3DUPdWB_fixed_Asm_8:  Spacing = 1; return ARM::VLD3DUPd8_UPD;
8333   case ARM::VLD3DUPdWB_fixed_Asm_16: Spacing = 1; return ARM::VLD3DUPd16_UPD;
8334   case ARM::VLD3DUPdWB_fixed_Asm_32: Spacing = 1; return ARM::VLD3DUPd32_UPD;
8335   case ARM::VLD3DUPqWB_fixed_Asm_8: Spacing = 1; return ARM::VLD3DUPq8_UPD;
8336   case ARM::VLD3DUPqWB_fixed_Asm_16: Spacing = 2; return ARM::VLD3DUPq16_UPD;
8337   case ARM::VLD3DUPqWB_fixed_Asm_32: Spacing = 2; return ARM::VLD3DUPq32_UPD;
8338   case ARM::VLD3DUPdWB_register_Asm_8:  Spacing = 1; return ARM::VLD3DUPd8_UPD;
8339   case ARM::VLD3DUPdWB_register_Asm_16: Spacing = 1; return ARM::VLD3DUPd16_UPD;
8340   case ARM::VLD3DUPdWB_register_Asm_32: Spacing = 1; return ARM::VLD3DUPd32_UPD;
8341   case ARM::VLD3DUPqWB_register_Asm_8: Spacing = 2; return ARM::VLD3DUPq8_UPD;
8342   case ARM::VLD3DUPqWB_register_Asm_16: Spacing = 2; return ARM::VLD3DUPq16_UPD;
8343   case ARM::VLD3DUPqWB_register_Asm_32: Spacing = 2; return ARM::VLD3DUPq32_UPD;
8344   case ARM::VLD3DUPdAsm_8:  Spacing = 1; return ARM::VLD3DUPd8;
8345   case ARM::VLD3DUPdAsm_16: Spacing = 1; return ARM::VLD3DUPd16;
8346   case ARM::VLD3DUPdAsm_32: Spacing = 1; return ARM::VLD3DUPd32;
8347   case ARM::VLD3DUPqAsm_8: Spacing = 2; return ARM::VLD3DUPq8;
8348   case ARM::VLD3DUPqAsm_16: Spacing = 2; return ARM::VLD3DUPq16;
8349   case ARM::VLD3DUPqAsm_32: Spacing = 2; return ARM::VLD3DUPq32;
8350 
8351   // VLD3LN
8352   case ARM::VLD3LNdWB_fixed_Asm_8:  Spacing = 1; return ARM::VLD3LNd8_UPD;
8353   case ARM::VLD3LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VLD3LNd16_UPD;
8354   case ARM::VLD3LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VLD3LNd32_UPD;
8355   case ARM::VLD3LNqWB_fixed_Asm_16: Spacing = 1; return ARM::VLD3LNq16_UPD;
8356   case ARM::VLD3LNqWB_fixed_Asm_32: Spacing = 2; return ARM::VLD3LNq32_UPD;
8357   case ARM::VLD3LNdWB_register_Asm_8:  Spacing = 1; return ARM::VLD3LNd8_UPD;
8358   case ARM::VLD3LNdWB_register_Asm_16: Spacing = 1; return ARM::VLD3LNd16_UPD;
8359   case ARM::VLD3LNdWB_register_Asm_32: Spacing = 1; return ARM::VLD3LNd32_UPD;
8360   case ARM::VLD3LNqWB_register_Asm_16: Spacing = 2; return ARM::VLD3LNq16_UPD;
8361   case ARM::VLD3LNqWB_register_Asm_32: Spacing = 2; return ARM::VLD3LNq32_UPD;
8362   case ARM::VLD3LNdAsm_8:  Spacing = 1; return ARM::VLD3LNd8;
8363   case ARM::VLD3LNdAsm_16: Spacing = 1; return ARM::VLD3LNd16;
8364   case ARM::VLD3LNdAsm_32: Spacing = 1; return ARM::VLD3LNd32;
8365   case ARM::VLD3LNqAsm_16: Spacing = 2; return ARM::VLD3LNq16;
8366   case ARM::VLD3LNqAsm_32: Spacing = 2; return ARM::VLD3LNq32;
8367 
8368   // VLD3
8369   case ARM::VLD3dWB_fixed_Asm_8:  Spacing = 1; return ARM::VLD3d8_UPD;
8370   case ARM::VLD3dWB_fixed_Asm_16: Spacing = 1; return ARM::VLD3d16_UPD;
8371   case ARM::VLD3dWB_fixed_Asm_32: Spacing = 1; return ARM::VLD3d32_UPD;
8372   case ARM::VLD3qWB_fixed_Asm_8:  Spacing = 2; return ARM::VLD3q8_UPD;
8373   case ARM::VLD3qWB_fixed_Asm_16: Spacing = 2; return ARM::VLD3q16_UPD;
8374   case ARM::VLD3qWB_fixed_Asm_32: Spacing = 2; return ARM::VLD3q32_UPD;
8375   case ARM::VLD3dWB_register_Asm_8:  Spacing = 1; return ARM::VLD3d8_UPD;
8376   case ARM::VLD3dWB_register_Asm_16: Spacing = 1; return ARM::VLD3d16_UPD;
8377   case ARM::VLD3dWB_register_Asm_32: Spacing = 1; return ARM::VLD3d32_UPD;
8378   case ARM::VLD3qWB_register_Asm_8:  Spacing = 2; return ARM::VLD3q8_UPD;
8379   case ARM::VLD3qWB_register_Asm_16: Spacing = 2; return ARM::VLD3q16_UPD;
8380   case ARM::VLD3qWB_register_Asm_32: Spacing = 2; return ARM::VLD3q32_UPD;
8381   case ARM::VLD3dAsm_8:  Spacing = 1; return ARM::VLD3d8;
8382   case ARM::VLD3dAsm_16: Spacing = 1; return ARM::VLD3d16;
8383   case ARM::VLD3dAsm_32: Spacing = 1; return ARM::VLD3d32;
8384   case ARM::VLD3qAsm_8:  Spacing = 2; return ARM::VLD3q8;
8385   case ARM::VLD3qAsm_16: Spacing = 2; return ARM::VLD3q16;
8386   case ARM::VLD3qAsm_32: Spacing = 2; return ARM::VLD3q32;
8387 
8388   // VLD4LN
8389   case ARM::VLD4LNdWB_fixed_Asm_8:  Spacing = 1; return ARM::VLD4LNd8_UPD;
8390   case ARM::VLD4LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VLD4LNd16_UPD;
8391   case ARM::VLD4LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VLD4LNd32_UPD;
8392   case ARM::VLD4LNqWB_fixed_Asm_16: Spacing = 2; return ARM::VLD4LNq16_UPD;
8393   case ARM::VLD4LNqWB_fixed_Asm_32: Spacing = 2; return ARM::VLD4LNq32_UPD;
8394   case ARM::VLD4LNdWB_register_Asm_8:  Spacing = 1; return ARM::VLD4LNd8_UPD;
8395   case ARM::VLD4LNdWB_register_Asm_16: Spacing = 1; return ARM::VLD4LNd16_UPD;
8396   case ARM::VLD4LNdWB_register_Asm_32: Spacing = 1; return ARM::VLD4LNd32_UPD;
8397   case ARM::VLD4LNqWB_register_Asm_16: Spacing = 2; return ARM::VLD4LNq16_UPD;
8398   case ARM::VLD4LNqWB_register_Asm_32: Spacing = 2; return ARM::VLD4LNq32_UPD;
8399   case ARM::VLD4LNdAsm_8:  Spacing = 1; return ARM::VLD4LNd8;
8400   case ARM::VLD4LNdAsm_16: Spacing = 1; return ARM::VLD4LNd16;
8401   case ARM::VLD4LNdAsm_32: Spacing = 1; return ARM::VLD4LNd32;
8402   case ARM::VLD4LNqAsm_16: Spacing = 2; return ARM::VLD4LNq16;
8403   case ARM::VLD4LNqAsm_32: Spacing = 2; return ARM::VLD4LNq32;
8404 
8405   // VLD4DUP
8406   case ARM::VLD4DUPdWB_fixed_Asm_8:  Spacing = 1; return ARM::VLD4DUPd8_UPD;
8407   case ARM::VLD4DUPdWB_fixed_Asm_16: Spacing = 1; return ARM::VLD4DUPd16_UPD;
8408   case ARM::VLD4DUPdWB_fixed_Asm_32: Spacing = 1; return ARM::VLD4DUPd32_UPD;
8409   case ARM::VLD4DUPqWB_fixed_Asm_8: Spacing = 1; return ARM::VLD4DUPq8_UPD;
8410   case ARM::VLD4DUPqWB_fixed_Asm_16: Spacing = 1; return ARM::VLD4DUPq16_UPD;
8411   case ARM::VLD4DUPqWB_fixed_Asm_32: Spacing = 2; return ARM::VLD4DUPq32_UPD;
8412   case ARM::VLD4DUPdWB_register_Asm_8:  Spacing = 1; return ARM::VLD4DUPd8_UPD;
8413   case ARM::VLD4DUPdWB_register_Asm_16: Spacing = 1; return ARM::VLD4DUPd16_UPD;
8414   case ARM::VLD4DUPdWB_register_Asm_32: Spacing = 1; return ARM::VLD4DUPd32_UPD;
8415   case ARM::VLD4DUPqWB_register_Asm_8: Spacing = 2; return ARM::VLD4DUPq8_UPD;
8416   case ARM::VLD4DUPqWB_register_Asm_16: Spacing = 2; return ARM::VLD4DUPq16_UPD;
8417   case ARM::VLD4DUPqWB_register_Asm_32: Spacing = 2; return ARM::VLD4DUPq32_UPD;
8418   case ARM::VLD4DUPdAsm_8:  Spacing = 1; return ARM::VLD4DUPd8;
8419   case ARM::VLD4DUPdAsm_16: Spacing = 1; return ARM::VLD4DUPd16;
8420   case ARM::VLD4DUPdAsm_32: Spacing = 1; return ARM::VLD4DUPd32;
8421   case ARM::VLD4DUPqAsm_8: Spacing = 2; return ARM::VLD4DUPq8;
8422   case ARM::VLD4DUPqAsm_16: Spacing = 2; return ARM::VLD4DUPq16;
8423   case ARM::VLD4DUPqAsm_32: Spacing = 2; return ARM::VLD4DUPq32;
8424 
8425   // VLD4
8426   case ARM::VLD4dWB_fixed_Asm_8:  Spacing = 1; return ARM::VLD4d8_UPD;
8427   case ARM::VLD4dWB_fixed_Asm_16: Spacing = 1; return ARM::VLD4d16_UPD;
8428   case ARM::VLD4dWB_fixed_Asm_32: Spacing = 1; return ARM::VLD4d32_UPD;
8429   case ARM::VLD4qWB_fixed_Asm_8:  Spacing = 2; return ARM::VLD4q8_UPD;
8430   case ARM::VLD4qWB_fixed_Asm_16: Spacing = 2; return ARM::VLD4q16_UPD;
8431   case ARM::VLD4qWB_fixed_Asm_32: Spacing = 2; return ARM::VLD4q32_UPD;
8432   case ARM::VLD4dWB_register_Asm_8:  Spacing = 1; return ARM::VLD4d8_UPD;
8433   case ARM::VLD4dWB_register_Asm_16: Spacing = 1; return ARM::VLD4d16_UPD;
8434   case ARM::VLD4dWB_register_Asm_32: Spacing = 1; return ARM::VLD4d32_UPD;
8435   case ARM::VLD4qWB_register_Asm_8:  Spacing = 2; return ARM::VLD4q8_UPD;
8436   case ARM::VLD4qWB_register_Asm_16: Spacing = 2; return ARM::VLD4q16_UPD;
8437   case ARM::VLD4qWB_register_Asm_32: Spacing = 2; return ARM::VLD4q32_UPD;
8438   case ARM::VLD4dAsm_8:  Spacing = 1; return ARM::VLD4d8;
8439   case ARM::VLD4dAsm_16: Spacing = 1; return ARM::VLD4d16;
8440   case ARM::VLD4dAsm_32: Spacing = 1; return ARM::VLD4d32;
8441   case ARM::VLD4qAsm_8:  Spacing = 2; return ARM::VLD4q8;
8442   case ARM::VLD4qAsm_16: Spacing = 2; return ARM::VLD4q16;
8443   case ARM::VLD4qAsm_32: Spacing = 2; return ARM::VLD4q32;
8444   }
8445 }
8446 
8447 bool ARMAsmParser::processInstruction(MCInst &Inst,
8448                                       const OperandVector &Operands,
8449                                       MCStreamer &Out) {
8450   // Check if we have the wide qualifier, because if it's present we
8451   // must avoid selecting a 16-bit thumb instruction.
8452   bool HasWideQualifier = false;
8453   for (auto &Op : Operands) {
8454     ARMOperand &ARMOp = static_cast<ARMOperand&>(*Op);
8455     if (ARMOp.isToken() && ARMOp.getToken() == ".w") {
8456       HasWideQualifier = true;
8457       break;
8458     }
8459   }
8460 
8461   switch (Inst.getOpcode()) {
8462   // Alias for alternate form of 'ldr{,b}t Rt, [Rn], #imm' instruction.
8463   case ARM::LDRT_POST:
8464   case ARM::LDRBT_POST: {
8465     const unsigned Opcode =
8466       (Inst.getOpcode() == ARM::LDRT_POST) ? ARM::LDRT_POST_IMM
8467                                            : ARM::LDRBT_POST_IMM;
8468     MCInst TmpInst;
8469     TmpInst.setOpcode(Opcode);
8470     TmpInst.addOperand(Inst.getOperand(0));
8471     TmpInst.addOperand(Inst.getOperand(1));
8472     TmpInst.addOperand(Inst.getOperand(1));
8473     TmpInst.addOperand(MCOperand::createReg(0));
8474     TmpInst.addOperand(MCOperand::createImm(0));
8475     TmpInst.addOperand(Inst.getOperand(2));
8476     TmpInst.addOperand(Inst.getOperand(3));
8477     Inst = TmpInst;
8478     return true;
8479   }
8480   // Alias for alternate form of 'str{,b}t Rt, [Rn], #imm' instruction.
8481   case ARM::STRT_POST:
8482   case ARM::STRBT_POST: {
8483     const unsigned Opcode =
8484       (Inst.getOpcode() == ARM::STRT_POST) ? ARM::STRT_POST_IMM
8485                                            : ARM::STRBT_POST_IMM;
8486     MCInst TmpInst;
8487     TmpInst.setOpcode(Opcode);
8488     TmpInst.addOperand(Inst.getOperand(1));
8489     TmpInst.addOperand(Inst.getOperand(0));
8490     TmpInst.addOperand(Inst.getOperand(1));
8491     TmpInst.addOperand(MCOperand::createReg(0));
8492     TmpInst.addOperand(MCOperand::createImm(0));
8493     TmpInst.addOperand(Inst.getOperand(2));
8494     TmpInst.addOperand(Inst.getOperand(3));
8495     Inst = TmpInst;
8496     return true;
8497   }
8498   // Alias for alternate form of 'ADR Rd, #imm' instruction.
8499   case ARM::ADDri: {
8500     if (Inst.getOperand(1).getReg() != ARM::PC ||
8501         Inst.getOperand(5).getReg() != 0 ||
8502         !(Inst.getOperand(2).isExpr() || Inst.getOperand(2).isImm()))
8503       return false;
8504     MCInst TmpInst;
8505     TmpInst.setOpcode(ARM::ADR);
8506     TmpInst.addOperand(Inst.getOperand(0));
8507     if (Inst.getOperand(2).isImm()) {
8508       // Immediate (mod_imm) will be in its encoded form, we must unencode it
8509       // before passing it to the ADR instruction.
8510       unsigned Enc = Inst.getOperand(2).getImm();
8511       TmpInst.addOperand(MCOperand::createImm(
8512         ARM_AM::rotr32(Enc & 0xFF, (Enc & 0xF00) >> 7)));
8513     } else {
8514       // Turn PC-relative expression into absolute expression.
8515       // Reading PC provides the start of the current instruction + 8 and
8516       // the transform to adr is biased by that.
8517       MCSymbol *Dot = getContext().createTempSymbol();
8518       Out.emitLabel(Dot);
8519       const MCExpr *OpExpr = Inst.getOperand(2).getExpr();
8520       const MCExpr *InstPC = MCSymbolRefExpr::create(Dot,
8521                                                      MCSymbolRefExpr::VK_None,
8522                                                      getContext());
8523       const MCExpr *Const8 = MCConstantExpr::create(8, getContext());
8524       const MCExpr *ReadPC = MCBinaryExpr::createAdd(InstPC, Const8,
8525                                                      getContext());
8526       const MCExpr *FixupAddr = MCBinaryExpr::createAdd(ReadPC, OpExpr,
8527                                                         getContext());
8528       TmpInst.addOperand(MCOperand::createExpr(FixupAddr));
8529     }
8530     TmpInst.addOperand(Inst.getOperand(3));
8531     TmpInst.addOperand(Inst.getOperand(4));
8532     Inst = TmpInst;
8533     return true;
8534   }
8535   // Aliases for alternate PC+imm syntax of LDR instructions.
8536   case ARM::t2LDRpcrel:
8537     // Select the narrow version if the immediate will fit.
8538     if (Inst.getOperand(1).getImm() > 0 &&
8539         Inst.getOperand(1).getImm() <= 0xff &&
8540         !HasWideQualifier)
8541       Inst.setOpcode(ARM::tLDRpci);
8542     else
8543       Inst.setOpcode(ARM::t2LDRpci);
8544     return true;
8545   case ARM::t2LDRBpcrel:
8546     Inst.setOpcode(ARM::t2LDRBpci);
8547     return true;
8548   case ARM::t2LDRHpcrel:
8549     Inst.setOpcode(ARM::t2LDRHpci);
8550     return true;
8551   case ARM::t2LDRSBpcrel:
8552     Inst.setOpcode(ARM::t2LDRSBpci);
8553     return true;
8554   case ARM::t2LDRSHpcrel:
8555     Inst.setOpcode(ARM::t2LDRSHpci);
8556     return true;
8557   case ARM::LDRConstPool:
8558   case ARM::tLDRConstPool:
8559   case ARM::t2LDRConstPool: {
8560     // Pseudo instruction ldr rt, =immediate is converted to a
8561     // MOV rt, immediate if immediate is known and representable
8562     // otherwise we create a constant pool entry that we load from.
8563     MCInst TmpInst;
8564     if (Inst.getOpcode() == ARM::LDRConstPool)
8565       TmpInst.setOpcode(ARM::LDRi12);
8566     else if (Inst.getOpcode() == ARM::tLDRConstPool)
8567       TmpInst.setOpcode(ARM::tLDRpci);
8568     else if (Inst.getOpcode() == ARM::t2LDRConstPool)
8569       TmpInst.setOpcode(ARM::t2LDRpci);
8570     const ARMOperand &PoolOperand =
8571       (HasWideQualifier ?
8572        static_cast<ARMOperand &>(*Operands[4]) :
8573        static_cast<ARMOperand &>(*Operands[3]));
8574     const MCExpr *SubExprVal = PoolOperand.getConstantPoolImm();
8575     // If SubExprVal is a constant we may be able to use a MOV
8576     if (isa<MCConstantExpr>(SubExprVal) &&
8577         Inst.getOperand(0).getReg() != ARM::PC &&
8578         Inst.getOperand(0).getReg() != ARM::SP) {
8579       int64_t Value =
8580         (int64_t) (cast<MCConstantExpr>(SubExprVal))->getValue();
8581       bool UseMov  = true;
8582       bool MovHasS = true;
8583       if (Inst.getOpcode() == ARM::LDRConstPool) {
8584         // ARM Constant
8585         if (ARM_AM::getSOImmVal(Value) != -1) {
8586           Value = ARM_AM::getSOImmVal(Value);
8587           TmpInst.setOpcode(ARM::MOVi);
8588         }
8589         else if (ARM_AM::getSOImmVal(~Value) != -1) {
8590           Value = ARM_AM::getSOImmVal(~Value);
8591           TmpInst.setOpcode(ARM::MVNi);
8592         }
8593         else if (hasV6T2Ops() &&
8594                  Value >=0 && Value < 65536) {
8595           TmpInst.setOpcode(ARM::MOVi16);
8596           MovHasS = false;
8597         }
8598         else
8599           UseMov = false;
8600       }
8601       else {
8602         // Thumb/Thumb2 Constant
8603         if (hasThumb2() &&
8604             ARM_AM::getT2SOImmVal(Value) != -1)
8605           TmpInst.setOpcode(ARM::t2MOVi);
8606         else if (hasThumb2() &&
8607                  ARM_AM::getT2SOImmVal(~Value) != -1) {
8608           TmpInst.setOpcode(ARM::t2MVNi);
8609           Value = ~Value;
8610         }
8611         else if (hasV8MBaseline() &&
8612                  Value >=0 && Value < 65536) {
8613           TmpInst.setOpcode(ARM::t2MOVi16);
8614           MovHasS = false;
8615         }
8616         else
8617           UseMov = false;
8618       }
8619       if (UseMov) {
8620         TmpInst.addOperand(Inst.getOperand(0));           // Rt
8621         TmpInst.addOperand(MCOperand::createImm(Value));  // Immediate
8622         TmpInst.addOperand(Inst.getOperand(2));           // CondCode
8623         TmpInst.addOperand(Inst.getOperand(3));           // CondCode
8624         if (MovHasS)
8625           TmpInst.addOperand(MCOperand::createReg(0));    // S
8626         Inst = TmpInst;
8627         return true;
8628       }
8629     }
8630     // No opportunity to use MOV/MVN create constant pool
8631     const MCExpr *CPLoc =
8632       getTargetStreamer().addConstantPoolEntry(SubExprVal,
8633                                                PoolOperand.getStartLoc());
8634     TmpInst.addOperand(Inst.getOperand(0));           // Rt
8635     TmpInst.addOperand(MCOperand::createExpr(CPLoc)); // offset to constpool
8636     if (TmpInst.getOpcode() == ARM::LDRi12)
8637       TmpInst.addOperand(MCOperand::createImm(0));    // unused offset
8638     TmpInst.addOperand(Inst.getOperand(2));           // CondCode
8639     TmpInst.addOperand(Inst.getOperand(3));           // CondCode
8640     Inst = TmpInst;
8641     return true;
8642   }
8643   // Handle NEON VST complex aliases.
8644   case ARM::VST1LNdWB_register_Asm_8:
8645   case ARM::VST1LNdWB_register_Asm_16:
8646   case ARM::VST1LNdWB_register_Asm_32: {
8647     MCInst TmpInst;
8648     // Shuffle the operands around so the lane index operand is in the
8649     // right place.
8650     unsigned Spacing;
8651     TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
8652     TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
8653     TmpInst.addOperand(Inst.getOperand(2)); // Rn
8654     TmpInst.addOperand(Inst.getOperand(3)); // alignment
8655     TmpInst.addOperand(Inst.getOperand(4)); // Rm
8656     TmpInst.addOperand(Inst.getOperand(0)); // Vd
8657     TmpInst.addOperand(Inst.getOperand(1)); // lane
8658     TmpInst.addOperand(Inst.getOperand(5)); // CondCode
8659     TmpInst.addOperand(Inst.getOperand(6));
8660     Inst = TmpInst;
8661     return true;
8662   }
8663 
8664   case ARM::VST2LNdWB_register_Asm_8:
8665   case ARM::VST2LNdWB_register_Asm_16:
8666   case ARM::VST2LNdWB_register_Asm_32:
8667   case ARM::VST2LNqWB_register_Asm_16:
8668   case ARM::VST2LNqWB_register_Asm_32: {
8669     MCInst TmpInst;
8670     // Shuffle the operands around so the lane index operand is in the
8671     // right place.
8672     unsigned Spacing;
8673     TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
8674     TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
8675     TmpInst.addOperand(Inst.getOperand(2)); // Rn
8676     TmpInst.addOperand(Inst.getOperand(3)); // alignment
8677     TmpInst.addOperand(Inst.getOperand(4)); // Rm
8678     TmpInst.addOperand(Inst.getOperand(0)); // Vd
8679     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
8680                                             Spacing));
8681     TmpInst.addOperand(Inst.getOperand(1)); // lane
8682     TmpInst.addOperand(Inst.getOperand(5)); // CondCode
8683     TmpInst.addOperand(Inst.getOperand(6));
8684     Inst = TmpInst;
8685     return true;
8686   }
8687 
8688   case ARM::VST3LNdWB_register_Asm_8:
8689   case ARM::VST3LNdWB_register_Asm_16:
8690   case ARM::VST3LNdWB_register_Asm_32:
8691   case ARM::VST3LNqWB_register_Asm_16:
8692   case ARM::VST3LNqWB_register_Asm_32: {
8693     MCInst TmpInst;
8694     // Shuffle the operands around so the lane index operand is in the
8695     // right place.
8696     unsigned Spacing;
8697     TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
8698     TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
8699     TmpInst.addOperand(Inst.getOperand(2)); // Rn
8700     TmpInst.addOperand(Inst.getOperand(3)); // alignment
8701     TmpInst.addOperand(Inst.getOperand(4)); // Rm
8702     TmpInst.addOperand(Inst.getOperand(0)); // Vd
8703     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
8704                                             Spacing));
8705     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
8706                                             Spacing * 2));
8707     TmpInst.addOperand(Inst.getOperand(1)); // lane
8708     TmpInst.addOperand(Inst.getOperand(5)); // CondCode
8709     TmpInst.addOperand(Inst.getOperand(6));
8710     Inst = TmpInst;
8711     return true;
8712   }
8713 
8714   case ARM::VST4LNdWB_register_Asm_8:
8715   case ARM::VST4LNdWB_register_Asm_16:
8716   case ARM::VST4LNdWB_register_Asm_32:
8717   case ARM::VST4LNqWB_register_Asm_16:
8718   case ARM::VST4LNqWB_register_Asm_32: {
8719     MCInst TmpInst;
8720     // Shuffle the operands around so the lane index operand is in the
8721     // right place.
8722     unsigned Spacing;
8723     TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
8724     TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
8725     TmpInst.addOperand(Inst.getOperand(2)); // Rn
8726     TmpInst.addOperand(Inst.getOperand(3)); // alignment
8727     TmpInst.addOperand(Inst.getOperand(4)); // Rm
8728     TmpInst.addOperand(Inst.getOperand(0)); // Vd
8729     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
8730                                             Spacing));
8731     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
8732                                             Spacing * 2));
8733     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
8734                                             Spacing * 3));
8735     TmpInst.addOperand(Inst.getOperand(1)); // lane
8736     TmpInst.addOperand(Inst.getOperand(5)); // CondCode
8737     TmpInst.addOperand(Inst.getOperand(6));
8738     Inst = TmpInst;
8739     return true;
8740   }
8741 
8742   case ARM::VST1LNdWB_fixed_Asm_8:
8743   case ARM::VST1LNdWB_fixed_Asm_16:
8744   case ARM::VST1LNdWB_fixed_Asm_32: {
8745     MCInst TmpInst;
8746     // Shuffle the operands around so the lane index operand is in the
8747     // right place.
8748     unsigned Spacing;
8749     TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
8750     TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
8751     TmpInst.addOperand(Inst.getOperand(2)); // Rn
8752     TmpInst.addOperand(Inst.getOperand(3)); // alignment
8753     TmpInst.addOperand(MCOperand::createReg(0)); // Rm
8754     TmpInst.addOperand(Inst.getOperand(0)); // Vd
8755     TmpInst.addOperand(Inst.getOperand(1)); // lane
8756     TmpInst.addOperand(Inst.getOperand(4)); // CondCode
8757     TmpInst.addOperand(Inst.getOperand(5));
8758     Inst = TmpInst;
8759     return true;
8760   }
8761 
8762   case ARM::VST2LNdWB_fixed_Asm_8:
8763   case ARM::VST2LNdWB_fixed_Asm_16:
8764   case ARM::VST2LNdWB_fixed_Asm_32:
8765   case ARM::VST2LNqWB_fixed_Asm_16:
8766   case ARM::VST2LNqWB_fixed_Asm_32: {
8767     MCInst TmpInst;
8768     // Shuffle the operands around so the lane index operand is in the
8769     // right place.
8770     unsigned Spacing;
8771     TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
8772     TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
8773     TmpInst.addOperand(Inst.getOperand(2)); // Rn
8774     TmpInst.addOperand(Inst.getOperand(3)); // alignment
8775     TmpInst.addOperand(MCOperand::createReg(0)); // Rm
8776     TmpInst.addOperand(Inst.getOperand(0)); // Vd
8777     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
8778                                             Spacing));
8779     TmpInst.addOperand(Inst.getOperand(1)); // lane
8780     TmpInst.addOperand(Inst.getOperand(4)); // CondCode
8781     TmpInst.addOperand(Inst.getOperand(5));
8782     Inst = TmpInst;
8783     return true;
8784   }
8785 
8786   case ARM::VST3LNdWB_fixed_Asm_8:
8787   case ARM::VST3LNdWB_fixed_Asm_16:
8788   case ARM::VST3LNdWB_fixed_Asm_32:
8789   case ARM::VST3LNqWB_fixed_Asm_16:
8790   case ARM::VST3LNqWB_fixed_Asm_32: {
8791     MCInst TmpInst;
8792     // Shuffle the operands around so the lane index operand is in the
8793     // right place.
8794     unsigned Spacing;
8795     TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
8796     TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
8797     TmpInst.addOperand(Inst.getOperand(2)); // Rn
8798     TmpInst.addOperand(Inst.getOperand(3)); // alignment
8799     TmpInst.addOperand(MCOperand::createReg(0)); // Rm
8800     TmpInst.addOperand(Inst.getOperand(0)); // Vd
8801     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
8802                                             Spacing));
8803     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
8804                                             Spacing * 2));
8805     TmpInst.addOperand(Inst.getOperand(1)); // lane
8806     TmpInst.addOperand(Inst.getOperand(4)); // CondCode
8807     TmpInst.addOperand(Inst.getOperand(5));
8808     Inst = TmpInst;
8809     return true;
8810   }
8811 
8812   case ARM::VST4LNdWB_fixed_Asm_8:
8813   case ARM::VST4LNdWB_fixed_Asm_16:
8814   case ARM::VST4LNdWB_fixed_Asm_32:
8815   case ARM::VST4LNqWB_fixed_Asm_16:
8816   case ARM::VST4LNqWB_fixed_Asm_32: {
8817     MCInst TmpInst;
8818     // Shuffle the operands around so the lane index operand is in the
8819     // right place.
8820     unsigned Spacing;
8821     TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
8822     TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
8823     TmpInst.addOperand(Inst.getOperand(2)); // Rn
8824     TmpInst.addOperand(Inst.getOperand(3)); // alignment
8825     TmpInst.addOperand(MCOperand::createReg(0)); // Rm
8826     TmpInst.addOperand(Inst.getOperand(0)); // Vd
8827     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
8828                                             Spacing));
8829     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
8830                                             Spacing * 2));
8831     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
8832                                             Spacing * 3));
8833     TmpInst.addOperand(Inst.getOperand(1)); // lane
8834     TmpInst.addOperand(Inst.getOperand(4)); // CondCode
8835     TmpInst.addOperand(Inst.getOperand(5));
8836     Inst = TmpInst;
8837     return true;
8838   }
8839 
8840   case ARM::VST1LNdAsm_8:
8841   case ARM::VST1LNdAsm_16:
8842   case ARM::VST1LNdAsm_32: {
8843     MCInst TmpInst;
8844     // Shuffle the operands around so the lane index operand is in the
8845     // right place.
8846     unsigned Spacing;
8847     TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
8848     TmpInst.addOperand(Inst.getOperand(2)); // Rn
8849     TmpInst.addOperand(Inst.getOperand(3)); // alignment
8850     TmpInst.addOperand(Inst.getOperand(0)); // Vd
8851     TmpInst.addOperand(Inst.getOperand(1)); // lane
8852     TmpInst.addOperand(Inst.getOperand(4)); // CondCode
8853     TmpInst.addOperand(Inst.getOperand(5));
8854     Inst = TmpInst;
8855     return true;
8856   }
8857 
8858   case ARM::VST2LNdAsm_8:
8859   case ARM::VST2LNdAsm_16:
8860   case ARM::VST2LNdAsm_32:
8861   case ARM::VST2LNqAsm_16:
8862   case ARM::VST2LNqAsm_32: {
8863     MCInst TmpInst;
8864     // Shuffle the operands around so the lane index operand is in the
8865     // right place.
8866     unsigned Spacing;
8867     TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
8868     TmpInst.addOperand(Inst.getOperand(2)); // Rn
8869     TmpInst.addOperand(Inst.getOperand(3)); // alignment
8870     TmpInst.addOperand(Inst.getOperand(0)); // Vd
8871     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
8872                                             Spacing));
8873     TmpInst.addOperand(Inst.getOperand(1)); // lane
8874     TmpInst.addOperand(Inst.getOperand(4)); // CondCode
8875     TmpInst.addOperand(Inst.getOperand(5));
8876     Inst = TmpInst;
8877     return true;
8878   }
8879 
8880   case ARM::VST3LNdAsm_8:
8881   case ARM::VST3LNdAsm_16:
8882   case ARM::VST3LNdAsm_32:
8883   case ARM::VST3LNqAsm_16:
8884   case ARM::VST3LNqAsm_32: {
8885     MCInst TmpInst;
8886     // Shuffle the operands around so the lane index operand is in the
8887     // right place.
8888     unsigned Spacing;
8889     TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
8890     TmpInst.addOperand(Inst.getOperand(2)); // Rn
8891     TmpInst.addOperand(Inst.getOperand(3)); // alignment
8892     TmpInst.addOperand(Inst.getOperand(0)); // Vd
8893     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
8894                                             Spacing));
8895     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
8896                                             Spacing * 2));
8897     TmpInst.addOperand(Inst.getOperand(1)); // lane
8898     TmpInst.addOperand(Inst.getOperand(4)); // CondCode
8899     TmpInst.addOperand(Inst.getOperand(5));
8900     Inst = TmpInst;
8901     return true;
8902   }
8903 
8904   case ARM::VST4LNdAsm_8:
8905   case ARM::VST4LNdAsm_16:
8906   case ARM::VST4LNdAsm_32:
8907   case ARM::VST4LNqAsm_16:
8908   case ARM::VST4LNqAsm_32: {
8909     MCInst TmpInst;
8910     // Shuffle the operands around so the lane index operand is in the
8911     // right place.
8912     unsigned Spacing;
8913     TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
8914     TmpInst.addOperand(Inst.getOperand(2)); // Rn
8915     TmpInst.addOperand(Inst.getOperand(3)); // alignment
8916     TmpInst.addOperand(Inst.getOperand(0)); // Vd
8917     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
8918                                             Spacing));
8919     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
8920                                             Spacing * 2));
8921     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
8922                                             Spacing * 3));
8923     TmpInst.addOperand(Inst.getOperand(1)); // lane
8924     TmpInst.addOperand(Inst.getOperand(4)); // CondCode
8925     TmpInst.addOperand(Inst.getOperand(5));
8926     Inst = TmpInst;
8927     return true;
8928   }
8929 
8930   // Handle NEON VLD complex aliases.
8931   case ARM::VLD1LNdWB_register_Asm_8:
8932   case ARM::VLD1LNdWB_register_Asm_16:
8933   case ARM::VLD1LNdWB_register_Asm_32: {
8934     MCInst TmpInst;
8935     // Shuffle the operands around so the lane index operand is in the
8936     // right place.
8937     unsigned Spacing;
8938     TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
8939     TmpInst.addOperand(Inst.getOperand(0)); // Vd
8940     TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
8941     TmpInst.addOperand(Inst.getOperand(2)); // Rn
8942     TmpInst.addOperand(Inst.getOperand(3)); // alignment
8943     TmpInst.addOperand(Inst.getOperand(4)); // Rm
8944     TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
8945     TmpInst.addOperand(Inst.getOperand(1)); // lane
8946     TmpInst.addOperand(Inst.getOperand(5)); // CondCode
8947     TmpInst.addOperand(Inst.getOperand(6));
8948     Inst = TmpInst;
8949     return true;
8950   }
8951 
8952   case ARM::VLD2LNdWB_register_Asm_8:
8953   case ARM::VLD2LNdWB_register_Asm_16:
8954   case ARM::VLD2LNdWB_register_Asm_32:
8955   case ARM::VLD2LNqWB_register_Asm_16:
8956   case ARM::VLD2LNqWB_register_Asm_32: {
8957     MCInst TmpInst;
8958     // Shuffle the operands around so the lane index operand is in the
8959     // right place.
8960     unsigned Spacing;
8961     TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
8962     TmpInst.addOperand(Inst.getOperand(0)); // Vd
8963     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
8964                                             Spacing));
8965     TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
8966     TmpInst.addOperand(Inst.getOperand(2)); // Rn
8967     TmpInst.addOperand(Inst.getOperand(3)); // alignment
8968     TmpInst.addOperand(Inst.getOperand(4)); // Rm
8969     TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
8970     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
8971                                             Spacing));
8972     TmpInst.addOperand(Inst.getOperand(1)); // lane
8973     TmpInst.addOperand(Inst.getOperand(5)); // CondCode
8974     TmpInst.addOperand(Inst.getOperand(6));
8975     Inst = TmpInst;
8976     return true;
8977   }
8978 
8979   case ARM::VLD3LNdWB_register_Asm_8:
8980   case ARM::VLD3LNdWB_register_Asm_16:
8981   case ARM::VLD3LNdWB_register_Asm_32:
8982   case ARM::VLD3LNqWB_register_Asm_16:
8983   case ARM::VLD3LNqWB_register_Asm_32: {
8984     MCInst TmpInst;
8985     // Shuffle the operands around so the lane index operand is in the
8986     // right place.
8987     unsigned Spacing;
8988     TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
8989     TmpInst.addOperand(Inst.getOperand(0)); // Vd
8990     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
8991                                             Spacing));
8992     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
8993                                             Spacing * 2));
8994     TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
8995     TmpInst.addOperand(Inst.getOperand(2)); // Rn
8996     TmpInst.addOperand(Inst.getOperand(3)); // alignment
8997     TmpInst.addOperand(Inst.getOperand(4)); // Rm
8998     TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
8999     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9000                                             Spacing));
9001     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9002                                             Spacing * 2));
9003     TmpInst.addOperand(Inst.getOperand(1)); // lane
9004     TmpInst.addOperand(Inst.getOperand(5)); // CondCode
9005     TmpInst.addOperand(Inst.getOperand(6));
9006     Inst = TmpInst;
9007     return true;
9008   }
9009 
9010   case ARM::VLD4LNdWB_register_Asm_8:
9011   case ARM::VLD4LNdWB_register_Asm_16:
9012   case ARM::VLD4LNdWB_register_Asm_32:
9013   case ARM::VLD4LNqWB_register_Asm_16:
9014   case ARM::VLD4LNqWB_register_Asm_32: {
9015     MCInst TmpInst;
9016     // Shuffle the operands around so the lane index operand is in the
9017     // right place.
9018     unsigned Spacing;
9019     TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
9020     TmpInst.addOperand(Inst.getOperand(0)); // Vd
9021     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9022                                             Spacing));
9023     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9024                                             Spacing * 2));
9025     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9026                                             Spacing * 3));
9027     TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
9028     TmpInst.addOperand(Inst.getOperand(2)); // Rn
9029     TmpInst.addOperand(Inst.getOperand(3)); // alignment
9030     TmpInst.addOperand(Inst.getOperand(4)); // Rm
9031     TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
9032     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9033                                             Spacing));
9034     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9035                                             Spacing * 2));
9036     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9037                                             Spacing * 3));
9038     TmpInst.addOperand(Inst.getOperand(1)); // lane
9039     TmpInst.addOperand(Inst.getOperand(5)); // CondCode
9040     TmpInst.addOperand(Inst.getOperand(6));
9041     Inst = TmpInst;
9042     return true;
9043   }
9044 
9045   case ARM::VLD1LNdWB_fixed_Asm_8:
9046   case ARM::VLD1LNdWB_fixed_Asm_16:
9047   case ARM::VLD1LNdWB_fixed_Asm_32: {
9048     MCInst TmpInst;
9049     // Shuffle the operands around so the lane index operand is in the
9050     // right place.
9051     unsigned Spacing;
9052     TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
9053     TmpInst.addOperand(Inst.getOperand(0)); // Vd
9054     TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
9055     TmpInst.addOperand(Inst.getOperand(2)); // Rn
9056     TmpInst.addOperand(Inst.getOperand(3)); // alignment
9057     TmpInst.addOperand(MCOperand::createReg(0)); // Rm
9058     TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
9059     TmpInst.addOperand(Inst.getOperand(1)); // lane
9060     TmpInst.addOperand(Inst.getOperand(4)); // CondCode
9061     TmpInst.addOperand(Inst.getOperand(5));
9062     Inst = TmpInst;
9063     return true;
9064   }
9065 
9066   case ARM::VLD2LNdWB_fixed_Asm_8:
9067   case ARM::VLD2LNdWB_fixed_Asm_16:
9068   case ARM::VLD2LNdWB_fixed_Asm_32:
9069   case ARM::VLD2LNqWB_fixed_Asm_16:
9070   case ARM::VLD2LNqWB_fixed_Asm_32: {
9071     MCInst TmpInst;
9072     // Shuffle the operands around so the lane index operand is in the
9073     // right place.
9074     unsigned Spacing;
9075     TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
9076     TmpInst.addOperand(Inst.getOperand(0)); // Vd
9077     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9078                                             Spacing));
9079     TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
9080     TmpInst.addOperand(Inst.getOperand(2)); // Rn
9081     TmpInst.addOperand(Inst.getOperand(3)); // alignment
9082     TmpInst.addOperand(MCOperand::createReg(0)); // Rm
9083     TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
9084     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9085                                             Spacing));
9086     TmpInst.addOperand(Inst.getOperand(1)); // lane
9087     TmpInst.addOperand(Inst.getOperand(4)); // CondCode
9088     TmpInst.addOperand(Inst.getOperand(5));
9089     Inst = TmpInst;
9090     return true;
9091   }
9092 
9093   case ARM::VLD3LNdWB_fixed_Asm_8:
9094   case ARM::VLD3LNdWB_fixed_Asm_16:
9095   case ARM::VLD3LNdWB_fixed_Asm_32:
9096   case ARM::VLD3LNqWB_fixed_Asm_16:
9097   case ARM::VLD3LNqWB_fixed_Asm_32: {
9098     MCInst TmpInst;
9099     // Shuffle the operands around so the lane index operand is in the
9100     // right place.
9101     unsigned Spacing;
9102     TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
9103     TmpInst.addOperand(Inst.getOperand(0)); // Vd
9104     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9105                                             Spacing));
9106     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9107                                             Spacing * 2));
9108     TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
9109     TmpInst.addOperand(Inst.getOperand(2)); // Rn
9110     TmpInst.addOperand(Inst.getOperand(3)); // alignment
9111     TmpInst.addOperand(MCOperand::createReg(0)); // Rm
9112     TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
9113     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9114                                             Spacing));
9115     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9116                                             Spacing * 2));
9117     TmpInst.addOperand(Inst.getOperand(1)); // lane
9118     TmpInst.addOperand(Inst.getOperand(4)); // CondCode
9119     TmpInst.addOperand(Inst.getOperand(5));
9120     Inst = TmpInst;
9121     return true;
9122   }
9123 
9124   case ARM::VLD4LNdWB_fixed_Asm_8:
9125   case ARM::VLD4LNdWB_fixed_Asm_16:
9126   case ARM::VLD4LNdWB_fixed_Asm_32:
9127   case ARM::VLD4LNqWB_fixed_Asm_16:
9128   case ARM::VLD4LNqWB_fixed_Asm_32: {
9129     MCInst TmpInst;
9130     // Shuffle the operands around so the lane index operand is in the
9131     // right place.
9132     unsigned Spacing;
9133     TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
9134     TmpInst.addOperand(Inst.getOperand(0)); // Vd
9135     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9136                                             Spacing));
9137     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9138                                             Spacing * 2));
9139     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9140                                             Spacing * 3));
9141     TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb
9142     TmpInst.addOperand(Inst.getOperand(2)); // Rn
9143     TmpInst.addOperand(Inst.getOperand(3)); // alignment
9144     TmpInst.addOperand(MCOperand::createReg(0)); // Rm
9145     TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
9146     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9147                                             Spacing));
9148     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9149                                             Spacing * 2));
9150     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9151                                             Spacing * 3));
9152     TmpInst.addOperand(Inst.getOperand(1)); // lane
9153     TmpInst.addOperand(Inst.getOperand(4)); // CondCode
9154     TmpInst.addOperand(Inst.getOperand(5));
9155     Inst = TmpInst;
9156     return true;
9157   }
9158 
9159   case ARM::VLD1LNdAsm_8:
9160   case ARM::VLD1LNdAsm_16:
9161   case ARM::VLD1LNdAsm_32: {
9162     MCInst TmpInst;
9163     // Shuffle the operands around so the lane index operand is in the
9164     // right place.
9165     unsigned Spacing;
9166     TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
9167     TmpInst.addOperand(Inst.getOperand(0)); // Vd
9168     TmpInst.addOperand(Inst.getOperand(2)); // Rn
9169     TmpInst.addOperand(Inst.getOperand(3)); // alignment
9170     TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
9171     TmpInst.addOperand(Inst.getOperand(1)); // lane
9172     TmpInst.addOperand(Inst.getOperand(4)); // CondCode
9173     TmpInst.addOperand(Inst.getOperand(5));
9174     Inst = TmpInst;
9175     return true;
9176   }
9177 
9178   case ARM::VLD2LNdAsm_8:
9179   case ARM::VLD2LNdAsm_16:
9180   case ARM::VLD2LNdAsm_32:
9181   case ARM::VLD2LNqAsm_16:
9182   case ARM::VLD2LNqAsm_32: {
9183     MCInst TmpInst;
9184     // Shuffle the operands around so the lane index operand is in the
9185     // right place.
9186     unsigned Spacing;
9187     TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
9188     TmpInst.addOperand(Inst.getOperand(0)); // Vd
9189     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9190                                             Spacing));
9191     TmpInst.addOperand(Inst.getOperand(2)); // Rn
9192     TmpInst.addOperand(Inst.getOperand(3)); // alignment
9193     TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
9194     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9195                                             Spacing));
9196     TmpInst.addOperand(Inst.getOperand(1)); // lane
9197     TmpInst.addOperand(Inst.getOperand(4)); // CondCode
9198     TmpInst.addOperand(Inst.getOperand(5));
9199     Inst = TmpInst;
9200     return true;
9201   }
9202 
9203   case ARM::VLD3LNdAsm_8:
9204   case ARM::VLD3LNdAsm_16:
9205   case ARM::VLD3LNdAsm_32:
9206   case ARM::VLD3LNqAsm_16:
9207   case ARM::VLD3LNqAsm_32: {
9208     MCInst TmpInst;
9209     // Shuffle the operands around so the lane index operand is in the
9210     // right place.
9211     unsigned Spacing;
9212     TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
9213     TmpInst.addOperand(Inst.getOperand(0)); // Vd
9214     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9215                                             Spacing));
9216     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9217                                             Spacing * 2));
9218     TmpInst.addOperand(Inst.getOperand(2)); // Rn
9219     TmpInst.addOperand(Inst.getOperand(3)); // alignment
9220     TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
9221     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9222                                             Spacing));
9223     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9224                                             Spacing * 2));
9225     TmpInst.addOperand(Inst.getOperand(1)); // lane
9226     TmpInst.addOperand(Inst.getOperand(4)); // CondCode
9227     TmpInst.addOperand(Inst.getOperand(5));
9228     Inst = TmpInst;
9229     return true;
9230   }
9231 
9232   case ARM::VLD4LNdAsm_8:
9233   case ARM::VLD4LNdAsm_16:
9234   case ARM::VLD4LNdAsm_32:
9235   case ARM::VLD4LNqAsm_16:
9236   case ARM::VLD4LNqAsm_32: {
9237     MCInst TmpInst;
9238     // Shuffle the operands around so the lane index operand is in the
9239     // right place.
9240     unsigned Spacing;
9241     TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
9242     TmpInst.addOperand(Inst.getOperand(0)); // Vd
9243     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9244                                             Spacing));
9245     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9246                                             Spacing * 2));
9247     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9248                                             Spacing * 3));
9249     TmpInst.addOperand(Inst.getOperand(2)); // Rn
9250     TmpInst.addOperand(Inst.getOperand(3)); // alignment
9251     TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd)
9252     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9253                                             Spacing));
9254     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9255                                             Spacing * 2));
9256     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9257                                             Spacing * 3));
9258     TmpInst.addOperand(Inst.getOperand(1)); // lane
9259     TmpInst.addOperand(Inst.getOperand(4)); // CondCode
9260     TmpInst.addOperand(Inst.getOperand(5));
9261     Inst = TmpInst;
9262     return true;
9263   }
9264 
9265   // VLD3DUP single 3-element structure to all lanes instructions.
9266   case ARM::VLD3DUPdAsm_8:
9267   case ARM::VLD3DUPdAsm_16:
9268   case ARM::VLD3DUPdAsm_32:
9269   case ARM::VLD3DUPqAsm_8:
9270   case ARM::VLD3DUPqAsm_16:
9271   case ARM::VLD3DUPqAsm_32: {
9272     MCInst TmpInst;
9273     unsigned Spacing;
9274     TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
9275     TmpInst.addOperand(Inst.getOperand(0)); // Vd
9276     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9277                                             Spacing));
9278     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9279                                             Spacing * 2));
9280     TmpInst.addOperand(Inst.getOperand(1)); // Rn
9281     TmpInst.addOperand(Inst.getOperand(2)); // alignment
9282     TmpInst.addOperand(Inst.getOperand(3)); // CondCode
9283     TmpInst.addOperand(Inst.getOperand(4));
9284     Inst = TmpInst;
9285     return true;
9286   }
9287 
9288   case ARM::VLD3DUPdWB_fixed_Asm_8:
9289   case ARM::VLD3DUPdWB_fixed_Asm_16:
9290   case ARM::VLD3DUPdWB_fixed_Asm_32:
9291   case ARM::VLD3DUPqWB_fixed_Asm_8:
9292   case ARM::VLD3DUPqWB_fixed_Asm_16:
9293   case ARM::VLD3DUPqWB_fixed_Asm_32: {
9294     MCInst TmpInst;
9295     unsigned Spacing;
9296     TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
9297     TmpInst.addOperand(Inst.getOperand(0)); // Vd
9298     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9299                                             Spacing));
9300     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9301                                             Spacing * 2));
9302     TmpInst.addOperand(Inst.getOperand(1)); // Rn
9303     TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
9304     TmpInst.addOperand(Inst.getOperand(2)); // alignment
9305     TmpInst.addOperand(MCOperand::createReg(0)); // Rm
9306     TmpInst.addOperand(Inst.getOperand(3)); // CondCode
9307     TmpInst.addOperand(Inst.getOperand(4));
9308     Inst = TmpInst;
9309     return true;
9310   }
9311 
9312   case ARM::VLD3DUPdWB_register_Asm_8:
9313   case ARM::VLD3DUPdWB_register_Asm_16:
9314   case ARM::VLD3DUPdWB_register_Asm_32:
9315   case ARM::VLD3DUPqWB_register_Asm_8:
9316   case ARM::VLD3DUPqWB_register_Asm_16:
9317   case ARM::VLD3DUPqWB_register_Asm_32: {
9318     MCInst TmpInst;
9319     unsigned Spacing;
9320     TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
9321     TmpInst.addOperand(Inst.getOperand(0)); // Vd
9322     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9323                                             Spacing));
9324     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9325                                             Spacing * 2));
9326     TmpInst.addOperand(Inst.getOperand(1)); // Rn
9327     TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
9328     TmpInst.addOperand(Inst.getOperand(2)); // alignment
9329     TmpInst.addOperand(Inst.getOperand(3)); // Rm
9330     TmpInst.addOperand(Inst.getOperand(4)); // CondCode
9331     TmpInst.addOperand(Inst.getOperand(5));
9332     Inst = TmpInst;
9333     return true;
9334   }
9335 
9336   // VLD3 multiple 3-element structure instructions.
9337   case ARM::VLD3dAsm_8:
9338   case ARM::VLD3dAsm_16:
9339   case ARM::VLD3dAsm_32:
9340   case ARM::VLD3qAsm_8:
9341   case ARM::VLD3qAsm_16:
9342   case ARM::VLD3qAsm_32: {
9343     MCInst TmpInst;
9344     unsigned Spacing;
9345     TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
9346     TmpInst.addOperand(Inst.getOperand(0)); // Vd
9347     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9348                                             Spacing));
9349     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9350                                             Spacing * 2));
9351     TmpInst.addOperand(Inst.getOperand(1)); // Rn
9352     TmpInst.addOperand(Inst.getOperand(2)); // alignment
9353     TmpInst.addOperand(Inst.getOperand(3)); // CondCode
9354     TmpInst.addOperand(Inst.getOperand(4));
9355     Inst = TmpInst;
9356     return true;
9357   }
9358 
9359   case ARM::VLD3dWB_fixed_Asm_8:
9360   case ARM::VLD3dWB_fixed_Asm_16:
9361   case ARM::VLD3dWB_fixed_Asm_32:
9362   case ARM::VLD3qWB_fixed_Asm_8:
9363   case ARM::VLD3qWB_fixed_Asm_16:
9364   case ARM::VLD3qWB_fixed_Asm_32: {
9365     MCInst TmpInst;
9366     unsigned Spacing;
9367     TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
9368     TmpInst.addOperand(Inst.getOperand(0)); // Vd
9369     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9370                                             Spacing));
9371     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9372                                             Spacing * 2));
9373     TmpInst.addOperand(Inst.getOperand(1)); // Rn
9374     TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
9375     TmpInst.addOperand(Inst.getOperand(2)); // alignment
9376     TmpInst.addOperand(MCOperand::createReg(0)); // Rm
9377     TmpInst.addOperand(Inst.getOperand(3)); // CondCode
9378     TmpInst.addOperand(Inst.getOperand(4));
9379     Inst = TmpInst;
9380     return true;
9381   }
9382 
9383   case ARM::VLD3dWB_register_Asm_8:
9384   case ARM::VLD3dWB_register_Asm_16:
9385   case ARM::VLD3dWB_register_Asm_32:
9386   case ARM::VLD3qWB_register_Asm_8:
9387   case ARM::VLD3qWB_register_Asm_16:
9388   case ARM::VLD3qWB_register_Asm_32: {
9389     MCInst TmpInst;
9390     unsigned Spacing;
9391     TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
9392     TmpInst.addOperand(Inst.getOperand(0)); // Vd
9393     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9394                                             Spacing));
9395     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9396                                             Spacing * 2));
9397     TmpInst.addOperand(Inst.getOperand(1)); // Rn
9398     TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
9399     TmpInst.addOperand(Inst.getOperand(2)); // alignment
9400     TmpInst.addOperand(Inst.getOperand(3)); // Rm
9401     TmpInst.addOperand(Inst.getOperand(4)); // CondCode
9402     TmpInst.addOperand(Inst.getOperand(5));
9403     Inst = TmpInst;
9404     return true;
9405   }
9406 
9407   // VLD4DUP single 3-element structure to all lanes instructions.
9408   case ARM::VLD4DUPdAsm_8:
9409   case ARM::VLD4DUPdAsm_16:
9410   case ARM::VLD4DUPdAsm_32:
9411   case ARM::VLD4DUPqAsm_8:
9412   case ARM::VLD4DUPqAsm_16:
9413   case ARM::VLD4DUPqAsm_32: {
9414     MCInst TmpInst;
9415     unsigned Spacing;
9416     TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
9417     TmpInst.addOperand(Inst.getOperand(0)); // Vd
9418     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9419                                             Spacing));
9420     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9421                                             Spacing * 2));
9422     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9423                                             Spacing * 3));
9424     TmpInst.addOperand(Inst.getOperand(1)); // Rn
9425     TmpInst.addOperand(Inst.getOperand(2)); // alignment
9426     TmpInst.addOperand(Inst.getOperand(3)); // CondCode
9427     TmpInst.addOperand(Inst.getOperand(4));
9428     Inst = TmpInst;
9429     return true;
9430   }
9431 
9432   case ARM::VLD4DUPdWB_fixed_Asm_8:
9433   case ARM::VLD4DUPdWB_fixed_Asm_16:
9434   case ARM::VLD4DUPdWB_fixed_Asm_32:
9435   case ARM::VLD4DUPqWB_fixed_Asm_8:
9436   case ARM::VLD4DUPqWB_fixed_Asm_16:
9437   case ARM::VLD4DUPqWB_fixed_Asm_32: {
9438     MCInst TmpInst;
9439     unsigned Spacing;
9440     TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
9441     TmpInst.addOperand(Inst.getOperand(0)); // Vd
9442     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9443                                             Spacing));
9444     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9445                                             Spacing * 2));
9446     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9447                                             Spacing * 3));
9448     TmpInst.addOperand(Inst.getOperand(1)); // Rn
9449     TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
9450     TmpInst.addOperand(Inst.getOperand(2)); // alignment
9451     TmpInst.addOperand(MCOperand::createReg(0)); // Rm
9452     TmpInst.addOperand(Inst.getOperand(3)); // CondCode
9453     TmpInst.addOperand(Inst.getOperand(4));
9454     Inst = TmpInst;
9455     return true;
9456   }
9457 
9458   case ARM::VLD4DUPdWB_register_Asm_8:
9459   case ARM::VLD4DUPdWB_register_Asm_16:
9460   case ARM::VLD4DUPdWB_register_Asm_32:
9461   case ARM::VLD4DUPqWB_register_Asm_8:
9462   case ARM::VLD4DUPqWB_register_Asm_16:
9463   case ARM::VLD4DUPqWB_register_Asm_32: {
9464     MCInst TmpInst;
9465     unsigned Spacing;
9466     TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
9467     TmpInst.addOperand(Inst.getOperand(0)); // Vd
9468     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9469                                             Spacing));
9470     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9471                                             Spacing * 2));
9472     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9473                                             Spacing * 3));
9474     TmpInst.addOperand(Inst.getOperand(1)); // Rn
9475     TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
9476     TmpInst.addOperand(Inst.getOperand(2)); // alignment
9477     TmpInst.addOperand(Inst.getOperand(3)); // Rm
9478     TmpInst.addOperand(Inst.getOperand(4)); // CondCode
9479     TmpInst.addOperand(Inst.getOperand(5));
9480     Inst = TmpInst;
9481     return true;
9482   }
9483 
9484   // VLD4 multiple 4-element structure instructions.
9485   case ARM::VLD4dAsm_8:
9486   case ARM::VLD4dAsm_16:
9487   case ARM::VLD4dAsm_32:
9488   case ARM::VLD4qAsm_8:
9489   case ARM::VLD4qAsm_16:
9490   case ARM::VLD4qAsm_32: {
9491     MCInst TmpInst;
9492     unsigned Spacing;
9493     TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
9494     TmpInst.addOperand(Inst.getOperand(0)); // Vd
9495     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9496                                             Spacing));
9497     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9498                                             Spacing * 2));
9499     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9500                                             Spacing * 3));
9501     TmpInst.addOperand(Inst.getOperand(1)); // Rn
9502     TmpInst.addOperand(Inst.getOperand(2)); // alignment
9503     TmpInst.addOperand(Inst.getOperand(3)); // CondCode
9504     TmpInst.addOperand(Inst.getOperand(4));
9505     Inst = TmpInst;
9506     return true;
9507   }
9508 
9509   case ARM::VLD4dWB_fixed_Asm_8:
9510   case ARM::VLD4dWB_fixed_Asm_16:
9511   case ARM::VLD4dWB_fixed_Asm_32:
9512   case ARM::VLD4qWB_fixed_Asm_8:
9513   case ARM::VLD4qWB_fixed_Asm_16:
9514   case ARM::VLD4qWB_fixed_Asm_32: {
9515     MCInst TmpInst;
9516     unsigned Spacing;
9517     TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
9518     TmpInst.addOperand(Inst.getOperand(0)); // Vd
9519     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9520                                             Spacing));
9521     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9522                                             Spacing * 2));
9523     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9524                                             Spacing * 3));
9525     TmpInst.addOperand(Inst.getOperand(1)); // Rn
9526     TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
9527     TmpInst.addOperand(Inst.getOperand(2)); // alignment
9528     TmpInst.addOperand(MCOperand::createReg(0)); // Rm
9529     TmpInst.addOperand(Inst.getOperand(3)); // CondCode
9530     TmpInst.addOperand(Inst.getOperand(4));
9531     Inst = TmpInst;
9532     return true;
9533   }
9534 
9535   case ARM::VLD4dWB_register_Asm_8:
9536   case ARM::VLD4dWB_register_Asm_16:
9537   case ARM::VLD4dWB_register_Asm_32:
9538   case ARM::VLD4qWB_register_Asm_8:
9539   case ARM::VLD4qWB_register_Asm_16:
9540   case ARM::VLD4qWB_register_Asm_32: {
9541     MCInst TmpInst;
9542     unsigned Spacing;
9543     TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing));
9544     TmpInst.addOperand(Inst.getOperand(0)); // Vd
9545     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9546                                             Spacing));
9547     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9548                                             Spacing * 2));
9549     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9550                                             Spacing * 3));
9551     TmpInst.addOperand(Inst.getOperand(1)); // Rn
9552     TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
9553     TmpInst.addOperand(Inst.getOperand(2)); // alignment
9554     TmpInst.addOperand(Inst.getOperand(3)); // Rm
9555     TmpInst.addOperand(Inst.getOperand(4)); // CondCode
9556     TmpInst.addOperand(Inst.getOperand(5));
9557     Inst = TmpInst;
9558     return true;
9559   }
9560 
9561   // VST3 multiple 3-element structure instructions.
9562   case ARM::VST3dAsm_8:
9563   case ARM::VST3dAsm_16:
9564   case ARM::VST3dAsm_32:
9565   case ARM::VST3qAsm_8:
9566   case ARM::VST3qAsm_16:
9567   case ARM::VST3qAsm_32: {
9568     MCInst TmpInst;
9569     unsigned Spacing;
9570     TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
9571     TmpInst.addOperand(Inst.getOperand(1)); // Rn
9572     TmpInst.addOperand(Inst.getOperand(2)); // alignment
9573     TmpInst.addOperand(Inst.getOperand(0)); // Vd
9574     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9575                                             Spacing));
9576     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9577                                             Spacing * 2));
9578     TmpInst.addOperand(Inst.getOperand(3)); // CondCode
9579     TmpInst.addOperand(Inst.getOperand(4));
9580     Inst = TmpInst;
9581     return true;
9582   }
9583 
9584   case ARM::VST3dWB_fixed_Asm_8:
9585   case ARM::VST3dWB_fixed_Asm_16:
9586   case ARM::VST3dWB_fixed_Asm_32:
9587   case ARM::VST3qWB_fixed_Asm_8:
9588   case ARM::VST3qWB_fixed_Asm_16:
9589   case ARM::VST3qWB_fixed_Asm_32: {
9590     MCInst TmpInst;
9591     unsigned Spacing;
9592     TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
9593     TmpInst.addOperand(Inst.getOperand(1)); // Rn
9594     TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
9595     TmpInst.addOperand(Inst.getOperand(2)); // alignment
9596     TmpInst.addOperand(MCOperand::createReg(0)); // Rm
9597     TmpInst.addOperand(Inst.getOperand(0)); // Vd
9598     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9599                                             Spacing));
9600     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9601                                             Spacing * 2));
9602     TmpInst.addOperand(Inst.getOperand(3)); // CondCode
9603     TmpInst.addOperand(Inst.getOperand(4));
9604     Inst = TmpInst;
9605     return true;
9606   }
9607 
9608   case ARM::VST3dWB_register_Asm_8:
9609   case ARM::VST3dWB_register_Asm_16:
9610   case ARM::VST3dWB_register_Asm_32:
9611   case ARM::VST3qWB_register_Asm_8:
9612   case ARM::VST3qWB_register_Asm_16:
9613   case ARM::VST3qWB_register_Asm_32: {
9614     MCInst TmpInst;
9615     unsigned Spacing;
9616     TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
9617     TmpInst.addOperand(Inst.getOperand(1)); // Rn
9618     TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
9619     TmpInst.addOperand(Inst.getOperand(2)); // alignment
9620     TmpInst.addOperand(Inst.getOperand(3)); // Rm
9621     TmpInst.addOperand(Inst.getOperand(0)); // Vd
9622     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9623                                             Spacing));
9624     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9625                                             Spacing * 2));
9626     TmpInst.addOperand(Inst.getOperand(4)); // CondCode
9627     TmpInst.addOperand(Inst.getOperand(5));
9628     Inst = TmpInst;
9629     return true;
9630   }
9631 
9632   // VST4 multiple 3-element structure instructions.
9633   case ARM::VST4dAsm_8:
9634   case ARM::VST4dAsm_16:
9635   case ARM::VST4dAsm_32:
9636   case ARM::VST4qAsm_8:
9637   case ARM::VST4qAsm_16:
9638   case ARM::VST4qAsm_32: {
9639     MCInst TmpInst;
9640     unsigned Spacing;
9641     TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
9642     TmpInst.addOperand(Inst.getOperand(1)); // Rn
9643     TmpInst.addOperand(Inst.getOperand(2)); // alignment
9644     TmpInst.addOperand(Inst.getOperand(0)); // Vd
9645     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9646                                             Spacing));
9647     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9648                                             Spacing * 2));
9649     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9650                                             Spacing * 3));
9651     TmpInst.addOperand(Inst.getOperand(3)); // CondCode
9652     TmpInst.addOperand(Inst.getOperand(4));
9653     Inst = TmpInst;
9654     return true;
9655   }
9656 
9657   case ARM::VST4dWB_fixed_Asm_8:
9658   case ARM::VST4dWB_fixed_Asm_16:
9659   case ARM::VST4dWB_fixed_Asm_32:
9660   case ARM::VST4qWB_fixed_Asm_8:
9661   case ARM::VST4qWB_fixed_Asm_16:
9662   case ARM::VST4qWB_fixed_Asm_32: {
9663     MCInst TmpInst;
9664     unsigned Spacing;
9665     TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
9666     TmpInst.addOperand(Inst.getOperand(1)); // Rn
9667     TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
9668     TmpInst.addOperand(Inst.getOperand(2)); // alignment
9669     TmpInst.addOperand(MCOperand::createReg(0)); // Rm
9670     TmpInst.addOperand(Inst.getOperand(0)); // Vd
9671     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9672                                             Spacing));
9673     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9674                                             Spacing * 2));
9675     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9676                                             Spacing * 3));
9677     TmpInst.addOperand(Inst.getOperand(3)); // CondCode
9678     TmpInst.addOperand(Inst.getOperand(4));
9679     Inst = TmpInst;
9680     return true;
9681   }
9682 
9683   case ARM::VST4dWB_register_Asm_8:
9684   case ARM::VST4dWB_register_Asm_16:
9685   case ARM::VST4dWB_register_Asm_32:
9686   case ARM::VST4qWB_register_Asm_8:
9687   case ARM::VST4qWB_register_Asm_16:
9688   case ARM::VST4qWB_register_Asm_32: {
9689     MCInst TmpInst;
9690     unsigned Spacing;
9691     TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing));
9692     TmpInst.addOperand(Inst.getOperand(1)); // Rn
9693     TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn
9694     TmpInst.addOperand(Inst.getOperand(2)); // alignment
9695     TmpInst.addOperand(Inst.getOperand(3)); // Rm
9696     TmpInst.addOperand(Inst.getOperand(0)); // Vd
9697     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9698                                             Spacing));
9699     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9700                                             Spacing * 2));
9701     TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() +
9702                                             Spacing * 3));
9703     TmpInst.addOperand(Inst.getOperand(4)); // CondCode
9704     TmpInst.addOperand(Inst.getOperand(5));
9705     Inst = TmpInst;
9706     return true;
9707   }
9708 
9709   // Handle encoding choice for the shift-immediate instructions.
9710   case ARM::t2LSLri:
9711   case ARM::t2LSRri:
9712   case ARM::t2ASRri:
9713     if (isARMLowRegister(Inst.getOperand(0).getReg()) &&
9714         isARMLowRegister(Inst.getOperand(1).getReg()) &&
9715         Inst.getOperand(5).getReg() == (inITBlock() ? 0 : ARM::CPSR) &&
9716         !HasWideQualifier) {
9717       unsigned NewOpc;
9718       switch (Inst.getOpcode()) {
9719       default: llvm_unreachable("unexpected opcode");
9720       case ARM::t2LSLri: NewOpc = ARM::tLSLri; break;
9721       case ARM::t2LSRri: NewOpc = ARM::tLSRri; break;
9722       case ARM::t2ASRri: NewOpc = ARM::tASRri; break;
9723       }
9724       // The Thumb1 operands aren't in the same order. Awesome, eh?
9725       MCInst TmpInst;
9726       TmpInst.setOpcode(NewOpc);
9727       TmpInst.addOperand(Inst.getOperand(0));
9728       TmpInst.addOperand(Inst.getOperand(5));
9729       TmpInst.addOperand(Inst.getOperand(1));
9730       TmpInst.addOperand(Inst.getOperand(2));
9731       TmpInst.addOperand(Inst.getOperand(3));
9732       TmpInst.addOperand(Inst.getOperand(4));
9733       Inst = TmpInst;
9734       return true;
9735     }
9736     return false;
9737 
9738   // Handle the Thumb2 mode MOV complex aliases.
9739   case ARM::t2MOVsr:
9740   case ARM::t2MOVSsr: {
9741     // Which instruction to expand to depends on the CCOut operand and
9742     // whether we're in an IT block if the register operands are low
9743     // registers.
9744     bool isNarrow = false;
9745     if (isARMLowRegister(Inst.getOperand(0).getReg()) &&
9746         isARMLowRegister(Inst.getOperand(1).getReg()) &&
9747         isARMLowRegister(Inst.getOperand(2).getReg()) &&
9748         Inst.getOperand(0).getReg() == Inst.getOperand(1).getReg() &&
9749         inITBlock() == (Inst.getOpcode() == ARM::t2MOVsr) &&
9750         !HasWideQualifier)
9751       isNarrow = true;
9752     MCInst TmpInst;
9753     unsigned newOpc;
9754     switch(ARM_AM::getSORegShOp(Inst.getOperand(3).getImm())) {
9755     default: llvm_unreachable("unexpected opcode!");
9756     case ARM_AM::asr: newOpc = isNarrow ? ARM::tASRrr : ARM::t2ASRrr; break;
9757     case ARM_AM::lsr: newOpc = isNarrow ? ARM::tLSRrr : ARM::t2LSRrr; break;
9758     case ARM_AM::lsl: newOpc = isNarrow ? ARM::tLSLrr : ARM::t2LSLrr; break;
9759     case ARM_AM::ror: newOpc = isNarrow ? ARM::tROR   : ARM::t2RORrr; break;
9760     }
9761     TmpInst.setOpcode(newOpc);
9762     TmpInst.addOperand(Inst.getOperand(0)); // Rd
9763     if (isNarrow)
9764       TmpInst.addOperand(MCOperand::createReg(
9765           Inst.getOpcode() == ARM::t2MOVSsr ? ARM::CPSR : 0));
9766     TmpInst.addOperand(Inst.getOperand(1)); // Rn
9767     TmpInst.addOperand(Inst.getOperand(2)); // Rm
9768     TmpInst.addOperand(Inst.getOperand(4)); // CondCode
9769     TmpInst.addOperand(Inst.getOperand(5));
9770     if (!isNarrow)
9771       TmpInst.addOperand(MCOperand::createReg(
9772           Inst.getOpcode() == ARM::t2MOVSsr ? ARM::CPSR : 0));
9773     Inst = TmpInst;
9774     return true;
9775   }
9776   case ARM::t2MOVsi:
9777   case ARM::t2MOVSsi: {
9778     // Which instruction to expand to depends on the CCOut operand and
9779     // whether we're in an IT block if the register operands are low
9780     // registers.
9781     bool isNarrow = false;
9782     if (isARMLowRegister(Inst.getOperand(0).getReg()) &&
9783         isARMLowRegister(Inst.getOperand(1).getReg()) &&
9784         inITBlock() == (Inst.getOpcode() == ARM::t2MOVsi) &&
9785         !HasWideQualifier)
9786       isNarrow = true;
9787     MCInst TmpInst;
9788     unsigned newOpc;
9789     unsigned Shift = ARM_AM::getSORegShOp(Inst.getOperand(2).getImm());
9790     unsigned Amount = ARM_AM::getSORegOffset(Inst.getOperand(2).getImm());
9791     bool isMov = false;
9792     // MOV rd, rm, LSL #0 is actually a MOV instruction
9793     if (Shift == ARM_AM::lsl && Amount == 0) {
9794       isMov = true;
9795       // The 16-bit encoding of MOV rd, rm, LSL #N is explicitly encoding T2 of
9796       // MOV (register) in the ARMv8-A and ARMv8-M manuals, and immediate 0 is
9797       // unpredictable in an IT block so the 32-bit encoding T3 has to be used
9798       // instead.
9799       if (inITBlock()) {
9800         isNarrow = false;
9801       }
9802       newOpc = isNarrow ? ARM::tMOVSr : ARM::t2MOVr;
9803     } else {
9804       switch(Shift) {
9805       default: llvm_unreachable("unexpected opcode!");
9806       case ARM_AM::asr: newOpc = isNarrow ? ARM::tASRri : ARM::t2ASRri; break;
9807       case ARM_AM::lsr: newOpc = isNarrow ? ARM::tLSRri : ARM::t2LSRri; break;
9808       case ARM_AM::lsl: newOpc = isNarrow ? ARM::tLSLri : ARM::t2LSLri; break;
9809       case ARM_AM::ror: newOpc = ARM::t2RORri; isNarrow = false; break;
9810       case ARM_AM::rrx: isNarrow = false; newOpc = ARM::t2RRX; break;
9811       }
9812     }
9813     if (Amount == 32) Amount = 0;
9814     TmpInst.setOpcode(newOpc);
9815     TmpInst.addOperand(Inst.getOperand(0)); // Rd
9816     if (isNarrow && !isMov)
9817       TmpInst.addOperand(MCOperand::createReg(
9818           Inst.getOpcode() == ARM::t2MOVSsi ? ARM::CPSR : 0));
9819     TmpInst.addOperand(Inst.getOperand(1)); // Rn
9820     if (newOpc != ARM::t2RRX && !isMov)
9821       TmpInst.addOperand(MCOperand::createImm(Amount));
9822     TmpInst.addOperand(Inst.getOperand(3)); // CondCode
9823     TmpInst.addOperand(Inst.getOperand(4));
9824     if (!isNarrow)
9825       TmpInst.addOperand(MCOperand::createReg(
9826           Inst.getOpcode() == ARM::t2MOVSsi ? ARM::CPSR : 0));
9827     Inst = TmpInst;
9828     return true;
9829   }
9830   // Handle the ARM mode MOV complex aliases.
9831   case ARM::ASRr:
9832   case ARM::LSRr:
9833   case ARM::LSLr:
9834   case ARM::RORr: {
9835     ARM_AM::ShiftOpc ShiftTy;
9836     switch(Inst.getOpcode()) {
9837     default: llvm_unreachable("unexpected opcode!");
9838     case ARM::ASRr: ShiftTy = ARM_AM::asr; break;
9839     case ARM::LSRr: ShiftTy = ARM_AM::lsr; break;
9840     case ARM::LSLr: ShiftTy = ARM_AM::lsl; break;
9841     case ARM::RORr: ShiftTy = ARM_AM::ror; break;
9842     }
9843     unsigned Shifter = ARM_AM::getSORegOpc(ShiftTy, 0);
9844     MCInst TmpInst;
9845     TmpInst.setOpcode(ARM::MOVsr);
9846     TmpInst.addOperand(Inst.getOperand(0)); // Rd
9847     TmpInst.addOperand(Inst.getOperand(1)); // Rn
9848     TmpInst.addOperand(Inst.getOperand(2)); // Rm
9849     TmpInst.addOperand(MCOperand::createImm(Shifter)); // Shift value and ty
9850     TmpInst.addOperand(Inst.getOperand(3)); // CondCode
9851     TmpInst.addOperand(Inst.getOperand(4));
9852     TmpInst.addOperand(Inst.getOperand(5)); // cc_out
9853     Inst = TmpInst;
9854     return true;
9855   }
9856   case ARM::ASRi:
9857   case ARM::LSRi:
9858   case ARM::LSLi:
9859   case ARM::RORi: {
9860     ARM_AM::ShiftOpc ShiftTy;
9861     switch(Inst.getOpcode()) {
9862     default: llvm_unreachable("unexpected opcode!");
9863     case ARM::ASRi: ShiftTy = ARM_AM::asr; break;
9864     case ARM::LSRi: ShiftTy = ARM_AM::lsr; break;
9865     case ARM::LSLi: ShiftTy = ARM_AM::lsl; break;
9866     case ARM::RORi: ShiftTy = ARM_AM::ror; break;
9867     }
9868     // A shift by zero is a plain MOVr, not a MOVsi.
9869     unsigned Amt = Inst.getOperand(2).getImm();
9870     unsigned Opc = Amt == 0 ? ARM::MOVr : ARM::MOVsi;
9871     // A shift by 32 should be encoded as 0 when permitted
9872     if (Amt == 32 && (ShiftTy == ARM_AM::lsr || ShiftTy == ARM_AM::asr))
9873       Amt = 0;
9874     unsigned Shifter = ARM_AM::getSORegOpc(ShiftTy, Amt);
9875     MCInst TmpInst;
9876     TmpInst.setOpcode(Opc);
9877     TmpInst.addOperand(Inst.getOperand(0)); // Rd
9878     TmpInst.addOperand(Inst.getOperand(1)); // Rn
9879     if (Opc == ARM::MOVsi)
9880       TmpInst.addOperand(MCOperand::createImm(Shifter)); // Shift value and ty
9881     TmpInst.addOperand(Inst.getOperand(3)); // CondCode
9882     TmpInst.addOperand(Inst.getOperand(4));
9883     TmpInst.addOperand(Inst.getOperand(5)); // cc_out
9884     Inst = TmpInst;
9885     return true;
9886   }
9887   case ARM::RRXi: {
9888     unsigned Shifter = ARM_AM::getSORegOpc(ARM_AM::rrx, 0);
9889     MCInst TmpInst;
9890     TmpInst.setOpcode(ARM::MOVsi);
9891     TmpInst.addOperand(Inst.getOperand(0)); // Rd
9892     TmpInst.addOperand(Inst.getOperand(1)); // Rn
9893     TmpInst.addOperand(MCOperand::createImm(Shifter)); // Shift value and ty
9894     TmpInst.addOperand(Inst.getOperand(2)); // CondCode
9895     TmpInst.addOperand(Inst.getOperand(3));
9896     TmpInst.addOperand(Inst.getOperand(4)); // cc_out
9897     Inst = TmpInst;
9898     return true;
9899   }
9900   case ARM::t2LDMIA_UPD: {
9901     // If this is a load of a single register, then we should use
9902     // a post-indexed LDR instruction instead, per the ARM ARM.
9903     if (Inst.getNumOperands() != 5)
9904       return false;
9905     MCInst TmpInst;
9906     TmpInst.setOpcode(ARM::t2LDR_POST);
9907     TmpInst.addOperand(Inst.getOperand(4)); // Rt
9908     TmpInst.addOperand(Inst.getOperand(0)); // Rn_wb
9909     TmpInst.addOperand(Inst.getOperand(1)); // Rn
9910     TmpInst.addOperand(MCOperand::createImm(4));
9911     TmpInst.addOperand(Inst.getOperand(2)); // CondCode
9912     TmpInst.addOperand(Inst.getOperand(3));
9913     Inst = TmpInst;
9914     return true;
9915   }
9916   case ARM::t2STMDB_UPD: {
9917     // If this is a store of a single register, then we should use
9918     // a pre-indexed STR instruction instead, per the ARM ARM.
9919     if (Inst.getNumOperands() != 5)
9920       return false;
9921     MCInst TmpInst;
9922     TmpInst.setOpcode(ARM::t2STR_PRE);
9923     TmpInst.addOperand(Inst.getOperand(0)); // Rn_wb
9924     TmpInst.addOperand(Inst.getOperand(4)); // Rt
9925     TmpInst.addOperand(Inst.getOperand(1)); // Rn
9926     TmpInst.addOperand(MCOperand::createImm(-4));
9927     TmpInst.addOperand(Inst.getOperand(2)); // CondCode
9928     TmpInst.addOperand(Inst.getOperand(3));
9929     Inst = TmpInst;
9930     return true;
9931   }
9932   case ARM::LDMIA_UPD:
9933     // If this is a load of a single register via a 'pop', then we should use
9934     // a post-indexed LDR instruction instead, per the ARM ARM.
9935     if (static_cast<ARMOperand &>(*Operands[0]).getToken() == "pop" &&
9936         Inst.getNumOperands() == 5) {
9937       MCInst TmpInst;
9938       TmpInst.setOpcode(ARM::LDR_POST_IMM);
9939       TmpInst.addOperand(Inst.getOperand(4)); // Rt
9940       TmpInst.addOperand(Inst.getOperand(0)); // Rn_wb
9941       TmpInst.addOperand(Inst.getOperand(1)); // Rn
9942       TmpInst.addOperand(MCOperand::createReg(0));  // am2offset
9943       TmpInst.addOperand(MCOperand::createImm(4));
9944       TmpInst.addOperand(Inst.getOperand(2)); // CondCode
9945       TmpInst.addOperand(Inst.getOperand(3));
9946       Inst = TmpInst;
9947       return true;
9948     }
9949     break;
9950   case ARM::STMDB_UPD:
9951     // If this is a store of a single register via a 'push', then we should use
9952     // a pre-indexed STR instruction instead, per the ARM ARM.
9953     if (static_cast<ARMOperand &>(*Operands[0]).getToken() == "push" &&
9954         Inst.getNumOperands() == 5) {
9955       MCInst TmpInst;
9956       TmpInst.setOpcode(ARM::STR_PRE_IMM);
9957       TmpInst.addOperand(Inst.getOperand(0)); // Rn_wb
9958       TmpInst.addOperand(Inst.getOperand(4)); // Rt
9959       TmpInst.addOperand(Inst.getOperand(1)); // addrmode_imm12
9960       TmpInst.addOperand(MCOperand::createImm(-4));
9961       TmpInst.addOperand(Inst.getOperand(2)); // CondCode
9962       TmpInst.addOperand(Inst.getOperand(3));
9963       Inst = TmpInst;
9964     }
9965     break;
9966   case ARM::t2ADDri12:
9967   case ARM::t2SUBri12:
9968   case ARM::t2ADDspImm12:
9969   case ARM::t2SUBspImm12: {
9970     // If the immediate fits for encoding T3 and the generic
9971     // mnemonic was used, encoding T3 is preferred.
9972     const StringRef Token = static_cast<ARMOperand &>(*Operands[0]).getToken();
9973     if ((Token != "add" && Token != "sub") ||
9974         ARM_AM::getT2SOImmVal(Inst.getOperand(2).getImm()) == -1)
9975       break;
9976     switch (Inst.getOpcode()) {
9977     case ARM::t2ADDri12:
9978       Inst.setOpcode(ARM::t2ADDri);
9979       break;
9980     case ARM::t2SUBri12:
9981       Inst.setOpcode(ARM::t2SUBri);
9982       break;
9983     case ARM::t2ADDspImm12:
9984       Inst.setOpcode(ARM::t2ADDspImm);
9985       break;
9986     case ARM::t2SUBspImm12:
9987       Inst.setOpcode(ARM::t2SUBspImm);
9988       break;
9989     }
9990 
9991     Inst.addOperand(MCOperand::createReg(0)); // cc_out
9992     return true;
9993   }
9994   case ARM::tADDi8:
9995     // If the immediate is in the range 0-7, we want tADDi3 iff Rd was
9996     // explicitly specified. From the ARM ARM: "Encoding T1 is preferred
9997     // to encoding T2 if <Rd> is specified and encoding T2 is preferred
9998     // to encoding T1 if <Rd> is omitted."
9999     if ((unsigned)Inst.getOperand(3).getImm() < 8 && Operands.size() == 6) {
10000       Inst.setOpcode(ARM::tADDi3);
10001       return true;
10002     }
10003     break;
10004   case ARM::tSUBi8:
10005     // If the immediate is in the range 0-7, we want tADDi3 iff Rd was
10006     // explicitly specified. From the ARM ARM: "Encoding T1 is preferred
10007     // to encoding T2 if <Rd> is specified and encoding T2 is preferred
10008     // to encoding T1 if <Rd> is omitted."
10009     if ((unsigned)Inst.getOperand(3).getImm() < 8 && Operands.size() == 6) {
10010       Inst.setOpcode(ARM::tSUBi3);
10011       return true;
10012     }
10013     break;
10014   case ARM::t2ADDri:
10015   case ARM::t2SUBri: {
10016     // If the destination and first source operand are the same, and
10017     // the flags are compatible with the current IT status, use encoding T2
10018     // instead of T3. For compatibility with the system 'as'. Make sure the
10019     // wide encoding wasn't explicit.
10020     if (Inst.getOperand(0).getReg() != Inst.getOperand(1).getReg() ||
10021         !isARMLowRegister(Inst.getOperand(0).getReg()) ||
10022         (Inst.getOperand(2).isImm() &&
10023          (unsigned)Inst.getOperand(2).getImm() > 255) ||
10024         Inst.getOperand(5).getReg() != (inITBlock() ? 0 : ARM::CPSR) ||
10025         HasWideQualifier)
10026       break;
10027     MCInst TmpInst;
10028     TmpInst.setOpcode(Inst.getOpcode() == ARM::t2ADDri ?
10029                       ARM::tADDi8 : ARM::tSUBi8);
10030     TmpInst.addOperand(Inst.getOperand(0));
10031     TmpInst.addOperand(Inst.getOperand(5));
10032     TmpInst.addOperand(Inst.getOperand(0));
10033     TmpInst.addOperand(Inst.getOperand(2));
10034     TmpInst.addOperand(Inst.getOperand(3));
10035     TmpInst.addOperand(Inst.getOperand(4));
10036     Inst = TmpInst;
10037     return true;
10038   }
10039   case ARM::t2ADDspImm:
10040   case ARM::t2SUBspImm: {
10041     // Prefer T1 encoding if possible
10042     if (Inst.getOperand(5).getReg() != 0 || HasWideQualifier)
10043       break;
10044     unsigned V = Inst.getOperand(2).getImm();
10045     if (V & 3 || V > ((1 << 7) - 1) << 2)
10046       break;
10047     MCInst TmpInst;
10048     TmpInst.setOpcode(Inst.getOpcode() == ARM::t2ADDspImm ? ARM::tADDspi
10049                                                           : ARM::tSUBspi);
10050     TmpInst.addOperand(MCOperand::createReg(ARM::SP)); // destination reg
10051     TmpInst.addOperand(MCOperand::createReg(ARM::SP)); // source reg
10052     TmpInst.addOperand(MCOperand::createImm(V / 4));   // immediate
10053     TmpInst.addOperand(Inst.getOperand(3));            // pred
10054     TmpInst.addOperand(Inst.getOperand(4));
10055     Inst = TmpInst;
10056     return true;
10057   }
10058   case ARM::t2ADDrr: {
10059     // If the destination and first source operand are the same, and
10060     // there's no setting of the flags, use encoding T2 instead of T3.
10061     // Note that this is only for ADD, not SUB. This mirrors the system
10062     // 'as' behaviour.  Also take advantage of ADD being commutative.
10063     // Make sure the wide encoding wasn't explicit.
10064     bool Swap = false;
10065     auto DestReg = Inst.getOperand(0).getReg();
10066     bool Transform = DestReg == Inst.getOperand(1).getReg();
10067     if (!Transform && DestReg == Inst.getOperand(2).getReg()) {
10068       Transform = true;
10069       Swap = true;
10070     }
10071     if (!Transform ||
10072         Inst.getOperand(5).getReg() != 0 ||
10073         HasWideQualifier)
10074       break;
10075     MCInst TmpInst;
10076     TmpInst.setOpcode(ARM::tADDhirr);
10077     TmpInst.addOperand(Inst.getOperand(0));
10078     TmpInst.addOperand(Inst.getOperand(0));
10079     TmpInst.addOperand(Inst.getOperand(Swap ? 1 : 2));
10080     TmpInst.addOperand(Inst.getOperand(3));
10081     TmpInst.addOperand(Inst.getOperand(4));
10082     Inst = TmpInst;
10083     return true;
10084   }
10085   case ARM::tADDrSP:
10086     // If the non-SP source operand and the destination operand are not the
10087     // same, we need to use the 32-bit encoding if it's available.
10088     if (Inst.getOperand(0).getReg() != Inst.getOperand(2).getReg()) {
10089       Inst.setOpcode(ARM::t2ADDrr);
10090       Inst.addOperand(MCOperand::createReg(0)); // cc_out
10091       return true;
10092     }
10093     break;
10094   case ARM::tB:
10095     // A Thumb conditional branch outside of an IT block is a tBcc.
10096     if (Inst.getOperand(1).getImm() != ARMCC::AL && !inITBlock()) {
10097       Inst.setOpcode(ARM::tBcc);
10098       return true;
10099     }
10100     break;
10101   case ARM::t2B:
10102     // A Thumb2 conditional branch outside of an IT block is a t2Bcc.
10103     if (Inst.getOperand(1).getImm() != ARMCC::AL && !inITBlock()){
10104       Inst.setOpcode(ARM::t2Bcc);
10105       return true;
10106     }
10107     break;
10108   case ARM::t2Bcc:
10109     // If the conditional is AL or we're in an IT block, we really want t2B.
10110     if (Inst.getOperand(1).getImm() == ARMCC::AL || inITBlock()) {
10111       Inst.setOpcode(ARM::t2B);
10112       return true;
10113     }
10114     break;
10115   case ARM::tBcc:
10116     // If the conditional is AL, we really want tB.
10117     if (Inst.getOperand(1).getImm() == ARMCC::AL) {
10118       Inst.setOpcode(ARM::tB);
10119       return true;
10120     }
10121     break;
10122   case ARM::tLDMIA: {
10123     // If the register list contains any high registers, or if the writeback
10124     // doesn't match what tLDMIA can do, we need to use the 32-bit encoding
10125     // instead if we're in Thumb2. Otherwise, this should have generated
10126     // an error in validateInstruction().
10127     unsigned Rn = Inst.getOperand(0).getReg();
10128     bool hasWritebackToken =
10129         (static_cast<ARMOperand &>(*Operands[3]).isToken() &&
10130          static_cast<ARMOperand &>(*Operands[3]).getToken() == "!");
10131     bool listContainsBase;
10132     if (checkLowRegisterList(Inst, 3, Rn, 0, listContainsBase) ||
10133         (!listContainsBase && !hasWritebackToken) ||
10134         (listContainsBase && hasWritebackToken)) {
10135       // 16-bit encoding isn't sufficient. Switch to the 32-bit version.
10136       assert(isThumbTwo());
10137       Inst.setOpcode(hasWritebackToken ? ARM::t2LDMIA_UPD : ARM::t2LDMIA);
10138       // If we're switching to the updating version, we need to insert
10139       // the writeback tied operand.
10140       if (hasWritebackToken)
10141         Inst.insert(Inst.begin(),
10142                     MCOperand::createReg(Inst.getOperand(0).getReg()));
10143       return true;
10144     }
10145     break;
10146   }
10147   case ARM::tSTMIA_UPD: {
10148     // If the register list contains any high registers, we need to use
10149     // the 32-bit encoding instead if we're in Thumb2. Otherwise, this
10150     // should have generated an error in validateInstruction().
10151     unsigned Rn = Inst.getOperand(0).getReg();
10152     bool listContainsBase;
10153     if (checkLowRegisterList(Inst, 4, Rn, 0, listContainsBase)) {
10154       // 16-bit encoding isn't sufficient. Switch to the 32-bit version.
10155       assert(isThumbTwo());
10156       Inst.setOpcode(ARM::t2STMIA_UPD);
10157       return true;
10158     }
10159     break;
10160   }
10161   case ARM::tPOP: {
10162     bool listContainsBase;
10163     // If the register list contains any high registers, we need to use
10164     // the 32-bit encoding instead if we're in Thumb2. Otherwise, this
10165     // should have generated an error in validateInstruction().
10166     if (!checkLowRegisterList(Inst, 2, 0, ARM::PC, listContainsBase))
10167       return false;
10168     assert(isThumbTwo());
10169     Inst.setOpcode(ARM::t2LDMIA_UPD);
10170     // Add the base register and writeback operands.
10171     Inst.insert(Inst.begin(), MCOperand::createReg(ARM::SP));
10172     Inst.insert(Inst.begin(), MCOperand::createReg(ARM::SP));
10173     return true;
10174   }
10175   case ARM::tPUSH: {
10176     bool listContainsBase;
10177     if (!checkLowRegisterList(Inst, 2, 0, ARM::LR, listContainsBase))
10178       return false;
10179     assert(isThumbTwo());
10180     Inst.setOpcode(ARM::t2STMDB_UPD);
10181     // Add the base register and writeback operands.
10182     Inst.insert(Inst.begin(), MCOperand::createReg(ARM::SP));
10183     Inst.insert(Inst.begin(), MCOperand::createReg(ARM::SP));
10184     return true;
10185   }
10186   case ARM::t2MOVi:
10187     // If we can use the 16-bit encoding and the user didn't explicitly
10188     // request the 32-bit variant, transform it here.
10189     if (isARMLowRegister(Inst.getOperand(0).getReg()) &&
10190         (Inst.getOperand(1).isImm() &&
10191          (unsigned)Inst.getOperand(1).getImm() <= 255) &&
10192         Inst.getOperand(4).getReg() == (inITBlock() ? 0 : ARM::CPSR) &&
10193         !HasWideQualifier) {
10194       // The operands aren't in the same order for tMOVi8...
10195       MCInst TmpInst;
10196       TmpInst.setOpcode(ARM::tMOVi8);
10197       TmpInst.addOperand(Inst.getOperand(0));
10198       TmpInst.addOperand(Inst.getOperand(4));
10199       TmpInst.addOperand(Inst.getOperand(1));
10200       TmpInst.addOperand(Inst.getOperand(2));
10201       TmpInst.addOperand(Inst.getOperand(3));
10202       Inst = TmpInst;
10203       return true;
10204     }
10205     break;
10206 
10207   case ARM::t2MOVr:
10208     // If we can use the 16-bit encoding and the user didn't explicitly
10209     // request the 32-bit variant, transform it here.
10210     if (isARMLowRegister(Inst.getOperand(0).getReg()) &&
10211         isARMLowRegister(Inst.getOperand(1).getReg()) &&
10212         Inst.getOperand(2).getImm() == ARMCC::AL &&
10213         Inst.getOperand(4).getReg() == ARM::CPSR &&
10214         !HasWideQualifier) {
10215       // The operands aren't the same for tMOV[S]r... (no cc_out)
10216       MCInst TmpInst;
10217       TmpInst.setOpcode(Inst.getOperand(4).getReg() ? ARM::tMOVSr : ARM::tMOVr);
10218       TmpInst.addOperand(Inst.getOperand(0));
10219       TmpInst.addOperand(Inst.getOperand(1));
10220       TmpInst.addOperand(Inst.getOperand(2));
10221       TmpInst.addOperand(Inst.getOperand(3));
10222       Inst = TmpInst;
10223       return true;
10224     }
10225     break;
10226 
10227   case ARM::t2SXTH:
10228   case ARM::t2SXTB:
10229   case ARM::t2UXTH:
10230   case ARM::t2UXTB:
10231     // If we can use the 16-bit encoding and the user didn't explicitly
10232     // request the 32-bit variant, transform it here.
10233     if (isARMLowRegister(Inst.getOperand(0).getReg()) &&
10234         isARMLowRegister(Inst.getOperand(1).getReg()) &&
10235         Inst.getOperand(2).getImm() == 0 &&
10236         !HasWideQualifier) {
10237       unsigned NewOpc;
10238       switch (Inst.getOpcode()) {
10239       default: llvm_unreachable("Illegal opcode!");
10240       case ARM::t2SXTH: NewOpc = ARM::tSXTH; break;
10241       case ARM::t2SXTB: NewOpc = ARM::tSXTB; break;
10242       case ARM::t2UXTH: NewOpc = ARM::tUXTH; break;
10243       case ARM::t2UXTB: NewOpc = ARM::tUXTB; break;
10244       }
10245       // The operands aren't the same for thumb1 (no rotate operand).
10246       MCInst TmpInst;
10247       TmpInst.setOpcode(NewOpc);
10248       TmpInst.addOperand(Inst.getOperand(0));
10249       TmpInst.addOperand(Inst.getOperand(1));
10250       TmpInst.addOperand(Inst.getOperand(3));
10251       TmpInst.addOperand(Inst.getOperand(4));
10252       Inst = TmpInst;
10253       return true;
10254     }
10255     break;
10256 
10257   case ARM::MOVsi: {
10258     ARM_AM::ShiftOpc SOpc = ARM_AM::getSORegShOp(Inst.getOperand(2).getImm());
10259     // rrx shifts and asr/lsr of #32 is encoded as 0
10260     if (SOpc == ARM_AM::rrx || SOpc == ARM_AM::asr || SOpc == ARM_AM::lsr)
10261       return false;
10262     if (ARM_AM::getSORegOffset(Inst.getOperand(2).getImm()) == 0) {
10263       // Shifting by zero is accepted as a vanilla 'MOVr'
10264       MCInst TmpInst;
10265       TmpInst.setOpcode(ARM::MOVr);
10266       TmpInst.addOperand(Inst.getOperand(0));
10267       TmpInst.addOperand(Inst.getOperand(1));
10268       TmpInst.addOperand(Inst.getOperand(3));
10269       TmpInst.addOperand(Inst.getOperand(4));
10270       TmpInst.addOperand(Inst.getOperand(5));
10271       Inst = TmpInst;
10272       return true;
10273     }
10274     return false;
10275   }
10276   case ARM::ANDrsi:
10277   case ARM::ORRrsi:
10278   case ARM::EORrsi:
10279   case ARM::BICrsi:
10280   case ARM::SUBrsi:
10281   case ARM::ADDrsi: {
10282     unsigned newOpc;
10283     ARM_AM::ShiftOpc SOpc = ARM_AM::getSORegShOp(Inst.getOperand(3).getImm());
10284     if (SOpc == ARM_AM::rrx) return false;
10285     switch (Inst.getOpcode()) {
10286     default: llvm_unreachable("unexpected opcode!");
10287     case ARM::ANDrsi: newOpc = ARM::ANDrr; break;
10288     case ARM::ORRrsi: newOpc = ARM::ORRrr; break;
10289     case ARM::EORrsi: newOpc = ARM::EORrr; break;
10290     case ARM::BICrsi: newOpc = ARM::BICrr; break;
10291     case ARM::SUBrsi: newOpc = ARM::SUBrr; break;
10292     case ARM::ADDrsi: newOpc = ARM::ADDrr; break;
10293     }
10294     // If the shift is by zero, use the non-shifted instruction definition.
10295     // The exception is for right shifts, where 0 == 32
10296     if (ARM_AM::getSORegOffset(Inst.getOperand(3).getImm()) == 0 &&
10297         !(SOpc == ARM_AM::lsr || SOpc == ARM_AM::asr)) {
10298       MCInst TmpInst;
10299       TmpInst.setOpcode(newOpc);
10300       TmpInst.addOperand(Inst.getOperand(0));
10301       TmpInst.addOperand(Inst.getOperand(1));
10302       TmpInst.addOperand(Inst.getOperand(2));
10303       TmpInst.addOperand(Inst.getOperand(4));
10304       TmpInst.addOperand(Inst.getOperand(5));
10305       TmpInst.addOperand(Inst.getOperand(6));
10306       Inst = TmpInst;
10307       return true;
10308     }
10309     return false;
10310   }
10311   case ARM::ITasm:
10312   case ARM::t2IT: {
10313     // Set up the IT block state according to the IT instruction we just
10314     // matched.
10315     assert(!inITBlock() && "nested IT blocks?!");
10316     startExplicitITBlock(ARMCC::CondCodes(Inst.getOperand(0).getImm()),
10317                          Inst.getOperand(1).getImm());
10318     break;
10319   }
10320   case ARM::t2LSLrr:
10321   case ARM::t2LSRrr:
10322   case ARM::t2ASRrr:
10323   case ARM::t2SBCrr:
10324   case ARM::t2RORrr:
10325   case ARM::t2BICrr:
10326     // Assemblers should use the narrow encodings of these instructions when permissible.
10327     if ((isARMLowRegister(Inst.getOperand(1).getReg()) &&
10328          isARMLowRegister(Inst.getOperand(2).getReg())) &&
10329         Inst.getOperand(0).getReg() == Inst.getOperand(1).getReg() &&
10330         Inst.getOperand(5).getReg() == (inITBlock() ? 0 : ARM::CPSR) &&
10331         !HasWideQualifier) {
10332       unsigned NewOpc;
10333       switch (Inst.getOpcode()) {
10334         default: llvm_unreachable("unexpected opcode");
10335         case ARM::t2LSLrr: NewOpc = ARM::tLSLrr; break;
10336         case ARM::t2LSRrr: NewOpc = ARM::tLSRrr; break;
10337         case ARM::t2ASRrr: NewOpc = ARM::tASRrr; break;
10338         case ARM::t2SBCrr: NewOpc = ARM::tSBC; break;
10339         case ARM::t2RORrr: NewOpc = ARM::tROR; break;
10340         case ARM::t2BICrr: NewOpc = ARM::tBIC; break;
10341       }
10342       MCInst TmpInst;
10343       TmpInst.setOpcode(NewOpc);
10344       TmpInst.addOperand(Inst.getOperand(0));
10345       TmpInst.addOperand(Inst.getOperand(5));
10346       TmpInst.addOperand(Inst.getOperand(1));
10347       TmpInst.addOperand(Inst.getOperand(2));
10348       TmpInst.addOperand(Inst.getOperand(3));
10349       TmpInst.addOperand(Inst.getOperand(4));
10350       Inst = TmpInst;
10351       return true;
10352     }
10353     return false;
10354 
10355   case ARM::t2ANDrr:
10356   case ARM::t2EORrr:
10357   case ARM::t2ADCrr:
10358   case ARM::t2ORRrr:
10359     // Assemblers should use the narrow encodings of these instructions when permissible.
10360     // These instructions are special in that they are commutable, so shorter encodings
10361     // are available more often.
10362     if ((isARMLowRegister(Inst.getOperand(1).getReg()) &&
10363          isARMLowRegister(Inst.getOperand(2).getReg())) &&
10364         (Inst.getOperand(0).getReg() == Inst.getOperand(1).getReg() ||
10365          Inst.getOperand(0).getReg() == Inst.getOperand(2).getReg()) &&
10366         Inst.getOperand(5).getReg() == (inITBlock() ? 0 : ARM::CPSR) &&
10367         !HasWideQualifier) {
10368       unsigned NewOpc;
10369       switch (Inst.getOpcode()) {
10370         default: llvm_unreachable("unexpected opcode");
10371         case ARM::t2ADCrr: NewOpc = ARM::tADC; break;
10372         case ARM::t2ANDrr: NewOpc = ARM::tAND; break;
10373         case ARM::t2EORrr: NewOpc = ARM::tEOR; break;
10374         case ARM::t2ORRrr: NewOpc = ARM::tORR; break;
10375       }
10376       MCInst TmpInst;
10377       TmpInst.setOpcode(NewOpc);
10378       TmpInst.addOperand(Inst.getOperand(0));
10379       TmpInst.addOperand(Inst.getOperand(5));
10380       if (Inst.getOperand(0).getReg() == Inst.getOperand(1).getReg()) {
10381         TmpInst.addOperand(Inst.getOperand(1));
10382         TmpInst.addOperand(Inst.getOperand(2));
10383       } else {
10384         TmpInst.addOperand(Inst.getOperand(2));
10385         TmpInst.addOperand(Inst.getOperand(1));
10386       }
10387       TmpInst.addOperand(Inst.getOperand(3));
10388       TmpInst.addOperand(Inst.getOperand(4));
10389       Inst = TmpInst;
10390       return true;
10391     }
10392     return false;
10393   case ARM::MVE_VPST:
10394   case ARM::MVE_VPTv16i8:
10395   case ARM::MVE_VPTv8i16:
10396   case ARM::MVE_VPTv4i32:
10397   case ARM::MVE_VPTv16u8:
10398   case ARM::MVE_VPTv8u16:
10399   case ARM::MVE_VPTv4u32:
10400   case ARM::MVE_VPTv16s8:
10401   case ARM::MVE_VPTv8s16:
10402   case ARM::MVE_VPTv4s32:
10403   case ARM::MVE_VPTv4f32:
10404   case ARM::MVE_VPTv8f16:
10405   case ARM::MVE_VPTv16i8r:
10406   case ARM::MVE_VPTv8i16r:
10407   case ARM::MVE_VPTv4i32r:
10408   case ARM::MVE_VPTv16u8r:
10409   case ARM::MVE_VPTv8u16r:
10410   case ARM::MVE_VPTv4u32r:
10411   case ARM::MVE_VPTv16s8r:
10412   case ARM::MVE_VPTv8s16r:
10413   case ARM::MVE_VPTv4s32r:
10414   case ARM::MVE_VPTv4f32r:
10415   case ARM::MVE_VPTv8f16r: {
10416     assert(!inVPTBlock() && "Nested VPT blocks are not allowed");
10417     MCOperand &MO = Inst.getOperand(0);
10418     VPTState.Mask = MO.getImm();
10419     VPTState.CurPosition = 0;
10420     break;
10421   }
10422   }
10423   return false;
10424 }
10425 
10426 unsigned ARMAsmParser::checkTargetMatchPredicate(MCInst &Inst) {
10427   // 16-bit thumb arithmetic instructions either require or preclude the 'S'
10428   // suffix depending on whether they're in an IT block or not.
10429   unsigned Opc = Inst.getOpcode();
10430   const MCInstrDesc &MCID = MII.get(Opc);
10431   if (MCID.TSFlags & ARMII::ThumbArithFlagSetting) {
10432     assert(MCID.hasOptionalDef() &&
10433            "optionally flag setting instruction missing optional def operand");
10434     assert(MCID.NumOperands == Inst.getNumOperands() &&
10435            "operand count mismatch!");
10436     // Find the optional-def operand (cc_out).
10437     unsigned OpNo;
10438     for (OpNo = 0;
10439          !MCID.OpInfo[OpNo].isOptionalDef() && OpNo < MCID.NumOperands;
10440          ++OpNo)
10441       ;
10442     // If we're parsing Thumb1, reject it completely.
10443     if (isThumbOne() && Inst.getOperand(OpNo).getReg() != ARM::CPSR)
10444       return Match_RequiresFlagSetting;
10445     // If we're parsing Thumb2, which form is legal depends on whether we're
10446     // in an IT block.
10447     if (isThumbTwo() && Inst.getOperand(OpNo).getReg() != ARM::CPSR &&
10448         !inITBlock())
10449       return Match_RequiresITBlock;
10450     if (isThumbTwo() && Inst.getOperand(OpNo).getReg() == ARM::CPSR &&
10451         inITBlock())
10452       return Match_RequiresNotITBlock;
10453     // LSL with zero immediate is not allowed in an IT block
10454     if (Opc == ARM::tLSLri && Inst.getOperand(3).getImm() == 0 && inITBlock())
10455       return Match_RequiresNotITBlock;
10456   } else if (isThumbOne()) {
10457     // Some high-register supporting Thumb1 encodings only allow both registers
10458     // to be from r0-r7 when in Thumb2.
10459     if (Opc == ARM::tADDhirr && !hasV6MOps() &&
10460         isARMLowRegister(Inst.getOperand(1).getReg()) &&
10461         isARMLowRegister(Inst.getOperand(2).getReg()))
10462       return Match_RequiresThumb2;
10463     // Others only require ARMv6 or later.
10464     else if (Opc == ARM::tMOVr && !hasV6Ops() &&
10465              isARMLowRegister(Inst.getOperand(0).getReg()) &&
10466              isARMLowRegister(Inst.getOperand(1).getReg()))
10467       return Match_RequiresV6;
10468   }
10469 
10470   // Before ARMv8 the rules for when SP is allowed in t2MOVr are more complex
10471   // than the loop below can handle, so it uses the GPRnopc register class and
10472   // we do SP handling here.
10473   if (Opc == ARM::t2MOVr && !hasV8Ops())
10474   {
10475     // SP as both source and destination is not allowed
10476     if (Inst.getOperand(0).getReg() == ARM::SP &&
10477         Inst.getOperand(1).getReg() == ARM::SP)
10478       return Match_RequiresV8;
10479     // When flags-setting SP as either source or destination is not allowed
10480     if (Inst.getOperand(4).getReg() == ARM::CPSR &&
10481         (Inst.getOperand(0).getReg() == ARM::SP ||
10482          Inst.getOperand(1).getReg() == ARM::SP))
10483       return Match_RequiresV8;
10484   }
10485 
10486   switch (Inst.getOpcode()) {
10487   case ARM::VMRS:
10488   case ARM::VMSR:
10489   case ARM::VMRS_FPCXTS:
10490   case ARM::VMRS_FPCXTNS:
10491   case ARM::VMSR_FPCXTS:
10492   case ARM::VMSR_FPCXTNS:
10493   case ARM::VMRS_FPSCR_NZCVQC:
10494   case ARM::VMSR_FPSCR_NZCVQC:
10495   case ARM::FMSTAT:
10496   case ARM::VMRS_VPR:
10497   case ARM::VMRS_P0:
10498   case ARM::VMSR_VPR:
10499   case ARM::VMSR_P0:
10500     // Use of SP for VMRS/VMSR is only allowed in ARM mode with the exception of
10501     // ARMv8-A.
10502     if (Inst.getOperand(0).isReg() && Inst.getOperand(0).getReg() == ARM::SP &&
10503         (isThumb() && !hasV8Ops()))
10504       return Match_InvalidOperand;
10505     break;
10506   default:
10507     break;
10508   }
10509 
10510   for (unsigned I = 0; I < MCID.NumOperands; ++I)
10511     if (MCID.OpInfo[I].RegClass == ARM::rGPRRegClassID) {
10512       // rGPRRegClass excludes PC, and also excluded SP before ARMv8
10513       const auto &Op = Inst.getOperand(I);
10514       if (!Op.isReg()) {
10515         // This can happen in awkward cases with tied operands, e.g. a
10516         // writeback load/store with a complex addressing mode in
10517         // which there's an output operand corresponding to the
10518         // updated written-back base register: the Tablegen-generated
10519         // AsmMatcher will have written a placeholder operand to that
10520         // slot in the form of an immediate 0, because it can't
10521         // generate the register part of the complex addressing-mode
10522         // operand ahead of time.
10523         continue;
10524       }
10525 
10526       unsigned Reg = Op.getReg();
10527       if ((Reg == ARM::SP) && !hasV8Ops())
10528         return Match_RequiresV8;
10529       else if (Reg == ARM::PC)
10530         return Match_InvalidOperand;
10531     }
10532 
10533   return Match_Success;
10534 }
10535 
10536 namespace llvm {
10537 
10538 template <> inline bool IsCPSRDead<MCInst>(const MCInst *Instr) {
10539   return true; // In an assembly source, no need to second-guess
10540 }
10541 
10542 } // end namespace llvm
10543 
10544 // Returns true if Inst is unpredictable if it is in and IT block, but is not
10545 // the last instruction in the block.
10546 bool ARMAsmParser::isITBlockTerminator(MCInst &Inst) const {
10547   const MCInstrDesc &MCID = MII.get(Inst.getOpcode());
10548 
10549   // All branch & call instructions terminate IT blocks with the exception of
10550   // SVC.
10551   if (MCID.isTerminator() || (MCID.isCall() && Inst.getOpcode() != ARM::tSVC) ||
10552       MCID.isReturn() || MCID.isBranch() || MCID.isIndirectBranch())
10553     return true;
10554 
10555   // Any arithmetic instruction which writes to the PC also terminates the IT
10556   // block.
10557   if (MCID.hasDefOfPhysReg(Inst, ARM::PC, *MRI))
10558     return true;
10559 
10560   return false;
10561 }
10562 
10563 unsigned ARMAsmParser::MatchInstruction(OperandVector &Operands, MCInst &Inst,
10564                                           SmallVectorImpl<NearMissInfo> &NearMisses,
10565                                           bool MatchingInlineAsm,
10566                                           bool &EmitInITBlock,
10567                                           MCStreamer &Out) {
10568   // If we can't use an implicit IT block here, just match as normal.
10569   if (inExplicitITBlock() || !isThumbTwo() || !useImplicitITThumb())
10570     return MatchInstructionImpl(Operands, Inst, &NearMisses, MatchingInlineAsm);
10571 
10572   // Try to match the instruction in an extension of the current IT block (if
10573   // there is one).
10574   if (inImplicitITBlock()) {
10575     extendImplicitITBlock(ITState.Cond);
10576     if (MatchInstructionImpl(Operands, Inst, nullptr, MatchingInlineAsm) ==
10577             Match_Success) {
10578       // The match succeded, but we still have to check that the instruction is
10579       // valid in this implicit IT block.
10580       const MCInstrDesc &MCID = MII.get(Inst.getOpcode());
10581       if (MCID.isPredicable()) {
10582         ARMCC::CondCodes InstCond =
10583             (ARMCC::CondCodes)Inst.getOperand(MCID.findFirstPredOperandIdx())
10584                 .getImm();
10585         ARMCC::CondCodes ITCond = currentITCond();
10586         if (InstCond == ITCond) {
10587           EmitInITBlock = true;
10588           return Match_Success;
10589         } else if (InstCond == ARMCC::getOppositeCondition(ITCond)) {
10590           invertCurrentITCondition();
10591           EmitInITBlock = true;
10592           return Match_Success;
10593         }
10594       }
10595     }
10596     rewindImplicitITPosition();
10597   }
10598 
10599   // Finish the current IT block, and try to match outside any IT block.
10600   flushPendingInstructions(Out);
10601   unsigned PlainMatchResult =
10602       MatchInstructionImpl(Operands, Inst, &NearMisses, MatchingInlineAsm);
10603   if (PlainMatchResult == Match_Success) {
10604     const MCInstrDesc &MCID = MII.get(Inst.getOpcode());
10605     if (MCID.isPredicable()) {
10606       ARMCC::CondCodes InstCond =
10607           (ARMCC::CondCodes)Inst.getOperand(MCID.findFirstPredOperandIdx())
10608               .getImm();
10609       // Some forms of the branch instruction have their own condition code
10610       // fields, so can be conditionally executed without an IT block.
10611       if (Inst.getOpcode() == ARM::tBcc || Inst.getOpcode() == ARM::t2Bcc) {
10612         EmitInITBlock = false;
10613         return Match_Success;
10614       }
10615       if (InstCond == ARMCC::AL) {
10616         EmitInITBlock = false;
10617         return Match_Success;
10618       }
10619     } else {
10620       EmitInITBlock = false;
10621       return Match_Success;
10622     }
10623   }
10624 
10625   // Try to match in a new IT block. The matcher doesn't check the actual
10626   // condition, so we create an IT block with a dummy condition, and fix it up
10627   // once we know the actual condition.
10628   startImplicitITBlock();
10629   if (MatchInstructionImpl(Operands, Inst, nullptr, MatchingInlineAsm) ==
10630       Match_Success) {
10631     const MCInstrDesc &MCID = MII.get(Inst.getOpcode());
10632     if (MCID.isPredicable()) {
10633       ITState.Cond =
10634           (ARMCC::CondCodes)Inst.getOperand(MCID.findFirstPredOperandIdx())
10635               .getImm();
10636       EmitInITBlock = true;
10637       return Match_Success;
10638     }
10639   }
10640   discardImplicitITBlock();
10641 
10642   // If none of these succeed, return the error we got when trying to match
10643   // outside any IT blocks.
10644   EmitInITBlock = false;
10645   return PlainMatchResult;
10646 }
10647 
10648 static std::string ARMMnemonicSpellCheck(StringRef S, const FeatureBitset &FBS,
10649                                          unsigned VariantID = 0);
10650 
10651 static const char *getSubtargetFeatureName(uint64_t Val);
10652 bool ARMAsmParser::MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode,
10653                                            OperandVector &Operands,
10654                                            MCStreamer &Out, uint64_t &ErrorInfo,
10655                                            bool MatchingInlineAsm) {
10656   MCInst Inst;
10657   unsigned MatchResult;
10658   bool PendConditionalInstruction = false;
10659 
10660   SmallVector<NearMissInfo, 4> NearMisses;
10661   MatchResult = MatchInstruction(Operands, Inst, NearMisses, MatchingInlineAsm,
10662                                  PendConditionalInstruction, Out);
10663 
10664   switch (MatchResult) {
10665   case Match_Success:
10666     LLVM_DEBUG(dbgs() << "Parsed as: ";
10667                Inst.dump_pretty(dbgs(), MII.getName(Inst.getOpcode()));
10668                dbgs() << "\n");
10669 
10670     // Context sensitive operand constraints aren't handled by the matcher,
10671     // so check them here.
10672     if (validateInstruction(Inst, Operands)) {
10673       // Still progress the IT block, otherwise one wrong condition causes
10674       // nasty cascading errors.
10675       forwardITPosition();
10676       forwardVPTPosition();
10677       return true;
10678     }
10679 
10680     { // processInstruction() updates inITBlock state, we need to save it away
10681       bool wasInITBlock = inITBlock();
10682 
10683       // Some instructions need post-processing to, for example, tweak which
10684       // encoding is selected. Loop on it while changes happen so the
10685       // individual transformations can chain off each other. E.g.,
10686       // tPOP(r8)->t2LDMIA_UPD(sp,r8)->t2STR_POST(sp,r8)
10687       while (processInstruction(Inst, Operands, Out))
10688         LLVM_DEBUG(dbgs() << "Changed to: ";
10689                    Inst.dump_pretty(dbgs(), MII.getName(Inst.getOpcode()));
10690                    dbgs() << "\n");
10691 
10692       // Only after the instruction is fully processed, we can validate it
10693       if (wasInITBlock && hasV8Ops() && isThumb() &&
10694           !isV8EligibleForIT(&Inst)) {
10695         Warning(IDLoc, "deprecated instruction in IT block");
10696       }
10697     }
10698 
10699     // Only move forward at the very end so that everything in validate
10700     // and process gets a consistent answer about whether we're in an IT
10701     // block.
10702     forwardITPosition();
10703     forwardVPTPosition();
10704 
10705     // ITasm is an ARM mode pseudo-instruction that just sets the ITblock and
10706     // doesn't actually encode.
10707     if (Inst.getOpcode() == ARM::ITasm)
10708       return false;
10709 
10710     Inst.setLoc(IDLoc);
10711     if (PendConditionalInstruction) {
10712       PendingConditionalInsts.push_back(Inst);
10713       if (isITBlockFull() || isITBlockTerminator(Inst))
10714         flushPendingInstructions(Out);
10715     } else {
10716       Out.emitInstruction(Inst, getSTI());
10717     }
10718     return false;
10719   case Match_NearMisses:
10720     ReportNearMisses(NearMisses, IDLoc, Operands);
10721     return true;
10722   case Match_MnemonicFail: {
10723     FeatureBitset FBS = ComputeAvailableFeatures(getSTI().getFeatureBits());
10724     std::string Suggestion = ARMMnemonicSpellCheck(
10725       ((ARMOperand &)*Operands[0]).getToken(), FBS);
10726     return Error(IDLoc, "invalid instruction" + Suggestion,
10727                  ((ARMOperand &)*Operands[0]).getLocRange());
10728   }
10729   }
10730 
10731   llvm_unreachable("Implement any new match types added!");
10732 }
10733 
10734 /// parseDirective parses the arm specific directives
10735 bool ARMAsmParser::ParseDirective(AsmToken DirectiveID) {
10736   const MCObjectFileInfo::Environment Format =
10737     getContext().getObjectFileInfo()->getObjectFileType();
10738   bool IsMachO = Format == MCObjectFileInfo::IsMachO;
10739   bool IsCOFF = Format == MCObjectFileInfo::IsCOFF;
10740 
10741   std::string IDVal = DirectiveID.getIdentifier().lower();
10742   if (IDVal == ".word")
10743     parseLiteralValues(4, DirectiveID.getLoc());
10744   else if (IDVal == ".short" || IDVal == ".hword")
10745     parseLiteralValues(2, DirectiveID.getLoc());
10746   else if (IDVal == ".thumb")
10747     parseDirectiveThumb(DirectiveID.getLoc());
10748   else if (IDVal == ".arm")
10749     parseDirectiveARM(DirectiveID.getLoc());
10750   else if (IDVal == ".thumb_func")
10751     parseDirectiveThumbFunc(DirectiveID.getLoc());
10752   else if (IDVal == ".code")
10753     parseDirectiveCode(DirectiveID.getLoc());
10754   else if (IDVal == ".syntax")
10755     parseDirectiveSyntax(DirectiveID.getLoc());
10756   else if (IDVal == ".unreq")
10757     parseDirectiveUnreq(DirectiveID.getLoc());
10758   else if (IDVal == ".fnend")
10759     parseDirectiveFnEnd(DirectiveID.getLoc());
10760   else if (IDVal == ".cantunwind")
10761     parseDirectiveCantUnwind(DirectiveID.getLoc());
10762   else if (IDVal == ".personality")
10763     parseDirectivePersonality(DirectiveID.getLoc());
10764   else if (IDVal == ".handlerdata")
10765     parseDirectiveHandlerData(DirectiveID.getLoc());
10766   else if (IDVal == ".setfp")
10767     parseDirectiveSetFP(DirectiveID.getLoc());
10768   else if (IDVal == ".pad")
10769     parseDirectivePad(DirectiveID.getLoc());
10770   else if (IDVal == ".save")
10771     parseDirectiveRegSave(DirectiveID.getLoc(), false);
10772   else if (IDVal == ".vsave")
10773     parseDirectiveRegSave(DirectiveID.getLoc(), true);
10774   else if (IDVal == ".ltorg" || IDVal == ".pool")
10775     parseDirectiveLtorg(DirectiveID.getLoc());
10776   else if (IDVal == ".even")
10777     parseDirectiveEven(DirectiveID.getLoc());
10778   else if (IDVal == ".personalityindex")
10779     parseDirectivePersonalityIndex(DirectiveID.getLoc());
10780   else if (IDVal == ".unwind_raw")
10781     parseDirectiveUnwindRaw(DirectiveID.getLoc());
10782   else if (IDVal == ".movsp")
10783     parseDirectiveMovSP(DirectiveID.getLoc());
10784   else if (IDVal == ".arch_extension")
10785     parseDirectiveArchExtension(DirectiveID.getLoc());
10786   else if (IDVal == ".align")
10787     return parseDirectiveAlign(DirectiveID.getLoc()); // Use Generic on failure.
10788   else if (IDVal == ".thumb_set")
10789     parseDirectiveThumbSet(DirectiveID.getLoc());
10790   else if (IDVal == ".inst")
10791     parseDirectiveInst(DirectiveID.getLoc());
10792   else if (IDVal == ".inst.n")
10793     parseDirectiveInst(DirectiveID.getLoc(), 'n');
10794   else if (IDVal == ".inst.w")
10795     parseDirectiveInst(DirectiveID.getLoc(), 'w');
10796   else if (!IsMachO && !IsCOFF) {
10797     if (IDVal == ".arch")
10798       parseDirectiveArch(DirectiveID.getLoc());
10799     else if (IDVal == ".cpu")
10800       parseDirectiveCPU(DirectiveID.getLoc());
10801     else if (IDVal == ".eabi_attribute")
10802       parseDirectiveEabiAttr(DirectiveID.getLoc());
10803     else if (IDVal == ".fpu")
10804       parseDirectiveFPU(DirectiveID.getLoc());
10805     else if (IDVal == ".fnstart")
10806       parseDirectiveFnStart(DirectiveID.getLoc());
10807     else if (IDVal == ".object_arch")
10808       parseDirectiveObjectArch(DirectiveID.getLoc());
10809     else if (IDVal == ".tlsdescseq")
10810       parseDirectiveTLSDescSeq(DirectiveID.getLoc());
10811     else
10812       return true;
10813   } else
10814     return true;
10815   return false;
10816 }
10817 
10818 /// parseLiteralValues
10819 ///  ::= .hword expression [, expression]*
10820 ///  ::= .short expression [, expression]*
10821 ///  ::= .word expression [, expression]*
10822 bool ARMAsmParser::parseLiteralValues(unsigned Size, SMLoc L) {
10823   auto parseOne = [&]() -> bool {
10824     const MCExpr *Value;
10825     if (getParser().parseExpression(Value))
10826       return true;
10827     getParser().getStreamer().emitValue(Value, Size, L);
10828     return false;
10829   };
10830   return (parseMany(parseOne));
10831 }
10832 
10833 /// parseDirectiveThumb
10834 ///  ::= .thumb
10835 bool ARMAsmParser::parseDirectiveThumb(SMLoc L) {
10836   if (parseToken(AsmToken::EndOfStatement, "unexpected token in directive") ||
10837       check(!hasThumb(), L, "target does not support Thumb mode"))
10838     return true;
10839 
10840   if (!isThumb())
10841     SwitchMode();
10842 
10843   getParser().getStreamer().emitAssemblerFlag(MCAF_Code16);
10844   return false;
10845 }
10846 
10847 /// parseDirectiveARM
10848 ///  ::= .arm
10849 bool ARMAsmParser::parseDirectiveARM(SMLoc L) {
10850   if (parseToken(AsmToken::EndOfStatement, "unexpected token in directive") ||
10851       check(!hasARM(), L, "target does not support ARM mode"))
10852     return true;
10853 
10854   if (isThumb())
10855     SwitchMode();
10856   getParser().getStreamer().emitAssemblerFlag(MCAF_Code32);
10857   return false;
10858 }
10859 
10860 void ARMAsmParser::doBeforeLabelEmit(MCSymbol *Symbol) {
10861   // We need to flush the current implicit IT block on a label, because it is
10862   // not legal to branch into an IT block.
10863   flushPendingInstructions(getStreamer());
10864 }
10865 
10866 void ARMAsmParser::onLabelParsed(MCSymbol *Symbol) {
10867   if (NextSymbolIsThumb) {
10868     getParser().getStreamer().emitThumbFunc(Symbol);
10869     NextSymbolIsThumb = false;
10870   }
10871 }
10872 
10873 /// parseDirectiveThumbFunc
10874 ///  ::= .thumbfunc symbol_name
10875 bool ARMAsmParser::parseDirectiveThumbFunc(SMLoc L) {
10876   MCAsmParser &Parser = getParser();
10877   const auto Format = getContext().getObjectFileInfo()->getObjectFileType();
10878   bool IsMachO = Format == MCObjectFileInfo::IsMachO;
10879 
10880   // Darwin asm has (optionally) function name after .thumb_func direction
10881   // ELF doesn't
10882 
10883   if (IsMachO) {
10884     if (Parser.getTok().is(AsmToken::Identifier) ||
10885         Parser.getTok().is(AsmToken::String)) {
10886       MCSymbol *Func = getParser().getContext().getOrCreateSymbol(
10887           Parser.getTok().getIdentifier());
10888       getParser().getStreamer().emitThumbFunc(Func);
10889       Parser.Lex();
10890       if (parseToken(AsmToken::EndOfStatement,
10891                      "unexpected token in '.thumb_func' directive"))
10892         return true;
10893       return false;
10894     }
10895   }
10896 
10897   if (parseToken(AsmToken::EndOfStatement,
10898                  "unexpected token in '.thumb_func' directive"))
10899     return true;
10900 
10901   NextSymbolIsThumb = true;
10902   return false;
10903 }
10904 
10905 /// parseDirectiveSyntax
10906 ///  ::= .syntax unified | divided
10907 bool ARMAsmParser::parseDirectiveSyntax(SMLoc L) {
10908   MCAsmParser &Parser = getParser();
10909   const AsmToken &Tok = Parser.getTok();
10910   if (Tok.isNot(AsmToken::Identifier)) {
10911     Error(L, "unexpected token in .syntax directive");
10912     return false;
10913   }
10914 
10915   StringRef Mode = Tok.getString();
10916   Parser.Lex();
10917   if (check(Mode == "divided" || Mode == "DIVIDED", L,
10918             "'.syntax divided' arm assembly not supported") ||
10919       check(Mode != "unified" && Mode != "UNIFIED", L,
10920             "unrecognized syntax mode in .syntax directive") ||
10921       parseToken(AsmToken::EndOfStatement, "unexpected token in directive"))
10922     return true;
10923 
10924   // TODO tell the MC streamer the mode
10925   // getParser().getStreamer().Emit???();
10926   return false;
10927 }
10928 
10929 /// parseDirectiveCode
10930 ///  ::= .code 16 | 32
10931 bool ARMAsmParser::parseDirectiveCode(SMLoc L) {
10932   MCAsmParser &Parser = getParser();
10933   const AsmToken &Tok = Parser.getTok();
10934   if (Tok.isNot(AsmToken::Integer))
10935     return Error(L, "unexpected token in .code directive");
10936   int64_t Val = Parser.getTok().getIntVal();
10937   if (Val != 16 && Val != 32) {
10938     Error(L, "invalid operand to .code directive");
10939     return false;
10940   }
10941   Parser.Lex();
10942 
10943   if (parseToken(AsmToken::EndOfStatement, "unexpected token in directive"))
10944     return true;
10945 
10946   if (Val == 16) {
10947     if (!hasThumb())
10948       return Error(L, "target does not support Thumb mode");
10949 
10950     if (!isThumb())
10951       SwitchMode();
10952     getParser().getStreamer().emitAssemblerFlag(MCAF_Code16);
10953   } else {
10954     if (!hasARM())
10955       return Error(L, "target does not support ARM mode");
10956 
10957     if (isThumb())
10958       SwitchMode();
10959     getParser().getStreamer().emitAssemblerFlag(MCAF_Code32);
10960   }
10961 
10962   return false;
10963 }
10964 
10965 /// parseDirectiveReq
10966 ///  ::= name .req registername
10967 bool ARMAsmParser::parseDirectiveReq(StringRef Name, SMLoc L) {
10968   MCAsmParser &Parser = getParser();
10969   Parser.Lex(); // Eat the '.req' token.
10970   unsigned Reg;
10971   SMLoc SRegLoc, ERegLoc;
10972   if (check(ParseRegister(Reg, SRegLoc, ERegLoc), SRegLoc,
10973             "register name expected") ||
10974       parseToken(AsmToken::EndOfStatement,
10975                  "unexpected input in .req directive."))
10976     return true;
10977 
10978   if (RegisterReqs.insert(std::make_pair(Name, Reg)).first->second != Reg)
10979     return Error(SRegLoc,
10980                  "redefinition of '" + Name + "' does not match original.");
10981 
10982   return false;
10983 }
10984 
10985 /// parseDirectiveUneq
10986 ///  ::= .unreq registername
10987 bool ARMAsmParser::parseDirectiveUnreq(SMLoc L) {
10988   MCAsmParser &Parser = getParser();
10989   if (Parser.getTok().isNot(AsmToken::Identifier))
10990     return Error(L, "unexpected input in .unreq directive.");
10991   RegisterReqs.erase(Parser.getTok().getIdentifier().lower());
10992   Parser.Lex(); // Eat the identifier.
10993   if (parseToken(AsmToken::EndOfStatement,
10994                  "unexpected input in '.unreq' directive"))
10995     return true;
10996   return false;
10997 }
10998 
10999 // After changing arch/CPU, try to put the ARM/Thumb mode back to what it was
11000 // before, if supported by the new target, or emit mapping symbols for the mode
11001 // switch.
11002 void ARMAsmParser::FixModeAfterArchChange(bool WasThumb, SMLoc Loc) {
11003   if (WasThumb != isThumb()) {
11004     if (WasThumb && hasThumb()) {
11005       // Stay in Thumb mode
11006       SwitchMode();
11007     } else if (!WasThumb && hasARM()) {
11008       // Stay in ARM mode
11009       SwitchMode();
11010     } else {
11011       // Mode switch forced, because the new arch doesn't support the old mode.
11012       getParser().getStreamer().emitAssemblerFlag(isThumb() ? MCAF_Code16
11013                                                             : MCAF_Code32);
11014       // Warn about the implcit mode switch. GAS does not switch modes here,
11015       // but instead stays in the old mode, reporting an error on any following
11016       // instructions as the mode does not exist on the target.
11017       Warning(Loc, Twine("new target does not support ") +
11018                        (WasThumb ? "thumb" : "arm") + " mode, switching to " +
11019                        (!WasThumb ? "thumb" : "arm") + " mode");
11020     }
11021   }
11022 }
11023 
11024 /// parseDirectiveArch
11025 ///  ::= .arch token
11026 bool ARMAsmParser::parseDirectiveArch(SMLoc L) {
11027   StringRef Arch = getParser().parseStringToEndOfStatement().trim();
11028   ARM::ArchKind ID = ARM::parseArch(Arch);
11029 
11030   if (ID == ARM::ArchKind::INVALID)
11031     return Error(L, "Unknown arch name");
11032 
11033   bool WasThumb = isThumb();
11034   Triple T;
11035   MCSubtargetInfo &STI = copySTI();
11036   STI.setDefaultFeatures("", ("+" + ARM::getArchName(ID)).str());
11037   setAvailableFeatures(ComputeAvailableFeatures(STI.getFeatureBits()));
11038   FixModeAfterArchChange(WasThumb, L);
11039 
11040   getTargetStreamer().emitArch(ID);
11041   return false;
11042 }
11043 
11044 /// parseDirectiveEabiAttr
11045 ///  ::= .eabi_attribute int, int [, "str"]
11046 ///  ::= .eabi_attribute Tag_name, int [, "str"]
11047 bool ARMAsmParser::parseDirectiveEabiAttr(SMLoc L) {
11048   MCAsmParser &Parser = getParser();
11049   int64_t Tag;
11050   SMLoc TagLoc;
11051   TagLoc = Parser.getTok().getLoc();
11052   if (Parser.getTok().is(AsmToken::Identifier)) {
11053     StringRef Name = Parser.getTok().getIdentifier();
11054     Tag = ARMBuildAttrs::AttrTypeFromString(Name);
11055     if (Tag == -1) {
11056       Error(TagLoc, "attribute name not recognised: " + Name);
11057       return false;
11058     }
11059     Parser.Lex();
11060   } else {
11061     const MCExpr *AttrExpr;
11062 
11063     TagLoc = Parser.getTok().getLoc();
11064     if (Parser.parseExpression(AttrExpr))
11065       return true;
11066 
11067     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(AttrExpr);
11068     if (check(!CE, TagLoc, "expected numeric constant"))
11069       return true;
11070 
11071     Tag = CE->getValue();
11072   }
11073 
11074   if (Parser.parseToken(AsmToken::Comma, "comma expected"))
11075     return true;
11076 
11077   StringRef StringValue = "";
11078   bool IsStringValue = false;
11079 
11080   int64_t IntegerValue = 0;
11081   bool IsIntegerValue = false;
11082 
11083   if (Tag == ARMBuildAttrs::CPU_raw_name || Tag == ARMBuildAttrs::CPU_name)
11084     IsStringValue = true;
11085   else if (Tag == ARMBuildAttrs::compatibility) {
11086     IsStringValue = true;
11087     IsIntegerValue = true;
11088   } else if (Tag < 32 || Tag % 2 == 0)
11089     IsIntegerValue = true;
11090   else if (Tag % 2 == 1)
11091     IsStringValue = true;
11092   else
11093     llvm_unreachable("invalid tag type");
11094 
11095   if (IsIntegerValue) {
11096     const MCExpr *ValueExpr;
11097     SMLoc ValueExprLoc = Parser.getTok().getLoc();
11098     if (Parser.parseExpression(ValueExpr))
11099       return true;
11100 
11101     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ValueExpr);
11102     if (!CE)
11103       return Error(ValueExprLoc, "expected numeric constant");
11104     IntegerValue = CE->getValue();
11105   }
11106 
11107   if (Tag == ARMBuildAttrs::compatibility) {
11108     if (Parser.parseToken(AsmToken::Comma, "comma expected"))
11109       return true;
11110   }
11111 
11112   if (IsStringValue) {
11113     if (Parser.getTok().isNot(AsmToken::String))
11114       return Error(Parser.getTok().getLoc(), "bad string constant");
11115 
11116     StringValue = Parser.getTok().getStringContents();
11117     Parser.Lex();
11118   }
11119 
11120   if (Parser.parseToken(AsmToken::EndOfStatement,
11121                         "unexpected token in '.eabi_attribute' directive"))
11122     return true;
11123 
11124   if (IsIntegerValue && IsStringValue) {
11125     assert(Tag == ARMBuildAttrs::compatibility);
11126     getTargetStreamer().emitIntTextAttribute(Tag, IntegerValue, StringValue);
11127   } else if (IsIntegerValue)
11128     getTargetStreamer().emitAttribute(Tag, IntegerValue);
11129   else if (IsStringValue)
11130     getTargetStreamer().emitTextAttribute(Tag, StringValue);
11131   return false;
11132 }
11133 
11134 /// parseDirectiveCPU
11135 ///  ::= .cpu str
11136 bool ARMAsmParser::parseDirectiveCPU(SMLoc L) {
11137   StringRef CPU = getParser().parseStringToEndOfStatement().trim();
11138   getTargetStreamer().emitTextAttribute(ARMBuildAttrs::CPU_name, CPU);
11139 
11140   // FIXME: This is using table-gen data, but should be moved to
11141   // ARMTargetParser once that is table-gen'd.
11142   if (!getSTI().isCPUStringValid(CPU))
11143     return Error(L, "Unknown CPU name");
11144 
11145   bool WasThumb = isThumb();
11146   MCSubtargetInfo &STI = copySTI();
11147   STI.setDefaultFeatures(CPU, "");
11148   setAvailableFeatures(ComputeAvailableFeatures(STI.getFeatureBits()));
11149   FixModeAfterArchChange(WasThumb, L);
11150 
11151   return false;
11152 }
11153 
11154 /// parseDirectiveFPU
11155 ///  ::= .fpu str
11156 bool ARMAsmParser::parseDirectiveFPU(SMLoc L) {
11157   SMLoc FPUNameLoc = getTok().getLoc();
11158   StringRef FPU = getParser().parseStringToEndOfStatement().trim();
11159 
11160   unsigned ID = ARM::parseFPU(FPU);
11161   std::vector<StringRef> Features;
11162   if (!ARM::getFPUFeatures(ID, Features))
11163     return Error(FPUNameLoc, "Unknown FPU name");
11164 
11165   MCSubtargetInfo &STI = copySTI();
11166   for (auto Feature : Features)
11167     STI.ApplyFeatureFlag(Feature);
11168   setAvailableFeatures(ComputeAvailableFeatures(STI.getFeatureBits()));
11169 
11170   getTargetStreamer().emitFPU(ID);
11171   return false;
11172 }
11173 
11174 /// parseDirectiveFnStart
11175 ///  ::= .fnstart
11176 bool ARMAsmParser::parseDirectiveFnStart(SMLoc L) {
11177   if (parseToken(AsmToken::EndOfStatement,
11178                  "unexpected token in '.fnstart' directive"))
11179     return true;
11180 
11181   if (UC.hasFnStart()) {
11182     Error(L, ".fnstart starts before the end of previous one");
11183     UC.emitFnStartLocNotes();
11184     return true;
11185   }
11186 
11187   // Reset the unwind directives parser state
11188   UC.reset();
11189 
11190   getTargetStreamer().emitFnStart();
11191 
11192   UC.recordFnStart(L);
11193   return false;
11194 }
11195 
11196 /// parseDirectiveFnEnd
11197 ///  ::= .fnend
11198 bool ARMAsmParser::parseDirectiveFnEnd(SMLoc L) {
11199   if (parseToken(AsmToken::EndOfStatement,
11200                  "unexpected token in '.fnend' directive"))
11201     return true;
11202   // Check the ordering of unwind directives
11203   if (!UC.hasFnStart())
11204     return Error(L, ".fnstart must precede .fnend directive");
11205 
11206   // Reset the unwind directives parser state
11207   getTargetStreamer().emitFnEnd();
11208 
11209   UC.reset();
11210   return false;
11211 }
11212 
11213 /// parseDirectiveCantUnwind
11214 ///  ::= .cantunwind
11215 bool ARMAsmParser::parseDirectiveCantUnwind(SMLoc L) {
11216   if (parseToken(AsmToken::EndOfStatement,
11217                  "unexpected token in '.cantunwind' directive"))
11218     return true;
11219 
11220   UC.recordCantUnwind(L);
11221   // Check the ordering of unwind directives
11222   if (check(!UC.hasFnStart(), L, ".fnstart must precede .cantunwind directive"))
11223     return true;
11224 
11225   if (UC.hasHandlerData()) {
11226     Error(L, ".cantunwind can't be used with .handlerdata directive");
11227     UC.emitHandlerDataLocNotes();
11228     return true;
11229   }
11230   if (UC.hasPersonality()) {
11231     Error(L, ".cantunwind can't be used with .personality directive");
11232     UC.emitPersonalityLocNotes();
11233     return true;
11234   }
11235 
11236   getTargetStreamer().emitCantUnwind();
11237   return false;
11238 }
11239 
11240 /// parseDirectivePersonality
11241 ///  ::= .personality name
11242 bool ARMAsmParser::parseDirectivePersonality(SMLoc L) {
11243   MCAsmParser &Parser = getParser();
11244   bool HasExistingPersonality = UC.hasPersonality();
11245 
11246   // Parse the name of the personality routine
11247   if (Parser.getTok().isNot(AsmToken::Identifier))
11248     return Error(L, "unexpected input in .personality directive.");
11249   StringRef Name(Parser.getTok().getIdentifier());
11250   Parser.Lex();
11251 
11252   if (parseToken(AsmToken::EndOfStatement,
11253                  "unexpected token in '.personality' directive"))
11254     return true;
11255 
11256   UC.recordPersonality(L);
11257 
11258   // Check the ordering of unwind directives
11259   if (!UC.hasFnStart())
11260     return Error(L, ".fnstart must precede .personality directive");
11261   if (UC.cantUnwind()) {
11262     Error(L, ".personality can't be used with .cantunwind directive");
11263     UC.emitCantUnwindLocNotes();
11264     return true;
11265   }
11266   if (UC.hasHandlerData()) {
11267     Error(L, ".personality must precede .handlerdata directive");
11268     UC.emitHandlerDataLocNotes();
11269     return true;
11270   }
11271   if (HasExistingPersonality) {
11272     Error(L, "multiple personality directives");
11273     UC.emitPersonalityLocNotes();
11274     return true;
11275   }
11276 
11277   MCSymbol *PR = getParser().getContext().getOrCreateSymbol(Name);
11278   getTargetStreamer().emitPersonality(PR);
11279   return false;
11280 }
11281 
11282 /// parseDirectiveHandlerData
11283 ///  ::= .handlerdata
11284 bool ARMAsmParser::parseDirectiveHandlerData(SMLoc L) {
11285   if (parseToken(AsmToken::EndOfStatement,
11286                  "unexpected token in '.handlerdata' directive"))
11287     return true;
11288 
11289   UC.recordHandlerData(L);
11290   // Check the ordering of unwind directives
11291   if (!UC.hasFnStart())
11292     return Error(L, ".fnstart must precede .personality directive");
11293   if (UC.cantUnwind()) {
11294     Error(L, ".handlerdata can't be used with .cantunwind directive");
11295     UC.emitCantUnwindLocNotes();
11296     return true;
11297   }
11298 
11299   getTargetStreamer().emitHandlerData();
11300   return false;
11301 }
11302 
11303 /// parseDirectiveSetFP
11304 ///  ::= .setfp fpreg, spreg [, offset]
11305 bool ARMAsmParser::parseDirectiveSetFP(SMLoc L) {
11306   MCAsmParser &Parser = getParser();
11307   // Check the ordering of unwind directives
11308   if (check(!UC.hasFnStart(), L, ".fnstart must precede .setfp directive") ||
11309       check(UC.hasHandlerData(), L,
11310             ".setfp must precede .handlerdata directive"))
11311     return true;
11312 
11313   // Parse fpreg
11314   SMLoc FPRegLoc = Parser.getTok().getLoc();
11315   int FPReg = tryParseRegister();
11316 
11317   if (check(FPReg == -1, FPRegLoc, "frame pointer register expected") ||
11318       Parser.parseToken(AsmToken::Comma, "comma expected"))
11319     return true;
11320 
11321   // Parse spreg
11322   SMLoc SPRegLoc = Parser.getTok().getLoc();
11323   int SPReg = tryParseRegister();
11324   if (check(SPReg == -1, SPRegLoc, "stack pointer register expected") ||
11325       check(SPReg != ARM::SP && SPReg != UC.getFPReg(), SPRegLoc,
11326             "register should be either $sp or the latest fp register"))
11327     return true;
11328 
11329   // Update the frame pointer register
11330   UC.saveFPReg(FPReg);
11331 
11332   // Parse offset
11333   int64_t Offset = 0;
11334   if (Parser.parseOptionalToken(AsmToken::Comma)) {
11335     if (Parser.getTok().isNot(AsmToken::Hash) &&
11336         Parser.getTok().isNot(AsmToken::Dollar))
11337       return Error(Parser.getTok().getLoc(), "'#' expected");
11338     Parser.Lex(); // skip hash token.
11339 
11340     const MCExpr *OffsetExpr;
11341     SMLoc ExLoc = Parser.getTok().getLoc();
11342     SMLoc EndLoc;
11343     if (getParser().parseExpression(OffsetExpr, EndLoc))
11344       return Error(ExLoc, "malformed setfp offset");
11345     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(OffsetExpr);
11346     if (check(!CE, ExLoc, "setfp offset must be an immediate"))
11347       return true;
11348     Offset = CE->getValue();
11349   }
11350 
11351   if (Parser.parseToken(AsmToken::EndOfStatement))
11352     return true;
11353 
11354   getTargetStreamer().emitSetFP(static_cast<unsigned>(FPReg),
11355                                 static_cast<unsigned>(SPReg), Offset);
11356   return false;
11357 }
11358 
11359 /// parseDirective
11360 ///  ::= .pad offset
11361 bool ARMAsmParser::parseDirectivePad(SMLoc L) {
11362   MCAsmParser &Parser = getParser();
11363   // Check the ordering of unwind directives
11364   if (!UC.hasFnStart())
11365     return Error(L, ".fnstart must precede .pad directive");
11366   if (UC.hasHandlerData())
11367     return Error(L, ".pad must precede .handlerdata directive");
11368 
11369   // Parse the offset
11370   if (Parser.getTok().isNot(AsmToken::Hash) &&
11371       Parser.getTok().isNot(AsmToken::Dollar))
11372     return Error(Parser.getTok().getLoc(), "'#' expected");
11373   Parser.Lex(); // skip hash token.
11374 
11375   const MCExpr *OffsetExpr;
11376   SMLoc ExLoc = Parser.getTok().getLoc();
11377   SMLoc EndLoc;
11378   if (getParser().parseExpression(OffsetExpr, EndLoc))
11379     return Error(ExLoc, "malformed pad offset");
11380   const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(OffsetExpr);
11381   if (!CE)
11382     return Error(ExLoc, "pad offset must be an immediate");
11383 
11384   if (parseToken(AsmToken::EndOfStatement,
11385                  "unexpected token in '.pad' directive"))
11386     return true;
11387 
11388   getTargetStreamer().emitPad(CE->getValue());
11389   return false;
11390 }
11391 
11392 /// parseDirectiveRegSave
11393 ///  ::= .save  { registers }
11394 ///  ::= .vsave { registers }
11395 bool ARMAsmParser::parseDirectiveRegSave(SMLoc L, bool IsVector) {
11396   // Check the ordering of unwind directives
11397   if (!UC.hasFnStart())
11398     return Error(L, ".fnstart must precede .save or .vsave directives");
11399   if (UC.hasHandlerData())
11400     return Error(L, ".save or .vsave must precede .handlerdata directive");
11401 
11402   // RAII object to make sure parsed operands are deleted.
11403   SmallVector<std::unique_ptr<MCParsedAsmOperand>, 1> Operands;
11404 
11405   // Parse the register list
11406   if (parseRegisterList(Operands) ||
11407       parseToken(AsmToken::EndOfStatement, "unexpected token in directive"))
11408     return true;
11409   ARMOperand &Op = (ARMOperand &)*Operands[0];
11410   if (!IsVector && !Op.isRegList())
11411     return Error(L, ".save expects GPR registers");
11412   if (IsVector && !Op.isDPRRegList())
11413     return Error(L, ".vsave expects DPR registers");
11414 
11415   getTargetStreamer().emitRegSave(Op.getRegList(), IsVector);
11416   return false;
11417 }
11418 
11419 /// parseDirectiveInst
11420 ///  ::= .inst opcode [, ...]
11421 ///  ::= .inst.n opcode [, ...]
11422 ///  ::= .inst.w opcode [, ...]
11423 bool ARMAsmParser::parseDirectiveInst(SMLoc Loc, char Suffix) {
11424   int Width = 4;
11425 
11426   if (isThumb()) {
11427     switch (Suffix) {
11428     case 'n':
11429       Width = 2;
11430       break;
11431     case 'w':
11432       break;
11433     default:
11434       Width = 0;
11435       break;
11436     }
11437   } else {
11438     if (Suffix)
11439       return Error(Loc, "width suffixes are invalid in ARM mode");
11440   }
11441 
11442   auto parseOne = [&]() -> bool {
11443     const MCExpr *Expr;
11444     if (getParser().parseExpression(Expr))
11445       return true;
11446     const MCConstantExpr *Value = dyn_cast_or_null<MCConstantExpr>(Expr);
11447     if (!Value) {
11448       return Error(Loc, "expected constant expression");
11449     }
11450 
11451     char CurSuffix = Suffix;
11452     switch (Width) {
11453     case 2:
11454       if (Value->getValue() > 0xffff)
11455         return Error(Loc, "inst.n operand is too big, use inst.w instead");
11456       break;
11457     case 4:
11458       if (Value->getValue() > 0xffffffff)
11459         return Error(Loc, StringRef(Suffix ? "inst.w" : "inst") +
11460                               " operand is too big");
11461       break;
11462     case 0:
11463       // Thumb mode, no width indicated. Guess from the opcode, if possible.
11464       if (Value->getValue() < 0xe800)
11465         CurSuffix = 'n';
11466       else if (Value->getValue() >= 0xe8000000)
11467         CurSuffix = 'w';
11468       else
11469         return Error(Loc, "cannot determine Thumb instruction size, "
11470                           "use inst.n/inst.w instead");
11471       break;
11472     default:
11473       llvm_unreachable("only supported widths are 2 and 4");
11474     }
11475 
11476     getTargetStreamer().emitInst(Value->getValue(), CurSuffix);
11477     return false;
11478   };
11479 
11480   if (parseOptionalToken(AsmToken::EndOfStatement))
11481     return Error(Loc, "expected expression following directive");
11482   if (parseMany(parseOne))
11483     return true;
11484   return false;
11485 }
11486 
11487 /// parseDirectiveLtorg
11488 ///  ::= .ltorg | .pool
11489 bool ARMAsmParser::parseDirectiveLtorg(SMLoc L) {
11490   if (parseToken(AsmToken::EndOfStatement, "unexpected token in directive"))
11491     return true;
11492   getTargetStreamer().emitCurrentConstantPool();
11493   return false;
11494 }
11495 
11496 bool ARMAsmParser::parseDirectiveEven(SMLoc L) {
11497   const MCSection *Section = getStreamer().getCurrentSectionOnly();
11498 
11499   if (parseToken(AsmToken::EndOfStatement, "unexpected token in directive"))
11500     return true;
11501 
11502   if (!Section) {
11503     getStreamer().InitSections(false);
11504     Section = getStreamer().getCurrentSectionOnly();
11505   }
11506 
11507   assert(Section && "must have section to emit alignment");
11508   if (Section->UseCodeAlign())
11509     getStreamer().emitCodeAlignment(2);
11510   else
11511     getStreamer().emitValueToAlignment(2);
11512 
11513   return false;
11514 }
11515 
11516 /// parseDirectivePersonalityIndex
11517 ///   ::= .personalityindex index
11518 bool ARMAsmParser::parseDirectivePersonalityIndex(SMLoc L) {
11519   MCAsmParser &Parser = getParser();
11520   bool HasExistingPersonality = UC.hasPersonality();
11521 
11522   const MCExpr *IndexExpression;
11523   SMLoc IndexLoc = Parser.getTok().getLoc();
11524   if (Parser.parseExpression(IndexExpression) ||
11525       parseToken(AsmToken::EndOfStatement,
11526                  "unexpected token in '.personalityindex' directive")) {
11527     return true;
11528   }
11529 
11530   UC.recordPersonalityIndex(L);
11531 
11532   if (!UC.hasFnStart()) {
11533     return Error(L, ".fnstart must precede .personalityindex directive");
11534   }
11535   if (UC.cantUnwind()) {
11536     Error(L, ".personalityindex cannot be used with .cantunwind");
11537     UC.emitCantUnwindLocNotes();
11538     return true;
11539   }
11540   if (UC.hasHandlerData()) {
11541     Error(L, ".personalityindex must precede .handlerdata directive");
11542     UC.emitHandlerDataLocNotes();
11543     return true;
11544   }
11545   if (HasExistingPersonality) {
11546     Error(L, "multiple personality directives");
11547     UC.emitPersonalityLocNotes();
11548     return true;
11549   }
11550 
11551   const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(IndexExpression);
11552   if (!CE)
11553     return Error(IndexLoc, "index must be a constant number");
11554   if (CE->getValue() < 0 || CE->getValue() >= ARM::EHABI::NUM_PERSONALITY_INDEX)
11555     return Error(IndexLoc,
11556                  "personality routine index should be in range [0-3]");
11557 
11558   getTargetStreamer().emitPersonalityIndex(CE->getValue());
11559   return false;
11560 }
11561 
11562 /// parseDirectiveUnwindRaw
11563 ///   ::= .unwind_raw offset, opcode [, opcode...]
11564 bool ARMAsmParser::parseDirectiveUnwindRaw(SMLoc L) {
11565   MCAsmParser &Parser = getParser();
11566   int64_t StackOffset;
11567   const MCExpr *OffsetExpr;
11568   SMLoc OffsetLoc = getLexer().getLoc();
11569 
11570   if (!UC.hasFnStart())
11571     return Error(L, ".fnstart must precede .unwind_raw directives");
11572   if (getParser().parseExpression(OffsetExpr))
11573     return Error(OffsetLoc, "expected expression");
11574 
11575   const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(OffsetExpr);
11576   if (!CE)
11577     return Error(OffsetLoc, "offset must be a constant");
11578 
11579   StackOffset = CE->getValue();
11580 
11581   if (Parser.parseToken(AsmToken::Comma, "expected comma"))
11582     return true;
11583 
11584   SmallVector<uint8_t, 16> Opcodes;
11585 
11586   auto parseOne = [&]() -> bool {
11587     const MCExpr *OE = nullptr;
11588     SMLoc OpcodeLoc = getLexer().getLoc();
11589     if (check(getLexer().is(AsmToken::EndOfStatement) ||
11590                   Parser.parseExpression(OE),
11591               OpcodeLoc, "expected opcode expression"))
11592       return true;
11593     const MCConstantExpr *OC = dyn_cast<MCConstantExpr>(OE);
11594     if (!OC)
11595       return Error(OpcodeLoc, "opcode value must be a constant");
11596     const int64_t Opcode = OC->getValue();
11597     if (Opcode & ~0xff)
11598       return Error(OpcodeLoc, "invalid opcode");
11599     Opcodes.push_back(uint8_t(Opcode));
11600     return false;
11601   };
11602 
11603   // Must have at least 1 element
11604   SMLoc OpcodeLoc = getLexer().getLoc();
11605   if (parseOptionalToken(AsmToken::EndOfStatement))
11606     return Error(OpcodeLoc, "expected opcode expression");
11607   if (parseMany(parseOne))
11608     return true;
11609 
11610   getTargetStreamer().emitUnwindRaw(StackOffset, Opcodes);
11611   return false;
11612 }
11613 
11614 /// parseDirectiveTLSDescSeq
11615 ///   ::= .tlsdescseq tls-variable
11616 bool ARMAsmParser::parseDirectiveTLSDescSeq(SMLoc L) {
11617   MCAsmParser &Parser = getParser();
11618 
11619   if (getLexer().isNot(AsmToken::Identifier))
11620     return TokError("expected variable after '.tlsdescseq' directive");
11621 
11622   const MCSymbolRefExpr *SRE =
11623     MCSymbolRefExpr::create(Parser.getTok().getIdentifier(),
11624                             MCSymbolRefExpr::VK_ARM_TLSDESCSEQ, getContext());
11625   Lex();
11626 
11627   if (parseToken(AsmToken::EndOfStatement,
11628                  "unexpected token in '.tlsdescseq' directive"))
11629     return true;
11630 
11631   getTargetStreamer().AnnotateTLSDescriptorSequence(SRE);
11632   return false;
11633 }
11634 
11635 /// parseDirectiveMovSP
11636 ///  ::= .movsp reg [, #offset]
11637 bool ARMAsmParser::parseDirectiveMovSP(SMLoc L) {
11638   MCAsmParser &Parser = getParser();
11639   if (!UC.hasFnStart())
11640     return Error(L, ".fnstart must precede .movsp directives");
11641   if (UC.getFPReg() != ARM::SP)
11642     return Error(L, "unexpected .movsp directive");
11643 
11644   SMLoc SPRegLoc = Parser.getTok().getLoc();
11645   int SPReg = tryParseRegister();
11646   if (SPReg == -1)
11647     return Error(SPRegLoc, "register expected");
11648   if (SPReg == ARM::SP || SPReg == ARM::PC)
11649     return Error(SPRegLoc, "sp and pc are not permitted in .movsp directive");
11650 
11651   int64_t Offset = 0;
11652   if (Parser.parseOptionalToken(AsmToken::Comma)) {
11653     if (Parser.parseToken(AsmToken::Hash, "expected #constant"))
11654       return true;
11655 
11656     const MCExpr *OffsetExpr;
11657     SMLoc OffsetLoc = Parser.getTok().getLoc();
11658 
11659     if (Parser.parseExpression(OffsetExpr))
11660       return Error(OffsetLoc, "malformed offset expression");
11661 
11662     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(OffsetExpr);
11663     if (!CE)
11664       return Error(OffsetLoc, "offset must be an immediate constant");
11665 
11666     Offset = CE->getValue();
11667   }
11668 
11669   if (parseToken(AsmToken::EndOfStatement,
11670                  "unexpected token in '.movsp' directive"))
11671     return true;
11672 
11673   getTargetStreamer().emitMovSP(SPReg, Offset);
11674   UC.saveFPReg(SPReg);
11675 
11676   return false;
11677 }
11678 
11679 /// parseDirectiveObjectArch
11680 ///   ::= .object_arch name
11681 bool ARMAsmParser::parseDirectiveObjectArch(SMLoc L) {
11682   MCAsmParser &Parser = getParser();
11683   if (getLexer().isNot(AsmToken::Identifier))
11684     return Error(getLexer().getLoc(), "unexpected token");
11685 
11686   StringRef Arch = Parser.getTok().getString();
11687   SMLoc ArchLoc = Parser.getTok().getLoc();
11688   Lex();
11689 
11690   ARM::ArchKind ID = ARM::parseArch(Arch);
11691 
11692   if (ID == ARM::ArchKind::INVALID)
11693     return Error(ArchLoc, "unknown architecture '" + Arch + "'");
11694   if (parseToken(AsmToken::EndOfStatement))
11695     return true;
11696 
11697   getTargetStreamer().emitObjectArch(ID);
11698   return false;
11699 }
11700 
11701 /// parseDirectiveAlign
11702 ///   ::= .align
11703 bool ARMAsmParser::parseDirectiveAlign(SMLoc L) {
11704   // NOTE: if this is not the end of the statement, fall back to the target
11705   // agnostic handling for this directive which will correctly handle this.
11706   if (parseOptionalToken(AsmToken::EndOfStatement)) {
11707     // '.align' is target specifically handled to mean 2**2 byte alignment.
11708     const MCSection *Section = getStreamer().getCurrentSectionOnly();
11709     assert(Section && "must have section to emit alignment");
11710     if (Section->UseCodeAlign())
11711       getStreamer().emitCodeAlignment(4, 0);
11712     else
11713       getStreamer().emitValueToAlignment(4, 0, 1, 0);
11714     return false;
11715   }
11716   return true;
11717 }
11718 
11719 /// parseDirectiveThumbSet
11720 ///  ::= .thumb_set name, value
11721 bool ARMAsmParser::parseDirectiveThumbSet(SMLoc L) {
11722   MCAsmParser &Parser = getParser();
11723 
11724   StringRef Name;
11725   if (check(Parser.parseIdentifier(Name),
11726             "expected identifier after '.thumb_set'") ||
11727       parseToken(AsmToken::Comma, "expected comma after name '" + Name + "'"))
11728     return true;
11729 
11730   MCSymbol *Sym;
11731   const MCExpr *Value;
11732   if (MCParserUtils::parseAssignmentExpression(Name, /* allow_redef */ true,
11733                                                Parser, Sym, Value))
11734     return true;
11735 
11736   getTargetStreamer().emitThumbSet(Sym, Value);
11737   return false;
11738 }
11739 
11740 /// Force static initialization.
11741 extern "C" LLVM_EXTERNAL_VISIBILITY void LLVMInitializeARMAsmParser() {
11742   RegisterMCAsmParser<ARMAsmParser> X(getTheARMLETarget());
11743   RegisterMCAsmParser<ARMAsmParser> Y(getTheARMBETarget());
11744   RegisterMCAsmParser<ARMAsmParser> A(getTheThumbLETarget());
11745   RegisterMCAsmParser<ARMAsmParser> B(getTheThumbBETarget());
11746 }
11747 
11748 #define GET_REGISTER_MATCHER
11749 #define GET_SUBTARGET_FEATURE_NAME
11750 #define GET_MATCHER_IMPLEMENTATION
11751 #define GET_MNEMONIC_SPELL_CHECKER
11752 #include "ARMGenAsmMatcher.inc"
11753 
11754 // Some diagnostics need to vary with subtarget features, so they are handled
11755 // here. For example, the DPR class has either 16 or 32 registers, depending
11756 // on the FPU available.
11757 const char *
11758 ARMAsmParser::getCustomOperandDiag(ARMMatchResultTy MatchError) {
11759   switch (MatchError) {
11760   // rGPR contains sp starting with ARMv8.
11761   case Match_rGPR:
11762     return hasV8Ops() ? "operand must be a register in range [r0, r14]"
11763                       : "operand must be a register in range [r0, r12] or r14";
11764   // DPR contains 16 registers for some FPUs, and 32 for others.
11765   case Match_DPR:
11766     return hasD32() ? "operand must be a register in range [d0, d31]"
11767                     : "operand must be a register in range [d0, d15]";
11768   case Match_DPR_RegList:
11769     return hasD32() ? "operand must be a list of registers in range [d0, d31]"
11770                     : "operand must be a list of registers in range [d0, d15]";
11771 
11772   // For all other diags, use the static string from tablegen.
11773   default:
11774     return getMatchKindDiag(MatchError);
11775   }
11776 }
11777 
11778 // Process the list of near-misses, throwing away ones we don't want to report
11779 // to the user, and converting the rest to a source location and string that
11780 // should be reported.
11781 void
11782 ARMAsmParser::FilterNearMisses(SmallVectorImpl<NearMissInfo> &NearMissesIn,
11783                                SmallVectorImpl<NearMissMessage> &NearMissesOut,
11784                                SMLoc IDLoc, OperandVector &Operands) {
11785   // TODO: If operand didn't match, sub in a dummy one and run target
11786   // predicate, so that we can avoid reporting near-misses that are invalid?
11787   // TODO: Many operand types dont have SuperClasses set, so we report
11788   // redundant ones.
11789   // TODO: Some operands are superclasses of registers (e.g.
11790   // MCK_RegShiftedImm), we don't have any way to represent that currently.
11791   // TODO: This is not all ARM-specific, can some of it be factored out?
11792 
11793   // Record some information about near-misses that we have already seen, so
11794   // that we can avoid reporting redundant ones. For example, if there are
11795   // variants of an instruction that take 8- and 16-bit immediates, we want
11796   // to only report the widest one.
11797   std::multimap<unsigned, unsigned> OperandMissesSeen;
11798   SmallSet<FeatureBitset, 4> FeatureMissesSeen;
11799   bool ReportedTooFewOperands = false;
11800 
11801   // Process the near-misses in reverse order, so that we see more general ones
11802   // first, and so can avoid emitting more specific ones.
11803   for (NearMissInfo &I : reverse(NearMissesIn)) {
11804     switch (I.getKind()) {
11805     case NearMissInfo::NearMissOperand: {
11806       SMLoc OperandLoc =
11807           ((ARMOperand &)*Operands[I.getOperandIndex()]).getStartLoc();
11808       const char *OperandDiag =
11809           getCustomOperandDiag((ARMMatchResultTy)I.getOperandError());
11810 
11811       // If we have already emitted a message for a superclass, don't also report
11812       // the sub-class. We consider all operand classes that we don't have a
11813       // specialised diagnostic for to be equal for the propose of this check,
11814       // so that we don't report the generic error multiple times on the same
11815       // operand.
11816       unsigned DupCheckMatchClass = OperandDiag ? I.getOperandClass() : ~0U;
11817       auto PrevReports = OperandMissesSeen.equal_range(I.getOperandIndex());
11818       if (std::any_of(PrevReports.first, PrevReports.second,
11819                       [DupCheckMatchClass](
11820                           const std::pair<unsigned, unsigned> Pair) {
11821             if (DupCheckMatchClass == ~0U || Pair.second == ~0U)
11822               return Pair.second == DupCheckMatchClass;
11823             else
11824               return isSubclass((MatchClassKind)DupCheckMatchClass,
11825                                 (MatchClassKind)Pair.second);
11826           }))
11827         break;
11828       OperandMissesSeen.insert(
11829           std::make_pair(I.getOperandIndex(), DupCheckMatchClass));
11830 
11831       NearMissMessage Message;
11832       Message.Loc = OperandLoc;
11833       if (OperandDiag) {
11834         Message.Message = OperandDiag;
11835       } else if (I.getOperandClass() == InvalidMatchClass) {
11836         Message.Message = "too many operands for instruction";
11837       } else {
11838         Message.Message = "invalid operand for instruction";
11839         LLVM_DEBUG(
11840             dbgs() << "Missing diagnostic string for operand class "
11841                    << getMatchClassName((MatchClassKind)I.getOperandClass())
11842                    << I.getOperandClass() << ", error " << I.getOperandError()
11843                    << ", opcode " << MII.getName(I.getOpcode()) << "\n");
11844       }
11845       NearMissesOut.emplace_back(Message);
11846       break;
11847     }
11848     case NearMissInfo::NearMissFeature: {
11849       const FeatureBitset &MissingFeatures = I.getFeatures();
11850       // Don't report the same set of features twice.
11851       if (FeatureMissesSeen.count(MissingFeatures))
11852         break;
11853       FeatureMissesSeen.insert(MissingFeatures);
11854 
11855       // Special case: don't report a feature set which includes arm-mode for
11856       // targets that don't have ARM mode.
11857       if (MissingFeatures.test(Feature_IsARMBit) && !hasARM())
11858         break;
11859       // Don't report any near-misses that both require switching instruction
11860       // set, and adding other subtarget features.
11861       if (isThumb() && MissingFeatures.test(Feature_IsARMBit) &&
11862           MissingFeatures.count() > 1)
11863         break;
11864       if (!isThumb() && MissingFeatures.test(Feature_IsThumbBit) &&
11865           MissingFeatures.count() > 1)
11866         break;
11867       if (!isThumb() && MissingFeatures.test(Feature_IsThumb2Bit) &&
11868           (MissingFeatures & ~FeatureBitset({Feature_IsThumb2Bit,
11869                                              Feature_IsThumbBit})).any())
11870         break;
11871       if (isMClass() && MissingFeatures.test(Feature_HasNEONBit))
11872         break;
11873 
11874       NearMissMessage Message;
11875       Message.Loc = IDLoc;
11876       raw_svector_ostream OS(Message.Message);
11877 
11878       OS << "instruction requires:";
11879       for (unsigned i = 0, e = MissingFeatures.size(); i != e; ++i)
11880         if (MissingFeatures.test(i))
11881           OS << ' ' << getSubtargetFeatureName(i);
11882 
11883       NearMissesOut.emplace_back(Message);
11884 
11885       break;
11886     }
11887     case NearMissInfo::NearMissPredicate: {
11888       NearMissMessage Message;
11889       Message.Loc = IDLoc;
11890       switch (I.getPredicateError()) {
11891       case Match_RequiresNotITBlock:
11892         Message.Message = "flag setting instruction only valid outside IT block";
11893         break;
11894       case Match_RequiresITBlock:
11895         Message.Message = "instruction only valid inside IT block";
11896         break;
11897       case Match_RequiresV6:
11898         Message.Message = "instruction variant requires ARMv6 or later";
11899         break;
11900       case Match_RequiresThumb2:
11901         Message.Message = "instruction variant requires Thumb2";
11902         break;
11903       case Match_RequiresV8:
11904         Message.Message = "instruction variant requires ARMv8 or later";
11905         break;
11906       case Match_RequiresFlagSetting:
11907         Message.Message = "no flag-preserving variant of this instruction available";
11908         break;
11909       case Match_InvalidOperand:
11910         Message.Message = "invalid operand for instruction";
11911         break;
11912       default:
11913         llvm_unreachable("Unhandled target predicate error");
11914         break;
11915       }
11916       NearMissesOut.emplace_back(Message);
11917       break;
11918     }
11919     case NearMissInfo::NearMissTooFewOperands: {
11920       if (!ReportedTooFewOperands) {
11921         SMLoc EndLoc = ((ARMOperand &)*Operands.back()).getEndLoc();
11922         NearMissesOut.emplace_back(NearMissMessage{
11923             EndLoc, StringRef("too few operands for instruction")});
11924         ReportedTooFewOperands = true;
11925       }
11926       break;
11927     }
11928     case NearMissInfo::NoNearMiss:
11929       // This should never leave the matcher.
11930       llvm_unreachable("not a near-miss");
11931       break;
11932     }
11933   }
11934 }
11935 
11936 void ARMAsmParser::ReportNearMisses(SmallVectorImpl<NearMissInfo> &NearMisses,
11937                                     SMLoc IDLoc, OperandVector &Operands) {
11938   SmallVector<NearMissMessage, 4> Messages;
11939   FilterNearMisses(NearMisses, Messages, IDLoc, Operands);
11940 
11941   if (Messages.size() == 0) {
11942     // No near-misses were found, so the best we can do is "invalid
11943     // instruction".
11944     Error(IDLoc, "invalid instruction");
11945   } else if (Messages.size() == 1) {
11946     // One near miss was found, report it as the sole error.
11947     Error(Messages[0].Loc, Messages[0].Message);
11948   } else {
11949     // More than one near miss, so report a generic "invalid instruction"
11950     // error, followed by notes for each of the near-misses.
11951     Error(IDLoc, "invalid instruction, any one of the following would fix this:");
11952     for (auto &M : Messages) {
11953       Note(M.Loc, M.Message);
11954     }
11955   }
11956 }
11957 
11958 /// parseDirectiveArchExtension
11959 ///   ::= .arch_extension [no]feature
11960 bool ARMAsmParser::parseDirectiveArchExtension(SMLoc L) {
11961   // FIXME: This structure should be moved inside ARMTargetParser
11962   // when we start to table-generate them, and we can use the ARM
11963   // flags below, that were generated by table-gen.
11964   static const struct {
11965     const uint64_t Kind;
11966     const FeatureBitset ArchCheck;
11967     const FeatureBitset Features;
11968   } Extensions[] = {
11969     { ARM::AEK_CRC, {Feature_HasV8Bit}, {ARM::FeatureCRC} },
11970     { ARM::AEK_CRYPTO,  {Feature_HasV8Bit},
11971       {ARM::FeatureCrypto, ARM::FeatureNEON, ARM::FeatureFPARMv8} },
11972     { ARM::AEK_FP, {Feature_HasV8Bit},
11973       {ARM::FeatureVFP2_SP, ARM::FeatureFPARMv8} },
11974     { (ARM::AEK_HWDIVTHUMB | ARM::AEK_HWDIVARM),
11975       {Feature_HasV7Bit, Feature_IsNotMClassBit},
11976       {ARM::FeatureHWDivThumb, ARM::FeatureHWDivARM} },
11977     { ARM::AEK_MP, {Feature_HasV7Bit, Feature_IsNotMClassBit},
11978       {ARM::FeatureMP} },
11979     { ARM::AEK_SIMD, {Feature_HasV8Bit},
11980       {ARM::FeatureNEON, ARM::FeatureVFP2_SP, ARM::FeatureFPARMv8} },
11981     { ARM::AEK_SEC, {Feature_HasV6KBit}, {ARM::FeatureTrustZone} },
11982     // FIXME: Only available in A-class, isel not predicated
11983     { ARM::AEK_VIRT, {Feature_HasV7Bit}, {ARM::FeatureVirtualization} },
11984     { ARM::AEK_FP16, {Feature_HasV8_2aBit},
11985       {ARM::FeatureFPARMv8, ARM::FeatureFullFP16} },
11986     { ARM::AEK_RAS, {Feature_HasV8Bit}, {ARM::FeatureRAS} },
11987     { ARM::AEK_LOB, {Feature_HasV8_1MMainlineBit}, {ARM::FeatureLOB} },
11988     // FIXME: Unsupported extensions.
11989     { ARM::AEK_OS, {}, {} },
11990     { ARM::AEK_IWMMXT, {}, {} },
11991     { ARM::AEK_IWMMXT2, {}, {} },
11992     { ARM::AEK_MAVERICK, {}, {} },
11993     { ARM::AEK_XSCALE, {}, {} },
11994   };
11995 
11996   MCAsmParser &Parser = getParser();
11997 
11998   if (getLexer().isNot(AsmToken::Identifier))
11999     return Error(getLexer().getLoc(), "expected architecture extension name");
12000 
12001   StringRef Name = Parser.getTok().getString();
12002   SMLoc ExtLoc = Parser.getTok().getLoc();
12003   Lex();
12004 
12005   if (parseToken(AsmToken::EndOfStatement,
12006                  "unexpected token in '.arch_extension' directive"))
12007     return true;
12008 
12009   bool EnableFeature = true;
12010   if (Name.startswith_lower("no")) {
12011     EnableFeature = false;
12012     Name = Name.substr(2);
12013   }
12014   uint64_t FeatureKind = ARM::parseArchExt(Name);
12015   if (FeatureKind == ARM::AEK_INVALID)
12016     return Error(ExtLoc, "unknown architectural extension: " + Name);
12017 
12018   for (const auto &Extension : Extensions) {
12019     if (Extension.Kind != FeatureKind)
12020       continue;
12021 
12022     if (Extension.Features.none())
12023       return Error(ExtLoc, "unsupported architectural extension: " + Name);
12024 
12025     if ((getAvailableFeatures() & Extension.ArchCheck) != Extension.ArchCheck)
12026       return Error(ExtLoc, "architectural extension '" + Name +
12027                                "' is not "
12028                                "allowed for the current base architecture");
12029 
12030     MCSubtargetInfo &STI = copySTI();
12031     if (EnableFeature) {
12032       STI.SetFeatureBitsTransitively(Extension.Features);
12033     } else {
12034       STI.ClearFeatureBitsTransitively(Extension.Features);
12035     }
12036     FeatureBitset Features = ComputeAvailableFeatures(STI.getFeatureBits());
12037     setAvailableFeatures(Features);
12038     return false;
12039   }
12040 
12041   return Error(ExtLoc, "unknown architectural extension: " + Name);
12042 }
12043 
12044 // Define this matcher function after the auto-generated include so we
12045 // have the match class enum definitions.
12046 unsigned ARMAsmParser::validateTargetOperandClass(MCParsedAsmOperand &AsmOp,
12047                                                   unsigned Kind) {
12048   ARMOperand &Op = static_cast<ARMOperand &>(AsmOp);
12049   // If the kind is a token for a literal immediate, check if our asm
12050   // operand matches. This is for InstAliases which have a fixed-value
12051   // immediate in the syntax.
12052   switch (Kind) {
12053   default: break;
12054   case MCK__HASH_0:
12055     if (Op.isImm())
12056       if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Op.getImm()))
12057         if (CE->getValue() == 0)
12058           return Match_Success;
12059     break;
12060   case MCK__HASH_8:
12061     if (Op.isImm())
12062       if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Op.getImm()))
12063         if (CE->getValue() == 8)
12064           return Match_Success;
12065     break;
12066   case MCK__HASH_16:
12067     if (Op.isImm())
12068       if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Op.getImm()))
12069         if (CE->getValue() == 16)
12070           return Match_Success;
12071     break;
12072   case MCK_ModImm:
12073     if (Op.isImm()) {
12074       const MCExpr *SOExpr = Op.getImm();
12075       int64_t Value;
12076       if (!SOExpr->evaluateAsAbsolute(Value))
12077         return Match_Success;
12078       assert((Value >= std::numeric_limits<int32_t>::min() &&
12079               Value <= std::numeric_limits<uint32_t>::max()) &&
12080              "expression value must be representable in 32 bits");
12081     }
12082     break;
12083   case MCK_rGPR:
12084     if (hasV8Ops() && Op.isReg() && Op.getReg() == ARM::SP)
12085       return Match_Success;
12086     return Match_rGPR;
12087   case MCK_GPRPair:
12088     if (Op.isReg() &&
12089         MRI->getRegClass(ARM::GPRRegClassID).contains(Op.getReg()))
12090       return Match_Success;
12091     break;
12092   }
12093   return Match_InvalidOperand;
12094 }
12095 
12096 bool ARMAsmParser::isMnemonicVPTPredicable(StringRef Mnemonic,
12097                                            StringRef ExtraToken) {
12098   if (!hasMVE())
12099     return false;
12100 
12101   return Mnemonic.startswith("vabav") || Mnemonic.startswith("vaddv") ||
12102          Mnemonic.startswith("vaddlv") || Mnemonic.startswith("vminnmv") ||
12103          Mnemonic.startswith("vminnmav") || Mnemonic.startswith("vminv") ||
12104          Mnemonic.startswith("vminav") || Mnemonic.startswith("vmaxnmv") ||
12105          Mnemonic.startswith("vmaxnmav") || Mnemonic.startswith("vmaxv") ||
12106          Mnemonic.startswith("vmaxav") || Mnemonic.startswith("vmladav") ||
12107          Mnemonic.startswith("vrmlaldavh") || Mnemonic.startswith("vrmlalvh") ||
12108          Mnemonic.startswith("vmlsdav") || Mnemonic.startswith("vmlav") ||
12109          Mnemonic.startswith("vmlaldav") || Mnemonic.startswith("vmlalv") ||
12110          Mnemonic.startswith("vmaxnm") || Mnemonic.startswith("vminnm") ||
12111          Mnemonic.startswith("vmax") || Mnemonic.startswith("vmin") ||
12112          Mnemonic.startswith("vshlc") || Mnemonic.startswith("vmovlt") ||
12113          Mnemonic.startswith("vmovlb") || Mnemonic.startswith("vshll") ||
12114          Mnemonic.startswith("vrshrn") || Mnemonic.startswith("vshrn") ||
12115          Mnemonic.startswith("vqrshrun") || Mnemonic.startswith("vqshrun") ||
12116          Mnemonic.startswith("vqrshrn") || Mnemonic.startswith("vqshrn") ||
12117          Mnemonic.startswith("vbic") || Mnemonic.startswith("vrev64") ||
12118          Mnemonic.startswith("vrev32") || Mnemonic.startswith("vrev16") ||
12119          Mnemonic.startswith("vmvn") || Mnemonic.startswith("veor") ||
12120          Mnemonic.startswith("vorn") || Mnemonic.startswith("vorr") ||
12121          Mnemonic.startswith("vand") || Mnemonic.startswith("vmul") ||
12122          Mnemonic.startswith("vqrdmulh") || Mnemonic.startswith("vqdmulh") ||
12123          Mnemonic.startswith("vsub") || Mnemonic.startswith("vadd") ||
12124          Mnemonic.startswith("vqsub") || Mnemonic.startswith("vqadd") ||
12125          Mnemonic.startswith("vabd") || Mnemonic.startswith("vrhadd") ||
12126          Mnemonic.startswith("vhsub") || Mnemonic.startswith("vhadd") ||
12127          Mnemonic.startswith("vdup") || Mnemonic.startswith("vcls") ||
12128          Mnemonic.startswith("vclz") || Mnemonic.startswith("vneg") ||
12129          Mnemonic.startswith("vabs") || Mnemonic.startswith("vqneg") ||
12130          Mnemonic.startswith("vqabs") ||
12131          (Mnemonic.startswith("vrint") && Mnemonic != "vrintr") ||
12132          Mnemonic.startswith("vcmla") || Mnemonic.startswith("vfma") ||
12133          Mnemonic.startswith("vfms") || Mnemonic.startswith("vcadd") ||
12134          Mnemonic.startswith("vadd") || Mnemonic.startswith("vsub") ||
12135          Mnemonic.startswith("vshl") || Mnemonic.startswith("vqshl") ||
12136          Mnemonic.startswith("vqrshl") || Mnemonic.startswith("vrshl") ||
12137          Mnemonic.startswith("vsri") || Mnemonic.startswith("vsli") ||
12138          Mnemonic.startswith("vrshr") || Mnemonic.startswith("vshr") ||
12139          Mnemonic.startswith("vpsel") || Mnemonic.startswith("vcmp") ||
12140          Mnemonic.startswith("vqdmladh") || Mnemonic.startswith("vqrdmladh") ||
12141          Mnemonic.startswith("vqdmlsdh") || Mnemonic.startswith("vqrdmlsdh") ||
12142          Mnemonic.startswith("vcmul") || Mnemonic.startswith("vrmulh") ||
12143          Mnemonic.startswith("vqmovn") || Mnemonic.startswith("vqmovun") ||
12144          Mnemonic.startswith("vmovnt") || Mnemonic.startswith("vmovnb") ||
12145          Mnemonic.startswith("vmaxa") || Mnemonic.startswith("vmaxnma") ||
12146          Mnemonic.startswith("vhcadd") || Mnemonic.startswith("vadc") ||
12147          Mnemonic.startswith("vsbc") || Mnemonic.startswith("vrshr") ||
12148          Mnemonic.startswith("vshr") || Mnemonic.startswith("vstrb") ||
12149          Mnemonic.startswith("vldrb") ||
12150          (Mnemonic.startswith("vstrh") && Mnemonic != "vstrhi") ||
12151          (Mnemonic.startswith("vldrh") && Mnemonic != "vldrhi") ||
12152          Mnemonic.startswith("vstrw") || Mnemonic.startswith("vldrw") ||
12153          Mnemonic.startswith("vldrd") || Mnemonic.startswith("vstrd") ||
12154          Mnemonic.startswith("vqdmull") || Mnemonic.startswith("vbrsr") ||
12155          Mnemonic.startswith("vfmas") || Mnemonic.startswith("vmlas") ||
12156          Mnemonic.startswith("vmla") || Mnemonic.startswith("vqdmlash") ||
12157          Mnemonic.startswith("vqdmlah") || Mnemonic.startswith("vqrdmlash") ||
12158          Mnemonic.startswith("vqrdmlah") || Mnemonic.startswith("viwdup") ||
12159          Mnemonic.startswith("vdwdup") || Mnemonic.startswith("vidup") ||
12160          Mnemonic.startswith("vddup") || Mnemonic.startswith("vctp") ||
12161          Mnemonic.startswith("vpnot") || Mnemonic.startswith("vbic") ||
12162          Mnemonic.startswith("vrmlsldavh") || Mnemonic.startswith("vmlsldav") ||
12163          Mnemonic.startswith("vcvt") ||
12164          MS.isVPTPredicableCDEInstr(Mnemonic) ||
12165          (Mnemonic.startswith("vmov") &&
12166           !(ExtraToken == ".f16" || ExtraToken == ".32" ||
12167             ExtraToken == ".16" || ExtraToken == ".8"));
12168 }
12169