1 //===-- ARMAsmParser.cpp - Parse ARM assembly to MCInst instructions ------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 #include "ARMFeatures.h" 11 #include "MCTargetDesc/ARMAddressingModes.h" 12 #include "MCTargetDesc/ARMBaseInfo.h" 13 #include "MCTargetDesc/ARMMCExpr.h" 14 #include "llvm/ADT/STLExtras.h" 15 #include "llvm/ADT/SmallVector.h" 16 #include "llvm/ADT/StringExtras.h" 17 #include "llvm/ADT/StringSwitch.h" 18 #include "llvm/ADT/Triple.h" 19 #include "llvm/ADT/Twine.h" 20 #include "llvm/MC/MCAsmInfo.h" 21 #include "llvm/MC/MCAssembler.h" 22 #include "llvm/MC/MCContext.h" 23 #include "llvm/MC/MCDisassembler/MCDisassembler.h" 24 #include "llvm/MC/MCELFStreamer.h" 25 #include "llvm/MC/MCExpr.h" 26 #include "llvm/MC/MCInst.h" 27 #include "llvm/MC/MCInstrDesc.h" 28 #include "llvm/MC/MCInstrInfo.h" 29 #include "llvm/MC/MCObjectFileInfo.h" 30 #include "llvm/MC/MCParser/MCAsmLexer.h" 31 #include "llvm/MC/MCParser/MCAsmParser.h" 32 #include "llvm/MC/MCParser/MCAsmParserUtils.h" 33 #include "llvm/MC/MCParser/MCParsedAsmOperand.h" 34 #include "llvm/MC/MCParser/MCTargetAsmParser.h" 35 #include "llvm/MC/MCRegisterInfo.h" 36 #include "llvm/MC/MCSection.h" 37 #include "llvm/MC/MCStreamer.h" 38 #include "llvm/MC/MCSubtargetInfo.h" 39 #include "llvm/MC/MCSymbol.h" 40 #include "llvm/Support/ARMBuildAttributes.h" 41 #include "llvm/Support/ARMEHABI.h" 42 #include "llvm/Support/COFF.h" 43 #include "llvm/Support/CommandLine.h" 44 #include "llvm/Support/Debug.h" 45 #include "llvm/Support/ELF.h" 46 #include "llvm/Support/MathExtras.h" 47 #include "llvm/Support/SourceMgr.h" 48 #include "llvm/Support/TargetParser.h" 49 #include "llvm/Support/TargetRegistry.h" 50 #include "llvm/Support/raw_ostream.h" 51 52 using namespace llvm; 53 54 namespace { 55 56 enum class ImplicitItModeTy { Always, Never, ARMOnly, ThumbOnly }; 57 58 static cl::opt<ImplicitItModeTy> ImplicitItMode( 59 "arm-implicit-it", cl::init(ImplicitItModeTy::ARMOnly), 60 cl::desc("Allow conditional instructions outdside of an IT block"), 61 cl::values(clEnumValN(ImplicitItModeTy::Always, "always", 62 "Accept in both ISAs, emit implicit ITs in Thumb"), 63 clEnumValN(ImplicitItModeTy::Never, "never", 64 "Warn in ARM, reject in Thumb"), 65 clEnumValN(ImplicitItModeTy::ARMOnly, "arm", 66 "Accept in ARM, reject in Thumb"), 67 clEnumValN(ImplicitItModeTy::ThumbOnly, "thumb", 68 "Warn in ARM, emit implicit ITs in Thumb"), 69 clEnumValEnd)); 70 71 class ARMOperand; 72 73 enum VectorLaneTy { NoLanes, AllLanes, IndexedLane }; 74 75 class UnwindContext { 76 MCAsmParser &Parser; 77 78 typedef SmallVector<SMLoc, 4> Locs; 79 80 Locs FnStartLocs; 81 Locs CantUnwindLocs; 82 Locs PersonalityLocs; 83 Locs PersonalityIndexLocs; 84 Locs HandlerDataLocs; 85 int FPReg; 86 87 public: 88 UnwindContext(MCAsmParser &P) : Parser(P), FPReg(ARM::SP) {} 89 90 bool hasFnStart() const { return !FnStartLocs.empty(); } 91 bool cantUnwind() const { return !CantUnwindLocs.empty(); } 92 bool hasHandlerData() const { return !HandlerDataLocs.empty(); } 93 bool hasPersonality() const { 94 return !(PersonalityLocs.empty() && PersonalityIndexLocs.empty()); 95 } 96 97 void recordFnStart(SMLoc L) { FnStartLocs.push_back(L); } 98 void recordCantUnwind(SMLoc L) { CantUnwindLocs.push_back(L); } 99 void recordPersonality(SMLoc L) { PersonalityLocs.push_back(L); } 100 void recordHandlerData(SMLoc L) { HandlerDataLocs.push_back(L); } 101 void recordPersonalityIndex(SMLoc L) { PersonalityIndexLocs.push_back(L); } 102 103 void saveFPReg(int Reg) { FPReg = Reg; } 104 int getFPReg() const { return FPReg; } 105 106 void emitFnStartLocNotes() const { 107 for (Locs::const_iterator FI = FnStartLocs.begin(), FE = FnStartLocs.end(); 108 FI != FE; ++FI) 109 Parser.Note(*FI, ".fnstart was specified here"); 110 } 111 void emitCantUnwindLocNotes() const { 112 for (Locs::const_iterator UI = CantUnwindLocs.begin(), 113 UE = CantUnwindLocs.end(); UI != UE; ++UI) 114 Parser.Note(*UI, ".cantunwind was specified here"); 115 } 116 void emitHandlerDataLocNotes() const { 117 for (Locs::const_iterator HI = HandlerDataLocs.begin(), 118 HE = HandlerDataLocs.end(); HI != HE; ++HI) 119 Parser.Note(*HI, ".handlerdata was specified here"); 120 } 121 void emitPersonalityLocNotes() const { 122 for (Locs::const_iterator PI = PersonalityLocs.begin(), 123 PE = PersonalityLocs.end(), 124 PII = PersonalityIndexLocs.begin(), 125 PIE = PersonalityIndexLocs.end(); 126 PI != PE || PII != PIE;) { 127 if (PI != PE && (PII == PIE || PI->getPointer() < PII->getPointer())) 128 Parser.Note(*PI++, ".personality was specified here"); 129 else if (PII != PIE && (PI == PE || PII->getPointer() < PI->getPointer())) 130 Parser.Note(*PII++, ".personalityindex was specified here"); 131 else 132 llvm_unreachable(".personality and .personalityindex cannot be " 133 "at the same location"); 134 } 135 } 136 137 void reset() { 138 FnStartLocs = Locs(); 139 CantUnwindLocs = Locs(); 140 PersonalityLocs = Locs(); 141 HandlerDataLocs = Locs(); 142 PersonalityIndexLocs = Locs(); 143 FPReg = ARM::SP; 144 } 145 }; 146 147 class ARMAsmParser : public MCTargetAsmParser { 148 const MCInstrInfo &MII; 149 const MCRegisterInfo *MRI; 150 UnwindContext UC; 151 152 ARMTargetStreamer &getTargetStreamer() { 153 assert(getParser().getStreamer().getTargetStreamer() && 154 "do not have a target streamer"); 155 MCTargetStreamer &TS = *getParser().getStreamer().getTargetStreamer(); 156 return static_cast<ARMTargetStreamer &>(TS); 157 } 158 159 // Map of register aliases registers via the .req directive. 160 StringMap<unsigned> RegisterReqs; 161 162 bool NextSymbolIsThumb; 163 164 bool useImplicitITThumb() const { 165 return ImplicitItMode == ImplicitItModeTy::Always || 166 ImplicitItMode == ImplicitItModeTy::ThumbOnly; 167 } 168 169 bool useImplicitITARM() const { 170 return ImplicitItMode == ImplicitItModeTy::Always || 171 ImplicitItMode == ImplicitItModeTy::ARMOnly; 172 } 173 174 struct { 175 ARMCC::CondCodes Cond; // Condition for IT block. 176 unsigned Mask:4; // Condition mask for instructions. 177 // Starting at first 1 (from lsb). 178 // '1' condition as indicated in IT. 179 // '0' inverse of condition (else). 180 // Count of instructions in IT block is 181 // 4 - trailingzeroes(mask) 182 // Note that this does not have the same encoding 183 // as in the IT instruction, which also depends 184 // on the low bit of the condition code. 185 186 unsigned CurPosition; // Current position in parsing of IT 187 // block. In range [0,4], with 0 being the IT 188 // instruction itself. Initialized according to 189 // count of instructions in block. ~0U if no 190 // active IT block. 191 192 bool IsExplicit; // true - The IT instruction was present in the 193 // input, we should not modify it. 194 // false - The IT instruction was added 195 // implicitly, we can extend it if that 196 // would be legal. 197 } ITState; 198 199 llvm::SmallVector<MCInst, 4> PendingConditionalInsts; 200 201 void flushPendingInstructions(MCStreamer &Out) override { 202 if (!inImplicitITBlock()) { 203 assert(PendingConditionalInsts.size() == 0); 204 return; 205 } 206 207 // Emit the IT instruction 208 unsigned Mask = getITMaskEncoding(); 209 MCInst ITInst; 210 ITInst.setOpcode(ARM::t2IT); 211 ITInst.addOperand(MCOperand::createImm(ITState.Cond)); 212 ITInst.addOperand(MCOperand::createImm(Mask)); 213 Out.EmitInstruction(ITInst, getSTI()); 214 215 // Emit the conditonal instructions 216 assert(PendingConditionalInsts.size() <= 4); 217 for (const MCInst &Inst : PendingConditionalInsts) { 218 Out.EmitInstruction(Inst, getSTI()); 219 } 220 PendingConditionalInsts.clear(); 221 222 // Clear the IT state 223 ITState.Mask = 0; 224 ITState.CurPosition = ~0U; 225 } 226 227 bool inITBlock() { return ITState.CurPosition != ~0U; } 228 bool inExplicitITBlock() { return inITBlock() && ITState.IsExplicit; } 229 bool inImplicitITBlock() { return inITBlock() && !ITState.IsExplicit; } 230 bool lastInITBlock() { 231 return ITState.CurPosition == 4 - countTrailingZeros(ITState.Mask); 232 } 233 void forwardITPosition() { 234 if (!inITBlock()) return; 235 // Move to the next instruction in the IT block, if there is one. If not, 236 // mark the block as done, except for implicit IT blocks, which we leave 237 // open until we find an instruction that can't be added to it. 238 unsigned TZ = countTrailingZeros(ITState.Mask); 239 if (++ITState.CurPosition == 5 - TZ && ITState.IsExplicit) 240 ITState.CurPosition = ~0U; // Done with the IT block after this. 241 } 242 243 // Rewind the state of the current IT block, removing the last slot from it. 244 void rewindImplicitITPosition() { 245 assert(inImplicitITBlock()); 246 assert(ITState.CurPosition > 1); 247 ITState.CurPosition--; 248 unsigned TZ = countTrailingZeros(ITState.Mask); 249 unsigned NewMask = 0; 250 NewMask |= ITState.Mask & (0xC << TZ); 251 NewMask |= 0x2 << TZ; 252 ITState.Mask = NewMask; 253 } 254 255 // Rewind the state of the current IT block, removing the last slot from it. 256 // If we were at the first slot, this closes the IT block. 257 void discardImplicitITBlock() { 258 assert(inImplicitITBlock()); 259 assert(ITState.CurPosition == 1); 260 ITState.CurPosition = ~0U; 261 return; 262 } 263 264 // Get the encoding of the IT mask, as it will appear in an IT instruction. 265 unsigned getITMaskEncoding() { 266 assert(inITBlock()); 267 unsigned Mask = ITState.Mask; 268 unsigned TZ = countTrailingZeros(Mask); 269 if ((ITState.Cond & 1) == 0) { 270 assert(Mask && TZ <= 3 && "illegal IT mask value!"); 271 Mask ^= (0xE << TZ) & 0xF; 272 } 273 return Mask; 274 } 275 276 // Get the condition code corresponding to the current IT block slot. 277 ARMCC::CondCodes currentITCond() { 278 unsigned MaskBit; 279 if (ITState.CurPosition == 1) 280 MaskBit = 1; 281 else 282 MaskBit = (ITState.Mask >> (5 - ITState.CurPosition)) & 1; 283 284 return MaskBit ? ITState.Cond : ARMCC::getOppositeCondition(ITState.Cond); 285 } 286 287 // Invert the condition of the current IT block slot without changing any 288 // other slots in the same block. 289 void invertCurrentITCondition() { 290 if (ITState.CurPosition == 1) { 291 ITState.Cond = ARMCC::getOppositeCondition(ITState.Cond); 292 } else { 293 ITState.Mask ^= 1 << (5 - ITState.CurPosition); 294 } 295 } 296 297 // Returns true if the current IT block is full (all 4 slots used). 298 bool isITBlockFull() { 299 return inITBlock() && (ITState.Mask & 1); 300 } 301 302 // Extend the current implicit IT block to have one more slot with the given 303 // condition code. 304 void extendImplicitITBlock(ARMCC::CondCodes Cond) { 305 assert(inImplicitITBlock()); 306 assert(!isITBlockFull()); 307 assert(Cond == ITState.Cond || 308 Cond == ARMCC::getOppositeCondition(ITState.Cond)); 309 unsigned TZ = countTrailingZeros(ITState.Mask); 310 unsigned NewMask = 0; 311 // Keep any existing condition bits. 312 NewMask |= ITState.Mask & (0xE << TZ); 313 // Insert the new condition bit. 314 NewMask |= (Cond == ITState.Cond) << TZ; 315 // Move the trailing 1 down one bit. 316 NewMask |= 1 << (TZ - 1); 317 ITState.Mask = NewMask; 318 } 319 320 // Create a new implicit IT block with a dummy condition code. 321 void startImplicitITBlock() { 322 assert(!inITBlock()); 323 ITState.Cond = ARMCC::AL; 324 ITState.Mask = 8; 325 ITState.CurPosition = 1; 326 ITState.IsExplicit = false; 327 return; 328 } 329 330 // Create a new explicit IT block with the given condition and mask. The mask 331 // should be in the parsed format, with a 1 implying 't', regardless of the 332 // low bit of the condition. 333 void startExplicitITBlock(ARMCC::CondCodes Cond, unsigned Mask) { 334 assert(!inITBlock()); 335 ITState.Cond = Cond; 336 ITState.Mask = Mask; 337 ITState.CurPosition = 0; 338 ITState.IsExplicit = true; 339 return; 340 } 341 342 void Note(SMLoc L, const Twine &Msg, SMRange Range = None) { 343 return getParser().Note(L, Msg, Range); 344 } 345 bool Warning(SMLoc L, const Twine &Msg, SMRange Range = None) { 346 return getParser().Warning(L, Msg, Range); 347 } 348 bool Error(SMLoc L, const Twine &Msg, SMRange Range = None) { 349 return getParser().Error(L, Msg, Range); 350 } 351 352 bool validatetLDMRegList(const MCInst &Inst, const OperandVector &Operands, 353 unsigned ListNo, bool IsARPop = false); 354 bool validatetSTMRegList(const MCInst &Inst, const OperandVector &Operands, 355 unsigned ListNo); 356 357 int tryParseRegister(); 358 bool tryParseRegisterWithWriteBack(OperandVector &); 359 int tryParseShiftRegister(OperandVector &); 360 bool parseRegisterList(OperandVector &); 361 bool parseMemory(OperandVector &); 362 bool parseOperand(OperandVector &, StringRef Mnemonic); 363 bool parsePrefix(ARMMCExpr::VariantKind &RefKind); 364 bool parseMemRegOffsetShift(ARM_AM::ShiftOpc &ShiftType, 365 unsigned &ShiftAmount); 366 bool parseLiteralValues(unsigned Size, SMLoc L); 367 bool parseDirectiveThumb(SMLoc L); 368 bool parseDirectiveARM(SMLoc L); 369 bool parseDirectiveThumbFunc(SMLoc L); 370 bool parseDirectiveCode(SMLoc L); 371 bool parseDirectiveSyntax(SMLoc L); 372 bool parseDirectiveReq(StringRef Name, SMLoc L); 373 bool parseDirectiveUnreq(SMLoc L); 374 bool parseDirectiveArch(SMLoc L); 375 bool parseDirectiveEabiAttr(SMLoc L); 376 bool parseDirectiveCPU(SMLoc L); 377 bool parseDirectiveFPU(SMLoc L); 378 bool parseDirectiveFnStart(SMLoc L); 379 bool parseDirectiveFnEnd(SMLoc L); 380 bool parseDirectiveCantUnwind(SMLoc L); 381 bool parseDirectivePersonality(SMLoc L); 382 bool parseDirectiveHandlerData(SMLoc L); 383 bool parseDirectiveSetFP(SMLoc L); 384 bool parseDirectivePad(SMLoc L); 385 bool parseDirectiveRegSave(SMLoc L, bool IsVector); 386 bool parseDirectiveInst(SMLoc L, char Suffix = '\0'); 387 bool parseDirectiveLtorg(SMLoc L); 388 bool parseDirectiveEven(SMLoc L); 389 bool parseDirectivePersonalityIndex(SMLoc L); 390 bool parseDirectiveUnwindRaw(SMLoc L); 391 bool parseDirectiveTLSDescSeq(SMLoc L); 392 bool parseDirectiveMovSP(SMLoc L); 393 bool parseDirectiveObjectArch(SMLoc L); 394 bool parseDirectiveArchExtension(SMLoc L); 395 bool parseDirectiveAlign(SMLoc L); 396 bool parseDirectiveThumbSet(SMLoc L); 397 398 StringRef splitMnemonic(StringRef Mnemonic, unsigned &PredicationCode, 399 bool &CarrySetting, unsigned &ProcessorIMod, 400 StringRef &ITMask); 401 void getMnemonicAcceptInfo(StringRef Mnemonic, StringRef FullInst, 402 bool &CanAcceptCarrySet, 403 bool &CanAcceptPredicationCode); 404 405 void tryConvertingToTwoOperandForm(StringRef Mnemonic, bool CarrySetting, 406 OperandVector &Operands); 407 bool isThumb() const { 408 // FIXME: Can tablegen auto-generate this? 409 return getSTI().getFeatureBits()[ARM::ModeThumb]; 410 } 411 bool isThumbOne() const { 412 return isThumb() && !getSTI().getFeatureBits()[ARM::FeatureThumb2]; 413 } 414 bool isThumbTwo() const { 415 return isThumb() && getSTI().getFeatureBits()[ARM::FeatureThumb2]; 416 } 417 bool hasThumb() const { 418 return getSTI().getFeatureBits()[ARM::HasV4TOps]; 419 } 420 bool hasThumb2() const { 421 return getSTI().getFeatureBits()[ARM::FeatureThumb2]; 422 } 423 bool hasV6Ops() const { 424 return getSTI().getFeatureBits()[ARM::HasV6Ops]; 425 } 426 bool hasV6T2Ops() const { 427 return getSTI().getFeatureBits()[ARM::HasV6T2Ops]; 428 } 429 bool hasV6MOps() const { 430 return getSTI().getFeatureBits()[ARM::HasV6MOps]; 431 } 432 bool hasV7Ops() const { 433 return getSTI().getFeatureBits()[ARM::HasV7Ops]; 434 } 435 bool hasV8Ops() const { 436 return getSTI().getFeatureBits()[ARM::HasV8Ops]; 437 } 438 bool hasV8MBaseline() const { 439 return getSTI().getFeatureBits()[ARM::HasV8MBaselineOps]; 440 } 441 bool hasV8MMainline() const { 442 return getSTI().getFeatureBits()[ARM::HasV8MMainlineOps]; 443 } 444 bool has8MSecExt() const { 445 return getSTI().getFeatureBits()[ARM::Feature8MSecExt]; 446 } 447 bool hasARM() const { 448 return !getSTI().getFeatureBits()[ARM::FeatureNoARM]; 449 } 450 bool hasDSP() const { 451 return getSTI().getFeatureBits()[ARM::FeatureDSP]; 452 } 453 bool hasD16() const { 454 return getSTI().getFeatureBits()[ARM::FeatureD16]; 455 } 456 bool hasV8_1aOps() const { 457 return getSTI().getFeatureBits()[ARM::HasV8_1aOps]; 458 } 459 bool hasRAS() const { 460 return getSTI().getFeatureBits()[ARM::FeatureRAS]; 461 } 462 463 void SwitchMode() { 464 MCSubtargetInfo &STI = copySTI(); 465 uint64_t FB = ComputeAvailableFeatures(STI.ToggleFeature(ARM::ModeThumb)); 466 setAvailableFeatures(FB); 467 } 468 void FixModeAfterArchChange(bool WasThumb, SMLoc Loc); 469 bool isMClass() const { 470 return getSTI().getFeatureBits()[ARM::FeatureMClass]; 471 } 472 473 /// @name Auto-generated Match Functions 474 /// { 475 476 #define GET_ASSEMBLER_HEADER 477 #include "ARMGenAsmMatcher.inc" 478 479 /// } 480 481 OperandMatchResultTy parseITCondCode(OperandVector &); 482 OperandMatchResultTy parseCoprocNumOperand(OperandVector &); 483 OperandMatchResultTy parseCoprocRegOperand(OperandVector &); 484 OperandMatchResultTy parseCoprocOptionOperand(OperandVector &); 485 OperandMatchResultTy parseMemBarrierOptOperand(OperandVector &); 486 OperandMatchResultTy parseInstSyncBarrierOptOperand(OperandVector &); 487 OperandMatchResultTy parseProcIFlagsOperand(OperandVector &); 488 OperandMatchResultTy parseMSRMaskOperand(OperandVector &); 489 OperandMatchResultTy parseBankedRegOperand(OperandVector &); 490 OperandMatchResultTy parsePKHImm(OperandVector &O, StringRef Op, int Low, 491 int High); 492 OperandMatchResultTy parsePKHLSLImm(OperandVector &O) { 493 return parsePKHImm(O, "lsl", 0, 31); 494 } 495 OperandMatchResultTy parsePKHASRImm(OperandVector &O) { 496 return parsePKHImm(O, "asr", 1, 32); 497 } 498 OperandMatchResultTy parseSetEndImm(OperandVector &); 499 OperandMatchResultTy parseShifterImm(OperandVector &); 500 OperandMatchResultTy parseRotImm(OperandVector &); 501 OperandMatchResultTy parseModImm(OperandVector &); 502 OperandMatchResultTy parseBitfield(OperandVector &); 503 OperandMatchResultTy parsePostIdxReg(OperandVector &); 504 OperandMatchResultTy parseAM3Offset(OperandVector &); 505 OperandMatchResultTy parseFPImm(OperandVector &); 506 OperandMatchResultTy parseVectorList(OperandVector &); 507 OperandMatchResultTy parseVectorLane(VectorLaneTy &LaneKind, unsigned &Index, 508 SMLoc &EndLoc); 509 510 // Asm Match Converter Methods 511 void cvtThumbMultiply(MCInst &Inst, const OperandVector &); 512 void cvtThumbBranches(MCInst &Inst, const OperandVector &); 513 514 bool validateInstruction(MCInst &Inst, const OperandVector &Ops); 515 bool processInstruction(MCInst &Inst, const OperandVector &Ops, MCStreamer &Out); 516 bool shouldOmitCCOutOperand(StringRef Mnemonic, OperandVector &Operands); 517 bool shouldOmitPredicateOperand(StringRef Mnemonic, OperandVector &Operands); 518 bool isITBlockTerminator(MCInst &Inst) const; 519 520 public: 521 enum ARMMatchResultTy { 522 Match_RequiresITBlock = FIRST_TARGET_MATCH_RESULT_TY, 523 Match_RequiresNotITBlock, 524 Match_RequiresV6, 525 Match_RequiresThumb2, 526 Match_RequiresV8, 527 #define GET_OPERAND_DIAGNOSTIC_TYPES 528 #include "ARMGenAsmMatcher.inc" 529 530 }; 531 532 ARMAsmParser(const MCSubtargetInfo &STI, MCAsmParser &Parser, 533 const MCInstrInfo &MII, const MCTargetOptions &Options) 534 : MCTargetAsmParser(Options, STI), MII(MII), UC(Parser) { 535 MCAsmParserExtension::Initialize(Parser); 536 537 // Cache the MCRegisterInfo. 538 MRI = getContext().getRegisterInfo(); 539 540 // Initialize the set of available features. 541 setAvailableFeatures(ComputeAvailableFeatures(STI.getFeatureBits())); 542 543 // Not in an ITBlock to start with. 544 ITState.CurPosition = ~0U; 545 546 NextSymbolIsThumb = false; 547 } 548 549 // Implementation of the MCTargetAsmParser interface: 550 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override; 551 bool ParseInstruction(ParseInstructionInfo &Info, StringRef Name, 552 SMLoc NameLoc, OperandVector &Operands) override; 553 bool ParseDirective(AsmToken DirectiveID) override; 554 555 unsigned validateTargetOperandClass(MCParsedAsmOperand &Op, 556 unsigned Kind) override; 557 unsigned checkTargetMatchPredicate(MCInst &Inst) override; 558 559 bool MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode, 560 OperandVector &Operands, MCStreamer &Out, 561 uint64_t &ErrorInfo, 562 bool MatchingInlineAsm) override; 563 unsigned MatchInstruction(OperandVector &Operands, MCInst &Inst, 564 uint64_t &ErrorInfo, bool MatchingInlineAsm, 565 bool &EmitInITBlock, MCStreamer &Out); 566 void onLabelParsed(MCSymbol *Symbol) override; 567 }; 568 } // end anonymous namespace 569 570 namespace { 571 572 /// ARMOperand - Instances of this class represent a parsed ARM machine 573 /// operand. 574 class ARMOperand : public MCParsedAsmOperand { 575 enum KindTy { 576 k_CondCode, 577 k_CCOut, 578 k_ITCondMask, 579 k_CoprocNum, 580 k_CoprocReg, 581 k_CoprocOption, 582 k_Immediate, 583 k_MemBarrierOpt, 584 k_InstSyncBarrierOpt, 585 k_Memory, 586 k_PostIndexRegister, 587 k_MSRMask, 588 k_BankedReg, 589 k_ProcIFlags, 590 k_VectorIndex, 591 k_Register, 592 k_RegisterList, 593 k_DPRRegisterList, 594 k_SPRRegisterList, 595 k_VectorList, 596 k_VectorListAllLanes, 597 k_VectorListIndexed, 598 k_ShiftedRegister, 599 k_ShiftedImmediate, 600 k_ShifterImmediate, 601 k_RotateImmediate, 602 k_ModifiedImmediate, 603 k_ConstantPoolImmediate, 604 k_BitfieldDescriptor, 605 k_Token, 606 } Kind; 607 608 SMLoc StartLoc, EndLoc, AlignmentLoc; 609 SmallVector<unsigned, 8> Registers; 610 611 struct CCOp { 612 ARMCC::CondCodes Val; 613 }; 614 615 struct CopOp { 616 unsigned Val; 617 }; 618 619 struct CoprocOptionOp { 620 unsigned Val; 621 }; 622 623 struct ITMaskOp { 624 unsigned Mask:4; 625 }; 626 627 struct MBOptOp { 628 ARM_MB::MemBOpt Val; 629 }; 630 631 struct ISBOptOp { 632 ARM_ISB::InstSyncBOpt Val; 633 }; 634 635 struct IFlagsOp { 636 ARM_PROC::IFlags Val; 637 }; 638 639 struct MMaskOp { 640 unsigned Val; 641 }; 642 643 struct BankedRegOp { 644 unsigned Val; 645 }; 646 647 struct TokOp { 648 const char *Data; 649 unsigned Length; 650 }; 651 652 struct RegOp { 653 unsigned RegNum; 654 }; 655 656 // A vector register list is a sequential list of 1 to 4 registers. 657 struct VectorListOp { 658 unsigned RegNum; 659 unsigned Count; 660 unsigned LaneIndex; 661 bool isDoubleSpaced; 662 }; 663 664 struct VectorIndexOp { 665 unsigned Val; 666 }; 667 668 struct ImmOp { 669 const MCExpr *Val; 670 }; 671 672 /// Combined record for all forms of ARM address expressions. 673 struct MemoryOp { 674 unsigned BaseRegNum; 675 // Offset is in OffsetReg or OffsetImm. If both are zero, no offset 676 // was specified. 677 const MCConstantExpr *OffsetImm; // Offset immediate value 678 unsigned OffsetRegNum; // Offset register num, when OffsetImm == NULL 679 ARM_AM::ShiftOpc ShiftType; // Shift type for OffsetReg 680 unsigned ShiftImm; // shift for OffsetReg. 681 unsigned Alignment; // 0 = no alignment specified 682 // n = alignment in bytes (2, 4, 8, 16, or 32) 683 unsigned isNegative : 1; // Negated OffsetReg? (~'U' bit) 684 }; 685 686 struct PostIdxRegOp { 687 unsigned RegNum; 688 bool isAdd; 689 ARM_AM::ShiftOpc ShiftTy; 690 unsigned ShiftImm; 691 }; 692 693 struct ShifterImmOp { 694 bool isASR; 695 unsigned Imm; 696 }; 697 698 struct RegShiftedRegOp { 699 ARM_AM::ShiftOpc ShiftTy; 700 unsigned SrcReg; 701 unsigned ShiftReg; 702 unsigned ShiftImm; 703 }; 704 705 struct RegShiftedImmOp { 706 ARM_AM::ShiftOpc ShiftTy; 707 unsigned SrcReg; 708 unsigned ShiftImm; 709 }; 710 711 struct RotImmOp { 712 unsigned Imm; 713 }; 714 715 struct ModImmOp { 716 unsigned Bits; 717 unsigned Rot; 718 }; 719 720 struct BitfieldOp { 721 unsigned LSB; 722 unsigned Width; 723 }; 724 725 union { 726 struct CCOp CC; 727 struct CopOp Cop; 728 struct CoprocOptionOp CoprocOption; 729 struct MBOptOp MBOpt; 730 struct ISBOptOp ISBOpt; 731 struct ITMaskOp ITMask; 732 struct IFlagsOp IFlags; 733 struct MMaskOp MMask; 734 struct BankedRegOp BankedReg; 735 struct TokOp Tok; 736 struct RegOp Reg; 737 struct VectorListOp VectorList; 738 struct VectorIndexOp VectorIndex; 739 struct ImmOp Imm; 740 struct MemoryOp Memory; 741 struct PostIdxRegOp PostIdxReg; 742 struct ShifterImmOp ShifterImm; 743 struct RegShiftedRegOp RegShiftedReg; 744 struct RegShiftedImmOp RegShiftedImm; 745 struct RotImmOp RotImm; 746 struct ModImmOp ModImm; 747 struct BitfieldOp Bitfield; 748 }; 749 750 public: 751 ARMOperand(KindTy K) : MCParsedAsmOperand(), Kind(K) {} 752 753 /// getStartLoc - Get the location of the first token of this operand. 754 SMLoc getStartLoc() const override { return StartLoc; } 755 /// getEndLoc - Get the location of the last token of this operand. 756 SMLoc getEndLoc() const override { return EndLoc; } 757 /// getLocRange - Get the range between the first and last token of this 758 /// operand. 759 SMRange getLocRange() const { return SMRange(StartLoc, EndLoc); } 760 761 /// getAlignmentLoc - Get the location of the Alignment token of this operand. 762 SMLoc getAlignmentLoc() const { 763 assert(Kind == k_Memory && "Invalid access!"); 764 return AlignmentLoc; 765 } 766 767 ARMCC::CondCodes getCondCode() const { 768 assert(Kind == k_CondCode && "Invalid access!"); 769 return CC.Val; 770 } 771 772 unsigned getCoproc() const { 773 assert((Kind == k_CoprocNum || Kind == k_CoprocReg) && "Invalid access!"); 774 return Cop.Val; 775 } 776 777 StringRef getToken() const { 778 assert(Kind == k_Token && "Invalid access!"); 779 return StringRef(Tok.Data, Tok.Length); 780 } 781 782 unsigned getReg() const override { 783 assert((Kind == k_Register || Kind == k_CCOut) && "Invalid access!"); 784 return Reg.RegNum; 785 } 786 787 const SmallVectorImpl<unsigned> &getRegList() const { 788 assert((Kind == k_RegisterList || Kind == k_DPRRegisterList || 789 Kind == k_SPRRegisterList) && "Invalid access!"); 790 return Registers; 791 } 792 793 const MCExpr *getImm() const { 794 assert(isImm() && "Invalid access!"); 795 return Imm.Val; 796 } 797 798 const MCExpr *getConstantPoolImm() const { 799 assert(isConstantPoolImm() && "Invalid access!"); 800 return Imm.Val; 801 } 802 803 unsigned getVectorIndex() const { 804 assert(Kind == k_VectorIndex && "Invalid access!"); 805 return VectorIndex.Val; 806 } 807 808 ARM_MB::MemBOpt getMemBarrierOpt() const { 809 assert(Kind == k_MemBarrierOpt && "Invalid access!"); 810 return MBOpt.Val; 811 } 812 813 ARM_ISB::InstSyncBOpt getInstSyncBarrierOpt() const { 814 assert(Kind == k_InstSyncBarrierOpt && "Invalid access!"); 815 return ISBOpt.Val; 816 } 817 818 ARM_PROC::IFlags getProcIFlags() const { 819 assert(Kind == k_ProcIFlags && "Invalid access!"); 820 return IFlags.Val; 821 } 822 823 unsigned getMSRMask() const { 824 assert(Kind == k_MSRMask && "Invalid access!"); 825 return MMask.Val; 826 } 827 828 unsigned getBankedReg() const { 829 assert(Kind == k_BankedReg && "Invalid access!"); 830 return BankedReg.Val; 831 } 832 833 bool isCoprocNum() const { return Kind == k_CoprocNum; } 834 bool isCoprocReg() const { return Kind == k_CoprocReg; } 835 bool isCoprocOption() const { return Kind == k_CoprocOption; } 836 bool isCondCode() const { return Kind == k_CondCode; } 837 bool isCCOut() const { return Kind == k_CCOut; } 838 bool isITMask() const { return Kind == k_ITCondMask; } 839 bool isITCondCode() const { return Kind == k_CondCode; } 840 bool isImm() const override { 841 return Kind == k_Immediate; 842 } 843 844 bool isARMBranchTarget() const { 845 if (!isImm()) return false; 846 847 if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm())) 848 return CE->getValue() % 4 == 0; 849 return true; 850 } 851 852 853 bool isThumbBranchTarget() const { 854 if (!isImm()) return false; 855 856 if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm())) 857 return CE->getValue() % 2 == 0; 858 return true; 859 } 860 861 // checks whether this operand is an unsigned offset which fits is a field 862 // of specified width and scaled by a specific number of bits 863 template<unsigned width, unsigned scale> 864 bool isUnsignedOffset() const { 865 if (!isImm()) return false; 866 if (isa<MCSymbolRefExpr>(Imm.Val)) return true; 867 if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Imm.Val)) { 868 int64_t Val = CE->getValue(); 869 int64_t Align = 1LL << scale; 870 int64_t Max = Align * ((1LL << width) - 1); 871 return ((Val % Align) == 0) && (Val >= 0) && (Val <= Max); 872 } 873 return false; 874 } 875 // checks whether this operand is an signed offset which fits is a field 876 // of specified width and scaled by a specific number of bits 877 template<unsigned width, unsigned scale> 878 bool isSignedOffset() const { 879 if (!isImm()) return false; 880 if (isa<MCSymbolRefExpr>(Imm.Val)) return true; 881 if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Imm.Val)) { 882 int64_t Val = CE->getValue(); 883 int64_t Align = 1LL << scale; 884 int64_t Max = Align * ((1LL << (width-1)) - 1); 885 int64_t Min = -Align * (1LL << (width-1)); 886 return ((Val % Align) == 0) && (Val >= Min) && (Val <= Max); 887 } 888 return false; 889 } 890 891 // checks whether this operand is a memory operand computed as an offset 892 // applied to PC. the offset may have 8 bits of magnitude and is represented 893 // with two bits of shift. textually it may be either [pc, #imm], #imm or 894 // relocable expression... 895 bool isThumbMemPC() const { 896 int64_t Val = 0; 897 if (isImm()) { 898 if (isa<MCSymbolRefExpr>(Imm.Val)) return true; 899 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Imm.Val); 900 if (!CE) return false; 901 Val = CE->getValue(); 902 } 903 else if (isMem()) { 904 if(!Memory.OffsetImm || Memory.OffsetRegNum) return false; 905 if(Memory.BaseRegNum != ARM::PC) return false; 906 Val = Memory.OffsetImm->getValue(); 907 } 908 else return false; 909 return ((Val % 4) == 0) && (Val >= 0) && (Val <= 1020); 910 } 911 bool isFPImm() const { 912 if (!isImm()) return false; 913 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 914 if (!CE) return false; 915 int Val = ARM_AM::getFP32Imm(APInt(32, CE->getValue())); 916 return Val != -1; 917 } 918 bool isFBits16() const { 919 if (!isImm()) return false; 920 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 921 if (!CE) return false; 922 int64_t Value = CE->getValue(); 923 return Value >= 0 && Value <= 16; 924 } 925 bool isFBits32() const { 926 if (!isImm()) return false; 927 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 928 if (!CE) return false; 929 int64_t Value = CE->getValue(); 930 return Value >= 1 && Value <= 32; 931 } 932 bool isImm8s4() const { 933 if (!isImm()) return false; 934 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 935 if (!CE) return false; 936 int64_t Value = CE->getValue(); 937 return ((Value & 3) == 0) && Value >= -1020 && Value <= 1020; 938 } 939 bool isImm0_1020s4() const { 940 if (!isImm()) return false; 941 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 942 if (!CE) return false; 943 int64_t Value = CE->getValue(); 944 return ((Value & 3) == 0) && Value >= 0 && Value <= 1020; 945 } 946 bool isImm0_508s4() const { 947 if (!isImm()) return false; 948 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 949 if (!CE) return false; 950 int64_t Value = CE->getValue(); 951 return ((Value & 3) == 0) && Value >= 0 && Value <= 508; 952 } 953 bool isImm0_508s4Neg() const { 954 if (!isImm()) return false; 955 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 956 if (!CE) return false; 957 int64_t Value = -CE->getValue(); 958 // explicitly exclude zero. we want that to use the normal 0_508 version. 959 return ((Value & 3) == 0) && Value > 0 && Value <= 508; 960 } 961 bool isImm0_239() const { 962 if (!isImm()) return false; 963 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 964 if (!CE) return false; 965 int64_t Value = CE->getValue(); 966 return Value >= 0 && Value < 240; 967 } 968 bool isImm0_255() const { 969 if (!isImm()) return false; 970 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 971 if (!CE) return false; 972 int64_t Value = CE->getValue(); 973 return Value >= 0 && Value < 256; 974 } 975 bool isImm0_4095() const { 976 if (!isImm()) return false; 977 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 978 if (!CE) return false; 979 int64_t Value = CE->getValue(); 980 return Value >= 0 && Value < 4096; 981 } 982 bool isImm0_4095Neg() const { 983 if (!isImm()) return false; 984 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 985 if (!CE) return false; 986 int64_t Value = -CE->getValue(); 987 return Value > 0 && Value < 4096; 988 } 989 bool isImm0_1() const { 990 if (!isImm()) return false; 991 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 992 if (!CE) return false; 993 int64_t Value = CE->getValue(); 994 return Value >= 0 && Value < 2; 995 } 996 bool isImm0_3() const { 997 if (!isImm()) return false; 998 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 999 if (!CE) return false; 1000 int64_t Value = CE->getValue(); 1001 return Value >= 0 && Value < 4; 1002 } 1003 bool isImm0_7() const { 1004 if (!isImm()) return false; 1005 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1006 if (!CE) return false; 1007 int64_t Value = CE->getValue(); 1008 return Value >= 0 && Value < 8; 1009 } 1010 bool isImm0_15() const { 1011 if (!isImm()) return false; 1012 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1013 if (!CE) return false; 1014 int64_t Value = CE->getValue(); 1015 return Value >= 0 && Value < 16; 1016 } 1017 bool isImm0_31() const { 1018 if (!isImm()) return false; 1019 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1020 if (!CE) return false; 1021 int64_t Value = CE->getValue(); 1022 return Value >= 0 && Value < 32; 1023 } 1024 bool isImm0_63() const { 1025 if (!isImm()) return false; 1026 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1027 if (!CE) return false; 1028 int64_t Value = CE->getValue(); 1029 return Value >= 0 && Value < 64; 1030 } 1031 bool isImm8() const { 1032 if (!isImm()) return false; 1033 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1034 if (!CE) return false; 1035 int64_t Value = CE->getValue(); 1036 return Value == 8; 1037 } 1038 bool isImm16() const { 1039 if (!isImm()) return false; 1040 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1041 if (!CE) return false; 1042 int64_t Value = CE->getValue(); 1043 return Value == 16; 1044 } 1045 bool isImm32() const { 1046 if (!isImm()) return false; 1047 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1048 if (!CE) return false; 1049 int64_t Value = CE->getValue(); 1050 return Value == 32; 1051 } 1052 bool isShrImm8() const { 1053 if (!isImm()) return false; 1054 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1055 if (!CE) return false; 1056 int64_t Value = CE->getValue(); 1057 return Value > 0 && Value <= 8; 1058 } 1059 bool isShrImm16() const { 1060 if (!isImm()) return false; 1061 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1062 if (!CE) return false; 1063 int64_t Value = CE->getValue(); 1064 return Value > 0 && Value <= 16; 1065 } 1066 bool isShrImm32() const { 1067 if (!isImm()) return false; 1068 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1069 if (!CE) return false; 1070 int64_t Value = CE->getValue(); 1071 return Value > 0 && Value <= 32; 1072 } 1073 bool isShrImm64() const { 1074 if (!isImm()) return false; 1075 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1076 if (!CE) return false; 1077 int64_t Value = CE->getValue(); 1078 return Value > 0 && Value <= 64; 1079 } 1080 bool isImm1_7() const { 1081 if (!isImm()) return false; 1082 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1083 if (!CE) return false; 1084 int64_t Value = CE->getValue(); 1085 return Value > 0 && Value < 8; 1086 } 1087 bool isImm1_15() const { 1088 if (!isImm()) return false; 1089 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1090 if (!CE) return false; 1091 int64_t Value = CE->getValue(); 1092 return Value > 0 && Value < 16; 1093 } 1094 bool isImm1_31() const { 1095 if (!isImm()) return false; 1096 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1097 if (!CE) return false; 1098 int64_t Value = CE->getValue(); 1099 return Value > 0 && Value < 32; 1100 } 1101 bool isImm1_16() const { 1102 if (!isImm()) return false; 1103 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1104 if (!CE) return false; 1105 int64_t Value = CE->getValue(); 1106 return Value > 0 && Value < 17; 1107 } 1108 bool isImm1_32() const { 1109 if (!isImm()) return false; 1110 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1111 if (!CE) return false; 1112 int64_t Value = CE->getValue(); 1113 return Value > 0 && Value < 33; 1114 } 1115 bool isImm0_32() const { 1116 if (!isImm()) return false; 1117 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1118 if (!CE) return false; 1119 int64_t Value = CE->getValue(); 1120 return Value >= 0 && Value < 33; 1121 } 1122 bool isImm0_65535() const { 1123 if (!isImm()) return false; 1124 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1125 if (!CE) return false; 1126 int64_t Value = CE->getValue(); 1127 return Value >= 0 && Value < 65536; 1128 } 1129 bool isImm256_65535Expr() const { 1130 if (!isImm()) return false; 1131 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1132 // If it's not a constant expression, it'll generate a fixup and be 1133 // handled later. 1134 if (!CE) return true; 1135 int64_t Value = CE->getValue(); 1136 return Value >= 256 && Value < 65536; 1137 } 1138 bool isImm0_65535Expr() const { 1139 if (!isImm()) return false; 1140 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1141 // If it's not a constant expression, it'll generate a fixup and be 1142 // handled later. 1143 if (!CE) return true; 1144 int64_t Value = CE->getValue(); 1145 return Value >= 0 && Value < 65536; 1146 } 1147 bool isImm24bit() const { 1148 if (!isImm()) return false; 1149 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1150 if (!CE) return false; 1151 int64_t Value = CE->getValue(); 1152 return Value >= 0 && Value <= 0xffffff; 1153 } 1154 bool isImmThumbSR() const { 1155 if (!isImm()) return false; 1156 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1157 if (!CE) return false; 1158 int64_t Value = CE->getValue(); 1159 return Value > 0 && Value < 33; 1160 } 1161 bool isPKHLSLImm() const { 1162 if (!isImm()) return false; 1163 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1164 if (!CE) return false; 1165 int64_t Value = CE->getValue(); 1166 return Value >= 0 && Value < 32; 1167 } 1168 bool isPKHASRImm() const { 1169 if (!isImm()) return false; 1170 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1171 if (!CE) return false; 1172 int64_t Value = CE->getValue(); 1173 return Value > 0 && Value <= 32; 1174 } 1175 bool isAdrLabel() const { 1176 // If we have an immediate that's not a constant, treat it as a label 1177 // reference needing a fixup. 1178 if (isImm() && !isa<MCConstantExpr>(getImm())) 1179 return true; 1180 1181 // If it is a constant, it must fit into a modified immediate encoding. 1182 if (!isImm()) return false; 1183 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1184 if (!CE) return false; 1185 int64_t Value = CE->getValue(); 1186 return (ARM_AM::getSOImmVal(Value) != -1 || 1187 ARM_AM::getSOImmVal(-Value) != -1); 1188 } 1189 bool isT2SOImm() const { 1190 if (!isImm()) return false; 1191 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1192 if (!CE) return false; 1193 int64_t Value = CE->getValue(); 1194 return ARM_AM::getT2SOImmVal(Value) != -1; 1195 } 1196 bool isT2SOImmNot() const { 1197 if (!isImm()) return false; 1198 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1199 if (!CE) return false; 1200 int64_t Value = CE->getValue(); 1201 return ARM_AM::getT2SOImmVal(Value) == -1 && 1202 ARM_AM::getT2SOImmVal(~Value) != -1; 1203 } 1204 bool isT2SOImmNeg() const { 1205 if (!isImm()) return false; 1206 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1207 if (!CE) return false; 1208 int64_t Value = CE->getValue(); 1209 // Only use this when not representable as a plain so_imm. 1210 return ARM_AM::getT2SOImmVal(Value) == -1 && 1211 ARM_AM::getT2SOImmVal(-Value) != -1; 1212 } 1213 bool isSetEndImm() const { 1214 if (!isImm()) return false; 1215 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1216 if (!CE) return false; 1217 int64_t Value = CE->getValue(); 1218 return Value == 1 || Value == 0; 1219 } 1220 bool isReg() const override { return Kind == k_Register; } 1221 bool isRegList() const { return Kind == k_RegisterList; } 1222 bool isDPRRegList() const { return Kind == k_DPRRegisterList; } 1223 bool isSPRRegList() const { return Kind == k_SPRRegisterList; } 1224 bool isToken() const override { return Kind == k_Token; } 1225 bool isMemBarrierOpt() const { return Kind == k_MemBarrierOpt; } 1226 bool isInstSyncBarrierOpt() const { return Kind == k_InstSyncBarrierOpt; } 1227 bool isMem() const override { return Kind == k_Memory; } 1228 bool isShifterImm() const { return Kind == k_ShifterImmediate; } 1229 bool isRegShiftedReg() const { return Kind == k_ShiftedRegister; } 1230 bool isRegShiftedImm() const { return Kind == k_ShiftedImmediate; } 1231 bool isRotImm() const { return Kind == k_RotateImmediate; } 1232 bool isModImm() const { return Kind == k_ModifiedImmediate; } 1233 bool isModImmNot() const { 1234 if (!isImm()) return false; 1235 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1236 if (!CE) return false; 1237 int64_t Value = CE->getValue(); 1238 return ARM_AM::getSOImmVal(~Value) != -1; 1239 } 1240 bool isModImmNeg() const { 1241 if (!isImm()) return false; 1242 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1243 if (!CE) return false; 1244 int64_t Value = CE->getValue(); 1245 return ARM_AM::getSOImmVal(Value) == -1 && 1246 ARM_AM::getSOImmVal(-Value) != -1; 1247 } 1248 bool isConstantPoolImm() const { return Kind == k_ConstantPoolImmediate; } 1249 bool isBitfield() const { return Kind == k_BitfieldDescriptor; } 1250 bool isPostIdxRegShifted() const { return Kind == k_PostIndexRegister; } 1251 bool isPostIdxReg() const { 1252 return Kind == k_PostIndexRegister && PostIdxReg.ShiftTy ==ARM_AM::no_shift; 1253 } 1254 bool isMemNoOffset(bool alignOK = false, unsigned Alignment = 0) const { 1255 if (!isMem()) 1256 return false; 1257 // No offset of any kind. 1258 return Memory.OffsetRegNum == 0 && Memory.OffsetImm == nullptr && 1259 (alignOK || Memory.Alignment == Alignment); 1260 } 1261 bool isMemPCRelImm12() const { 1262 if (!isMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0) 1263 return false; 1264 // Base register must be PC. 1265 if (Memory.BaseRegNum != ARM::PC) 1266 return false; 1267 // Immediate offset in range [-4095, 4095]. 1268 if (!Memory.OffsetImm) return true; 1269 int64_t Val = Memory.OffsetImm->getValue(); 1270 return (Val > -4096 && Val < 4096) || (Val == INT32_MIN); 1271 } 1272 bool isAlignedMemory() const { 1273 return isMemNoOffset(true); 1274 } 1275 bool isAlignedMemoryNone() const { 1276 return isMemNoOffset(false, 0); 1277 } 1278 bool isDupAlignedMemoryNone() const { 1279 return isMemNoOffset(false, 0); 1280 } 1281 bool isAlignedMemory16() const { 1282 if (isMemNoOffset(false, 2)) // alignment in bytes for 16-bits is 2. 1283 return true; 1284 return isMemNoOffset(false, 0); 1285 } 1286 bool isDupAlignedMemory16() const { 1287 if (isMemNoOffset(false, 2)) // alignment in bytes for 16-bits is 2. 1288 return true; 1289 return isMemNoOffset(false, 0); 1290 } 1291 bool isAlignedMemory32() const { 1292 if (isMemNoOffset(false, 4)) // alignment in bytes for 32-bits is 4. 1293 return true; 1294 return isMemNoOffset(false, 0); 1295 } 1296 bool isDupAlignedMemory32() const { 1297 if (isMemNoOffset(false, 4)) // alignment in bytes for 32-bits is 4. 1298 return true; 1299 return isMemNoOffset(false, 0); 1300 } 1301 bool isAlignedMemory64() const { 1302 if (isMemNoOffset(false, 8)) // alignment in bytes for 64-bits is 8. 1303 return true; 1304 return isMemNoOffset(false, 0); 1305 } 1306 bool isDupAlignedMemory64() const { 1307 if (isMemNoOffset(false, 8)) // alignment in bytes for 64-bits is 8. 1308 return true; 1309 return isMemNoOffset(false, 0); 1310 } 1311 bool isAlignedMemory64or128() const { 1312 if (isMemNoOffset(false, 8)) // alignment in bytes for 64-bits is 8. 1313 return true; 1314 if (isMemNoOffset(false, 16)) // alignment in bytes for 128-bits is 16. 1315 return true; 1316 return isMemNoOffset(false, 0); 1317 } 1318 bool isDupAlignedMemory64or128() const { 1319 if (isMemNoOffset(false, 8)) // alignment in bytes for 64-bits is 8. 1320 return true; 1321 if (isMemNoOffset(false, 16)) // alignment in bytes for 128-bits is 16. 1322 return true; 1323 return isMemNoOffset(false, 0); 1324 } 1325 bool isAlignedMemory64or128or256() const { 1326 if (isMemNoOffset(false, 8)) // alignment in bytes for 64-bits is 8. 1327 return true; 1328 if (isMemNoOffset(false, 16)) // alignment in bytes for 128-bits is 16. 1329 return true; 1330 if (isMemNoOffset(false, 32)) // alignment in bytes for 256-bits is 32. 1331 return true; 1332 return isMemNoOffset(false, 0); 1333 } 1334 bool isAddrMode2() const { 1335 if (!isMem() || Memory.Alignment != 0) return false; 1336 // Check for register offset. 1337 if (Memory.OffsetRegNum) return true; 1338 // Immediate offset in range [-4095, 4095]. 1339 if (!Memory.OffsetImm) return true; 1340 int64_t Val = Memory.OffsetImm->getValue(); 1341 return Val > -4096 && Val < 4096; 1342 } 1343 bool isAM2OffsetImm() const { 1344 if (!isImm()) return false; 1345 // Immediate offset in range [-4095, 4095]. 1346 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1347 if (!CE) return false; 1348 int64_t Val = CE->getValue(); 1349 return (Val == INT32_MIN) || (Val > -4096 && Val < 4096); 1350 } 1351 bool isAddrMode3() const { 1352 // If we have an immediate that's not a constant, treat it as a label 1353 // reference needing a fixup. If it is a constant, it's something else 1354 // and we reject it. 1355 if (isImm() && !isa<MCConstantExpr>(getImm())) 1356 return true; 1357 if (!isMem() || Memory.Alignment != 0) return false; 1358 // No shifts are legal for AM3. 1359 if (Memory.ShiftType != ARM_AM::no_shift) return false; 1360 // Check for register offset. 1361 if (Memory.OffsetRegNum) return true; 1362 // Immediate offset in range [-255, 255]. 1363 if (!Memory.OffsetImm) return true; 1364 int64_t Val = Memory.OffsetImm->getValue(); 1365 // The #-0 offset is encoded as INT32_MIN, and we have to check 1366 // for this too. 1367 return (Val > -256 && Val < 256) || Val == INT32_MIN; 1368 } 1369 bool isAM3Offset() const { 1370 if (Kind != k_Immediate && Kind != k_PostIndexRegister) 1371 return false; 1372 if (Kind == k_PostIndexRegister) 1373 return PostIdxReg.ShiftTy == ARM_AM::no_shift; 1374 // Immediate offset in range [-255, 255]. 1375 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1376 if (!CE) return false; 1377 int64_t Val = CE->getValue(); 1378 // Special case, #-0 is INT32_MIN. 1379 return (Val > -256 && Val < 256) || Val == INT32_MIN; 1380 } 1381 bool isAddrMode5() const { 1382 // If we have an immediate that's not a constant, treat it as a label 1383 // reference needing a fixup. If it is a constant, it's something else 1384 // and we reject it. 1385 if (isImm() && !isa<MCConstantExpr>(getImm())) 1386 return true; 1387 if (!isMem() || Memory.Alignment != 0) return false; 1388 // Check for register offset. 1389 if (Memory.OffsetRegNum) return false; 1390 // Immediate offset in range [-1020, 1020] and a multiple of 4. 1391 if (!Memory.OffsetImm) return true; 1392 int64_t Val = Memory.OffsetImm->getValue(); 1393 return (Val >= -1020 && Val <= 1020 && ((Val & 3) == 0)) || 1394 Val == INT32_MIN; 1395 } 1396 bool isAddrMode5FP16() const { 1397 // If we have an immediate that's not a constant, treat it as a label 1398 // reference needing a fixup. If it is a constant, it's something else 1399 // and we reject it. 1400 if (isImm() && !isa<MCConstantExpr>(getImm())) 1401 return true; 1402 if (!isMem() || Memory.Alignment != 0) return false; 1403 // Check for register offset. 1404 if (Memory.OffsetRegNum) return false; 1405 // Immediate offset in range [-510, 510] and a multiple of 2. 1406 if (!Memory.OffsetImm) return true; 1407 int64_t Val = Memory.OffsetImm->getValue(); 1408 return (Val >= -510 && Val <= 510 && ((Val & 1) == 0)) || Val == INT32_MIN; 1409 } 1410 bool isMemTBB() const { 1411 if (!isMem() || !Memory.OffsetRegNum || Memory.isNegative || 1412 Memory.ShiftType != ARM_AM::no_shift || Memory.Alignment != 0) 1413 return false; 1414 return true; 1415 } 1416 bool isMemTBH() const { 1417 if (!isMem() || !Memory.OffsetRegNum || Memory.isNegative || 1418 Memory.ShiftType != ARM_AM::lsl || Memory.ShiftImm != 1 || 1419 Memory.Alignment != 0 ) 1420 return false; 1421 return true; 1422 } 1423 bool isMemRegOffset() const { 1424 if (!isMem() || !Memory.OffsetRegNum || Memory.Alignment != 0) 1425 return false; 1426 return true; 1427 } 1428 bool isT2MemRegOffset() const { 1429 if (!isMem() || !Memory.OffsetRegNum || Memory.isNegative || 1430 Memory.Alignment != 0 || Memory.BaseRegNum == ARM::PC) 1431 return false; 1432 // Only lsl #{0, 1, 2, 3} allowed. 1433 if (Memory.ShiftType == ARM_AM::no_shift) 1434 return true; 1435 if (Memory.ShiftType != ARM_AM::lsl || Memory.ShiftImm > 3) 1436 return false; 1437 return true; 1438 } 1439 bool isMemThumbRR() const { 1440 // Thumb reg+reg addressing is simple. Just two registers, a base and 1441 // an offset. No shifts, negations or any other complicating factors. 1442 if (!isMem() || !Memory.OffsetRegNum || Memory.isNegative || 1443 Memory.ShiftType != ARM_AM::no_shift || Memory.Alignment != 0) 1444 return false; 1445 return isARMLowRegister(Memory.BaseRegNum) && 1446 (!Memory.OffsetRegNum || isARMLowRegister(Memory.OffsetRegNum)); 1447 } 1448 bool isMemThumbRIs4() const { 1449 if (!isMem() || Memory.OffsetRegNum != 0 || 1450 !isARMLowRegister(Memory.BaseRegNum) || Memory.Alignment != 0) 1451 return false; 1452 // Immediate offset, multiple of 4 in range [0, 124]. 1453 if (!Memory.OffsetImm) return true; 1454 int64_t Val = Memory.OffsetImm->getValue(); 1455 return Val >= 0 && Val <= 124 && (Val % 4) == 0; 1456 } 1457 bool isMemThumbRIs2() const { 1458 if (!isMem() || Memory.OffsetRegNum != 0 || 1459 !isARMLowRegister(Memory.BaseRegNum) || Memory.Alignment != 0) 1460 return false; 1461 // Immediate offset, multiple of 4 in range [0, 62]. 1462 if (!Memory.OffsetImm) return true; 1463 int64_t Val = Memory.OffsetImm->getValue(); 1464 return Val >= 0 && Val <= 62 && (Val % 2) == 0; 1465 } 1466 bool isMemThumbRIs1() const { 1467 if (!isMem() || Memory.OffsetRegNum != 0 || 1468 !isARMLowRegister(Memory.BaseRegNum) || Memory.Alignment != 0) 1469 return false; 1470 // Immediate offset in range [0, 31]. 1471 if (!Memory.OffsetImm) return true; 1472 int64_t Val = Memory.OffsetImm->getValue(); 1473 return Val >= 0 && Val <= 31; 1474 } 1475 bool isMemThumbSPI() const { 1476 if (!isMem() || Memory.OffsetRegNum != 0 || 1477 Memory.BaseRegNum != ARM::SP || Memory.Alignment != 0) 1478 return false; 1479 // Immediate offset, multiple of 4 in range [0, 1020]. 1480 if (!Memory.OffsetImm) return true; 1481 int64_t Val = Memory.OffsetImm->getValue(); 1482 return Val >= 0 && Val <= 1020 && (Val % 4) == 0; 1483 } 1484 bool isMemImm8s4Offset() const { 1485 // If we have an immediate that's not a constant, treat it as a label 1486 // reference needing a fixup. If it is a constant, it's something else 1487 // and we reject it. 1488 if (isImm() && !isa<MCConstantExpr>(getImm())) 1489 return true; 1490 if (!isMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0) 1491 return false; 1492 // Immediate offset a multiple of 4 in range [-1020, 1020]. 1493 if (!Memory.OffsetImm) return true; 1494 int64_t Val = Memory.OffsetImm->getValue(); 1495 // Special case, #-0 is INT32_MIN. 1496 return (Val >= -1020 && Val <= 1020 && (Val & 3) == 0) || Val == INT32_MIN; 1497 } 1498 bool isMemImm0_1020s4Offset() const { 1499 if (!isMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0) 1500 return false; 1501 // Immediate offset a multiple of 4 in range [0, 1020]. 1502 if (!Memory.OffsetImm) return true; 1503 int64_t Val = Memory.OffsetImm->getValue(); 1504 return Val >= 0 && Val <= 1020 && (Val & 3) == 0; 1505 } 1506 bool isMemImm8Offset() const { 1507 if (!isMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0) 1508 return false; 1509 // Base reg of PC isn't allowed for these encodings. 1510 if (Memory.BaseRegNum == ARM::PC) return false; 1511 // Immediate offset in range [-255, 255]. 1512 if (!Memory.OffsetImm) return true; 1513 int64_t Val = Memory.OffsetImm->getValue(); 1514 return (Val == INT32_MIN) || (Val > -256 && Val < 256); 1515 } 1516 bool isMemPosImm8Offset() const { 1517 if (!isMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0) 1518 return false; 1519 // Immediate offset in range [0, 255]. 1520 if (!Memory.OffsetImm) return true; 1521 int64_t Val = Memory.OffsetImm->getValue(); 1522 return Val >= 0 && Val < 256; 1523 } 1524 bool isMemNegImm8Offset() const { 1525 if (!isMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0) 1526 return false; 1527 // Base reg of PC isn't allowed for these encodings. 1528 if (Memory.BaseRegNum == ARM::PC) return false; 1529 // Immediate offset in range [-255, -1]. 1530 if (!Memory.OffsetImm) return false; 1531 int64_t Val = Memory.OffsetImm->getValue(); 1532 return (Val == INT32_MIN) || (Val > -256 && Val < 0); 1533 } 1534 bool isMemUImm12Offset() const { 1535 if (!isMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0) 1536 return false; 1537 // Immediate offset in range [0, 4095]. 1538 if (!Memory.OffsetImm) return true; 1539 int64_t Val = Memory.OffsetImm->getValue(); 1540 return (Val >= 0 && Val < 4096); 1541 } 1542 bool isMemImm12Offset() const { 1543 // If we have an immediate that's not a constant, treat it as a label 1544 // reference needing a fixup. If it is a constant, it's something else 1545 // and we reject it. 1546 1547 if (isImm() && !isa<MCConstantExpr>(getImm())) 1548 return true; 1549 1550 if (!isMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0) 1551 return false; 1552 // Immediate offset in range [-4095, 4095]. 1553 if (!Memory.OffsetImm) return true; 1554 int64_t Val = Memory.OffsetImm->getValue(); 1555 return (Val > -4096 && Val < 4096) || (Val == INT32_MIN); 1556 } 1557 bool isConstPoolAsmImm() const { 1558 // Delay processing of Constant Pool Immediate, this will turn into 1559 // a constant. Match no other operand 1560 return (isConstantPoolImm()); 1561 } 1562 bool isPostIdxImm8() const { 1563 if (!isImm()) return false; 1564 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1565 if (!CE) return false; 1566 int64_t Val = CE->getValue(); 1567 return (Val > -256 && Val < 256) || (Val == INT32_MIN); 1568 } 1569 bool isPostIdxImm8s4() const { 1570 if (!isImm()) return false; 1571 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1572 if (!CE) return false; 1573 int64_t Val = CE->getValue(); 1574 return ((Val & 3) == 0 && Val >= -1020 && Val <= 1020) || 1575 (Val == INT32_MIN); 1576 } 1577 1578 bool isMSRMask() const { return Kind == k_MSRMask; } 1579 bool isBankedReg() const { return Kind == k_BankedReg; } 1580 bool isProcIFlags() const { return Kind == k_ProcIFlags; } 1581 1582 // NEON operands. 1583 bool isSingleSpacedVectorList() const { 1584 return Kind == k_VectorList && !VectorList.isDoubleSpaced; 1585 } 1586 bool isDoubleSpacedVectorList() const { 1587 return Kind == k_VectorList && VectorList.isDoubleSpaced; 1588 } 1589 bool isVecListOneD() const { 1590 if (!isSingleSpacedVectorList()) return false; 1591 return VectorList.Count == 1; 1592 } 1593 1594 bool isVecListDPair() const { 1595 if (!isSingleSpacedVectorList()) return false; 1596 return (ARMMCRegisterClasses[ARM::DPairRegClassID] 1597 .contains(VectorList.RegNum)); 1598 } 1599 1600 bool isVecListThreeD() const { 1601 if (!isSingleSpacedVectorList()) return false; 1602 return VectorList.Count == 3; 1603 } 1604 1605 bool isVecListFourD() const { 1606 if (!isSingleSpacedVectorList()) return false; 1607 return VectorList.Count == 4; 1608 } 1609 1610 bool isVecListDPairSpaced() const { 1611 if (Kind != k_VectorList) return false; 1612 if (isSingleSpacedVectorList()) return false; 1613 return (ARMMCRegisterClasses[ARM::DPairSpcRegClassID] 1614 .contains(VectorList.RegNum)); 1615 } 1616 1617 bool isVecListThreeQ() const { 1618 if (!isDoubleSpacedVectorList()) return false; 1619 return VectorList.Count == 3; 1620 } 1621 1622 bool isVecListFourQ() const { 1623 if (!isDoubleSpacedVectorList()) return false; 1624 return VectorList.Count == 4; 1625 } 1626 1627 bool isSingleSpacedVectorAllLanes() const { 1628 return Kind == k_VectorListAllLanes && !VectorList.isDoubleSpaced; 1629 } 1630 bool isDoubleSpacedVectorAllLanes() const { 1631 return Kind == k_VectorListAllLanes && VectorList.isDoubleSpaced; 1632 } 1633 bool isVecListOneDAllLanes() const { 1634 if (!isSingleSpacedVectorAllLanes()) return false; 1635 return VectorList.Count == 1; 1636 } 1637 1638 bool isVecListDPairAllLanes() const { 1639 if (!isSingleSpacedVectorAllLanes()) return false; 1640 return (ARMMCRegisterClasses[ARM::DPairRegClassID] 1641 .contains(VectorList.RegNum)); 1642 } 1643 1644 bool isVecListDPairSpacedAllLanes() const { 1645 if (!isDoubleSpacedVectorAllLanes()) return false; 1646 return VectorList.Count == 2; 1647 } 1648 1649 bool isVecListThreeDAllLanes() const { 1650 if (!isSingleSpacedVectorAllLanes()) return false; 1651 return VectorList.Count == 3; 1652 } 1653 1654 bool isVecListThreeQAllLanes() const { 1655 if (!isDoubleSpacedVectorAllLanes()) return false; 1656 return VectorList.Count == 3; 1657 } 1658 1659 bool isVecListFourDAllLanes() const { 1660 if (!isSingleSpacedVectorAllLanes()) return false; 1661 return VectorList.Count == 4; 1662 } 1663 1664 bool isVecListFourQAllLanes() const { 1665 if (!isDoubleSpacedVectorAllLanes()) return false; 1666 return VectorList.Count == 4; 1667 } 1668 1669 bool isSingleSpacedVectorIndexed() const { 1670 return Kind == k_VectorListIndexed && !VectorList.isDoubleSpaced; 1671 } 1672 bool isDoubleSpacedVectorIndexed() const { 1673 return Kind == k_VectorListIndexed && VectorList.isDoubleSpaced; 1674 } 1675 bool isVecListOneDByteIndexed() const { 1676 if (!isSingleSpacedVectorIndexed()) return false; 1677 return VectorList.Count == 1 && VectorList.LaneIndex <= 7; 1678 } 1679 1680 bool isVecListOneDHWordIndexed() const { 1681 if (!isSingleSpacedVectorIndexed()) return false; 1682 return VectorList.Count == 1 && VectorList.LaneIndex <= 3; 1683 } 1684 1685 bool isVecListOneDWordIndexed() const { 1686 if (!isSingleSpacedVectorIndexed()) return false; 1687 return VectorList.Count == 1 && VectorList.LaneIndex <= 1; 1688 } 1689 1690 bool isVecListTwoDByteIndexed() const { 1691 if (!isSingleSpacedVectorIndexed()) return false; 1692 return VectorList.Count == 2 && VectorList.LaneIndex <= 7; 1693 } 1694 1695 bool isVecListTwoDHWordIndexed() const { 1696 if (!isSingleSpacedVectorIndexed()) return false; 1697 return VectorList.Count == 2 && VectorList.LaneIndex <= 3; 1698 } 1699 1700 bool isVecListTwoQWordIndexed() const { 1701 if (!isDoubleSpacedVectorIndexed()) return false; 1702 return VectorList.Count == 2 && VectorList.LaneIndex <= 1; 1703 } 1704 1705 bool isVecListTwoQHWordIndexed() const { 1706 if (!isDoubleSpacedVectorIndexed()) return false; 1707 return VectorList.Count == 2 && VectorList.LaneIndex <= 3; 1708 } 1709 1710 bool isVecListTwoDWordIndexed() const { 1711 if (!isSingleSpacedVectorIndexed()) return false; 1712 return VectorList.Count == 2 && VectorList.LaneIndex <= 1; 1713 } 1714 1715 bool isVecListThreeDByteIndexed() const { 1716 if (!isSingleSpacedVectorIndexed()) return false; 1717 return VectorList.Count == 3 && VectorList.LaneIndex <= 7; 1718 } 1719 1720 bool isVecListThreeDHWordIndexed() const { 1721 if (!isSingleSpacedVectorIndexed()) return false; 1722 return VectorList.Count == 3 && VectorList.LaneIndex <= 3; 1723 } 1724 1725 bool isVecListThreeQWordIndexed() const { 1726 if (!isDoubleSpacedVectorIndexed()) return false; 1727 return VectorList.Count == 3 && VectorList.LaneIndex <= 1; 1728 } 1729 1730 bool isVecListThreeQHWordIndexed() const { 1731 if (!isDoubleSpacedVectorIndexed()) return false; 1732 return VectorList.Count == 3 && VectorList.LaneIndex <= 3; 1733 } 1734 1735 bool isVecListThreeDWordIndexed() const { 1736 if (!isSingleSpacedVectorIndexed()) return false; 1737 return VectorList.Count == 3 && VectorList.LaneIndex <= 1; 1738 } 1739 1740 bool isVecListFourDByteIndexed() const { 1741 if (!isSingleSpacedVectorIndexed()) return false; 1742 return VectorList.Count == 4 && VectorList.LaneIndex <= 7; 1743 } 1744 1745 bool isVecListFourDHWordIndexed() const { 1746 if (!isSingleSpacedVectorIndexed()) return false; 1747 return VectorList.Count == 4 && VectorList.LaneIndex <= 3; 1748 } 1749 1750 bool isVecListFourQWordIndexed() const { 1751 if (!isDoubleSpacedVectorIndexed()) return false; 1752 return VectorList.Count == 4 && VectorList.LaneIndex <= 1; 1753 } 1754 1755 bool isVecListFourQHWordIndexed() const { 1756 if (!isDoubleSpacedVectorIndexed()) return false; 1757 return VectorList.Count == 4 && VectorList.LaneIndex <= 3; 1758 } 1759 1760 bool isVecListFourDWordIndexed() const { 1761 if (!isSingleSpacedVectorIndexed()) return false; 1762 return VectorList.Count == 4 && VectorList.LaneIndex <= 1; 1763 } 1764 1765 bool isVectorIndex8() const { 1766 if (Kind != k_VectorIndex) return false; 1767 return VectorIndex.Val < 8; 1768 } 1769 bool isVectorIndex16() const { 1770 if (Kind != k_VectorIndex) return false; 1771 return VectorIndex.Val < 4; 1772 } 1773 bool isVectorIndex32() const { 1774 if (Kind != k_VectorIndex) return false; 1775 return VectorIndex.Val < 2; 1776 } 1777 1778 bool isNEONi8splat() const { 1779 if (!isImm()) return false; 1780 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1781 // Must be a constant. 1782 if (!CE) return false; 1783 int64_t Value = CE->getValue(); 1784 // i8 value splatted across 8 bytes. The immediate is just the 8 byte 1785 // value. 1786 return Value >= 0 && Value < 256; 1787 } 1788 1789 bool isNEONi16splat() const { 1790 if (isNEONByteReplicate(2)) 1791 return false; // Leave that for bytes replication and forbid by default. 1792 if (!isImm()) 1793 return false; 1794 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1795 // Must be a constant. 1796 if (!CE) return false; 1797 unsigned Value = CE->getValue(); 1798 return ARM_AM::isNEONi16splat(Value); 1799 } 1800 1801 bool isNEONi16splatNot() const { 1802 if (!isImm()) 1803 return false; 1804 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1805 // Must be a constant. 1806 if (!CE) return false; 1807 unsigned Value = CE->getValue(); 1808 return ARM_AM::isNEONi16splat(~Value & 0xffff); 1809 } 1810 1811 bool isNEONi32splat() const { 1812 if (isNEONByteReplicate(4)) 1813 return false; // Leave that for bytes replication and forbid by default. 1814 if (!isImm()) 1815 return false; 1816 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1817 // Must be a constant. 1818 if (!CE) return false; 1819 unsigned Value = CE->getValue(); 1820 return ARM_AM::isNEONi32splat(Value); 1821 } 1822 1823 bool isNEONi32splatNot() const { 1824 if (!isImm()) 1825 return false; 1826 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1827 // Must be a constant. 1828 if (!CE) return false; 1829 unsigned Value = CE->getValue(); 1830 return ARM_AM::isNEONi32splat(~Value); 1831 } 1832 1833 bool isNEONByteReplicate(unsigned NumBytes) const { 1834 if (!isImm()) 1835 return false; 1836 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1837 // Must be a constant. 1838 if (!CE) 1839 return false; 1840 int64_t Value = CE->getValue(); 1841 if (!Value) 1842 return false; // Don't bother with zero. 1843 1844 unsigned char B = Value & 0xff; 1845 for (unsigned i = 1; i < NumBytes; ++i) { 1846 Value >>= 8; 1847 if ((Value & 0xff) != B) 1848 return false; 1849 } 1850 return true; 1851 } 1852 bool isNEONi16ByteReplicate() const { return isNEONByteReplicate(2); } 1853 bool isNEONi32ByteReplicate() const { return isNEONByteReplicate(4); } 1854 bool isNEONi32vmov() const { 1855 if (isNEONByteReplicate(4)) 1856 return false; // Let it to be classified as byte-replicate case. 1857 if (!isImm()) 1858 return false; 1859 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1860 // Must be a constant. 1861 if (!CE) 1862 return false; 1863 int64_t Value = CE->getValue(); 1864 // i32 value with set bits only in one byte X000, 0X00, 00X0, or 000X, 1865 // for VMOV/VMVN only, 00Xf or 0Xff are also accepted. 1866 // FIXME: This is probably wrong and a copy and paste from previous example 1867 return (Value >= 0 && Value < 256) || 1868 (Value >= 0x0100 && Value <= 0xff00) || 1869 (Value >= 0x010000 && Value <= 0xff0000) || 1870 (Value >= 0x01000000 && Value <= 0xff000000) || 1871 (Value >= 0x01ff && Value <= 0xffff && (Value & 0xff) == 0xff) || 1872 (Value >= 0x01ffff && Value <= 0xffffff && (Value & 0xffff) == 0xffff); 1873 } 1874 bool isNEONi32vmovNeg() const { 1875 if (!isImm()) return false; 1876 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1877 // Must be a constant. 1878 if (!CE) return false; 1879 int64_t Value = ~CE->getValue(); 1880 // i32 value with set bits only in one byte X000, 0X00, 00X0, or 000X, 1881 // for VMOV/VMVN only, 00Xf or 0Xff are also accepted. 1882 // FIXME: This is probably wrong and a copy and paste from previous example 1883 return (Value >= 0 && Value < 256) || 1884 (Value >= 0x0100 && Value <= 0xff00) || 1885 (Value >= 0x010000 && Value <= 0xff0000) || 1886 (Value >= 0x01000000 && Value <= 0xff000000) || 1887 (Value >= 0x01ff && Value <= 0xffff && (Value & 0xff) == 0xff) || 1888 (Value >= 0x01ffff && Value <= 0xffffff && (Value & 0xffff) == 0xffff); 1889 } 1890 1891 bool isNEONi64splat() const { 1892 if (!isImm()) return false; 1893 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 1894 // Must be a constant. 1895 if (!CE) return false; 1896 uint64_t Value = CE->getValue(); 1897 // i64 value with each byte being either 0 or 0xff. 1898 for (unsigned i = 0; i < 8; ++i, Value >>= 8) 1899 if ((Value & 0xff) != 0 && (Value & 0xff) != 0xff) return false; 1900 return true; 1901 } 1902 1903 void addExpr(MCInst &Inst, const MCExpr *Expr) const { 1904 // Add as immediates when possible. Null MCExpr = 0. 1905 if (!Expr) 1906 Inst.addOperand(MCOperand::createImm(0)); 1907 else if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr)) 1908 Inst.addOperand(MCOperand::createImm(CE->getValue())); 1909 else 1910 Inst.addOperand(MCOperand::createExpr(Expr)); 1911 } 1912 1913 void addARMBranchTargetOperands(MCInst &Inst, unsigned N) const { 1914 assert(N == 1 && "Invalid number of operands!"); 1915 addExpr(Inst, getImm()); 1916 } 1917 1918 void addThumbBranchTargetOperands(MCInst &Inst, unsigned N) const { 1919 assert(N == 1 && "Invalid number of operands!"); 1920 addExpr(Inst, getImm()); 1921 } 1922 1923 void addCondCodeOperands(MCInst &Inst, unsigned N) const { 1924 assert(N == 2 && "Invalid number of operands!"); 1925 Inst.addOperand(MCOperand::createImm(unsigned(getCondCode()))); 1926 unsigned RegNum = getCondCode() == ARMCC::AL ? 0: ARM::CPSR; 1927 Inst.addOperand(MCOperand::createReg(RegNum)); 1928 } 1929 1930 void addCoprocNumOperands(MCInst &Inst, unsigned N) const { 1931 assert(N == 1 && "Invalid number of operands!"); 1932 Inst.addOperand(MCOperand::createImm(getCoproc())); 1933 } 1934 1935 void addCoprocRegOperands(MCInst &Inst, unsigned N) const { 1936 assert(N == 1 && "Invalid number of operands!"); 1937 Inst.addOperand(MCOperand::createImm(getCoproc())); 1938 } 1939 1940 void addCoprocOptionOperands(MCInst &Inst, unsigned N) const { 1941 assert(N == 1 && "Invalid number of operands!"); 1942 Inst.addOperand(MCOperand::createImm(CoprocOption.Val)); 1943 } 1944 1945 void addITMaskOperands(MCInst &Inst, unsigned N) const { 1946 assert(N == 1 && "Invalid number of operands!"); 1947 Inst.addOperand(MCOperand::createImm(ITMask.Mask)); 1948 } 1949 1950 void addITCondCodeOperands(MCInst &Inst, unsigned N) const { 1951 assert(N == 1 && "Invalid number of operands!"); 1952 Inst.addOperand(MCOperand::createImm(unsigned(getCondCode()))); 1953 } 1954 1955 void addCCOutOperands(MCInst &Inst, unsigned N) const { 1956 assert(N == 1 && "Invalid number of operands!"); 1957 Inst.addOperand(MCOperand::createReg(getReg())); 1958 } 1959 1960 void addRegOperands(MCInst &Inst, unsigned N) const { 1961 assert(N == 1 && "Invalid number of operands!"); 1962 Inst.addOperand(MCOperand::createReg(getReg())); 1963 } 1964 1965 void addRegShiftedRegOperands(MCInst &Inst, unsigned N) const { 1966 assert(N == 3 && "Invalid number of operands!"); 1967 assert(isRegShiftedReg() && 1968 "addRegShiftedRegOperands() on non-RegShiftedReg!"); 1969 Inst.addOperand(MCOperand::createReg(RegShiftedReg.SrcReg)); 1970 Inst.addOperand(MCOperand::createReg(RegShiftedReg.ShiftReg)); 1971 Inst.addOperand(MCOperand::createImm( 1972 ARM_AM::getSORegOpc(RegShiftedReg.ShiftTy, RegShiftedReg.ShiftImm))); 1973 } 1974 1975 void addRegShiftedImmOperands(MCInst &Inst, unsigned N) const { 1976 assert(N == 2 && "Invalid number of operands!"); 1977 assert(isRegShiftedImm() && 1978 "addRegShiftedImmOperands() on non-RegShiftedImm!"); 1979 Inst.addOperand(MCOperand::createReg(RegShiftedImm.SrcReg)); 1980 // Shift of #32 is encoded as 0 where permitted 1981 unsigned Imm = (RegShiftedImm.ShiftImm == 32 ? 0 : RegShiftedImm.ShiftImm); 1982 Inst.addOperand(MCOperand::createImm( 1983 ARM_AM::getSORegOpc(RegShiftedImm.ShiftTy, Imm))); 1984 } 1985 1986 void addShifterImmOperands(MCInst &Inst, unsigned N) const { 1987 assert(N == 1 && "Invalid number of operands!"); 1988 Inst.addOperand(MCOperand::createImm((ShifterImm.isASR << 5) | 1989 ShifterImm.Imm)); 1990 } 1991 1992 void addRegListOperands(MCInst &Inst, unsigned N) const { 1993 assert(N == 1 && "Invalid number of operands!"); 1994 const SmallVectorImpl<unsigned> &RegList = getRegList(); 1995 for (SmallVectorImpl<unsigned>::const_iterator 1996 I = RegList.begin(), E = RegList.end(); I != E; ++I) 1997 Inst.addOperand(MCOperand::createReg(*I)); 1998 } 1999 2000 void addDPRRegListOperands(MCInst &Inst, unsigned N) const { 2001 addRegListOperands(Inst, N); 2002 } 2003 2004 void addSPRRegListOperands(MCInst &Inst, unsigned N) const { 2005 addRegListOperands(Inst, N); 2006 } 2007 2008 void addRotImmOperands(MCInst &Inst, unsigned N) const { 2009 assert(N == 1 && "Invalid number of operands!"); 2010 // Encoded as val>>3. The printer handles display as 8, 16, 24. 2011 Inst.addOperand(MCOperand::createImm(RotImm.Imm >> 3)); 2012 } 2013 2014 void addModImmOperands(MCInst &Inst, unsigned N) const { 2015 assert(N == 1 && "Invalid number of operands!"); 2016 2017 // Support for fixups (MCFixup) 2018 if (isImm()) 2019 return addImmOperands(Inst, N); 2020 2021 Inst.addOperand(MCOperand::createImm(ModImm.Bits | (ModImm.Rot << 7))); 2022 } 2023 2024 void addModImmNotOperands(MCInst &Inst, unsigned N) const { 2025 assert(N == 1 && "Invalid number of operands!"); 2026 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 2027 uint32_t Enc = ARM_AM::getSOImmVal(~CE->getValue()); 2028 Inst.addOperand(MCOperand::createImm(Enc)); 2029 } 2030 2031 void addModImmNegOperands(MCInst &Inst, unsigned N) const { 2032 assert(N == 1 && "Invalid number of operands!"); 2033 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 2034 uint32_t Enc = ARM_AM::getSOImmVal(-CE->getValue()); 2035 Inst.addOperand(MCOperand::createImm(Enc)); 2036 } 2037 2038 void addBitfieldOperands(MCInst &Inst, unsigned N) const { 2039 assert(N == 1 && "Invalid number of operands!"); 2040 // Munge the lsb/width into a bitfield mask. 2041 unsigned lsb = Bitfield.LSB; 2042 unsigned width = Bitfield.Width; 2043 // Make a 32-bit mask w/ the referenced bits clear and all other bits set. 2044 uint32_t Mask = ~(((uint32_t)0xffffffff >> lsb) << (32 - width) >> 2045 (32 - (lsb + width))); 2046 Inst.addOperand(MCOperand::createImm(Mask)); 2047 } 2048 2049 void addImmOperands(MCInst &Inst, unsigned N) const { 2050 assert(N == 1 && "Invalid number of operands!"); 2051 addExpr(Inst, getImm()); 2052 } 2053 2054 void addFBits16Operands(MCInst &Inst, unsigned N) const { 2055 assert(N == 1 && "Invalid number of operands!"); 2056 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 2057 Inst.addOperand(MCOperand::createImm(16 - CE->getValue())); 2058 } 2059 2060 void addFBits32Operands(MCInst &Inst, unsigned N) const { 2061 assert(N == 1 && "Invalid number of operands!"); 2062 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 2063 Inst.addOperand(MCOperand::createImm(32 - CE->getValue())); 2064 } 2065 2066 void addFPImmOperands(MCInst &Inst, unsigned N) const { 2067 assert(N == 1 && "Invalid number of operands!"); 2068 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 2069 int Val = ARM_AM::getFP32Imm(APInt(32, CE->getValue())); 2070 Inst.addOperand(MCOperand::createImm(Val)); 2071 } 2072 2073 void addImm8s4Operands(MCInst &Inst, unsigned N) const { 2074 assert(N == 1 && "Invalid number of operands!"); 2075 // FIXME: We really want to scale the value here, but the LDRD/STRD 2076 // instruction don't encode operands that way yet. 2077 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 2078 Inst.addOperand(MCOperand::createImm(CE->getValue())); 2079 } 2080 2081 void addImm0_1020s4Operands(MCInst &Inst, unsigned N) const { 2082 assert(N == 1 && "Invalid number of operands!"); 2083 // The immediate is scaled by four in the encoding and is stored 2084 // in the MCInst as such. Lop off the low two bits here. 2085 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 2086 Inst.addOperand(MCOperand::createImm(CE->getValue() / 4)); 2087 } 2088 2089 void addImm0_508s4NegOperands(MCInst &Inst, unsigned N) const { 2090 assert(N == 1 && "Invalid number of operands!"); 2091 // The immediate is scaled by four in the encoding and is stored 2092 // in the MCInst as such. Lop off the low two bits here. 2093 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 2094 Inst.addOperand(MCOperand::createImm(-(CE->getValue() / 4))); 2095 } 2096 2097 void addImm0_508s4Operands(MCInst &Inst, unsigned N) const { 2098 assert(N == 1 && "Invalid number of operands!"); 2099 // The immediate is scaled by four in the encoding and is stored 2100 // in the MCInst as such. Lop off the low two bits here. 2101 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 2102 Inst.addOperand(MCOperand::createImm(CE->getValue() / 4)); 2103 } 2104 2105 void addImm1_16Operands(MCInst &Inst, unsigned N) const { 2106 assert(N == 1 && "Invalid number of operands!"); 2107 // The constant encodes as the immediate-1, and we store in the instruction 2108 // the bits as encoded, so subtract off one here. 2109 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 2110 Inst.addOperand(MCOperand::createImm(CE->getValue() - 1)); 2111 } 2112 2113 void addImm1_32Operands(MCInst &Inst, unsigned N) const { 2114 assert(N == 1 && "Invalid number of operands!"); 2115 // The constant encodes as the immediate-1, and we store in the instruction 2116 // the bits as encoded, so subtract off one here. 2117 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 2118 Inst.addOperand(MCOperand::createImm(CE->getValue() - 1)); 2119 } 2120 2121 void addImmThumbSROperands(MCInst &Inst, unsigned N) const { 2122 assert(N == 1 && "Invalid number of operands!"); 2123 // The constant encodes as the immediate, except for 32, which encodes as 2124 // zero. 2125 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 2126 unsigned Imm = CE->getValue(); 2127 Inst.addOperand(MCOperand::createImm((Imm == 32 ? 0 : Imm))); 2128 } 2129 2130 void addPKHASRImmOperands(MCInst &Inst, unsigned N) const { 2131 assert(N == 1 && "Invalid number of operands!"); 2132 // An ASR value of 32 encodes as 0, so that's how we want to add it to 2133 // the instruction as well. 2134 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 2135 int Val = CE->getValue(); 2136 Inst.addOperand(MCOperand::createImm(Val == 32 ? 0 : Val)); 2137 } 2138 2139 void addT2SOImmNotOperands(MCInst &Inst, unsigned N) const { 2140 assert(N == 1 && "Invalid number of operands!"); 2141 // The operand is actually a t2_so_imm, but we have its bitwise 2142 // negation in the assembly source, so twiddle it here. 2143 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 2144 Inst.addOperand(MCOperand::createImm(~CE->getValue())); 2145 } 2146 2147 void addT2SOImmNegOperands(MCInst &Inst, unsigned N) const { 2148 assert(N == 1 && "Invalid number of operands!"); 2149 // The operand is actually a t2_so_imm, but we have its 2150 // negation in the assembly source, so twiddle it here. 2151 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 2152 Inst.addOperand(MCOperand::createImm(-CE->getValue())); 2153 } 2154 2155 void addImm0_4095NegOperands(MCInst &Inst, unsigned N) const { 2156 assert(N == 1 && "Invalid number of operands!"); 2157 // The operand is actually an imm0_4095, but we have its 2158 // negation in the assembly source, so twiddle it here. 2159 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 2160 Inst.addOperand(MCOperand::createImm(-CE->getValue())); 2161 } 2162 2163 void addUnsignedOffset_b8s2Operands(MCInst &Inst, unsigned N) const { 2164 if(const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm())) { 2165 Inst.addOperand(MCOperand::createImm(CE->getValue() >> 2)); 2166 return; 2167 } 2168 2169 const MCSymbolRefExpr *SR = dyn_cast<MCSymbolRefExpr>(Imm.Val); 2170 assert(SR && "Unknown value type!"); 2171 Inst.addOperand(MCOperand::createExpr(SR)); 2172 } 2173 2174 void addThumbMemPCOperands(MCInst &Inst, unsigned N) const { 2175 assert(N == 1 && "Invalid number of operands!"); 2176 if (isImm()) { 2177 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 2178 if (CE) { 2179 Inst.addOperand(MCOperand::createImm(CE->getValue())); 2180 return; 2181 } 2182 2183 const MCSymbolRefExpr *SR = dyn_cast<MCSymbolRefExpr>(Imm.Val); 2184 2185 assert(SR && "Unknown value type!"); 2186 Inst.addOperand(MCOperand::createExpr(SR)); 2187 return; 2188 } 2189 2190 assert(isMem() && "Unknown value type!"); 2191 assert(isa<MCConstantExpr>(Memory.OffsetImm) && "Unknown value type!"); 2192 Inst.addOperand(MCOperand::createImm(Memory.OffsetImm->getValue())); 2193 } 2194 2195 void addMemBarrierOptOperands(MCInst &Inst, unsigned N) const { 2196 assert(N == 1 && "Invalid number of operands!"); 2197 Inst.addOperand(MCOperand::createImm(unsigned(getMemBarrierOpt()))); 2198 } 2199 2200 void addInstSyncBarrierOptOperands(MCInst &Inst, unsigned N) const { 2201 assert(N == 1 && "Invalid number of operands!"); 2202 Inst.addOperand(MCOperand::createImm(unsigned(getInstSyncBarrierOpt()))); 2203 } 2204 2205 void addMemNoOffsetOperands(MCInst &Inst, unsigned N) const { 2206 assert(N == 1 && "Invalid number of operands!"); 2207 Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum)); 2208 } 2209 2210 void addMemPCRelImm12Operands(MCInst &Inst, unsigned N) const { 2211 assert(N == 1 && "Invalid number of operands!"); 2212 int32_t Imm = Memory.OffsetImm->getValue(); 2213 Inst.addOperand(MCOperand::createImm(Imm)); 2214 } 2215 2216 void addAdrLabelOperands(MCInst &Inst, unsigned N) const { 2217 assert(N == 1 && "Invalid number of operands!"); 2218 assert(isImm() && "Not an immediate!"); 2219 2220 // If we have an immediate that's not a constant, treat it as a label 2221 // reference needing a fixup. 2222 if (!isa<MCConstantExpr>(getImm())) { 2223 Inst.addOperand(MCOperand::createExpr(getImm())); 2224 return; 2225 } 2226 2227 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 2228 int Val = CE->getValue(); 2229 Inst.addOperand(MCOperand::createImm(Val)); 2230 } 2231 2232 void addAlignedMemoryOperands(MCInst &Inst, unsigned N) const { 2233 assert(N == 2 && "Invalid number of operands!"); 2234 Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum)); 2235 Inst.addOperand(MCOperand::createImm(Memory.Alignment)); 2236 } 2237 2238 void addDupAlignedMemoryNoneOperands(MCInst &Inst, unsigned N) const { 2239 addAlignedMemoryOperands(Inst, N); 2240 } 2241 2242 void addAlignedMemoryNoneOperands(MCInst &Inst, unsigned N) const { 2243 addAlignedMemoryOperands(Inst, N); 2244 } 2245 2246 void addAlignedMemory16Operands(MCInst &Inst, unsigned N) const { 2247 addAlignedMemoryOperands(Inst, N); 2248 } 2249 2250 void addDupAlignedMemory16Operands(MCInst &Inst, unsigned N) const { 2251 addAlignedMemoryOperands(Inst, N); 2252 } 2253 2254 void addAlignedMemory32Operands(MCInst &Inst, unsigned N) const { 2255 addAlignedMemoryOperands(Inst, N); 2256 } 2257 2258 void addDupAlignedMemory32Operands(MCInst &Inst, unsigned N) const { 2259 addAlignedMemoryOperands(Inst, N); 2260 } 2261 2262 void addAlignedMemory64Operands(MCInst &Inst, unsigned N) const { 2263 addAlignedMemoryOperands(Inst, N); 2264 } 2265 2266 void addDupAlignedMemory64Operands(MCInst &Inst, unsigned N) const { 2267 addAlignedMemoryOperands(Inst, N); 2268 } 2269 2270 void addAlignedMemory64or128Operands(MCInst &Inst, unsigned N) const { 2271 addAlignedMemoryOperands(Inst, N); 2272 } 2273 2274 void addDupAlignedMemory64or128Operands(MCInst &Inst, unsigned N) const { 2275 addAlignedMemoryOperands(Inst, N); 2276 } 2277 2278 void addAlignedMemory64or128or256Operands(MCInst &Inst, unsigned N) const { 2279 addAlignedMemoryOperands(Inst, N); 2280 } 2281 2282 void addAddrMode2Operands(MCInst &Inst, unsigned N) const { 2283 assert(N == 3 && "Invalid number of operands!"); 2284 int32_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0; 2285 if (!Memory.OffsetRegNum) { 2286 ARM_AM::AddrOpc AddSub = Val < 0 ? ARM_AM::sub : ARM_AM::add; 2287 // Special case for #-0 2288 if (Val == INT32_MIN) Val = 0; 2289 if (Val < 0) Val = -Val; 2290 Val = ARM_AM::getAM2Opc(AddSub, Val, ARM_AM::no_shift); 2291 } else { 2292 // For register offset, we encode the shift type and negation flag 2293 // here. 2294 Val = ARM_AM::getAM2Opc(Memory.isNegative ? ARM_AM::sub : ARM_AM::add, 2295 Memory.ShiftImm, Memory.ShiftType); 2296 } 2297 Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum)); 2298 Inst.addOperand(MCOperand::createReg(Memory.OffsetRegNum)); 2299 Inst.addOperand(MCOperand::createImm(Val)); 2300 } 2301 2302 void addAM2OffsetImmOperands(MCInst &Inst, unsigned N) const { 2303 assert(N == 2 && "Invalid number of operands!"); 2304 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 2305 assert(CE && "non-constant AM2OffsetImm operand!"); 2306 int32_t Val = CE->getValue(); 2307 ARM_AM::AddrOpc AddSub = Val < 0 ? ARM_AM::sub : ARM_AM::add; 2308 // Special case for #-0 2309 if (Val == INT32_MIN) Val = 0; 2310 if (Val < 0) Val = -Val; 2311 Val = ARM_AM::getAM2Opc(AddSub, Val, ARM_AM::no_shift); 2312 Inst.addOperand(MCOperand::createReg(0)); 2313 Inst.addOperand(MCOperand::createImm(Val)); 2314 } 2315 2316 void addAddrMode3Operands(MCInst &Inst, unsigned N) const { 2317 assert(N == 3 && "Invalid number of operands!"); 2318 // If we have an immediate that's not a constant, treat it as a label 2319 // reference needing a fixup. If it is a constant, it's something else 2320 // and we reject it. 2321 if (isImm()) { 2322 Inst.addOperand(MCOperand::createExpr(getImm())); 2323 Inst.addOperand(MCOperand::createReg(0)); 2324 Inst.addOperand(MCOperand::createImm(0)); 2325 return; 2326 } 2327 2328 int32_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0; 2329 if (!Memory.OffsetRegNum) { 2330 ARM_AM::AddrOpc AddSub = Val < 0 ? ARM_AM::sub : ARM_AM::add; 2331 // Special case for #-0 2332 if (Val == INT32_MIN) Val = 0; 2333 if (Val < 0) Val = -Val; 2334 Val = ARM_AM::getAM3Opc(AddSub, Val); 2335 } else { 2336 // For register offset, we encode the shift type and negation flag 2337 // here. 2338 Val = ARM_AM::getAM3Opc(Memory.isNegative ? ARM_AM::sub : ARM_AM::add, 0); 2339 } 2340 Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum)); 2341 Inst.addOperand(MCOperand::createReg(Memory.OffsetRegNum)); 2342 Inst.addOperand(MCOperand::createImm(Val)); 2343 } 2344 2345 void addAM3OffsetOperands(MCInst &Inst, unsigned N) const { 2346 assert(N == 2 && "Invalid number of operands!"); 2347 if (Kind == k_PostIndexRegister) { 2348 int32_t Val = 2349 ARM_AM::getAM3Opc(PostIdxReg.isAdd ? ARM_AM::add : ARM_AM::sub, 0); 2350 Inst.addOperand(MCOperand::createReg(PostIdxReg.RegNum)); 2351 Inst.addOperand(MCOperand::createImm(Val)); 2352 return; 2353 } 2354 2355 // Constant offset. 2356 const MCConstantExpr *CE = static_cast<const MCConstantExpr*>(getImm()); 2357 int32_t Val = CE->getValue(); 2358 ARM_AM::AddrOpc AddSub = Val < 0 ? ARM_AM::sub : ARM_AM::add; 2359 // Special case for #-0 2360 if (Val == INT32_MIN) Val = 0; 2361 if (Val < 0) Val = -Val; 2362 Val = ARM_AM::getAM3Opc(AddSub, Val); 2363 Inst.addOperand(MCOperand::createReg(0)); 2364 Inst.addOperand(MCOperand::createImm(Val)); 2365 } 2366 2367 void addAddrMode5Operands(MCInst &Inst, unsigned N) const { 2368 assert(N == 2 && "Invalid number of operands!"); 2369 // If we have an immediate that's not a constant, treat it as a label 2370 // reference needing a fixup. If it is a constant, it's something else 2371 // and we reject it. 2372 if (isImm()) { 2373 Inst.addOperand(MCOperand::createExpr(getImm())); 2374 Inst.addOperand(MCOperand::createImm(0)); 2375 return; 2376 } 2377 2378 // The lower two bits are always zero and as such are not encoded. 2379 int32_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() / 4 : 0; 2380 ARM_AM::AddrOpc AddSub = Val < 0 ? ARM_AM::sub : ARM_AM::add; 2381 // Special case for #-0 2382 if (Val == INT32_MIN) Val = 0; 2383 if (Val < 0) Val = -Val; 2384 Val = ARM_AM::getAM5Opc(AddSub, Val); 2385 Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum)); 2386 Inst.addOperand(MCOperand::createImm(Val)); 2387 } 2388 2389 void addAddrMode5FP16Operands(MCInst &Inst, unsigned N) const { 2390 assert(N == 2 && "Invalid number of operands!"); 2391 // If we have an immediate that's not a constant, treat it as a label 2392 // reference needing a fixup. If it is a constant, it's something else 2393 // and we reject it. 2394 if (isImm()) { 2395 Inst.addOperand(MCOperand::createExpr(getImm())); 2396 Inst.addOperand(MCOperand::createImm(0)); 2397 return; 2398 } 2399 2400 // The lower bit is always zero and as such is not encoded. 2401 int32_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() / 2 : 0; 2402 ARM_AM::AddrOpc AddSub = Val < 0 ? ARM_AM::sub : ARM_AM::add; 2403 // Special case for #-0 2404 if (Val == INT32_MIN) Val = 0; 2405 if (Val < 0) Val = -Val; 2406 Val = ARM_AM::getAM5FP16Opc(AddSub, Val); 2407 Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum)); 2408 Inst.addOperand(MCOperand::createImm(Val)); 2409 } 2410 2411 void addMemImm8s4OffsetOperands(MCInst &Inst, unsigned N) const { 2412 assert(N == 2 && "Invalid number of operands!"); 2413 // If we have an immediate that's not a constant, treat it as a label 2414 // reference needing a fixup. If it is a constant, it's something else 2415 // and we reject it. 2416 if (isImm()) { 2417 Inst.addOperand(MCOperand::createExpr(getImm())); 2418 Inst.addOperand(MCOperand::createImm(0)); 2419 return; 2420 } 2421 2422 int64_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0; 2423 Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum)); 2424 Inst.addOperand(MCOperand::createImm(Val)); 2425 } 2426 2427 void addMemImm0_1020s4OffsetOperands(MCInst &Inst, unsigned N) const { 2428 assert(N == 2 && "Invalid number of operands!"); 2429 // The lower two bits are always zero and as such are not encoded. 2430 int32_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() / 4 : 0; 2431 Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum)); 2432 Inst.addOperand(MCOperand::createImm(Val)); 2433 } 2434 2435 void addMemImm8OffsetOperands(MCInst &Inst, unsigned N) const { 2436 assert(N == 2 && "Invalid number of operands!"); 2437 int64_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0; 2438 Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum)); 2439 Inst.addOperand(MCOperand::createImm(Val)); 2440 } 2441 2442 void addMemPosImm8OffsetOperands(MCInst &Inst, unsigned N) const { 2443 addMemImm8OffsetOperands(Inst, N); 2444 } 2445 2446 void addMemNegImm8OffsetOperands(MCInst &Inst, unsigned N) const { 2447 addMemImm8OffsetOperands(Inst, N); 2448 } 2449 2450 void addMemUImm12OffsetOperands(MCInst &Inst, unsigned N) const { 2451 assert(N == 2 && "Invalid number of operands!"); 2452 // If this is an immediate, it's a label reference. 2453 if (isImm()) { 2454 addExpr(Inst, getImm()); 2455 Inst.addOperand(MCOperand::createImm(0)); 2456 return; 2457 } 2458 2459 // Otherwise, it's a normal memory reg+offset. 2460 int64_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0; 2461 Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum)); 2462 Inst.addOperand(MCOperand::createImm(Val)); 2463 } 2464 2465 void addMemImm12OffsetOperands(MCInst &Inst, unsigned N) const { 2466 assert(N == 2 && "Invalid number of operands!"); 2467 // If this is an immediate, it's a label reference. 2468 if (isImm()) { 2469 addExpr(Inst, getImm()); 2470 Inst.addOperand(MCOperand::createImm(0)); 2471 return; 2472 } 2473 2474 // Otherwise, it's a normal memory reg+offset. 2475 int64_t Val = Memory.OffsetImm ? Memory.OffsetImm->getValue() : 0; 2476 Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum)); 2477 Inst.addOperand(MCOperand::createImm(Val)); 2478 } 2479 2480 void addConstPoolAsmImmOperands(MCInst &Inst, unsigned N) const { 2481 assert(N == 1 && "Invalid number of operands!"); 2482 // This is container for the immediate that we will create the constant 2483 // pool from 2484 addExpr(Inst, getConstantPoolImm()); 2485 return; 2486 } 2487 2488 void addMemTBBOperands(MCInst &Inst, unsigned N) const { 2489 assert(N == 2 && "Invalid number of operands!"); 2490 Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum)); 2491 Inst.addOperand(MCOperand::createReg(Memory.OffsetRegNum)); 2492 } 2493 2494 void addMemTBHOperands(MCInst &Inst, unsigned N) const { 2495 assert(N == 2 && "Invalid number of operands!"); 2496 Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum)); 2497 Inst.addOperand(MCOperand::createReg(Memory.OffsetRegNum)); 2498 } 2499 2500 void addMemRegOffsetOperands(MCInst &Inst, unsigned N) const { 2501 assert(N == 3 && "Invalid number of operands!"); 2502 unsigned Val = 2503 ARM_AM::getAM2Opc(Memory.isNegative ? ARM_AM::sub : ARM_AM::add, 2504 Memory.ShiftImm, Memory.ShiftType); 2505 Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum)); 2506 Inst.addOperand(MCOperand::createReg(Memory.OffsetRegNum)); 2507 Inst.addOperand(MCOperand::createImm(Val)); 2508 } 2509 2510 void addT2MemRegOffsetOperands(MCInst &Inst, unsigned N) const { 2511 assert(N == 3 && "Invalid number of operands!"); 2512 Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum)); 2513 Inst.addOperand(MCOperand::createReg(Memory.OffsetRegNum)); 2514 Inst.addOperand(MCOperand::createImm(Memory.ShiftImm)); 2515 } 2516 2517 void addMemThumbRROperands(MCInst &Inst, unsigned N) const { 2518 assert(N == 2 && "Invalid number of operands!"); 2519 Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum)); 2520 Inst.addOperand(MCOperand::createReg(Memory.OffsetRegNum)); 2521 } 2522 2523 void addMemThumbRIs4Operands(MCInst &Inst, unsigned N) const { 2524 assert(N == 2 && "Invalid number of operands!"); 2525 int64_t Val = Memory.OffsetImm ? (Memory.OffsetImm->getValue() / 4) : 0; 2526 Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum)); 2527 Inst.addOperand(MCOperand::createImm(Val)); 2528 } 2529 2530 void addMemThumbRIs2Operands(MCInst &Inst, unsigned N) const { 2531 assert(N == 2 && "Invalid number of operands!"); 2532 int64_t Val = Memory.OffsetImm ? (Memory.OffsetImm->getValue() / 2) : 0; 2533 Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum)); 2534 Inst.addOperand(MCOperand::createImm(Val)); 2535 } 2536 2537 void addMemThumbRIs1Operands(MCInst &Inst, unsigned N) const { 2538 assert(N == 2 && "Invalid number of operands!"); 2539 int64_t Val = Memory.OffsetImm ? (Memory.OffsetImm->getValue()) : 0; 2540 Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum)); 2541 Inst.addOperand(MCOperand::createImm(Val)); 2542 } 2543 2544 void addMemThumbSPIOperands(MCInst &Inst, unsigned N) const { 2545 assert(N == 2 && "Invalid number of operands!"); 2546 int64_t Val = Memory.OffsetImm ? (Memory.OffsetImm->getValue() / 4) : 0; 2547 Inst.addOperand(MCOperand::createReg(Memory.BaseRegNum)); 2548 Inst.addOperand(MCOperand::createImm(Val)); 2549 } 2550 2551 void addPostIdxImm8Operands(MCInst &Inst, unsigned N) const { 2552 assert(N == 1 && "Invalid number of operands!"); 2553 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 2554 assert(CE && "non-constant post-idx-imm8 operand!"); 2555 int Imm = CE->getValue(); 2556 bool isAdd = Imm >= 0; 2557 if (Imm == INT32_MIN) Imm = 0; 2558 Imm = (Imm < 0 ? -Imm : Imm) | (int)isAdd << 8; 2559 Inst.addOperand(MCOperand::createImm(Imm)); 2560 } 2561 2562 void addPostIdxImm8s4Operands(MCInst &Inst, unsigned N) const { 2563 assert(N == 1 && "Invalid number of operands!"); 2564 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 2565 assert(CE && "non-constant post-idx-imm8s4 operand!"); 2566 int Imm = CE->getValue(); 2567 bool isAdd = Imm >= 0; 2568 if (Imm == INT32_MIN) Imm = 0; 2569 // Immediate is scaled by 4. 2570 Imm = ((Imm < 0 ? -Imm : Imm) / 4) | (int)isAdd << 8; 2571 Inst.addOperand(MCOperand::createImm(Imm)); 2572 } 2573 2574 void addPostIdxRegOperands(MCInst &Inst, unsigned N) const { 2575 assert(N == 2 && "Invalid number of operands!"); 2576 Inst.addOperand(MCOperand::createReg(PostIdxReg.RegNum)); 2577 Inst.addOperand(MCOperand::createImm(PostIdxReg.isAdd)); 2578 } 2579 2580 void addPostIdxRegShiftedOperands(MCInst &Inst, unsigned N) const { 2581 assert(N == 2 && "Invalid number of operands!"); 2582 Inst.addOperand(MCOperand::createReg(PostIdxReg.RegNum)); 2583 // The sign, shift type, and shift amount are encoded in a single operand 2584 // using the AM2 encoding helpers. 2585 ARM_AM::AddrOpc opc = PostIdxReg.isAdd ? ARM_AM::add : ARM_AM::sub; 2586 unsigned Imm = ARM_AM::getAM2Opc(opc, PostIdxReg.ShiftImm, 2587 PostIdxReg.ShiftTy); 2588 Inst.addOperand(MCOperand::createImm(Imm)); 2589 } 2590 2591 void addMSRMaskOperands(MCInst &Inst, unsigned N) const { 2592 assert(N == 1 && "Invalid number of operands!"); 2593 Inst.addOperand(MCOperand::createImm(unsigned(getMSRMask()))); 2594 } 2595 2596 void addBankedRegOperands(MCInst &Inst, unsigned N) const { 2597 assert(N == 1 && "Invalid number of operands!"); 2598 Inst.addOperand(MCOperand::createImm(unsigned(getBankedReg()))); 2599 } 2600 2601 void addProcIFlagsOperands(MCInst &Inst, unsigned N) const { 2602 assert(N == 1 && "Invalid number of operands!"); 2603 Inst.addOperand(MCOperand::createImm(unsigned(getProcIFlags()))); 2604 } 2605 2606 void addVecListOperands(MCInst &Inst, unsigned N) const { 2607 assert(N == 1 && "Invalid number of operands!"); 2608 Inst.addOperand(MCOperand::createReg(VectorList.RegNum)); 2609 } 2610 2611 void addVecListIndexedOperands(MCInst &Inst, unsigned N) const { 2612 assert(N == 2 && "Invalid number of operands!"); 2613 Inst.addOperand(MCOperand::createReg(VectorList.RegNum)); 2614 Inst.addOperand(MCOperand::createImm(VectorList.LaneIndex)); 2615 } 2616 2617 void addVectorIndex8Operands(MCInst &Inst, unsigned N) const { 2618 assert(N == 1 && "Invalid number of operands!"); 2619 Inst.addOperand(MCOperand::createImm(getVectorIndex())); 2620 } 2621 2622 void addVectorIndex16Operands(MCInst &Inst, unsigned N) const { 2623 assert(N == 1 && "Invalid number of operands!"); 2624 Inst.addOperand(MCOperand::createImm(getVectorIndex())); 2625 } 2626 2627 void addVectorIndex32Operands(MCInst &Inst, unsigned N) const { 2628 assert(N == 1 && "Invalid number of operands!"); 2629 Inst.addOperand(MCOperand::createImm(getVectorIndex())); 2630 } 2631 2632 void addNEONi8splatOperands(MCInst &Inst, unsigned N) const { 2633 assert(N == 1 && "Invalid number of operands!"); 2634 // The immediate encodes the type of constant as well as the value. 2635 // Mask in that this is an i8 splat. 2636 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 2637 Inst.addOperand(MCOperand::createImm(CE->getValue() | 0xe00)); 2638 } 2639 2640 void addNEONi16splatOperands(MCInst &Inst, unsigned N) const { 2641 assert(N == 1 && "Invalid number of operands!"); 2642 // The immediate encodes the type of constant as well as the value. 2643 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 2644 unsigned Value = CE->getValue(); 2645 Value = ARM_AM::encodeNEONi16splat(Value); 2646 Inst.addOperand(MCOperand::createImm(Value)); 2647 } 2648 2649 void addNEONi16splatNotOperands(MCInst &Inst, unsigned N) const { 2650 assert(N == 1 && "Invalid number of operands!"); 2651 // The immediate encodes the type of constant as well as the value. 2652 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 2653 unsigned Value = CE->getValue(); 2654 Value = ARM_AM::encodeNEONi16splat(~Value & 0xffff); 2655 Inst.addOperand(MCOperand::createImm(Value)); 2656 } 2657 2658 void addNEONi32splatOperands(MCInst &Inst, unsigned N) const { 2659 assert(N == 1 && "Invalid number of operands!"); 2660 // The immediate encodes the type of constant as well as the value. 2661 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 2662 unsigned Value = CE->getValue(); 2663 Value = ARM_AM::encodeNEONi32splat(Value); 2664 Inst.addOperand(MCOperand::createImm(Value)); 2665 } 2666 2667 void addNEONi32splatNotOperands(MCInst &Inst, unsigned N) const { 2668 assert(N == 1 && "Invalid number of operands!"); 2669 // The immediate encodes the type of constant as well as the value. 2670 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 2671 unsigned Value = CE->getValue(); 2672 Value = ARM_AM::encodeNEONi32splat(~Value); 2673 Inst.addOperand(MCOperand::createImm(Value)); 2674 } 2675 2676 void addNEONinvByteReplicateOperands(MCInst &Inst, unsigned N) const { 2677 assert(N == 1 && "Invalid number of operands!"); 2678 // The immediate encodes the type of constant as well as the value. 2679 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 2680 unsigned Value = CE->getValue(); 2681 assert((Inst.getOpcode() == ARM::VMOVv8i8 || 2682 Inst.getOpcode() == ARM::VMOVv16i8) && 2683 "All vmvn instructions that wants to replicate non-zero byte " 2684 "always must be replaced with VMOVv8i8 or VMOVv16i8."); 2685 unsigned B = ((~Value) & 0xff); 2686 B |= 0xe00; // cmode = 0b1110 2687 Inst.addOperand(MCOperand::createImm(B)); 2688 } 2689 void addNEONi32vmovOperands(MCInst &Inst, unsigned N) const { 2690 assert(N == 1 && "Invalid number of operands!"); 2691 // The immediate encodes the type of constant as well as the value. 2692 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 2693 unsigned Value = CE->getValue(); 2694 if (Value >= 256 && Value <= 0xffff) 2695 Value = (Value >> 8) | ((Value & 0xff) ? 0xc00 : 0x200); 2696 else if (Value > 0xffff && Value <= 0xffffff) 2697 Value = (Value >> 16) | ((Value & 0xff) ? 0xd00 : 0x400); 2698 else if (Value > 0xffffff) 2699 Value = (Value >> 24) | 0x600; 2700 Inst.addOperand(MCOperand::createImm(Value)); 2701 } 2702 2703 void addNEONvmovByteReplicateOperands(MCInst &Inst, unsigned N) const { 2704 assert(N == 1 && "Invalid number of operands!"); 2705 // The immediate encodes the type of constant as well as the value. 2706 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 2707 unsigned Value = CE->getValue(); 2708 assert((Inst.getOpcode() == ARM::VMOVv8i8 || 2709 Inst.getOpcode() == ARM::VMOVv16i8) && 2710 "All instructions that wants to replicate non-zero byte " 2711 "always must be replaced with VMOVv8i8 or VMOVv16i8."); 2712 unsigned B = Value & 0xff; 2713 B |= 0xe00; // cmode = 0b1110 2714 Inst.addOperand(MCOperand::createImm(B)); 2715 } 2716 void addNEONi32vmovNegOperands(MCInst &Inst, unsigned N) const { 2717 assert(N == 1 && "Invalid number of operands!"); 2718 // The immediate encodes the type of constant as well as the value. 2719 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 2720 unsigned Value = ~CE->getValue(); 2721 if (Value >= 256 && Value <= 0xffff) 2722 Value = (Value >> 8) | ((Value & 0xff) ? 0xc00 : 0x200); 2723 else if (Value > 0xffff && Value <= 0xffffff) 2724 Value = (Value >> 16) | ((Value & 0xff) ? 0xd00 : 0x400); 2725 else if (Value > 0xffffff) 2726 Value = (Value >> 24) | 0x600; 2727 Inst.addOperand(MCOperand::createImm(Value)); 2728 } 2729 2730 void addNEONi64splatOperands(MCInst &Inst, unsigned N) const { 2731 assert(N == 1 && "Invalid number of operands!"); 2732 // The immediate encodes the type of constant as well as the value. 2733 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); 2734 uint64_t Value = CE->getValue(); 2735 unsigned Imm = 0; 2736 for (unsigned i = 0; i < 8; ++i, Value >>= 8) { 2737 Imm |= (Value & 1) << i; 2738 } 2739 Inst.addOperand(MCOperand::createImm(Imm | 0x1e00)); 2740 } 2741 2742 void print(raw_ostream &OS) const override; 2743 2744 static std::unique_ptr<ARMOperand> CreateITMask(unsigned Mask, SMLoc S) { 2745 auto Op = make_unique<ARMOperand>(k_ITCondMask); 2746 Op->ITMask.Mask = Mask; 2747 Op->StartLoc = S; 2748 Op->EndLoc = S; 2749 return Op; 2750 } 2751 2752 static std::unique_ptr<ARMOperand> CreateCondCode(ARMCC::CondCodes CC, 2753 SMLoc S) { 2754 auto Op = make_unique<ARMOperand>(k_CondCode); 2755 Op->CC.Val = CC; 2756 Op->StartLoc = S; 2757 Op->EndLoc = S; 2758 return Op; 2759 } 2760 2761 static std::unique_ptr<ARMOperand> CreateCoprocNum(unsigned CopVal, SMLoc S) { 2762 auto Op = make_unique<ARMOperand>(k_CoprocNum); 2763 Op->Cop.Val = CopVal; 2764 Op->StartLoc = S; 2765 Op->EndLoc = S; 2766 return Op; 2767 } 2768 2769 static std::unique_ptr<ARMOperand> CreateCoprocReg(unsigned CopVal, SMLoc S) { 2770 auto Op = make_unique<ARMOperand>(k_CoprocReg); 2771 Op->Cop.Val = CopVal; 2772 Op->StartLoc = S; 2773 Op->EndLoc = S; 2774 return Op; 2775 } 2776 2777 static std::unique_ptr<ARMOperand> CreateCoprocOption(unsigned Val, SMLoc S, 2778 SMLoc E) { 2779 auto Op = make_unique<ARMOperand>(k_CoprocOption); 2780 Op->Cop.Val = Val; 2781 Op->StartLoc = S; 2782 Op->EndLoc = E; 2783 return Op; 2784 } 2785 2786 static std::unique_ptr<ARMOperand> CreateCCOut(unsigned RegNum, SMLoc S) { 2787 auto Op = make_unique<ARMOperand>(k_CCOut); 2788 Op->Reg.RegNum = RegNum; 2789 Op->StartLoc = S; 2790 Op->EndLoc = S; 2791 return Op; 2792 } 2793 2794 static std::unique_ptr<ARMOperand> CreateToken(StringRef Str, SMLoc S) { 2795 auto Op = make_unique<ARMOperand>(k_Token); 2796 Op->Tok.Data = Str.data(); 2797 Op->Tok.Length = Str.size(); 2798 Op->StartLoc = S; 2799 Op->EndLoc = S; 2800 return Op; 2801 } 2802 2803 static std::unique_ptr<ARMOperand> CreateReg(unsigned RegNum, SMLoc S, 2804 SMLoc E) { 2805 auto Op = make_unique<ARMOperand>(k_Register); 2806 Op->Reg.RegNum = RegNum; 2807 Op->StartLoc = S; 2808 Op->EndLoc = E; 2809 return Op; 2810 } 2811 2812 static std::unique_ptr<ARMOperand> 2813 CreateShiftedRegister(ARM_AM::ShiftOpc ShTy, unsigned SrcReg, 2814 unsigned ShiftReg, unsigned ShiftImm, SMLoc S, 2815 SMLoc E) { 2816 auto Op = make_unique<ARMOperand>(k_ShiftedRegister); 2817 Op->RegShiftedReg.ShiftTy = ShTy; 2818 Op->RegShiftedReg.SrcReg = SrcReg; 2819 Op->RegShiftedReg.ShiftReg = ShiftReg; 2820 Op->RegShiftedReg.ShiftImm = ShiftImm; 2821 Op->StartLoc = S; 2822 Op->EndLoc = E; 2823 return Op; 2824 } 2825 2826 static std::unique_ptr<ARMOperand> 2827 CreateShiftedImmediate(ARM_AM::ShiftOpc ShTy, unsigned SrcReg, 2828 unsigned ShiftImm, SMLoc S, SMLoc E) { 2829 auto Op = make_unique<ARMOperand>(k_ShiftedImmediate); 2830 Op->RegShiftedImm.ShiftTy = ShTy; 2831 Op->RegShiftedImm.SrcReg = SrcReg; 2832 Op->RegShiftedImm.ShiftImm = ShiftImm; 2833 Op->StartLoc = S; 2834 Op->EndLoc = E; 2835 return Op; 2836 } 2837 2838 static std::unique_ptr<ARMOperand> CreateShifterImm(bool isASR, unsigned Imm, 2839 SMLoc S, SMLoc E) { 2840 auto Op = make_unique<ARMOperand>(k_ShifterImmediate); 2841 Op->ShifterImm.isASR = isASR; 2842 Op->ShifterImm.Imm = Imm; 2843 Op->StartLoc = S; 2844 Op->EndLoc = E; 2845 return Op; 2846 } 2847 2848 static std::unique_ptr<ARMOperand> CreateRotImm(unsigned Imm, SMLoc S, 2849 SMLoc E) { 2850 auto Op = make_unique<ARMOperand>(k_RotateImmediate); 2851 Op->RotImm.Imm = Imm; 2852 Op->StartLoc = S; 2853 Op->EndLoc = E; 2854 return Op; 2855 } 2856 2857 static std::unique_ptr<ARMOperand> CreateModImm(unsigned Bits, unsigned Rot, 2858 SMLoc S, SMLoc E) { 2859 auto Op = make_unique<ARMOperand>(k_ModifiedImmediate); 2860 Op->ModImm.Bits = Bits; 2861 Op->ModImm.Rot = Rot; 2862 Op->StartLoc = S; 2863 Op->EndLoc = E; 2864 return Op; 2865 } 2866 2867 static std::unique_ptr<ARMOperand> 2868 CreateConstantPoolImm(const MCExpr *Val, SMLoc S, SMLoc E) { 2869 auto Op = make_unique<ARMOperand>(k_ConstantPoolImmediate); 2870 Op->Imm.Val = Val; 2871 Op->StartLoc = S; 2872 Op->EndLoc = E; 2873 return Op; 2874 } 2875 2876 static std::unique_ptr<ARMOperand> 2877 CreateBitfield(unsigned LSB, unsigned Width, SMLoc S, SMLoc E) { 2878 auto Op = make_unique<ARMOperand>(k_BitfieldDescriptor); 2879 Op->Bitfield.LSB = LSB; 2880 Op->Bitfield.Width = Width; 2881 Op->StartLoc = S; 2882 Op->EndLoc = E; 2883 return Op; 2884 } 2885 2886 static std::unique_ptr<ARMOperand> 2887 CreateRegList(SmallVectorImpl<std::pair<unsigned, unsigned>> &Regs, 2888 SMLoc StartLoc, SMLoc EndLoc) { 2889 assert (Regs.size() > 0 && "RegList contains no registers?"); 2890 KindTy Kind = k_RegisterList; 2891 2892 if (ARMMCRegisterClasses[ARM::DPRRegClassID].contains(Regs.front().second)) 2893 Kind = k_DPRRegisterList; 2894 else if (ARMMCRegisterClasses[ARM::SPRRegClassID]. 2895 contains(Regs.front().second)) 2896 Kind = k_SPRRegisterList; 2897 2898 // Sort based on the register encoding values. 2899 array_pod_sort(Regs.begin(), Regs.end()); 2900 2901 auto Op = make_unique<ARMOperand>(Kind); 2902 for (SmallVectorImpl<std::pair<unsigned, unsigned> >::const_iterator 2903 I = Regs.begin(), E = Regs.end(); I != E; ++I) 2904 Op->Registers.push_back(I->second); 2905 Op->StartLoc = StartLoc; 2906 Op->EndLoc = EndLoc; 2907 return Op; 2908 } 2909 2910 static std::unique_ptr<ARMOperand> CreateVectorList(unsigned RegNum, 2911 unsigned Count, 2912 bool isDoubleSpaced, 2913 SMLoc S, SMLoc E) { 2914 auto Op = make_unique<ARMOperand>(k_VectorList); 2915 Op->VectorList.RegNum = RegNum; 2916 Op->VectorList.Count = Count; 2917 Op->VectorList.isDoubleSpaced = isDoubleSpaced; 2918 Op->StartLoc = S; 2919 Op->EndLoc = E; 2920 return Op; 2921 } 2922 2923 static std::unique_ptr<ARMOperand> 2924 CreateVectorListAllLanes(unsigned RegNum, unsigned Count, bool isDoubleSpaced, 2925 SMLoc S, SMLoc E) { 2926 auto Op = make_unique<ARMOperand>(k_VectorListAllLanes); 2927 Op->VectorList.RegNum = RegNum; 2928 Op->VectorList.Count = Count; 2929 Op->VectorList.isDoubleSpaced = isDoubleSpaced; 2930 Op->StartLoc = S; 2931 Op->EndLoc = E; 2932 return Op; 2933 } 2934 2935 static std::unique_ptr<ARMOperand> 2936 CreateVectorListIndexed(unsigned RegNum, unsigned Count, unsigned Index, 2937 bool isDoubleSpaced, SMLoc S, SMLoc E) { 2938 auto Op = make_unique<ARMOperand>(k_VectorListIndexed); 2939 Op->VectorList.RegNum = RegNum; 2940 Op->VectorList.Count = Count; 2941 Op->VectorList.LaneIndex = Index; 2942 Op->VectorList.isDoubleSpaced = isDoubleSpaced; 2943 Op->StartLoc = S; 2944 Op->EndLoc = E; 2945 return Op; 2946 } 2947 2948 static std::unique_ptr<ARMOperand> 2949 CreateVectorIndex(unsigned Idx, SMLoc S, SMLoc E, MCContext &Ctx) { 2950 auto Op = make_unique<ARMOperand>(k_VectorIndex); 2951 Op->VectorIndex.Val = Idx; 2952 Op->StartLoc = S; 2953 Op->EndLoc = E; 2954 return Op; 2955 } 2956 2957 static std::unique_ptr<ARMOperand> CreateImm(const MCExpr *Val, SMLoc S, 2958 SMLoc E) { 2959 auto Op = make_unique<ARMOperand>(k_Immediate); 2960 Op->Imm.Val = Val; 2961 Op->StartLoc = S; 2962 Op->EndLoc = E; 2963 return Op; 2964 } 2965 2966 static std::unique_ptr<ARMOperand> 2967 CreateMem(unsigned BaseRegNum, const MCConstantExpr *OffsetImm, 2968 unsigned OffsetRegNum, ARM_AM::ShiftOpc ShiftType, 2969 unsigned ShiftImm, unsigned Alignment, bool isNegative, SMLoc S, 2970 SMLoc E, SMLoc AlignmentLoc = SMLoc()) { 2971 auto Op = make_unique<ARMOperand>(k_Memory); 2972 Op->Memory.BaseRegNum = BaseRegNum; 2973 Op->Memory.OffsetImm = OffsetImm; 2974 Op->Memory.OffsetRegNum = OffsetRegNum; 2975 Op->Memory.ShiftType = ShiftType; 2976 Op->Memory.ShiftImm = ShiftImm; 2977 Op->Memory.Alignment = Alignment; 2978 Op->Memory.isNegative = isNegative; 2979 Op->StartLoc = S; 2980 Op->EndLoc = E; 2981 Op->AlignmentLoc = AlignmentLoc; 2982 return Op; 2983 } 2984 2985 static std::unique_ptr<ARMOperand> 2986 CreatePostIdxReg(unsigned RegNum, bool isAdd, ARM_AM::ShiftOpc ShiftTy, 2987 unsigned ShiftImm, SMLoc S, SMLoc E) { 2988 auto Op = make_unique<ARMOperand>(k_PostIndexRegister); 2989 Op->PostIdxReg.RegNum = RegNum; 2990 Op->PostIdxReg.isAdd = isAdd; 2991 Op->PostIdxReg.ShiftTy = ShiftTy; 2992 Op->PostIdxReg.ShiftImm = ShiftImm; 2993 Op->StartLoc = S; 2994 Op->EndLoc = E; 2995 return Op; 2996 } 2997 2998 static std::unique_ptr<ARMOperand> CreateMemBarrierOpt(ARM_MB::MemBOpt Opt, 2999 SMLoc S) { 3000 auto Op = make_unique<ARMOperand>(k_MemBarrierOpt); 3001 Op->MBOpt.Val = Opt; 3002 Op->StartLoc = S; 3003 Op->EndLoc = S; 3004 return Op; 3005 } 3006 3007 static std::unique_ptr<ARMOperand> 3008 CreateInstSyncBarrierOpt(ARM_ISB::InstSyncBOpt Opt, SMLoc S) { 3009 auto Op = make_unique<ARMOperand>(k_InstSyncBarrierOpt); 3010 Op->ISBOpt.Val = Opt; 3011 Op->StartLoc = S; 3012 Op->EndLoc = S; 3013 return Op; 3014 } 3015 3016 static std::unique_ptr<ARMOperand> CreateProcIFlags(ARM_PROC::IFlags IFlags, 3017 SMLoc S) { 3018 auto Op = make_unique<ARMOperand>(k_ProcIFlags); 3019 Op->IFlags.Val = IFlags; 3020 Op->StartLoc = S; 3021 Op->EndLoc = S; 3022 return Op; 3023 } 3024 3025 static std::unique_ptr<ARMOperand> CreateMSRMask(unsigned MMask, SMLoc S) { 3026 auto Op = make_unique<ARMOperand>(k_MSRMask); 3027 Op->MMask.Val = MMask; 3028 Op->StartLoc = S; 3029 Op->EndLoc = S; 3030 return Op; 3031 } 3032 3033 static std::unique_ptr<ARMOperand> CreateBankedReg(unsigned Reg, SMLoc S) { 3034 auto Op = make_unique<ARMOperand>(k_BankedReg); 3035 Op->BankedReg.Val = Reg; 3036 Op->StartLoc = S; 3037 Op->EndLoc = S; 3038 return Op; 3039 } 3040 }; 3041 3042 } // end anonymous namespace. 3043 3044 void ARMOperand::print(raw_ostream &OS) const { 3045 switch (Kind) { 3046 case k_CondCode: 3047 OS << "<ARMCC::" << ARMCondCodeToString(getCondCode()) << ">"; 3048 break; 3049 case k_CCOut: 3050 OS << "<ccout " << getReg() << ">"; 3051 break; 3052 case k_ITCondMask: { 3053 static const char *const MaskStr[] = { 3054 "()", "(t)", "(e)", "(tt)", "(et)", "(te)", "(ee)", "(ttt)", "(ett)", 3055 "(tet)", "(eet)", "(tte)", "(ete)", "(tee)", "(eee)" 3056 }; 3057 assert((ITMask.Mask & 0xf) == ITMask.Mask); 3058 OS << "<it-mask " << MaskStr[ITMask.Mask] << ">"; 3059 break; 3060 } 3061 case k_CoprocNum: 3062 OS << "<coprocessor number: " << getCoproc() << ">"; 3063 break; 3064 case k_CoprocReg: 3065 OS << "<coprocessor register: " << getCoproc() << ">"; 3066 break; 3067 case k_CoprocOption: 3068 OS << "<coprocessor option: " << CoprocOption.Val << ">"; 3069 break; 3070 case k_MSRMask: 3071 OS << "<mask: " << getMSRMask() << ">"; 3072 break; 3073 case k_BankedReg: 3074 OS << "<banked reg: " << getBankedReg() << ">"; 3075 break; 3076 case k_Immediate: 3077 OS << *getImm(); 3078 break; 3079 case k_MemBarrierOpt: 3080 OS << "<ARM_MB::" << MemBOptToString(getMemBarrierOpt(), false) << ">"; 3081 break; 3082 case k_InstSyncBarrierOpt: 3083 OS << "<ARM_ISB::" << InstSyncBOptToString(getInstSyncBarrierOpt()) << ">"; 3084 break; 3085 case k_Memory: 3086 OS << "<memory " 3087 << " base:" << Memory.BaseRegNum; 3088 OS << ">"; 3089 break; 3090 case k_PostIndexRegister: 3091 OS << "post-idx register " << (PostIdxReg.isAdd ? "" : "-") 3092 << PostIdxReg.RegNum; 3093 if (PostIdxReg.ShiftTy != ARM_AM::no_shift) 3094 OS << ARM_AM::getShiftOpcStr(PostIdxReg.ShiftTy) << " " 3095 << PostIdxReg.ShiftImm; 3096 OS << ">"; 3097 break; 3098 case k_ProcIFlags: { 3099 OS << "<ARM_PROC::"; 3100 unsigned IFlags = getProcIFlags(); 3101 for (int i=2; i >= 0; --i) 3102 if (IFlags & (1 << i)) 3103 OS << ARM_PROC::IFlagsToString(1 << i); 3104 OS << ">"; 3105 break; 3106 } 3107 case k_Register: 3108 OS << "<register " << getReg() << ">"; 3109 break; 3110 case k_ShifterImmediate: 3111 OS << "<shift " << (ShifterImm.isASR ? "asr" : "lsl") 3112 << " #" << ShifterImm.Imm << ">"; 3113 break; 3114 case k_ShiftedRegister: 3115 OS << "<so_reg_reg " 3116 << RegShiftedReg.SrcReg << " " 3117 << ARM_AM::getShiftOpcStr(RegShiftedReg.ShiftTy) 3118 << " " << RegShiftedReg.ShiftReg << ">"; 3119 break; 3120 case k_ShiftedImmediate: 3121 OS << "<so_reg_imm " 3122 << RegShiftedImm.SrcReg << " " 3123 << ARM_AM::getShiftOpcStr(RegShiftedImm.ShiftTy) 3124 << " #" << RegShiftedImm.ShiftImm << ">"; 3125 break; 3126 case k_RotateImmediate: 3127 OS << "<ror " << " #" << (RotImm.Imm * 8) << ">"; 3128 break; 3129 case k_ModifiedImmediate: 3130 OS << "<mod_imm #" << ModImm.Bits << ", #" 3131 << ModImm.Rot << ")>"; 3132 break; 3133 case k_ConstantPoolImmediate: 3134 OS << "<constant_pool_imm #" << *getConstantPoolImm(); 3135 break; 3136 case k_BitfieldDescriptor: 3137 OS << "<bitfield " << "lsb: " << Bitfield.LSB 3138 << ", width: " << Bitfield.Width << ">"; 3139 break; 3140 case k_RegisterList: 3141 case k_DPRRegisterList: 3142 case k_SPRRegisterList: { 3143 OS << "<register_list "; 3144 3145 const SmallVectorImpl<unsigned> &RegList = getRegList(); 3146 for (SmallVectorImpl<unsigned>::const_iterator 3147 I = RegList.begin(), E = RegList.end(); I != E; ) { 3148 OS << *I; 3149 if (++I < E) OS << ", "; 3150 } 3151 3152 OS << ">"; 3153 break; 3154 } 3155 case k_VectorList: 3156 OS << "<vector_list " << VectorList.Count << " * " 3157 << VectorList.RegNum << ">"; 3158 break; 3159 case k_VectorListAllLanes: 3160 OS << "<vector_list(all lanes) " << VectorList.Count << " * " 3161 << VectorList.RegNum << ">"; 3162 break; 3163 case k_VectorListIndexed: 3164 OS << "<vector_list(lane " << VectorList.LaneIndex << ") " 3165 << VectorList.Count << " * " << VectorList.RegNum << ">"; 3166 break; 3167 case k_Token: 3168 OS << "'" << getToken() << "'"; 3169 break; 3170 case k_VectorIndex: 3171 OS << "<vectorindex " << getVectorIndex() << ">"; 3172 break; 3173 } 3174 } 3175 3176 /// @name Auto-generated Match Functions 3177 /// { 3178 3179 static unsigned MatchRegisterName(StringRef Name); 3180 3181 /// } 3182 3183 bool ARMAsmParser::ParseRegister(unsigned &RegNo, 3184 SMLoc &StartLoc, SMLoc &EndLoc) { 3185 const AsmToken &Tok = getParser().getTok(); 3186 StartLoc = Tok.getLoc(); 3187 EndLoc = Tok.getEndLoc(); 3188 RegNo = tryParseRegister(); 3189 3190 return (RegNo == (unsigned)-1); 3191 } 3192 3193 /// Try to parse a register name. The token must be an Identifier when called, 3194 /// and if it is a register name the token is eaten and the register number is 3195 /// returned. Otherwise return -1. 3196 /// 3197 int ARMAsmParser::tryParseRegister() { 3198 MCAsmParser &Parser = getParser(); 3199 const AsmToken &Tok = Parser.getTok(); 3200 if (Tok.isNot(AsmToken::Identifier)) return -1; 3201 3202 std::string lowerCase = Tok.getString().lower(); 3203 unsigned RegNum = MatchRegisterName(lowerCase); 3204 if (!RegNum) { 3205 RegNum = StringSwitch<unsigned>(lowerCase) 3206 .Case("r13", ARM::SP) 3207 .Case("r14", ARM::LR) 3208 .Case("r15", ARM::PC) 3209 .Case("ip", ARM::R12) 3210 // Additional register name aliases for 'gas' compatibility. 3211 .Case("a1", ARM::R0) 3212 .Case("a2", ARM::R1) 3213 .Case("a3", ARM::R2) 3214 .Case("a4", ARM::R3) 3215 .Case("v1", ARM::R4) 3216 .Case("v2", ARM::R5) 3217 .Case("v3", ARM::R6) 3218 .Case("v4", ARM::R7) 3219 .Case("v5", ARM::R8) 3220 .Case("v6", ARM::R9) 3221 .Case("v7", ARM::R10) 3222 .Case("v8", ARM::R11) 3223 .Case("sb", ARM::R9) 3224 .Case("sl", ARM::R10) 3225 .Case("fp", ARM::R11) 3226 .Default(0); 3227 } 3228 if (!RegNum) { 3229 // Check for aliases registered via .req. Canonicalize to lower case. 3230 // That's more consistent since register names are case insensitive, and 3231 // it's how the original entry was passed in from MC/MCParser/AsmParser. 3232 StringMap<unsigned>::const_iterator Entry = RegisterReqs.find(lowerCase); 3233 // If no match, return failure. 3234 if (Entry == RegisterReqs.end()) 3235 return -1; 3236 Parser.Lex(); // Eat identifier token. 3237 return Entry->getValue(); 3238 } 3239 3240 // Some FPUs only have 16 D registers, so D16-D31 are invalid 3241 if (hasD16() && RegNum >= ARM::D16 && RegNum <= ARM::D31) 3242 return -1; 3243 3244 Parser.Lex(); // Eat identifier token. 3245 3246 return RegNum; 3247 } 3248 3249 // Try to parse a shifter (e.g., "lsl <amt>"). On success, return 0. 3250 // If a recoverable error occurs, return 1. If an irrecoverable error 3251 // occurs, return -1. An irrecoverable error is one where tokens have been 3252 // consumed in the process of trying to parse the shifter (i.e., when it is 3253 // indeed a shifter operand, but malformed). 3254 int ARMAsmParser::tryParseShiftRegister(OperandVector &Operands) { 3255 MCAsmParser &Parser = getParser(); 3256 SMLoc S = Parser.getTok().getLoc(); 3257 const AsmToken &Tok = Parser.getTok(); 3258 if (Tok.isNot(AsmToken::Identifier)) 3259 return -1; 3260 3261 std::string lowerCase = Tok.getString().lower(); 3262 ARM_AM::ShiftOpc ShiftTy = StringSwitch<ARM_AM::ShiftOpc>(lowerCase) 3263 .Case("asl", ARM_AM::lsl) 3264 .Case("lsl", ARM_AM::lsl) 3265 .Case("lsr", ARM_AM::lsr) 3266 .Case("asr", ARM_AM::asr) 3267 .Case("ror", ARM_AM::ror) 3268 .Case("rrx", ARM_AM::rrx) 3269 .Default(ARM_AM::no_shift); 3270 3271 if (ShiftTy == ARM_AM::no_shift) 3272 return 1; 3273 3274 Parser.Lex(); // Eat the operator. 3275 3276 // The source register for the shift has already been added to the 3277 // operand list, so we need to pop it off and combine it into the shifted 3278 // register operand instead. 3279 std::unique_ptr<ARMOperand> PrevOp( 3280 (ARMOperand *)Operands.pop_back_val().release()); 3281 if (!PrevOp->isReg()) 3282 return Error(PrevOp->getStartLoc(), "shift must be of a register"); 3283 int SrcReg = PrevOp->getReg(); 3284 3285 SMLoc EndLoc; 3286 int64_t Imm = 0; 3287 int ShiftReg = 0; 3288 if (ShiftTy == ARM_AM::rrx) { 3289 // RRX Doesn't have an explicit shift amount. The encoder expects 3290 // the shift register to be the same as the source register. Seems odd, 3291 // but OK. 3292 ShiftReg = SrcReg; 3293 } else { 3294 // Figure out if this is shifted by a constant or a register (for non-RRX). 3295 if (Parser.getTok().is(AsmToken::Hash) || 3296 Parser.getTok().is(AsmToken::Dollar)) { 3297 Parser.Lex(); // Eat hash. 3298 SMLoc ImmLoc = Parser.getTok().getLoc(); 3299 const MCExpr *ShiftExpr = nullptr; 3300 if (getParser().parseExpression(ShiftExpr, EndLoc)) { 3301 Error(ImmLoc, "invalid immediate shift value"); 3302 return -1; 3303 } 3304 // The expression must be evaluatable as an immediate. 3305 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ShiftExpr); 3306 if (!CE) { 3307 Error(ImmLoc, "invalid immediate shift value"); 3308 return -1; 3309 } 3310 // Range check the immediate. 3311 // lsl, ror: 0 <= imm <= 31 3312 // lsr, asr: 0 <= imm <= 32 3313 Imm = CE->getValue(); 3314 if (Imm < 0 || 3315 ((ShiftTy == ARM_AM::lsl || ShiftTy == ARM_AM::ror) && Imm > 31) || 3316 ((ShiftTy == ARM_AM::lsr || ShiftTy == ARM_AM::asr) && Imm > 32)) { 3317 Error(ImmLoc, "immediate shift value out of range"); 3318 return -1; 3319 } 3320 // shift by zero is a nop. Always send it through as lsl. 3321 // ('as' compatibility) 3322 if (Imm == 0) 3323 ShiftTy = ARM_AM::lsl; 3324 } else if (Parser.getTok().is(AsmToken::Identifier)) { 3325 SMLoc L = Parser.getTok().getLoc(); 3326 EndLoc = Parser.getTok().getEndLoc(); 3327 ShiftReg = tryParseRegister(); 3328 if (ShiftReg == -1) { 3329 Error(L, "expected immediate or register in shift operand"); 3330 return -1; 3331 } 3332 } else { 3333 Error(Parser.getTok().getLoc(), 3334 "expected immediate or register in shift operand"); 3335 return -1; 3336 } 3337 } 3338 3339 if (ShiftReg && ShiftTy != ARM_AM::rrx) 3340 Operands.push_back(ARMOperand::CreateShiftedRegister(ShiftTy, SrcReg, 3341 ShiftReg, Imm, 3342 S, EndLoc)); 3343 else 3344 Operands.push_back(ARMOperand::CreateShiftedImmediate(ShiftTy, SrcReg, Imm, 3345 S, EndLoc)); 3346 3347 return 0; 3348 } 3349 3350 3351 /// Try to parse a register name. The token must be an Identifier when called. 3352 /// If it's a register, an AsmOperand is created. Another AsmOperand is created 3353 /// if there is a "writeback". 'true' if it's not a register. 3354 /// 3355 /// TODO this is likely to change to allow different register types and or to 3356 /// parse for a specific register type. 3357 bool ARMAsmParser::tryParseRegisterWithWriteBack(OperandVector &Operands) { 3358 MCAsmParser &Parser = getParser(); 3359 const AsmToken &RegTok = Parser.getTok(); 3360 int RegNo = tryParseRegister(); 3361 if (RegNo == -1) 3362 return true; 3363 3364 Operands.push_back(ARMOperand::CreateReg(RegNo, RegTok.getLoc(), 3365 RegTok.getEndLoc())); 3366 3367 const AsmToken &ExclaimTok = Parser.getTok(); 3368 if (ExclaimTok.is(AsmToken::Exclaim)) { 3369 Operands.push_back(ARMOperand::CreateToken(ExclaimTok.getString(), 3370 ExclaimTok.getLoc())); 3371 Parser.Lex(); // Eat exclaim token 3372 return false; 3373 } 3374 3375 // Also check for an index operand. This is only legal for vector registers, 3376 // but that'll get caught OK in operand matching, so we don't need to 3377 // explicitly filter everything else out here. 3378 if (Parser.getTok().is(AsmToken::LBrac)) { 3379 SMLoc SIdx = Parser.getTok().getLoc(); 3380 Parser.Lex(); // Eat left bracket token. 3381 3382 const MCExpr *ImmVal; 3383 if (getParser().parseExpression(ImmVal)) 3384 return true; 3385 const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(ImmVal); 3386 if (!MCE) 3387 return TokError("immediate value expected for vector index"); 3388 3389 if (Parser.getTok().isNot(AsmToken::RBrac)) 3390 return Error(Parser.getTok().getLoc(), "']' expected"); 3391 3392 SMLoc E = Parser.getTok().getEndLoc(); 3393 Parser.Lex(); // Eat right bracket token. 3394 3395 Operands.push_back(ARMOperand::CreateVectorIndex(MCE->getValue(), 3396 SIdx, E, 3397 getContext())); 3398 } 3399 3400 return false; 3401 } 3402 3403 /// MatchCoprocessorOperandName - Try to parse an coprocessor related 3404 /// instruction with a symbolic operand name. 3405 /// We accept "crN" syntax for GAS compatibility. 3406 /// <operand-name> ::= <prefix><number> 3407 /// If CoprocOp is 'c', then: 3408 /// <prefix> ::= c | cr 3409 /// If CoprocOp is 'p', then : 3410 /// <prefix> ::= p 3411 /// <number> ::= integer in range [0, 15] 3412 static int MatchCoprocessorOperandName(StringRef Name, char CoprocOp) { 3413 // Use the same layout as the tablegen'erated register name matcher. Ugly, 3414 // but efficient. 3415 if (Name.size() < 2 || Name[0] != CoprocOp) 3416 return -1; 3417 Name = (Name[1] == 'r') ? Name.drop_front(2) : Name.drop_front(); 3418 3419 switch (Name.size()) { 3420 default: return -1; 3421 case 1: 3422 switch (Name[0]) { 3423 default: return -1; 3424 case '0': return 0; 3425 case '1': return 1; 3426 case '2': return 2; 3427 case '3': return 3; 3428 case '4': return 4; 3429 case '5': return 5; 3430 case '6': return 6; 3431 case '7': return 7; 3432 case '8': return 8; 3433 case '9': return 9; 3434 } 3435 case 2: 3436 if (Name[0] != '1') 3437 return -1; 3438 switch (Name[1]) { 3439 default: return -1; 3440 // CP10 and CP11 are VFP/NEON and so vector instructions should be used. 3441 // However, old cores (v5/v6) did use them in that way. 3442 case '0': return 10; 3443 case '1': return 11; 3444 case '2': return 12; 3445 case '3': return 13; 3446 case '4': return 14; 3447 case '5': return 15; 3448 } 3449 } 3450 } 3451 3452 /// parseITCondCode - Try to parse a condition code for an IT instruction. 3453 ARMAsmParser::OperandMatchResultTy 3454 ARMAsmParser::parseITCondCode(OperandVector &Operands) { 3455 MCAsmParser &Parser = getParser(); 3456 SMLoc S = Parser.getTok().getLoc(); 3457 const AsmToken &Tok = Parser.getTok(); 3458 if (!Tok.is(AsmToken::Identifier)) 3459 return MatchOperand_NoMatch; 3460 unsigned CC = StringSwitch<unsigned>(Tok.getString().lower()) 3461 .Case("eq", ARMCC::EQ) 3462 .Case("ne", ARMCC::NE) 3463 .Case("hs", ARMCC::HS) 3464 .Case("cs", ARMCC::HS) 3465 .Case("lo", ARMCC::LO) 3466 .Case("cc", ARMCC::LO) 3467 .Case("mi", ARMCC::MI) 3468 .Case("pl", ARMCC::PL) 3469 .Case("vs", ARMCC::VS) 3470 .Case("vc", ARMCC::VC) 3471 .Case("hi", ARMCC::HI) 3472 .Case("ls", ARMCC::LS) 3473 .Case("ge", ARMCC::GE) 3474 .Case("lt", ARMCC::LT) 3475 .Case("gt", ARMCC::GT) 3476 .Case("le", ARMCC::LE) 3477 .Case("al", ARMCC::AL) 3478 .Default(~0U); 3479 if (CC == ~0U) 3480 return MatchOperand_NoMatch; 3481 Parser.Lex(); // Eat the token. 3482 3483 Operands.push_back(ARMOperand::CreateCondCode(ARMCC::CondCodes(CC), S)); 3484 3485 return MatchOperand_Success; 3486 } 3487 3488 /// parseCoprocNumOperand - Try to parse an coprocessor number operand. The 3489 /// token must be an Identifier when called, and if it is a coprocessor 3490 /// number, the token is eaten and the operand is added to the operand list. 3491 ARMAsmParser::OperandMatchResultTy 3492 ARMAsmParser::parseCoprocNumOperand(OperandVector &Operands) { 3493 MCAsmParser &Parser = getParser(); 3494 SMLoc S = Parser.getTok().getLoc(); 3495 const AsmToken &Tok = Parser.getTok(); 3496 if (Tok.isNot(AsmToken::Identifier)) 3497 return MatchOperand_NoMatch; 3498 3499 int Num = MatchCoprocessorOperandName(Tok.getString(), 'p'); 3500 if (Num == -1) 3501 return MatchOperand_NoMatch; 3502 // ARMv7 and v8 don't allow cp10/cp11 due to VFP/NEON specific instructions 3503 if ((hasV7Ops() || hasV8Ops()) && (Num == 10 || Num == 11)) 3504 return MatchOperand_NoMatch; 3505 3506 Parser.Lex(); // Eat identifier token. 3507 Operands.push_back(ARMOperand::CreateCoprocNum(Num, S)); 3508 return MatchOperand_Success; 3509 } 3510 3511 /// parseCoprocRegOperand - Try to parse an coprocessor register operand. The 3512 /// token must be an Identifier when called, and if it is a coprocessor 3513 /// number, the token is eaten and the operand is added to the operand list. 3514 ARMAsmParser::OperandMatchResultTy 3515 ARMAsmParser::parseCoprocRegOperand(OperandVector &Operands) { 3516 MCAsmParser &Parser = getParser(); 3517 SMLoc S = Parser.getTok().getLoc(); 3518 const AsmToken &Tok = Parser.getTok(); 3519 if (Tok.isNot(AsmToken::Identifier)) 3520 return MatchOperand_NoMatch; 3521 3522 int Reg = MatchCoprocessorOperandName(Tok.getString(), 'c'); 3523 if (Reg == -1) 3524 return MatchOperand_NoMatch; 3525 3526 Parser.Lex(); // Eat identifier token. 3527 Operands.push_back(ARMOperand::CreateCoprocReg(Reg, S)); 3528 return MatchOperand_Success; 3529 } 3530 3531 /// parseCoprocOptionOperand - Try to parse an coprocessor option operand. 3532 /// coproc_option : '{' imm0_255 '}' 3533 ARMAsmParser::OperandMatchResultTy 3534 ARMAsmParser::parseCoprocOptionOperand(OperandVector &Operands) { 3535 MCAsmParser &Parser = getParser(); 3536 SMLoc S = Parser.getTok().getLoc(); 3537 3538 // If this isn't a '{', this isn't a coprocessor immediate operand. 3539 if (Parser.getTok().isNot(AsmToken::LCurly)) 3540 return MatchOperand_NoMatch; 3541 Parser.Lex(); // Eat the '{' 3542 3543 const MCExpr *Expr; 3544 SMLoc Loc = Parser.getTok().getLoc(); 3545 if (getParser().parseExpression(Expr)) { 3546 Error(Loc, "illegal expression"); 3547 return MatchOperand_ParseFail; 3548 } 3549 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr); 3550 if (!CE || CE->getValue() < 0 || CE->getValue() > 255) { 3551 Error(Loc, "coprocessor option must be an immediate in range [0, 255]"); 3552 return MatchOperand_ParseFail; 3553 } 3554 int Val = CE->getValue(); 3555 3556 // Check for and consume the closing '}' 3557 if (Parser.getTok().isNot(AsmToken::RCurly)) 3558 return MatchOperand_ParseFail; 3559 SMLoc E = Parser.getTok().getEndLoc(); 3560 Parser.Lex(); // Eat the '}' 3561 3562 Operands.push_back(ARMOperand::CreateCoprocOption(Val, S, E)); 3563 return MatchOperand_Success; 3564 } 3565 3566 // For register list parsing, we need to map from raw GPR register numbering 3567 // to the enumeration values. The enumeration values aren't sorted by 3568 // register number due to our using "sp", "lr" and "pc" as canonical names. 3569 static unsigned getNextRegister(unsigned Reg) { 3570 // If this is a GPR, we need to do it manually, otherwise we can rely 3571 // on the sort ordering of the enumeration since the other reg-classes 3572 // are sane. 3573 if (!ARMMCRegisterClasses[ARM::GPRRegClassID].contains(Reg)) 3574 return Reg + 1; 3575 switch(Reg) { 3576 default: llvm_unreachable("Invalid GPR number!"); 3577 case ARM::R0: return ARM::R1; case ARM::R1: return ARM::R2; 3578 case ARM::R2: return ARM::R3; case ARM::R3: return ARM::R4; 3579 case ARM::R4: return ARM::R5; case ARM::R5: return ARM::R6; 3580 case ARM::R6: return ARM::R7; case ARM::R7: return ARM::R8; 3581 case ARM::R8: return ARM::R9; case ARM::R9: return ARM::R10; 3582 case ARM::R10: return ARM::R11; case ARM::R11: return ARM::R12; 3583 case ARM::R12: return ARM::SP; case ARM::SP: return ARM::LR; 3584 case ARM::LR: return ARM::PC; case ARM::PC: return ARM::R0; 3585 } 3586 } 3587 3588 // Return the low-subreg of a given Q register. 3589 static unsigned getDRegFromQReg(unsigned QReg) { 3590 switch (QReg) { 3591 default: llvm_unreachable("expected a Q register!"); 3592 case ARM::Q0: return ARM::D0; 3593 case ARM::Q1: return ARM::D2; 3594 case ARM::Q2: return ARM::D4; 3595 case ARM::Q3: return ARM::D6; 3596 case ARM::Q4: return ARM::D8; 3597 case ARM::Q5: return ARM::D10; 3598 case ARM::Q6: return ARM::D12; 3599 case ARM::Q7: return ARM::D14; 3600 case ARM::Q8: return ARM::D16; 3601 case ARM::Q9: return ARM::D18; 3602 case ARM::Q10: return ARM::D20; 3603 case ARM::Q11: return ARM::D22; 3604 case ARM::Q12: return ARM::D24; 3605 case ARM::Q13: return ARM::D26; 3606 case ARM::Q14: return ARM::D28; 3607 case ARM::Q15: return ARM::D30; 3608 } 3609 } 3610 3611 /// Parse a register list. 3612 bool ARMAsmParser::parseRegisterList(OperandVector &Operands) { 3613 MCAsmParser &Parser = getParser(); 3614 assert(Parser.getTok().is(AsmToken::LCurly) && 3615 "Token is not a Left Curly Brace"); 3616 SMLoc S = Parser.getTok().getLoc(); 3617 Parser.Lex(); // Eat '{' token. 3618 SMLoc RegLoc = Parser.getTok().getLoc(); 3619 3620 // Check the first register in the list to see what register class 3621 // this is a list of. 3622 int Reg = tryParseRegister(); 3623 if (Reg == -1) 3624 return Error(RegLoc, "register expected"); 3625 3626 // The reglist instructions have at most 16 registers, so reserve 3627 // space for that many. 3628 int EReg = 0; 3629 SmallVector<std::pair<unsigned, unsigned>, 16> Registers; 3630 3631 // Allow Q regs and just interpret them as the two D sub-registers. 3632 if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(Reg)) { 3633 Reg = getDRegFromQReg(Reg); 3634 EReg = MRI->getEncodingValue(Reg); 3635 Registers.push_back(std::pair<unsigned, unsigned>(EReg, Reg)); 3636 ++Reg; 3637 } 3638 const MCRegisterClass *RC; 3639 if (ARMMCRegisterClasses[ARM::GPRRegClassID].contains(Reg)) 3640 RC = &ARMMCRegisterClasses[ARM::GPRRegClassID]; 3641 else if (ARMMCRegisterClasses[ARM::DPRRegClassID].contains(Reg)) 3642 RC = &ARMMCRegisterClasses[ARM::DPRRegClassID]; 3643 else if (ARMMCRegisterClasses[ARM::SPRRegClassID].contains(Reg)) 3644 RC = &ARMMCRegisterClasses[ARM::SPRRegClassID]; 3645 else 3646 return Error(RegLoc, "invalid register in register list"); 3647 3648 // Store the register. 3649 EReg = MRI->getEncodingValue(Reg); 3650 Registers.push_back(std::pair<unsigned, unsigned>(EReg, Reg)); 3651 3652 // This starts immediately after the first register token in the list, 3653 // so we can see either a comma or a minus (range separator) as a legal 3654 // next token. 3655 while (Parser.getTok().is(AsmToken::Comma) || 3656 Parser.getTok().is(AsmToken::Minus)) { 3657 if (Parser.getTok().is(AsmToken::Minus)) { 3658 Parser.Lex(); // Eat the minus. 3659 SMLoc AfterMinusLoc = Parser.getTok().getLoc(); 3660 int EndReg = tryParseRegister(); 3661 if (EndReg == -1) 3662 return Error(AfterMinusLoc, "register expected"); 3663 // Allow Q regs and just interpret them as the two D sub-registers. 3664 if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(EndReg)) 3665 EndReg = getDRegFromQReg(EndReg) + 1; 3666 // If the register is the same as the start reg, there's nothing 3667 // more to do. 3668 if (Reg == EndReg) 3669 continue; 3670 // The register must be in the same register class as the first. 3671 if (!RC->contains(EndReg)) 3672 return Error(AfterMinusLoc, "invalid register in register list"); 3673 // Ranges must go from low to high. 3674 if (MRI->getEncodingValue(Reg) > MRI->getEncodingValue(EndReg)) 3675 return Error(AfterMinusLoc, "bad range in register list"); 3676 3677 // Add all the registers in the range to the register list. 3678 while (Reg != EndReg) { 3679 Reg = getNextRegister(Reg); 3680 EReg = MRI->getEncodingValue(Reg); 3681 Registers.push_back(std::pair<unsigned, unsigned>(EReg, Reg)); 3682 } 3683 continue; 3684 } 3685 Parser.Lex(); // Eat the comma. 3686 RegLoc = Parser.getTok().getLoc(); 3687 int OldReg = Reg; 3688 const AsmToken RegTok = Parser.getTok(); 3689 Reg = tryParseRegister(); 3690 if (Reg == -1) 3691 return Error(RegLoc, "register expected"); 3692 // Allow Q regs and just interpret them as the two D sub-registers. 3693 bool isQReg = false; 3694 if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(Reg)) { 3695 Reg = getDRegFromQReg(Reg); 3696 isQReg = true; 3697 } 3698 // The register must be in the same register class as the first. 3699 if (!RC->contains(Reg)) 3700 return Error(RegLoc, "invalid register in register list"); 3701 // List must be monotonically increasing. 3702 if (MRI->getEncodingValue(Reg) < MRI->getEncodingValue(OldReg)) { 3703 if (ARMMCRegisterClasses[ARM::GPRRegClassID].contains(Reg)) 3704 Warning(RegLoc, "register list not in ascending order"); 3705 else 3706 return Error(RegLoc, "register list not in ascending order"); 3707 } 3708 if (MRI->getEncodingValue(Reg) == MRI->getEncodingValue(OldReg)) { 3709 Warning(RegLoc, "duplicated register (" + RegTok.getString() + 3710 ") in register list"); 3711 continue; 3712 } 3713 // VFP register lists must also be contiguous. 3714 if (RC != &ARMMCRegisterClasses[ARM::GPRRegClassID] && 3715 Reg != OldReg + 1) 3716 return Error(RegLoc, "non-contiguous register range"); 3717 EReg = MRI->getEncodingValue(Reg); 3718 Registers.push_back(std::pair<unsigned, unsigned>(EReg, Reg)); 3719 if (isQReg) { 3720 EReg = MRI->getEncodingValue(++Reg); 3721 Registers.push_back(std::pair<unsigned, unsigned>(EReg, Reg)); 3722 } 3723 } 3724 3725 if (Parser.getTok().isNot(AsmToken::RCurly)) 3726 return Error(Parser.getTok().getLoc(), "'}' expected"); 3727 SMLoc E = Parser.getTok().getEndLoc(); 3728 Parser.Lex(); // Eat '}' token. 3729 3730 // Push the register list operand. 3731 Operands.push_back(ARMOperand::CreateRegList(Registers, S, E)); 3732 3733 // The ARM system instruction variants for LDM/STM have a '^' token here. 3734 if (Parser.getTok().is(AsmToken::Caret)) { 3735 Operands.push_back(ARMOperand::CreateToken("^",Parser.getTok().getLoc())); 3736 Parser.Lex(); // Eat '^' token. 3737 } 3738 3739 return false; 3740 } 3741 3742 // Helper function to parse the lane index for vector lists. 3743 ARMAsmParser::OperandMatchResultTy ARMAsmParser:: 3744 parseVectorLane(VectorLaneTy &LaneKind, unsigned &Index, SMLoc &EndLoc) { 3745 MCAsmParser &Parser = getParser(); 3746 Index = 0; // Always return a defined index value. 3747 if (Parser.getTok().is(AsmToken::LBrac)) { 3748 Parser.Lex(); // Eat the '['. 3749 if (Parser.getTok().is(AsmToken::RBrac)) { 3750 // "Dn[]" is the 'all lanes' syntax. 3751 LaneKind = AllLanes; 3752 EndLoc = Parser.getTok().getEndLoc(); 3753 Parser.Lex(); // Eat the ']'. 3754 return MatchOperand_Success; 3755 } 3756 3757 // There's an optional '#' token here. Normally there wouldn't be, but 3758 // inline assemble puts one in, and it's friendly to accept that. 3759 if (Parser.getTok().is(AsmToken::Hash)) 3760 Parser.Lex(); // Eat '#' or '$'. 3761 3762 const MCExpr *LaneIndex; 3763 SMLoc Loc = Parser.getTok().getLoc(); 3764 if (getParser().parseExpression(LaneIndex)) { 3765 Error(Loc, "illegal expression"); 3766 return MatchOperand_ParseFail; 3767 } 3768 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(LaneIndex); 3769 if (!CE) { 3770 Error(Loc, "lane index must be empty or an integer"); 3771 return MatchOperand_ParseFail; 3772 } 3773 if (Parser.getTok().isNot(AsmToken::RBrac)) { 3774 Error(Parser.getTok().getLoc(), "']' expected"); 3775 return MatchOperand_ParseFail; 3776 } 3777 EndLoc = Parser.getTok().getEndLoc(); 3778 Parser.Lex(); // Eat the ']'. 3779 int64_t Val = CE->getValue(); 3780 3781 // FIXME: Make this range check context sensitive for .8, .16, .32. 3782 if (Val < 0 || Val > 7) { 3783 Error(Parser.getTok().getLoc(), "lane index out of range"); 3784 return MatchOperand_ParseFail; 3785 } 3786 Index = Val; 3787 LaneKind = IndexedLane; 3788 return MatchOperand_Success; 3789 } 3790 LaneKind = NoLanes; 3791 return MatchOperand_Success; 3792 } 3793 3794 // parse a vector register list 3795 ARMAsmParser::OperandMatchResultTy 3796 ARMAsmParser::parseVectorList(OperandVector &Operands) { 3797 MCAsmParser &Parser = getParser(); 3798 VectorLaneTy LaneKind; 3799 unsigned LaneIndex; 3800 SMLoc S = Parser.getTok().getLoc(); 3801 // As an extension (to match gas), support a plain D register or Q register 3802 // (without encosing curly braces) as a single or double entry list, 3803 // respectively. 3804 if (Parser.getTok().is(AsmToken::Identifier)) { 3805 SMLoc E = Parser.getTok().getEndLoc(); 3806 int Reg = tryParseRegister(); 3807 if (Reg == -1) 3808 return MatchOperand_NoMatch; 3809 if (ARMMCRegisterClasses[ARM::DPRRegClassID].contains(Reg)) { 3810 OperandMatchResultTy Res = parseVectorLane(LaneKind, LaneIndex, E); 3811 if (Res != MatchOperand_Success) 3812 return Res; 3813 switch (LaneKind) { 3814 case NoLanes: 3815 Operands.push_back(ARMOperand::CreateVectorList(Reg, 1, false, S, E)); 3816 break; 3817 case AllLanes: 3818 Operands.push_back(ARMOperand::CreateVectorListAllLanes(Reg, 1, false, 3819 S, E)); 3820 break; 3821 case IndexedLane: 3822 Operands.push_back(ARMOperand::CreateVectorListIndexed(Reg, 1, 3823 LaneIndex, 3824 false, S, E)); 3825 break; 3826 } 3827 return MatchOperand_Success; 3828 } 3829 if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(Reg)) { 3830 Reg = getDRegFromQReg(Reg); 3831 OperandMatchResultTy Res = parseVectorLane(LaneKind, LaneIndex, E); 3832 if (Res != MatchOperand_Success) 3833 return Res; 3834 switch (LaneKind) { 3835 case NoLanes: 3836 Reg = MRI->getMatchingSuperReg(Reg, ARM::dsub_0, 3837 &ARMMCRegisterClasses[ARM::DPairRegClassID]); 3838 Operands.push_back(ARMOperand::CreateVectorList(Reg, 2, false, S, E)); 3839 break; 3840 case AllLanes: 3841 Reg = MRI->getMatchingSuperReg(Reg, ARM::dsub_0, 3842 &ARMMCRegisterClasses[ARM::DPairRegClassID]); 3843 Operands.push_back(ARMOperand::CreateVectorListAllLanes(Reg, 2, false, 3844 S, E)); 3845 break; 3846 case IndexedLane: 3847 Operands.push_back(ARMOperand::CreateVectorListIndexed(Reg, 2, 3848 LaneIndex, 3849 false, S, E)); 3850 break; 3851 } 3852 return MatchOperand_Success; 3853 } 3854 Error(S, "vector register expected"); 3855 return MatchOperand_ParseFail; 3856 } 3857 3858 if (Parser.getTok().isNot(AsmToken::LCurly)) 3859 return MatchOperand_NoMatch; 3860 3861 Parser.Lex(); // Eat '{' token. 3862 SMLoc RegLoc = Parser.getTok().getLoc(); 3863 3864 int Reg = tryParseRegister(); 3865 if (Reg == -1) { 3866 Error(RegLoc, "register expected"); 3867 return MatchOperand_ParseFail; 3868 } 3869 unsigned Count = 1; 3870 int Spacing = 0; 3871 unsigned FirstReg = Reg; 3872 // The list is of D registers, but we also allow Q regs and just interpret 3873 // them as the two D sub-registers. 3874 if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(Reg)) { 3875 FirstReg = Reg = getDRegFromQReg(Reg); 3876 Spacing = 1; // double-spacing requires explicit D registers, otherwise 3877 // it's ambiguous with four-register single spaced. 3878 ++Reg; 3879 ++Count; 3880 } 3881 3882 SMLoc E; 3883 if (parseVectorLane(LaneKind, LaneIndex, E) != MatchOperand_Success) 3884 return MatchOperand_ParseFail; 3885 3886 while (Parser.getTok().is(AsmToken::Comma) || 3887 Parser.getTok().is(AsmToken::Minus)) { 3888 if (Parser.getTok().is(AsmToken::Minus)) { 3889 if (!Spacing) 3890 Spacing = 1; // Register range implies a single spaced list. 3891 else if (Spacing == 2) { 3892 Error(Parser.getTok().getLoc(), 3893 "sequential registers in double spaced list"); 3894 return MatchOperand_ParseFail; 3895 } 3896 Parser.Lex(); // Eat the minus. 3897 SMLoc AfterMinusLoc = Parser.getTok().getLoc(); 3898 int EndReg = tryParseRegister(); 3899 if (EndReg == -1) { 3900 Error(AfterMinusLoc, "register expected"); 3901 return MatchOperand_ParseFail; 3902 } 3903 // Allow Q regs and just interpret them as the two D sub-registers. 3904 if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(EndReg)) 3905 EndReg = getDRegFromQReg(EndReg) + 1; 3906 // If the register is the same as the start reg, there's nothing 3907 // more to do. 3908 if (Reg == EndReg) 3909 continue; 3910 // The register must be in the same register class as the first. 3911 if (!ARMMCRegisterClasses[ARM::DPRRegClassID].contains(EndReg)) { 3912 Error(AfterMinusLoc, "invalid register in register list"); 3913 return MatchOperand_ParseFail; 3914 } 3915 // Ranges must go from low to high. 3916 if (Reg > EndReg) { 3917 Error(AfterMinusLoc, "bad range in register list"); 3918 return MatchOperand_ParseFail; 3919 } 3920 // Parse the lane specifier if present. 3921 VectorLaneTy NextLaneKind; 3922 unsigned NextLaneIndex; 3923 if (parseVectorLane(NextLaneKind, NextLaneIndex, E) != 3924 MatchOperand_Success) 3925 return MatchOperand_ParseFail; 3926 if (NextLaneKind != LaneKind || LaneIndex != NextLaneIndex) { 3927 Error(AfterMinusLoc, "mismatched lane index in register list"); 3928 return MatchOperand_ParseFail; 3929 } 3930 3931 // Add all the registers in the range to the register list. 3932 Count += EndReg - Reg; 3933 Reg = EndReg; 3934 continue; 3935 } 3936 Parser.Lex(); // Eat the comma. 3937 RegLoc = Parser.getTok().getLoc(); 3938 int OldReg = Reg; 3939 Reg = tryParseRegister(); 3940 if (Reg == -1) { 3941 Error(RegLoc, "register expected"); 3942 return MatchOperand_ParseFail; 3943 } 3944 // vector register lists must be contiguous. 3945 // It's OK to use the enumeration values directly here rather, as the 3946 // VFP register classes have the enum sorted properly. 3947 // 3948 // The list is of D registers, but we also allow Q regs and just interpret 3949 // them as the two D sub-registers. 3950 if (ARMMCRegisterClasses[ARM::QPRRegClassID].contains(Reg)) { 3951 if (!Spacing) 3952 Spacing = 1; // Register range implies a single spaced list. 3953 else if (Spacing == 2) { 3954 Error(RegLoc, 3955 "invalid register in double-spaced list (must be 'D' register')"); 3956 return MatchOperand_ParseFail; 3957 } 3958 Reg = getDRegFromQReg(Reg); 3959 if (Reg != OldReg + 1) { 3960 Error(RegLoc, "non-contiguous register range"); 3961 return MatchOperand_ParseFail; 3962 } 3963 ++Reg; 3964 Count += 2; 3965 // Parse the lane specifier if present. 3966 VectorLaneTy NextLaneKind; 3967 unsigned NextLaneIndex; 3968 SMLoc LaneLoc = Parser.getTok().getLoc(); 3969 if (parseVectorLane(NextLaneKind, NextLaneIndex, E) != 3970 MatchOperand_Success) 3971 return MatchOperand_ParseFail; 3972 if (NextLaneKind != LaneKind || LaneIndex != NextLaneIndex) { 3973 Error(LaneLoc, "mismatched lane index in register list"); 3974 return MatchOperand_ParseFail; 3975 } 3976 continue; 3977 } 3978 // Normal D register. 3979 // Figure out the register spacing (single or double) of the list if 3980 // we don't know it already. 3981 if (!Spacing) 3982 Spacing = 1 + (Reg == OldReg + 2); 3983 3984 // Just check that it's contiguous and keep going. 3985 if (Reg != OldReg + Spacing) { 3986 Error(RegLoc, "non-contiguous register range"); 3987 return MatchOperand_ParseFail; 3988 } 3989 ++Count; 3990 // Parse the lane specifier if present. 3991 VectorLaneTy NextLaneKind; 3992 unsigned NextLaneIndex; 3993 SMLoc EndLoc = Parser.getTok().getLoc(); 3994 if (parseVectorLane(NextLaneKind, NextLaneIndex, E) != MatchOperand_Success) 3995 return MatchOperand_ParseFail; 3996 if (NextLaneKind != LaneKind || LaneIndex != NextLaneIndex) { 3997 Error(EndLoc, "mismatched lane index in register list"); 3998 return MatchOperand_ParseFail; 3999 } 4000 } 4001 4002 if (Parser.getTok().isNot(AsmToken::RCurly)) { 4003 Error(Parser.getTok().getLoc(), "'}' expected"); 4004 return MatchOperand_ParseFail; 4005 } 4006 E = Parser.getTok().getEndLoc(); 4007 Parser.Lex(); // Eat '}' token. 4008 4009 switch (LaneKind) { 4010 case NoLanes: 4011 // Two-register operands have been converted to the 4012 // composite register classes. 4013 if (Count == 2) { 4014 const MCRegisterClass *RC = (Spacing == 1) ? 4015 &ARMMCRegisterClasses[ARM::DPairRegClassID] : 4016 &ARMMCRegisterClasses[ARM::DPairSpcRegClassID]; 4017 FirstReg = MRI->getMatchingSuperReg(FirstReg, ARM::dsub_0, RC); 4018 } 4019 4020 Operands.push_back(ARMOperand::CreateVectorList(FirstReg, Count, 4021 (Spacing == 2), S, E)); 4022 break; 4023 case AllLanes: 4024 // Two-register operands have been converted to the 4025 // composite register classes. 4026 if (Count == 2) { 4027 const MCRegisterClass *RC = (Spacing == 1) ? 4028 &ARMMCRegisterClasses[ARM::DPairRegClassID] : 4029 &ARMMCRegisterClasses[ARM::DPairSpcRegClassID]; 4030 FirstReg = MRI->getMatchingSuperReg(FirstReg, ARM::dsub_0, RC); 4031 } 4032 Operands.push_back(ARMOperand::CreateVectorListAllLanes(FirstReg, Count, 4033 (Spacing == 2), 4034 S, E)); 4035 break; 4036 case IndexedLane: 4037 Operands.push_back(ARMOperand::CreateVectorListIndexed(FirstReg, Count, 4038 LaneIndex, 4039 (Spacing == 2), 4040 S, E)); 4041 break; 4042 } 4043 return MatchOperand_Success; 4044 } 4045 4046 /// parseMemBarrierOptOperand - Try to parse DSB/DMB data barrier options. 4047 ARMAsmParser::OperandMatchResultTy 4048 ARMAsmParser::parseMemBarrierOptOperand(OperandVector &Operands) { 4049 MCAsmParser &Parser = getParser(); 4050 SMLoc S = Parser.getTok().getLoc(); 4051 const AsmToken &Tok = Parser.getTok(); 4052 unsigned Opt; 4053 4054 if (Tok.is(AsmToken::Identifier)) { 4055 StringRef OptStr = Tok.getString(); 4056 4057 Opt = StringSwitch<unsigned>(OptStr.slice(0, OptStr.size()).lower()) 4058 .Case("sy", ARM_MB::SY) 4059 .Case("st", ARM_MB::ST) 4060 .Case("ld", ARM_MB::LD) 4061 .Case("sh", ARM_MB::ISH) 4062 .Case("ish", ARM_MB::ISH) 4063 .Case("shst", ARM_MB::ISHST) 4064 .Case("ishst", ARM_MB::ISHST) 4065 .Case("ishld", ARM_MB::ISHLD) 4066 .Case("nsh", ARM_MB::NSH) 4067 .Case("un", ARM_MB::NSH) 4068 .Case("nshst", ARM_MB::NSHST) 4069 .Case("nshld", ARM_MB::NSHLD) 4070 .Case("unst", ARM_MB::NSHST) 4071 .Case("osh", ARM_MB::OSH) 4072 .Case("oshst", ARM_MB::OSHST) 4073 .Case("oshld", ARM_MB::OSHLD) 4074 .Default(~0U); 4075 4076 // ishld, oshld, nshld and ld are only available from ARMv8. 4077 if (!hasV8Ops() && (Opt == ARM_MB::ISHLD || Opt == ARM_MB::OSHLD || 4078 Opt == ARM_MB::NSHLD || Opt == ARM_MB::LD)) 4079 Opt = ~0U; 4080 4081 if (Opt == ~0U) 4082 return MatchOperand_NoMatch; 4083 4084 Parser.Lex(); // Eat identifier token. 4085 } else if (Tok.is(AsmToken::Hash) || 4086 Tok.is(AsmToken::Dollar) || 4087 Tok.is(AsmToken::Integer)) { 4088 if (Parser.getTok().isNot(AsmToken::Integer)) 4089 Parser.Lex(); // Eat '#' or '$'. 4090 SMLoc Loc = Parser.getTok().getLoc(); 4091 4092 const MCExpr *MemBarrierID; 4093 if (getParser().parseExpression(MemBarrierID)) { 4094 Error(Loc, "illegal expression"); 4095 return MatchOperand_ParseFail; 4096 } 4097 4098 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(MemBarrierID); 4099 if (!CE) { 4100 Error(Loc, "constant expression expected"); 4101 return MatchOperand_ParseFail; 4102 } 4103 4104 int Val = CE->getValue(); 4105 if (Val & ~0xf) { 4106 Error(Loc, "immediate value out of range"); 4107 return MatchOperand_ParseFail; 4108 } 4109 4110 Opt = ARM_MB::RESERVED_0 + Val; 4111 } else 4112 return MatchOperand_ParseFail; 4113 4114 Operands.push_back(ARMOperand::CreateMemBarrierOpt((ARM_MB::MemBOpt)Opt, S)); 4115 return MatchOperand_Success; 4116 } 4117 4118 /// parseInstSyncBarrierOptOperand - Try to parse ISB inst sync barrier options. 4119 ARMAsmParser::OperandMatchResultTy 4120 ARMAsmParser::parseInstSyncBarrierOptOperand(OperandVector &Operands) { 4121 MCAsmParser &Parser = getParser(); 4122 SMLoc S = Parser.getTok().getLoc(); 4123 const AsmToken &Tok = Parser.getTok(); 4124 unsigned Opt; 4125 4126 if (Tok.is(AsmToken::Identifier)) { 4127 StringRef OptStr = Tok.getString(); 4128 4129 if (OptStr.equals_lower("sy")) 4130 Opt = ARM_ISB::SY; 4131 else 4132 return MatchOperand_NoMatch; 4133 4134 Parser.Lex(); // Eat identifier token. 4135 } else if (Tok.is(AsmToken::Hash) || 4136 Tok.is(AsmToken::Dollar) || 4137 Tok.is(AsmToken::Integer)) { 4138 if (Parser.getTok().isNot(AsmToken::Integer)) 4139 Parser.Lex(); // Eat '#' or '$'. 4140 SMLoc Loc = Parser.getTok().getLoc(); 4141 4142 const MCExpr *ISBarrierID; 4143 if (getParser().parseExpression(ISBarrierID)) { 4144 Error(Loc, "illegal expression"); 4145 return MatchOperand_ParseFail; 4146 } 4147 4148 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ISBarrierID); 4149 if (!CE) { 4150 Error(Loc, "constant expression expected"); 4151 return MatchOperand_ParseFail; 4152 } 4153 4154 int Val = CE->getValue(); 4155 if (Val & ~0xf) { 4156 Error(Loc, "immediate value out of range"); 4157 return MatchOperand_ParseFail; 4158 } 4159 4160 Opt = ARM_ISB::RESERVED_0 + Val; 4161 } else 4162 return MatchOperand_ParseFail; 4163 4164 Operands.push_back(ARMOperand::CreateInstSyncBarrierOpt( 4165 (ARM_ISB::InstSyncBOpt)Opt, S)); 4166 return MatchOperand_Success; 4167 } 4168 4169 4170 /// parseProcIFlagsOperand - Try to parse iflags from CPS instruction. 4171 ARMAsmParser::OperandMatchResultTy 4172 ARMAsmParser::parseProcIFlagsOperand(OperandVector &Operands) { 4173 MCAsmParser &Parser = getParser(); 4174 SMLoc S = Parser.getTok().getLoc(); 4175 const AsmToken &Tok = Parser.getTok(); 4176 if (!Tok.is(AsmToken::Identifier)) 4177 return MatchOperand_NoMatch; 4178 StringRef IFlagsStr = Tok.getString(); 4179 4180 // An iflags string of "none" is interpreted to mean that none of the AIF 4181 // bits are set. Not a terribly useful instruction, but a valid encoding. 4182 unsigned IFlags = 0; 4183 if (IFlagsStr != "none") { 4184 for (int i = 0, e = IFlagsStr.size(); i != e; ++i) { 4185 unsigned Flag = StringSwitch<unsigned>(IFlagsStr.substr(i, 1)) 4186 .Case("a", ARM_PROC::A) 4187 .Case("i", ARM_PROC::I) 4188 .Case("f", ARM_PROC::F) 4189 .Default(~0U); 4190 4191 // If some specific iflag is already set, it means that some letter is 4192 // present more than once, this is not acceptable. 4193 if (Flag == ~0U || (IFlags & Flag)) 4194 return MatchOperand_NoMatch; 4195 4196 IFlags |= Flag; 4197 } 4198 } 4199 4200 Parser.Lex(); // Eat identifier token. 4201 Operands.push_back(ARMOperand::CreateProcIFlags((ARM_PROC::IFlags)IFlags, S)); 4202 return MatchOperand_Success; 4203 } 4204 4205 /// parseMSRMaskOperand - Try to parse mask flags from MSR instruction. 4206 ARMAsmParser::OperandMatchResultTy 4207 ARMAsmParser::parseMSRMaskOperand(OperandVector &Operands) { 4208 MCAsmParser &Parser = getParser(); 4209 SMLoc S = Parser.getTok().getLoc(); 4210 const AsmToken &Tok = Parser.getTok(); 4211 if (!Tok.is(AsmToken::Identifier)) 4212 return MatchOperand_NoMatch; 4213 StringRef Mask = Tok.getString(); 4214 4215 if (isMClass()) { 4216 // See ARMv6-M 10.1.1 4217 std::string Name = Mask.lower(); 4218 unsigned FlagsVal = StringSwitch<unsigned>(Name) 4219 // Note: in the documentation: 4220 // ARM deprecates using MSR APSR without a _<bits> qualifier as an alias 4221 // for MSR APSR_nzcvq. 4222 // but we do make it an alias here. This is so to get the "mask encoding" 4223 // bits correct on MSR APSR writes. 4224 // 4225 // FIXME: Note the 0xc00 "mask encoding" bits version of the registers 4226 // should really only be allowed when writing a special register. Note 4227 // they get dropped in the MRS instruction reading a special register as 4228 // the SYSm field is only 8 bits. 4229 .Case("apsr", 0x800) 4230 .Case("apsr_nzcvq", 0x800) 4231 .Case("apsr_g", 0x400) 4232 .Case("apsr_nzcvqg", 0xc00) 4233 .Case("iapsr", 0x801) 4234 .Case("iapsr_nzcvq", 0x801) 4235 .Case("iapsr_g", 0x401) 4236 .Case("iapsr_nzcvqg", 0xc01) 4237 .Case("eapsr", 0x802) 4238 .Case("eapsr_nzcvq", 0x802) 4239 .Case("eapsr_g", 0x402) 4240 .Case("eapsr_nzcvqg", 0xc02) 4241 .Case("xpsr", 0x803) 4242 .Case("xpsr_nzcvq", 0x803) 4243 .Case("xpsr_g", 0x403) 4244 .Case("xpsr_nzcvqg", 0xc03) 4245 .Case("ipsr", 0x805) 4246 .Case("epsr", 0x806) 4247 .Case("iepsr", 0x807) 4248 .Case("msp", 0x808) 4249 .Case("psp", 0x809) 4250 .Case("primask", 0x810) 4251 .Case("basepri", 0x811) 4252 .Case("basepri_max", 0x812) 4253 .Case("faultmask", 0x813) 4254 .Case("control", 0x814) 4255 .Case("msplim", 0x80a) 4256 .Case("psplim", 0x80b) 4257 .Case("msp_ns", 0x888) 4258 .Case("psp_ns", 0x889) 4259 .Case("msplim_ns", 0x88a) 4260 .Case("psplim_ns", 0x88b) 4261 .Case("primask_ns", 0x890) 4262 .Case("basepri_ns", 0x891) 4263 .Case("basepri_max_ns", 0x892) 4264 .Case("faultmask_ns", 0x893) 4265 .Case("control_ns", 0x894) 4266 .Case("sp_ns", 0x898) 4267 .Default(~0U); 4268 4269 if (FlagsVal == ~0U) 4270 return MatchOperand_NoMatch; 4271 4272 if (!hasDSP() && (FlagsVal & 0x400)) 4273 // The _g and _nzcvqg versions are only valid if the DSP extension is 4274 // available. 4275 return MatchOperand_NoMatch; 4276 4277 if (!hasV7Ops() && FlagsVal >= 0x811 && FlagsVal <= 0x813) 4278 // basepri, basepri_max and faultmask only valid for V7m. 4279 return MatchOperand_NoMatch; 4280 4281 if (!has8MSecExt() && (FlagsVal == 0x80a || FlagsVal == 0x80b || 4282 (FlagsVal > 0x814 && FlagsVal < 0xc00))) 4283 return MatchOperand_NoMatch; 4284 4285 if (!hasV8MMainline() && (FlagsVal == 0x88a || FlagsVal == 0x88b || 4286 (FlagsVal > 0x890 && FlagsVal <= 0x893))) 4287 return MatchOperand_NoMatch; 4288 4289 Parser.Lex(); // Eat identifier token. 4290 Operands.push_back(ARMOperand::CreateMSRMask(FlagsVal, S)); 4291 return MatchOperand_Success; 4292 } 4293 4294 // Split spec_reg from flag, example: CPSR_sxf => "CPSR" and "sxf" 4295 size_t Start = 0, Next = Mask.find('_'); 4296 StringRef Flags = ""; 4297 std::string SpecReg = Mask.slice(Start, Next).lower(); 4298 if (Next != StringRef::npos) 4299 Flags = Mask.slice(Next+1, Mask.size()); 4300 4301 // FlagsVal contains the complete mask: 4302 // 3-0: Mask 4303 // 4: Special Reg (cpsr, apsr => 0; spsr => 1) 4304 unsigned FlagsVal = 0; 4305 4306 if (SpecReg == "apsr") { 4307 FlagsVal = StringSwitch<unsigned>(Flags) 4308 .Case("nzcvq", 0x8) // same as CPSR_f 4309 .Case("g", 0x4) // same as CPSR_s 4310 .Case("nzcvqg", 0xc) // same as CPSR_fs 4311 .Default(~0U); 4312 4313 if (FlagsVal == ~0U) { 4314 if (!Flags.empty()) 4315 return MatchOperand_NoMatch; 4316 else 4317 FlagsVal = 8; // No flag 4318 } 4319 } else if (SpecReg == "cpsr" || SpecReg == "spsr") { 4320 // cpsr_all is an alias for cpsr_fc, as is plain cpsr. 4321 if (Flags == "all" || Flags == "") 4322 Flags = "fc"; 4323 for (int i = 0, e = Flags.size(); i != e; ++i) { 4324 unsigned Flag = StringSwitch<unsigned>(Flags.substr(i, 1)) 4325 .Case("c", 1) 4326 .Case("x", 2) 4327 .Case("s", 4) 4328 .Case("f", 8) 4329 .Default(~0U); 4330 4331 // If some specific flag is already set, it means that some letter is 4332 // present more than once, this is not acceptable. 4333 if (FlagsVal == ~0U || (FlagsVal & Flag)) 4334 return MatchOperand_NoMatch; 4335 FlagsVal |= Flag; 4336 } 4337 } else // No match for special register. 4338 return MatchOperand_NoMatch; 4339 4340 // Special register without flags is NOT equivalent to "fc" flags. 4341 // NOTE: This is a divergence from gas' behavior. Uncommenting the following 4342 // two lines would enable gas compatibility at the expense of breaking 4343 // round-tripping. 4344 // 4345 // if (!FlagsVal) 4346 // FlagsVal = 0x9; 4347 4348 // Bit 4: Special Reg (cpsr, apsr => 0; spsr => 1) 4349 if (SpecReg == "spsr") 4350 FlagsVal |= 16; 4351 4352 Parser.Lex(); // Eat identifier token. 4353 Operands.push_back(ARMOperand::CreateMSRMask(FlagsVal, S)); 4354 return MatchOperand_Success; 4355 } 4356 4357 /// parseBankedRegOperand - Try to parse a banked register (e.g. "lr_irq") for 4358 /// use in the MRS/MSR instructions added to support virtualization. 4359 ARMAsmParser::OperandMatchResultTy 4360 ARMAsmParser::parseBankedRegOperand(OperandVector &Operands) { 4361 MCAsmParser &Parser = getParser(); 4362 SMLoc S = Parser.getTok().getLoc(); 4363 const AsmToken &Tok = Parser.getTok(); 4364 if (!Tok.is(AsmToken::Identifier)) 4365 return MatchOperand_NoMatch; 4366 StringRef RegName = Tok.getString(); 4367 4368 // The values here come from B9.2.3 of the ARM ARM, where bits 4-0 are SysM 4369 // and bit 5 is R. 4370 unsigned Encoding = StringSwitch<unsigned>(RegName.lower()) 4371 .Case("r8_usr", 0x00) 4372 .Case("r9_usr", 0x01) 4373 .Case("r10_usr", 0x02) 4374 .Case("r11_usr", 0x03) 4375 .Case("r12_usr", 0x04) 4376 .Case("sp_usr", 0x05) 4377 .Case("lr_usr", 0x06) 4378 .Case("r8_fiq", 0x08) 4379 .Case("r9_fiq", 0x09) 4380 .Case("r10_fiq", 0x0a) 4381 .Case("r11_fiq", 0x0b) 4382 .Case("r12_fiq", 0x0c) 4383 .Case("sp_fiq", 0x0d) 4384 .Case("lr_fiq", 0x0e) 4385 .Case("lr_irq", 0x10) 4386 .Case("sp_irq", 0x11) 4387 .Case("lr_svc", 0x12) 4388 .Case("sp_svc", 0x13) 4389 .Case("lr_abt", 0x14) 4390 .Case("sp_abt", 0x15) 4391 .Case("lr_und", 0x16) 4392 .Case("sp_und", 0x17) 4393 .Case("lr_mon", 0x1c) 4394 .Case("sp_mon", 0x1d) 4395 .Case("elr_hyp", 0x1e) 4396 .Case("sp_hyp", 0x1f) 4397 .Case("spsr_fiq", 0x2e) 4398 .Case("spsr_irq", 0x30) 4399 .Case("spsr_svc", 0x32) 4400 .Case("spsr_abt", 0x34) 4401 .Case("spsr_und", 0x36) 4402 .Case("spsr_mon", 0x3c) 4403 .Case("spsr_hyp", 0x3e) 4404 .Default(~0U); 4405 4406 if (Encoding == ~0U) 4407 return MatchOperand_NoMatch; 4408 4409 Parser.Lex(); // Eat identifier token. 4410 Operands.push_back(ARMOperand::CreateBankedReg(Encoding, S)); 4411 return MatchOperand_Success; 4412 } 4413 4414 ARMAsmParser::OperandMatchResultTy 4415 ARMAsmParser::parsePKHImm(OperandVector &Operands, StringRef Op, int Low, 4416 int High) { 4417 MCAsmParser &Parser = getParser(); 4418 const AsmToken &Tok = Parser.getTok(); 4419 if (Tok.isNot(AsmToken::Identifier)) { 4420 Error(Parser.getTok().getLoc(), Op + " operand expected."); 4421 return MatchOperand_ParseFail; 4422 } 4423 StringRef ShiftName = Tok.getString(); 4424 std::string LowerOp = Op.lower(); 4425 std::string UpperOp = Op.upper(); 4426 if (ShiftName != LowerOp && ShiftName != UpperOp) { 4427 Error(Parser.getTok().getLoc(), Op + " operand expected."); 4428 return MatchOperand_ParseFail; 4429 } 4430 Parser.Lex(); // Eat shift type token. 4431 4432 // There must be a '#' and a shift amount. 4433 if (Parser.getTok().isNot(AsmToken::Hash) && 4434 Parser.getTok().isNot(AsmToken::Dollar)) { 4435 Error(Parser.getTok().getLoc(), "'#' expected"); 4436 return MatchOperand_ParseFail; 4437 } 4438 Parser.Lex(); // Eat hash token. 4439 4440 const MCExpr *ShiftAmount; 4441 SMLoc Loc = Parser.getTok().getLoc(); 4442 SMLoc EndLoc; 4443 if (getParser().parseExpression(ShiftAmount, EndLoc)) { 4444 Error(Loc, "illegal expression"); 4445 return MatchOperand_ParseFail; 4446 } 4447 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ShiftAmount); 4448 if (!CE) { 4449 Error(Loc, "constant expression expected"); 4450 return MatchOperand_ParseFail; 4451 } 4452 int Val = CE->getValue(); 4453 if (Val < Low || Val > High) { 4454 Error(Loc, "immediate value out of range"); 4455 return MatchOperand_ParseFail; 4456 } 4457 4458 Operands.push_back(ARMOperand::CreateImm(CE, Loc, EndLoc)); 4459 4460 return MatchOperand_Success; 4461 } 4462 4463 ARMAsmParser::OperandMatchResultTy 4464 ARMAsmParser::parseSetEndImm(OperandVector &Operands) { 4465 MCAsmParser &Parser = getParser(); 4466 const AsmToken &Tok = Parser.getTok(); 4467 SMLoc S = Tok.getLoc(); 4468 if (Tok.isNot(AsmToken::Identifier)) { 4469 Error(S, "'be' or 'le' operand expected"); 4470 return MatchOperand_ParseFail; 4471 } 4472 int Val = StringSwitch<int>(Tok.getString().lower()) 4473 .Case("be", 1) 4474 .Case("le", 0) 4475 .Default(-1); 4476 Parser.Lex(); // Eat the token. 4477 4478 if (Val == -1) { 4479 Error(S, "'be' or 'le' operand expected"); 4480 return MatchOperand_ParseFail; 4481 } 4482 Operands.push_back(ARMOperand::CreateImm(MCConstantExpr::create(Val, 4483 getContext()), 4484 S, Tok.getEndLoc())); 4485 return MatchOperand_Success; 4486 } 4487 4488 /// parseShifterImm - Parse the shifter immediate operand for SSAT/USAT 4489 /// instructions. Legal values are: 4490 /// lsl #n 'n' in [0,31] 4491 /// asr #n 'n' in [1,32] 4492 /// n == 32 encoded as n == 0. 4493 ARMAsmParser::OperandMatchResultTy 4494 ARMAsmParser::parseShifterImm(OperandVector &Operands) { 4495 MCAsmParser &Parser = getParser(); 4496 const AsmToken &Tok = Parser.getTok(); 4497 SMLoc S = Tok.getLoc(); 4498 if (Tok.isNot(AsmToken::Identifier)) { 4499 Error(S, "shift operator 'asr' or 'lsl' expected"); 4500 return MatchOperand_ParseFail; 4501 } 4502 StringRef ShiftName = Tok.getString(); 4503 bool isASR; 4504 if (ShiftName == "lsl" || ShiftName == "LSL") 4505 isASR = false; 4506 else if (ShiftName == "asr" || ShiftName == "ASR") 4507 isASR = true; 4508 else { 4509 Error(S, "shift operator 'asr' or 'lsl' expected"); 4510 return MatchOperand_ParseFail; 4511 } 4512 Parser.Lex(); // Eat the operator. 4513 4514 // A '#' and a shift amount. 4515 if (Parser.getTok().isNot(AsmToken::Hash) && 4516 Parser.getTok().isNot(AsmToken::Dollar)) { 4517 Error(Parser.getTok().getLoc(), "'#' expected"); 4518 return MatchOperand_ParseFail; 4519 } 4520 Parser.Lex(); // Eat hash token. 4521 SMLoc ExLoc = Parser.getTok().getLoc(); 4522 4523 const MCExpr *ShiftAmount; 4524 SMLoc EndLoc; 4525 if (getParser().parseExpression(ShiftAmount, EndLoc)) { 4526 Error(ExLoc, "malformed shift expression"); 4527 return MatchOperand_ParseFail; 4528 } 4529 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ShiftAmount); 4530 if (!CE) { 4531 Error(ExLoc, "shift amount must be an immediate"); 4532 return MatchOperand_ParseFail; 4533 } 4534 4535 int64_t Val = CE->getValue(); 4536 if (isASR) { 4537 // Shift amount must be in [1,32] 4538 if (Val < 1 || Val > 32) { 4539 Error(ExLoc, "'asr' shift amount must be in range [1,32]"); 4540 return MatchOperand_ParseFail; 4541 } 4542 // asr #32 encoded as asr #0, but is not allowed in Thumb2 mode. 4543 if (isThumb() && Val == 32) { 4544 Error(ExLoc, "'asr #32' shift amount not allowed in Thumb mode"); 4545 return MatchOperand_ParseFail; 4546 } 4547 if (Val == 32) Val = 0; 4548 } else { 4549 // Shift amount must be in [1,32] 4550 if (Val < 0 || Val > 31) { 4551 Error(ExLoc, "'lsr' shift amount must be in range [0,31]"); 4552 return MatchOperand_ParseFail; 4553 } 4554 } 4555 4556 Operands.push_back(ARMOperand::CreateShifterImm(isASR, Val, S, EndLoc)); 4557 4558 return MatchOperand_Success; 4559 } 4560 4561 /// parseRotImm - Parse the shifter immediate operand for SXTB/UXTB family 4562 /// of instructions. Legal values are: 4563 /// ror #n 'n' in {0, 8, 16, 24} 4564 ARMAsmParser::OperandMatchResultTy 4565 ARMAsmParser::parseRotImm(OperandVector &Operands) { 4566 MCAsmParser &Parser = getParser(); 4567 const AsmToken &Tok = Parser.getTok(); 4568 SMLoc S = Tok.getLoc(); 4569 if (Tok.isNot(AsmToken::Identifier)) 4570 return MatchOperand_NoMatch; 4571 StringRef ShiftName = Tok.getString(); 4572 if (ShiftName != "ror" && ShiftName != "ROR") 4573 return MatchOperand_NoMatch; 4574 Parser.Lex(); // Eat the operator. 4575 4576 // A '#' and a rotate amount. 4577 if (Parser.getTok().isNot(AsmToken::Hash) && 4578 Parser.getTok().isNot(AsmToken::Dollar)) { 4579 Error(Parser.getTok().getLoc(), "'#' expected"); 4580 return MatchOperand_ParseFail; 4581 } 4582 Parser.Lex(); // Eat hash token. 4583 SMLoc ExLoc = Parser.getTok().getLoc(); 4584 4585 const MCExpr *ShiftAmount; 4586 SMLoc EndLoc; 4587 if (getParser().parseExpression(ShiftAmount, EndLoc)) { 4588 Error(ExLoc, "malformed rotate expression"); 4589 return MatchOperand_ParseFail; 4590 } 4591 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ShiftAmount); 4592 if (!CE) { 4593 Error(ExLoc, "rotate amount must be an immediate"); 4594 return MatchOperand_ParseFail; 4595 } 4596 4597 int64_t Val = CE->getValue(); 4598 // Shift amount must be in {0, 8, 16, 24} (0 is undocumented extension) 4599 // normally, zero is represented in asm by omitting the rotate operand 4600 // entirely. 4601 if (Val != 8 && Val != 16 && Val != 24 && Val != 0) { 4602 Error(ExLoc, "'ror' rotate amount must be 8, 16, or 24"); 4603 return MatchOperand_ParseFail; 4604 } 4605 4606 Operands.push_back(ARMOperand::CreateRotImm(Val, S, EndLoc)); 4607 4608 return MatchOperand_Success; 4609 } 4610 4611 ARMAsmParser::OperandMatchResultTy 4612 ARMAsmParser::parseModImm(OperandVector &Operands) { 4613 MCAsmParser &Parser = getParser(); 4614 MCAsmLexer &Lexer = getLexer(); 4615 int64_t Imm1, Imm2; 4616 4617 SMLoc S = Parser.getTok().getLoc(); 4618 4619 // 1) A mod_imm operand can appear in the place of a register name: 4620 // add r0, #mod_imm 4621 // add r0, r0, #mod_imm 4622 // to correctly handle the latter, we bail out as soon as we see an 4623 // identifier. 4624 // 4625 // 2) Similarly, we do not want to parse into complex operands: 4626 // mov r0, #mod_imm 4627 // mov r0, :lower16:(_foo) 4628 if (Parser.getTok().is(AsmToken::Identifier) || 4629 Parser.getTok().is(AsmToken::Colon)) 4630 return MatchOperand_NoMatch; 4631 4632 // Hash (dollar) is optional as per the ARMARM 4633 if (Parser.getTok().is(AsmToken::Hash) || 4634 Parser.getTok().is(AsmToken::Dollar)) { 4635 // Avoid parsing into complex operands (#:) 4636 if (Lexer.peekTok().is(AsmToken::Colon)) 4637 return MatchOperand_NoMatch; 4638 4639 // Eat the hash (dollar) 4640 Parser.Lex(); 4641 } 4642 4643 SMLoc Sx1, Ex1; 4644 Sx1 = Parser.getTok().getLoc(); 4645 const MCExpr *Imm1Exp; 4646 if (getParser().parseExpression(Imm1Exp, Ex1)) { 4647 Error(Sx1, "malformed expression"); 4648 return MatchOperand_ParseFail; 4649 } 4650 4651 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Imm1Exp); 4652 4653 if (CE) { 4654 // Immediate must fit within 32-bits 4655 Imm1 = CE->getValue(); 4656 int Enc = ARM_AM::getSOImmVal(Imm1); 4657 if (Enc != -1 && Parser.getTok().is(AsmToken::EndOfStatement)) { 4658 // We have a match! 4659 Operands.push_back(ARMOperand::CreateModImm((Enc & 0xFF), 4660 (Enc & 0xF00) >> 7, 4661 Sx1, Ex1)); 4662 return MatchOperand_Success; 4663 } 4664 4665 // We have parsed an immediate which is not for us, fallback to a plain 4666 // immediate. This can happen for instruction aliases. For an example, 4667 // ARMInstrInfo.td defines the alias [mov <-> mvn] which can transform 4668 // a mov (mvn) with a mod_imm_neg/mod_imm_not operand into the opposite 4669 // instruction with a mod_imm operand. The alias is defined such that the 4670 // parser method is shared, that's why we have to do this here. 4671 if (Parser.getTok().is(AsmToken::EndOfStatement)) { 4672 Operands.push_back(ARMOperand::CreateImm(Imm1Exp, Sx1, Ex1)); 4673 return MatchOperand_Success; 4674 } 4675 } else { 4676 // Operands like #(l1 - l2) can only be evaluated at a later stage (via an 4677 // MCFixup). Fallback to a plain immediate. 4678 Operands.push_back(ARMOperand::CreateImm(Imm1Exp, Sx1, Ex1)); 4679 return MatchOperand_Success; 4680 } 4681 4682 // From this point onward, we expect the input to be a (#bits, #rot) pair 4683 if (Parser.getTok().isNot(AsmToken::Comma)) { 4684 Error(Sx1, "expected modified immediate operand: #[0, 255], #even[0-30]"); 4685 return MatchOperand_ParseFail; 4686 } 4687 4688 if (Imm1 & ~0xFF) { 4689 Error(Sx1, "immediate operand must a number in the range [0, 255]"); 4690 return MatchOperand_ParseFail; 4691 } 4692 4693 // Eat the comma 4694 Parser.Lex(); 4695 4696 // Repeat for #rot 4697 SMLoc Sx2, Ex2; 4698 Sx2 = Parser.getTok().getLoc(); 4699 4700 // Eat the optional hash (dollar) 4701 if (Parser.getTok().is(AsmToken::Hash) || 4702 Parser.getTok().is(AsmToken::Dollar)) 4703 Parser.Lex(); 4704 4705 const MCExpr *Imm2Exp; 4706 if (getParser().parseExpression(Imm2Exp, Ex2)) { 4707 Error(Sx2, "malformed expression"); 4708 return MatchOperand_ParseFail; 4709 } 4710 4711 CE = dyn_cast<MCConstantExpr>(Imm2Exp); 4712 4713 if (CE) { 4714 Imm2 = CE->getValue(); 4715 if (!(Imm2 & ~0x1E)) { 4716 // We have a match! 4717 Operands.push_back(ARMOperand::CreateModImm(Imm1, Imm2, S, Ex2)); 4718 return MatchOperand_Success; 4719 } 4720 Error(Sx2, "immediate operand must an even number in the range [0, 30]"); 4721 return MatchOperand_ParseFail; 4722 } else { 4723 Error(Sx2, "constant expression expected"); 4724 return MatchOperand_ParseFail; 4725 } 4726 } 4727 4728 ARMAsmParser::OperandMatchResultTy 4729 ARMAsmParser::parseBitfield(OperandVector &Operands) { 4730 MCAsmParser &Parser = getParser(); 4731 SMLoc S = Parser.getTok().getLoc(); 4732 // The bitfield descriptor is really two operands, the LSB and the width. 4733 if (Parser.getTok().isNot(AsmToken::Hash) && 4734 Parser.getTok().isNot(AsmToken::Dollar)) { 4735 Error(Parser.getTok().getLoc(), "'#' expected"); 4736 return MatchOperand_ParseFail; 4737 } 4738 Parser.Lex(); // Eat hash token. 4739 4740 const MCExpr *LSBExpr; 4741 SMLoc E = Parser.getTok().getLoc(); 4742 if (getParser().parseExpression(LSBExpr)) { 4743 Error(E, "malformed immediate expression"); 4744 return MatchOperand_ParseFail; 4745 } 4746 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(LSBExpr); 4747 if (!CE) { 4748 Error(E, "'lsb' operand must be an immediate"); 4749 return MatchOperand_ParseFail; 4750 } 4751 4752 int64_t LSB = CE->getValue(); 4753 // The LSB must be in the range [0,31] 4754 if (LSB < 0 || LSB > 31) { 4755 Error(E, "'lsb' operand must be in the range [0,31]"); 4756 return MatchOperand_ParseFail; 4757 } 4758 E = Parser.getTok().getLoc(); 4759 4760 // Expect another immediate operand. 4761 if (Parser.getTok().isNot(AsmToken::Comma)) { 4762 Error(Parser.getTok().getLoc(), "too few operands"); 4763 return MatchOperand_ParseFail; 4764 } 4765 Parser.Lex(); // Eat hash token. 4766 if (Parser.getTok().isNot(AsmToken::Hash) && 4767 Parser.getTok().isNot(AsmToken::Dollar)) { 4768 Error(Parser.getTok().getLoc(), "'#' expected"); 4769 return MatchOperand_ParseFail; 4770 } 4771 Parser.Lex(); // Eat hash token. 4772 4773 const MCExpr *WidthExpr; 4774 SMLoc EndLoc; 4775 if (getParser().parseExpression(WidthExpr, EndLoc)) { 4776 Error(E, "malformed immediate expression"); 4777 return MatchOperand_ParseFail; 4778 } 4779 CE = dyn_cast<MCConstantExpr>(WidthExpr); 4780 if (!CE) { 4781 Error(E, "'width' operand must be an immediate"); 4782 return MatchOperand_ParseFail; 4783 } 4784 4785 int64_t Width = CE->getValue(); 4786 // The LSB must be in the range [1,32-lsb] 4787 if (Width < 1 || Width > 32 - LSB) { 4788 Error(E, "'width' operand must be in the range [1,32-lsb]"); 4789 return MatchOperand_ParseFail; 4790 } 4791 4792 Operands.push_back(ARMOperand::CreateBitfield(LSB, Width, S, EndLoc)); 4793 4794 return MatchOperand_Success; 4795 } 4796 4797 ARMAsmParser::OperandMatchResultTy 4798 ARMAsmParser::parsePostIdxReg(OperandVector &Operands) { 4799 // Check for a post-index addressing register operand. Specifically: 4800 // postidx_reg := '+' register {, shift} 4801 // | '-' register {, shift} 4802 // | register {, shift} 4803 4804 // This method must return MatchOperand_NoMatch without consuming any tokens 4805 // in the case where there is no match, as other alternatives take other 4806 // parse methods. 4807 MCAsmParser &Parser = getParser(); 4808 AsmToken Tok = Parser.getTok(); 4809 SMLoc S = Tok.getLoc(); 4810 bool haveEaten = false; 4811 bool isAdd = true; 4812 if (Tok.is(AsmToken::Plus)) { 4813 Parser.Lex(); // Eat the '+' token. 4814 haveEaten = true; 4815 } else if (Tok.is(AsmToken::Minus)) { 4816 Parser.Lex(); // Eat the '-' token. 4817 isAdd = false; 4818 haveEaten = true; 4819 } 4820 4821 SMLoc E = Parser.getTok().getEndLoc(); 4822 int Reg = tryParseRegister(); 4823 if (Reg == -1) { 4824 if (!haveEaten) 4825 return MatchOperand_NoMatch; 4826 Error(Parser.getTok().getLoc(), "register expected"); 4827 return MatchOperand_ParseFail; 4828 } 4829 4830 ARM_AM::ShiftOpc ShiftTy = ARM_AM::no_shift; 4831 unsigned ShiftImm = 0; 4832 if (Parser.getTok().is(AsmToken::Comma)) { 4833 Parser.Lex(); // Eat the ','. 4834 if (parseMemRegOffsetShift(ShiftTy, ShiftImm)) 4835 return MatchOperand_ParseFail; 4836 4837 // FIXME: Only approximates end...may include intervening whitespace. 4838 E = Parser.getTok().getLoc(); 4839 } 4840 4841 Operands.push_back(ARMOperand::CreatePostIdxReg(Reg, isAdd, ShiftTy, 4842 ShiftImm, S, E)); 4843 4844 return MatchOperand_Success; 4845 } 4846 4847 ARMAsmParser::OperandMatchResultTy 4848 ARMAsmParser::parseAM3Offset(OperandVector &Operands) { 4849 // Check for a post-index addressing register operand. Specifically: 4850 // am3offset := '+' register 4851 // | '-' register 4852 // | register 4853 // | # imm 4854 // | # + imm 4855 // | # - imm 4856 4857 // This method must return MatchOperand_NoMatch without consuming any tokens 4858 // in the case where there is no match, as other alternatives take other 4859 // parse methods. 4860 MCAsmParser &Parser = getParser(); 4861 AsmToken Tok = Parser.getTok(); 4862 SMLoc S = Tok.getLoc(); 4863 4864 // Do immediates first, as we always parse those if we have a '#'. 4865 if (Parser.getTok().is(AsmToken::Hash) || 4866 Parser.getTok().is(AsmToken::Dollar)) { 4867 Parser.Lex(); // Eat '#' or '$'. 4868 // Explicitly look for a '-', as we need to encode negative zero 4869 // differently. 4870 bool isNegative = Parser.getTok().is(AsmToken::Minus); 4871 const MCExpr *Offset; 4872 SMLoc E; 4873 if (getParser().parseExpression(Offset, E)) 4874 return MatchOperand_ParseFail; 4875 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Offset); 4876 if (!CE) { 4877 Error(S, "constant expression expected"); 4878 return MatchOperand_ParseFail; 4879 } 4880 // Negative zero is encoded as the flag value INT32_MIN. 4881 int32_t Val = CE->getValue(); 4882 if (isNegative && Val == 0) 4883 Val = INT32_MIN; 4884 4885 Operands.push_back( 4886 ARMOperand::CreateImm(MCConstantExpr::create(Val, getContext()), S, E)); 4887 4888 return MatchOperand_Success; 4889 } 4890 4891 4892 bool haveEaten = false; 4893 bool isAdd = true; 4894 if (Tok.is(AsmToken::Plus)) { 4895 Parser.Lex(); // Eat the '+' token. 4896 haveEaten = true; 4897 } else if (Tok.is(AsmToken::Minus)) { 4898 Parser.Lex(); // Eat the '-' token. 4899 isAdd = false; 4900 haveEaten = true; 4901 } 4902 4903 Tok = Parser.getTok(); 4904 int Reg = tryParseRegister(); 4905 if (Reg == -1) { 4906 if (!haveEaten) 4907 return MatchOperand_NoMatch; 4908 Error(Tok.getLoc(), "register expected"); 4909 return MatchOperand_ParseFail; 4910 } 4911 4912 Operands.push_back(ARMOperand::CreatePostIdxReg(Reg, isAdd, ARM_AM::no_shift, 4913 0, S, Tok.getEndLoc())); 4914 4915 return MatchOperand_Success; 4916 } 4917 4918 /// Convert parsed operands to MCInst. Needed here because this instruction 4919 /// only has two register operands, but multiplication is commutative so 4920 /// assemblers should accept both "mul rD, rN, rD" and "mul rD, rD, rN". 4921 void ARMAsmParser::cvtThumbMultiply(MCInst &Inst, 4922 const OperandVector &Operands) { 4923 ((ARMOperand &)*Operands[3]).addRegOperands(Inst, 1); 4924 ((ARMOperand &)*Operands[1]).addCCOutOperands(Inst, 1); 4925 // If we have a three-operand form, make sure to set Rn to be the operand 4926 // that isn't the same as Rd. 4927 unsigned RegOp = 4; 4928 if (Operands.size() == 6 && 4929 ((ARMOperand &)*Operands[4]).getReg() == 4930 ((ARMOperand &)*Operands[3]).getReg()) 4931 RegOp = 5; 4932 ((ARMOperand &)*Operands[RegOp]).addRegOperands(Inst, 1); 4933 Inst.addOperand(Inst.getOperand(0)); 4934 ((ARMOperand &)*Operands[2]).addCondCodeOperands(Inst, 2); 4935 } 4936 4937 void ARMAsmParser::cvtThumbBranches(MCInst &Inst, 4938 const OperandVector &Operands) { 4939 int CondOp = -1, ImmOp = -1; 4940 switch(Inst.getOpcode()) { 4941 case ARM::tB: 4942 case ARM::tBcc: CondOp = 1; ImmOp = 2; break; 4943 4944 case ARM::t2B: 4945 case ARM::t2Bcc: CondOp = 1; ImmOp = 3; break; 4946 4947 default: llvm_unreachable("Unexpected instruction in cvtThumbBranches"); 4948 } 4949 // first decide whether or not the branch should be conditional 4950 // by looking at it's location relative to an IT block 4951 if(inITBlock()) { 4952 // inside an IT block we cannot have any conditional branches. any 4953 // such instructions needs to be converted to unconditional form 4954 switch(Inst.getOpcode()) { 4955 case ARM::tBcc: Inst.setOpcode(ARM::tB); break; 4956 case ARM::t2Bcc: Inst.setOpcode(ARM::t2B); break; 4957 } 4958 } else { 4959 // outside IT blocks we can only have unconditional branches with AL 4960 // condition code or conditional branches with non-AL condition code 4961 unsigned Cond = static_cast<ARMOperand &>(*Operands[CondOp]).getCondCode(); 4962 switch(Inst.getOpcode()) { 4963 case ARM::tB: 4964 case ARM::tBcc: 4965 Inst.setOpcode(Cond == ARMCC::AL ? ARM::tB : ARM::tBcc); 4966 break; 4967 case ARM::t2B: 4968 case ARM::t2Bcc: 4969 Inst.setOpcode(Cond == ARMCC::AL ? ARM::t2B : ARM::t2Bcc); 4970 break; 4971 } 4972 } 4973 4974 // now decide on encoding size based on branch target range 4975 switch(Inst.getOpcode()) { 4976 // classify tB as either t2B or t1B based on range of immediate operand 4977 case ARM::tB: { 4978 ARMOperand &op = static_cast<ARMOperand &>(*Operands[ImmOp]); 4979 if (!op.isSignedOffset<11, 1>() && isThumb() && hasV8MBaseline()) 4980 Inst.setOpcode(ARM::t2B); 4981 break; 4982 } 4983 // classify tBcc as either t2Bcc or t1Bcc based on range of immediate operand 4984 case ARM::tBcc: { 4985 ARMOperand &op = static_cast<ARMOperand &>(*Operands[ImmOp]); 4986 if (!op.isSignedOffset<8, 1>() && isThumb() && hasV8MBaseline()) 4987 Inst.setOpcode(ARM::t2Bcc); 4988 break; 4989 } 4990 } 4991 ((ARMOperand &)*Operands[ImmOp]).addImmOperands(Inst, 1); 4992 ((ARMOperand &)*Operands[CondOp]).addCondCodeOperands(Inst, 2); 4993 } 4994 4995 /// Parse an ARM memory expression, return false if successful else return true 4996 /// or an error. The first token must be a '[' when called. 4997 bool ARMAsmParser::parseMemory(OperandVector &Operands) { 4998 MCAsmParser &Parser = getParser(); 4999 SMLoc S, E; 5000 assert(Parser.getTok().is(AsmToken::LBrac) && 5001 "Token is not a Left Bracket"); 5002 S = Parser.getTok().getLoc(); 5003 Parser.Lex(); // Eat left bracket token. 5004 5005 const AsmToken &BaseRegTok = Parser.getTok(); 5006 int BaseRegNum = tryParseRegister(); 5007 if (BaseRegNum == -1) 5008 return Error(BaseRegTok.getLoc(), "register expected"); 5009 5010 // The next token must either be a comma, a colon or a closing bracket. 5011 const AsmToken &Tok = Parser.getTok(); 5012 if (!Tok.is(AsmToken::Colon) && !Tok.is(AsmToken::Comma) && 5013 !Tok.is(AsmToken::RBrac)) 5014 return Error(Tok.getLoc(), "malformed memory operand"); 5015 5016 if (Tok.is(AsmToken::RBrac)) { 5017 E = Tok.getEndLoc(); 5018 Parser.Lex(); // Eat right bracket token. 5019 5020 Operands.push_back(ARMOperand::CreateMem(BaseRegNum, nullptr, 0, 5021 ARM_AM::no_shift, 0, 0, false, 5022 S, E)); 5023 5024 // If there's a pre-indexing writeback marker, '!', just add it as a token 5025 // operand. It's rather odd, but syntactically valid. 5026 if (Parser.getTok().is(AsmToken::Exclaim)) { 5027 Operands.push_back(ARMOperand::CreateToken("!",Parser.getTok().getLoc())); 5028 Parser.Lex(); // Eat the '!'. 5029 } 5030 5031 return false; 5032 } 5033 5034 assert((Tok.is(AsmToken::Colon) || Tok.is(AsmToken::Comma)) && 5035 "Lost colon or comma in memory operand?!"); 5036 if (Tok.is(AsmToken::Comma)) { 5037 Parser.Lex(); // Eat the comma. 5038 } 5039 5040 // If we have a ':', it's an alignment specifier. 5041 if (Parser.getTok().is(AsmToken::Colon)) { 5042 Parser.Lex(); // Eat the ':'. 5043 E = Parser.getTok().getLoc(); 5044 SMLoc AlignmentLoc = Tok.getLoc(); 5045 5046 const MCExpr *Expr; 5047 if (getParser().parseExpression(Expr)) 5048 return true; 5049 5050 // The expression has to be a constant. Memory references with relocations 5051 // don't come through here, as they use the <label> forms of the relevant 5052 // instructions. 5053 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr); 5054 if (!CE) 5055 return Error (E, "constant expression expected"); 5056 5057 unsigned Align = 0; 5058 switch (CE->getValue()) { 5059 default: 5060 return Error(E, 5061 "alignment specifier must be 16, 32, 64, 128, or 256 bits"); 5062 case 16: Align = 2; break; 5063 case 32: Align = 4; break; 5064 case 64: Align = 8; break; 5065 case 128: Align = 16; break; 5066 case 256: Align = 32; break; 5067 } 5068 5069 // Now we should have the closing ']' 5070 if (Parser.getTok().isNot(AsmToken::RBrac)) 5071 return Error(Parser.getTok().getLoc(), "']' expected"); 5072 E = Parser.getTok().getEndLoc(); 5073 Parser.Lex(); // Eat right bracket token. 5074 5075 // Don't worry about range checking the value here. That's handled by 5076 // the is*() predicates. 5077 Operands.push_back(ARMOperand::CreateMem(BaseRegNum, nullptr, 0, 5078 ARM_AM::no_shift, 0, Align, 5079 false, S, E, AlignmentLoc)); 5080 5081 // If there's a pre-indexing writeback marker, '!', just add it as a token 5082 // operand. 5083 if (Parser.getTok().is(AsmToken::Exclaim)) { 5084 Operands.push_back(ARMOperand::CreateToken("!",Parser.getTok().getLoc())); 5085 Parser.Lex(); // Eat the '!'. 5086 } 5087 5088 return false; 5089 } 5090 5091 // If we have a '#', it's an immediate offset, else assume it's a register 5092 // offset. Be friendly and also accept a plain integer (without a leading 5093 // hash) for gas compatibility. 5094 if (Parser.getTok().is(AsmToken::Hash) || 5095 Parser.getTok().is(AsmToken::Dollar) || 5096 Parser.getTok().is(AsmToken::Integer)) { 5097 if (Parser.getTok().isNot(AsmToken::Integer)) 5098 Parser.Lex(); // Eat '#' or '$'. 5099 E = Parser.getTok().getLoc(); 5100 5101 bool isNegative = getParser().getTok().is(AsmToken::Minus); 5102 const MCExpr *Offset; 5103 if (getParser().parseExpression(Offset)) 5104 return true; 5105 5106 // The expression has to be a constant. Memory references with relocations 5107 // don't come through here, as they use the <label> forms of the relevant 5108 // instructions. 5109 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Offset); 5110 if (!CE) 5111 return Error (E, "constant expression expected"); 5112 5113 // If the constant was #-0, represent it as INT32_MIN. 5114 int32_t Val = CE->getValue(); 5115 if (isNegative && Val == 0) 5116 CE = MCConstantExpr::create(INT32_MIN, getContext()); 5117 5118 // Now we should have the closing ']' 5119 if (Parser.getTok().isNot(AsmToken::RBrac)) 5120 return Error(Parser.getTok().getLoc(), "']' expected"); 5121 E = Parser.getTok().getEndLoc(); 5122 Parser.Lex(); // Eat right bracket token. 5123 5124 // Don't worry about range checking the value here. That's handled by 5125 // the is*() predicates. 5126 Operands.push_back(ARMOperand::CreateMem(BaseRegNum, CE, 0, 5127 ARM_AM::no_shift, 0, 0, 5128 false, S, E)); 5129 5130 // If there's a pre-indexing writeback marker, '!', just add it as a token 5131 // operand. 5132 if (Parser.getTok().is(AsmToken::Exclaim)) { 5133 Operands.push_back(ARMOperand::CreateToken("!",Parser.getTok().getLoc())); 5134 Parser.Lex(); // Eat the '!'. 5135 } 5136 5137 return false; 5138 } 5139 5140 // The register offset is optionally preceded by a '+' or '-' 5141 bool isNegative = false; 5142 if (Parser.getTok().is(AsmToken::Minus)) { 5143 isNegative = true; 5144 Parser.Lex(); // Eat the '-'. 5145 } else if (Parser.getTok().is(AsmToken::Plus)) { 5146 // Nothing to do. 5147 Parser.Lex(); // Eat the '+'. 5148 } 5149 5150 E = Parser.getTok().getLoc(); 5151 int OffsetRegNum = tryParseRegister(); 5152 if (OffsetRegNum == -1) 5153 return Error(E, "register expected"); 5154 5155 // If there's a shift operator, handle it. 5156 ARM_AM::ShiftOpc ShiftType = ARM_AM::no_shift; 5157 unsigned ShiftImm = 0; 5158 if (Parser.getTok().is(AsmToken::Comma)) { 5159 Parser.Lex(); // Eat the ','. 5160 if (parseMemRegOffsetShift(ShiftType, ShiftImm)) 5161 return true; 5162 } 5163 5164 // Now we should have the closing ']' 5165 if (Parser.getTok().isNot(AsmToken::RBrac)) 5166 return Error(Parser.getTok().getLoc(), "']' expected"); 5167 E = Parser.getTok().getEndLoc(); 5168 Parser.Lex(); // Eat right bracket token. 5169 5170 Operands.push_back(ARMOperand::CreateMem(BaseRegNum, nullptr, OffsetRegNum, 5171 ShiftType, ShiftImm, 0, isNegative, 5172 S, E)); 5173 5174 // If there's a pre-indexing writeback marker, '!', just add it as a token 5175 // operand. 5176 if (Parser.getTok().is(AsmToken::Exclaim)) { 5177 Operands.push_back(ARMOperand::CreateToken("!",Parser.getTok().getLoc())); 5178 Parser.Lex(); // Eat the '!'. 5179 } 5180 5181 return false; 5182 } 5183 5184 /// parseMemRegOffsetShift - one of these two: 5185 /// ( lsl | lsr | asr | ror ) , # shift_amount 5186 /// rrx 5187 /// return true if it parses a shift otherwise it returns false. 5188 bool ARMAsmParser::parseMemRegOffsetShift(ARM_AM::ShiftOpc &St, 5189 unsigned &Amount) { 5190 MCAsmParser &Parser = getParser(); 5191 SMLoc Loc = Parser.getTok().getLoc(); 5192 const AsmToken &Tok = Parser.getTok(); 5193 if (Tok.isNot(AsmToken::Identifier)) 5194 return true; 5195 StringRef ShiftName = Tok.getString(); 5196 if (ShiftName == "lsl" || ShiftName == "LSL" || 5197 ShiftName == "asl" || ShiftName == "ASL") 5198 St = ARM_AM::lsl; 5199 else if (ShiftName == "lsr" || ShiftName == "LSR") 5200 St = ARM_AM::lsr; 5201 else if (ShiftName == "asr" || ShiftName == "ASR") 5202 St = ARM_AM::asr; 5203 else if (ShiftName == "ror" || ShiftName == "ROR") 5204 St = ARM_AM::ror; 5205 else if (ShiftName == "rrx" || ShiftName == "RRX") 5206 St = ARM_AM::rrx; 5207 else 5208 return Error(Loc, "illegal shift operator"); 5209 Parser.Lex(); // Eat shift type token. 5210 5211 // rrx stands alone. 5212 Amount = 0; 5213 if (St != ARM_AM::rrx) { 5214 Loc = Parser.getTok().getLoc(); 5215 // A '#' and a shift amount. 5216 const AsmToken &HashTok = Parser.getTok(); 5217 if (HashTok.isNot(AsmToken::Hash) && 5218 HashTok.isNot(AsmToken::Dollar)) 5219 return Error(HashTok.getLoc(), "'#' expected"); 5220 Parser.Lex(); // Eat hash token. 5221 5222 const MCExpr *Expr; 5223 if (getParser().parseExpression(Expr)) 5224 return true; 5225 // Range check the immediate. 5226 // lsl, ror: 0 <= imm <= 31 5227 // lsr, asr: 0 <= imm <= 32 5228 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr); 5229 if (!CE) 5230 return Error(Loc, "shift amount must be an immediate"); 5231 int64_t Imm = CE->getValue(); 5232 if (Imm < 0 || 5233 ((St == ARM_AM::lsl || St == ARM_AM::ror) && Imm > 31) || 5234 ((St == ARM_AM::lsr || St == ARM_AM::asr) && Imm > 32)) 5235 return Error(Loc, "immediate shift value out of range"); 5236 // If <ShiftTy> #0, turn it into a no_shift. 5237 if (Imm == 0) 5238 St = ARM_AM::lsl; 5239 // For consistency, treat lsr #32 and asr #32 as having immediate value 0. 5240 if (Imm == 32) 5241 Imm = 0; 5242 Amount = Imm; 5243 } 5244 5245 return false; 5246 } 5247 5248 /// parseFPImm - A floating point immediate expression operand. 5249 ARMAsmParser::OperandMatchResultTy 5250 ARMAsmParser::parseFPImm(OperandVector &Operands) { 5251 MCAsmParser &Parser = getParser(); 5252 // Anything that can accept a floating point constant as an operand 5253 // needs to go through here, as the regular parseExpression is 5254 // integer only. 5255 // 5256 // This routine still creates a generic Immediate operand, containing 5257 // a bitcast of the 64-bit floating point value. The various operands 5258 // that accept floats can check whether the value is valid for them 5259 // via the standard is*() predicates. 5260 5261 SMLoc S = Parser.getTok().getLoc(); 5262 5263 if (Parser.getTok().isNot(AsmToken::Hash) && 5264 Parser.getTok().isNot(AsmToken::Dollar)) 5265 return MatchOperand_NoMatch; 5266 5267 // Disambiguate the VMOV forms that can accept an FP immediate. 5268 // vmov.f32 <sreg>, #imm 5269 // vmov.f64 <dreg>, #imm 5270 // vmov.f32 <dreg>, #imm @ vector f32x2 5271 // vmov.f32 <qreg>, #imm @ vector f32x4 5272 // 5273 // There are also the NEON VMOV instructions which expect an 5274 // integer constant. Make sure we don't try to parse an FPImm 5275 // for these: 5276 // vmov.i{8|16|32|64} <dreg|qreg>, #imm 5277 ARMOperand &TyOp = static_cast<ARMOperand &>(*Operands[2]); 5278 bool isVmovf = TyOp.isToken() && 5279 (TyOp.getToken() == ".f32" || TyOp.getToken() == ".f64" || 5280 TyOp.getToken() == ".f16"); 5281 ARMOperand &Mnemonic = static_cast<ARMOperand &>(*Operands[0]); 5282 bool isFconst = Mnemonic.isToken() && (Mnemonic.getToken() == "fconstd" || 5283 Mnemonic.getToken() == "fconsts"); 5284 if (!(isVmovf || isFconst)) 5285 return MatchOperand_NoMatch; 5286 5287 Parser.Lex(); // Eat '#' or '$'. 5288 5289 // Handle negation, as that still comes through as a separate token. 5290 bool isNegative = false; 5291 if (Parser.getTok().is(AsmToken::Minus)) { 5292 isNegative = true; 5293 Parser.Lex(); 5294 } 5295 const AsmToken &Tok = Parser.getTok(); 5296 SMLoc Loc = Tok.getLoc(); 5297 if (Tok.is(AsmToken::Real) && isVmovf) { 5298 APFloat RealVal(APFloat::IEEEsingle, Tok.getString()); 5299 uint64_t IntVal = RealVal.bitcastToAPInt().getZExtValue(); 5300 // If we had a '-' in front, toggle the sign bit. 5301 IntVal ^= (uint64_t)isNegative << 31; 5302 Parser.Lex(); // Eat the token. 5303 Operands.push_back(ARMOperand::CreateImm( 5304 MCConstantExpr::create(IntVal, getContext()), 5305 S, Parser.getTok().getLoc())); 5306 return MatchOperand_Success; 5307 } 5308 // Also handle plain integers. Instructions which allow floating point 5309 // immediates also allow a raw encoded 8-bit value. 5310 if (Tok.is(AsmToken::Integer) && isFconst) { 5311 int64_t Val = Tok.getIntVal(); 5312 Parser.Lex(); // Eat the token. 5313 if (Val > 255 || Val < 0) { 5314 Error(Loc, "encoded floating point value out of range"); 5315 return MatchOperand_ParseFail; 5316 } 5317 float RealVal = ARM_AM::getFPImmFloat(Val); 5318 Val = APFloat(RealVal).bitcastToAPInt().getZExtValue(); 5319 5320 Operands.push_back(ARMOperand::CreateImm( 5321 MCConstantExpr::create(Val, getContext()), S, 5322 Parser.getTok().getLoc())); 5323 return MatchOperand_Success; 5324 } 5325 5326 Error(Loc, "invalid floating point immediate"); 5327 return MatchOperand_ParseFail; 5328 } 5329 5330 /// Parse a arm instruction operand. For now this parses the operand regardless 5331 /// of the mnemonic. 5332 bool ARMAsmParser::parseOperand(OperandVector &Operands, StringRef Mnemonic) { 5333 MCAsmParser &Parser = getParser(); 5334 SMLoc S, E; 5335 5336 // Check if the current operand has a custom associated parser, if so, try to 5337 // custom parse the operand, or fallback to the general approach. 5338 OperandMatchResultTy ResTy = MatchOperandParserImpl(Operands, Mnemonic); 5339 if (ResTy == MatchOperand_Success) 5340 return false; 5341 // If there wasn't a custom match, try the generic matcher below. Otherwise, 5342 // there was a match, but an error occurred, in which case, just return that 5343 // the operand parsing failed. 5344 if (ResTy == MatchOperand_ParseFail) 5345 return true; 5346 5347 switch (getLexer().getKind()) { 5348 default: 5349 Error(Parser.getTok().getLoc(), "unexpected token in operand"); 5350 return true; 5351 case AsmToken::Identifier: { 5352 // If we've seen a branch mnemonic, the next operand must be a label. This 5353 // is true even if the label is a register name. So "br r1" means branch to 5354 // label "r1". 5355 bool ExpectLabel = Mnemonic == "b" || Mnemonic == "bl"; 5356 if (!ExpectLabel) { 5357 if (!tryParseRegisterWithWriteBack(Operands)) 5358 return false; 5359 int Res = tryParseShiftRegister(Operands); 5360 if (Res == 0) // success 5361 return false; 5362 else if (Res == -1) // irrecoverable error 5363 return true; 5364 // If this is VMRS, check for the apsr_nzcv operand. 5365 if (Mnemonic == "vmrs" && 5366 Parser.getTok().getString().equals_lower("apsr_nzcv")) { 5367 S = Parser.getTok().getLoc(); 5368 Parser.Lex(); 5369 Operands.push_back(ARMOperand::CreateToken("APSR_nzcv", S)); 5370 return false; 5371 } 5372 } 5373 5374 // Fall though for the Identifier case that is not a register or a 5375 // special name. 5376 } 5377 case AsmToken::LParen: // parenthesized expressions like (_strcmp-4) 5378 case AsmToken::Integer: // things like 1f and 2b as a branch targets 5379 case AsmToken::String: // quoted label names. 5380 case AsmToken::Dot: { // . as a branch target 5381 // This was not a register so parse other operands that start with an 5382 // identifier (like labels) as expressions and create them as immediates. 5383 const MCExpr *IdVal; 5384 S = Parser.getTok().getLoc(); 5385 if (getParser().parseExpression(IdVal)) 5386 return true; 5387 E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1); 5388 Operands.push_back(ARMOperand::CreateImm(IdVal, S, E)); 5389 return false; 5390 } 5391 case AsmToken::LBrac: 5392 return parseMemory(Operands); 5393 case AsmToken::LCurly: 5394 return parseRegisterList(Operands); 5395 case AsmToken::Dollar: 5396 case AsmToken::Hash: { 5397 // #42 -> immediate. 5398 S = Parser.getTok().getLoc(); 5399 Parser.Lex(); 5400 5401 if (Parser.getTok().isNot(AsmToken::Colon)) { 5402 bool isNegative = Parser.getTok().is(AsmToken::Minus); 5403 const MCExpr *ImmVal; 5404 if (getParser().parseExpression(ImmVal)) 5405 return true; 5406 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ImmVal); 5407 if (CE) { 5408 int32_t Val = CE->getValue(); 5409 if (isNegative && Val == 0) 5410 ImmVal = MCConstantExpr::create(INT32_MIN, getContext()); 5411 } 5412 E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1); 5413 Operands.push_back(ARMOperand::CreateImm(ImmVal, S, E)); 5414 5415 // There can be a trailing '!' on operands that we want as a separate 5416 // '!' Token operand. Handle that here. For example, the compatibility 5417 // alias for 'srsdb sp!, #imm' is 'srsdb #imm!'. 5418 if (Parser.getTok().is(AsmToken::Exclaim)) { 5419 Operands.push_back(ARMOperand::CreateToken(Parser.getTok().getString(), 5420 Parser.getTok().getLoc())); 5421 Parser.Lex(); // Eat exclaim token 5422 } 5423 return false; 5424 } 5425 // w/ a ':' after the '#', it's just like a plain ':'. 5426 LLVM_FALLTHROUGH; 5427 } 5428 case AsmToken::Colon: { 5429 S = Parser.getTok().getLoc(); 5430 // ":lower16:" and ":upper16:" expression prefixes 5431 // FIXME: Check it's an expression prefix, 5432 // e.g. (FOO - :lower16:BAR) isn't legal. 5433 ARMMCExpr::VariantKind RefKind; 5434 if (parsePrefix(RefKind)) 5435 return true; 5436 5437 const MCExpr *SubExprVal; 5438 if (getParser().parseExpression(SubExprVal)) 5439 return true; 5440 5441 const MCExpr *ExprVal = ARMMCExpr::create(RefKind, SubExprVal, 5442 getContext()); 5443 E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1); 5444 Operands.push_back(ARMOperand::CreateImm(ExprVal, S, E)); 5445 return false; 5446 } 5447 case AsmToken::Equal: { 5448 S = Parser.getTok().getLoc(); 5449 if (Mnemonic != "ldr") // only parse for ldr pseudo (e.g. ldr r0, =val) 5450 return Error(S, "unexpected token in operand"); 5451 Parser.Lex(); // Eat '=' 5452 const MCExpr *SubExprVal; 5453 if (getParser().parseExpression(SubExprVal)) 5454 return true; 5455 E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1); 5456 Operands.push_back(ARMOperand::CreateConstantPoolImm(SubExprVal, S, E)); 5457 return false; 5458 } 5459 } 5460 } 5461 5462 // parsePrefix - Parse ARM 16-bit relocations expression prefix, i.e. 5463 // :lower16: and :upper16:. 5464 bool ARMAsmParser::parsePrefix(ARMMCExpr::VariantKind &RefKind) { 5465 MCAsmParser &Parser = getParser(); 5466 RefKind = ARMMCExpr::VK_ARM_None; 5467 5468 // consume an optional '#' (GNU compatibility) 5469 if (getLexer().is(AsmToken::Hash)) 5470 Parser.Lex(); 5471 5472 // :lower16: and :upper16: modifiers 5473 assert(getLexer().is(AsmToken::Colon) && "expected a :"); 5474 Parser.Lex(); // Eat ':' 5475 5476 if (getLexer().isNot(AsmToken::Identifier)) { 5477 Error(Parser.getTok().getLoc(), "expected prefix identifier in operand"); 5478 return true; 5479 } 5480 5481 enum { 5482 COFF = (1 << MCObjectFileInfo::IsCOFF), 5483 ELF = (1 << MCObjectFileInfo::IsELF), 5484 MACHO = (1 << MCObjectFileInfo::IsMachO) 5485 }; 5486 static const struct PrefixEntry { 5487 const char *Spelling; 5488 ARMMCExpr::VariantKind VariantKind; 5489 uint8_t SupportedFormats; 5490 } PrefixEntries[] = { 5491 { "lower16", ARMMCExpr::VK_ARM_LO16, COFF | ELF | MACHO }, 5492 { "upper16", ARMMCExpr::VK_ARM_HI16, COFF | ELF | MACHO }, 5493 }; 5494 5495 StringRef IDVal = Parser.getTok().getIdentifier(); 5496 5497 const auto &Prefix = 5498 std::find_if(std::begin(PrefixEntries), std::end(PrefixEntries), 5499 [&IDVal](const PrefixEntry &PE) { 5500 return PE.Spelling == IDVal; 5501 }); 5502 if (Prefix == std::end(PrefixEntries)) { 5503 Error(Parser.getTok().getLoc(), "unexpected prefix in operand"); 5504 return true; 5505 } 5506 5507 uint8_t CurrentFormat; 5508 switch (getContext().getObjectFileInfo()->getObjectFileType()) { 5509 case MCObjectFileInfo::IsMachO: 5510 CurrentFormat = MACHO; 5511 break; 5512 case MCObjectFileInfo::IsELF: 5513 CurrentFormat = ELF; 5514 break; 5515 case MCObjectFileInfo::IsCOFF: 5516 CurrentFormat = COFF; 5517 break; 5518 } 5519 5520 if (~Prefix->SupportedFormats & CurrentFormat) { 5521 Error(Parser.getTok().getLoc(), 5522 "cannot represent relocation in the current file format"); 5523 return true; 5524 } 5525 5526 RefKind = Prefix->VariantKind; 5527 Parser.Lex(); 5528 5529 if (getLexer().isNot(AsmToken::Colon)) { 5530 Error(Parser.getTok().getLoc(), "unexpected token after prefix"); 5531 return true; 5532 } 5533 Parser.Lex(); // Eat the last ':' 5534 5535 return false; 5536 } 5537 5538 /// \brief Given a mnemonic, split out possible predication code and carry 5539 /// setting letters to form a canonical mnemonic and flags. 5540 // 5541 // FIXME: Would be nice to autogen this. 5542 // FIXME: This is a bit of a maze of special cases. 5543 StringRef ARMAsmParser::splitMnemonic(StringRef Mnemonic, 5544 unsigned &PredicationCode, 5545 bool &CarrySetting, 5546 unsigned &ProcessorIMod, 5547 StringRef &ITMask) { 5548 PredicationCode = ARMCC::AL; 5549 CarrySetting = false; 5550 ProcessorIMod = 0; 5551 5552 // Ignore some mnemonics we know aren't predicated forms. 5553 // 5554 // FIXME: Would be nice to autogen this. 5555 if ((Mnemonic == "movs" && isThumb()) || 5556 Mnemonic == "teq" || Mnemonic == "vceq" || Mnemonic == "svc" || 5557 Mnemonic == "mls" || Mnemonic == "smmls" || Mnemonic == "vcls" || 5558 Mnemonic == "vmls" || Mnemonic == "vnmls" || Mnemonic == "vacge" || 5559 Mnemonic == "vcge" || Mnemonic == "vclt" || Mnemonic == "vacgt" || 5560 Mnemonic == "vaclt" || Mnemonic == "vacle" || Mnemonic == "hlt" || 5561 Mnemonic == "vcgt" || Mnemonic == "vcle" || Mnemonic == "smlal" || 5562 Mnemonic == "umaal" || Mnemonic == "umlal" || Mnemonic == "vabal" || 5563 Mnemonic == "vmlal" || Mnemonic == "vpadal" || Mnemonic == "vqdmlal" || 5564 Mnemonic == "fmuls" || Mnemonic == "vmaxnm" || Mnemonic == "vminnm" || 5565 Mnemonic == "vcvta" || Mnemonic == "vcvtn" || Mnemonic == "vcvtp" || 5566 Mnemonic == "vcvtm" || Mnemonic == "vrinta" || Mnemonic == "vrintn" || 5567 Mnemonic == "vrintp" || Mnemonic == "vrintm" || Mnemonic == "hvc" || 5568 Mnemonic.startswith("vsel") || Mnemonic == "vins" || Mnemonic == "vmovx" || 5569 Mnemonic == "bxns" || Mnemonic == "blxns") 5570 return Mnemonic; 5571 5572 // First, split out any predication code. Ignore mnemonics we know aren't 5573 // predicated but do have a carry-set and so weren't caught above. 5574 if (Mnemonic != "adcs" && Mnemonic != "bics" && Mnemonic != "movs" && 5575 Mnemonic != "muls" && Mnemonic != "smlals" && Mnemonic != "smulls" && 5576 Mnemonic != "umlals" && Mnemonic != "umulls" && Mnemonic != "lsls" && 5577 Mnemonic != "sbcs" && Mnemonic != "rscs") { 5578 unsigned CC = StringSwitch<unsigned>(Mnemonic.substr(Mnemonic.size()-2)) 5579 .Case("eq", ARMCC::EQ) 5580 .Case("ne", ARMCC::NE) 5581 .Case("hs", ARMCC::HS) 5582 .Case("cs", ARMCC::HS) 5583 .Case("lo", ARMCC::LO) 5584 .Case("cc", ARMCC::LO) 5585 .Case("mi", ARMCC::MI) 5586 .Case("pl", ARMCC::PL) 5587 .Case("vs", ARMCC::VS) 5588 .Case("vc", ARMCC::VC) 5589 .Case("hi", ARMCC::HI) 5590 .Case("ls", ARMCC::LS) 5591 .Case("ge", ARMCC::GE) 5592 .Case("lt", ARMCC::LT) 5593 .Case("gt", ARMCC::GT) 5594 .Case("le", ARMCC::LE) 5595 .Case("al", ARMCC::AL) 5596 .Default(~0U); 5597 if (CC != ~0U) { 5598 Mnemonic = Mnemonic.slice(0, Mnemonic.size() - 2); 5599 PredicationCode = CC; 5600 } 5601 } 5602 5603 // Next, determine if we have a carry setting bit. We explicitly ignore all 5604 // the instructions we know end in 's'. 5605 if (Mnemonic.endswith("s") && 5606 !(Mnemonic == "cps" || Mnemonic == "mls" || 5607 Mnemonic == "mrs" || Mnemonic == "smmls" || Mnemonic == "vabs" || 5608 Mnemonic == "vcls" || Mnemonic == "vmls" || Mnemonic == "vmrs" || 5609 Mnemonic == "vnmls" || Mnemonic == "vqabs" || Mnemonic == "vrecps" || 5610 Mnemonic == "vrsqrts" || Mnemonic == "srs" || Mnemonic == "flds" || 5611 Mnemonic == "fmrs" || Mnemonic == "fsqrts" || Mnemonic == "fsubs" || 5612 Mnemonic == "fsts" || Mnemonic == "fcpys" || Mnemonic == "fdivs" || 5613 Mnemonic == "fmuls" || Mnemonic == "fcmps" || Mnemonic == "fcmpzs" || 5614 Mnemonic == "vfms" || Mnemonic == "vfnms" || Mnemonic == "fconsts" || 5615 Mnemonic == "bxns" || Mnemonic == "blxns" || 5616 (Mnemonic == "movs" && isThumb()))) { 5617 Mnemonic = Mnemonic.slice(0, Mnemonic.size() - 1); 5618 CarrySetting = true; 5619 } 5620 5621 // The "cps" instruction can have a interrupt mode operand which is glued into 5622 // the mnemonic. Check if this is the case, split it and parse the imod op 5623 if (Mnemonic.startswith("cps")) { 5624 // Split out any imod code. 5625 unsigned IMod = 5626 StringSwitch<unsigned>(Mnemonic.substr(Mnemonic.size()-2, 2)) 5627 .Case("ie", ARM_PROC::IE) 5628 .Case("id", ARM_PROC::ID) 5629 .Default(~0U); 5630 if (IMod != ~0U) { 5631 Mnemonic = Mnemonic.slice(0, Mnemonic.size()-2); 5632 ProcessorIMod = IMod; 5633 } 5634 } 5635 5636 // The "it" instruction has the condition mask on the end of the mnemonic. 5637 if (Mnemonic.startswith("it")) { 5638 ITMask = Mnemonic.slice(2, Mnemonic.size()); 5639 Mnemonic = Mnemonic.slice(0, 2); 5640 } 5641 5642 return Mnemonic; 5643 } 5644 5645 /// \brief Given a canonical mnemonic, determine if the instruction ever allows 5646 /// inclusion of carry set or predication code operands. 5647 // 5648 // FIXME: It would be nice to autogen this. 5649 void ARMAsmParser::getMnemonicAcceptInfo(StringRef Mnemonic, StringRef FullInst, 5650 bool &CanAcceptCarrySet, 5651 bool &CanAcceptPredicationCode) { 5652 CanAcceptCarrySet = 5653 Mnemonic == "and" || Mnemonic == "lsl" || Mnemonic == "lsr" || 5654 Mnemonic == "rrx" || Mnemonic == "ror" || Mnemonic == "sub" || 5655 Mnemonic == "add" || Mnemonic == "adc" || Mnemonic == "mul" || 5656 Mnemonic == "bic" || Mnemonic == "asr" || Mnemonic == "orr" || 5657 Mnemonic == "mvn" || Mnemonic == "rsb" || Mnemonic == "rsc" || 5658 Mnemonic == "orn" || Mnemonic == "sbc" || Mnemonic == "eor" || 5659 Mnemonic == "neg" || Mnemonic == "vfm" || Mnemonic == "vfnm" || 5660 (!isThumb() && 5661 (Mnemonic == "smull" || Mnemonic == "mov" || Mnemonic == "mla" || 5662 Mnemonic == "smlal" || Mnemonic == "umlal" || Mnemonic == "umull")); 5663 5664 if (Mnemonic == "bkpt" || Mnemonic == "cbnz" || Mnemonic == "setend" || 5665 Mnemonic == "cps" || Mnemonic == "it" || Mnemonic == "cbz" || 5666 Mnemonic == "trap" || Mnemonic == "hlt" || Mnemonic == "udf" || 5667 Mnemonic.startswith("crc32") || Mnemonic.startswith("cps") || 5668 Mnemonic.startswith("vsel") || Mnemonic == "vmaxnm" || 5669 Mnemonic == "vminnm" || Mnemonic == "vcvta" || Mnemonic == "vcvtn" || 5670 Mnemonic == "vcvtp" || Mnemonic == "vcvtm" || Mnemonic == "vrinta" || 5671 Mnemonic == "vrintn" || Mnemonic == "vrintp" || Mnemonic == "vrintm" || 5672 Mnemonic.startswith("aes") || Mnemonic == "hvc" || Mnemonic == "setpan" || 5673 Mnemonic.startswith("sha1") || Mnemonic.startswith("sha256") || 5674 (FullInst.startswith("vmull") && FullInst.endswith(".p64")) || 5675 Mnemonic == "vmovx" || Mnemonic == "vins") { 5676 // These mnemonics are never predicable 5677 CanAcceptPredicationCode = false; 5678 } else if (!isThumb()) { 5679 // Some instructions are only predicable in Thumb mode 5680 CanAcceptPredicationCode = 5681 Mnemonic != "cdp2" && Mnemonic != "clrex" && Mnemonic != "mcr2" && 5682 Mnemonic != "mcrr2" && Mnemonic != "mrc2" && Mnemonic != "mrrc2" && 5683 Mnemonic != "dmb" && Mnemonic != "dsb" && Mnemonic != "isb" && 5684 Mnemonic != "pld" && Mnemonic != "pli" && Mnemonic != "pldw" && 5685 Mnemonic != "ldc2" && Mnemonic != "ldc2l" && Mnemonic != "stc2" && 5686 Mnemonic != "stc2l" && !Mnemonic.startswith("rfe") && 5687 !Mnemonic.startswith("srs"); 5688 } else if (isThumbOne()) { 5689 if (hasV6MOps()) 5690 CanAcceptPredicationCode = Mnemonic != "movs"; 5691 else 5692 CanAcceptPredicationCode = Mnemonic != "nop" && Mnemonic != "movs"; 5693 } else 5694 CanAcceptPredicationCode = true; 5695 } 5696 5697 // \brief Some Thumb instructions have two operand forms that are not 5698 // available as three operand, convert to two operand form if possible. 5699 // 5700 // FIXME: We would really like to be able to tablegen'erate this. 5701 void ARMAsmParser::tryConvertingToTwoOperandForm(StringRef Mnemonic, 5702 bool CarrySetting, 5703 OperandVector &Operands) { 5704 if (Operands.size() != 6) 5705 return; 5706 5707 const auto &Op3 = static_cast<ARMOperand &>(*Operands[3]); 5708 auto &Op4 = static_cast<ARMOperand &>(*Operands[4]); 5709 if (!Op3.isReg() || !Op4.isReg()) 5710 return; 5711 5712 auto Op3Reg = Op3.getReg(); 5713 auto Op4Reg = Op4.getReg(); 5714 5715 // For most Thumb2 cases we just generate the 3 operand form and reduce 5716 // it in processInstruction(), but the 3 operand form of ADD (t2ADDrr) 5717 // won't accept SP or PC so we do the transformation here taking care 5718 // with immediate range in the 'add sp, sp #imm' case. 5719 auto &Op5 = static_cast<ARMOperand &>(*Operands[5]); 5720 if (isThumbTwo()) { 5721 if (Mnemonic != "add") 5722 return; 5723 bool TryTransform = Op3Reg == ARM::PC || Op4Reg == ARM::PC || 5724 (Op5.isReg() && Op5.getReg() == ARM::PC); 5725 if (!TryTransform) { 5726 TryTransform = (Op3Reg == ARM::SP || Op4Reg == ARM::SP || 5727 (Op5.isReg() && Op5.getReg() == ARM::SP)) && 5728 !(Op3Reg == ARM::SP && Op4Reg == ARM::SP && 5729 Op5.isImm() && !Op5.isImm0_508s4()); 5730 } 5731 if (!TryTransform) 5732 return; 5733 } else if (!isThumbOne()) 5734 return; 5735 5736 if (!(Mnemonic == "add" || Mnemonic == "sub" || Mnemonic == "and" || 5737 Mnemonic == "eor" || Mnemonic == "lsl" || Mnemonic == "lsr" || 5738 Mnemonic == "asr" || Mnemonic == "adc" || Mnemonic == "sbc" || 5739 Mnemonic == "ror" || Mnemonic == "orr" || Mnemonic == "bic")) 5740 return; 5741 5742 // If first 2 operands of a 3 operand instruction are the same 5743 // then transform to 2 operand version of the same instruction 5744 // e.g. 'adds r0, r0, #1' transforms to 'adds r0, #1' 5745 bool Transform = Op3Reg == Op4Reg; 5746 5747 // For communtative operations, we might be able to transform if we swap 5748 // Op4 and Op5. The 'ADD Rdm, SP, Rdm' form is already handled specially 5749 // as tADDrsp. 5750 const ARMOperand *LastOp = &Op5; 5751 bool Swap = false; 5752 if (!Transform && Op5.isReg() && Op3Reg == Op5.getReg() && 5753 ((Mnemonic == "add" && Op4Reg != ARM::SP) || 5754 Mnemonic == "and" || Mnemonic == "eor" || 5755 Mnemonic == "adc" || Mnemonic == "orr")) { 5756 Swap = true; 5757 LastOp = &Op4; 5758 Transform = true; 5759 } 5760 5761 // If both registers are the same then remove one of them from 5762 // the operand list, with certain exceptions. 5763 if (Transform) { 5764 // Don't transform 'adds Rd, Rd, Rm' or 'sub{s} Rd, Rd, Rm' because the 5765 // 2 operand forms don't exist. 5766 if (((Mnemonic == "add" && CarrySetting) || Mnemonic == "sub") && 5767 LastOp->isReg()) 5768 Transform = false; 5769 5770 // Don't transform 'add/sub{s} Rd, Rd, #imm' if the immediate fits into 5771 // 3-bits because the ARMARM says not to. 5772 if ((Mnemonic == "add" || Mnemonic == "sub") && LastOp->isImm0_7()) 5773 Transform = false; 5774 } 5775 5776 if (Transform) { 5777 if (Swap) 5778 std::swap(Op4, Op5); 5779 Operands.erase(Operands.begin() + 3); 5780 } 5781 } 5782 5783 bool ARMAsmParser::shouldOmitCCOutOperand(StringRef Mnemonic, 5784 OperandVector &Operands) { 5785 // FIXME: This is all horribly hacky. We really need a better way to deal 5786 // with optional operands like this in the matcher table. 5787 5788 // The 'mov' mnemonic is special. One variant has a cc_out operand, while 5789 // another does not. Specifically, the MOVW instruction does not. So we 5790 // special case it here and remove the defaulted (non-setting) cc_out 5791 // operand if that's the instruction we're trying to match. 5792 // 5793 // We do this as post-processing of the explicit operands rather than just 5794 // conditionally adding the cc_out in the first place because we need 5795 // to check the type of the parsed immediate operand. 5796 if (Mnemonic == "mov" && Operands.size() > 4 && !isThumb() && 5797 !static_cast<ARMOperand &>(*Operands[4]).isModImm() && 5798 static_cast<ARMOperand &>(*Operands[4]).isImm0_65535Expr() && 5799 static_cast<ARMOperand &>(*Operands[1]).getReg() == 0) 5800 return true; 5801 5802 // Register-register 'add' for thumb does not have a cc_out operand 5803 // when there are only two register operands. 5804 if (isThumb() && Mnemonic == "add" && Operands.size() == 5 && 5805 static_cast<ARMOperand &>(*Operands[3]).isReg() && 5806 static_cast<ARMOperand &>(*Operands[4]).isReg() && 5807 static_cast<ARMOperand &>(*Operands[1]).getReg() == 0) 5808 return true; 5809 // Register-register 'add' for thumb does not have a cc_out operand 5810 // when it's an ADD Rdm, SP, {Rdm|#imm0_255} instruction. We do 5811 // have to check the immediate range here since Thumb2 has a variant 5812 // that can handle a different range and has a cc_out operand. 5813 if (((isThumb() && Mnemonic == "add") || 5814 (isThumbTwo() && Mnemonic == "sub")) && 5815 Operands.size() == 6 && static_cast<ARMOperand &>(*Operands[3]).isReg() && 5816 static_cast<ARMOperand &>(*Operands[4]).isReg() && 5817 static_cast<ARMOperand &>(*Operands[4]).getReg() == ARM::SP && 5818 static_cast<ARMOperand &>(*Operands[1]).getReg() == 0 && 5819 ((Mnemonic == "add" && static_cast<ARMOperand &>(*Operands[5]).isReg()) || 5820 static_cast<ARMOperand &>(*Operands[5]).isImm0_1020s4())) 5821 return true; 5822 // For Thumb2, add/sub immediate does not have a cc_out operand for the 5823 // imm0_4095 variant. That's the least-preferred variant when 5824 // selecting via the generic "add" mnemonic, so to know that we 5825 // should remove the cc_out operand, we have to explicitly check that 5826 // it's not one of the other variants. Ugh. 5827 if (isThumbTwo() && (Mnemonic == "add" || Mnemonic == "sub") && 5828 Operands.size() == 6 && static_cast<ARMOperand &>(*Operands[3]).isReg() && 5829 static_cast<ARMOperand &>(*Operands[4]).isReg() && 5830 static_cast<ARMOperand &>(*Operands[5]).isImm()) { 5831 // Nest conditions rather than one big 'if' statement for readability. 5832 // 5833 // If both registers are low, we're in an IT block, and the immediate is 5834 // in range, we should use encoding T1 instead, which has a cc_out. 5835 if (inITBlock() && 5836 isARMLowRegister(static_cast<ARMOperand &>(*Operands[3]).getReg()) && 5837 isARMLowRegister(static_cast<ARMOperand &>(*Operands[4]).getReg()) && 5838 static_cast<ARMOperand &>(*Operands[5]).isImm0_7()) 5839 return false; 5840 // Check against T3. If the second register is the PC, this is an 5841 // alternate form of ADR, which uses encoding T4, so check for that too. 5842 if (static_cast<ARMOperand &>(*Operands[4]).getReg() != ARM::PC && 5843 static_cast<ARMOperand &>(*Operands[5]).isT2SOImm()) 5844 return false; 5845 5846 // Otherwise, we use encoding T4, which does not have a cc_out 5847 // operand. 5848 return true; 5849 } 5850 5851 // The thumb2 multiply instruction doesn't have a CCOut register, so 5852 // if we have a "mul" mnemonic in Thumb mode, check if we'll be able to 5853 // use the 16-bit encoding or not. 5854 if (isThumbTwo() && Mnemonic == "mul" && Operands.size() == 6 && 5855 static_cast<ARMOperand &>(*Operands[1]).getReg() == 0 && 5856 static_cast<ARMOperand &>(*Operands[3]).isReg() && 5857 static_cast<ARMOperand &>(*Operands[4]).isReg() && 5858 static_cast<ARMOperand &>(*Operands[5]).isReg() && 5859 // If the registers aren't low regs, the destination reg isn't the 5860 // same as one of the source regs, or the cc_out operand is zero 5861 // outside of an IT block, we have to use the 32-bit encoding, so 5862 // remove the cc_out operand. 5863 (!isARMLowRegister(static_cast<ARMOperand &>(*Operands[3]).getReg()) || 5864 !isARMLowRegister(static_cast<ARMOperand &>(*Operands[4]).getReg()) || 5865 !isARMLowRegister(static_cast<ARMOperand &>(*Operands[5]).getReg()) || 5866 !inITBlock() || (static_cast<ARMOperand &>(*Operands[3]).getReg() != 5867 static_cast<ARMOperand &>(*Operands[5]).getReg() && 5868 static_cast<ARMOperand &>(*Operands[3]).getReg() != 5869 static_cast<ARMOperand &>(*Operands[4]).getReg()))) 5870 return true; 5871 5872 // Also check the 'mul' syntax variant that doesn't specify an explicit 5873 // destination register. 5874 if (isThumbTwo() && Mnemonic == "mul" && Operands.size() == 5 && 5875 static_cast<ARMOperand &>(*Operands[1]).getReg() == 0 && 5876 static_cast<ARMOperand &>(*Operands[3]).isReg() && 5877 static_cast<ARMOperand &>(*Operands[4]).isReg() && 5878 // If the registers aren't low regs or the cc_out operand is zero 5879 // outside of an IT block, we have to use the 32-bit encoding, so 5880 // remove the cc_out operand. 5881 (!isARMLowRegister(static_cast<ARMOperand &>(*Operands[3]).getReg()) || 5882 !isARMLowRegister(static_cast<ARMOperand &>(*Operands[4]).getReg()) || 5883 !inITBlock())) 5884 return true; 5885 5886 5887 5888 // Register-register 'add/sub' for thumb does not have a cc_out operand 5889 // when it's an ADD/SUB SP, #imm. Be lenient on count since there's also 5890 // the "add/sub SP, SP, #imm" version. If the follow-up operands aren't 5891 // right, this will result in better diagnostics (which operand is off) 5892 // anyway. 5893 if (isThumb() && (Mnemonic == "add" || Mnemonic == "sub") && 5894 (Operands.size() == 5 || Operands.size() == 6) && 5895 static_cast<ARMOperand &>(*Operands[3]).isReg() && 5896 static_cast<ARMOperand &>(*Operands[3]).getReg() == ARM::SP && 5897 static_cast<ARMOperand &>(*Operands[1]).getReg() == 0 && 5898 (static_cast<ARMOperand &>(*Operands[4]).isImm() || 5899 (Operands.size() == 6 && 5900 static_cast<ARMOperand &>(*Operands[5]).isImm()))) 5901 return true; 5902 5903 return false; 5904 } 5905 5906 bool ARMAsmParser::shouldOmitPredicateOperand(StringRef Mnemonic, 5907 OperandVector &Operands) { 5908 // VRINT{Z, R, X} have a predicate operand in VFP, but not in NEON 5909 unsigned RegIdx = 3; 5910 if ((Mnemonic == "vrintz" || Mnemonic == "vrintx" || Mnemonic == "vrintr") && 5911 (static_cast<ARMOperand &>(*Operands[2]).getToken() == ".f32" || 5912 static_cast<ARMOperand &>(*Operands[2]).getToken() == ".f16")) { 5913 if (static_cast<ARMOperand &>(*Operands[3]).isToken() && 5914 (static_cast<ARMOperand &>(*Operands[3]).getToken() == ".f32" || 5915 static_cast<ARMOperand &>(*Operands[3]).getToken() == ".f16")) 5916 RegIdx = 4; 5917 5918 if (static_cast<ARMOperand &>(*Operands[RegIdx]).isReg() && 5919 (ARMMCRegisterClasses[ARM::DPRRegClassID].contains( 5920 static_cast<ARMOperand &>(*Operands[RegIdx]).getReg()) || 5921 ARMMCRegisterClasses[ARM::QPRRegClassID].contains( 5922 static_cast<ARMOperand &>(*Operands[RegIdx]).getReg()))) 5923 return true; 5924 } 5925 return false; 5926 } 5927 5928 static bool isDataTypeToken(StringRef Tok) { 5929 return Tok == ".8" || Tok == ".16" || Tok == ".32" || Tok == ".64" || 5930 Tok == ".i8" || Tok == ".i16" || Tok == ".i32" || Tok == ".i64" || 5931 Tok == ".u8" || Tok == ".u16" || Tok == ".u32" || Tok == ".u64" || 5932 Tok == ".s8" || Tok == ".s16" || Tok == ".s32" || Tok == ".s64" || 5933 Tok == ".p8" || Tok == ".p16" || Tok == ".f32" || Tok == ".f64" || 5934 Tok == ".f" || Tok == ".d"; 5935 } 5936 5937 // FIXME: This bit should probably be handled via an explicit match class 5938 // in the .td files that matches the suffix instead of having it be 5939 // a literal string token the way it is now. 5940 static bool doesIgnoreDataTypeSuffix(StringRef Mnemonic, StringRef DT) { 5941 return Mnemonic.startswith("vldm") || Mnemonic.startswith("vstm"); 5942 } 5943 static void applyMnemonicAliases(StringRef &Mnemonic, uint64_t Features, 5944 unsigned VariantID); 5945 5946 static bool RequiresVFPRegListValidation(StringRef Inst, 5947 bool &AcceptSinglePrecisionOnly, 5948 bool &AcceptDoublePrecisionOnly) { 5949 if (Inst.size() < 7) 5950 return false; 5951 5952 if (Inst.startswith("fldm") || Inst.startswith("fstm")) { 5953 StringRef AddressingMode = Inst.substr(4, 2); 5954 if (AddressingMode == "ia" || AddressingMode == "db" || 5955 AddressingMode == "ea" || AddressingMode == "fd") { 5956 AcceptSinglePrecisionOnly = Inst[6] == 's'; 5957 AcceptDoublePrecisionOnly = Inst[6] == 'd' || Inst[6] == 'x'; 5958 return true; 5959 } 5960 } 5961 5962 return false; 5963 } 5964 5965 /// Parse an arm instruction mnemonic followed by its operands. 5966 bool ARMAsmParser::ParseInstruction(ParseInstructionInfo &Info, StringRef Name, 5967 SMLoc NameLoc, OperandVector &Operands) { 5968 MCAsmParser &Parser = getParser(); 5969 // FIXME: Can this be done via tablegen in some fashion? 5970 bool RequireVFPRegisterListCheck; 5971 bool AcceptSinglePrecisionOnly; 5972 bool AcceptDoublePrecisionOnly; 5973 RequireVFPRegisterListCheck = 5974 RequiresVFPRegListValidation(Name, AcceptSinglePrecisionOnly, 5975 AcceptDoublePrecisionOnly); 5976 5977 // Apply mnemonic aliases before doing anything else, as the destination 5978 // mnemonic may include suffices and we want to handle them normally. 5979 // The generic tblgen'erated code does this later, at the start of 5980 // MatchInstructionImpl(), but that's too late for aliases that include 5981 // any sort of suffix. 5982 uint64_t AvailableFeatures = getAvailableFeatures(); 5983 unsigned AssemblerDialect = getParser().getAssemblerDialect(); 5984 applyMnemonicAliases(Name, AvailableFeatures, AssemblerDialect); 5985 5986 // First check for the ARM-specific .req directive. 5987 if (Parser.getTok().is(AsmToken::Identifier) && 5988 Parser.getTok().getIdentifier() == ".req") { 5989 parseDirectiveReq(Name, NameLoc); 5990 // We always return 'error' for this, as we're done with this 5991 // statement and don't need to match the 'instruction." 5992 return true; 5993 } 5994 5995 // Create the leading tokens for the mnemonic, split by '.' characters. 5996 size_t Start = 0, Next = Name.find('.'); 5997 StringRef Mnemonic = Name.slice(Start, Next); 5998 5999 // Split out the predication code and carry setting flag from the mnemonic. 6000 unsigned PredicationCode; 6001 unsigned ProcessorIMod; 6002 bool CarrySetting; 6003 StringRef ITMask; 6004 Mnemonic = splitMnemonic(Mnemonic, PredicationCode, CarrySetting, 6005 ProcessorIMod, ITMask); 6006 6007 // In Thumb1, only the branch (B) instruction can be predicated. 6008 if (isThumbOne() && PredicationCode != ARMCC::AL && Mnemonic != "b") { 6009 return Error(NameLoc, "conditional execution not supported in Thumb1"); 6010 } 6011 6012 Operands.push_back(ARMOperand::CreateToken(Mnemonic, NameLoc)); 6013 6014 // Handle the IT instruction ITMask. Convert it to a bitmask. This 6015 // is the mask as it will be for the IT encoding if the conditional 6016 // encoding has a '1' as it's bit0 (i.e. 't' ==> '1'). In the case 6017 // where the conditional bit0 is zero, the instruction post-processing 6018 // will adjust the mask accordingly. 6019 if (Mnemonic == "it") { 6020 SMLoc Loc = SMLoc::getFromPointer(NameLoc.getPointer() + 2); 6021 if (ITMask.size() > 3) { 6022 return Error(Loc, "too many conditions on IT instruction"); 6023 } 6024 unsigned Mask = 8; 6025 for (unsigned i = ITMask.size(); i != 0; --i) { 6026 char pos = ITMask[i - 1]; 6027 if (pos != 't' && pos != 'e') { 6028 return Error(Loc, "illegal IT block condition mask '" + ITMask + "'"); 6029 } 6030 Mask >>= 1; 6031 if (ITMask[i - 1] == 't') 6032 Mask |= 8; 6033 } 6034 Operands.push_back(ARMOperand::CreateITMask(Mask, Loc)); 6035 } 6036 6037 // FIXME: This is all a pretty gross hack. We should automatically handle 6038 // optional operands like this via tblgen. 6039 6040 // Next, add the CCOut and ConditionCode operands, if needed. 6041 // 6042 // For mnemonics which can ever incorporate a carry setting bit or predication 6043 // code, our matching model involves us always generating CCOut and 6044 // ConditionCode operands to match the mnemonic "as written" and then we let 6045 // the matcher deal with finding the right instruction or generating an 6046 // appropriate error. 6047 bool CanAcceptCarrySet, CanAcceptPredicationCode; 6048 getMnemonicAcceptInfo(Mnemonic, Name, CanAcceptCarrySet, CanAcceptPredicationCode); 6049 6050 // If we had a carry-set on an instruction that can't do that, issue an 6051 // error. 6052 if (!CanAcceptCarrySet && CarrySetting) { 6053 return Error(NameLoc, "instruction '" + Mnemonic + 6054 "' can not set flags, but 's' suffix specified"); 6055 } 6056 // If we had a predication code on an instruction that can't do that, issue an 6057 // error. 6058 if (!CanAcceptPredicationCode && PredicationCode != ARMCC::AL) { 6059 return Error(NameLoc, "instruction '" + Mnemonic + 6060 "' is not predicable, but condition code specified"); 6061 } 6062 6063 // Add the carry setting operand, if necessary. 6064 if (CanAcceptCarrySet) { 6065 SMLoc Loc = SMLoc::getFromPointer(NameLoc.getPointer() + Mnemonic.size()); 6066 Operands.push_back(ARMOperand::CreateCCOut(CarrySetting ? ARM::CPSR : 0, 6067 Loc)); 6068 } 6069 6070 // Add the predication code operand, if necessary. 6071 if (CanAcceptPredicationCode) { 6072 SMLoc Loc = SMLoc::getFromPointer(NameLoc.getPointer() + Mnemonic.size() + 6073 CarrySetting); 6074 Operands.push_back(ARMOperand::CreateCondCode( 6075 ARMCC::CondCodes(PredicationCode), Loc)); 6076 } 6077 6078 // Add the processor imod operand, if necessary. 6079 if (ProcessorIMod) { 6080 Operands.push_back(ARMOperand::CreateImm( 6081 MCConstantExpr::create(ProcessorIMod, getContext()), 6082 NameLoc, NameLoc)); 6083 } else if (Mnemonic == "cps" && isMClass()) { 6084 return Error(NameLoc, "instruction 'cps' requires effect for M-class"); 6085 } 6086 6087 // Add the remaining tokens in the mnemonic. 6088 while (Next != StringRef::npos) { 6089 Start = Next; 6090 Next = Name.find('.', Start + 1); 6091 StringRef ExtraToken = Name.slice(Start, Next); 6092 6093 // Some NEON instructions have an optional datatype suffix that is 6094 // completely ignored. Check for that. 6095 if (isDataTypeToken(ExtraToken) && 6096 doesIgnoreDataTypeSuffix(Mnemonic, ExtraToken)) 6097 continue; 6098 6099 // For for ARM mode generate an error if the .n qualifier is used. 6100 if (ExtraToken == ".n" && !isThumb()) { 6101 SMLoc Loc = SMLoc::getFromPointer(NameLoc.getPointer() + Start); 6102 return Error(Loc, "instruction with .n (narrow) qualifier not allowed in " 6103 "arm mode"); 6104 } 6105 6106 // The .n qualifier is always discarded as that is what the tables 6107 // and matcher expect. In ARM mode the .w qualifier has no effect, 6108 // so discard it to avoid errors that can be caused by the matcher. 6109 if (ExtraToken != ".n" && (isThumb() || ExtraToken != ".w")) { 6110 SMLoc Loc = SMLoc::getFromPointer(NameLoc.getPointer() + Start); 6111 Operands.push_back(ARMOperand::CreateToken(ExtraToken, Loc)); 6112 } 6113 } 6114 6115 // Read the remaining operands. 6116 if (getLexer().isNot(AsmToken::EndOfStatement)) { 6117 // Read the first operand. 6118 if (parseOperand(Operands, Mnemonic)) { 6119 return true; 6120 } 6121 6122 while (getLexer().is(AsmToken::Comma)) { 6123 Parser.Lex(); // Eat the comma. 6124 6125 // Parse and remember the operand. 6126 if (parseOperand(Operands, Mnemonic)) { 6127 return true; 6128 } 6129 } 6130 } 6131 6132 if (getLexer().isNot(AsmToken::EndOfStatement)) { 6133 return TokError("unexpected token in argument list"); 6134 } 6135 6136 Parser.Lex(); // Consume the EndOfStatement 6137 6138 if (RequireVFPRegisterListCheck) { 6139 ARMOperand &Op = static_cast<ARMOperand &>(*Operands.back()); 6140 if (AcceptSinglePrecisionOnly && !Op.isSPRRegList()) 6141 return Error(Op.getStartLoc(), 6142 "VFP/Neon single precision register expected"); 6143 if (AcceptDoublePrecisionOnly && !Op.isDPRRegList()) 6144 return Error(Op.getStartLoc(), 6145 "VFP/Neon double precision register expected"); 6146 } 6147 6148 tryConvertingToTwoOperandForm(Mnemonic, CarrySetting, Operands); 6149 6150 // Some instructions, mostly Thumb, have forms for the same mnemonic that 6151 // do and don't have a cc_out optional-def operand. With some spot-checks 6152 // of the operand list, we can figure out which variant we're trying to 6153 // parse and adjust accordingly before actually matching. We shouldn't ever 6154 // try to remove a cc_out operand that was explicitly set on the 6155 // mnemonic, of course (CarrySetting == true). Reason number #317 the 6156 // table driven matcher doesn't fit well with the ARM instruction set. 6157 if (!CarrySetting && shouldOmitCCOutOperand(Mnemonic, Operands)) 6158 Operands.erase(Operands.begin() + 1); 6159 6160 // Some instructions have the same mnemonic, but don't always 6161 // have a predicate. Distinguish them here and delete the 6162 // predicate if needed. 6163 if (shouldOmitPredicateOperand(Mnemonic, Operands)) 6164 Operands.erase(Operands.begin() + 1); 6165 6166 // ARM mode 'blx' need special handling, as the register operand version 6167 // is predicable, but the label operand version is not. So, we can't rely 6168 // on the Mnemonic based checking to correctly figure out when to put 6169 // a k_CondCode operand in the list. If we're trying to match the label 6170 // version, remove the k_CondCode operand here. 6171 if (!isThumb() && Mnemonic == "blx" && Operands.size() == 3 && 6172 static_cast<ARMOperand &>(*Operands[2]).isImm()) 6173 Operands.erase(Operands.begin() + 1); 6174 6175 // Adjust operands of ldrexd/strexd to MCK_GPRPair. 6176 // ldrexd/strexd require even/odd GPR pair. To enforce this constraint, 6177 // a single GPRPair reg operand is used in the .td file to replace the two 6178 // GPRs. However, when parsing from asm, the two GRPs cannot be automatically 6179 // expressed as a GPRPair, so we have to manually merge them. 6180 // FIXME: We would really like to be able to tablegen'erate this. 6181 if (!isThumb() && Operands.size() > 4 && 6182 (Mnemonic == "ldrexd" || Mnemonic == "strexd" || Mnemonic == "ldaexd" || 6183 Mnemonic == "stlexd")) { 6184 bool isLoad = (Mnemonic == "ldrexd" || Mnemonic == "ldaexd"); 6185 unsigned Idx = isLoad ? 2 : 3; 6186 ARMOperand &Op1 = static_cast<ARMOperand &>(*Operands[Idx]); 6187 ARMOperand &Op2 = static_cast<ARMOperand &>(*Operands[Idx + 1]); 6188 6189 const MCRegisterClass& MRC = MRI->getRegClass(ARM::GPRRegClassID); 6190 // Adjust only if Op1 and Op2 are GPRs. 6191 if (Op1.isReg() && Op2.isReg() && MRC.contains(Op1.getReg()) && 6192 MRC.contains(Op2.getReg())) { 6193 unsigned Reg1 = Op1.getReg(); 6194 unsigned Reg2 = Op2.getReg(); 6195 unsigned Rt = MRI->getEncodingValue(Reg1); 6196 unsigned Rt2 = MRI->getEncodingValue(Reg2); 6197 6198 // Rt2 must be Rt + 1 and Rt must be even. 6199 if (Rt + 1 != Rt2 || (Rt & 1)) { 6200 Error(Op2.getStartLoc(), isLoad 6201 ? "destination operands must be sequential" 6202 : "source operands must be sequential"); 6203 return true; 6204 } 6205 unsigned NewReg = MRI->getMatchingSuperReg(Reg1, ARM::gsub_0, 6206 &(MRI->getRegClass(ARM::GPRPairRegClassID))); 6207 Operands[Idx] = 6208 ARMOperand::CreateReg(NewReg, Op1.getStartLoc(), Op2.getEndLoc()); 6209 Operands.erase(Operands.begin() + Idx + 1); 6210 } 6211 } 6212 6213 // GNU Assembler extension (compatibility) 6214 if ((Mnemonic == "ldrd" || Mnemonic == "strd")) { 6215 ARMOperand &Op2 = static_cast<ARMOperand &>(*Operands[2]); 6216 ARMOperand &Op3 = static_cast<ARMOperand &>(*Operands[3]); 6217 if (Op3.isMem()) { 6218 assert(Op2.isReg() && "expected register argument"); 6219 6220 unsigned SuperReg = MRI->getMatchingSuperReg( 6221 Op2.getReg(), ARM::gsub_0, &MRI->getRegClass(ARM::GPRPairRegClassID)); 6222 6223 assert(SuperReg && "expected register pair"); 6224 6225 unsigned PairedReg = MRI->getSubReg(SuperReg, ARM::gsub_1); 6226 6227 Operands.insert( 6228 Operands.begin() + 3, 6229 ARMOperand::CreateReg(PairedReg, Op2.getStartLoc(), Op2.getEndLoc())); 6230 } 6231 } 6232 6233 // FIXME: As said above, this is all a pretty gross hack. This instruction 6234 // does not fit with other "subs" and tblgen. 6235 // Adjust operands of B9.3.19 SUBS PC, LR, #imm (Thumb2) system instruction 6236 // so the Mnemonic is the original name "subs" and delete the predicate 6237 // operand so it will match the table entry. 6238 if (isThumbTwo() && Mnemonic == "sub" && Operands.size() == 6 && 6239 static_cast<ARMOperand &>(*Operands[3]).isReg() && 6240 static_cast<ARMOperand &>(*Operands[3]).getReg() == ARM::PC && 6241 static_cast<ARMOperand &>(*Operands[4]).isReg() && 6242 static_cast<ARMOperand &>(*Operands[4]).getReg() == ARM::LR && 6243 static_cast<ARMOperand &>(*Operands[5]).isImm()) { 6244 Operands.front() = ARMOperand::CreateToken(Name, NameLoc); 6245 Operands.erase(Operands.begin() + 1); 6246 } 6247 return false; 6248 } 6249 6250 // Validate context-sensitive operand constraints. 6251 6252 // return 'true' if register list contains non-low GPR registers, 6253 // 'false' otherwise. If Reg is in the register list or is HiReg, set 6254 // 'containsReg' to true. 6255 static bool checkLowRegisterList(const MCInst &Inst, unsigned OpNo, 6256 unsigned Reg, unsigned HiReg, 6257 bool &containsReg) { 6258 containsReg = false; 6259 for (unsigned i = OpNo; i < Inst.getNumOperands(); ++i) { 6260 unsigned OpReg = Inst.getOperand(i).getReg(); 6261 if (OpReg == Reg) 6262 containsReg = true; 6263 // Anything other than a low register isn't legal here. 6264 if (!isARMLowRegister(OpReg) && (!HiReg || OpReg != HiReg)) 6265 return true; 6266 } 6267 return false; 6268 } 6269 6270 // Check if the specified regisgter is in the register list of the inst, 6271 // starting at the indicated operand number. 6272 static bool listContainsReg(const MCInst &Inst, unsigned OpNo, unsigned Reg) { 6273 for (unsigned i = OpNo, e = Inst.getNumOperands(); i < e; ++i) { 6274 unsigned OpReg = Inst.getOperand(i).getReg(); 6275 if (OpReg == Reg) 6276 return true; 6277 } 6278 return false; 6279 } 6280 6281 // Return true if instruction has the interesting property of being 6282 // allowed in IT blocks, but not being predicable. 6283 static bool instIsBreakpoint(const MCInst &Inst) { 6284 return Inst.getOpcode() == ARM::tBKPT || 6285 Inst.getOpcode() == ARM::BKPT || 6286 Inst.getOpcode() == ARM::tHLT || 6287 Inst.getOpcode() == ARM::HLT; 6288 6289 } 6290 6291 bool ARMAsmParser::validatetLDMRegList(const MCInst &Inst, 6292 const OperandVector &Operands, 6293 unsigned ListNo, bool IsARPop) { 6294 const ARMOperand &Op = static_cast<const ARMOperand &>(*Operands[ListNo]); 6295 bool HasWritebackToken = Op.isToken() && Op.getToken() == "!"; 6296 6297 bool ListContainsSP = listContainsReg(Inst, ListNo, ARM::SP); 6298 bool ListContainsLR = listContainsReg(Inst, ListNo, ARM::LR); 6299 bool ListContainsPC = listContainsReg(Inst, ListNo, ARM::PC); 6300 6301 if (!IsARPop && ListContainsSP) 6302 return Error(Operands[ListNo + HasWritebackToken]->getStartLoc(), 6303 "SP may not be in the register list"); 6304 else if (ListContainsPC && ListContainsLR) 6305 return Error(Operands[ListNo + HasWritebackToken]->getStartLoc(), 6306 "PC and LR may not be in the register list simultaneously"); 6307 else if (inITBlock() && !lastInITBlock() && ListContainsPC) 6308 return Error(Operands[ListNo + HasWritebackToken]->getStartLoc(), 6309 "instruction must be outside of IT block or the last " 6310 "instruction in an IT block"); 6311 return false; 6312 } 6313 6314 bool ARMAsmParser::validatetSTMRegList(const MCInst &Inst, 6315 const OperandVector &Operands, 6316 unsigned ListNo) { 6317 const ARMOperand &Op = static_cast<const ARMOperand &>(*Operands[ListNo]); 6318 bool HasWritebackToken = Op.isToken() && Op.getToken() == "!"; 6319 6320 bool ListContainsSP = listContainsReg(Inst, ListNo, ARM::SP); 6321 bool ListContainsPC = listContainsReg(Inst, ListNo, ARM::PC); 6322 6323 if (ListContainsSP && ListContainsPC) 6324 return Error(Operands[ListNo + HasWritebackToken]->getStartLoc(), 6325 "SP and PC may not be in the register list"); 6326 else if (ListContainsSP) 6327 return Error(Operands[ListNo + HasWritebackToken]->getStartLoc(), 6328 "SP may not be in the register list"); 6329 else if (ListContainsPC) 6330 return Error(Operands[ListNo + HasWritebackToken]->getStartLoc(), 6331 "PC may not be in the register list"); 6332 return false; 6333 } 6334 6335 // FIXME: We would really like to be able to tablegen'erate this. 6336 bool ARMAsmParser::validateInstruction(MCInst &Inst, 6337 const OperandVector &Operands) { 6338 const MCInstrDesc &MCID = MII.get(Inst.getOpcode()); 6339 SMLoc Loc = Operands[0]->getStartLoc(); 6340 6341 // Check the IT block state first. 6342 // NOTE: BKPT and HLT instructions have the interesting property of being 6343 // allowed in IT blocks, but not being predicable. They just always execute. 6344 if (inITBlock() && !instIsBreakpoint(Inst)) { 6345 // The instruction must be predicable. 6346 if (!MCID.isPredicable()) 6347 return Error(Loc, "instructions in IT block must be predicable"); 6348 unsigned Cond = Inst.getOperand(MCID.findFirstPredOperandIdx()).getImm(); 6349 if (Cond != currentITCond()) { 6350 // Find the condition code Operand to get its SMLoc information. 6351 SMLoc CondLoc; 6352 for (unsigned I = 1; I < Operands.size(); ++I) 6353 if (static_cast<ARMOperand &>(*Operands[I]).isCondCode()) 6354 CondLoc = Operands[I]->getStartLoc(); 6355 return Error(CondLoc, "incorrect condition in IT block; got '" + 6356 StringRef(ARMCondCodeToString(ARMCC::CondCodes(Cond))) + 6357 "', but expected '" + 6358 ARMCondCodeToString(ARMCC::CondCodes(currentITCond())) + "'"); 6359 } 6360 // Check for non-'al' condition codes outside of the IT block. 6361 } else if (isThumbTwo() && MCID.isPredicable() && 6362 Inst.getOperand(MCID.findFirstPredOperandIdx()).getImm() != 6363 ARMCC::AL && Inst.getOpcode() != ARM::tBcc && 6364 Inst.getOpcode() != ARM::t2Bcc) { 6365 return Error(Loc, "predicated instructions must be in IT block"); 6366 } else if (!isThumb() && !useImplicitITARM() && MCID.isPredicable() && 6367 Inst.getOperand(MCID.findFirstPredOperandIdx()).getImm() != 6368 ARMCC::AL) { 6369 return Warning(Loc, "predicated instructions should be in IT block"); 6370 } 6371 6372 const unsigned Opcode = Inst.getOpcode(); 6373 switch (Opcode) { 6374 case ARM::LDRD: 6375 case ARM::LDRD_PRE: 6376 case ARM::LDRD_POST: { 6377 const unsigned RtReg = Inst.getOperand(0).getReg(); 6378 6379 // Rt can't be R14. 6380 if (RtReg == ARM::LR) 6381 return Error(Operands[3]->getStartLoc(), 6382 "Rt can't be R14"); 6383 6384 const unsigned Rt = MRI->getEncodingValue(RtReg); 6385 // Rt must be even-numbered. 6386 if ((Rt & 1) == 1) 6387 return Error(Operands[3]->getStartLoc(), 6388 "Rt must be even-numbered"); 6389 6390 // Rt2 must be Rt + 1. 6391 const unsigned Rt2 = MRI->getEncodingValue(Inst.getOperand(1).getReg()); 6392 if (Rt2 != Rt + 1) 6393 return Error(Operands[3]->getStartLoc(), 6394 "destination operands must be sequential"); 6395 6396 if (Opcode == ARM::LDRD_PRE || Opcode == ARM::LDRD_POST) { 6397 const unsigned Rn = MRI->getEncodingValue(Inst.getOperand(3).getReg()); 6398 // For addressing modes with writeback, the base register needs to be 6399 // different from the destination registers. 6400 if (Rn == Rt || Rn == Rt2) 6401 return Error(Operands[3]->getStartLoc(), 6402 "base register needs to be different from destination " 6403 "registers"); 6404 } 6405 6406 return false; 6407 } 6408 case ARM::t2LDRDi8: 6409 case ARM::t2LDRD_PRE: 6410 case ARM::t2LDRD_POST: { 6411 // Rt2 must be different from Rt. 6412 unsigned Rt = MRI->getEncodingValue(Inst.getOperand(0).getReg()); 6413 unsigned Rt2 = MRI->getEncodingValue(Inst.getOperand(1).getReg()); 6414 if (Rt2 == Rt) 6415 return Error(Operands[3]->getStartLoc(), 6416 "destination operands can't be identical"); 6417 return false; 6418 } 6419 case ARM::t2BXJ: { 6420 const unsigned RmReg = Inst.getOperand(0).getReg(); 6421 // Rm = SP is no longer unpredictable in v8-A 6422 if (RmReg == ARM::SP && !hasV8Ops()) 6423 return Error(Operands[2]->getStartLoc(), 6424 "r13 (SP) is an unpredictable operand to BXJ"); 6425 return false; 6426 } 6427 case ARM::STRD: { 6428 // Rt2 must be Rt + 1. 6429 unsigned Rt = MRI->getEncodingValue(Inst.getOperand(0).getReg()); 6430 unsigned Rt2 = MRI->getEncodingValue(Inst.getOperand(1).getReg()); 6431 if (Rt2 != Rt + 1) 6432 return Error(Operands[3]->getStartLoc(), 6433 "source operands must be sequential"); 6434 return false; 6435 } 6436 case ARM::STRD_PRE: 6437 case ARM::STRD_POST: { 6438 // Rt2 must be Rt + 1. 6439 unsigned Rt = MRI->getEncodingValue(Inst.getOperand(1).getReg()); 6440 unsigned Rt2 = MRI->getEncodingValue(Inst.getOperand(2).getReg()); 6441 if (Rt2 != Rt + 1) 6442 return Error(Operands[3]->getStartLoc(), 6443 "source operands must be sequential"); 6444 return false; 6445 } 6446 case ARM::STR_PRE_IMM: 6447 case ARM::STR_PRE_REG: 6448 case ARM::STR_POST_IMM: 6449 case ARM::STR_POST_REG: 6450 case ARM::STRH_PRE: 6451 case ARM::STRH_POST: 6452 case ARM::STRB_PRE_IMM: 6453 case ARM::STRB_PRE_REG: 6454 case ARM::STRB_POST_IMM: 6455 case ARM::STRB_POST_REG: { 6456 // Rt must be different from Rn. 6457 const unsigned Rt = MRI->getEncodingValue(Inst.getOperand(1).getReg()); 6458 const unsigned Rn = MRI->getEncodingValue(Inst.getOperand(2).getReg()); 6459 6460 if (Rt == Rn) 6461 return Error(Operands[3]->getStartLoc(), 6462 "source register and base register can't be identical"); 6463 return false; 6464 } 6465 case ARM::LDR_PRE_IMM: 6466 case ARM::LDR_PRE_REG: 6467 case ARM::LDR_POST_IMM: 6468 case ARM::LDR_POST_REG: 6469 case ARM::LDRH_PRE: 6470 case ARM::LDRH_POST: 6471 case ARM::LDRSH_PRE: 6472 case ARM::LDRSH_POST: 6473 case ARM::LDRB_PRE_IMM: 6474 case ARM::LDRB_PRE_REG: 6475 case ARM::LDRB_POST_IMM: 6476 case ARM::LDRB_POST_REG: 6477 case ARM::LDRSB_PRE: 6478 case ARM::LDRSB_POST: { 6479 // Rt must be different from Rn. 6480 const unsigned Rt = MRI->getEncodingValue(Inst.getOperand(0).getReg()); 6481 const unsigned Rn = MRI->getEncodingValue(Inst.getOperand(2).getReg()); 6482 6483 if (Rt == Rn) 6484 return Error(Operands[3]->getStartLoc(), 6485 "destination register and base register can't be identical"); 6486 return false; 6487 } 6488 case ARM::SBFX: 6489 case ARM::UBFX: { 6490 // Width must be in range [1, 32-lsb]. 6491 unsigned LSB = Inst.getOperand(2).getImm(); 6492 unsigned Widthm1 = Inst.getOperand(3).getImm(); 6493 if (Widthm1 >= 32 - LSB) 6494 return Error(Operands[5]->getStartLoc(), 6495 "bitfield width must be in range [1,32-lsb]"); 6496 return false; 6497 } 6498 // Notionally handles ARM::tLDMIA_UPD too. 6499 case ARM::tLDMIA: { 6500 // If we're parsing Thumb2, the .w variant is available and handles 6501 // most cases that are normally illegal for a Thumb1 LDM instruction. 6502 // We'll make the transformation in processInstruction() if necessary. 6503 // 6504 // Thumb LDM instructions are writeback iff the base register is not 6505 // in the register list. 6506 unsigned Rn = Inst.getOperand(0).getReg(); 6507 bool HasWritebackToken = 6508 (static_cast<ARMOperand &>(*Operands[3]).isToken() && 6509 static_cast<ARMOperand &>(*Operands[3]).getToken() == "!"); 6510 bool ListContainsBase; 6511 if (checkLowRegisterList(Inst, 3, Rn, 0, ListContainsBase) && !isThumbTwo()) 6512 return Error(Operands[3 + HasWritebackToken]->getStartLoc(), 6513 "registers must be in range r0-r7"); 6514 // If we should have writeback, then there should be a '!' token. 6515 if (!ListContainsBase && !HasWritebackToken && !isThumbTwo()) 6516 return Error(Operands[2]->getStartLoc(), 6517 "writeback operator '!' expected"); 6518 // If we should not have writeback, there must not be a '!'. This is 6519 // true even for the 32-bit wide encodings. 6520 if (ListContainsBase && HasWritebackToken) 6521 return Error(Operands[3]->getStartLoc(), 6522 "writeback operator '!' not allowed when base register " 6523 "in register list"); 6524 6525 if (validatetLDMRegList(Inst, Operands, 3)) 6526 return true; 6527 break; 6528 } 6529 case ARM::LDMIA_UPD: 6530 case ARM::LDMDB_UPD: 6531 case ARM::LDMIB_UPD: 6532 case ARM::LDMDA_UPD: 6533 // ARM variants loading and updating the same register are only officially 6534 // UNPREDICTABLE on v7 upwards. Goodness knows what they did before. 6535 if (!hasV7Ops()) 6536 break; 6537 if (listContainsReg(Inst, 3, Inst.getOperand(0).getReg())) 6538 return Error(Operands.back()->getStartLoc(), 6539 "writeback register not allowed in register list"); 6540 break; 6541 case ARM::t2LDMIA: 6542 case ARM::t2LDMDB: 6543 if (validatetLDMRegList(Inst, Operands, 3)) 6544 return true; 6545 break; 6546 case ARM::t2STMIA: 6547 case ARM::t2STMDB: 6548 if (validatetSTMRegList(Inst, Operands, 3)) 6549 return true; 6550 break; 6551 case ARM::t2LDMIA_UPD: 6552 case ARM::t2LDMDB_UPD: 6553 case ARM::t2STMIA_UPD: 6554 case ARM::t2STMDB_UPD: { 6555 if (listContainsReg(Inst, 3, Inst.getOperand(0).getReg())) 6556 return Error(Operands.back()->getStartLoc(), 6557 "writeback register not allowed in register list"); 6558 6559 if (Opcode == ARM::t2LDMIA_UPD || Opcode == ARM::t2LDMDB_UPD) { 6560 if (validatetLDMRegList(Inst, Operands, 3)) 6561 return true; 6562 } else { 6563 if (validatetSTMRegList(Inst, Operands, 3)) 6564 return true; 6565 } 6566 break; 6567 } 6568 case ARM::sysLDMIA_UPD: 6569 case ARM::sysLDMDA_UPD: 6570 case ARM::sysLDMDB_UPD: 6571 case ARM::sysLDMIB_UPD: 6572 if (!listContainsReg(Inst, 3, ARM::PC)) 6573 return Error(Operands[4]->getStartLoc(), 6574 "writeback register only allowed on system LDM " 6575 "if PC in register-list"); 6576 break; 6577 case ARM::sysSTMIA_UPD: 6578 case ARM::sysSTMDA_UPD: 6579 case ARM::sysSTMDB_UPD: 6580 case ARM::sysSTMIB_UPD: 6581 return Error(Operands[2]->getStartLoc(), 6582 "system STM cannot have writeback register"); 6583 case ARM::tMUL: { 6584 // The second source operand must be the same register as the destination 6585 // operand. 6586 // 6587 // In this case, we must directly check the parsed operands because the 6588 // cvtThumbMultiply() function is written in such a way that it guarantees 6589 // this first statement is always true for the new Inst. Essentially, the 6590 // destination is unconditionally copied into the second source operand 6591 // without checking to see if it matches what we actually parsed. 6592 if (Operands.size() == 6 && (((ARMOperand &)*Operands[3]).getReg() != 6593 ((ARMOperand &)*Operands[5]).getReg()) && 6594 (((ARMOperand &)*Operands[3]).getReg() != 6595 ((ARMOperand &)*Operands[4]).getReg())) { 6596 return Error(Operands[3]->getStartLoc(), 6597 "destination register must match source register"); 6598 } 6599 break; 6600 } 6601 // Like for ldm/stm, push and pop have hi-reg handling version in Thumb2, 6602 // so only issue a diagnostic for thumb1. The instructions will be 6603 // switched to the t2 encodings in processInstruction() if necessary. 6604 case ARM::tPOP: { 6605 bool ListContainsBase; 6606 if (checkLowRegisterList(Inst, 2, 0, ARM::PC, ListContainsBase) && 6607 !isThumbTwo()) 6608 return Error(Operands[2]->getStartLoc(), 6609 "registers must be in range r0-r7 or pc"); 6610 if (validatetLDMRegList(Inst, Operands, 2, !isMClass())) 6611 return true; 6612 break; 6613 } 6614 case ARM::tPUSH: { 6615 bool ListContainsBase; 6616 if (checkLowRegisterList(Inst, 2, 0, ARM::LR, ListContainsBase) && 6617 !isThumbTwo()) 6618 return Error(Operands[2]->getStartLoc(), 6619 "registers must be in range r0-r7 or lr"); 6620 if (validatetSTMRegList(Inst, Operands, 2)) 6621 return true; 6622 break; 6623 } 6624 case ARM::tSTMIA_UPD: { 6625 bool ListContainsBase, InvalidLowList; 6626 InvalidLowList = checkLowRegisterList(Inst, 4, Inst.getOperand(0).getReg(), 6627 0, ListContainsBase); 6628 if (InvalidLowList && !isThumbTwo()) 6629 return Error(Operands[4]->getStartLoc(), 6630 "registers must be in range r0-r7"); 6631 6632 // This would be converted to a 32-bit stm, but that's not valid if the 6633 // writeback register is in the list. 6634 if (InvalidLowList && ListContainsBase) 6635 return Error(Operands[4]->getStartLoc(), 6636 "writeback operator '!' not allowed when base register " 6637 "in register list"); 6638 6639 if (validatetSTMRegList(Inst, Operands, 4)) 6640 return true; 6641 break; 6642 } 6643 case ARM::tADDrSP: { 6644 // If the non-SP source operand and the destination operand are not the 6645 // same, we need thumb2 (for the wide encoding), or we have an error. 6646 if (!isThumbTwo() && 6647 Inst.getOperand(0).getReg() != Inst.getOperand(2).getReg()) { 6648 return Error(Operands[4]->getStartLoc(), 6649 "source register must be the same as destination"); 6650 } 6651 break; 6652 } 6653 // Final range checking for Thumb unconditional branch instructions. 6654 case ARM::tB: 6655 if (!(static_cast<ARMOperand &>(*Operands[2])).isSignedOffset<11, 1>()) 6656 return Error(Operands[2]->getStartLoc(), "branch target out of range"); 6657 break; 6658 case ARM::t2B: { 6659 int op = (Operands[2]->isImm()) ? 2 : 3; 6660 if (!static_cast<ARMOperand &>(*Operands[op]).isSignedOffset<24, 1>()) 6661 return Error(Operands[op]->getStartLoc(), "branch target out of range"); 6662 break; 6663 } 6664 // Final range checking for Thumb conditional branch instructions. 6665 case ARM::tBcc: 6666 if (!static_cast<ARMOperand &>(*Operands[2]).isSignedOffset<8, 1>()) 6667 return Error(Operands[2]->getStartLoc(), "branch target out of range"); 6668 break; 6669 case ARM::t2Bcc: { 6670 int Op = (Operands[2]->isImm()) ? 2 : 3; 6671 if (!static_cast<ARMOperand &>(*Operands[Op]).isSignedOffset<20, 1>()) 6672 return Error(Operands[Op]->getStartLoc(), "branch target out of range"); 6673 break; 6674 } 6675 case ARM::tCBZ: 6676 case ARM::tCBNZ: { 6677 if (!static_cast<ARMOperand &>(*Operands[2]).isUnsignedOffset<6, 1>()) 6678 return Error(Operands[2]->getStartLoc(), "branch target out of range"); 6679 break; 6680 } 6681 case ARM::MOVi16: 6682 case ARM::t2MOVi16: 6683 case ARM::t2MOVTi16: 6684 { 6685 // We want to avoid misleadingly allowing something like "mov r0, <symbol>" 6686 // especially when we turn it into a movw and the expression <symbol> does 6687 // not have a :lower16: or :upper16 as part of the expression. We don't 6688 // want the behavior of silently truncating, which can be unexpected and 6689 // lead to bugs that are difficult to find since this is an easy mistake 6690 // to make. 6691 int i = (Operands[3]->isImm()) ? 3 : 4; 6692 ARMOperand &Op = static_cast<ARMOperand &>(*Operands[i]); 6693 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Op.getImm()); 6694 if (CE) break; 6695 const MCExpr *E = dyn_cast<MCExpr>(Op.getImm()); 6696 if (!E) break; 6697 const ARMMCExpr *ARM16Expr = dyn_cast<ARMMCExpr>(E); 6698 if (!ARM16Expr || (ARM16Expr->getKind() != ARMMCExpr::VK_ARM_HI16 && 6699 ARM16Expr->getKind() != ARMMCExpr::VK_ARM_LO16)) 6700 return Error( 6701 Op.getStartLoc(), 6702 "immediate expression for mov requires :lower16: or :upper16"); 6703 break; 6704 } 6705 case ARM::HINT: 6706 case ARM::t2HINT: { 6707 if (hasRAS()) { 6708 // ESB is not predicable (pred must be AL) 6709 unsigned Imm8 = Inst.getOperand(0).getImm(); 6710 unsigned Pred = Inst.getOperand(1).getImm(); 6711 if (Imm8 == 0x10 && Pred != ARMCC::AL) 6712 return Error(Operands[1]->getStartLoc(), "instruction 'esb' is not " 6713 "predicable, but condition " 6714 "code specified"); 6715 } 6716 // Without the RAS extension, this behaves as any other unallocated hint. 6717 break; 6718 } 6719 } 6720 6721 return false; 6722 } 6723 6724 static unsigned getRealVSTOpcode(unsigned Opc, unsigned &Spacing) { 6725 switch(Opc) { 6726 default: llvm_unreachable("unexpected opcode!"); 6727 // VST1LN 6728 case ARM::VST1LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VST1LNd8_UPD; 6729 case ARM::VST1LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VST1LNd16_UPD; 6730 case ARM::VST1LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VST1LNd32_UPD; 6731 case ARM::VST1LNdWB_register_Asm_8: Spacing = 1; return ARM::VST1LNd8_UPD; 6732 case ARM::VST1LNdWB_register_Asm_16: Spacing = 1; return ARM::VST1LNd16_UPD; 6733 case ARM::VST1LNdWB_register_Asm_32: Spacing = 1; return ARM::VST1LNd32_UPD; 6734 case ARM::VST1LNdAsm_8: Spacing = 1; return ARM::VST1LNd8; 6735 case ARM::VST1LNdAsm_16: Spacing = 1; return ARM::VST1LNd16; 6736 case ARM::VST1LNdAsm_32: Spacing = 1; return ARM::VST1LNd32; 6737 6738 // VST2LN 6739 case ARM::VST2LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VST2LNd8_UPD; 6740 case ARM::VST2LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VST2LNd16_UPD; 6741 case ARM::VST2LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VST2LNd32_UPD; 6742 case ARM::VST2LNqWB_fixed_Asm_16: Spacing = 2; return ARM::VST2LNq16_UPD; 6743 case ARM::VST2LNqWB_fixed_Asm_32: Spacing = 2; return ARM::VST2LNq32_UPD; 6744 6745 case ARM::VST2LNdWB_register_Asm_8: Spacing = 1; return ARM::VST2LNd8_UPD; 6746 case ARM::VST2LNdWB_register_Asm_16: Spacing = 1; return ARM::VST2LNd16_UPD; 6747 case ARM::VST2LNdWB_register_Asm_32: Spacing = 1; return ARM::VST2LNd32_UPD; 6748 case ARM::VST2LNqWB_register_Asm_16: Spacing = 2; return ARM::VST2LNq16_UPD; 6749 case ARM::VST2LNqWB_register_Asm_32: Spacing = 2; return ARM::VST2LNq32_UPD; 6750 6751 case ARM::VST2LNdAsm_8: Spacing = 1; return ARM::VST2LNd8; 6752 case ARM::VST2LNdAsm_16: Spacing = 1; return ARM::VST2LNd16; 6753 case ARM::VST2LNdAsm_32: Spacing = 1; return ARM::VST2LNd32; 6754 case ARM::VST2LNqAsm_16: Spacing = 2; return ARM::VST2LNq16; 6755 case ARM::VST2LNqAsm_32: Spacing = 2; return ARM::VST2LNq32; 6756 6757 // VST3LN 6758 case ARM::VST3LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VST3LNd8_UPD; 6759 case ARM::VST3LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VST3LNd16_UPD; 6760 case ARM::VST3LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VST3LNd32_UPD; 6761 case ARM::VST3LNqWB_fixed_Asm_16: Spacing = 1; return ARM::VST3LNq16_UPD; 6762 case ARM::VST3LNqWB_fixed_Asm_32: Spacing = 2; return ARM::VST3LNq32_UPD; 6763 case ARM::VST3LNdWB_register_Asm_8: Spacing = 1; return ARM::VST3LNd8_UPD; 6764 case ARM::VST3LNdWB_register_Asm_16: Spacing = 1; return ARM::VST3LNd16_UPD; 6765 case ARM::VST3LNdWB_register_Asm_32: Spacing = 1; return ARM::VST3LNd32_UPD; 6766 case ARM::VST3LNqWB_register_Asm_16: Spacing = 2; return ARM::VST3LNq16_UPD; 6767 case ARM::VST3LNqWB_register_Asm_32: Spacing = 2; return ARM::VST3LNq32_UPD; 6768 case ARM::VST3LNdAsm_8: Spacing = 1; return ARM::VST3LNd8; 6769 case ARM::VST3LNdAsm_16: Spacing = 1; return ARM::VST3LNd16; 6770 case ARM::VST3LNdAsm_32: Spacing = 1; return ARM::VST3LNd32; 6771 case ARM::VST3LNqAsm_16: Spacing = 2; return ARM::VST3LNq16; 6772 case ARM::VST3LNqAsm_32: Spacing = 2; return ARM::VST3LNq32; 6773 6774 // VST3 6775 case ARM::VST3dWB_fixed_Asm_8: Spacing = 1; return ARM::VST3d8_UPD; 6776 case ARM::VST3dWB_fixed_Asm_16: Spacing = 1; return ARM::VST3d16_UPD; 6777 case ARM::VST3dWB_fixed_Asm_32: Spacing = 1; return ARM::VST3d32_UPD; 6778 case ARM::VST3qWB_fixed_Asm_8: Spacing = 2; return ARM::VST3q8_UPD; 6779 case ARM::VST3qWB_fixed_Asm_16: Spacing = 2; return ARM::VST3q16_UPD; 6780 case ARM::VST3qWB_fixed_Asm_32: Spacing = 2; return ARM::VST3q32_UPD; 6781 case ARM::VST3dWB_register_Asm_8: Spacing = 1; return ARM::VST3d8_UPD; 6782 case ARM::VST3dWB_register_Asm_16: Spacing = 1; return ARM::VST3d16_UPD; 6783 case ARM::VST3dWB_register_Asm_32: Spacing = 1; return ARM::VST3d32_UPD; 6784 case ARM::VST3qWB_register_Asm_8: Spacing = 2; return ARM::VST3q8_UPD; 6785 case ARM::VST3qWB_register_Asm_16: Spacing = 2; return ARM::VST3q16_UPD; 6786 case ARM::VST3qWB_register_Asm_32: Spacing = 2; return ARM::VST3q32_UPD; 6787 case ARM::VST3dAsm_8: Spacing = 1; return ARM::VST3d8; 6788 case ARM::VST3dAsm_16: Spacing = 1; return ARM::VST3d16; 6789 case ARM::VST3dAsm_32: Spacing = 1; return ARM::VST3d32; 6790 case ARM::VST3qAsm_8: Spacing = 2; return ARM::VST3q8; 6791 case ARM::VST3qAsm_16: Spacing = 2; return ARM::VST3q16; 6792 case ARM::VST3qAsm_32: Spacing = 2; return ARM::VST3q32; 6793 6794 // VST4LN 6795 case ARM::VST4LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VST4LNd8_UPD; 6796 case ARM::VST4LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VST4LNd16_UPD; 6797 case ARM::VST4LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VST4LNd32_UPD; 6798 case ARM::VST4LNqWB_fixed_Asm_16: Spacing = 1; return ARM::VST4LNq16_UPD; 6799 case ARM::VST4LNqWB_fixed_Asm_32: Spacing = 2; return ARM::VST4LNq32_UPD; 6800 case ARM::VST4LNdWB_register_Asm_8: Spacing = 1; return ARM::VST4LNd8_UPD; 6801 case ARM::VST4LNdWB_register_Asm_16: Spacing = 1; return ARM::VST4LNd16_UPD; 6802 case ARM::VST4LNdWB_register_Asm_32: Spacing = 1; return ARM::VST4LNd32_UPD; 6803 case ARM::VST4LNqWB_register_Asm_16: Spacing = 2; return ARM::VST4LNq16_UPD; 6804 case ARM::VST4LNqWB_register_Asm_32: Spacing = 2; return ARM::VST4LNq32_UPD; 6805 case ARM::VST4LNdAsm_8: Spacing = 1; return ARM::VST4LNd8; 6806 case ARM::VST4LNdAsm_16: Spacing = 1; return ARM::VST4LNd16; 6807 case ARM::VST4LNdAsm_32: Spacing = 1; return ARM::VST4LNd32; 6808 case ARM::VST4LNqAsm_16: Spacing = 2; return ARM::VST4LNq16; 6809 case ARM::VST4LNqAsm_32: Spacing = 2; return ARM::VST4LNq32; 6810 6811 // VST4 6812 case ARM::VST4dWB_fixed_Asm_8: Spacing = 1; return ARM::VST4d8_UPD; 6813 case ARM::VST4dWB_fixed_Asm_16: Spacing = 1; return ARM::VST4d16_UPD; 6814 case ARM::VST4dWB_fixed_Asm_32: Spacing = 1; return ARM::VST4d32_UPD; 6815 case ARM::VST4qWB_fixed_Asm_8: Spacing = 2; return ARM::VST4q8_UPD; 6816 case ARM::VST4qWB_fixed_Asm_16: Spacing = 2; return ARM::VST4q16_UPD; 6817 case ARM::VST4qWB_fixed_Asm_32: Spacing = 2; return ARM::VST4q32_UPD; 6818 case ARM::VST4dWB_register_Asm_8: Spacing = 1; return ARM::VST4d8_UPD; 6819 case ARM::VST4dWB_register_Asm_16: Spacing = 1; return ARM::VST4d16_UPD; 6820 case ARM::VST4dWB_register_Asm_32: Spacing = 1; return ARM::VST4d32_UPD; 6821 case ARM::VST4qWB_register_Asm_8: Spacing = 2; return ARM::VST4q8_UPD; 6822 case ARM::VST4qWB_register_Asm_16: Spacing = 2; return ARM::VST4q16_UPD; 6823 case ARM::VST4qWB_register_Asm_32: Spacing = 2; return ARM::VST4q32_UPD; 6824 case ARM::VST4dAsm_8: Spacing = 1; return ARM::VST4d8; 6825 case ARM::VST4dAsm_16: Spacing = 1; return ARM::VST4d16; 6826 case ARM::VST4dAsm_32: Spacing = 1; return ARM::VST4d32; 6827 case ARM::VST4qAsm_8: Spacing = 2; return ARM::VST4q8; 6828 case ARM::VST4qAsm_16: Spacing = 2; return ARM::VST4q16; 6829 case ARM::VST4qAsm_32: Spacing = 2; return ARM::VST4q32; 6830 } 6831 } 6832 6833 static unsigned getRealVLDOpcode(unsigned Opc, unsigned &Spacing) { 6834 switch(Opc) { 6835 default: llvm_unreachable("unexpected opcode!"); 6836 // VLD1LN 6837 case ARM::VLD1LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VLD1LNd8_UPD; 6838 case ARM::VLD1LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VLD1LNd16_UPD; 6839 case ARM::VLD1LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VLD1LNd32_UPD; 6840 case ARM::VLD1LNdWB_register_Asm_8: Spacing = 1; return ARM::VLD1LNd8_UPD; 6841 case ARM::VLD1LNdWB_register_Asm_16: Spacing = 1; return ARM::VLD1LNd16_UPD; 6842 case ARM::VLD1LNdWB_register_Asm_32: Spacing = 1; return ARM::VLD1LNd32_UPD; 6843 case ARM::VLD1LNdAsm_8: Spacing = 1; return ARM::VLD1LNd8; 6844 case ARM::VLD1LNdAsm_16: Spacing = 1; return ARM::VLD1LNd16; 6845 case ARM::VLD1LNdAsm_32: Spacing = 1; return ARM::VLD1LNd32; 6846 6847 // VLD2LN 6848 case ARM::VLD2LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VLD2LNd8_UPD; 6849 case ARM::VLD2LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VLD2LNd16_UPD; 6850 case ARM::VLD2LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VLD2LNd32_UPD; 6851 case ARM::VLD2LNqWB_fixed_Asm_16: Spacing = 1; return ARM::VLD2LNq16_UPD; 6852 case ARM::VLD2LNqWB_fixed_Asm_32: Spacing = 2; return ARM::VLD2LNq32_UPD; 6853 case ARM::VLD2LNdWB_register_Asm_8: Spacing = 1; return ARM::VLD2LNd8_UPD; 6854 case ARM::VLD2LNdWB_register_Asm_16: Spacing = 1; return ARM::VLD2LNd16_UPD; 6855 case ARM::VLD2LNdWB_register_Asm_32: Spacing = 1; return ARM::VLD2LNd32_UPD; 6856 case ARM::VLD2LNqWB_register_Asm_16: Spacing = 2; return ARM::VLD2LNq16_UPD; 6857 case ARM::VLD2LNqWB_register_Asm_32: Spacing = 2; return ARM::VLD2LNq32_UPD; 6858 case ARM::VLD2LNdAsm_8: Spacing = 1; return ARM::VLD2LNd8; 6859 case ARM::VLD2LNdAsm_16: Spacing = 1; return ARM::VLD2LNd16; 6860 case ARM::VLD2LNdAsm_32: Spacing = 1; return ARM::VLD2LNd32; 6861 case ARM::VLD2LNqAsm_16: Spacing = 2; return ARM::VLD2LNq16; 6862 case ARM::VLD2LNqAsm_32: Spacing = 2; return ARM::VLD2LNq32; 6863 6864 // VLD3DUP 6865 case ARM::VLD3DUPdWB_fixed_Asm_8: Spacing = 1; return ARM::VLD3DUPd8_UPD; 6866 case ARM::VLD3DUPdWB_fixed_Asm_16: Spacing = 1; return ARM::VLD3DUPd16_UPD; 6867 case ARM::VLD3DUPdWB_fixed_Asm_32: Spacing = 1; return ARM::VLD3DUPd32_UPD; 6868 case ARM::VLD3DUPqWB_fixed_Asm_8: Spacing = 1; return ARM::VLD3DUPq8_UPD; 6869 case ARM::VLD3DUPqWB_fixed_Asm_16: Spacing = 2; return ARM::VLD3DUPq16_UPD; 6870 case ARM::VLD3DUPqWB_fixed_Asm_32: Spacing = 2; return ARM::VLD3DUPq32_UPD; 6871 case ARM::VLD3DUPdWB_register_Asm_8: Spacing = 1; return ARM::VLD3DUPd8_UPD; 6872 case ARM::VLD3DUPdWB_register_Asm_16: Spacing = 1; return ARM::VLD3DUPd16_UPD; 6873 case ARM::VLD3DUPdWB_register_Asm_32: Spacing = 1; return ARM::VLD3DUPd32_UPD; 6874 case ARM::VLD3DUPqWB_register_Asm_8: Spacing = 2; return ARM::VLD3DUPq8_UPD; 6875 case ARM::VLD3DUPqWB_register_Asm_16: Spacing = 2; return ARM::VLD3DUPq16_UPD; 6876 case ARM::VLD3DUPqWB_register_Asm_32: Spacing = 2; return ARM::VLD3DUPq32_UPD; 6877 case ARM::VLD3DUPdAsm_8: Spacing = 1; return ARM::VLD3DUPd8; 6878 case ARM::VLD3DUPdAsm_16: Spacing = 1; return ARM::VLD3DUPd16; 6879 case ARM::VLD3DUPdAsm_32: Spacing = 1; return ARM::VLD3DUPd32; 6880 case ARM::VLD3DUPqAsm_8: Spacing = 2; return ARM::VLD3DUPq8; 6881 case ARM::VLD3DUPqAsm_16: Spacing = 2; return ARM::VLD3DUPq16; 6882 case ARM::VLD3DUPqAsm_32: Spacing = 2; return ARM::VLD3DUPq32; 6883 6884 // VLD3LN 6885 case ARM::VLD3LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VLD3LNd8_UPD; 6886 case ARM::VLD3LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VLD3LNd16_UPD; 6887 case ARM::VLD3LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VLD3LNd32_UPD; 6888 case ARM::VLD3LNqWB_fixed_Asm_16: Spacing = 1; return ARM::VLD3LNq16_UPD; 6889 case ARM::VLD3LNqWB_fixed_Asm_32: Spacing = 2; return ARM::VLD3LNq32_UPD; 6890 case ARM::VLD3LNdWB_register_Asm_8: Spacing = 1; return ARM::VLD3LNd8_UPD; 6891 case ARM::VLD3LNdWB_register_Asm_16: Spacing = 1; return ARM::VLD3LNd16_UPD; 6892 case ARM::VLD3LNdWB_register_Asm_32: Spacing = 1; return ARM::VLD3LNd32_UPD; 6893 case ARM::VLD3LNqWB_register_Asm_16: Spacing = 2; return ARM::VLD3LNq16_UPD; 6894 case ARM::VLD3LNqWB_register_Asm_32: Spacing = 2; return ARM::VLD3LNq32_UPD; 6895 case ARM::VLD3LNdAsm_8: Spacing = 1; return ARM::VLD3LNd8; 6896 case ARM::VLD3LNdAsm_16: Spacing = 1; return ARM::VLD3LNd16; 6897 case ARM::VLD3LNdAsm_32: Spacing = 1; return ARM::VLD3LNd32; 6898 case ARM::VLD3LNqAsm_16: Spacing = 2; return ARM::VLD3LNq16; 6899 case ARM::VLD3LNqAsm_32: Spacing = 2; return ARM::VLD3LNq32; 6900 6901 // VLD3 6902 case ARM::VLD3dWB_fixed_Asm_8: Spacing = 1; return ARM::VLD3d8_UPD; 6903 case ARM::VLD3dWB_fixed_Asm_16: Spacing = 1; return ARM::VLD3d16_UPD; 6904 case ARM::VLD3dWB_fixed_Asm_32: Spacing = 1; return ARM::VLD3d32_UPD; 6905 case ARM::VLD3qWB_fixed_Asm_8: Spacing = 2; return ARM::VLD3q8_UPD; 6906 case ARM::VLD3qWB_fixed_Asm_16: Spacing = 2; return ARM::VLD3q16_UPD; 6907 case ARM::VLD3qWB_fixed_Asm_32: Spacing = 2; return ARM::VLD3q32_UPD; 6908 case ARM::VLD3dWB_register_Asm_8: Spacing = 1; return ARM::VLD3d8_UPD; 6909 case ARM::VLD3dWB_register_Asm_16: Spacing = 1; return ARM::VLD3d16_UPD; 6910 case ARM::VLD3dWB_register_Asm_32: Spacing = 1; return ARM::VLD3d32_UPD; 6911 case ARM::VLD3qWB_register_Asm_8: Spacing = 2; return ARM::VLD3q8_UPD; 6912 case ARM::VLD3qWB_register_Asm_16: Spacing = 2; return ARM::VLD3q16_UPD; 6913 case ARM::VLD3qWB_register_Asm_32: Spacing = 2; return ARM::VLD3q32_UPD; 6914 case ARM::VLD3dAsm_8: Spacing = 1; return ARM::VLD3d8; 6915 case ARM::VLD3dAsm_16: Spacing = 1; return ARM::VLD3d16; 6916 case ARM::VLD3dAsm_32: Spacing = 1; return ARM::VLD3d32; 6917 case ARM::VLD3qAsm_8: Spacing = 2; return ARM::VLD3q8; 6918 case ARM::VLD3qAsm_16: Spacing = 2; return ARM::VLD3q16; 6919 case ARM::VLD3qAsm_32: Spacing = 2; return ARM::VLD3q32; 6920 6921 // VLD4LN 6922 case ARM::VLD4LNdWB_fixed_Asm_8: Spacing = 1; return ARM::VLD4LNd8_UPD; 6923 case ARM::VLD4LNdWB_fixed_Asm_16: Spacing = 1; return ARM::VLD4LNd16_UPD; 6924 case ARM::VLD4LNdWB_fixed_Asm_32: Spacing = 1; return ARM::VLD4LNd32_UPD; 6925 case ARM::VLD4LNqWB_fixed_Asm_16: Spacing = 2; return ARM::VLD4LNq16_UPD; 6926 case ARM::VLD4LNqWB_fixed_Asm_32: Spacing = 2; return ARM::VLD4LNq32_UPD; 6927 case ARM::VLD4LNdWB_register_Asm_8: Spacing = 1; return ARM::VLD4LNd8_UPD; 6928 case ARM::VLD4LNdWB_register_Asm_16: Spacing = 1; return ARM::VLD4LNd16_UPD; 6929 case ARM::VLD4LNdWB_register_Asm_32: Spacing = 1; return ARM::VLD4LNd32_UPD; 6930 case ARM::VLD4LNqWB_register_Asm_16: Spacing = 2; return ARM::VLD4LNq16_UPD; 6931 case ARM::VLD4LNqWB_register_Asm_32: Spacing = 2; return ARM::VLD4LNq32_UPD; 6932 case ARM::VLD4LNdAsm_8: Spacing = 1; return ARM::VLD4LNd8; 6933 case ARM::VLD4LNdAsm_16: Spacing = 1; return ARM::VLD4LNd16; 6934 case ARM::VLD4LNdAsm_32: Spacing = 1; return ARM::VLD4LNd32; 6935 case ARM::VLD4LNqAsm_16: Spacing = 2; return ARM::VLD4LNq16; 6936 case ARM::VLD4LNqAsm_32: Spacing = 2; return ARM::VLD4LNq32; 6937 6938 // VLD4DUP 6939 case ARM::VLD4DUPdWB_fixed_Asm_8: Spacing = 1; return ARM::VLD4DUPd8_UPD; 6940 case ARM::VLD4DUPdWB_fixed_Asm_16: Spacing = 1; return ARM::VLD4DUPd16_UPD; 6941 case ARM::VLD4DUPdWB_fixed_Asm_32: Spacing = 1; return ARM::VLD4DUPd32_UPD; 6942 case ARM::VLD4DUPqWB_fixed_Asm_8: Spacing = 1; return ARM::VLD4DUPq8_UPD; 6943 case ARM::VLD4DUPqWB_fixed_Asm_16: Spacing = 1; return ARM::VLD4DUPq16_UPD; 6944 case ARM::VLD4DUPqWB_fixed_Asm_32: Spacing = 2; return ARM::VLD4DUPq32_UPD; 6945 case ARM::VLD4DUPdWB_register_Asm_8: Spacing = 1; return ARM::VLD4DUPd8_UPD; 6946 case ARM::VLD4DUPdWB_register_Asm_16: Spacing = 1; return ARM::VLD4DUPd16_UPD; 6947 case ARM::VLD4DUPdWB_register_Asm_32: Spacing = 1; return ARM::VLD4DUPd32_UPD; 6948 case ARM::VLD4DUPqWB_register_Asm_8: Spacing = 2; return ARM::VLD4DUPq8_UPD; 6949 case ARM::VLD4DUPqWB_register_Asm_16: Spacing = 2; return ARM::VLD4DUPq16_UPD; 6950 case ARM::VLD4DUPqWB_register_Asm_32: Spacing = 2; return ARM::VLD4DUPq32_UPD; 6951 case ARM::VLD4DUPdAsm_8: Spacing = 1; return ARM::VLD4DUPd8; 6952 case ARM::VLD4DUPdAsm_16: Spacing = 1; return ARM::VLD4DUPd16; 6953 case ARM::VLD4DUPdAsm_32: Spacing = 1; return ARM::VLD4DUPd32; 6954 case ARM::VLD4DUPqAsm_8: Spacing = 2; return ARM::VLD4DUPq8; 6955 case ARM::VLD4DUPqAsm_16: Spacing = 2; return ARM::VLD4DUPq16; 6956 case ARM::VLD4DUPqAsm_32: Spacing = 2; return ARM::VLD4DUPq32; 6957 6958 // VLD4 6959 case ARM::VLD4dWB_fixed_Asm_8: Spacing = 1; return ARM::VLD4d8_UPD; 6960 case ARM::VLD4dWB_fixed_Asm_16: Spacing = 1; return ARM::VLD4d16_UPD; 6961 case ARM::VLD4dWB_fixed_Asm_32: Spacing = 1; return ARM::VLD4d32_UPD; 6962 case ARM::VLD4qWB_fixed_Asm_8: Spacing = 2; return ARM::VLD4q8_UPD; 6963 case ARM::VLD4qWB_fixed_Asm_16: Spacing = 2; return ARM::VLD4q16_UPD; 6964 case ARM::VLD4qWB_fixed_Asm_32: Spacing = 2; return ARM::VLD4q32_UPD; 6965 case ARM::VLD4dWB_register_Asm_8: Spacing = 1; return ARM::VLD4d8_UPD; 6966 case ARM::VLD4dWB_register_Asm_16: Spacing = 1; return ARM::VLD4d16_UPD; 6967 case ARM::VLD4dWB_register_Asm_32: Spacing = 1; return ARM::VLD4d32_UPD; 6968 case ARM::VLD4qWB_register_Asm_8: Spacing = 2; return ARM::VLD4q8_UPD; 6969 case ARM::VLD4qWB_register_Asm_16: Spacing = 2; return ARM::VLD4q16_UPD; 6970 case ARM::VLD4qWB_register_Asm_32: Spacing = 2; return ARM::VLD4q32_UPD; 6971 case ARM::VLD4dAsm_8: Spacing = 1; return ARM::VLD4d8; 6972 case ARM::VLD4dAsm_16: Spacing = 1; return ARM::VLD4d16; 6973 case ARM::VLD4dAsm_32: Spacing = 1; return ARM::VLD4d32; 6974 case ARM::VLD4qAsm_8: Spacing = 2; return ARM::VLD4q8; 6975 case ARM::VLD4qAsm_16: Spacing = 2; return ARM::VLD4q16; 6976 case ARM::VLD4qAsm_32: Spacing = 2; return ARM::VLD4q32; 6977 } 6978 } 6979 6980 bool ARMAsmParser::processInstruction(MCInst &Inst, 6981 const OperandVector &Operands, 6982 MCStreamer &Out) { 6983 switch (Inst.getOpcode()) { 6984 // Alias for alternate form of 'ldr{,b}t Rt, [Rn], #imm' instruction. 6985 case ARM::LDRT_POST: 6986 case ARM::LDRBT_POST: { 6987 const unsigned Opcode = 6988 (Inst.getOpcode() == ARM::LDRT_POST) ? ARM::LDRT_POST_IMM 6989 : ARM::LDRBT_POST_IMM; 6990 MCInst TmpInst; 6991 TmpInst.setOpcode(Opcode); 6992 TmpInst.addOperand(Inst.getOperand(0)); 6993 TmpInst.addOperand(Inst.getOperand(1)); 6994 TmpInst.addOperand(Inst.getOperand(1)); 6995 TmpInst.addOperand(MCOperand::createReg(0)); 6996 TmpInst.addOperand(MCOperand::createImm(0)); 6997 TmpInst.addOperand(Inst.getOperand(2)); 6998 TmpInst.addOperand(Inst.getOperand(3)); 6999 Inst = TmpInst; 7000 return true; 7001 } 7002 // Alias for alternate form of 'str{,b}t Rt, [Rn], #imm' instruction. 7003 case ARM::STRT_POST: 7004 case ARM::STRBT_POST: { 7005 const unsigned Opcode = 7006 (Inst.getOpcode() == ARM::STRT_POST) ? ARM::STRT_POST_IMM 7007 : ARM::STRBT_POST_IMM; 7008 MCInst TmpInst; 7009 TmpInst.setOpcode(Opcode); 7010 TmpInst.addOperand(Inst.getOperand(1)); 7011 TmpInst.addOperand(Inst.getOperand(0)); 7012 TmpInst.addOperand(Inst.getOperand(1)); 7013 TmpInst.addOperand(MCOperand::createReg(0)); 7014 TmpInst.addOperand(MCOperand::createImm(0)); 7015 TmpInst.addOperand(Inst.getOperand(2)); 7016 TmpInst.addOperand(Inst.getOperand(3)); 7017 Inst = TmpInst; 7018 return true; 7019 } 7020 // Alias for alternate form of 'ADR Rd, #imm' instruction. 7021 case ARM::ADDri: { 7022 if (Inst.getOperand(1).getReg() != ARM::PC || 7023 Inst.getOperand(5).getReg() != 0 || 7024 !(Inst.getOperand(2).isExpr() || Inst.getOperand(2).isImm())) 7025 return false; 7026 MCInst TmpInst; 7027 TmpInst.setOpcode(ARM::ADR); 7028 TmpInst.addOperand(Inst.getOperand(0)); 7029 if (Inst.getOperand(2).isImm()) { 7030 // Immediate (mod_imm) will be in its encoded form, we must unencode it 7031 // before passing it to the ADR instruction. 7032 unsigned Enc = Inst.getOperand(2).getImm(); 7033 TmpInst.addOperand(MCOperand::createImm( 7034 ARM_AM::rotr32(Enc & 0xFF, (Enc & 0xF00) >> 7))); 7035 } else { 7036 // Turn PC-relative expression into absolute expression. 7037 // Reading PC provides the start of the current instruction + 8 and 7038 // the transform to adr is biased by that. 7039 MCSymbol *Dot = getContext().createTempSymbol(); 7040 Out.EmitLabel(Dot); 7041 const MCExpr *OpExpr = Inst.getOperand(2).getExpr(); 7042 const MCExpr *InstPC = MCSymbolRefExpr::create(Dot, 7043 MCSymbolRefExpr::VK_None, 7044 getContext()); 7045 const MCExpr *Const8 = MCConstantExpr::create(8, getContext()); 7046 const MCExpr *ReadPC = MCBinaryExpr::createAdd(InstPC, Const8, 7047 getContext()); 7048 const MCExpr *FixupAddr = MCBinaryExpr::createAdd(ReadPC, OpExpr, 7049 getContext()); 7050 TmpInst.addOperand(MCOperand::createExpr(FixupAddr)); 7051 } 7052 TmpInst.addOperand(Inst.getOperand(3)); 7053 TmpInst.addOperand(Inst.getOperand(4)); 7054 Inst = TmpInst; 7055 return true; 7056 } 7057 // Aliases for alternate PC+imm syntax of LDR instructions. 7058 case ARM::t2LDRpcrel: 7059 // Select the narrow version if the immediate will fit. 7060 if (Inst.getOperand(1).getImm() > 0 && 7061 Inst.getOperand(1).getImm() <= 0xff && 7062 !(static_cast<ARMOperand &>(*Operands[2]).isToken() && 7063 static_cast<ARMOperand &>(*Operands[2]).getToken() == ".w")) 7064 Inst.setOpcode(ARM::tLDRpci); 7065 else 7066 Inst.setOpcode(ARM::t2LDRpci); 7067 return true; 7068 case ARM::t2LDRBpcrel: 7069 Inst.setOpcode(ARM::t2LDRBpci); 7070 return true; 7071 case ARM::t2LDRHpcrel: 7072 Inst.setOpcode(ARM::t2LDRHpci); 7073 return true; 7074 case ARM::t2LDRSBpcrel: 7075 Inst.setOpcode(ARM::t2LDRSBpci); 7076 return true; 7077 case ARM::t2LDRSHpcrel: 7078 Inst.setOpcode(ARM::t2LDRSHpci); 7079 return true; 7080 case ARM::LDRConstPool: 7081 case ARM::tLDRConstPool: 7082 case ARM::t2LDRConstPool: { 7083 // Pseudo instruction ldr rt, =immediate is converted to a 7084 // MOV rt, immediate if immediate is known and representable 7085 // otherwise we create a constant pool entry that we load from. 7086 MCInst TmpInst; 7087 if (Inst.getOpcode() == ARM::LDRConstPool) 7088 TmpInst.setOpcode(ARM::LDRi12); 7089 else if (Inst.getOpcode() == ARM::tLDRConstPool) 7090 TmpInst.setOpcode(ARM::tLDRpci); 7091 else if (Inst.getOpcode() == ARM::t2LDRConstPool) 7092 TmpInst.setOpcode(ARM::t2LDRpci); 7093 const ARMOperand &PoolOperand = 7094 (static_cast<ARMOperand &>(*Operands[2]).isToken() && 7095 static_cast<ARMOperand &>(*Operands[2]).getToken() == ".w") ? 7096 static_cast<ARMOperand &>(*Operands[4]) : 7097 static_cast<ARMOperand &>(*Operands[3]); 7098 const MCExpr *SubExprVal = PoolOperand.getConstantPoolImm(); 7099 // If SubExprVal is a constant we may be able to use a MOV 7100 if (isa<MCConstantExpr>(SubExprVal) && 7101 Inst.getOperand(0).getReg() != ARM::PC && 7102 Inst.getOperand(0).getReg() != ARM::SP) { 7103 int64_t Value = 7104 (int64_t) (cast<MCConstantExpr>(SubExprVal))->getValue(); 7105 bool UseMov = true; 7106 bool MovHasS = true; 7107 if (Inst.getOpcode() == ARM::LDRConstPool) { 7108 // ARM Constant 7109 if (ARM_AM::getSOImmVal(Value) != -1) { 7110 Value = ARM_AM::getSOImmVal(Value); 7111 TmpInst.setOpcode(ARM::MOVi); 7112 } 7113 else if (ARM_AM::getSOImmVal(~Value) != -1) { 7114 Value = ARM_AM::getSOImmVal(~Value); 7115 TmpInst.setOpcode(ARM::MVNi); 7116 } 7117 else if (hasV6T2Ops() && 7118 Value >=0 && Value < 65536) { 7119 TmpInst.setOpcode(ARM::MOVi16); 7120 MovHasS = false; 7121 } 7122 else 7123 UseMov = false; 7124 } 7125 else { 7126 // Thumb/Thumb2 Constant 7127 if (hasThumb2() && 7128 ARM_AM::getT2SOImmVal(Value) != -1) 7129 TmpInst.setOpcode(ARM::t2MOVi); 7130 else if (hasThumb2() && 7131 ARM_AM::getT2SOImmVal(~Value) != -1) { 7132 TmpInst.setOpcode(ARM::t2MVNi); 7133 Value = ~Value; 7134 } 7135 else if (hasV8MBaseline() && 7136 Value >=0 && Value < 65536) { 7137 TmpInst.setOpcode(ARM::t2MOVi16); 7138 MovHasS = false; 7139 } 7140 else 7141 UseMov = false; 7142 } 7143 if (UseMov) { 7144 TmpInst.addOperand(Inst.getOperand(0)); // Rt 7145 TmpInst.addOperand(MCOperand::createImm(Value)); // Immediate 7146 TmpInst.addOperand(Inst.getOperand(2)); // CondCode 7147 TmpInst.addOperand(Inst.getOperand(3)); // CondCode 7148 if (MovHasS) 7149 TmpInst.addOperand(MCOperand::createReg(0)); // S 7150 Inst = TmpInst; 7151 return true; 7152 } 7153 } 7154 // No opportunity to use MOV/MVN create constant pool 7155 const MCExpr *CPLoc = 7156 getTargetStreamer().addConstantPoolEntry(SubExprVal, 7157 PoolOperand.getStartLoc()); 7158 TmpInst.addOperand(Inst.getOperand(0)); // Rt 7159 TmpInst.addOperand(MCOperand::createExpr(CPLoc)); // offset to constpool 7160 if (TmpInst.getOpcode() == ARM::LDRi12) 7161 TmpInst.addOperand(MCOperand::createImm(0)); // unused offset 7162 TmpInst.addOperand(Inst.getOperand(2)); // CondCode 7163 TmpInst.addOperand(Inst.getOperand(3)); // CondCode 7164 Inst = TmpInst; 7165 return true; 7166 } 7167 // Handle NEON VST complex aliases. 7168 case ARM::VST1LNdWB_register_Asm_8: 7169 case ARM::VST1LNdWB_register_Asm_16: 7170 case ARM::VST1LNdWB_register_Asm_32: { 7171 MCInst TmpInst; 7172 // Shuffle the operands around so the lane index operand is in the 7173 // right place. 7174 unsigned Spacing; 7175 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing)); 7176 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb 7177 TmpInst.addOperand(Inst.getOperand(2)); // Rn 7178 TmpInst.addOperand(Inst.getOperand(3)); // alignment 7179 TmpInst.addOperand(Inst.getOperand(4)); // Rm 7180 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7181 TmpInst.addOperand(Inst.getOperand(1)); // lane 7182 TmpInst.addOperand(Inst.getOperand(5)); // CondCode 7183 TmpInst.addOperand(Inst.getOperand(6)); 7184 Inst = TmpInst; 7185 return true; 7186 } 7187 7188 case ARM::VST2LNdWB_register_Asm_8: 7189 case ARM::VST2LNdWB_register_Asm_16: 7190 case ARM::VST2LNdWB_register_Asm_32: 7191 case ARM::VST2LNqWB_register_Asm_16: 7192 case ARM::VST2LNqWB_register_Asm_32: { 7193 MCInst TmpInst; 7194 // Shuffle the operands around so the lane index operand is in the 7195 // right place. 7196 unsigned Spacing; 7197 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing)); 7198 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb 7199 TmpInst.addOperand(Inst.getOperand(2)); // Rn 7200 TmpInst.addOperand(Inst.getOperand(3)); // alignment 7201 TmpInst.addOperand(Inst.getOperand(4)); // Rm 7202 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7203 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7204 Spacing)); 7205 TmpInst.addOperand(Inst.getOperand(1)); // lane 7206 TmpInst.addOperand(Inst.getOperand(5)); // CondCode 7207 TmpInst.addOperand(Inst.getOperand(6)); 7208 Inst = TmpInst; 7209 return true; 7210 } 7211 7212 case ARM::VST3LNdWB_register_Asm_8: 7213 case ARM::VST3LNdWB_register_Asm_16: 7214 case ARM::VST3LNdWB_register_Asm_32: 7215 case ARM::VST3LNqWB_register_Asm_16: 7216 case ARM::VST3LNqWB_register_Asm_32: { 7217 MCInst TmpInst; 7218 // Shuffle the operands around so the lane index operand is in the 7219 // right place. 7220 unsigned Spacing; 7221 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing)); 7222 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb 7223 TmpInst.addOperand(Inst.getOperand(2)); // Rn 7224 TmpInst.addOperand(Inst.getOperand(3)); // alignment 7225 TmpInst.addOperand(Inst.getOperand(4)); // Rm 7226 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7227 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7228 Spacing)); 7229 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7230 Spacing * 2)); 7231 TmpInst.addOperand(Inst.getOperand(1)); // lane 7232 TmpInst.addOperand(Inst.getOperand(5)); // CondCode 7233 TmpInst.addOperand(Inst.getOperand(6)); 7234 Inst = TmpInst; 7235 return true; 7236 } 7237 7238 case ARM::VST4LNdWB_register_Asm_8: 7239 case ARM::VST4LNdWB_register_Asm_16: 7240 case ARM::VST4LNdWB_register_Asm_32: 7241 case ARM::VST4LNqWB_register_Asm_16: 7242 case ARM::VST4LNqWB_register_Asm_32: { 7243 MCInst TmpInst; 7244 // Shuffle the operands around so the lane index operand is in the 7245 // right place. 7246 unsigned Spacing; 7247 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing)); 7248 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb 7249 TmpInst.addOperand(Inst.getOperand(2)); // Rn 7250 TmpInst.addOperand(Inst.getOperand(3)); // alignment 7251 TmpInst.addOperand(Inst.getOperand(4)); // Rm 7252 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7253 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7254 Spacing)); 7255 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7256 Spacing * 2)); 7257 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7258 Spacing * 3)); 7259 TmpInst.addOperand(Inst.getOperand(1)); // lane 7260 TmpInst.addOperand(Inst.getOperand(5)); // CondCode 7261 TmpInst.addOperand(Inst.getOperand(6)); 7262 Inst = TmpInst; 7263 return true; 7264 } 7265 7266 case ARM::VST1LNdWB_fixed_Asm_8: 7267 case ARM::VST1LNdWB_fixed_Asm_16: 7268 case ARM::VST1LNdWB_fixed_Asm_32: { 7269 MCInst TmpInst; 7270 // Shuffle the operands around so the lane index operand is in the 7271 // right place. 7272 unsigned Spacing; 7273 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing)); 7274 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb 7275 TmpInst.addOperand(Inst.getOperand(2)); // Rn 7276 TmpInst.addOperand(Inst.getOperand(3)); // alignment 7277 TmpInst.addOperand(MCOperand::createReg(0)); // Rm 7278 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7279 TmpInst.addOperand(Inst.getOperand(1)); // lane 7280 TmpInst.addOperand(Inst.getOperand(4)); // CondCode 7281 TmpInst.addOperand(Inst.getOperand(5)); 7282 Inst = TmpInst; 7283 return true; 7284 } 7285 7286 case ARM::VST2LNdWB_fixed_Asm_8: 7287 case ARM::VST2LNdWB_fixed_Asm_16: 7288 case ARM::VST2LNdWB_fixed_Asm_32: 7289 case ARM::VST2LNqWB_fixed_Asm_16: 7290 case ARM::VST2LNqWB_fixed_Asm_32: { 7291 MCInst TmpInst; 7292 // Shuffle the operands around so the lane index operand is in the 7293 // right place. 7294 unsigned Spacing; 7295 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing)); 7296 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb 7297 TmpInst.addOperand(Inst.getOperand(2)); // Rn 7298 TmpInst.addOperand(Inst.getOperand(3)); // alignment 7299 TmpInst.addOperand(MCOperand::createReg(0)); // Rm 7300 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7301 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7302 Spacing)); 7303 TmpInst.addOperand(Inst.getOperand(1)); // lane 7304 TmpInst.addOperand(Inst.getOperand(4)); // CondCode 7305 TmpInst.addOperand(Inst.getOperand(5)); 7306 Inst = TmpInst; 7307 return true; 7308 } 7309 7310 case ARM::VST3LNdWB_fixed_Asm_8: 7311 case ARM::VST3LNdWB_fixed_Asm_16: 7312 case ARM::VST3LNdWB_fixed_Asm_32: 7313 case ARM::VST3LNqWB_fixed_Asm_16: 7314 case ARM::VST3LNqWB_fixed_Asm_32: { 7315 MCInst TmpInst; 7316 // Shuffle the operands around so the lane index operand is in the 7317 // right place. 7318 unsigned Spacing; 7319 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing)); 7320 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb 7321 TmpInst.addOperand(Inst.getOperand(2)); // Rn 7322 TmpInst.addOperand(Inst.getOperand(3)); // alignment 7323 TmpInst.addOperand(MCOperand::createReg(0)); // Rm 7324 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7325 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7326 Spacing)); 7327 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7328 Spacing * 2)); 7329 TmpInst.addOperand(Inst.getOperand(1)); // lane 7330 TmpInst.addOperand(Inst.getOperand(4)); // CondCode 7331 TmpInst.addOperand(Inst.getOperand(5)); 7332 Inst = TmpInst; 7333 return true; 7334 } 7335 7336 case ARM::VST4LNdWB_fixed_Asm_8: 7337 case ARM::VST4LNdWB_fixed_Asm_16: 7338 case ARM::VST4LNdWB_fixed_Asm_32: 7339 case ARM::VST4LNqWB_fixed_Asm_16: 7340 case ARM::VST4LNqWB_fixed_Asm_32: { 7341 MCInst TmpInst; 7342 // Shuffle the operands around so the lane index operand is in the 7343 // right place. 7344 unsigned Spacing; 7345 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing)); 7346 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb 7347 TmpInst.addOperand(Inst.getOperand(2)); // Rn 7348 TmpInst.addOperand(Inst.getOperand(3)); // alignment 7349 TmpInst.addOperand(MCOperand::createReg(0)); // Rm 7350 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7351 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7352 Spacing)); 7353 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7354 Spacing * 2)); 7355 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7356 Spacing * 3)); 7357 TmpInst.addOperand(Inst.getOperand(1)); // lane 7358 TmpInst.addOperand(Inst.getOperand(4)); // CondCode 7359 TmpInst.addOperand(Inst.getOperand(5)); 7360 Inst = TmpInst; 7361 return true; 7362 } 7363 7364 case ARM::VST1LNdAsm_8: 7365 case ARM::VST1LNdAsm_16: 7366 case ARM::VST1LNdAsm_32: { 7367 MCInst TmpInst; 7368 // Shuffle the operands around so the lane index operand is in the 7369 // right place. 7370 unsigned Spacing; 7371 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing)); 7372 TmpInst.addOperand(Inst.getOperand(2)); // Rn 7373 TmpInst.addOperand(Inst.getOperand(3)); // alignment 7374 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7375 TmpInst.addOperand(Inst.getOperand(1)); // lane 7376 TmpInst.addOperand(Inst.getOperand(4)); // CondCode 7377 TmpInst.addOperand(Inst.getOperand(5)); 7378 Inst = TmpInst; 7379 return true; 7380 } 7381 7382 case ARM::VST2LNdAsm_8: 7383 case ARM::VST2LNdAsm_16: 7384 case ARM::VST2LNdAsm_32: 7385 case ARM::VST2LNqAsm_16: 7386 case ARM::VST2LNqAsm_32: { 7387 MCInst TmpInst; 7388 // Shuffle the operands around so the lane index operand is in the 7389 // right place. 7390 unsigned Spacing; 7391 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing)); 7392 TmpInst.addOperand(Inst.getOperand(2)); // Rn 7393 TmpInst.addOperand(Inst.getOperand(3)); // alignment 7394 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7395 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7396 Spacing)); 7397 TmpInst.addOperand(Inst.getOperand(1)); // lane 7398 TmpInst.addOperand(Inst.getOperand(4)); // CondCode 7399 TmpInst.addOperand(Inst.getOperand(5)); 7400 Inst = TmpInst; 7401 return true; 7402 } 7403 7404 case ARM::VST3LNdAsm_8: 7405 case ARM::VST3LNdAsm_16: 7406 case ARM::VST3LNdAsm_32: 7407 case ARM::VST3LNqAsm_16: 7408 case ARM::VST3LNqAsm_32: { 7409 MCInst TmpInst; 7410 // Shuffle the operands around so the lane index operand is in the 7411 // right place. 7412 unsigned Spacing; 7413 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing)); 7414 TmpInst.addOperand(Inst.getOperand(2)); // Rn 7415 TmpInst.addOperand(Inst.getOperand(3)); // alignment 7416 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7417 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7418 Spacing)); 7419 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7420 Spacing * 2)); 7421 TmpInst.addOperand(Inst.getOperand(1)); // lane 7422 TmpInst.addOperand(Inst.getOperand(4)); // CondCode 7423 TmpInst.addOperand(Inst.getOperand(5)); 7424 Inst = TmpInst; 7425 return true; 7426 } 7427 7428 case ARM::VST4LNdAsm_8: 7429 case ARM::VST4LNdAsm_16: 7430 case ARM::VST4LNdAsm_32: 7431 case ARM::VST4LNqAsm_16: 7432 case ARM::VST4LNqAsm_32: { 7433 MCInst TmpInst; 7434 // Shuffle the operands around so the lane index operand is in the 7435 // right place. 7436 unsigned Spacing; 7437 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing)); 7438 TmpInst.addOperand(Inst.getOperand(2)); // Rn 7439 TmpInst.addOperand(Inst.getOperand(3)); // alignment 7440 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7441 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7442 Spacing)); 7443 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7444 Spacing * 2)); 7445 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7446 Spacing * 3)); 7447 TmpInst.addOperand(Inst.getOperand(1)); // lane 7448 TmpInst.addOperand(Inst.getOperand(4)); // CondCode 7449 TmpInst.addOperand(Inst.getOperand(5)); 7450 Inst = TmpInst; 7451 return true; 7452 } 7453 7454 // Handle NEON VLD complex aliases. 7455 case ARM::VLD1LNdWB_register_Asm_8: 7456 case ARM::VLD1LNdWB_register_Asm_16: 7457 case ARM::VLD1LNdWB_register_Asm_32: { 7458 MCInst TmpInst; 7459 // Shuffle the operands around so the lane index operand is in the 7460 // right place. 7461 unsigned Spacing; 7462 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing)); 7463 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7464 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb 7465 TmpInst.addOperand(Inst.getOperand(2)); // Rn 7466 TmpInst.addOperand(Inst.getOperand(3)); // alignment 7467 TmpInst.addOperand(Inst.getOperand(4)); // Rm 7468 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd) 7469 TmpInst.addOperand(Inst.getOperand(1)); // lane 7470 TmpInst.addOperand(Inst.getOperand(5)); // CondCode 7471 TmpInst.addOperand(Inst.getOperand(6)); 7472 Inst = TmpInst; 7473 return true; 7474 } 7475 7476 case ARM::VLD2LNdWB_register_Asm_8: 7477 case ARM::VLD2LNdWB_register_Asm_16: 7478 case ARM::VLD2LNdWB_register_Asm_32: 7479 case ARM::VLD2LNqWB_register_Asm_16: 7480 case ARM::VLD2LNqWB_register_Asm_32: { 7481 MCInst TmpInst; 7482 // Shuffle the operands around so the lane index operand is in the 7483 // right place. 7484 unsigned Spacing; 7485 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing)); 7486 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7487 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7488 Spacing)); 7489 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb 7490 TmpInst.addOperand(Inst.getOperand(2)); // Rn 7491 TmpInst.addOperand(Inst.getOperand(3)); // alignment 7492 TmpInst.addOperand(Inst.getOperand(4)); // Rm 7493 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd) 7494 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7495 Spacing)); 7496 TmpInst.addOperand(Inst.getOperand(1)); // lane 7497 TmpInst.addOperand(Inst.getOperand(5)); // CondCode 7498 TmpInst.addOperand(Inst.getOperand(6)); 7499 Inst = TmpInst; 7500 return true; 7501 } 7502 7503 case ARM::VLD3LNdWB_register_Asm_8: 7504 case ARM::VLD3LNdWB_register_Asm_16: 7505 case ARM::VLD3LNdWB_register_Asm_32: 7506 case ARM::VLD3LNqWB_register_Asm_16: 7507 case ARM::VLD3LNqWB_register_Asm_32: { 7508 MCInst TmpInst; 7509 // Shuffle the operands around so the lane index operand is in the 7510 // right place. 7511 unsigned Spacing; 7512 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing)); 7513 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7514 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7515 Spacing)); 7516 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7517 Spacing * 2)); 7518 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb 7519 TmpInst.addOperand(Inst.getOperand(2)); // Rn 7520 TmpInst.addOperand(Inst.getOperand(3)); // alignment 7521 TmpInst.addOperand(Inst.getOperand(4)); // Rm 7522 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd) 7523 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7524 Spacing)); 7525 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7526 Spacing * 2)); 7527 TmpInst.addOperand(Inst.getOperand(1)); // lane 7528 TmpInst.addOperand(Inst.getOperand(5)); // CondCode 7529 TmpInst.addOperand(Inst.getOperand(6)); 7530 Inst = TmpInst; 7531 return true; 7532 } 7533 7534 case ARM::VLD4LNdWB_register_Asm_8: 7535 case ARM::VLD4LNdWB_register_Asm_16: 7536 case ARM::VLD4LNdWB_register_Asm_32: 7537 case ARM::VLD4LNqWB_register_Asm_16: 7538 case ARM::VLD4LNqWB_register_Asm_32: { 7539 MCInst TmpInst; 7540 // Shuffle the operands around so the lane index operand is in the 7541 // right place. 7542 unsigned Spacing; 7543 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing)); 7544 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7545 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7546 Spacing)); 7547 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7548 Spacing * 2)); 7549 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7550 Spacing * 3)); 7551 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb 7552 TmpInst.addOperand(Inst.getOperand(2)); // Rn 7553 TmpInst.addOperand(Inst.getOperand(3)); // alignment 7554 TmpInst.addOperand(Inst.getOperand(4)); // Rm 7555 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd) 7556 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7557 Spacing)); 7558 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7559 Spacing * 2)); 7560 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7561 Spacing * 3)); 7562 TmpInst.addOperand(Inst.getOperand(1)); // lane 7563 TmpInst.addOperand(Inst.getOperand(5)); // CondCode 7564 TmpInst.addOperand(Inst.getOperand(6)); 7565 Inst = TmpInst; 7566 return true; 7567 } 7568 7569 case ARM::VLD1LNdWB_fixed_Asm_8: 7570 case ARM::VLD1LNdWB_fixed_Asm_16: 7571 case ARM::VLD1LNdWB_fixed_Asm_32: { 7572 MCInst TmpInst; 7573 // Shuffle the operands around so the lane index operand is in the 7574 // right place. 7575 unsigned Spacing; 7576 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing)); 7577 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7578 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb 7579 TmpInst.addOperand(Inst.getOperand(2)); // Rn 7580 TmpInst.addOperand(Inst.getOperand(3)); // alignment 7581 TmpInst.addOperand(MCOperand::createReg(0)); // Rm 7582 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd) 7583 TmpInst.addOperand(Inst.getOperand(1)); // lane 7584 TmpInst.addOperand(Inst.getOperand(4)); // CondCode 7585 TmpInst.addOperand(Inst.getOperand(5)); 7586 Inst = TmpInst; 7587 return true; 7588 } 7589 7590 case ARM::VLD2LNdWB_fixed_Asm_8: 7591 case ARM::VLD2LNdWB_fixed_Asm_16: 7592 case ARM::VLD2LNdWB_fixed_Asm_32: 7593 case ARM::VLD2LNqWB_fixed_Asm_16: 7594 case ARM::VLD2LNqWB_fixed_Asm_32: { 7595 MCInst TmpInst; 7596 // Shuffle the operands around so the lane index operand is in the 7597 // right place. 7598 unsigned Spacing; 7599 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing)); 7600 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7601 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7602 Spacing)); 7603 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb 7604 TmpInst.addOperand(Inst.getOperand(2)); // Rn 7605 TmpInst.addOperand(Inst.getOperand(3)); // alignment 7606 TmpInst.addOperand(MCOperand::createReg(0)); // Rm 7607 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd) 7608 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7609 Spacing)); 7610 TmpInst.addOperand(Inst.getOperand(1)); // lane 7611 TmpInst.addOperand(Inst.getOperand(4)); // CondCode 7612 TmpInst.addOperand(Inst.getOperand(5)); 7613 Inst = TmpInst; 7614 return true; 7615 } 7616 7617 case ARM::VLD3LNdWB_fixed_Asm_8: 7618 case ARM::VLD3LNdWB_fixed_Asm_16: 7619 case ARM::VLD3LNdWB_fixed_Asm_32: 7620 case ARM::VLD3LNqWB_fixed_Asm_16: 7621 case ARM::VLD3LNqWB_fixed_Asm_32: { 7622 MCInst TmpInst; 7623 // Shuffle the operands around so the lane index operand is in the 7624 // right place. 7625 unsigned Spacing; 7626 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing)); 7627 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7628 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7629 Spacing)); 7630 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7631 Spacing * 2)); 7632 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb 7633 TmpInst.addOperand(Inst.getOperand(2)); // Rn 7634 TmpInst.addOperand(Inst.getOperand(3)); // alignment 7635 TmpInst.addOperand(MCOperand::createReg(0)); // Rm 7636 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd) 7637 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7638 Spacing)); 7639 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7640 Spacing * 2)); 7641 TmpInst.addOperand(Inst.getOperand(1)); // lane 7642 TmpInst.addOperand(Inst.getOperand(4)); // CondCode 7643 TmpInst.addOperand(Inst.getOperand(5)); 7644 Inst = TmpInst; 7645 return true; 7646 } 7647 7648 case ARM::VLD4LNdWB_fixed_Asm_8: 7649 case ARM::VLD4LNdWB_fixed_Asm_16: 7650 case ARM::VLD4LNdWB_fixed_Asm_32: 7651 case ARM::VLD4LNqWB_fixed_Asm_16: 7652 case ARM::VLD4LNqWB_fixed_Asm_32: { 7653 MCInst TmpInst; 7654 // Shuffle the operands around so the lane index operand is in the 7655 // right place. 7656 unsigned Spacing; 7657 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing)); 7658 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7659 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7660 Spacing)); 7661 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7662 Spacing * 2)); 7663 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7664 Spacing * 3)); 7665 TmpInst.addOperand(Inst.getOperand(2)); // Rn_wb 7666 TmpInst.addOperand(Inst.getOperand(2)); // Rn 7667 TmpInst.addOperand(Inst.getOperand(3)); // alignment 7668 TmpInst.addOperand(MCOperand::createReg(0)); // Rm 7669 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd) 7670 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7671 Spacing)); 7672 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7673 Spacing * 2)); 7674 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7675 Spacing * 3)); 7676 TmpInst.addOperand(Inst.getOperand(1)); // lane 7677 TmpInst.addOperand(Inst.getOperand(4)); // CondCode 7678 TmpInst.addOperand(Inst.getOperand(5)); 7679 Inst = TmpInst; 7680 return true; 7681 } 7682 7683 case ARM::VLD1LNdAsm_8: 7684 case ARM::VLD1LNdAsm_16: 7685 case ARM::VLD1LNdAsm_32: { 7686 MCInst TmpInst; 7687 // Shuffle the operands around so the lane index operand is in the 7688 // right place. 7689 unsigned Spacing; 7690 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing)); 7691 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7692 TmpInst.addOperand(Inst.getOperand(2)); // Rn 7693 TmpInst.addOperand(Inst.getOperand(3)); // alignment 7694 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd) 7695 TmpInst.addOperand(Inst.getOperand(1)); // lane 7696 TmpInst.addOperand(Inst.getOperand(4)); // CondCode 7697 TmpInst.addOperand(Inst.getOperand(5)); 7698 Inst = TmpInst; 7699 return true; 7700 } 7701 7702 case ARM::VLD2LNdAsm_8: 7703 case ARM::VLD2LNdAsm_16: 7704 case ARM::VLD2LNdAsm_32: 7705 case ARM::VLD2LNqAsm_16: 7706 case ARM::VLD2LNqAsm_32: { 7707 MCInst TmpInst; 7708 // Shuffle the operands around so the lane index operand is in the 7709 // right place. 7710 unsigned Spacing; 7711 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing)); 7712 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7713 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7714 Spacing)); 7715 TmpInst.addOperand(Inst.getOperand(2)); // Rn 7716 TmpInst.addOperand(Inst.getOperand(3)); // alignment 7717 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd) 7718 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7719 Spacing)); 7720 TmpInst.addOperand(Inst.getOperand(1)); // lane 7721 TmpInst.addOperand(Inst.getOperand(4)); // CondCode 7722 TmpInst.addOperand(Inst.getOperand(5)); 7723 Inst = TmpInst; 7724 return true; 7725 } 7726 7727 case ARM::VLD3LNdAsm_8: 7728 case ARM::VLD3LNdAsm_16: 7729 case ARM::VLD3LNdAsm_32: 7730 case ARM::VLD3LNqAsm_16: 7731 case ARM::VLD3LNqAsm_32: { 7732 MCInst TmpInst; 7733 // Shuffle the operands around so the lane index operand is in the 7734 // right place. 7735 unsigned Spacing; 7736 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing)); 7737 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7738 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7739 Spacing)); 7740 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7741 Spacing * 2)); 7742 TmpInst.addOperand(Inst.getOperand(2)); // Rn 7743 TmpInst.addOperand(Inst.getOperand(3)); // alignment 7744 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd) 7745 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7746 Spacing)); 7747 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7748 Spacing * 2)); 7749 TmpInst.addOperand(Inst.getOperand(1)); // lane 7750 TmpInst.addOperand(Inst.getOperand(4)); // CondCode 7751 TmpInst.addOperand(Inst.getOperand(5)); 7752 Inst = TmpInst; 7753 return true; 7754 } 7755 7756 case ARM::VLD4LNdAsm_8: 7757 case ARM::VLD4LNdAsm_16: 7758 case ARM::VLD4LNdAsm_32: 7759 case ARM::VLD4LNqAsm_16: 7760 case ARM::VLD4LNqAsm_32: { 7761 MCInst TmpInst; 7762 // Shuffle the operands around so the lane index operand is in the 7763 // right place. 7764 unsigned Spacing; 7765 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing)); 7766 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7767 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7768 Spacing)); 7769 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7770 Spacing * 2)); 7771 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7772 Spacing * 3)); 7773 TmpInst.addOperand(Inst.getOperand(2)); // Rn 7774 TmpInst.addOperand(Inst.getOperand(3)); // alignment 7775 TmpInst.addOperand(Inst.getOperand(0)); // Tied operand src (== Vd) 7776 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7777 Spacing)); 7778 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7779 Spacing * 2)); 7780 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7781 Spacing * 3)); 7782 TmpInst.addOperand(Inst.getOperand(1)); // lane 7783 TmpInst.addOperand(Inst.getOperand(4)); // CondCode 7784 TmpInst.addOperand(Inst.getOperand(5)); 7785 Inst = TmpInst; 7786 return true; 7787 } 7788 7789 // VLD3DUP single 3-element structure to all lanes instructions. 7790 case ARM::VLD3DUPdAsm_8: 7791 case ARM::VLD3DUPdAsm_16: 7792 case ARM::VLD3DUPdAsm_32: 7793 case ARM::VLD3DUPqAsm_8: 7794 case ARM::VLD3DUPqAsm_16: 7795 case ARM::VLD3DUPqAsm_32: { 7796 MCInst TmpInst; 7797 unsigned Spacing; 7798 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing)); 7799 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7800 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7801 Spacing)); 7802 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7803 Spacing * 2)); 7804 TmpInst.addOperand(Inst.getOperand(1)); // Rn 7805 TmpInst.addOperand(Inst.getOperand(2)); // alignment 7806 TmpInst.addOperand(Inst.getOperand(3)); // CondCode 7807 TmpInst.addOperand(Inst.getOperand(4)); 7808 Inst = TmpInst; 7809 return true; 7810 } 7811 7812 case ARM::VLD3DUPdWB_fixed_Asm_8: 7813 case ARM::VLD3DUPdWB_fixed_Asm_16: 7814 case ARM::VLD3DUPdWB_fixed_Asm_32: 7815 case ARM::VLD3DUPqWB_fixed_Asm_8: 7816 case ARM::VLD3DUPqWB_fixed_Asm_16: 7817 case ARM::VLD3DUPqWB_fixed_Asm_32: { 7818 MCInst TmpInst; 7819 unsigned Spacing; 7820 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing)); 7821 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7822 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7823 Spacing)); 7824 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7825 Spacing * 2)); 7826 TmpInst.addOperand(Inst.getOperand(1)); // Rn 7827 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn 7828 TmpInst.addOperand(Inst.getOperand(2)); // alignment 7829 TmpInst.addOperand(MCOperand::createReg(0)); // Rm 7830 TmpInst.addOperand(Inst.getOperand(3)); // CondCode 7831 TmpInst.addOperand(Inst.getOperand(4)); 7832 Inst = TmpInst; 7833 return true; 7834 } 7835 7836 case ARM::VLD3DUPdWB_register_Asm_8: 7837 case ARM::VLD3DUPdWB_register_Asm_16: 7838 case ARM::VLD3DUPdWB_register_Asm_32: 7839 case ARM::VLD3DUPqWB_register_Asm_8: 7840 case ARM::VLD3DUPqWB_register_Asm_16: 7841 case ARM::VLD3DUPqWB_register_Asm_32: { 7842 MCInst TmpInst; 7843 unsigned Spacing; 7844 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing)); 7845 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7846 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7847 Spacing)); 7848 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7849 Spacing * 2)); 7850 TmpInst.addOperand(Inst.getOperand(1)); // Rn 7851 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn 7852 TmpInst.addOperand(Inst.getOperand(2)); // alignment 7853 TmpInst.addOperand(Inst.getOperand(3)); // Rm 7854 TmpInst.addOperand(Inst.getOperand(4)); // CondCode 7855 TmpInst.addOperand(Inst.getOperand(5)); 7856 Inst = TmpInst; 7857 return true; 7858 } 7859 7860 // VLD3 multiple 3-element structure instructions. 7861 case ARM::VLD3dAsm_8: 7862 case ARM::VLD3dAsm_16: 7863 case ARM::VLD3dAsm_32: 7864 case ARM::VLD3qAsm_8: 7865 case ARM::VLD3qAsm_16: 7866 case ARM::VLD3qAsm_32: { 7867 MCInst TmpInst; 7868 unsigned Spacing; 7869 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing)); 7870 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7871 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7872 Spacing)); 7873 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7874 Spacing * 2)); 7875 TmpInst.addOperand(Inst.getOperand(1)); // Rn 7876 TmpInst.addOperand(Inst.getOperand(2)); // alignment 7877 TmpInst.addOperand(Inst.getOperand(3)); // CondCode 7878 TmpInst.addOperand(Inst.getOperand(4)); 7879 Inst = TmpInst; 7880 return true; 7881 } 7882 7883 case ARM::VLD3dWB_fixed_Asm_8: 7884 case ARM::VLD3dWB_fixed_Asm_16: 7885 case ARM::VLD3dWB_fixed_Asm_32: 7886 case ARM::VLD3qWB_fixed_Asm_8: 7887 case ARM::VLD3qWB_fixed_Asm_16: 7888 case ARM::VLD3qWB_fixed_Asm_32: { 7889 MCInst TmpInst; 7890 unsigned Spacing; 7891 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing)); 7892 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7893 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7894 Spacing)); 7895 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7896 Spacing * 2)); 7897 TmpInst.addOperand(Inst.getOperand(1)); // Rn 7898 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn 7899 TmpInst.addOperand(Inst.getOperand(2)); // alignment 7900 TmpInst.addOperand(MCOperand::createReg(0)); // Rm 7901 TmpInst.addOperand(Inst.getOperand(3)); // CondCode 7902 TmpInst.addOperand(Inst.getOperand(4)); 7903 Inst = TmpInst; 7904 return true; 7905 } 7906 7907 case ARM::VLD3dWB_register_Asm_8: 7908 case ARM::VLD3dWB_register_Asm_16: 7909 case ARM::VLD3dWB_register_Asm_32: 7910 case ARM::VLD3qWB_register_Asm_8: 7911 case ARM::VLD3qWB_register_Asm_16: 7912 case ARM::VLD3qWB_register_Asm_32: { 7913 MCInst TmpInst; 7914 unsigned Spacing; 7915 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing)); 7916 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7917 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7918 Spacing)); 7919 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7920 Spacing * 2)); 7921 TmpInst.addOperand(Inst.getOperand(1)); // Rn 7922 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn 7923 TmpInst.addOperand(Inst.getOperand(2)); // alignment 7924 TmpInst.addOperand(Inst.getOperand(3)); // Rm 7925 TmpInst.addOperand(Inst.getOperand(4)); // CondCode 7926 TmpInst.addOperand(Inst.getOperand(5)); 7927 Inst = TmpInst; 7928 return true; 7929 } 7930 7931 // VLD4DUP single 3-element structure to all lanes instructions. 7932 case ARM::VLD4DUPdAsm_8: 7933 case ARM::VLD4DUPdAsm_16: 7934 case ARM::VLD4DUPdAsm_32: 7935 case ARM::VLD4DUPqAsm_8: 7936 case ARM::VLD4DUPqAsm_16: 7937 case ARM::VLD4DUPqAsm_32: { 7938 MCInst TmpInst; 7939 unsigned Spacing; 7940 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing)); 7941 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7942 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7943 Spacing)); 7944 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7945 Spacing * 2)); 7946 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7947 Spacing * 3)); 7948 TmpInst.addOperand(Inst.getOperand(1)); // Rn 7949 TmpInst.addOperand(Inst.getOperand(2)); // alignment 7950 TmpInst.addOperand(Inst.getOperand(3)); // CondCode 7951 TmpInst.addOperand(Inst.getOperand(4)); 7952 Inst = TmpInst; 7953 return true; 7954 } 7955 7956 case ARM::VLD4DUPdWB_fixed_Asm_8: 7957 case ARM::VLD4DUPdWB_fixed_Asm_16: 7958 case ARM::VLD4DUPdWB_fixed_Asm_32: 7959 case ARM::VLD4DUPqWB_fixed_Asm_8: 7960 case ARM::VLD4DUPqWB_fixed_Asm_16: 7961 case ARM::VLD4DUPqWB_fixed_Asm_32: { 7962 MCInst TmpInst; 7963 unsigned Spacing; 7964 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing)); 7965 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7966 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7967 Spacing)); 7968 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7969 Spacing * 2)); 7970 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7971 Spacing * 3)); 7972 TmpInst.addOperand(Inst.getOperand(1)); // Rn 7973 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn 7974 TmpInst.addOperand(Inst.getOperand(2)); // alignment 7975 TmpInst.addOperand(MCOperand::createReg(0)); // Rm 7976 TmpInst.addOperand(Inst.getOperand(3)); // CondCode 7977 TmpInst.addOperand(Inst.getOperand(4)); 7978 Inst = TmpInst; 7979 return true; 7980 } 7981 7982 case ARM::VLD4DUPdWB_register_Asm_8: 7983 case ARM::VLD4DUPdWB_register_Asm_16: 7984 case ARM::VLD4DUPdWB_register_Asm_32: 7985 case ARM::VLD4DUPqWB_register_Asm_8: 7986 case ARM::VLD4DUPqWB_register_Asm_16: 7987 case ARM::VLD4DUPqWB_register_Asm_32: { 7988 MCInst TmpInst; 7989 unsigned Spacing; 7990 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing)); 7991 TmpInst.addOperand(Inst.getOperand(0)); // Vd 7992 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7993 Spacing)); 7994 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7995 Spacing * 2)); 7996 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 7997 Spacing * 3)); 7998 TmpInst.addOperand(Inst.getOperand(1)); // Rn 7999 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn 8000 TmpInst.addOperand(Inst.getOperand(2)); // alignment 8001 TmpInst.addOperand(Inst.getOperand(3)); // Rm 8002 TmpInst.addOperand(Inst.getOperand(4)); // CondCode 8003 TmpInst.addOperand(Inst.getOperand(5)); 8004 Inst = TmpInst; 8005 return true; 8006 } 8007 8008 // VLD4 multiple 4-element structure instructions. 8009 case ARM::VLD4dAsm_8: 8010 case ARM::VLD4dAsm_16: 8011 case ARM::VLD4dAsm_32: 8012 case ARM::VLD4qAsm_8: 8013 case ARM::VLD4qAsm_16: 8014 case ARM::VLD4qAsm_32: { 8015 MCInst TmpInst; 8016 unsigned Spacing; 8017 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing)); 8018 TmpInst.addOperand(Inst.getOperand(0)); // Vd 8019 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 8020 Spacing)); 8021 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 8022 Spacing * 2)); 8023 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 8024 Spacing * 3)); 8025 TmpInst.addOperand(Inst.getOperand(1)); // Rn 8026 TmpInst.addOperand(Inst.getOperand(2)); // alignment 8027 TmpInst.addOperand(Inst.getOperand(3)); // CondCode 8028 TmpInst.addOperand(Inst.getOperand(4)); 8029 Inst = TmpInst; 8030 return true; 8031 } 8032 8033 case ARM::VLD4dWB_fixed_Asm_8: 8034 case ARM::VLD4dWB_fixed_Asm_16: 8035 case ARM::VLD4dWB_fixed_Asm_32: 8036 case ARM::VLD4qWB_fixed_Asm_8: 8037 case ARM::VLD4qWB_fixed_Asm_16: 8038 case ARM::VLD4qWB_fixed_Asm_32: { 8039 MCInst TmpInst; 8040 unsigned Spacing; 8041 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing)); 8042 TmpInst.addOperand(Inst.getOperand(0)); // Vd 8043 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 8044 Spacing)); 8045 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 8046 Spacing * 2)); 8047 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 8048 Spacing * 3)); 8049 TmpInst.addOperand(Inst.getOperand(1)); // Rn 8050 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn 8051 TmpInst.addOperand(Inst.getOperand(2)); // alignment 8052 TmpInst.addOperand(MCOperand::createReg(0)); // Rm 8053 TmpInst.addOperand(Inst.getOperand(3)); // CondCode 8054 TmpInst.addOperand(Inst.getOperand(4)); 8055 Inst = TmpInst; 8056 return true; 8057 } 8058 8059 case ARM::VLD4dWB_register_Asm_8: 8060 case ARM::VLD4dWB_register_Asm_16: 8061 case ARM::VLD4dWB_register_Asm_32: 8062 case ARM::VLD4qWB_register_Asm_8: 8063 case ARM::VLD4qWB_register_Asm_16: 8064 case ARM::VLD4qWB_register_Asm_32: { 8065 MCInst TmpInst; 8066 unsigned Spacing; 8067 TmpInst.setOpcode(getRealVLDOpcode(Inst.getOpcode(), Spacing)); 8068 TmpInst.addOperand(Inst.getOperand(0)); // Vd 8069 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 8070 Spacing)); 8071 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 8072 Spacing * 2)); 8073 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 8074 Spacing * 3)); 8075 TmpInst.addOperand(Inst.getOperand(1)); // Rn 8076 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn 8077 TmpInst.addOperand(Inst.getOperand(2)); // alignment 8078 TmpInst.addOperand(Inst.getOperand(3)); // Rm 8079 TmpInst.addOperand(Inst.getOperand(4)); // CondCode 8080 TmpInst.addOperand(Inst.getOperand(5)); 8081 Inst = TmpInst; 8082 return true; 8083 } 8084 8085 // VST3 multiple 3-element structure instructions. 8086 case ARM::VST3dAsm_8: 8087 case ARM::VST3dAsm_16: 8088 case ARM::VST3dAsm_32: 8089 case ARM::VST3qAsm_8: 8090 case ARM::VST3qAsm_16: 8091 case ARM::VST3qAsm_32: { 8092 MCInst TmpInst; 8093 unsigned Spacing; 8094 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing)); 8095 TmpInst.addOperand(Inst.getOperand(1)); // Rn 8096 TmpInst.addOperand(Inst.getOperand(2)); // alignment 8097 TmpInst.addOperand(Inst.getOperand(0)); // Vd 8098 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 8099 Spacing)); 8100 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 8101 Spacing * 2)); 8102 TmpInst.addOperand(Inst.getOperand(3)); // CondCode 8103 TmpInst.addOperand(Inst.getOperand(4)); 8104 Inst = TmpInst; 8105 return true; 8106 } 8107 8108 case ARM::VST3dWB_fixed_Asm_8: 8109 case ARM::VST3dWB_fixed_Asm_16: 8110 case ARM::VST3dWB_fixed_Asm_32: 8111 case ARM::VST3qWB_fixed_Asm_8: 8112 case ARM::VST3qWB_fixed_Asm_16: 8113 case ARM::VST3qWB_fixed_Asm_32: { 8114 MCInst TmpInst; 8115 unsigned Spacing; 8116 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing)); 8117 TmpInst.addOperand(Inst.getOperand(1)); // Rn 8118 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn 8119 TmpInst.addOperand(Inst.getOperand(2)); // alignment 8120 TmpInst.addOperand(MCOperand::createReg(0)); // Rm 8121 TmpInst.addOperand(Inst.getOperand(0)); // Vd 8122 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 8123 Spacing)); 8124 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 8125 Spacing * 2)); 8126 TmpInst.addOperand(Inst.getOperand(3)); // CondCode 8127 TmpInst.addOperand(Inst.getOperand(4)); 8128 Inst = TmpInst; 8129 return true; 8130 } 8131 8132 case ARM::VST3dWB_register_Asm_8: 8133 case ARM::VST3dWB_register_Asm_16: 8134 case ARM::VST3dWB_register_Asm_32: 8135 case ARM::VST3qWB_register_Asm_8: 8136 case ARM::VST3qWB_register_Asm_16: 8137 case ARM::VST3qWB_register_Asm_32: { 8138 MCInst TmpInst; 8139 unsigned Spacing; 8140 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing)); 8141 TmpInst.addOperand(Inst.getOperand(1)); // Rn 8142 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn 8143 TmpInst.addOperand(Inst.getOperand(2)); // alignment 8144 TmpInst.addOperand(Inst.getOperand(3)); // Rm 8145 TmpInst.addOperand(Inst.getOperand(0)); // Vd 8146 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 8147 Spacing)); 8148 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 8149 Spacing * 2)); 8150 TmpInst.addOperand(Inst.getOperand(4)); // CondCode 8151 TmpInst.addOperand(Inst.getOperand(5)); 8152 Inst = TmpInst; 8153 return true; 8154 } 8155 8156 // VST4 multiple 3-element structure instructions. 8157 case ARM::VST4dAsm_8: 8158 case ARM::VST4dAsm_16: 8159 case ARM::VST4dAsm_32: 8160 case ARM::VST4qAsm_8: 8161 case ARM::VST4qAsm_16: 8162 case ARM::VST4qAsm_32: { 8163 MCInst TmpInst; 8164 unsigned Spacing; 8165 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing)); 8166 TmpInst.addOperand(Inst.getOperand(1)); // Rn 8167 TmpInst.addOperand(Inst.getOperand(2)); // alignment 8168 TmpInst.addOperand(Inst.getOperand(0)); // Vd 8169 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 8170 Spacing)); 8171 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 8172 Spacing * 2)); 8173 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 8174 Spacing * 3)); 8175 TmpInst.addOperand(Inst.getOperand(3)); // CondCode 8176 TmpInst.addOperand(Inst.getOperand(4)); 8177 Inst = TmpInst; 8178 return true; 8179 } 8180 8181 case ARM::VST4dWB_fixed_Asm_8: 8182 case ARM::VST4dWB_fixed_Asm_16: 8183 case ARM::VST4dWB_fixed_Asm_32: 8184 case ARM::VST4qWB_fixed_Asm_8: 8185 case ARM::VST4qWB_fixed_Asm_16: 8186 case ARM::VST4qWB_fixed_Asm_32: { 8187 MCInst TmpInst; 8188 unsigned Spacing; 8189 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing)); 8190 TmpInst.addOperand(Inst.getOperand(1)); // Rn 8191 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn 8192 TmpInst.addOperand(Inst.getOperand(2)); // alignment 8193 TmpInst.addOperand(MCOperand::createReg(0)); // Rm 8194 TmpInst.addOperand(Inst.getOperand(0)); // Vd 8195 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 8196 Spacing)); 8197 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 8198 Spacing * 2)); 8199 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 8200 Spacing * 3)); 8201 TmpInst.addOperand(Inst.getOperand(3)); // CondCode 8202 TmpInst.addOperand(Inst.getOperand(4)); 8203 Inst = TmpInst; 8204 return true; 8205 } 8206 8207 case ARM::VST4dWB_register_Asm_8: 8208 case ARM::VST4dWB_register_Asm_16: 8209 case ARM::VST4dWB_register_Asm_32: 8210 case ARM::VST4qWB_register_Asm_8: 8211 case ARM::VST4qWB_register_Asm_16: 8212 case ARM::VST4qWB_register_Asm_32: { 8213 MCInst TmpInst; 8214 unsigned Spacing; 8215 TmpInst.setOpcode(getRealVSTOpcode(Inst.getOpcode(), Spacing)); 8216 TmpInst.addOperand(Inst.getOperand(1)); // Rn 8217 TmpInst.addOperand(Inst.getOperand(1)); // Rn_wb == tied Rn 8218 TmpInst.addOperand(Inst.getOperand(2)); // alignment 8219 TmpInst.addOperand(Inst.getOperand(3)); // Rm 8220 TmpInst.addOperand(Inst.getOperand(0)); // Vd 8221 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 8222 Spacing)); 8223 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 8224 Spacing * 2)); 8225 TmpInst.addOperand(MCOperand::createReg(Inst.getOperand(0).getReg() + 8226 Spacing * 3)); 8227 TmpInst.addOperand(Inst.getOperand(4)); // CondCode 8228 TmpInst.addOperand(Inst.getOperand(5)); 8229 Inst = TmpInst; 8230 return true; 8231 } 8232 8233 // Handle encoding choice for the shift-immediate instructions. 8234 case ARM::t2LSLri: 8235 case ARM::t2LSRri: 8236 case ARM::t2ASRri: { 8237 if (isARMLowRegister(Inst.getOperand(0).getReg()) && 8238 Inst.getOperand(0).getReg() == Inst.getOperand(1).getReg() && 8239 Inst.getOperand(5).getReg() == (inITBlock() ? 0 : ARM::CPSR) && 8240 !(static_cast<ARMOperand &>(*Operands[3]).isToken() && 8241 static_cast<ARMOperand &>(*Operands[3]).getToken() == ".w")) { 8242 unsigned NewOpc; 8243 switch (Inst.getOpcode()) { 8244 default: llvm_unreachable("unexpected opcode"); 8245 case ARM::t2LSLri: NewOpc = ARM::tLSLri; break; 8246 case ARM::t2LSRri: NewOpc = ARM::tLSRri; break; 8247 case ARM::t2ASRri: NewOpc = ARM::tASRri; break; 8248 } 8249 // The Thumb1 operands aren't in the same order. Awesome, eh? 8250 MCInst TmpInst; 8251 TmpInst.setOpcode(NewOpc); 8252 TmpInst.addOperand(Inst.getOperand(0)); 8253 TmpInst.addOperand(Inst.getOperand(5)); 8254 TmpInst.addOperand(Inst.getOperand(1)); 8255 TmpInst.addOperand(Inst.getOperand(2)); 8256 TmpInst.addOperand(Inst.getOperand(3)); 8257 TmpInst.addOperand(Inst.getOperand(4)); 8258 Inst = TmpInst; 8259 return true; 8260 } 8261 return false; 8262 } 8263 8264 // Handle the Thumb2 mode MOV complex aliases. 8265 case ARM::t2MOVsr: 8266 case ARM::t2MOVSsr: { 8267 // Which instruction to expand to depends on the CCOut operand and 8268 // whether we're in an IT block if the register operands are low 8269 // registers. 8270 bool isNarrow = false; 8271 if (isARMLowRegister(Inst.getOperand(0).getReg()) && 8272 isARMLowRegister(Inst.getOperand(1).getReg()) && 8273 isARMLowRegister(Inst.getOperand(2).getReg()) && 8274 Inst.getOperand(0).getReg() == Inst.getOperand(1).getReg() && 8275 inITBlock() == (Inst.getOpcode() == ARM::t2MOVsr)) 8276 isNarrow = true; 8277 MCInst TmpInst; 8278 unsigned newOpc; 8279 switch(ARM_AM::getSORegShOp(Inst.getOperand(3).getImm())) { 8280 default: llvm_unreachable("unexpected opcode!"); 8281 case ARM_AM::asr: newOpc = isNarrow ? ARM::tASRrr : ARM::t2ASRrr; break; 8282 case ARM_AM::lsr: newOpc = isNarrow ? ARM::tLSRrr : ARM::t2LSRrr; break; 8283 case ARM_AM::lsl: newOpc = isNarrow ? ARM::tLSLrr : ARM::t2LSLrr; break; 8284 case ARM_AM::ror: newOpc = isNarrow ? ARM::tROR : ARM::t2RORrr; break; 8285 } 8286 TmpInst.setOpcode(newOpc); 8287 TmpInst.addOperand(Inst.getOperand(0)); // Rd 8288 if (isNarrow) 8289 TmpInst.addOperand(MCOperand::createReg( 8290 Inst.getOpcode() == ARM::t2MOVSsr ? ARM::CPSR : 0)); 8291 TmpInst.addOperand(Inst.getOperand(1)); // Rn 8292 TmpInst.addOperand(Inst.getOperand(2)); // Rm 8293 TmpInst.addOperand(Inst.getOperand(4)); // CondCode 8294 TmpInst.addOperand(Inst.getOperand(5)); 8295 if (!isNarrow) 8296 TmpInst.addOperand(MCOperand::createReg( 8297 Inst.getOpcode() == ARM::t2MOVSsr ? ARM::CPSR : 0)); 8298 Inst = TmpInst; 8299 return true; 8300 } 8301 case ARM::t2MOVsi: 8302 case ARM::t2MOVSsi: { 8303 // Which instruction to expand to depends on the CCOut operand and 8304 // whether we're in an IT block if the register operands are low 8305 // registers. 8306 bool isNarrow = false; 8307 if (isARMLowRegister(Inst.getOperand(0).getReg()) && 8308 isARMLowRegister(Inst.getOperand(1).getReg()) && 8309 inITBlock() == (Inst.getOpcode() == ARM::t2MOVsi)) 8310 isNarrow = true; 8311 MCInst TmpInst; 8312 unsigned newOpc; 8313 switch(ARM_AM::getSORegShOp(Inst.getOperand(2).getImm())) { 8314 default: llvm_unreachable("unexpected opcode!"); 8315 case ARM_AM::asr: newOpc = isNarrow ? ARM::tASRri : ARM::t2ASRri; break; 8316 case ARM_AM::lsr: newOpc = isNarrow ? ARM::tLSRri : ARM::t2LSRri; break; 8317 case ARM_AM::lsl: newOpc = isNarrow ? ARM::tLSLri : ARM::t2LSLri; break; 8318 case ARM_AM::ror: newOpc = ARM::t2RORri; isNarrow = false; break; 8319 case ARM_AM::rrx: isNarrow = false; newOpc = ARM::t2RRX; break; 8320 } 8321 unsigned Amount = ARM_AM::getSORegOffset(Inst.getOperand(2).getImm()); 8322 if (Amount == 32) Amount = 0; 8323 TmpInst.setOpcode(newOpc); 8324 TmpInst.addOperand(Inst.getOperand(0)); // Rd 8325 if (isNarrow) 8326 TmpInst.addOperand(MCOperand::createReg( 8327 Inst.getOpcode() == ARM::t2MOVSsi ? ARM::CPSR : 0)); 8328 TmpInst.addOperand(Inst.getOperand(1)); // Rn 8329 if (newOpc != ARM::t2RRX) 8330 TmpInst.addOperand(MCOperand::createImm(Amount)); 8331 TmpInst.addOperand(Inst.getOperand(3)); // CondCode 8332 TmpInst.addOperand(Inst.getOperand(4)); 8333 if (!isNarrow) 8334 TmpInst.addOperand(MCOperand::createReg( 8335 Inst.getOpcode() == ARM::t2MOVSsi ? ARM::CPSR : 0)); 8336 Inst = TmpInst; 8337 return true; 8338 } 8339 // Handle the ARM mode MOV complex aliases. 8340 case ARM::ASRr: 8341 case ARM::LSRr: 8342 case ARM::LSLr: 8343 case ARM::RORr: { 8344 ARM_AM::ShiftOpc ShiftTy; 8345 switch(Inst.getOpcode()) { 8346 default: llvm_unreachable("unexpected opcode!"); 8347 case ARM::ASRr: ShiftTy = ARM_AM::asr; break; 8348 case ARM::LSRr: ShiftTy = ARM_AM::lsr; break; 8349 case ARM::LSLr: ShiftTy = ARM_AM::lsl; break; 8350 case ARM::RORr: ShiftTy = ARM_AM::ror; break; 8351 } 8352 unsigned Shifter = ARM_AM::getSORegOpc(ShiftTy, 0); 8353 MCInst TmpInst; 8354 TmpInst.setOpcode(ARM::MOVsr); 8355 TmpInst.addOperand(Inst.getOperand(0)); // Rd 8356 TmpInst.addOperand(Inst.getOperand(1)); // Rn 8357 TmpInst.addOperand(Inst.getOperand(2)); // Rm 8358 TmpInst.addOperand(MCOperand::createImm(Shifter)); // Shift value and ty 8359 TmpInst.addOperand(Inst.getOperand(3)); // CondCode 8360 TmpInst.addOperand(Inst.getOperand(4)); 8361 TmpInst.addOperand(Inst.getOperand(5)); // cc_out 8362 Inst = TmpInst; 8363 return true; 8364 } 8365 case ARM::ASRi: 8366 case ARM::LSRi: 8367 case ARM::LSLi: 8368 case ARM::RORi: { 8369 ARM_AM::ShiftOpc ShiftTy; 8370 switch(Inst.getOpcode()) { 8371 default: llvm_unreachable("unexpected opcode!"); 8372 case ARM::ASRi: ShiftTy = ARM_AM::asr; break; 8373 case ARM::LSRi: ShiftTy = ARM_AM::lsr; break; 8374 case ARM::LSLi: ShiftTy = ARM_AM::lsl; break; 8375 case ARM::RORi: ShiftTy = ARM_AM::ror; break; 8376 } 8377 // A shift by zero is a plain MOVr, not a MOVsi. 8378 unsigned Amt = Inst.getOperand(2).getImm(); 8379 unsigned Opc = Amt == 0 ? ARM::MOVr : ARM::MOVsi; 8380 // A shift by 32 should be encoded as 0 when permitted 8381 if (Amt == 32 && (ShiftTy == ARM_AM::lsr || ShiftTy == ARM_AM::asr)) 8382 Amt = 0; 8383 unsigned Shifter = ARM_AM::getSORegOpc(ShiftTy, Amt); 8384 MCInst TmpInst; 8385 TmpInst.setOpcode(Opc); 8386 TmpInst.addOperand(Inst.getOperand(0)); // Rd 8387 TmpInst.addOperand(Inst.getOperand(1)); // Rn 8388 if (Opc == ARM::MOVsi) 8389 TmpInst.addOperand(MCOperand::createImm(Shifter)); // Shift value and ty 8390 TmpInst.addOperand(Inst.getOperand(3)); // CondCode 8391 TmpInst.addOperand(Inst.getOperand(4)); 8392 TmpInst.addOperand(Inst.getOperand(5)); // cc_out 8393 Inst = TmpInst; 8394 return true; 8395 } 8396 case ARM::RRXi: { 8397 unsigned Shifter = ARM_AM::getSORegOpc(ARM_AM::rrx, 0); 8398 MCInst TmpInst; 8399 TmpInst.setOpcode(ARM::MOVsi); 8400 TmpInst.addOperand(Inst.getOperand(0)); // Rd 8401 TmpInst.addOperand(Inst.getOperand(1)); // Rn 8402 TmpInst.addOperand(MCOperand::createImm(Shifter)); // Shift value and ty 8403 TmpInst.addOperand(Inst.getOperand(2)); // CondCode 8404 TmpInst.addOperand(Inst.getOperand(3)); 8405 TmpInst.addOperand(Inst.getOperand(4)); // cc_out 8406 Inst = TmpInst; 8407 return true; 8408 } 8409 case ARM::t2LDMIA_UPD: { 8410 // If this is a load of a single register, then we should use 8411 // a post-indexed LDR instruction instead, per the ARM ARM. 8412 if (Inst.getNumOperands() != 5) 8413 return false; 8414 MCInst TmpInst; 8415 TmpInst.setOpcode(ARM::t2LDR_POST); 8416 TmpInst.addOperand(Inst.getOperand(4)); // Rt 8417 TmpInst.addOperand(Inst.getOperand(0)); // Rn_wb 8418 TmpInst.addOperand(Inst.getOperand(1)); // Rn 8419 TmpInst.addOperand(MCOperand::createImm(4)); 8420 TmpInst.addOperand(Inst.getOperand(2)); // CondCode 8421 TmpInst.addOperand(Inst.getOperand(3)); 8422 Inst = TmpInst; 8423 return true; 8424 } 8425 case ARM::t2STMDB_UPD: { 8426 // If this is a store of a single register, then we should use 8427 // a pre-indexed STR instruction instead, per the ARM ARM. 8428 if (Inst.getNumOperands() != 5) 8429 return false; 8430 MCInst TmpInst; 8431 TmpInst.setOpcode(ARM::t2STR_PRE); 8432 TmpInst.addOperand(Inst.getOperand(0)); // Rn_wb 8433 TmpInst.addOperand(Inst.getOperand(4)); // Rt 8434 TmpInst.addOperand(Inst.getOperand(1)); // Rn 8435 TmpInst.addOperand(MCOperand::createImm(-4)); 8436 TmpInst.addOperand(Inst.getOperand(2)); // CondCode 8437 TmpInst.addOperand(Inst.getOperand(3)); 8438 Inst = TmpInst; 8439 return true; 8440 } 8441 case ARM::LDMIA_UPD: 8442 // If this is a load of a single register via a 'pop', then we should use 8443 // a post-indexed LDR instruction instead, per the ARM ARM. 8444 if (static_cast<ARMOperand &>(*Operands[0]).getToken() == "pop" && 8445 Inst.getNumOperands() == 5) { 8446 MCInst TmpInst; 8447 TmpInst.setOpcode(ARM::LDR_POST_IMM); 8448 TmpInst.addOperand(Inst.getOperand(4)); // Rt 8449 TmpInst.addOperand(Inst.getOperand(0)); // Rn_wb 8450 TmpInst.addOperand(Inst.getOperand(1)); // Rn 8451 TmpInst.addOperand(MCOperand::createReg(0)); // am2offset 8452 TmpInst.addOperand(MCOperand::createImm(4)); 8453 TmpInst.addOperand(Inst.getOperand(2)); // CondCode 8454 TmpInst.addOperand(Inst.getOperand(3)); 8455 Inst = TmpInst; 8456 return true; 8457 } 8458 break; 8459 case ARM::STMDB_UPD: 8460 // If this is a store of a single register via a 'push', then we should use 8461 // a pre-indexed STR instruction instead, per the ARM ARM. 8462 if (static_cast<ARMOperand &>(*Operands[0]).getToken() == "push" && 8463 Inst.getNumOperands() == 5) { 8464 MCInst TmpInst; 8465 TmpInst.setOpcode(ARM::STR_PRE_IMM); 8466 TmpInst.addOperand(Inst.getOperand(0)); // Rn_wb 8467 TmpInst.addOperand(Inst.getOperand(4)); // Rt 8468 TmpInst.addOperand(Inst.getOperand(1)); // addrmode_imm12 8469 TmpInst.addOperand(MCOperand::createImm(-4)); 8470 TmpInst.addOperand(Inst.getOperand(2)); // CondCode 8471 TmpInst.addOperand(Inst.getOperand(3)); 8472 Inst = TmpInst; 8473 } 8474 break; 8475 case ARM::t2ADDri12: 8476 // If the immediate fits for encoding T3 (t2ADDri) and the generic "add" 8477 // mnemonic was used (not "addw"), encoding T3 is preferred. 8478 if (static_cast<ARMOperand &>(*Operands[0]).getToken() != "add" || 8479 ARM_AM::getT2SOImmVal(Inst.getOperand(2).getImm()) == -1) 8480 break; 8481 Inst.setOpcode(ARM::t2ADDri); 8482 Inst.addOperand(MCOperand::createReg(0)); // cc_out 8483 break; 8484 case ARM::t2SUBri12: 8485 // If the immediate fits for encoding T3 (t2SUBri) and the generic "sub" 8486 // mnemonic was used (not "subw"), encoding T3 is preferred. 8487 if (static_cast<ARMOperand &>(*Operands[0]).getToken() != "sub" || 8488 ARM_AM::getT2SOImmVal(Inst.getOperand(2).getImm()) == -1) 8489 break; 8490 Inst.setOpcode(ARM::t2SUBri); 8491 Inst.addOperand(MCOperand::createReg(0)); // cc_out 8492 break; 8493 case ARM::tADDi8: 8494 // If the immediate is in the range 0-7, we want tADDi3 iff Rd was 8495 // explicitly specified. From the ARM ARM: "Encoding T1 is preferred 8496 // to encoding T2 if <Rd> is specified and encoding T2 is preferred 8497 // to encoding T1 if <Rd> is omitted." 8498 if ((unsigned)Inst.getOperand(3).getImm() < 8 && Operands.size() == 6) { 8499 Inst.setOpcode(ARM::tADDi3); 8500 return true; 8501 } 8502 break; 8503 case ARM::tSUBi8: 8504 // If the immediate is in the range 0-7, we want tADDi3 iff Rd was 8505 // explicitly specified. From the ARM ARM: "Encoding T1 is preferred 8506 // to encoding T2 if <Rd> is specified and encoding T2 is preferred 8507 // to encoding T1 if <Rd> is omitted." 8508 if ((unsigned)Inst.getOperand(3).getImm() < 8 && Operands.size() == 6) { 8509 Inst.setOpcode(ARM::tSUBi3); 8510 return true; 8511 } 8512 break; 8513 case ARM::t2ADDri: 8514 case ARM::t2SUBri: { 8515 // If the destination and first source operand are the same, and 8516 // the flags are compatible with the current IT status, use encoding T2 8517 // instead of T3. For compatibility with the system 'as'. Make sure the 8518 // wide encoding wasn't explicit. 8519 if (Inst.getOperand(0).getReg() != Inst.getOperand(1).getReg() || 8520 !isARMLowRegister(Inst.getOperand(0).getReg()) || 8521 (unsigned)Inst.getOperand(2).getImm() > 255 || 8522 ((!inITBlock() && Inst.getOperand(5).getReg() != ARM::CPSR) || 8523 (inITBlock() && Inst.getOperand(5).getReg() != 0)) || 8524 (static_cast<ARMOperand &>(*Operands[3]).isToken() && 8525 static_cast<ARMOperand &>(*Operands[3]).getToken() == ".w")) 8526 break; 8527 MCInst TmpInst; 8528 TmpInst.setOpcode(Inst.getOpcode() == ARM::t2ADDri ? 8529 ARM::tADDi8 : ARM::tSUBi8); 8530 TmpInst.addOperand(Inst.getOperand(0)); 8531 TmpInst.addOperand(Inst.getOperand(5)); 8532 TmpInst.addOperand(Inst.getOperand(0)); 8533 TmpInst.addOperand(Inst.getOperand(2)); 8534 TmpInst.addOperand(Inst.getOperand(3)); 8535 TmpInst.addOperand(Inst.getOperand(4)); 8536 Inst = TmpInst; 8537 return true; 8538 } 8539 case ARM::t2ADDrr: { 8540 // If the destination and first source operand are the same, and 8541 // there's no setting of the flags, use encoding T2 instead of T3. 8542 // Note that this is only for ADD, not SUB. This mirrors the system 8543 // 'as' behaviour. Also take advantage of ADD being commutative. 8544 // Make sure the wide encoding wasn't explicit. 8545 bool Swap = false; 8546 auto DestReg = Inst.getOperand(0).getReg(); 8547 bool Transform = DestReg == Inst.getOperand(1).getReg(); 8548 if (!Transform && DestReg == Inst.getOperand(2).getReg()) { 8549 Transform = true; 8550 Swap = true; 8551 } 8552 if (!Transform || 8553 Inst.getOperand(5).getReg() != 0 || 8554 (static_cast<ARMOperand &>(*Operands[3]).isToken() && 8555 static_cast<ARMOperand &>(*Operands[3]).getToken() == ".w")) 8556 break; 8557 MCInst TmpInst; 8558 TmpInst.setOpcode(ARM::tADDhirr); 8559 TmpInst.addOperand(Inst.getOperand(0)); 8560 TmpInst.addOperand(Inst.getOperand(0)); 8561 TmpInst.addOperand(Inst.getOperand(Swap ? 1 : 2)); 8562 TmpInst.addOperand(Inst.getOperand(3)); 8563 TmpInst.addOperand(Inst.getOperand(4)); 8564 Inst = TmpInst; 8565 return true; 8566 } 8567 case ARM::tADDrSP: { 8568 // If the non-SP source operand and the destination operand are not the 8569 // same, we need to use the 32-bit encoding if it's available. 8570 if (Inst.getOperand(0).getReg() != Inst.getOperand(2).getReg()) { 8571 Inst.setOpcode(ARM::t2ADDrr); 8572 Inst.addOperand(MCOperand::createReg(0)); // cc_out 8573 return true; 8574 } 8575 break; 8576 } 8577 case ARM::tB: 8578 // A Thumb conditional branch outside of an IT block is a tBcc. 8579 if (Inst.getOperand(1).getImm() != ARMCC::AL && !inITBlock()) { 8580 Inst.setOpcode(ARM::tBcc); 8581 return true; 8582 } 8583 break; 8584 case ARM::t2B: 8585 // A Thumb2 conditional branch outside of an IT block is a t2Bcc. 8586 if (Inst.getOperand(1).getImm() != ARMCC::AL && !inITBlock()){ 8587 Inst.setOpcode(ARM::t2Bcc); 8588 return true; 8589 } 8590 break; 8591 case ARM::t2Bcc: 8592 // If the conditional is AL or we're in an IT block, we really want t2B. 8593 if (Inst.getOperand(1).getImm() == ARMCC::AL || inITBlock()) { 8594 Inst.setOpcode(ARM::t2B); 8595 return true; 8596 } 8597 break; 8598 case ARM::tBcc: 8599 // If the conditional is AL, we really want tB. 8600 if (Inst.getOperand(1).getImm() == ARMCC::AL) { 8601 Inst.setOpcode(ARM::tB); 8602 return true; 8603 } 8604 break; 8605 case ARM::tLDMIA: { 8606 // If the register list contains any high registers, or if the writeback 8607 // doesn't match what tLDMIA can do, we need to use the 32-bit encoding 8608 // instead if we're in Thumb2. Otherwise, this should have generated 8609 // an error in validateInstruction(). 8610 unsigned Rn = Inst.getOperand(0).getReg(); 8611 bool hasWritebackToken = 8612 (static_cast<ARMOperand &>(*Operands[3]).isToken() && 8613 static_cast<ARMOperand &>(*Operands[3]).getToken() == "!"); 8614 bool listContainsBase; 8615 if (checkLowRegisterList(Inst, 3, Rn, 0, listContainsBase) || 8616 (!listContainsBase && !hasWritebackToken) || 8617 (listContainsBase && hasWritebackToken)) { 8618 // 16-bit encoding isn't sufficient. Switch to the 32-bit version. 8619 assert (isThumbTwo()); 8620 Inst.setOpcode(hasWritebackToken ? ARM::t2LDMIA_UPD : ARM::t2LDMIA); 8621 // If we're switching to the updating version, we need to insert 8622 // the writeback tied operand. 8623 if (hasWritebackToken) 8624 Inst.insert(Inst.begin(), 8625 MCOperand::createReg(Inst.getOperand(0).getReg())); 8626 return true; 8627 } 8628 break; 8629 } 8630 case ARM::tSTMIA_UPD: { 8631 // If the register list contains any high registers, we need to use 8632 // the 32-bit encoding instead if we're in Thumb2. Otherwise, this 8633 // should have generated an error in validateInstruction(). 8634 unsigned Rn = Inst.getOperand(0).getReg(); 8635 bool listContainsBase; 8636 if (checkLowRegisterList(Inst, 4, Rn, 0, listContainsBase)) { 8637 // 16-bit encoding isn't sufficient. Switch to the 32-bit version. 8638 assert (isThumbTwo()); 8639 Inst.setOpcode(ARM::t2STMIA_UPD); 8640 return true; 8641 } 8642 break; 8643 } 8644 case ARM::tPOP: { 8645 bool listContainsBase; 8646 // If the register list contains any high registers, we need to use 8647 // the 32-bit encoding instead if we're in Thumb2. Otherwise, this 8648 // should have generated an error in validateInstruction(). 8649 if (!checkLowRegisterList(Inst, 2, 0, ARM::PC, listContainsBase)) 8650 return false; 8651 assert (isThumbTwo()); 8652 Inst.setOpcode(ARM::t2LDMIA_UPD); 8653 // Add the base register and writeback operands. 8654 Inst.insert(Inst.begin(), MCOperand::createReg(ARM::SP)); 8655 Inst.insert(Inst.begin(), MCOperand::createReg(ARM::SP)); 8656 return true; 8657 } 8658 case ARM::tPUSH: { 8659 bool listContainsBase; 8660 if (!checkLowRegisterList(Inst, 2, 0, ARM::LR, listContainsBase)) 8661 return false; 8662 assert (isThumbTwo()); 8663 Inst.setOpcode(ARM::t2STMDB_UPD); 8664 // Add the base register and writeback operands. 8665 Inst.insert(Inst.begin(), MCOperand::createReg(ARM::SP)); 8666 Inst.insert(Inst.begin(), MCOperand::createReg(ARM::SP)); 8667 return true; 8668 } 8669 case ARM::t2MOVi: { 8670 // If we can use the 16-bit encoding and the user didn't explicitly 8671 // request the 32-bit variant, transform it here. 8672 if (isARMLowRegister(Inst.getOperand(0).getReg()) && 8673 (unsigned)Inst.getOperand(1).getImm() <= 255 && 8674 ((!inITBlock() && Inst.getOperand(2).getImm() == ARMCC::AL && 8675 Inst.getOperand(4).getReg() == ARM::CPSR) || 8676 (inITBlock() && Inst.getOperand(4).getReg() == 0)) && 8677 (!static_cast<ARMOperand &>(*Operands[2]).isToken() || 8678 static_cast<ARMOperand &>(*Operands[2]).getToken() != ".w")) { 8679 // The operands aren't in the same order for tMOVi8... 8680 MCInst TmpInst; 8681 TmpInst.setOpcode(ARM::tMOVi8); 8682 TmpInst.addOperand(Inst.getOperand(0)); 8683 TmpInst.addOperand(Inst.getOperand(4)); 8684 TmpInst.addOperand(Inst.getOperand(1)); 8685 TmpInst.addOperand(Inst.getOperand(2)); 8686 TmpInst.addOperand(Inst.getOperand(3)); 8687 Inst = TmpInst; 8688 return true; 8689 } 8690 break; 8691 } 8692 case ARM::t2MOVr: { 8693 // If we can use the 16-bit encoding and the user didn't explicitly 8694 // request the 32-bit variant, transform it here. 8695 if (isARMLowRegister(Inst.getOperand(0).getReg()) && 8696 isARMLowRegister(Inst.getOperand(1).getReg()) && 8697 Inst.getOperand(2).getImm() == ARMCC::AL && 8698 Inst.getOperand(4).getReg() == ARM::CPSR && 8699 (!static_cast<ARMOperand &>(*Operands[2]).isToken() || 8700 static_cast<ARMOperand &>(*Operands[2]).getToken() != ".w")) { 8701 // The operands aren't the same for tMOV[S]r... (no cc_out) 8702 MCInst TmpInst; 8703 TmpInst.setOpcode(Inst.getOperand(4).getReg() ? ARM::tMOVSr : ARM::tMOVr); 8704 TmpInst.addOperand(Inst.getOperand(0)); 8705 TmpInst.addOperand(Inst.getOperand(1)); 8706 TmpInst.addOperand(Inst.getOperand(2)); 8707 TmpInst.addOperand(Inst.getOperand(3)); 8708 Inst = TmpInst; 8709 return true; 8710 } 8711 break; 8712 } 8713 case ARM::t2SXTH: 8714 case ARM::t2SXTB: 8715 case ARM::t2UXTH: 8716 case ARM::t2UXTB: { 8717 // If we can use the 16-bit encoding and the user didn't explicitly 8718 // request the 32-bit variant, transform it here. 8719 if (isARMLowRegister(Inst.getOperand(0).getReg()) && 8720 isARMLowRegister(Inst.getOperand(1).getReg()) && 8721 Inst.getOperand(2).getImm() == 0 && 8722 (!static_cast<ARMOperand &>(*Operands[2]).isToken() || 8723 static_cast<ARMOperand &>(*Operands[2]).getToken() != ".w")) { 8724 unsigned NewOpc; 8725 switch (Inst.getOpcode()) { 8726 default: llvm_unreachable("Illegal opcode!"); 8727 case ARM::t2SXTH: NewOpc = ARM::tSXTH; break; 8728 case ARM::t2SXTB: NewOpc = ARM::tSXTB; break; 8729 case ARM::t2UXTH: NewOpc = ARM::tUXTH; break; 8730 case ARM::t2UXTB: NewOpc = ARM::tUXTB; break; 8731 } 8732 // The operands aren't the same for thumb1 (no rotate operand). 8733 MCInst TmpInst; 8734 TmpInst.setOpcode(NewOpc); 8735 TmpInst.addOperand(Inst.getOperand(0)); 8736 TmpInst.addOperand(Inst.getOperand(1)); 8737 TmpInst.addOperand(Inst.getOperand(3)); 8738 TmpInst.addOperand(Inst.getOperand(4)); 8739 Inst = TmpInst; 8740 return true; 8741 } 8742 break; 8743 } 8744 case ARM::MOVsi: { 8745 ARM_AM::ShiftOpc SOpc = ARM_AM::getSORegShOp(Inst.getOperand(2).getImm()); 8746 // rrx shifts and asr/lsr of #32 is encoded as 0 8747 if (SOpc == ARM_AM::rrx || SOpc == ARM_AM::asr || SOpc == ARM_AM::lsr) 8748 return false; 8749 if (ARM_AM::getSORegOffset(Inst.getOperand(2).getImm()) == 0) { 8750 // Shifting by zero is accepted as a vanilla 'MOVr' 8751 MCInst TmpInst; 8752 TmpInst.setOpcode(ARM::MOVr); 8753 TmpInst.addOperand(Inst.getOperand(0)); 8754 TmpInst.addOperand(Inst.getOperand(1)); 8755 TmpInst.addOperand(Inst.getOperand(3)); 8756 TmpInst.addOperand(Inst.getOperand(4)); 8757 TmpInst.addOperand(Inst.getOperand(5)); 8758 Inst = TmpInst; 8759 return true; 8760 } 8761 return false; 8762 } 8763 case ARM::ANDrsi: 8764 case ARM::ORRrsi: 8765 case ARM::EORrsi: 8766 case ARM::BICrsi: 8767 case ARM::SUBrsi: 8768 case ARM::ADDrsi: { 8769 unsigned newOpc; 8770 ARM_AM::ShiftOpc SOpc = ARM_AM::getSORegShOp(Inst.getOperand(3).getImm()); 8771 if (SOpc == ARM_AM::rrx) return false; 8772 switch (Inst.getOpcode()) { 8773 default: llvm_unreachable("unexpected opcode!"); 8774 case ARM::ANDrsi: newOpc = ARM::ANDrr; break; 8775 case ARM::ORRrsi: newOpc = ARM::ORRrr; break; 8776 case ARM::EORrsi: newOpc = ARM::EORrr; break; 8777 case ARM::BICrsi: newOpc = ARM::BICrr; break; 8778 case ARM::SUBrsi: newOpc = ARM::SUBrr; break; 8779 case ARM::ADDrsi: newOpc = ARM::ADDrr; break; 8780 } 8781 // If the shift is by zero, use the non-shifted instruction definition. 8782 // The exception is for right shifts, where 0 == 32 8783 if (ARM_AM::getSORegOffset(Inst.getOperand(3).getImm()) == 0 && 8784 !(SOpc == ARM_AM::lsr || SOpc == ARM_AM::asr)) { 8785 MCInst TmpInst; 8786 TmpInst.setOpcode(newOpc); 8787 TmpInst.addOperand(Inst.getOperand(0)); 8788 TmpInst.addOperand(Inst.getOperand(1)); 8789 TmpInst.addOperand(Inst.getOperand(2)); 8790 TmpInst.addOperand(Inst.getOperand(4)); 8791 TmpInst.addOperand(Inst.getOperand(5)); 8792 TmpInst.addOperand(Inst.getOperand(6)); 8793 Inst = TmpInst; 8794 return true; 8795 } 8796 return false; 8797 } 8798 case ARM::ITasm: 8799 case ARM::t2IT: { 8800 MCOperand &MO = Inst.getOperand(1); 8801 unsigned Mask = MO.getImm(); 8802 ARMCC::CondCodes Cond = ARMCC::CondCodes(Inst.getOperand(0).getImm()); 8803 8804 // Set up the IT block state according to the IT instruction we just 8805 // matched. 8806 assert(!inITBlock() && "nested IT blocks?!"); 8807 startExplicitITBlock(Cond, Mask); 8808 MO.setImm(getITMaskEncoding()); 8809 break; 8810 } 8811 case ARM::t2LSLrr: 8812 case ARM::t2LSRrr: 8813 case ARM::t2ASRrr: 8814 case ARM::t2SBCrr: 8815 case ARM::t2RORrr: 8816 case ARM::t2BICrr: 8817 { 8818 // Assemblers should use the narrow encodings of these instructions when permissible. 8819 if ((isARMLowRegister(Inst.getOperand(1).getReg()) && 8820 isARMLowRegister(Inst.getOperand(2).getReg())) && 8821 Inst.getOperand(0).getReg() == Inst.getOperand(1).getReg() && 8822 ((!inITBlock() && Inst.getOperand(5).getReg() == ARM::CPSR) || 8823 (inITBlock() && Inst.getOperand(5).getReg() != ARM::CPSR)) && 8824 (!static_cast<ARMOperand &>(*Operands[3]).isToken() || 8825 !static_cast<ARMOperand &>(*Operands[3]).getToken().equals_lower( 8826 ".w"))) { 8827 unsigned NewOpc; 8828 switch (Inst.getOpcode()) { 8829 default: llvm_unreachable("unexpected opcode"); 8830 case ARM::t2LSLrr: NewOpc = ARM::tLSLrr; break; 8831 case ARM::t2LSRrr: NewOpc = ARM::tLSRrr; break; 8832 case ARM::t2ASRrr: NewOpc = ARM::tASRrr; break; 8833 case ARM::t2SBCrr: NewOpc = ARM::tSBC; break; 8834 case ARM::t2RORrr: NewOpc = ARM::tROR; break; 8835 case ARM::t2BICrr: NewOpc = ARM::tBIC; break; 8836 } 8837 MCInst TmpInst; 8838 TmpInst.setOpcode(NewOpc); 8839 TmpInst.addOperand(Inst.getOperand(0)); 8840 TmpInst.addOperand(Inst.getOperand(5)); 8841 TmpInst.addOperand(Inst.getOperand(1)); 8842 TmpInst.addOperand(Inst.getOperand(2)); 8843 TmpInst.addOperand(Inst.getOperand(3)); 8844 TmpInst.addOperand(Inst.getOperand(4)); 8845 Inst = TmpInst; 8846 return true; 8847 } 8848 return false; 8849 } 8850 case ARM::t2ANDrr: 8851 case ARM::t2EORrr: 8852 case ARM::t2ADCrr: 8853 case ARM::t2ORRrr: 8854 { 8855 // Assemblers should use the narrow encodings of these instructions when permissible. 8856 // These instructions are special in that they are commutable, so shorter encodings 8857 // are available more often. 8858 if ((isARMLowRegister(Inst.getOperand(1).getReg()) && 8859 isARMLowRegister(Inst.getOperand(2).getReg())) && 8860 (Inst.getOperand(0).getReg() == Inst.getOperand(1).getReg() || 8861 Inst.getOperand(0).getReg() == Inst.getOperand(2).getReg()) && 8862 ((!inITBlock() && Inst.getOperand(5).getReg() == ARM::CPSR) || 8863 (inITBlock() && Inst.getOperand(5).getReg() != ARM::CPSR)) && 8864 (!static_cast<ARMOperand &>(*Operands[3]).isToken() || 8865 !static_cast<ARMOperand &>(*Operands[3]).getToken().equals_lower( 8866 ".w"))) { 8867 unsigned NewOpc; 8868 switch (Inst.getOpcode()) { 8869 default: llvm_unreachable("unexpected opcode"); 8870 case ARM::t2ADCrr: NewOpc = ARM::tADC; break; 8871 case ARM::t2ANDrr: NewOpc = ARM::tAND; break; 8872 case ARM::t2EORrr: NewOpc = ARM::tEOR; break; 8873 case ARM::t2ORRrr: NewOpc = ARM::tORR; break; 8874 } 8875 MCInst TmpInst; 8876 TmpInst.setOpcode(NewOpc); 8877 TmpInst.addOperand(Inst.getOperand(0)); 8878 TmpInst.addOperand(Inst.getOperand(5)); 8879 if (Inst.getOperand(0).getReg() == Inst.getOperand(1).getReg()) { 8880 TmpInst.addOperand(Inst.getOperand(1)); 8881 TmpInst.addOperand(Inst.getOperand(2)); 8882 } else { 8883 TmpInst.addOperand(Inst.getOperand(2)); 8884 TmpInst.addOperand(Inst.getOperand(1)); 8885 } 8886 TmpInst.addOperand(Inst.getOperand(3)); 8887 TmpInst.addOperand(Inst.getOperand(4)); 8888 Inst = TmpInst; 8889 return true; 8890 } 8891 return false; 8892 } 8893 } 8894 return false; 8895 } 8896 8897 unsigned ARMAsmParser::checkTargetMatchPredicate(MCInst &Inst) { 8898 // 16-bit thumb arithmetic instructions either require or preclude the 'S' 8899 // suffix depending on whether they're in an IT block or not. 8900 unsigned Opc = Inst.getOpcode(); 8901 const MCInstrDesc &MCID = MII.get(Opc); 8902 if (MCID.TSFlags & ARMII::ThumbArithFlagSetting) { 8903 assert(MCID.hasOptionalDef() && 8904 "optionally flag setting instruction missing optional def operand"); 8905 assert(MCID.NumOperands == Inst.getNumOperands() && 8906 "operand count mismatch!"); 8907 // Find the optional-def operand (cc_out). 8908 unsigned OpNo; 8909 for (OpNo = 0; 8910 !MCID.OpInfo[OpNo].isOptionalDef() && OpNo < MCID.NumOperands; 8911 ++OpNo) 8912 ; 8913 // If we're parsing Thumb1, reject it completely. 8914 if (isThumbOne() && Inst.getOperand(OpNo).getReg() != ARM::CPSR) 8915 return Match_MnemonicFail; 8916 // If we're parsing Thumb2, which form is legal depends on whether we're 8917 // in an IT block. 8918 if (isThumbTwo() && Inst.getOperand(OpNo).getReg() != ARM::CPSR && 8919 !inITBlock()) 8920 return Match_RequiresITBlock; 8921 if (isThumbTwo() && Inst.getOperand(OpNo).getReg() == ARM::CPSR && 8922 inITBlock()) 8923 return Match_RequiresNotITBlock; 8924 } else if (isThumbOne()) { 8925 // Some high-register supporting Thumb1 encodings only allow both registers 8926 // to be from r0-r7 when in Thumb2. 8927 if (Opc == ARM::tADDhirr && !hasV6MOps() && 8928 isARMLowRegister(Inst.getOperand(1).getReg()) && 8929 isARMLowRegister(Inst.getOperand(2).getReg())) 8930 return Match_RequiresThumb2; 8931 // Others only require ARMv6 or later. 8932 else if (Opc == ARM::tMOVr && !hasV6Ops() && 8933 isARMLowRegister(Inst.getOperand(0).getReg()) && 8934 isARMLowRegister(Inst.getOperand(1).getReg())) 8935 return Match_RequiresV6; 8936 } 8937 8938 for (unsigned I = 0; I < MCID.NumOperands; ++I) 8939 if (MCID.OpInfo[I].RegClass == ARM::rGPRRegClassID) { 8940 // rGPRRegClass excludes PC, and also excluded SP before ARMv8 8941 if ((Inst.getOperand(I).getReg() == ARM::SP) && !hasV8Ops()) 8942 return Match_RequiresV8; 8943 else if (Inst.getOperand(I).getReg() == ARM::PC) 8944 return Match_InvalidOperand; 8945 } 8946 8947 return Match_Success; 8948 } 8949 8950 namespace llvm { 8951 template <> inline bool IsCPSRDead<MCInst>(MCInst *Instr) { 8952 return true; // In an assembly source, no need to second-guess 8953 } 8954 } 8955 8956 // Returns true if Inst is unpredictable if it is in and IT block, but is not 8957 // the last instruction in the block. 8958 bool ARMAsmParser::isITBlockTerminator(MCInst &Inst) const { 8959 const MCInstrDesc &MCID = MII.get(Inst.getOpcode()); 8960 8961 // All branch & call instructions terminate IT blocks. 8962 if (MCID.isTerminator() || MCID.isCall() || MCID.isReturn() || 8963 MCID.isBranch() || MCID.isIndirectBranch()) 8964 return true; 8965 8966 // Any arithmetic instruction which writes to the PC also terminates the IT 8967 // block. 8968 for (unsigned OpIdx = 0; OpIdx < MCID.getNumDefs(); ++OpIdx) { 8969 MCOperand &Op = Inst.getOperand(OpIdx); 8970 if (Op.isReg() && Op.getReg() == ARM::PC) 8971 return true; 8972 } 8973 8974 if (MCID.hasImplicitDefOfPhysReg(ARM::PC, MRI)) 8975 return true; 8976 8977 // Instructions with variable operand lists, which write to the variable 8978 // operands. We only care about Thumb instructions here, as ARM instructions 8979 // obviously can't be in an IT block. 8980 switch (Inst.getOpcode()) { 8981 case ARM::t2LDMIA: 8982 case ARM::t2LDMIA_UPD: 8983 case ARM::t2LDMDB: 8984 case ARM::t2LDMDB_UPD: 8985 if (listContainsReg(Inst, 3, ARM::PC)) 8986 return true; 8987 break; 8988 case ARM::tPOP: 8989 if (listContainsReg(Inst, 2, ARM::PC)) 8990 return true; 8991 break; 8992 } 8993 8994 return false; 8995 } 8996 8997 unsigned ARMAsmParser::MatchInstruction(OperandVector &Operands, MCInst &Inst, 8998 uint64_t &ErrorInfo, 8999 bool MatchingInlineAsm, 9000 bool &EmitInITBlock, 9001 MCStreamer &Out) { 9002 // If we can't use an implicit IT block here, just match as normal. 9003 if (inExplicitITBlock() || !isThumbTwo() || !useImplicitITThumb()) 9004 return MatchInstructionImpl(Operands, Inst, ErrorInfo, MatchingInlineAsm); 9005 9006 // Try to match the instruction in an extension of the current IT block (if 9007 // there is one). 9008 if (inImplicitITBlock()) { 9009 extendImplicitITBlock(ITState.Cond); 9010 if (MatchInstructionImpl(Operands, Inst, ErrorInfo, MatchingInlineAsm) == 9011 Match_Success) { 9012 // The match succeded, but we still have to check that the instruction is 9013 // valid in this implicit IT block. 9014 const MCInstrDesc &MCID = MII.get(Inst.getOpcode()); 9015 if (MCID.isPredicable()) { 9016 ARMCC::CondCodes InstCond = 9017 (ARMCC::CondCodes)Inst.getOperand(MCID.findFirstPredOperandIdx()) 9018 .getImm(); 9019 ARMCC::CondCodes ITCond = currentITCond(); 9020 if (InstCond == ITCond) { 9021 EmitInITBlock = true; 9022 return Match_Success; 9023 } else if (InstCond == ARMCC::getOppositeCondition(ITCond)) { 9024 invertCurrentITCondition(); 9025 EmitInITBlock = true; 9026 return Match_Success; 9027 } 9028 } 9029 } 9030 rewindImplicitITPosition(); 9031 } 9032 9033 // Finish the current IT block, and try to match outside any IT block. 9034 flushPendingInstructions(Out); 9035 unsigned PlainMatchResult = 9036 MatchInstructionImpl(Operands, Inst, ErrorInfo, MatchingInlineAsm); 9037 if (PlainMatchResult == Match_Success) { 9038 const MCInstrDesc &MCID = MII.get(Inst.getOpcode()); 9039 if (MCID.isPredicable()) { 9040 ARMCC::CondCodes InstCond = 9041 (ARMCC::CondCodes)Inst.getOperand(MCID.findFirstPredOperandIdx()) 9042 .getImm(); 9043 // Some forms of the branch instruction have their own condition code 9044 // fields, so can be conditionally executed without an IT block. 9045 if (Inst.getOpcode() == ARM::tBcc || Inst.getOpcode() == ARM::t2Bcc) { 9046 EmitInITBlock = false; 9047 return Match_Success; 9048 } 9049 if (InstCond == ARMCC::AL) { 9050 EmitInITBlock = false; 9051 return Match_Success; 9052 } 9053 } else { 9054 EmitInITBlock = false; 9055 return Match_Success; 9056 } 9057 } 9058 9059 // Try to match in a new IT block. The matcher doesn't check the actual 9060 // condition, so we create an IT block with a dummy condition, and fix it up 9061 // once we know the actual condition. 9062 startImplicitITBlock(); 9063 if (MatchInstructionImpl(Operands, Inst, ErrorInfo, MatchingInlineAsm) == 9064 Match_Success) { 9065 const MCInstrDesc &MCID = MII.get(Inst.getOpcode()); 9066 if (MCID.isPredicable()) { 9067 ITState.Cond = 9068 (ARMCC::CondCodes)Inst.getOperand(MCID.findFirstPredOperandIdx()) 9069 .getImm(); 9070 EmitInITBlock = true; 9071 return Match_Success; 9072 } 9073 } 9074 discardImplicitITBlock(); 9075 9076 // If none of these succeed, return the error we got when trying to match 9077 // outside any IT blocks. 9078 EmitInITBlock = false; 9079 return PlainMatchResult; 9080 } 9081 9082 static const char *getSubtargetFeatureName(uint64_t Val); 9083 bool ARMAsmParser::MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode, 9084 OperandVector &Operands, 9085 MCStreamer &Out, uint64_t &ErrorInfo, 9086 bool MatchingInlineAsm) { 9087 MCInst Inst; 9088 unsigned MatchResult; 9089 bool PendConditionalInstruction = false; 9090 9091 MatchResult = MatchInstruction(Operands, Inst, ErrorInfo, MatchingInlineAsm, 9092 PendConditionalInstruction, Out); 9093 9094 switch (MatchResult) { 9095 case Match_Success: 9096 // Context sensitive operand constraints aren't handled by the matcher, 9097 // so check them here. 9098 if (validateInstruction(Inst, Operands)) { 9099 // Still progress the IT block, otherwise one wrong condition causes 9100 // nasty cascading errors. 9101 forwardITPosition(); 9102 return true; 9103 } 9104 9105 { // processInstruction() updates inITBlock state, we need to save it away 9106 bool wasInITBlock = inITBlock(); 9107 9108 // Some instructions need post-processing to, for example, tweak which 9109 // encoding is selected. Loop on it while changes happen so the 9110 // individual transformations can chain off each other. E.g., 9111 // tPOP(r8)->t2LDMIA_UPD(sp,r8)->t2STR_POST(sp,r8) 9112 while (processInstruction(Inst, Operands, Out)) 9113 ; 9114 9115 // Only after the instruction is fully processed, we can validate it 9116 if (wasInITBlock && hasV8Ops() && isThumb() && 9117 !isV8EligibleForIT(&Inst)) { 9118 Warning(IDLoc, "deprecated instruction in IT block"); 9119 } 9120 } 9121 9122 // Only move forward at the very end so that everything in validate 9123 // and process gets a consistent answer about whether we're in an IT 9124 // block. 9125 forwardITPosition(); 9126 9127 // ITasm is an ARM mode pseudo-instruction that just sets the ITblock and 9128 // doesn't actually encode. 9129 if (Inst.getOpcode() == ARM::ITasm) 9130 return false; 9131 9132 Inst.setLoc(IDLoc); 9133 if (PendConditionalInstruction) { 9134 PendingConditionalInsts.push_back(Inst); 9135 if (isITBlockFull() || isITBlockTerminator(Inst)) 9136 flushPendingInstructions(Out); 9137 } else { 9138 Out.EmitInstruction(Inst, getSTI()); 9139 } 9140 return false; 9141 case Match_MissingFeature: { 9142 assert(ErrorInfo && "Unknown missing feature!"); 9143 // Special case the error message for the very common case where only 9144 // a single subtarget feature is missing (Thumb vs. ARM, e.g.). 9145 std::string Msg = "instruction requires:"; 9146 uint64_t Mask = 1; 9147 for (unsigned i = 0; i < (sizeof(ErrorInfo)*8-1); ++i) { 9148 if (ErrorInfo & Mask) { 9149 Msg += " "; 9150 Msg += getSubtargetFeatureName(ErrorInfo & Mask); 9151 } 9152 Mask <<= 1; 9153 } 9154 return Error(IDLoc, Msg); 9155 } 9156 case Match_InvalidOperand: { 9157 SMLoc ErrorLoc = IDLoc; 9158 if (ErrorInfo != ~0ULL) { 9159 if (ErrorInfo >= Operands.size()) 9160 return Error(IDLoc, "too few operands for instruction"); 9161 9162 ErrorLoc = ((ARMOperand &)*Operands[ErrorInfo]).getStartLoc(); 9163 if (ErrorLoc == SMLoc()) ErrorLoc = IDLoc; 9164 } 9165 9166 return Error(ErrorLoc, "invalid operand for instruction"); 9167 } 9168 case Match_MnemonicFail: 9169 return Error(IDLoc, "invalid instruction", 9170 ((ARMOperand &)*Operands[0]).getLocRange()); 9171 case Match_RequiresNotITBlock: 9172 return Error(IDLoc, "flag setting instruction only valid outside IT block"); 9173 case Match_RequiresITBlock: 9174 return Error(IDLoc, "instruction only valid inside IT block"); 9175 case Match_RequiresV6: 9176 return Error(IDLoc, "instruction variant requires ARMv6 or later"); 9177 case Match_RequiresThumb2: 9178 return Error(IDLoc, "instruction variant requires Thumb2"); 9179 case Match_RequiresV8: 9180 return Error(IDLoc, "instruction variant requires ARMv8 or later"); 9181 case Match_ImmRange0_15: { 9182 SMLoc ErrorLoc = ((ARMOperand &)*Operands[ErrorInfo]).getStartLoc(); 9183 if (ErrorLoc == SMLoc()) ErrorLoc = IDLoc; 9184 return Error(ErrorLoc, "immediate operand must be in the range [0,15]"); 9185 } 9186 case Match_ImmRange0_239: { 9187 SMLoc ErrorLoc = ((ARMOperand &)*Operands[ErrorInfo]).getStartLoc(); 9188 if (ErrorLoc == SMLoc()) ErrorLoc = IDLoc; 9189 return Error(ErrorLoc, "immediate operand must be in the range [0,239]"); 9190 } 9191 case Match_AlignedMemoryRequiresNone: 9192 case Match_DupAlignedMemoryRequiresNone: 9193 case Match_AlignedMemoryRequires16: 9194 case Match_DupAlignedMemoryRequires16: 9195 case Match_AlignedMemoryRequires32: 9196 case Match_DupAlignedMemoryRequires32: 9197 case Match_AlignedMemoryRequires64: 9198 case Match_DupAlignedMemoryRequires64: 9199 case Match_AlignedMemoryRequires64or128: 9200 case Match_DupAlignedMemoryRequires64or128: 9201 case Match_AlignedMemoryRequires64or128or256: 9202 { 9203 SMLoc ErrorLoc = ((ARMOperand &)*Operands[ErrorInfo]).getAlignmentLoc(); 9204 if (ErrorLoc == SMLoc()) ErrorLoc = IDLoc; 9205 switch (MatchResult) { 9206 default: 9207 llvm_unreachable("Missing Match_Aligned type"); 9208 case Match_AlignedMemoryRequiresNone: 9209 case Match_DupAlignedMemoryRequiresNone: 9210 return Error(ErrorLoc, "alignment must be omitted"); 9211 case Match_AlignedMemoryRequires16: 9212 case Match_DupAlignedMemoryRequires16: 9213 return Error(ErrorLoc, "alignment must be 16 or omitted"); 9214 case Match_AlignedMemoryRequires32: 9215 case Match_DupAlignedMemoryRequires32: 9216 return Error(ErrorLoc, "alignment must be 32 or omitted"); 9217 case Match_AlignedMemoryRequires64: 9218 case Match_DupAlignedMemoryRequires64: 9219 return Error(ErrorLoc, "alignment must be 64 or omitted"); 9220 case Match_AlignedMemoryRequires64or128: 9221 case Match_DupAlignedMemoryRequires64or128: 9222 return Error(ErrorLoc, "alignment must be 64, 128 or omitted"); 9223 case Match_AlignedMemoryRequires64or128or256: 9224 return Error(ErrorLoc, "alignment must be 64, 128, 256 or omitted"); 9225 } 9226 } 9227 } 9228 9229 llvm_unreachable("Implement any new match types added!"); 9230 } 9231 9232 /// parseDirective parses the arm specific directives 9233 bool ARMAsmParser::ParseDirective(AsmToken DirectiveID) { 9234 const MCObjectFileInfo::Environment Format = 9235 getContext().getObjectFileInfo()->getObjectFileType(); 9236 bool IsMachO = Format == MCObjectFileInfo::IsMachO; 9237 bool IsCOFF = Format == MCObjectFileInfo::IsCOFF; 9238 9239 StringRef IDVal = DirectiveID.getIdentifier(); 9240 if (IDVal == ".word") 9241 return parseLiteralValues(4, DirectiveID.getLoc()); 9242 else if (IDVal == ".short" || IDVal == ".hword") 9243 return parseLiteralValues(2, DirectiveID.getLoc()); 9244 else if (IDVal == ".thumb") 9245 return parseDirectiveThumb(DirectiveID.getLoc()); 9246 else if (IDVal == ".arm") 9247 return parseDirectiveARM(DirectiveID.getLoc()); 9248 else if (IDVal == ".thumb_func") 9249 return parseDirectiveThumbFunc(DirectiveID.getLoc()); 9250 else if (IDVal == ".code") 9251 return parseDirectiveCode(DirectiveID.getLoc()); 9252 else if (IDVal == ".syntax") 9253 return parseDirectiveSyntax(DirectiveID.getLoc()); 9254 else if (IDVal == ".unreq") 9255 return parseDirectiveUnreq(DirectiveID.getLoc()); 9256 else if (IDVal == ".fnend") 9257 return parseDirectiveFnEnd(DirectiveID.getLoc()); 9258 else if (IDVal == ".cantunwind") 9259 return parseDirectiveCantUnwind(DirectiveID.getLoc()); 9260 else if (IDVal == ".personality") 9261 return parseDirectivePersonality(DirectiveID.getLoc()); 9262 else if (IDVal == ".handlerdata") 9263 return parseDirectiveHandlerData(DirectiveID.getLoc()); 9264 else if (IDVal == ".setfp") 9265 return parseDirectiveSetFP(DirectiveID.getLoc()); 9266 else if (IDVal == ".pad") 9267 return parseDirectivePad(DirectiveID.getLoc()); 9268 else if (IDVal == ".save") 9269 return parseDirectiveRegSave(DirectiveID.getLoc(), false); 9270 else if (IDVal == ".vsave") 9271 return parseDirectiveRegSave(DirectiveID.getLoc(), true); 9272 else if (IDVal == ".ltorg" || IDVal == ".pool") 9273 return parseDirectiveLtorg(DirectiveID.getLoc()); 9274 else if (IDVal == ".even") 9275 return parseDirectiveEven(DirectiveID.getLoc()); 9276 else if (IDVal == ".personalityindex") 9277 return parseDirectivePersonalityIndex(DirectiveID.getLoc()); 9278 else if (IDVal == ".unwind_raw") 9279 return parseDirectiveUnwindRaw(DirectiveID.getLoc()); 9280 else if (IDVal == ".movsp") 9281 return parseDirectiveMovSP(DirectiveID.getLoc()); 9282 else if (IDVal == ".arch_extension") 9283 return parseDirectiveArchExtension(DirectiveID.getLoc()); 9284 else if (IDVal == ".align") 9285 return parseDirectiveAlign(DirectiveID.getLoc()); 9286 else if (IDVal == ".thumb_set") 9287 return parseDirectiveThumbSet(DirectiveID.getLoc()); 9288 9289 if (!IsMachO && !IsCOFF) { 9290 if (IDVal == ".arch") 9291 return parseDirectiveArch(DirectiveID.getLoc()); 9292 else if (IDVal == ".cpu") 9293 return parseDirectiveCPU(DirectiveID.getLoc()); 9294 else if (IDVal == ".eabi_attribute") 9295 return parseDirectiveEabiAttr(DirectiveID.getLoc()); 9296 else if (IDVal == ".fpu") 9297 return parseDirectiveFPU(DirectiveID.getLoc()); 9298 else if (IDVal == ".fnstart") 9299 return parseDirectiveFnStart(DirectiveID.getLoc()); 9300 else if (IDVal == ".inst") 9301 return parseDirectiveInst(DirectiveID.getLoc()); 9302 else if (IDVal == ".inst.n") 9303 return parseDirectiveInst(DirectiveID.getLoc(), 'n'); 9304 else if (IDVal == ".inst.w") 9305 return parseDirectiveInst(DirectiveID.getLoc(), 'w'); 9306 else if (IDVal == ".object_arch") 9307 return parseDirectiveObjectArch(DirectiveID.getLoc()); 9308 else if (IDVal == ".tlsdescseq") 9309 return parseDirectiveTLSDescSeq(DirectiveID.getLoc()); 9310 } 9311 9312 return true; 9313 } 9314 9315 /// parseLiteralValues 9316 /// ::= .hword expression [, expression]* 9317 /// ::= .short expression [, expression]* 9318 /// ::= .word expression [, expression]* 9319 bool ARMAsmParser::parseLiteralValues(unsigned Size, SMLoc L) { 9320 MCAsmParser &Parser = getParser(); 9321 if (getLexer().isNot(AsmToken::EndOfStatement)) { 9322 for (;;) { 9323 const MCExpr *Value; 9324 if (getParser().parseExpression(Value)) { 9325 return false; 9326 } 9327 9328 getParser().getStreamer().EmitValue(Value, Size, L); 9329 9330 if (getLexer().is(AsmToken::EndOfStatement)) 9331 break; 9332 9333 // FIXME: Improve diagnostic. 9334 if (getLexer().isNot(AsmToken::Comma)) { 9335 Error(L, "unexpected token in directive"); 9336 return false; 9337 } 9338 Parser.Lex(); 9339 } 9340 } 9341 9342 Parser.Lex(); 9343 return false; 9344 } 9345 9346 /// parseDirectiveThumb 9347 /// ::= .thumb 9348 bool ARMAsmParser::parseDirectiveThumb(SMLoc L) { 9349 MCAsmParser &Parser = getParser(); 9350 if (getLexer().isNot(AsmToken::EndOfStatement)) { 9351 Error(L, "unexpected token in directive"); 9352 return false; 9353 } 9354 Parser.Lex(); 9355 9356 if (!hasThumb()) { 9357 Error(L, "target does not support Thumb mode"); 9358 return false; 9359 } 9360 9361 if (!isThumb()) 9362 SwitchMode(); 9363 9364 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code16); 9365 return false; 9366 } 9367 9368 /// parseDirectiveARM 9369 /// ::= .arm 9370 bool ARMAsmParser::parseDirectiveARM(SMLoc L) { 9371 MCAsmParser &Parser = getParser(); 9372 if (getLexer().isNot(AsmToken::EndOfStatement)) { 9373 Error(L, "unexpected token in directive"); 9374 return false; 9375 } 9376 Parser.Lex(); 9377 9378 if (!hasARM()) { 9379 Error(L, "target does not support ARM mode"); 9380 return false; 9381 } 9382 9383 if (isThumb()) 9384 SwitchMode(); 9385 9386 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code32); 9387 return false; 9388 } 9389 9390 void ARMAsmParser::onLabelParsed(MCSymbol *Symbol) { 9391 // We need to flush the current implicit IT block on a label, because it is 9392 // not legal to branch into an IT block. 9393 flushPendingInstructions(getStreamer()); 9394 if (NextSymbolIsThumb) { 9395 getParser().getStreamer().EmitThumbFunc(Symbol); 9396 NextSymbolIsThumb = false; 9397 } 9398 } 9399 9400 /// parseDirectiveThumbFunc 9401 /// ::= .thumbfunc symbol_name 9402 bool ARMAsmParser::parseDirectiveThumbFunc(SMLoc L) { 9403 MCAsmParser &Parser = getParser(); 9404 const auto Format = getContext().getObjectFileInfo()->getObjectFileType(); 9405 bool IsMachO = Format == MCObjectFileInfo::IsMachO; 9406 9407 // Darwin asm has (optionally) function name after .thumb_func direction 9408 // ELF doesn't 9409 if (IsMachO) { 9410 const AsmToken &Tok = Parser.getTok(); 9411 if (Tok.isNot(AsmToken::EndOfStatement)) { 9412 if (Tok.isNot(AsmToken::Identifier) && Tok.isNot(AsmToken::String)) { 9413 Error(L, "unexpected token in .thumb_func directive"); 9414 return false; 9415 } 9416 9417 MCSymbol *Func = 9418 getParser().getContext().getOrCreateSymbol(Tok.getIdentifier()); 9419 getParser().getStreamer().EmitThumbFunc(Func); 9420 Parser.Lex(); // Consume the identifier token. 9421 return false; 9422 } 9423 } 9424 9425 if (getLexer().isNot(AsmToken::EndOfStatement)) { 9426 Error(Parser.getTok().getLoc(), "unexpected token in directive"); 9427 return false; 9428 } 9429 9430 NextSymbolIsThumb = true; 9431 return false; 9432 } 9433 9434 /// parseDirectiveSyntax 9435 /// ::= .syntax unified | divided 9436 bool ARMAsmParser::parseDirectiveSyntax(SMLoc L) { 9437 MCAsmParser &Parser = getParser(); 9438 const AsmToken &Tok = Parser.getTok(); 9439 if (Tok.isNot(AsmToken::Identifier)) { 9440 Error(L, "unexpected token in .syntax directive"); 9441 return false; 9442 } 9443 9444 StringRef Mode = Tok.getString(); 9445 if (Mode == "unified" || Mode == "UNIFIED") { 9446 Parser.Lex(); 9447 } else if (Mode == "divided" || Mode == "DIVIDED") { 9448 Error(L, "'.syntax divided' arm asssembly not supported"); 9449 return false; 9450 } else { 9451 Error(L, "unrecognized syntax mode in .syntax directive"); 9452 return false; 9453 } 9454 9455 if (getLexer().isNot(AsmToken::EndOfStatement)) { 9456 Error(Parser.getTok().getLoc(), "unexpected token in directive"); 9457 return false; 9458 } 9459 Parser.Lex(); 9460 9461 // TODO tell the MC streamer the mode 9462 // getParser().getStreamer().Emit???(); 9463 return false; 9464 } 9465 9466 /// parseDirectiveCode 9467 /// ::= .code 16 | 32 9468 bool ARMAsmParser::parseDirectiveCode(SMLoc L) { 9469 MCAsmParser &Parser = getParser(); 9470 const AsmToken &Tok = Parser.getTok(); 9471 if (Tok.isNot(AsmToken::Integer)) { 9472 Error(L, "unexpected token in .code directive"); 9473 return false; 9474 } 9475 int64_t Val = Parser.getTok().getIntVal(); 9476 if (Val != 16 && Val != 32) { 9477 Error(L, "invalid operand to .code directive"); 9478 return false; 9479 } 9480 Parser.Lex(); 9481 9482 if (getLexer().isNot(AsmToken::EndOfStatement)) { 9483 Error(Parser.getTok().getLoc(), "unexpected token in directive"); 9484 return false; 9485 } 9486 Parser.Lex(); 9487 9488 if (Val == 16) { 9489 if (!hasThumb()) { 9490 Error(L, "target does not support Thumb mode"); 9491 return false; 9492 } 9493 9494 if (!isThumb()) 9495 SwitchMode(); 9496 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code16); 9497 } else { 9498 if (!hasARM()) { 9499 Error(L, "target does not support ARM mode"); 9500 return false; 9501 } 9502 9503 if (isThumb()) 9504 SwitchMode(); 9505 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code32); 9506 } 9507 9508 return false; 9509 } 9510 9511 /// parseDirectiveReq 9512 /// ::= name .req registername 9513 bool ARMAsmParser::parseDirectiveReq(StringRef Name, SMLoc L) { 9514 MCAsmParser &Parser = getParser(); 9515 Parser.Lex(); // Eat the '.req' token. 9516 unsigned Reg; 9517 SMLoc SRegLoc, ERegLoc; 9518 if (ParseRegister(Reg, SRegLoc, ERegLoc)) { 9519 Error(SRegLoc, "register name expected"); 9520 return false; 9521 } 9522 9523 // Shouldn't be anything else. 9524 if (Parser.getTok().isNot(AsmToken::EndOfStatement)) { 9525 Error(Parser.getTok().getLoc(), "unexpected input in .req directive."); 9526 return false; 9527 } 9528 9529 Parser.Lex(); // Consume the EndOfStatement 9530 9531 if (RegisterReqs.insert(std::make_pair(Name, Reg)).first->second != Reg) { 9532 Error(SRegLoc, "redefinition of '" + Name + "' does not match original."); 9533 return false; 9534 } 9535 9536 return false; 9537 } 9538 9539 /// parseDirectiveUneq 9540 /// ::= .unreq registername 9541 bool ARMAsmParser::parseDirectiveUnreq(SMLoc L) { 9542 MCAsmParser &Parser = getParser(); 9543 if (Parser.getTok().isNot(AsmToken::Identifier)) { 9544 Error(L, "unexpected input in .unreq directive."); 9545 return false; 9546 } 9547 RegisterReqs.erase(Parser.getTok().getIdentifier().lower()); 9548 Parser.Lex(); // Eat the identifier. 9549 return false; 9550 } 9551 9552 // After changing arch/CPU, try to put the ARM/Thumb mode back to what it was 9553 // before, if supported by the new target, or emit mapping symbols for the mode 9554 // switch. 9555 void ARMAsmParser::FixModeAfterArchChange(bool WasThumb, SMLoc Loc) { 9556 if (WasThumb != isThumb()) { 9557 if (WasThumb && hasThumb()) { 9558 // Stay in Thumb mode 9559 SwitchMode(); 9560 } else if (!WasThumb && hasARM()) { 9561 // Stay in ARM mode 9562 SwitchMode(); 9563 } else { 9564 // Mode switch forced, because the new arch doesn't support the old mode. 9565 getParser().getStreamer().EmitAssemblerFlag(isThumb() ? MCAF_Code16 9566 : MCAF_Code32); 9567 // Warn about the implcit mode switch. GAS does not switch modes here, 9568 // but instead stays in the old mode, reporting an error on any following 9569 // instructions as the mode does not exist on the target. 9570 Warning(Loc, Twine("new target does not support ") + 9571 (WasThumb ? "thumb" : "arm") + " mode, switching to " + 9572 (!WasThumb ? "thumb" : "arm") + " mode"); 9573 } 9574 } 9575 } 9576 9577 /// parseDirectiveArch 9578 /// ::= .arch token 9579 bool ARMAsmParser::parseDirectiveArch(SMLoc L) { 9580 StringRef Arch = getParser().parseStringToEndOfStatement().trim(); 9581 9582 unsigned ID = ARM::parseArch(Arch); 9583 9584 if (ID == ARM::AK_INVALID) { 9585 Error(L, "Unknown arch name"); 9586 return false; 9587 } 9588 9589 bool WasThumb = isThumb(); 9590 Triple T; 9591 MCSubtargetInfo &STI = copySTI(); 9592 STI.setDefaultFeatures("", ("+" + ARM::getArchName(ID)).str()); 9593 setAvailableFeatures(ComputeAvailableFeatures(STI.getFeatureBits())); 9594 FixModeAfterArchChange(WasThumb, L); 9595 9596 getTargetStreamer().emitArch(ID); 9597 return false; 9598 } 9599 9600 /// parseDirectiveEabiAttr 9601 /// ::= .eabi_attribute int, int [, "str"] 9602 /// ::= .eabi_attribute Tag_name, int [, "str"] 9603 bool ARMAsmParser::parseDirectiveEabiAttr(SMLoc L) { 9604 MCAsmParser &Parser = getParser(); 9605 int64_t Tag; 9606 SMLoc TagLoc; 9607 TagLoc = Parser.getTok().getLoc(); 9608 if (Parser.getTok().is(AsmToken::Identifier)) { 9609 StringRef Name = Parser.getTok().getIdentifier(); 9610 Tag = ARMBuildAttrs::AttrTypeFromString(Name); 9611 if (Tag == -1) { 9612 Error(TagLoc, "attribute name not recognised: " + Name); 9613 return false; 9614 } 9615 Parser.Lex(); 9616 } else { 9617 const MCExpr *AttrExpr; 9618 9619 TagLoc = Parser.getTok().getLoc(); 9620 if (Parser.parseExpression(AttrExpr)) { 9621 return false; 9622 } 9623 9624 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(AttrExpr); 9625 if (!CE) { 9626 Error(TagLoc, "expected numeric constant"); 9627 return false; 9628 } 9629 9630 Tag = CE->getValue(); 9631 } 9632 9633 if (Parser.getTok().isNot(AsmToken::Comma)) { 9634 Error(Parser.getTok().getLoc(), "comma expected"); 9635 return false; 9636 } 9637 Parser.Lex(); // skip comma 9638 9639 StringRef StringValue = ""; 9640 bool IsStringValue = false; 9641 9642 int64_t IntegerValue = 0; 9643 bool IsIntegerValue = false; 9644 9645 if (Tag == ARMBuildAttrs::CPU_raw_name || Tag == ARMBuildAttrs::CPU_name) 9646 IsStringValue = true; 9647 else if (Tag == ARMBuildAttrs::compatibility) { 9648 IsStringValue = true; 9649 IsIntegerValue = true; 9650 } else if (Tag < 32 || Tag % 2 == 0) 9651 IsIntegerValue = true; 9652 else if (Tag % 2 == 1) 9653 IsStringValue = true; 9654 else 9655 llvm_unreachable("invalid tag type"); 9656 9657 if (IsIntegerValue) { 9658 const MCExpr *ValueExpr; 9659 SMLoc ValueExprLoc = Parser.getTok().getLoc(); 9660 if (Parser.parseExpression(ValueExpr)) { 9661 return false; 9662 } 9663 9664 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ValueExpr); 9665 if (!CE) { 9666 Error(ValueExprLoc, "expected numeric constant"); 9667 return false; 9668 } 9669 9670 IntegerValue = CE->getValue(); 9671 } 9672 9673 if (Tag == ARMBuildAttrs::compatibility) { 9674 if (Parser.getTok().isNot(AsmToken::Comma)) 9675 IsStringValue = false; 9676 if (Parser.getTok().isNot(AsmToken::Comma)) { 9677 Error(Parser.getTok().getLoc(), "comma expected"); 9678 return false; 9679 } else { 9680 Parser.Lex(); 9681 } 9682 } 9683 9684 if (IsStringValue) { 9685 if (Parser.getTok().isNot(AsmToken::String)) { 9686 Error(Parser.getTok().getLoc(), "bad string constant"); 9687 return false; 9688 } 9689 9690 StringValue = Parser.getTok().getStringContents(); 9691 Parser.Lex(); 9692 } 9693 9694 if (IsIntegerValue && IsStringValue) { 9695 assert(Tag == ARMBuildAttrs::compatibility); 9696 getTargetStreamer().emitIntTextAttribute(Tag, IntegerValue, StringValue); 9697 } else if (IsIntegerValue) 9698 getTargetStreamer().emitAttribute(Tag, IntegerValue); 9699 else if (IsStringValue) 9700 getTargetStreamer().emitTextAttribute(Tag, StringValue); 9701 return false; 9702 } 9703 9704 /// parseDirectiveCPU 9705 /// ::= .cpu str 9706 bool ARMAsmParser::parseDirectiveCPU(SMLoc L) { 9707 StringRef CPU = getParser().parseStringToEndOfStatement().trim(); 9708 getTargetStreamer().emitTextAttribute(ARMBuildAttrs::CPU_name, CPU); 9709 9710 // FIXME: This is using table-gen data, but should be moved to 9711 // ARMTargetParser once that is table-gen'd. 9712 if (!getSTI().isCPUStringValid(CPU)) { 9713 Error(L, "Unknown CPU name"); 9714 return false; 9715 } 9716 9717 bool WasThumb = isThumb(); 9718 MCSubtargetInfo &STI = copySTI(); 9719 STI.setDefaultFeatures(CPU, ""); 9720 setAvailableFeatures(ComputeAvailableFeatures(STI.getFeatureBits())); 9721 FixModeAfterArchChange(WasThumb, L); 9722 9723 return false; 9724 } 9725 /// parseDirectiveFPU 9726 /// ::= .fpu str 9727 bool ARMAsmParser::parseDirectiveFPU(SMLoc L) { 9728 SMLoc FPUNameLoc = getTok().getLoc(); 9729 StringRef FPU = getParser().parseStringToEndOfStatement().trim(); 9730 9731 unsigned ID = ARM::parseFPU(FPU); 9732 std::vector<const char *> Features; 9733 if (!ARM::getFPUFeatures(ID, Features)) { 9734 Error(FPUNameLoc, "Unknown FPU name"); 9735 return false; 9736 } 9737 9738 MCSubtargetInfo &STI = copySTI(); 9739 for (auto Feature : Features) 9740 STI.ApplyFeatureFlag(Feature); 9741 setAvailableFeatures(ComputeAvailableFeatures(STI.getFeatureBits())); 9742 9743 getTargetStreamer().emitFPU(ID); 9744 return false; 9745 } 9746 9747 /// parseDirectiveFnStart 9748 /// ::= .fnstart 9749 bool ARMAsmParser::parseDirectiveFnStart(SMLoc L) { 9750 if (UC.hasFnStart()) { 9751 Error(L, ".fnstart starts before the end of previous one"); 9752 UC.emitFnStartLocNotes(); 9753 return false; 9754 } 9755 9756 // Reset the unwind directives parser state 9757 UC.reset(); 9758 9759 getTargetStreamer().emitFnStart(); 9760 9761 UC.recordFnStart(L); 9762 return false; 9763 } 9764 9765 /// parseDirectiveFnEnd 9766 /// ::= .fnend 9767 bool ARMAsmParser::parseDirectiveFnEnd(SMLoc L) { 9768 // Check the ordering of unwind directives 9769 if (!UC.hasFnStart()) { 9770 Error(L, ".fnstart must precede .fnend directive"); 9771 return false; 9772 } 9773 9774 // Reset the unwind directives parser state 9775 getTargetStreamer().emitFnEnd(); 9776 9777 UC.reset(); 9778 return false; 9779 } 9780 9781 /// parseDirectiveCantUnwind 9782 /// ::= .cantunwind 9783 bool ARMAsmParser::parseDirectiveCantUnwind(SMLoc L) { 9784 UC.recordCantUnwind(L); 9785 9786 // Check the ordering of unwind directives 9787 if (!UC.hasFnStart()) { 9788 Error(L, ".fnstart must precede .cantunwind directive"); 9789 return false; 9790 } 9791 if (UC.hasHandlerData()) { 9792 Error(L, ".cantunwind can't be used with .handlerdata directive"); 9793 UC.emitHandlerDataLocNotes(); 9794 return false; 9795 } 9796 if (UC.hasPersonality()) { 9797 Error(L, ".cantunwind can't be used with .personality directive"); 9798 UC.emitPersonalityLocNotes(); 9799 return false; 9800 } 9801 9802 getTargetStreamer().emitCantUnwind(); 9803 return false; 9804 } 9805 9806 /// parseDirectivePersonality 9807 /// ::= .personality name 9808 bool ARMAsmParser::parseDirectivePersonality(SMLoc L) { 9809 MCAsmParser &Parser = getParser(); 9810 bool HasExistingPersonality = UC.hasPersonality(); 9811 9812 UC.recordPersonality(L); 9813 9814 // Check the ordering of unwind directives 9815 if (!UC.hasFnStart()) { 9816 Error(L, ".fnstart must precede .personality directive"); 9817 return false; 9818 } 9819 if (UC.cantUnwind()) { 9820 Error(L, ".personality can't be used with .cantunwind directive"); 9821 UC.emitCantUnwindLocNotes(); 9822 return false; 9823 } 9824 if (UC.hasHandlerData()) { 9825 Error(L, ".personality must precede .handlerdata directive"); 9826 UC.emitHandlerDataLocNotes(); 9827 return false; 9828 } 9829 if (HasExistingPersonality) { 9830 Error(L, "multiple personality directives"); 9831 UC.emitPersonalityLocNotes(); 9832 return false; 9833 } 9834 9835 // Parse the name of the personality routine 9836 if (Parser.getTok().isNot(AsmToken::Identifier)) { 9837 Error(L, "unexpected input in .personality directive."); 9838 return false; 9839 } 9840 StringRef Name(Parser.getTok().getIdentifier()); 9841 Parser.Lex(); 9842 9843 MCSymbol *PR = getParser().getContext().getOrCreateSymbol(Name); 9844 getTargetStreamer().emitPersonality(PR); 9845 return false; 9846 } 9847 9848 /// parseDirectiveHandlerData 9849 /// ::= .handlerdata 9850 bool ARMAsmParser::parseDirectiveHandlerData(SMLoc L) { 9851 UC.recordHandlerData(L); 9852 9853 // Check the ordering of unwind directives 9854 if (!UC.hasFnStart()) { 9855 Error(L, ".fnstart must precede .personality directive"); 9856 return false; 9857 } 9858 if (UC.cantUnwind()) { 9859 Error(L, ".handlerdata can't be used with .cantunwind directive"); 9860 UC.emitCantUnwindLocNotes(); 9861 return false; 9862 } 9863 9864 getTargetStreamer().emitHandlerData(); 9865 return false; 9866 } 9867 9868 /// parseDirectiveSetFP 9869 /// ::= .setfp fpreg, spreg [, offset] 9870 bool ARMAsmParser::parseDirectiveSetFP(SMLoc L) { 9871 MCAsmParser &Parser = getParser(); 9872 // Check the ordering of unwind directives 9873 if (!UC.hasFnStart()) { 9874 Error(L, ".fnstart must precede .setfp directive"); 9875 return false; 9876 } 9877 if (UC.hasHandlerData()) { 9878 Error(L, ".setfp must precede .handlerdata directive"); 9879 return false; 9880 } 9881 9882 // Parse fpreg 9883 SMLoc FPRegLoc = Parser.getTok().getLoc(); 9884 int FPReg = tryParseRegister(); 9885 if (FPReg == -1) { 9886 Error(FPRegLoc, "frame pointer register expected"); 9887 return false; 9888 } 9889 9890 // Consume comma 9891 if (Parser.getTok().isNot(AsmToken::Comma)) { 9892 Error(Parser.getTok().getLoc(), "comma expected"); 9893 return false; 9894 } 9895 Parser.Lex(); // skip comma 9896 9897 // Parse spreg 9898 SMLoc SPRegLoc = Parser.getTok().getLoc(); 9899 int SPReg = tryParseRegister(); 9900 if (SPReg == -1) { 9901 Error(SPRegLoc, "stack pointer register expected"); 9902 return false; 9903 } 9904 9905 if (SPReg != ARM::SP && SPReg != UC.getFPReg()) { 9906 Error(SPRegLoc, "register should be either $sp or the latest fp register"); 9907 return false; 9908 } 9909 9910 // Update the frame pointer register 9911 UC.saveFPReg(FPReg); 9912 9913 // Parse offset 9914 int64_t Offset = 0; 9915 if (Parser.getTok().is(AsmToken::Comma)) { 9916 Parser.Lex(); // skip comma 9917 9918 if (Parser.getTok().isNot(AsmToken::Hash) && 9919 Parser.getTok().isNot(AsmToken::Dollar)) { 9920 Error(Parser.getTok().getLoc(), "'#' expected"); 9921 return false; 9922 } 9923 Parser.Lex(); // skip hash token. 9924 9925 const MCExpr *OffsetExpr; 9926 SMLoc ExLoc = Parser.getTok().getLoc(); 9927 SMLoc EndLoc; 9928 if (getParser().parseExpression(OffsetExpr, EndLoc)) { 9929 Error(ExLoc, "malformed setfp offset"); 9930 return false; 9931 } 9932 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(OffsetExpr); 9933 if (!CE) { 9934 Error(ExLoc, "setfp offset must be an immediate"); 9935 return false; 9936 } 9937 9938 Offset = CE->getValue(); 9939 } 9940 9941 getTargetStreamer().emitSetFP(static_cast<unsigned>(FPReg), 9942 static_cast<unsigned>(SPReg), Offset); 9943 return false; 9944 } 9945 9946 /// parseDirective 9947 /// ::= .pad offset 9948 bool ARMAsmParser::parseDirectivePad(SMLoc L) { 9949 MCAsmParser &Parser = getParser(); 9950 // Check the ordering of unwind directives 9951 if (!UC.hasFnStart()) { 9952 Error(L, ".fnstart must precede .pad directive"); 9953 return false; 9954 } 9955 if (UC.hasHandlerData()) { 9956 Error(L, ".pad must precede .handlerdata directive"); 9957 return false; 9958 } 9959 9960 // Parse the offset 9961 if (Parser.getTok().isNot(AsmToken::Hash) && 9962 Parser.getTok().isNot(AsmToken::Dollar)) { 9963 Error(Parser.getTok().getLoc(), "'#' expected"); 9964 return false; 9965 } 9966 Parser.Lex(); // skip hash token. 9967 9968 const MCExpr *OffsetExpr; 9969 SMLoc ExLoc = Parser.getTok().getLoc(); 9970 SMLoc EndLoc; 9971 if (getParser().parseExpression(OffsetExpr, EndLoc)) { 9972 Error(ExLoc, "malformed pad offset"); 9973 return false; 9974 } 9975 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(OffsetExpr); 9976 if (!CE) { 9977 Error(ExLoc, "pad offset must be an immediate"); 9978 return false; 9979 } 9980 9981 getTargetStreamer().emitPad(CE->getValue()); 9982 return false; 9983 } 9984 9985 /// parseDirectiveRegSave 9986 /// ::= .save { registers } 9987 /// ::= .vsave { registers } 9988 bool ARMAsmParser::parseDirectiveRegSave(SMLoc L, bool IsVector) { 9989 // Check the ordering of unwind directives 9990 if (!UC.hasFnStart()) { 9991 Error(L, ".fnstart must precede .save or .vsave directives"); 9992 return false; 9993 } 9994 if (UC.hasHandlerData()) { 9995 Error(L, ".save or .vsave must precede .handlerdata directive"); 9996 return false; 9997 } 9998 9999 // RAII object to make sure parsed operands are deleted. 10000 SmallVector<std::unique_ptr<MCParsedAsmOperand>, 1> Operands; 10001 10002 // Parse the register list 10003 if (parseRegisterList(Operands)) 10004 return false; 10005 ARMOperand &Op = (ARMOperand &)*Operands[0]; 10006 if (!IsVector && !Op.isRegList()) { 10007 Error(L, ".save expects GPR registers"); 10008 return false; 10009 } 10010 if (IsVector && !Op.isDPRRegList()) { 10011 Error(L, ".vsave expects DPR registers"); 10012 return false; 10013 } 10014 10015 getTargetStreamer().emitRegSave(Op.getRegList(), IsVector); 10016 return false; 10017 } 10018 10019 /// parseDirectiveInst 10020 /// ::= .inst opcode [, ...] 10021 /// ::= .inst.n opcode [, ...] 10022 /// ::= .inst.w opcode [, ...] 10023 bool ARMAsmParser::parseDirectiveInst(SMLoc Loc, char Suffix) { 10024 MCAsmParser &Parser = getParser(); 10025 int Width; 10026 10027 if (isThumb()) { 10028 switch (Suffix) { 10029 case 'n': 10030 Width = 2; 10031 break; 10032 case 'w': 10033 Width = 4; 10034 break; 10035 default: 10036 Error(Loc, "cannot determine Thumb instruction size, " 10037 "use inst.n/inst.w instead"); 10038 return false; 10039 } 10040 } else { 10041 if (Suffix) { 10042 Error(Loc, "width suffixes are invalid in ARM mode"); 10043 return false; 10044 } 10045 Width = 4; 10046 } 10047 10048 if (getLexer().is(AsmToken::EndOfStatement)) { 10049 Error(Loc, "expected expression following directive"); 10050 return false; 10051 } 10052 10053 for (;;) { 10054 const MCExpr *Expr; 10055 10056 if (getParser().parseExpression(Expr)) { 10057 Error(Loc, "expected expression"); 10058 return false; 10059 } 10060 10061 const MCConstantExpr *Value = dyn_cast_or_null<MCConstantExpr>(Expr); 10062 if (!Value) { 10063 Error(Loc, "expected constant expression"); 10064 return false; 10065 } 10066 10067 switch (Width) { 10068 case 2: 10069 if (Value->getValue() > 0xffff) { 10070 Error(Loc, "inst.n operand is too big, use inst.w instead"); 10071 return false; 10072 } 10073 break; 10074 case 4: 10075 if (Value->getValue() > 0xffffffff) { 10076 Error(Loc, 10077 StringRef(Suffix ? "inst.w" : "inst") + " operand is too big"); 10078 return false; 10079 } 10080 break; 10081 default: 10082 llvm_unreachable("only supported widths are 2 and 4"); 10083 } 10084 10085 getTargetStreamer().emitInst(Value->getValue(), Suffix); 10086 10087 if (getLexer().is(AsmToken::EndOfStatement)) 10088 break; 10089 10090 if (getLexer().isNot(AsmToken::Comma)) { 10091 Error(Loc, "unexpected token in directive"); 10092 return false; 10093 } 10094 10095 Parser.Lex(); 10096 } 10097 10098 Parser.Lex(); 10099 return false; 10100 } 10101 10102 /// parseDirectiveLtorg 10103 /// ::= .ltorg | .pool 10104 bool ARMAsmParser::parseDirectiveLtorg(SMLoc L) { 10105 getTargetStreamer().emitCurrentConstantPool(); 10106 return false; 10107 } 10108 10109 bool ARMAsmParser::parseDirectiveEven(SMLoc L) { 10110 const MCSection *Section = getStreamer().getCurrentSection().first; 10111 10112 if (getLexer().isNot(AsmToken::EndOfStatement)) { 10113 TokError("unexpected token in directive"); 10114 return false; 10115 } 10116 10117 if (!Section) { 10118 getStreamer().InitSections(false); 10119 Section = getStreamer().getCurrentSection().first; 10120 } 10121 10122 assert(Section && "must have section to emit alignment"); 10123 if (Section->UseCodeAlign()) 10124 getStreamer().EmitCodeAlignment(2); 10125 else 10126 getStreamer().EmitValueToAlignment(2); 10127 10128 return false; 10129 } 10130 10131 /// parseDirectivePersonalityIndex 10132 /// ::= .personalityindex index 10133 bool ARMAsmParser::parseDirectivePersonalityIndex(SMLoc L) { 10134 MCAsmParser &Parser = getParser(); 10135 bool HasExistingPersonality = UC.hasPersonality(); 10136 10137 UC.recordPersonalityIndex(L); 10138 10139 if (!UC.hasFnStart()) { 10140 Error(L, ".fnstart must precede .personalityindex directive"); 10141 return false; 10142 } 10143 if (UC.cantUnwind()) { 10144 Error(L, ".personalityindex cannot be used with .cantunwind"); 10145 UC.emitCantUnwindLocNotes(); 10146 return false; 10147 } 10148 if (UC.hasHandlerData()) { 10149 Error(L, ".personalityindex must precede .handlerdata directive"); 10150 UC.emitHandlerDataLocNotes(); 10151 return false; 10152 } 10153 if (HasExistingPersonality) { 10154 Error(L, "multiple personality directives"); 10155 UC.emitPersonalityLocNotes(); 10156 return false; 10157 } 10158 10159 const MCExpr *IndexExpression; 10160 SMLoc IndexLoc = Parser.getTok().getLoc(); 10161 if (Parser.parseExpression(IndexExpression)) { 10162 return false; 10163 } 10164 10165 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(IndexExpression); 10166 if (!CE) { 10167 Error(IndexLoc, "index must be a constant number"); 10168 return false; 10169 } 10170 if (CE->getValue() < 0 || 10171 CE->getValue() >= ARM::EHABI::NUM_PERSONALITY_INDEX) { 10172 Error(IndexLoc, "personality routine index should be in range [0-3]"); 10173 return false; 10174 } 10175 10176 getTargetStreamer().emitPersonalityIndex(CE->getValue()); 10177 return false; 10178 } 10179 10180 /// parseDirectiveUnwindRaw 10181 /// ::= .unwind_raw offset, opcode [, opcode...] 10182 bool ARMAsmParser::parseDirectiveUnwindRaw(SMLoc L) { 10183 MCAsmParser &Parser = getParser(); 10184 if (!UC.hasFnStart()) { 10185 Error(L, ".fnstart must precede .unwind_raw directives"); 10186 return false; 10187 } 10188 10189 int64_t StackOffset; 10190 10191 const MCExpr *OffsetExpr; 10192 SMLoc OffsetLoc = getLexer().getLoc(); 10193 if (getLexer().is(AsmToken::EndOfStatement) || 10194 getParser().parseExpression(OffsetExpr)) { 10195 Error(OffsetLoc, "expected expression"); 10196 return false; 10197 } 10198 10199 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(OffsetExpr); 10200 if (!CE) { 10201 Error(OffsetLoc, "offset must be a constant"); 10202 return false; 10203 } 10204 10205 StackOffset = CE->getValue(); 10206 10207 if (getLexer().isNot(AsmToken::Comma)) { 10208 Error(getLexer().getLoc(), "expected comma"); 10209 return false; 10210 } 10211 Parser.Lex(); 10212 10213 SmallVector<uint8_t, 16> Opcodes; 10214 for (;;) { 10215 const MCExpr *OE; 10216 10217 SMLoc OpcodeLoc = getLexer().getLoc(); 10218 if (getLexer().is(AsmToken::EndOfStatement) || Parser.parseExpression(OE)) { 10219 Error(OpcodeLoc, "expected opcode expression"); 10220 return false; 10221 } 10222 10223 const MCConstantExpr *OC = dyn_cast<MCConstantExpr>(OE); 10224 if (!OC) { 10225 Error(OpcodeLoc, "opcode value must be a constant"); 10226 return false; 10227 } 10228 10229 const int64_t Opcode = OC->getValue(); 10230 if (Opcode & ~0xff) { 10231 Error(OpcodeLoc, "invalid opcode"); 10232 return false; 10233 } 10234 10235 Opcodes.push_back(uint8_t(Opcode)); 10236 10237 if (getLexer().is(AsmToken::EndOfStatement)) 10238 break; 10239 10240 if (getLexer().isNot(AsmToken::Comma)) { 10241 Error(getLexer().getLoc(), "unexpected token in directive"); 10242 return false; 10243 } 10244 10245 Parser.Lex(); 10246 } 10247 10248 getTargetStreamer().emitUnwindRaw(StackOffset, Opcodes); 10249 10250 Parser.Lex(); 10251 return false; 10252 } 10253 10254 /// parseDirectiveTLSDescSeq 10255 /// ::= .tlsdescseq tls-variable 10256 bool ARMAsmParser::parseDirectiveTLSDescSeq(SMLoc L) { 10257 MCAsmParser &Parser = getParser(); 10258 10259 if (getLexer().isNot(AsmToken::Identifier)) { 10260 TokError("expected variable after '.tlsdescseq' directive"); 10261 return false; 10262 } 10263 10264 const MCSymbolRefExpr *SRE = 10265 MCSymbolRefExpr::create(Parser.getTok().getIdentifier(), 10266 MCSymbolRefExpr::VK_ARM_TLSDESCSEQ, getContext()); 10267 Lex(); 10268 10269 if (getLexer().isNot(AsmToken::EndOfStatement)) { 10270 Error(Parser.getTok().getLoc(), "unexpected token"); 10271 return false; 10272 } 10273 10274 getTargetStreamer().AnnotateTLSDescriptorSequence(SRE); 10275 return false; 10276 } 10277 10278 /// parseDirectiveMovSP 10279 /// ::= .movsp reg [, #offset] 10280 bool ARMAsmParser::parseDirectiveMovSP(SMLoc L) { 10281 MCAsmParser &Parser = getParser(); 10282 if (!UC.hasFnStart()) { 10283 Error(L, ".fnstart must precede .movsp directives"); 10284 return false; 10285 } 10286 if (UC.getFPReg() != ARM::SP) { 10287 Error(L, "unexpected .movsp directive"); 10288 return false; 10289 } 10290 10291 SMLoc SPRegLoc = Parser.getTok().getLoc(); 10292 int SPReg = tryParseRegister(); 10293 if (SPReg == -1) { 10294 Error(SPRegLoc, "register expected"); 10295 return false; 10296 } 10297 10298 if (SPReg == ARM::SP || SPReg == ARM::PC) { 10299 Error(SPRegLoc, "sp and pc are not permitted in .movsp directive"); 10300 return false; 10301 } 10302 10303 int64_t Offset = 0; 10304 if (Parser.getTok().is(AsmToken::Comma)) { 10305 Parser.Lex(); 10306 10307 if (Parser.getTok().isNot(AsmToken::Hash)) { 10308 Error(Parser.getTok().getLoc(), "expected #constant"); 10309 return false; 10310 } 10311 Parser.Lex(); 10312 10313 const MCExpr *OffsetExpr; 10314 SMLoc OffsetLoc = Parser.getTok().getLoc(); 10315 if (Parser.parseExpression(OffsetExpr)) { 10316 Error(OffsetLoc, "malformed offset expression"); 10317 return false; 10318 } 10319 10320 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(OffsetExpr); 10321 if (!CE) { 10322 Error(OffsetLoc, "offset must be an immediate constant"); 10323 return false; 10324 } 10325 10326 Offset = CE->getValue(); 10327 } 10328 10329 getTargetStreamer().emitMovSP(SPReg, Offset); 10330 UC.saveFPReg(SPReg); 10331 10332 return false; 10333 } 10334 10335 /// parseDirectiveObjectArch 10336 /// ::= .object_arch name 10337 bool ARMAsmParser::parseDirectiveObjectArch(SMLoc L) { 10338 MCAsmParser &Parser = getParser(); 10339 if (getLexer().isNot(AsmToken::Identifier)) { 10340 Error(getLexer().getLoc(), "unexpected token"); 10341 return false; 10342 } 10343 10344 StringRef Arch = Parser.getTok().getString(); 10345 SMLoc ArchLoc = Parser.getTok().getLoc(); 10346 Lex(); 10347 10348 unsigned ID = ARM::parseArch(Arch); 10349 10350 if (ID == ARM::AK_INVALID) { 10351 Error(ArchLoc, "unknown architecture '" + Arch + "'"); 10352 return false; 10353 } 10354 10355 getTargetStreamer().emitObjectArch(ID); 10356 10357 if (getLexer().isNot(AsmToken::EndOfStatement)) { 10358 Error(getLexer().getLoc(), "unexpected token"); 10359 } 10360 10361 return false; 10362 } 10363 10364 /// parseDirectiveAlign 10365 /// ::= .align 10366 bool ARMAsmParser::parseDirectiveAlign(SMLoc L) { 10367 // NOTE: if this is not the end of the statement, fall back to the target 10368 // agnostic handling for this directive which will correctly handle this. 10369 if (getLexer().isNot(AsmToken::EndOfStatement)) 10370 return true; 10371 10372 // '.align' is target specifically handled to mean 2**2 byte alignment. 10373 const MCSection *Section = getStreamer().getCurrentSection().first; 10374 assert(Section && "must have section to emit alignment"); 10375 if (Section->UseCodeAlign()) 10376 getStreamer().EmitCodeAlignment(4, 0); 10377 else 10378 getStreamer().EmitValueToAlignment(4, 0, 1, 0); 10379 10380 return false; 10381 } 10382 10383 /// parseDirectiveThumbSet 10384 /// ::= .thumb_set name, value 10385 bool ARMAsmParser::parseDirectiveThumbSet(SMLoc L) { 10386 MCAsmParser &Parser = getParser(); 10387 10388 StringRef Name; 10389 if (Parser.parseIdentifier(Name)) { 10390 TokError("expected identifier after '.thumb_set'"); 10391 return false; 10392 } 10393 10394 if (getLexer().isNot(AsmToken::Comma)) { 10395 TokError("expected comma after name '" + Name + "'"); 10396 return false; 10397 } 10398 Lex(); 10399 10400 MCSymbol *Sym; 10401 const MCExpr *Value; 10402 if (MCParserUtils::parseAssignmentExpression(Name, /* allow_redef */ true, 10403 Parser, Sym, Value)) 10404 return true; 10405 10406 getTargetStreamer().emitThumbSet(Sym, Value); 10407 return false; 10408 } 10409 10410 /// Force static initialization. 10411 extern "C" void LLVMInitializeARMAsmParser() { 10412 RegisterMCAsmParser<ARMAsmParser> X(TheARMLETarget); 10413 RegisterMCAsmParser<ARMAsmParser> Y(TheARMBETarget); 10414 RegisterMCAsmParser<ARMAsmParser> A(TheThumbLETarget); 10415 RegisterMCAsmParser<ARMAsmParser> B(TheThumbBETarget); 10416 } 10417 10418 #define GET_REGISTER_MATCHER 10419 #define GET_SUBTARGET_FEATURE_NAME 10420 #define GET_MATCHER_IMPLEMENTATION 10421 #include "ARMGenAsmMatcher.inc" 10422 10423 // FIXME: This structure should be moved inside ARMTargetParser 10424 // when we start to table-generate them, and we can use the ARM 10425 // flags below, that were generated by table-gen. 10426 static const struct { 10427 const unsigned Kind; 10428 const uint64_t ArchCheck; 10429 const FeatureBitset Features; 10430 } Extensions[] = { 10431 { ARM::AEK_CRC, Feature_HasV8, {ARM::FeatureCRC} }, 10432 { ARM::AEK_CRYPTO, Feature_HasV8, 10433 {ARM::FeatureCrypto, ARM::FeatureNEON, ARM::FeatureFPARMv8} }, 10434 { ARM::AEK_FP, Feature_HasV8, {ARM::FeatureFPARMv8} }, 10435 { (ARM::AEK_HWDIV | ARM::AEK_HWDIVARM), Feature_HasV7 | Feature_IsNotMClass, 10436 {ARM::FeatureHWDiv, ARM::FeatureHWDivARM} }, 10437 { ARM::AEK_MP, Feature_HasV7 | Feature_IsNotMClass, {ARM::FeatureMP} }, 10438 { ARM::AEK_SIMD, Feature_HasV8, {ARM::FeatureNEON, ARM::FeatureFPARMv8} }, 10439 { ARM::AEK_SEC, Feature_HasV6K, {ARM::FeatureTrustZone} }, 10440 // FIXME: Only available in A-class, isel not predicated 10441 { ARM::AEK_VIRT, Feature_HasV7, {ARM::FeatureVirtualization} }, 10442 { ARM::AEK_FP16, Feature_HasV8_2a, {ARM::FeatureFPARMv8, ARM::FeatureFullFP16} }, 10443 { ARM::AEK_RAS, Feature_HasV8, {ARM::FeatureRAS} }, 10444 // FIXME: Unsupported extensions. 10445 { ARM::AEK_OS, Feature_None, {} }, 10446 { ARM::AEK_IWMMXT, Feature_None, {} }, 10447 { ARM::AEK_IWMMXT2, Feature_None, {} }, 10448 { ARM::AEK_MAVERICK, Feature_None, {} }, 10449 { ARM::AEK_XSCALE, Feature_None, {} }, 10450 }; 10451 10452 /// parseDirectiveArchExtension 10453 /// ::= .arch_extension [no]feature 10454 bool ARMAsmParser::parseDirectiveArchExtension(SMLoc L) { 10455 MCAsmParser &Parser = getParser(); 10456 10457 if (getLexer().isNot(AsmToken::Identifier)) { 10458 Error(getLexer().getLoc(), "expected architecture extension name"); 10459 return false; 10460 } 10461 10462 StringRef Name = Parser.getTok().getString(); 10463 SMLoc ExtLoc = Parser.getTok().getLoc(); 10464 Lex(); 10465 10466 bool EnableFeature = true; 10467 if (Name.startswith_lower("no")) { 10468 EnableFeature = false; 10469 Name = Name.substr(2); 10470 } 10471 unsigned FeatureKind = ARM::parseArchExt(Name); 10472 if (FeatureKind == ARM::AEK_INVALID) { 10473 Error(ExtLoc, "unknown architectural extension: " + Name); 10474 return false; 10475 } 10476 10477 for (const auto &Extension : Extensions) { 10478 if (Extension.Kind != FeatureKind) 10479 continue; 10480 10481 if (Extension.Features.none()) { 10482 Error(ExtLoc, "unsupported architectural extension: " + Name); 10483 return false; 10484 } 10485 10486 if ((getAvailableFeatures() & Extension.ArchCheck) != Extension.ArchCheck) { 10487 Error(ExtLoc, "architectural extension '" + Name + "' is not " 10488 "allowed for the current base architecture"); 10489 return false; 10490 } 10491 10492 MCSubtargetInfo &STI = copySTI(); 10493 FeatureBitset ToggleFeatures = EnableFeature 10494 ? (~STI.getFeatureBits() & Extension.Features) 10495 : ( STI.getFeatureBits() & Extension.Features); 10496 10497 uint64_t Features = 10498 ComputeAvailableFeatures(STI.ToggleFeature(ToggleFeatures)); 10499 setAvailableFeatures(Features); 10500 return false; 10501 } 10502 10503 Error(ExtLoc, "unknown architectural extension: " + Name); 10504 return false; 10505 } 10506 10507 // Define this matcher function after the auto-generated include so we 10508 // have the match class enum definitions. 10509 unsigned ARMAsmParser::validateTargetOperandClass(MCParsedAsmOperand &AsmOp, 10510 unsigned Kind) { 10511 ARMOperand &Op = static_cast<ARMOperand &>(AsmOp); 10512 // If the kind is a token for a literal immediate, check if our asm 10513 // operand matches. This is for InstAliases which have a fixed-value 10514 // immediate in the syntax. 10515 switch (Kind) { 10516 default: break; 10517 case MCK__35_0: 10518 if (Op.isImm()) 10519 if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Op.getImm())) 10520 if (CE->getValue() == 0) 10521 return Match_Success; 10522 break; 10523 case MCK_ModImm: 10524 if (Op.isImm()) { 10525 const MCExpr *SOExpr = Op.getImm(); 10526 int64_t Value; 10527 if (!SOExpr->evaluateAsAbsolute(Value)) 10528 return Match_Success; 10529 assert((Value >= INT32_MIN && Value <= UINT32_MAX) && 10530 "expression value must be representable in 32 bits"); 10531 } 10532 break; 10533 case MCK_rGPR: 10534 if (hasV8Ops() && Op.isReg() && Op.getReg() == ARM::SP) 10535 return Match_Success; 10536 break; 10537 case MCK_GPRPair: 10538 if (Op.isReg() && 10539 MRI->getRegClass(ARM::GPRRegClassID).contains(Op.getReg())) 10540 return Match_Success; 10541 break; 10542 } 10543 return Match_InvalidOperand; 10544 } 10545