1 //===- llvm/CodeGen/MachineInstr.h - MachineInstr class ---------*- C++ -*-===// 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 // This file contains the declaration of the MachineInstr class, which is the 11 // basic representation for all target dependent machine instructions used by 12 // the back end. 13 // 14 //===----------------------------------------------------------------------===// 15 16 #ifndef LLVM_CODEGEN_MACHINEINSTR_H 17 #define LLVM_CODEGEN_MACHINEINSTR_H 18 19 #include "llvm/ADT/DenseMapInfo.h" 20 #include "llvm/ADT/ilist.h" 21 #include "llvm/ADT/ilist_node.h" 22 #include "llvm/ADT/iterator_range.h" 23 #include "llvm/Analysis/AliasAnalysis.h" 24 #include "llvm/CodeGen/MachineOperand.h" 25 #include "llvm/CodeGen/TargetOpcodes.h" 26 #include "llvm/IR/DebugLoc.h" 27 #include "llvm/IR/InlineAsm.h" 28 #include "llvm/MC/MCInstrDesc.h" 29 #include "llvm/Support/ArrayRecycler.h" 30 #include <algorithm> 31 #include <cassert> 32 #include <cstdint> 33 #include <utility> 34 35 namespace llvm { 36 37 template <typename T> class ArrayRef; 38 class DIExpression; 39 class DILocalVariable; 40 class MachineBasicBlock; 41 class MachineFunction; 42 class MachineMemOperand; 43 class MachineRegisterInfo; 44 class ModuleSlotTracker; 45 class raw_ostream; 46 template <typename T> class SmallVectorImpl; 47 class StringRef; 48 class TargetInstrInfo; 49 class TargetRegisterClass; 50 class TargetRegisterInfo; 51 52 //===----------------------------------------------------------------------===// 53 /// Representation of each machine instruction. 54 /// 55 /// This class isn't a POD type, but it must have a trivial destructor. When a 56 /// MachineFunction is deleted, all the contained MachineInstrs are deallocated 57 /// without having their destructor called. 58 /// 59 class MachineInstr 60 : public ilist_node_with_parent<MachineInstr, MachineBasicBlock, 61 ilist_sentinel_tracking<true>> { 62 public: 63 using mmo_iterator = MachineMemOperand **; 64 65 /// Flags to specify different kinds of comments to output in 66 /// assembly code. These flags carry semantic information not 67 /// otherwise easily derivable from the IR text. 68 /// 69 enum CommentFlag { 70 ReloadReuse = 0x1 // higher bits are reserved for target dep comments. 71 }; 72 73 enum MIFlag { 74 NoFlags = 0, 75 FrameSetup = 1 << 0, // Instruction is used as a part of 76 // function frame setup code. 77 FrameDestroy = 1 << 1, // Instruction is used as a part of 78 // function frame destruction code. 79 BundledPred = 1 << 2, // Instruction has bundled predecessors. 80 BundledSucc = 1 << 3 // Instruction has bundled successors. 81 }; 82 83 private: 84 const MCInstrDesc *MCID; // Instruction descriptor. 85 MachineBasicBlock *Parent = nullptr; // Pointer to the owning basic block. 86 87 // Operands are allocated by an ArrayRecycler. 88 MachineOperand *Operands = nullptr; // Pointer to the first operand. 89 unsigned NumOperands = 0; // Number of operands on instruction. 90 using OperandCapacity = ArrayRecycler<MachineOperand>::Capacity; 91 OperandCapacity CapOperands; // Capacity of the Operands array. 92 93 uint8_t Flags = 0; // Various bits of additional 94 // information about machine 95 // instruction. 96 97 uint8_t AsmPrinterFlags = 0; // Various bits of information used by 98 // the AsmPrinter to emit helpful 99 // comments. This is *not* semantic 100 // information. Do not use this for 101 // anything other than to convey comment 102 // information to AsmPrinter. 103 104 uint8_t NumMemRefs = 0; // Information on memory references. 105 // Note that MemRefs == nullptr, means 'don't know', not 'no memory access'. 106 // Calling code must treat missing information conservatively. If the number 107 // of memory operands required to be precise exceeds the maximum value of 108 // NumMemRefs - currently 256 - we remove the operands entirely. Note also 109 // that this is a non-owning reference to a shared copy on write buffer owned 110 // by the MachineFunction and created via MF.allocateMemRefsArray. 111 mmo_iterator MemRefs = nullptr; 112 113 DebugLoc debugLoc; // Source line information. 114 115 // Intrusive list support 116 friend struct ilist_traits<MachineInstr>; 117 friend struct ilist_callback_traits<MachineBasicBlock>; 118 void setParent(MachineBasicBlock *P) { Parent = P; } 119 120 /// This constructor creates a copy of the given 121 /// MachineInstr in the given MachineFunction. 122 MachineInstr(MachineFunction &, const MachineInstr &); 123 124 /// This constructor create a MachineInstr and add the implicit operands. 125 /// It reserves space for number of operands specified by 126 /// MCInstrDesc. An explicit DebugLoc is supplied. 127 MachineInstr(MachineFunction &, const MCInstrDesc &MCID, DebugLoc dl, 128 bool NoImp = false); 129 130 // MachineInstrs are pool-allocated and owned by MachineFunction. 131 friend class MachineFunction; 132 133 public: 134 MachineInstr(const MachineInstr &) = delete; 135 MachineInstr &operator=(const MachineInstr &) = delete; 136 // Use MachineFunction::DeleteMachineInstr() instead. 137 ~MachineInstr() = delete; 138 139 const MachineBasicBlock* getParent() const { return Parent; } 140 MachineBasicBlock* getParent() { return Parent; } 141 142 /// Return the function that contains the basic block that this instruction 143 /// belongs to. 144 /// 145 /// Note: this is undefined behaviour if the instruction does not have a 146 /// parent. 147 const MachineFunction *getMF() const; 148 MachineFunction *getMF() { 149 return const_cast<MachineFunction *>( 150 static_cast<const MachineInstr *>(this)->getMF()); 151 } 152 153 /// Return the asm printer flags bitvector. 154 uint8_t getAsmPrinterFlags() const { return AsmPrinterFlags; } 155 156 /// Clear the AsmPrinter bitvector. 157 void clearAsmPrinterFlags() { AsmPrinterFlags = 0; } 158 159 /// Return whether an AsmPrinter flag is set. 160 bool getAsmPrinterFlag(CommentFlag Flag) const { 161 return AsmPrinterFlags & Flag; 162 } 163 164 /// Set a flag for the AsmPrinter. 165 void setAsmPrinterFlag(uint8_t Flag) { 166 AsmPrinterFlags |= Flag; 167 } 168 169 /// Clear specific AsmPrinter flags. 170 void clearAsmPrinterFlag(CommentFlag Flag) { 171 AsmPrinterFlags &= ~Flag; 172 } 173 174 /// Return the MI flags bitvector. 175 uint8_t getFlags() const { 176 return Flags; 177 } 178 179 /// Return whether an MI flag is set. 180 bool getFlag(MIFlag Flag) const { 181 return Flags & Flag; 182 } 183 184 /// Set a MI flag. 185 void setFlag(MIFlag Flag) { 186 Flags |= (uint8_t)Flag; 187 } 188 189 void setFlags(unsigned flags) { 190 // Filter out the automatically maintained flags. 191 unsigned Mask = BundledPred | BundledSucc; 192 Flags = (Flags & Mask) | (flags & ~Mask); 193 } 194 195 /// clearFlag - Clear a MI flag. 196 void clearFlag(MIFlag Flag) { 197 Flags &= ~((uint8_t)Flag); 198 } 199 200 /// Return true if MI is in a bundle (but not the first MI in a bundle). 201 /// 202 /// A bundle looks like this before it's finalized: 203 /// ---------------- 204 /// | MI | 205 /// ---------------- 206 /// | 207 /// ---------------- 208 /// | MI * | 209 /// ---------------- 210 /// | 211 /// ---------------- 212 /// | MI * | 213 /// ---------------- 214 /// In this case, the first MI starts a bundle but is not inside a bundle, the 215 /// next 2 MIs are considered "inside" the bundle. 216 /// 217 /// After a bundle is finalized, it looks like this: 218 /// ---------------- 219 /// | Bundle | 220 /// ---------------- 221 /// | 222 /// ---------------- 223 /// | MI * | 224 /// ---------------- 225 /// | 226 /// ---------------- 227 /// | MI * | 228 /// ---------------- 229 /// | 230 /// ---------------- 231 /// | MI * | 232 /// ---------------- 233 /// The first instruction has the special opcode "BUNDLE". It's not "inside" 234 /// a bundle, but the next three MIs are. 235 bool isInsideBundle() const { 236 return getFlag(BundledPred); 237 } 238 239 /// Return true if this instruction part of a bundle. This is true 240 /// if either itself or its following instruction is marked "InsideBundle". 241 bool isBundled() const { 242 return isBundledWithPred() || isBundledWithSucc(); 243 } 244 245 /// Return true if this instruction is part of a bundle, and it is not the 246 /// first instruction in the bundle. 247 bool isBundledWithPred() const { return getFlag(BundledPred); } 248 249 /// Return true if this instruction is part of a bundle, and it is not the 250 /// last instruction in the bundle. 251 bool isBundledWithSucc() const { return getFlag(BundledSucc); } 252 253 /// Bundle this instruction with its predecessor. This can be an unbundled 254 /// instruction, or it can be the first instruction in a bundle. 255 void bundleWithPred(); 256 257 /// Bundle this instruction with its successor. This can be an unbundled 258 /// instruction, or it can be the last instruction in a bundle. 259 void bundleWithSucc(); 260 261 /// Break bundle above this instruction. 262 void unbundleFromPred(); 263 264 /// Break bundle below this instruction. 265 void unbundleFromSucc(); 266 267 /// Returns the debug location id of this MachineInstr. 268 const DebugLoc &getDebugLoc() const { return debugLoc; } 269 270 /// Return the debug variable referenced by 271 /// this DBG_VALUE instruction. 272 const DILocalVariable *getDebugVariable() const; 273 274 /// Return the complex address expression referenced by 275 /// this DBG_VALUE instruction. 276 const DIExpression *getDebugExpression() const; 277 278 /// Emit an error referring to the source location of this instruction. 279 /// This should only be used for inline assembly that is somehow 280 /// impossible to compile. Other errors should have been handled much 281 /// earlier. 282 /// 283 /// If this method returns, the caller should try to recover from the error. 284 void emitError(StringRef Msg) const; 285 286 /// Returns the target instruction descriptor of this MachineInstr. 287 const MCInstrDesc &getDesc() const { return *MCID; } 288 289 /// Returns the opcode of this MachineInstr. 290 unsigned getOpcode() const { return MCID->Opcode; } 291 292 /// Access to explicit operands of the instruction. 293 unsigned getNumOperands() const { return NumOperands; } 294 295 const MachineOperand& getOperand(unsigned i) const { 296 assert(i < getNumOperands() && "getOperand() out of range!"); 297 return Operands[i]; 298 } 299 MachineOperand& getOperand(unsigned i) { 300 assert(i < getNumOperands() && "getOperand() out of range!"); 301 return Operands[i]; 302 } 303 304 /// Return true if operand \p OpIdx is a subregister index. 305 bool isOperandSubregIdx(unsigned OpIdx) const { 306 assert(getOperand(OpIdx).getType() == MachineOperand::MO_Immediate && 307 "Expected MO_Immediate operand type."); 308 if (isExtractSubreg() && OpIdx == 2) 309 return true; 310 if (isInsertSubreg() && OpIdx == 3) 311 return true; 312 if (isRegSequence() && OpIdx > 1 && (OpIdx % 2) == 0) 313 return true; 314 if (isSubregToReg() && OpIdx == 3) 315 return true; 316 return false; 317 } 318 319 /// Returns the number of non-implicit operands. 320 unsigned getNumExplicitOperands() const; 321 322 /// iterator/begin/end - Iterate over all operands of a machine instruction. 323 using mop_iterator = MachineOperand *; 324 using const_mop_iterator = const MachineOperand *; 325 326 mop_iterator operands_begin() { return Operands; } 327 mop_iterator operands_end() { return Operands + NumOperands; } 328 329 const_mop_iterator operands_begin() const { return Operands; } 330 const_mop_iterator operands_end() const { return Operands + NumOperands; } 331 332 iterator_range<mop_iterator> operands() { 333 return make_range(operands_begin(), operands_end()); 334 } 335 iterator_range<const_mop_iterator> operands() const { 336 return make_range(operands_begin(), operands_end()); 337 } 338 iterator_range<mop_iterator> explicit_operands() { 339 return make_range(operands_begin(), 340 operands_begin() + getNumExplicitOperands()); 341 } 342 iterator_range<const_mop_iterator> explicit_operands() const { 343 return make_range(operands_begin(), 344 operands_begin() + getNumExplicitOperands()); 345 } 346 iterator_range<mop_iterator> implicit_operands() { 347 return make_range(explicit_operands().end(), operands_end()); 348 } 349 iterator_range<const_mop_iterator> implicit_operands() const { 350 return make_range(explicit_operands().end(), operands_end()); 351 } 352 /// Returns a range over all explicit operands that are register definitions. 353 /// Implicit definition are not included! 354 iterator_range<mop_iterator> defs() { 355 return make_range(operands_begin(), 356 operands_begin() + getDesc().getNumDefs()); 357 } 358 /// \copydoc defs() 359 iterator_range<const_mop_iterator> defs() const { 360 return make_range(operands_begin(), 361 operands_begin() + getDesc().getNumDefs()); 362 } 363 /// Returns a range that includes all operands that are register uses. 364 /// This may include unrelated operands which are not register uses. 365 iterator_range<mop_iterator> uses() { 366 return make_range(operands_begin() + getDesc().getNumDefs(), 367 operands_end()); 368 } 369 /// \copydoc uses() 370 iterator_range<const_mop_iterator> uses() const { 371 return make_range(operands_begin() + getDesc().getNumDefs(), 372 operands_end()); 373 } 374 iterator_range<mop_iterator> explicit_uses() { 375 return make_range(operands_begin() + getDesc().getNumDefs(), 376 operands_begin() + getNumExplicitOperands() ); 377 } 378 iterator_range<const_mop_iterator> explicit_uses() const { 379 return make_range(operands_begin() + getDesc().getNumDefs(), 380 operands_begin() + getNumExplicitOperands() ); 381 } 382 383 /// Returns the number of the operand iterator \p I points to. 384 unsigned getOperandNo(const_mop_iterator I) const { 385 return I - operands_begin(); 386 } 387 388 /// Access to memory operands of the instruction 389 mmo_iterator memoperands_begin() const { return MemRefs; } 390 mmo_iterator memoperands_end() const { return MemRefs + NumMemRefs; } 391 /// Return true if we don't have any memory operands which described the the 392 /// memory access done by this instruction. If this is true, calling code 393 /// must be conservative. 394 bool memoperands_empty() const { return NumMemRefs == 0; } 395 396 iterator_range<mmo_iterator> memoperands() { 397 return make_range(memoperands_begin(), memoperands_end()); 398 } 399 iterator_range<mmo_iterator> memoperands() const { 400 return make_range(memoperands_begin(), memoperands_end()); 401 } 402 403 /// Return true if this instruction has exactly one MachineMemOperand. 404 bool hasOneMemOperand() const { 405 return NumMemRefs == 1; 406 } 407 408 /// Return the number of memory operands. 409 unsigned getNumMemOperands() const { return NumMemRefs; } 410 411 /// API for querying MachineInstr properties. They are the same as MCInstrDesc 412 /// queries but they are bundle aware. 413 414 enum QueryType { 415 IgnoreBundle, // Ignore bundles 416 AnyInBundle, // Return true if any instruction in bundle has property 417 AllInBundle // Return true if all instructions in bundle have property 418 }; 419 420 /// Return true if the instruction (or in the case of a bundle, 421 /// the instructions inside the bundle) has the specified property. 422 /// The first argument is the property being queried. 423 /// The second argument indicates whether the query should look inside 424 /// instruction bundles. 425 bool hasProperty(unsigned MCFlag, QueryType Type = AnyInBundle) const { 426 // Inline the fast path for unbundled or bundle-internal instructions. 427 if (Type == IgnoreBundle || !isBundled() || isBundledWithPred()) 428 return getDesc().getFlags() & (1ULL << MCFlag); 429 430 // If this is the first instruction in a bundle, take the slow path. 431 return hasPropertyInBundle(1ULL << MCFlag, Type); 432 } 433 434 /// Return true if this instruction can have a variable number of operands. 435 /// In this case, the variable operands will be after the normal 436 /// operands but before the implicit definitions and uses (if any are 437 /// present). 438 bool isVariadic(QueryType Type = IgnoreBundle) const { 439 return hasProperty(MCID::Variadic, Type); 440 } 441 442 /// Set if this instruction has an optional definition, e.g. 443 /// ARM instructions which can set condition code if 's' bit is set. 444 bool hasOptionalDef(QueryType Type = IgnoreBundle) const { 445 return hasProperty(MCID::HasOptionalDef, Type); 446 } 447 448 /// Return true if this is a pseudo instruction that doesn't 449 /// correspond to a real machine instruction. 450 bool isPseudo(QueryType Type = IgnoreBundle) const { 451 return hasProperty(MCID::Pseudo, Type); 452 } 453 454 bool isReturn(QueryType Type = AnyInBundle) const { 455 return hasProperty(MCID::Return, Type); 456 } 457 458 bool isCall(QueryType Type = AnyInBundle) const { 459 return hasProperty(MCID::Call, Type); 460 } 461 462 /// Returns true if the specified instruction stops control flow 463 /// from executing the instruction immediately following it. Examples include 464 /// unconditional branches and return instructions. 465 bool isBarrier(QueryType Type = AnyInBundle) const { 466 return hasProperty(MCID::Barrier, Type); 467 } 468 469 /// Returns true if this instruction part of the terminator for a basic block. 470 /// Typically this is things like return and branch instructions. 471 /// 472 /// Various passes use this to insert code into the bottom of a basic block, 473 /// but before control flow occurs. 474 bool isTerminator(QueryType Type = AnyInBundle) const { 475 return hasProperty(MCID::Terminator, Type); 476 } 477 478 /// Returns true if this is a conditional, unconditional, or indirect branch. 479 /// Predicates below can be used to discriminate between 480 /// these cases, and the TargetInstrInfo::AnalyzeBranch method can be used to 481 /// get more information. 482 bool isBranch(QueryType Type = AnyInBundle) const { 483 return hasProperty(MCID::Branch, Type); 484 } 485 486 /// Return true if this is an indirect branch, such as a 487 /// branch through a register. 488 bool isIndirectBranch(QueryType Type = AnyInBundle) const { 489 return hasProperty(MCID::IndirectBranch, Type); 490 } 491 492 /// Return true if this is a branch which may fall 493 /// through to the next instruction or may transfer control flow to some other 494 /// block. The TargetInstrInfo::AnalyzeBranch method can be used to get more 495 /// information about this branch. 496 bool isConditionalBranch(QueryType Type = AnyInBundle) const { 497 return isBranch(Type) & !isBarrier(Type) & !isIndirectBranch(Type); 498 } 499 500 /// Return true if this is a branch which always 501 /// transfers control flow to some other block. The 502 /// TargetInstrInfo::AnalyzeBranch method can be used to get more information 503 /// about this branch. 504 bool isUnconditionalBranch(QueryType Type = AnyInBundle) const { 505 return isBranch(Type) & isBarrier(Type) & !isIndirectBranch(Type); 506 } 507 508 /// Return true if this instruction has a predicate operand that 509 /// controls execution. It may be set to 'always', or may be set to other 510 /// values. There are various methods in TargetInstrInfo that can be used to 511 /// control and modify the predicate in this instruction. 512 bool isPredicable(QueryType Type = AllInBundle) const { 513 // If it's a bundle than all bundled instructions must be predicable for this 514 // to return true. 515 return hasProperty(MCID::Predicable, Type); 516 } 517 518 /// Return true if this instruction is a comparison. 519 bool isCompare(QueryType Type = IgnoreBundle) const { 520 return hasProperty(MCID::Compare, Type); 521 } 522 523 /// Return true if this instruction is a move immediate 524 /// (including conditional moves) instruction. 525 bool isMoveImmediate(QueryType Type = IgnoreBundle) const { 526 return hasProperty(MCID::MoveImm, Type); 527 } 528 529 /// Return true if this instruction is a bitcast instruction. 530 bool isBitcast(QueryType Type = IgnoreBundle) const { 531 return hasProperty(MCID::Bitcast, Type); 532 } 533 534 /// Return true if this instruction is a select instruction. 535 bool isSelect(QueryType Type = IgnoreBundle) const { 536 return hasProperty(MCID::Select, Type); 537 } 538 539 /// Return true if this instruction cannot be safely duplicated. 540 /// For example, if the instruction has a unique labels attached 541 /// to it, duplicating it would cause multiple definition errors. 542 bool isNotDuplicable(QueryType Type = AnyInBundle) const { 543 return hasProperty(MCID::NotDuplicable, Type); 544 } 545 546 /// Return true if this instruction is convergent. 547 /// Convergent instructions can not be made control-dependent on any 548 /// additional values. 549 bool isConvergent(QueryType Type = AnyInBundle) const { 550 if (isInlineAsm()) { 551 unsigned ExtraInfo = getOperand(InlineAsm::MIOp_ExtraInfo).getImm(); 552 if (ExtraInfo & InlineAsm::Extra_IsConvergent) 553 return true; 554 } 555 return hasProperty(MCID::Convergent, Type); 556 } 557 558 /// Returns true if the specified instruction has a delay slot 559 /// which must be filled by the code generator. 560 bool hasDelaySlot(QueryType Type = AnyInBundle) const { 561 return hasProperty(MCID::DelaySlot, Type); 562 } 563 564 /// Return true for instructions that can be folded as 565 /// memory operands in other instructions. The most common use for this 566 /// is instructions that are simple loads from memory that don't modify 567 /// the loaded value in any way, but it can also be used for instructions 568 /// that can be expressed as constant-pool loads, such as V_SETALLONES 569 /// on x86, to allow them to be folded when it is beneficial. 570 /// This should only be set on instructions that return a value in their 571 /// only virtual register definition. 572 bool canFoldAsLoad(QueryType Type = IgnoreBundle) const { 573 return hasProperty(MCID::FoldableAsLoad, Type); 574 } 575 576 /// \brief Return true if this instruction behaves 577 /// the same way as the generic REG_SEQUENCE instructions. 578 /// E.g., on ARM, 579 /// dX VMOVDRR rY, rZ 580 /// is equivalent to 581 /// dX = REG_SEQUENCE rY, ssub_0, rZ, ssub_1. 582 /// 583 /// Note that for the optimizers to be able to take advantage of 584 /// this property, TargetInstrInfo::getRegSequenceLikeInputs has to be 585 /// override accordingly. 586 bool isRegSequenceLike(QueryType Type = IgnoreBundle) const { 587 return hasProperty(MCID::RegSequence, Type); 588 } 589 590 /// \brief Return true if this instruction behaves 591 /// the same way as the generic EXTRACT_SUBREG instructions. 592 /// E.g., on ARM, 593 /// rX, rY VMOVRRD dZ 594 /// is equivalent to two EXTRACT_SUBREG: 595 /// rX = EXTRACT_SUBREG dZ, ssub_0 596 /// rY = EXTRACT_SUBREG dZ, ssub_1 597 /// 598 /// Note that for the optimizers to be able to take advantage of 599 /// this property, TargetInstrInfo::getExtractSubregLikeInputs has to be 600 /// override accordingly. 601 bool isExtractSubregLike(QueryType Type = IgnoreBundle) const { 602 return hasProperty(MCID::ExtractSubreg, Type); 603 } 604 605 /// \brief Return true if this instruction behaves 606 /// the same way as the generic INSERT_SUBREG instructions. 607 /// E.g., on ARM, 608 /// dX = VSETLNi32 dY, rZ, Imm 609 /// is equivalent to a INSERT_SUBREG: 610 /// dX = INSERT_SUBREG dY, rZ, translateImmToSubIdx(Imm) 611 /// 612 /// Note that for the optimizers to be able to take advantage of 613 /// this property, TargetInstrInfo::getInsertSubregLikeInputs has to be 614 /// override accordingly. 615 bool isInsertSubregLike(QueryType Type = IgnoreBundle) const { 616 return hasProperty(MCID::InsertSubreg, Type); 617 } 618 619 //===--------------------------------------------------------------------===// 620 // Side Effect Analysis 621 //===--------------------------------------------------------------------===// 622 623 /// Return true if this instruction could possibly read memory. 624 /// Instructions with this flag set are not necessarily simple load 625 /// instructions, they may load a value and modify it, for example. 626 bool mayLoad(QueryType Type = AnyInBundle) const { 627 if (isInlineAsm()) { 628 unsigned ExtraInfo = getOperand(InlineAsm::MIOp_ExtraInfo).getImm(); 629 if (ExtraInfo & InlineAsm::Extra_MayLoad) 630 return true; 631 } 632 return hasProperty(MCID::MayLoad, Type); 633 } 634 635 /// Return true if this instruction could possibly modify memory. 636 /// Instructions with this flag set are not necessarily simple store 637 /// instructions, they may store a modified value based on their operands, or 638 /// may not actually modify anything, for example. 639 bool mayStore(QueryType Type = AnyInBundle) const { 640 if (isInlineAsm()) { 641 unsigned ExtraInfo = getOperand(InlineAsm::MIOp_ExtraInfo).getImm(); 642 if (ExtraInfo & InlineAsm::Extra_MayStore) 643 return true; 644 } 645 return hasProperty(MCID::MayStore, Type); 646 } 647 648 /// Return true if this instruction could possibly read or modify memory. 649 bool mayLoadOrStore(QueryType Type = AnyInBundle) const { 650 return mayLoad(Type) || mayStore(Type); 651 } 652 653 //===--------------------------------------------------------------------===// 654 // Flags that indicate whether an instruction can be modified by a method. 655 //===--------------------------------------------------------------------===// 656 657 /// Return true if this may be a 2- or 3-address 658 /// instruction (of the form "X = op Y, Z, ..."), which produces the same 659 /// result if Y and Z are exchanged. If this flag is set, then the 660 /// TargetInstrInfo::commuteInstruction method may be used to hack on the 661 /// instruction. 662 /// 663 /// Note that this flag may be set on instructions that are only commutable 664 /// sometimes. In these cases, the call to commuteInstruction will fail. 665 /// Also note that some instructions require non-trivial modification to 666 /// commute them. 667 bool isCommutable(QueryType Type = IgnoreBundle) const { 668 return hasProperty(MCID::Commutable, Type); 669 } 670 671 /// Return true if this is a 2-address instruction 672 /// which can be changed into a 3-address instruction if needed. Doing this 673 /// transformation can be profitable in the register allocator, because it 674 /// means that the instruction can use a 2-address form if possible, but 675 /// degrade into a less efficient form if the source and dest register cannot 676 /// be assigned to the same register. For example, this allows the x86 677 /// backend to turn a "shl reg, 3" instruction into an LEA instruction, which 678 /// is the same speed as the shift but has bigger code size. 679 /// 680 /// If this returns true, then the target must implement the 681 /// TargetInstrInfo::convertToThreeAddress method for this instruction, which 682 /// is allowed to fail if the transformation isn't valid for this specific 683 /// instruction (e.g. shl reg, 4 on x86). 684 /// 685 bool isConvertibleTo3Addr(QueryType Type = IgnoreBundle) const { 686 return hasProperty(MCID::ConvertibleTo3Addr, Type); 687 } 688 689 /// Return true if this instruction requires 690 /// custom insertion support when the DAG scheduler is inserting it into a 691 /// machine basic block. If this is true for the instruction, it basically 692 /// means that it is a pseudo instruction used at SelectionDAG time that is 693 /// expanded out into magic code by the target when MachineInstrs are formed. 694 /// 695 /// If this is true, the TargetLoweringInfo::InsertAtEndOfBasicBlock method 696 /// is used to insert this into the MachineBasicBlock. 697 bool usesCustomInsertionHook(QueryType Type = IgnoreBundle) const { 698 return hasProperty(MCID::UsesCustomInserter, Type); 699 } 700 701 /// Return true if this instruction requires *adjustment* 702 /// after instruction selection by calling a target hook. For example, this 703 /// can be used to fill in ARM 's' optional operand depending on whether 704 /// the conditional flag register is used. 705 bool hasPostISelHook(QueryType Type = IgnoreBundle) const { 706 return hasProperty(MCID::HasPostISelHook, Type); 707 } 708 709 /// Returns true if this instruction is a candidate for remat. 710 /// This flag is deprecated, please don't use it anymore. If this 711 /// flag is set, the isReallyTriviallyReMaterializable() method is called to 712 /// verify the instruction is really rematable. 713 bool isRematerializable(QueryType Type = AllInBundle) const { 714 // It's only possible to re-mat a bundle if all bundled instructions are 715 // re-materializable. 716 return hasProperty(MCID::Rematerializable, Type); 717 } 718 719 /// Returns true if this instruction has the same cost (or less) than a move 720 /// instruction. This is useful during certain types of optimizations 721 /// (e.g., remat during two-address conversion or machine licm) 722 /// where we would like to remat or hoist the instruction, but not if it costs 723 /// more than moving the instruction into the appropriate register. Note, we 724 /// are not marking copies from and to the same register class with this flag. 725 bool isAsCheapAsAMove(QueryType Type = AllInBundle) const { 726 // Only returns true for a bundle if all bundled instructions are cheap. 727 return hasProperty(MCID::CheapAsAMove, Type); 728 } 729 730 /// Returns true if this instruction source operands 731 /// have special register allocation requirements that are not captured by the 732 /// operand register classes. e.g. ARM::STRD's two source registers must be an 733 /// even / odd pair, ARM::STM registers have to be in ascending order. 734 /// Post-register allocation passes should not attempt to change allocations 735 /// for sources of instructions with this flag. 736 bool hasExtraSrcRegAllocReq(QueryType Type = AnyInBundle) const { 737 return hasProperty(MCID::ExtraSrcRegAllocReq, Type); 738 } 739 740 /// Returns true if this instruction def operands 741 /// have special register allocation requirements that are not captured by the 742 /// operand register classes. e.g. ARM::LDRD's two def registers must be an 743 /// even / odd pair, ARM::LDM registers have to be in ascending order. 744 /// Post-register allocation passes should not attempt to change allocations 745 /// for definitions of instructions with this flag. 746 bool hasExtraDefRegAllocReq(QueryType Type = AnyInBundle) const { 747 return hasProperty(MCID::ExtraDefRegAllocReq, Type); 748 } 749 750 enum MICheckType { 751 CheckDefs, // Check all operands for equality 752 CheckKillDead, // Check all operands including kill / dead markers 753 IgnoreDefs, // Ignore all definitions 754 IgnoreVRegDefs // Ignore virtual register definitions 755 }; 756 757 /// Return true if this instruction is identical to \p Other. 758 /// Two instructions are identical if they have the same opcode and all their 759 /// operands are identical (with respect to MachineOperand::isIdenticalTo()). 760 /// Note that this means liveness related flags (dead, undef, kill) do not 761 /// affect the notion of identical. 762 bool isIdenticalTo(const MachineInstr &Other, 763 MICheckType Check = CheckDefs) const; 764 765 /// Unlink 'this' from the containing basic block, and return it without 766 /// deleting it. 767 /// 768 /// This function can not be used on bundled instructions, use 769 /// removeFromBundle() to remove individual instructions from a bundle. 770 MachineInstr *removeFromParent(); 771 772 /// Unlink this instruction from its basic block and return it without 773 /// deleting it. 774 /// 775 /// If the instruction is part of a bundle, the other instructions in the 776 /// bundle remain bundled. 777 MachineInstr *removeFromBundle(); 778 779 /// Unlink 'this' from the containing basic block and delete it. 780 /// 781 /// If this instruction is the header of a bundle, the whole bundle is erased. 782 /// This function can not be used for instructions inside a bundle, use 783 /// eraseFromBundle() to erase individual bundled instructions. 784 void eraseFromParent(); 785 786 /// Unlink 'this' from the containing basic block and delete it. 787 /// 788 /// For all definitions mark their uses in DBG_VALUE nodes 789 /// as undefined. Otherwise like eraseFromParent(). 790 void eraseFromParentAndMarkDBGValuesForRemoval(); 791 792 /// Unlink 'this' form its basic block and delete it. 793 /// 794 /// If the instruction is part of a bundle, the other instructions in the 795 /// bundle remain bundled. 796 void eraseFromBundle(); 797 798 bool isEHLabel() const { return getOpcode() == TargetOpcode::EH_LABEL; } 799 bool isGCLabel() const { return getOpcode() == TargetOpcode::GC_LABEL; } 800 bool isAnnotationLabel() const { 801 return getOpcode() == TargetOpcode::ANNOTATION_LABEL; 802 } 803 804 /// Returns true if the MachineInstr represents a label. 805 bool isLabel() const { 806 return isEHLabel() || isGCLabel() || isAnnotationLabel(); 807 } 808 809 bool isCFIInstruction() const { 810 return getOpcode() == TargetOpcode::CFI_INSTRUCTION; 811 } 812 813 // True if the instruction represents a position in the function. 814 bool isPosition() const { return isLabel() || isCFIInstruction(); } 815 816 bool isDebugValue() const { return getOpcode() == TargetOpcode::DBG_VALUE; } 817 818 /// A DBG_VALUE is indirect iff the first operand is a register and 819 /// the second operand is an immediate. 820 bool isIndirectDebugValue() const { 821 return isDebugValue() 822 && getOperand(0).isReg() 823 && getOperand(1).isImm(); 824 } 825 826 bool isPHI() const { 827 return getOpcode() == TargetOpcode::PHI || 828 getOpcode() == TargetOpcode::G_PHI; 829 } 830 bool isKill() const { return getOpcode() == TargetOpcode::KILL; } 831 bool isImplicitDef() const { return getOpcode()==TargetOpcode::IMPLICIT_DEF; } 832 bool isInlineAsm() const { return getOpcode() == TargetOpcode::INLINEASM; } 833 834 bool isMSInlineAsm() const { 835 return getOpcode() == TargetOpcode::INLINEASM && getInlineAsmDialect(); 836 } 837 838 bool isStackAligningInlineAsm() const; 839 InlineAsm::AsmDialect getInlineAsmDialect() const; 840 841 bool isInsertSubreg() const { 842 return getOpcode() == TargetOpcode::INSERT_SUBREG; 843 } 844 845 bool isSubregToReg() const { 846 return getOpcode() == TargetOpcode::SUBREG_TO_REG; 847 } 848 849 bool isRegSequence() const { 850 return getOpcode() == TargetOpcode::REG_SEQUENCE; 851 } 852 853 bool isBundle() const { 854 return getOpcode() == TargetOpcode::BUNDLE; 855 } 856 857 bool isCopy() const { 858 return getOpcode() == TargetOpcode::COPY; 859 } 860 861 bool isFullCopy() const { 862 return isCopy() && !getOperand(0).getSubReg() && !getOperand(1).getSubReg(); 863 } 864 865 bool isExtractSubreg() const { 866 return getOpcode() == TargetOpcode::EXTRACT_SUBREG; 867 } 868 869 /// Return true if the instruction behaves like a copy. 870 /// This does not include native copy instructions. 871 bool isCopyLike() const { 872 return isCopy() || isSubregToReg(); 873 } 874 875 /// Return true is the instruction is an identity copy. 876 bool isIdentityCopy() const { 877 return isCopy() && getOperand(0).getReg() == getOperand(1).getReg() && 878 getOperand(0).getSubReg() == getOperand(1).getSubReg(); 879 } 880 881 /// Return true if this instruction doesn't produce any output in the form of 882 /// executable instructions. 883 bool isMetaInstruction() const { 884 switch (getOpcode()) { 885 default: 886 return false; 887 case TargetOpcode::IMPLICIT_DEF: 888 case TargetOpcode::KILL: 889 case TargetOpcode::CFI_INSTRUCTION: 890 case TargetOpcode::EH_LABEL: 891 case TargetOpcode::GC_LABEL: 892 case TargetOpcode::DBG_VALUE: 893 return true; 894 } 895 } 896 897 /// Return true if this is a transient instruction that is either very likely 898 /// to be eliminated during register allocation (such as copy-like 899 /// instructions), or if this instruction doesn't have an execution-time cost. 900 bool isTransient() const { 901 switch (getOpcode()) { 902 default: 903 return isMetaInstruction(); 904 // Copy-like instructions are usually eliminated during register allocation. 905 case TargetOpcode::PHI: 906 case TargetOpcode::G_PHI: 907 case TargetOpcode::COPY: 908 case TargetOpcode::INSERT_SUBREG: 909 case TargetOpcode::SUBREG_TO_REG: 910 case TargetOpcode::REG_SEQUENCE: 911 return true; 912 } 913 } 914 915 /// Return the number of instructions inside the MI bundle, excluding the 916 /// bundle header. 917 /// 918 /// This is the number of instructions that MachineBasicBlock::iterator 919 /// skips, 0 for unbundled instructions. 920 unsigned getBundleSize() const; 921 922 /// Return true if the MachineInstr reads the specified register. 923 /// If TargetRegisterInfo is passed, then it also checks if there 924 /// is a read of a super-register. 925 /// This does not count partial redefines of virtual registers as reads: 926 /// %reg1024:6 = OP. 927 bool readsRegister(unsigned Reg, 928 const TargetRegisterInfo *TRI = nullptr) const { 929 return findRegisterUseOperandIdx(Reg, false, TRI) != -1; 930 } 931 932 /// Return true if the MachineInstr reads the specified virtual register. 933 /// Take into account that a partial define is a 934 /// read-modify-write operation. 935 bool readsVirtualRegister(unsigned Reg) const { 936 return readsWritesVirtualRegister(Reg).first; 937 } 938 939 /// Return a pair of bools (reads, writes) indicating if this instruction 940 /// reads or writes Reg. This also considers partial defines. 941 /// If Ops is not null, all operand indices for Reg are added. 942 std::pair<bool,bool> readsWritesVirtualRegister(unsigned Reg, 943 SmallVectorImpl<unsigned> *Ops = nullptr) const; 944 945 /// Return true if the MachineInstr kills the specified register. 946 /// If TargetRegisterInfo is passed, then it also checks if there is 947 /// a kill of a super-register. 948 bool killsRegister(unsigned Reg, 949 const TargetRegisterInfo *TRI = nullptr) const { 950 return findRegisterUseOperandIdx(Reg, true, TRI) != -1; 951 } 952 953 /// Return true if the MachineInstr fully defines the specified register. 954 /// If TargetRegisterInfo is passed, then it also checks 955 /// if there is a def of a super-register. 956 /// NOTE: It's ignoring subreg indices on virtual registers. 957 bool definesRegister(unsigned Reg, 958 const TargetRegisterInfo *TRI = nullptr) const { 959 return findRegisterDefOperandIdx(Reg, false, false, TRI) != -1; 960 } 961 962 /// Return true if the MachineInstr modifies (fully define or partially 963 /// define) the specified register. 964 /// NOTE: It's ignoring subreg indices on virtual registers. 965 bool modifiesRegister(unsigned Reg, const TargetRegisterInfo *TRI) const { 966 return findRegisterDefOperandIdx(Reg, false, true, TRI) != -1; 967 } 968 969 /// Returns true if the register is dead in this machine instruction. 970 /// If TargetRegisterInfo is passed, then it also checks 971 /// if there is a dead def of a super-register. 972 bool registerDefIsDead(unsigned Reg, 973 const TargetRegisterInfo *TRI = nullptr) const { 974 return findRegisterDefOperandIdx(Reg, true, false, TRI) != -1; 975 } 976 977 /// Returns true if the MachineInstr has an implicit-use operand of exactly 978 /// the given register (not considering sub/super-registers). 979 bool hasRegisterImplicitUseOperand(unsigned Reg) const; 980 981 /// Returns the operand index that is a use of the specific register or -1 982 /// if it is not found. It further tightens the search criteria to a use 983 /// that kills the register if isKill is true. 984 int findRegisterUseOperandIdx(unsigned Reg, bool isKill = false, 985 const TargetRegisterInfo *TRI = nullptr) const; 986 987 /// Wrapper for findRegisterUseOperandIdx, it returns 988 /// a pointer to the MachineOperand rather than an index. 989 MachineOperand *findRegisterUseOperand(unsigned Reg, bool isKill = false, 990 const TargetRegisterInfo *TRI = nullptr) { 991 int Idx = findRegisterUseOperandIdx(Reg, isKill, TRI); 992 return (Idx == -1) ? nullptr : &getOperand(Idx); 993 } 994 995 const MachineOperand *findRegisterUseOperand( 996 unsigned Reg, bool isKill = false, 997 const TargetRegisterInfo *TRI = nullptr) const { 998 return const_cast<MachineInstr *>(this)-> 999 findRegisterUseOperand(Reg, isKill, TRI); 1000 } 1001 1002 /// Returns the operand index that is a def of the specified register or 1003 /// -1 if it is not found. If isDead is true, defs that are not dead are 1004 /// skipped. If Overlap is true, then it also looks for defs that merely 1005 /// overlap the specified register. If TargetRegisterInfo is non-null, 1006 /// then it also checks if there is a def of a super-register. 1007 /// This may also return a register mask operand when Overlap is true. 1008 int findRegisterDefOperandIdx(unsigned Reg, 1009 bool isDead = false, bool Overlap = false, 1010 const TargetRegisterInfo *TRI = nullptr) const; 1011 1012 /// Wrapper for findRegisterDefOperandIdx, it returns 1013 /// a pointer to the MachineOperand rather than an index. 1014 MachineOperand *findRegisterDefOperand(unsigned Reg, bool isDead = false, 1015 const TargetRegisterInfo *TRI = nullptr) { 1016 int Idx = findRegisterDefOperandIdx(Reg, isDead, false, TRI); 1017 return (Idx == -1) ? nullptr : &getOperand(Idx); 1018 } 1019 1020 /// Find the index of the first operand in the 1021 /// operand list that is used to represent the predicate. It returns -1 if 1022 /// none is found. 1023 int findFirstPredOperandIdx() const; 1024 1025 /// Find the index of the flag word operand that 1026 /// corresponds to operand OpIdx on an inline asm instruction. Returns -1 if 1027 /// getOperand(OpIdx) does not belong to an inline asm operand group. 1028 /// 1029 /// If GroupNo is not NULL, it will receive the number of the operand group 1030 /// containing OpIdx. 1031 /// 1032 /// The flag operand is an immediate that can be decoded with methods like 1033 /// InlineAsm::hasRegClassConstraint(). 1034 int findInlineAsmFlagIdx(unsigned OpIdx, unsigned *GroupNo = nullptr) const; 1035 1036 /// Compute the static register class constraint for operand OpIdx. 1037 /// For normal instructions, this is derived from the MCInstrDesc. 1038 /// For inline assembly it is derived from the flag words. 1039 /// 1040 /// Returns NULL if the static register class constraint cannot be 1041 /// determined. 1042 const TargetRegisterClass* 1043 getRegClassConstraint(unsigned OpIdx, 1044 const TargetInstrInfo *TII, 1045 const TargetRegisterInfo *TRI) const; 1046 1047 /// \brief Applies the constraints (def/use) implied by this MI on \p Reg to 1048 /// the given \p CurRC. 1049 /// If \p ExploreBundle is set and MI is part of a bundle, all the 1050 /// instructions inside the bundle will be taken into account. In other words, 1051 /// this method accumulates all the constraints of the operand of this MI and 1052 /// the related bundle if MI is a bundle or inside a bundle. 1053 /// 1054 /// Returns the register class that satisfies both \p CurRC and the 1055 /// constraints set by MI. Returns NULL if such a register class does not 1056 /// exist. 1057 /// 1058 /// \pre CurRC must not be NULL. 1059 const TargetRegisterClass *getRegClassConstraintEffectForVReg( 1060 unsigned Reg, const TargetRegisterClass *CurRC, 1061 const TargetInstrInfo *TII, const TargetRegisterInfo *TRI, 1062 bool ExploreBundle = false) const; 1063 1064 /// \brief Applies the constraints (def/use) implied by the \p OpIdx operand 1065 /// to the given \p CurRC. 1066 /// 1067 /// Returns the register class that satisfies both \p CurRC and the 1068 /// constraints set by \p OpIdx MI. Returns NULL if such a register class 1069 /// does not exist. 1070 /// 1071 /// \pre CurRC must not be NULL. 1072 /// \pre The operand at \p OpIdx must be a register. 1073 const TargetRegisterClass * 1074 getRegClassConstraintEffect(unsigned OpIdx, const TargetRegisterClass *CurRC, 1075 const TargetInstrInfo *TII, 1076 const TargetRegisterInfo *TRI) const; 1077 1078 /// Add a tie between the register operands at DefIdx and UseIdx. 1079 /// The tie will cause the register allocator to ensure that the two 1080 /// operands are assigned the same physical register. 1081 /// 1082 /// Tied operands are managed automatically for explicit operands in the 1083 /// MCInstrDesc. This method is for exceptional cases like inline asm. 1084 void tieOperands(unsigned DefIdx, unsigned UseIdx); 1085 1086 /// Given the index of a tied register operand, find the 1087 /// operand it is tied to. Defs are tied to uses and vice versa. Returns the 1088 /// index of the tied operand which must exist. 1089 unsigned findTiedOperandIdx(unsigned OpIdx) const; 1090 1091 /// Given the index of a register def operand, 1092 /// check if the register def is tied to a source operand, due to either 1093 /// two-address elimination or inline assembly constraints. Returns the 1094 /// first tied use operand index by reference if UseOpIdx is not null. 1095 bool isRegTiedToUseOperand(unsigned DefOpIdx, 1096 unsigned *UseOpIdx = nullptr) const { 1097 const MachineOperand &MO = getOperand(DefOpIdx); 1098 if (!MO.isReg() || !MO.isDef() || !MO.isTied()) 1099 return false; 1100 if (UseOpIdx) 1101 *UseOpIdx = findTiedOperandIdx(DefOpIdx); 1102 return true; 1103 } 1104 1105 /// Return true if the use operand of the specified index is tied to a def 1106 /// operand. It also returns the def operand index by reference if DefOpIdx 1107 /// is not null. 1108 bool isRegTiedToDefOperand(unsigned UseOpIdx, 1109 unsigned *DefOpIdx = nullptr) const { 1110 const MachineOperand &MO = getOperand(UseOpIdx); 1111 if (!MO.isReg() || !MO.isUse() || !MO.isTied()) 1112 return false; 1113 if (DefOpIdx) 1114 *DefOpIdx = findTiedOperandIdx(UseOpIdx); 1115 return true; 1116 } 1117 1118 /// Clears kill flags on all operands. 1119 void clearKillInfo(); 1120 1121 /// Replace all occurrences of FromReg with ToReg:SubIdx, 1122 /// properly composing subreg indices where necessary. 1123 void substituteRegister(unsigned FromReg, unsigned ToReg, unsigned SubIdx, 1124 const TargetRegisterInfo &RegInfo); 1125 1126 /// We have determined MI kills a register. Look for the 1127 /// operand that uses it and mark it as IsKill. If AddIfNotFound is true, 1128 /// add a implicit operand if it's not found. Returns true if the operand 1129 /// exists / is added. 1130 bool addRegisterKilled(unsigned IncomingReg, 1131 const TargetRegisterInfo *RegInfo, 1132 bool AddIfNotFound = false); 1133 1134 /// Clear all kill flags affecting Reg. If RegInfo is provided, this includes 1135 /// all aliasing registers. 1136 void clearRegisterKills(unsigned Reg, const TargetRegisterInfo *RegInfo); 1137 1138 /// We have determined MI defined a register without a use. 1139 /// Look for the operand that defines it and mark it as IsDead. If 1140 /// AddIfNotFound is true, add a implicit operand if it's not found. Returns 1141 /// true if the operand exists / is added. 1142 bool addRegisterDead(unsigned Reg, const TargetRegisterInfo *RegInfo, 1143 bool AddIfNotFound = false); 1144 1145 /// Clear all dead flags on operands defining register @p Reg. 1146 void clearRegisterDeads(unsigned Reg); 1147 1148 /// Mark all subregister defs of register @p Reg with the undef flag. 1149 /// This function is used when we determined to have a subregister def in an 1150 /// otherwise undefined super register. 1151 void setRegisterDefReadUndef(unsigned Reg, bool IsUndef = true); 1152 1153 /// We have determined MI defines a register. Make sure there is an operand 1154 /// defining Reg. 1155 void addRegisterDefined(unsigned Reg, 1156 const TargetRegisterInfo *RegInfo = nullptr); 1157 1158 /// Mark every physreg used by this instruction as 1159 /// dead except those in the UsedRegs list. 1160 /// 1161 /// On instructions with register mask operands, also add implicit-def 1162 /// operands for all registers in UsedRegs. 1163 void setPhysRegsDeadExcept(ArrayRef<unsigned> UsedRegs, 1164 const TargetRegisterInfo &TRI); 1165 1166 /// Return true if it is safe to move this instruction. If 1167 /// SawStore is set to true, it means that there is a store (or call) between 1168 /// the instruction's location and its intended destination. 1169 bool isSafeToMove(AliasAnalysis *AA, bool &SawStore) const; 1170 1171 /// Returns true if this instruction's memory access aliases the memory 1172 /// access of Other. 1173 // 1174 /// Assumes any physical registers used to compute addresses 1175 /// have the same value for both instructions. Returns false if neither 1176 /// instruction writes to memory. 1177 /// 1178 /// @param AA Optional alias analysis, used to compare memory operands. 1179 /// @param Other MachineInstr to check aliasing against. 1180 /// @param UseTBAA Whether to pass TBAA information to alias analysis. 1181 bool mayAlias(AliasAnalysis *AA, MachineInstr &Other, bool UseTBAA); 1182 1183 /// Return true if this instruction may have an ordered 1184 /// or volatile memory reference, or if the information describing the memory 1185 /// reference is not available. Return false if it is known to have no 1186 /// ordered or volatile memory references. 1187 bool hasOrderedMemoryRef() const; 1188 1189 /// Return true if this load instruction never traps and points to a memory 1190 /// location whose value doesn't change during the execution of this function. 1191 /// 1192 /// Examples include loading a value from the constant pool or from the 1193 /// argument area of a function (if it does not change). If the instruction 1194 /// does multiple loads, this returns true only if all of the loads are 1195 /// dereferenceable and invariant. 1196 bool isDereferenceableInvariantLoad(AliasAnalysis *AA) const; 1197 1198 /// If the specified instruction is a PHI that always merges together the 1199 /// same virtual register, return the register, otherwise return 0. 1200 unsigned isConstantValuePHI() const; 1201 1202 /// Return true if this instruction has side effects that are not modeled 1203 /// by mayLoad / mayStore, etc. 1204 /// For all instructions, the property is encoded in MCInstrDesc::Flags 1205 /// (see MCInstrDesc::hasUnmodeledSideEffects(). The only exception is 1206 /// INLINEASM instruction, in which case the side effect property is encoded 1207 /// in one of its operands (see InlineAsm::Extra_HasSideEffect). 1208 /// 1209 bool hasUnmodeledSideEffects() const; 1210 1211 /// Returns true if it is illegal to fold a load across this instruction. 1212 bool isLoadFoldBarrier() const; 1213 1214 /// Return true if all the defs of this instruction are dead. 1215 bool allDefsAreDead() const; 1216 1217 /// Copy implicit register operands from specified 1218 /// instruction to this instruction. 1219 void copyImplicitOps(MachineFunction &MF, const MachineInstr &MI); 1220 1221 /// Debugging support 1222 /// @{ 1223 /// Print this MI to \p OS. 1224 /// Only print the defs and the opcode if \p SkipOpers is true. 1225 /// Otherwise, also print operands if \p SkipDebugLoc is true. 1226 /// Otherwise, also print the debug loc, with a terminating newline. 1227 /// \p TII is used to print the opcode name. If it's not present, but the 1228 /// MI is in a function, the opcode will be printed using the function's TII. 1229 void print(raw_ostream &OS, bool SkipOpers = false, bool SkipDebugLoc = false, 1230 const TargetInstrInfo *TII = nullptr) const; 1231 void print(raw_ostream &OS, ModuleSlotTracker &MST, bool SkipOpers = false, 1232 bool SkipDebugLoc = false, 1233 const TargetInstrInfo *TII = nullptr) const; 1234 void dump() const; 1235 /// @} 1236 1237 //===--------------------------------------------------------------------===// 1238 // Accessors used to build up machine instructions. 1239 1240 /// Add the specified operand to the instruction. If it is an implicit 1241 /// operand, it is added to the end of the operand list. If it is an 1242 /// explicit operand it is added at the end of the explicit operand list 1243 /// (before the first implicit operand). 1244 /// 1245 /// MF must be the machine function that was used to allocate this 1246 /// instruction. 1247 /// 1248 /// MachineInstrBuilder provides a more convenient interface for creating 1249 /// instructions and adding operands. 1250 void addOperand(MachineFunction &MF, const MachineOperand &Op); 1251 1252 /// Add an operand without providing an MF reference. This only works for 1253 /// instructions that are inserted in a basic block. 1254 /// 1255 /// MachineInstrBuilder and the two-argument addOperand(MF, MO) should be 1256 /// preferred. 1257 void addOperand(const MachineOperand &Op); 1258 1259 /// Replace the instruction descriptor (thus opcode) of 1260 /// the current instruction with a new one. 1261 void setDesc(const MCInstrDesc &tid) { MCID = &tid; } 1262 1263 /// Replace current source information with new such. 1264 /// Avoid using this, the constructor argument is preferable. 1265 void setDebugLoc(DebugLoc dl) { 1266 debugLoc = std::move(dl); 1267 assert(debugLoc.hasTrivialDestructor() && "Expected trivial destructor"); 1268 } 1269 1270 /// Erase an operand from an instruction, leaving it with one 1271 /// fewer operand than it started with. 1272 void RemoveOperand(unsigned i); 1273 1274 /// Add a MachineMemOperand to the machine instruction. 1275 /// This function should be used only occasionally. The setMemRefs function 1276 /// is the primary method for setting up a MachineInstr's MemRefs list. 1277 void addMemOperand(MachineFunction &MF, MachineMemOperand *MO); 1278 1279 /// Assign this MachineInstr's memory reference descriptor list. 1280 /// This does not transfer ownership. 1281 void setMemRefs(mmo_iterator NewMemRefs, mmo_iterator NewMemRefsEnd) { 1282 setMemRefs(std::make_pair(NewMemRefs, NewMemRefsEnd-NewMemRefs)); 1283 } 1284 1285 /// Assign this MachineInstr's memory reference descriptor list. First 1286 /// element in the pair is the begin iterator/pointer to the array; the 1287 /// second is the number of MemoryOperands. This does not transfer ownership 1288 /// of the underlying memory. 1289 void setMemRefs(std::pair<mmo_iterator, unsigned> NewMemRefs) { 1290 MemRefs = NewMemRefs.first; 1291 NumMemRefs = uint8_t(NewMemRefs.second); 1292 assert(NumMemRefs == NewMemRefs.second && 1293 "Too many memrefs - must drop memory operands"); 1294 } 1295 1296 /// Return a set of memrefs (begin iterator, size) which conservatively 1297 /// describe the memory behavior of both MachineInstrs. This is appropriate 1298 /// for use when merging two MachineInstrs into one. This routine does not 1299 /// modify the memrefs of the this MachineInstr. 1300 std::pair<mmo_iterator, unsigned> mergeMemRefsWith(const MachineInstr& Other); 1301 1302 /// Clear this MachineInstr's memory reference descriptor list. This resets 1303 /// the memrefs to their most conservative state. This should be used only 1304 /// as a last resort since it greatly pessimizes our knowledge of the memory 1305 /// access performed by the instruction. 1306 void dropMemRefs() { 1307 MemRefs = nullptr; 1308 NumMemRefs = 0; 1309 } 1310 1311 /// Break any tie involving OpIdx. 1312 void untieRegOperand(unsigned OpIdx) { 1313 MachineOperand &MO = getOperand(OpIdx); 1314 if (MO.isReg() && MO.isTied()) { 1315 getOperand(findTiedOperandIdx(OpIdx)).TiedTo = 0; 1316 MO.TiedTo = 0; 1317 } 1318 } 1319 1320 /// Add all implicit def and use operands to this instruction. 1321 void addImplicitDefUseOperands(MachineFunction &MF); 1322 1323 private: 1324 /// If this instruction is embedded into a MachineFunction, return the 1325 /// MachineRegisterInfo object for the current function, otherwise 1326 /// return null. 1327 MachineRegisterInfo *getRegInfo(); 1328 1329 /// Unlink all of the register operands in this instruction from their 1330 /// respective use lists. This requires that the operands already be on their 1331 /// use lists. 1332 void RemoveRegOperandsFromUseLists(MachineRegisterInfo&); 1333 1334 /// Add all of the register operands in this instruction from their 1335 /// respective use lists. This requires that the operands not be on their 1336 /// use lists yet. 1337 void AddRegOperandsToUseLists(MachineRegisterInfo&); 1338 1339 /// Slow path for hasProperty when we're dealing with a bundle. 1340 bool hasPropertyInBundle(unsigned Mask, QueryType Type) const; 1341 1342 /// \brief Implements the logic of getRegClassConstraintEffectForVReg for the 1343 /// this MI and the given operand index \p OpIdx. 1344 /// If the related operand does not constrained Reg, this returns CurRC. 1345 const TargetRegisterClass *getRegClassConstraintEffectForVRegImpl( 1346 unsigned OpIdx, unsigned Reg, const TargetRegisterClass *CurRC, 1347 const TargetInstrInfo *TII, const TargetRegisterInfo *TRI) const; 1348 }; 1349 1350 /// Special DenseMapInfo traits to compare MachineInstr* by *value* of the 1351 /// instruction rather than by pointer value. 1352 /// The hashing and equality testing functions ignore definitions so this is 1353 /// useful for CSE, etc. 1354 struct MachineInstrExpressionTrait : DenseMapInfo<MachineInstr*> { 1355 static inline MachineInstr *getEmptyKey() { 1356 return nullptr; 1357 } 1358 1359 static inline MachineInstr *getTombstoneKey() { 1360 return reinterpret_cast<MachineInstr*>(-1); 1361 } 1362 1363 static unsigned getHashValue(const MachineInstr* const &MI); 1364 1365 static bool isEqual(const MachineInstr* const &LHS, 1366 const MachineInstr* const &RHS) { 1367 if (RHS == getEmptyKey() || RHS == getTombstoneKey() || 1368 LHS == getEmptyKey() || LHS == getTombstoneKey()) 1369 return LHS == RHS; 1370 return LHS->isIdenticalTo(*RHS, MachineInstr::IgnoreVRegDefs); 1371 } 1372 }; 1373 1374 //===----------------------------------------------------------------------===// 1375 // Debugging Support 1376 1377 inline raw_ostream& operator<<(raw_ostream &OS, const MachineInstr &MI) { 1378 MI.print(OS); 1379 return OS; 1380 } 1381 1382 } // end namespace llvm 1383 1384 #endif // LLVM_CODEGEN_MACHINEINSTR_H 1385