1 //===-- lib/CodeGen/MachineInstr.cpp --------------------------------------===// 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 // Methods common to all machine instructions. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "llvm/CodeGen/MachineInstr.h" 15 #include "llvm/ADT/FoldingSet.h" 16 #include "llvm/ADT/Hashing.h" 17 #include "llvm/Analysis/AliasAnalysis.h" 18 #include "llvm/CodeGen/MachineConstantPool.h" 19 #include "llvm/CodeGen/MachineFunction.h" 20 #include "llvm/CodeGen/MachineMemOperand.h" 21 #include "llvm/CodeGen/MachineModuleInfo.h" 22 #include "llvm/CodeGen/MachineRegisterInfo.h" 23 #include "llvm/CodeGen/PseudoSourceValue.h" 24 #include "llvm/IR/Constants.h" 25 #include "llvm/IR/DebugInfo.h" 26 #include "llvm/IR/Function.h" 27 #include "llvm/IR/InlineAsm.h" 28 #include "llvm/IR/LLVMContext.h" 29 #include "llvm/IR/Metadata.h" 30 #include "llvm/IR/Module.h" 31 #include "llvm/IR/ModuleSlotTracker.h" 32 #include "llvm/IR/Type.h" 33 #include "llvm/IR/Value.h" 34 #include "llvm/MC/MCInstrDesc.h" 35 #include "llvm/MC/MCSymbol.h" 36 #include "llvm/Support/CommandLine.h" 37 #include "llvm/Support/Debug.h" 38 #include "llvm/Support/ErrorHandling.h" 39 #include "llvm/Support/MathExtras.h" 40 #include "llvm/Support/raw_ostream.h" 41 #include "llvm/Target/TargetInstrInfo.h" 42 #include "llvm/Target/TargetMachine.h" 43 #include "llvm/Target/TargetRegisterInfo.h" 44 #include "llvm/Target/TargetSubtargetInfo.h" 45 using namespace llvm; 46 47 static cl::opt<bool> PrintWholeRegMask( 48 "print-whole-regmask", 49 cl::desc("Print the full contents of regmask operands in IR dumps"), 50 cl::init(true), cl::Hidden); 51 52 //===----------------------------------------------------------------------===// 53 // MachineOperand Implementation 54 //===----------------------------------------------------------------------===// 55 56 void MachineOperand::setReg(unsigned Reg) { 57 if (getReg() == Reg) return; // No change. 58 59 // Otherwise, we have to change the register. If this operand is embedded 60 // into a machine function, we need to update the old and new register's 61 // use/def lists. 62 if (MachineInstr *MI = getParent()) 63 if (MachineBasicBlock *MBB = MI->getParent()) 64 if (MachineFunction *MF = MBB->getParent()) { 65 MachineRegisterInfo &MRI = MF->getRegInfo(); 66 MRI.removeRegOperandFromUseList(this); 67 SmallContents.RegNo = Reg; 68 MRI.addRegOperandToUseList(this); 69 return; 70 } 71 72 // Otherwise, just change the register, no problem. :) 73 SmallContents.RegNo = Reg; 74 } 75 76 void MachineOperand::substVirtReg(unsigned Reg, unsigned SubIdx, 77 const TargetRegisterInfo &TRI) { 78 assert(TargetRegisterInfo::isVirtualRegister(Reg)); 79 if (SubIdx && getSubReg()) 80 SubIdx = TRI.composeSubRegIndices(SubIdx, getSubReg()); 81 setReg(Reg); 82 if (SubIdx) 83 setSubReg(SubIdx); 84 } 85 86 void MachineOperand::substPhysReg(unsigned Reg, const TargetRegisterInfo &TRI) { 87 assert(TargetRegisterInfo::isPhysicalRegister(Reg)); 88 if (getSubReg()) { 89 Reg = TRI.getSubReg(Reg, getSubReg()); 90 // Note that getSubReg() may return 0 if the sub-register doesn't exist. 91 // That won't happen in legal code. 92 setSubReg(0); 93 } 94 setReg(Reg); 95 } 96 97 /// Change a def to a use, or a use to a def. 98 void MachineOperand::setIsDef(bool Val) { 99 assert(isReg() && "Wrong MachineOperand accessor"); 100 assert((!Val || !isDebug()) && "Marking a debug operation as def"); 101 if (IsDef == Val) 102 return; 103 // MRI may keep uses and defs in different list positions. 104 if (MachineInstr *MI = getParent()) 105 if (MachineBasicBlock *MBB = MI->getParent()) 106 if (MachineFunction *MF = MBB->getParent()) { 107 MachineRegisterInfo &MRI = MF->getRegInfo(); 108 MRI.removeRegOperandFromUseList(this); 109 IsDef = Val; 110 MRI.addRegOperandToUseList(this); 111 return; 112 } 113 IsDef = Val; 114 } 115 116 // If this operand is currently a register operand, and if this is in a 117 // function, deregister the operand from the register's use/def list. 118 void MachineOperand::removeRegFromUses() { 119 if (!isReg() || !isOnRegUseList()) 120 return; 121 122 if (MachineInstr *MI = getParent()) { 123 if (MachineBasicBlock *MBB = MI->getParent()) { 124 if (MachineFunction *MF = MBB->getParent()) 125 MF->getRegInfo().removeRegOperandFromUseList(this); 126 } 127 } 128 } 129 130 /// ChangeToImmediate - Replace this operand with a new immediate operand of 131 /// the specified value. If an operand is known to be an immediate already, 132 /// the setImm method should be used. 133 void MachineOperand::ChangeToImmediate(int64_t ImmVal) { 134 assert((!isReg() || !isTied()) && "Cannot change a tied operand into an imm"); 135 136 removeRegFromUses(); 137 138 OpKind = MO_Immediate; 139 Contents.ImmVal = ImmVal; 140 } 141 142 void MachineOperand::ChangeToFPImmediate(const ConstantFP *FPImm) { 143 assert((!isReg() || !isTied()) && "Cannot change a tied operand into an imm"); 144 145 removeRegFromUses(); 146 147 OpKind = MO_FPImmediate; 148 Contents.CFP = FPImm; 149 } 150 151 void MachineOperand::ChangeToES(const char *SymName, unsigned char TargetFlags) { 152 assert((!isReg() || !isTied()) && 153 "Cannot change a tied operand into an external symbol"); 154 155 removeRegFromUses(); 156 157 OpKind = MO_ExternalSymbol; 158 Contents.OffsetedInfo.Val.SymbolName = SymName; 159 setOffset(0); // Offset is always 0. 160 setTargetFlags(TargetFlags); 161 } 162 163 void MachineOperand::ChangeToMCSymbol(MCSymbol *Sym) { 164 assert((!isReg() || !isTied()) && 165 "Cannot change a tied operand into an MCSymbol"); 166 167 removeRegFromUses(); 168 169 OpKind = MO_MCSymbol; 170 Contents.Sym = Sym; 171 } 172 173 /// ChangeToRegister - Replace this operand with a new register operand of 174 /// the specified value. If an operand is known to be an register already, 175 /// the setReg method should be used. 176 void MachineOperand::ChangeToRegister(unsigned Reg, bool isDef, bool isImp, 177 bool isKill, bool isDead, bool isUndef, 178 bool isDebug) { 179 MachineRegisterInfo *RegInfo = nullptr; 180 if (MachineInstr *MI = getParent()) 181 if (MachineBasicBlock *MBB = MI->getParent()) 182 if (MachineFunction *MF = MBB->getParent()) 183 RegInfo = &MF->getRegInfo(); 184 // If this operand is already a register operand, remove it from the 185 // register's use/def lists. 186 bool WasReg = isReg(); 187 if (RegInfo && WasReg) 188 RegInfo->removeRegOperandFromUseList(this); 189 190 // Change this to a register and set the reg#. 191 OpKind = MO_Register; 192 SmallContents.RegNo = Reg; 193 SubReg_TargetFlags = 0; 194 IsDef = isDef; 195 IsImp = isImp; 196 IsKill = isKill; 197 IsDead = isDead; 198 IsUndef = isUndef; 199 IsInternalRead = false; 200 IsEarlyClobber = false; 201 IsDebug = isDebug; 202 // Ensure isOnRegUseList() returns false. 203 Contents.Reg.Prev = nullptr; 204 // Preserve the tie when the operand was already a register. 205 if (!WasReg) 206 TiedTo = 0; 207 208 // If this operand is embedded in a function, add the operand to the 209 // register's use/def list. 210 if (RegInfo) 211 RegInfo->addRegOperandToUseList(this); 212 } 213 214 /// isIdenticalTo - Return true if this operand is identical to the specified 215 /// operand. Note that this should stay in sync with the hash_value overload 216 /// below. 217 bool MachineOperand::isIdenticalTo(const MachineOperand &Other) const { 218 if (getType() != Other.getType() || 219 getTargetFlags() != Other.getTargetFlags()) 220 return false; 221 222 switch (getType()) { 223 case MachineOperand::MO_Register: 224 return getReg() == Other.getReg() && isDef() == Other.isDef() && 225 getSubReg() == Other.getSubReg(); 226 case MachineOperand::MO_Immediate: 227 return getImm() == Other.getImm(); 228 case MachineOperand::MO_CImmediate: 229 return getCImm() == Other.getCImm(); 230 case MachineOperand::MO_FPImmediate: 231 return getFPImm() == Other.getFPImm(); 232 case MachineOperand::MO_MachineBasicBlock: 233 return getMBB() == Other.getMBB(); 234 case MachineOperand::MO_FrameIndex: 235 return getIndex() == Other.getIndex(); 236 case MachineOperand::MO_ConstantPoolIndex: 237 case MachineOperand::MO_TargetIndex: 238 return getIndex() == Other.getIndex() && getOffset() == Other.getOffset(); 239 case MachineOperand::MO_JumpTableIndex: 240 return getIndex() == Other.getIndex(); 241 case MachineOperand::MO_GlobalAddress: 242 return getGlobal() == Other.getGlobal() && getOffset() == Other.getOffset(); 243 case MachineOperand::MO_ExternalSymbol: 244 return !strcmp(getSymbolName(), Other.getSymbolName()) && 245 getOffset() == Other.getOffset(); 246 case MachineOperand::MO_BlockAddress: 247 return getBlockAddress() == Other.getBlockAddress() && 248 getOffset() == Other.getOffset(); 249 case MachineOperand::MO_RegisterMask: 250 case MachineOperand::MO_RegisterLiveOut: 251 return getRegMask() == Other.getRegMask(); 252 case MachineOperand::MO_MCSymbol: 253 return getMCSymbol() == Other.getMCSymbol(); 254 case MachineOperand::MO_CFIIndex: 255 return getCFIIndex() == Other.getCFIIndex(); 256 case MachineOperand::MO_Metadata: 257 return getMetadata() == Other.getMetadata(); 258 } 259 llvm_unreachable("Invalid machine operand type"); 260 } 261 262 // Note: this must stay exactly in sync with isIdenticalTo above. 263 hash_code llvm::hash_value(const MachineOperand &MO) { 264 switch (MO.getType()) { 265 case MachineOperand::MO_Register: 266 // Register operands don't have target flags. 267 return hash_combine(MO.getType(), MO.getReg(), MO.getSubReg(), MO.isDef()); 268 case MachineOperand::MO_Immediate: 269 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getImm()); 270 case MachineOperand::MO_CImmediate: 271 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getCImm()); 272 case MachineOperand::MO_FPImmediate: 273 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getFPImm()); 274 case MachineOperand::MO_MachineBasicBlock: 275 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getMBB()); 276 case MachineOperand::MO_FrameIndex: 277 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getIndex()); 278 case MachineOperand::MO_ConstantPoolIndex: 279 case MachineOperand::MO_TargetIndex: 280 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getIndex(), 281 MO.getOffset()); 282 case MachineOperand::MO_JumpTableIndex: 283 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getIndex()); 284 case MachineOperand::MO_ExternalSymbol: 285 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getOffset(), 286 MO.getSymbolName()); 287 case MachineOperand::MO_GlobalAddress: 288 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getGlobal(), 289 MO.getOffset()); 290 case MachineOperand::MO_BlockAddress: 291 return hash_combine(MO.getType(), MO.getTargetFlags(), 292 MO.getBlockAddress(), MO.getOffset()); 293 case MachineOperand::MO_RegisterMask: 294 case MachineOperand::MO_RegisterLiveOut: 295 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getRegMask()); 296 case MachineOperand::MO_Metadata: 297 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getMetadata()); 298 case MachineOperand::MO_MCSymbol: 299 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getMCSymbol()); 300 case MachineOperand::MO_CFIIndex: 301 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getCFIIndex()); 302 } 303 llvm_unreachable("Invalid machine operand type"); 304 } 305 306 void MachineOperand::print(raw_ostream &OS, 307 const TargetRegisterInfo *TRI) const { 308 ModuleSlotTracker DummyMST(nullptr); 309 print(OS, DummyMST, TRI); 310 } 311 312 void MachineOperand::print(raw_ostream &OS, ModuleSlotTracker &MST, 313 const TargetRegisterInfo *TRI) const { 314 switch (getType()) { 315 case MachineOperand::MO_Register: 316 OS << PrintReg(getReg(), TRI, getSubReg()); 317 318 if (isDef() || isKill() || isDead() || isImplicit() || isUndef() || 319 isInternalRead() || isEarlyClobber() || isTied()) { 320 OS << '<'; 321 bool NeedComma = false; 322 if (isDef()) { 323 if (NeedComma) OS << ','; 324 if (isEarlyClobber()) 325 OS << "earlyclobber,"; 326 if (isImplicit()) 327 OS << "imp-"; 328 OS << "def"; 329 NeedComma = true; 330 // <def,read-undef> only makes sense when getSubReg() is set. 331 // Don't clutter the output otherwise. 332 if (isUndef() && getSubReg()) 333 OS << ",read-undef"; 334 } else if (isImplicit()) { 335 OS << "imp-use"; 336 NeedComma = true; 337 } 338 339 if (isKill()) { 340 if (NeedComma) OS << ','; 341 OS << "kill"; 342 NeedComma = true; 343 } 344 if (isDead()) { 345 if (NeedComma) OS << ','; 346 OS << "dead"; 347 NeedComma = true; 348 } 349 if (isUndef() && isUse()) { 350 if (NeedComma) OS << ','; 351 OS << "undef"; 352 NeedComma = true; 353 } 354 if (isInternalRead()) { 355 if (NeedComma) OS << ','; 356 OS << "internal"; 357 NeedComma = true; 358 } 359 if (isTied()) { 360 if (NeedComma) OS << ','; 361 OS << "tied"; 362 if (TiedTo != 15) 363 OS << unsigned(TiedTo - 1); 364 } 365 OS << '>'; 366 } 367 break; 368 case MachineOperand::MO_Immediate: 369 OS << getImm(); 370 break; 371 case MachineOperand::MO_CImmediate: 372 getCImm()->getValue().print(OS, false); 373 break; 374 case MachineOperand::MO_FPImmediate: 375 if (getFPImm()->getType()->isFloatTy()) 376 OS << getFPImm()->getValueAPF().convertToFloat(); 377 else 378 OS << getFPImm()->getValueAPF().convertToDouble(); 379 break; 380 case MachineOperand::MO_MachineBasicBlock: 381 OS << "<BB#" << getMBB()->getNumber() << ">"; 382 break; 383 case MachineOperand::MO_FrameIndex: 384 OS << "<fi#" << getIndex() << '>'; 385 break; 386 case MachineOperand::MO_ConstantPoolIndex: 387 OS << "<cp#" << getIndex(); 388 if (getOffset()) OS << "+" << getOffset(); 389 OS << '>'; 390 break; 391 case MachineOperand::MO_TargetIndex: 392 OS << "<ti#" << getIndex(); 393 if (getOffset()) OS << "+" << getOffset(); 394 OS << '>'; 395 break; 396 case MachineOperand::MO_JumpTableIndex: 397 OS << "<jt#" << getIndex() << '>'; 398 break; 399 case MachineOperand::MO_GlobalAddress: 400 OS << "<ga:"; 401 getGlobal()->printAsOperand(OS, /*PrintType=*/false, MST); 402 if (getOffset()) OS << "+" << getOffset(); 403 OS << '>'; 404 break; 405 case MachineOperand::MO_ExternalSymbol: 406 OS << "<es:" << getSymbolName(); 407 if (getOffset()) OS << "+" << getOffset(); 408 OS << '>'; 409 break; 410 case MachineOperand::MO_BlockAddress: 411 OS << '<'; 412 getBlockAddress()->printAsOperand(OS, /*PrintType=*/false, MST); 413 if (getOffset()) OS << "+" << getOffset(); 414 OS << '>'; 415 break; 416 case MachineOperand::MO_RegisterMask: { 417 unsigned NumRegsInMask = 0; 418 unsigned NumRegsEmitted = 0; 419 OS << "<regmask"; 420 for (unsigned i = 0; i < TRI->getNumRegs(); ++i) { 421 unsigned MaskWord = i / 32; 422 unsigned MaskBit = i % 32; 423 if (getRegMask()[MaskWord] & (1 << MaskBit)) { 424 if (PrintWholeRegMask || NumRegsEmitted <= 10) { 425 OS << " " << PrintReg(i, TRI); 426 NumRegsEmitted++; 427 } 428 NumRegsInMask++; 429 } 430 } 431 if (NumRegsEmitted != NumRegsInMask) 432 OS << " and " << (NumRegsInMask - NumRegsEmitted) << " more..."; 433 OS << ">"; 434 break; 435 } 436 case MachineOperand::MO_RegisterLiveOut: 437 OS << "<regliveout>"; 438 break; 439 case MachineOperand::MO_Metadata: 440 OS << '<'; 441 getMetadata()->printAsOperand(OS, MST); 442 OS << '>'; 443 break; 444 case MachineOperand::MO_MCSymbol: 445 OS << "<MCSym=" << *getMCSymbol() << '>'; 446 break; 447 case MachineOperand::MO_CFIIndex: 448 OS << "<call frame instruction>"; 449 break; 450 } 451 452 if (unsigned TF = getTargetFlags()) 453 OS << "[TF=" << TF << ']'; 454 } 455 456 //===----------------------------------------------------------------------===// 457 // MachineMemOperand Implementation 458 //===----------------------------------------------------------------------===// 459 460 /// getAddrSpace - Return the LLVM IR address space number that this pointer 461 /// points into. 462 unsigned MachinePointerInfo::getAddrSpace() const { 463 if (V.isNull() || V.is<const PseudoSourceValue*>()) return 0; 464 return cast<PointerType>(V.get<const Value*>()->getType())->getAddressSpace(); 465 } 466 467 /// getConstantPool - Return a MachinePointerInfo record that refers to the 468 /// constant pool. 469 MachinePointerInfo MachinePointerInfo::getConstantPool(MachineFunction &MF) { 470 return MachinePointerInfo(MF.getPSVManager().getConstantPool()); 471 } 472 473 /// getFixedStack - Return a MachinePointerInfo record that refers to the 474 /// the specified FrameIndex. 475 MachinePointerInfo MachinePointerInfo::getFixedStack(MachineFunction &MF, 476 int FI, int64_t Offset) { 477 return MachinePointerInfo(MF.getPSVManager().getFixedStack(FI), Offset); 478 } 479 480 MachinePointerInfo MachinePointerInfo::getJumpTable(MachineFunction &MF) { 481 return MachinePointerInfo(MF.getPSVManager().getJumpTable()); 482 } 483 484 MachinePointerInfo MachinePointerInfo::getGOT(MachineFunction &MF) { 485 return MachinePointerInfo(MF.getPSVManager().getGOT()); 486 } 487 488 MachinePointerInfo MachinePointerInfo::getStack(MachineFunction &MF, 489 int64_t Offset) { 490 return MachinePointerInfo(MF.getPSVManager().getStack(), Offset); 491 } 492 493 MachineMemOperand::MachineMemOperand(MachinePointerInfo ptrinfo, unsigned f, 494 uint64_t s, unsigned int a, 495 const AAMDNodes &AAInfo, 496 const MDNode *Ranges) 497 : PtrInfo(ptrinfo), Size(s), 498 Flags((f & ((1 << MOMaxBits) - 1)) | ((Log2_32(a) + 1) << MOMaxBits)), 499 AAInfo(AAInfo), Ranges(Ranges) { 500 assert((PtrInfo.V.isNull() || PtrInfo.V.is<const PseudoSourceValue*>() || 501 isa<PointerType>(PtrInfo.V.get<const Value*>()->getType())) && 502 "invalid pointer value"); 503 assert(getBaseAlignment() == a && "Alignment is not a power of 2!"); 504 assert((isLoad() || isStore()) && "Not a load/store!"); 505 } 506 507 /// Profile - Gather unique data for the object. 508 /// 509 void MachineMemOperand::Profile(FoldingSetNodeID &ID) const { 510 ID.AddInteger(getOffset()); 511 ID.AddInteger(Size); 512 ID.AddPointer(getOpaqueValue()); 513 ID.AddInteger(Flags); 514 } 515 516 void MachineMemOperand::refineAlignment(const MachineMemOperand *MMO) { 517 // The Value and Offset may differ due to CSE. But the flags and size 518 // should be the same. 519 assert(MMO->getFlags() == getFlags() && "Flags mismatch!"); 520 assert(MMO->getSize() == getSize() && "Size mismatch!"); 521 522 if (MMO->getBaseAlignment() >= getBaseAlignment()) { 523 // Update the alignment value. 524 Flags = (Flags & ((1 << MOMaxBits) - 1)) | 525 ((Log2_32(MMO->getBaseAlignment()) + 1) << MOMaxBits); 526 // Also update the base and offset, because the new alignment may 527 // not be applicable with the old ones. 528 PtrInfo = MMO->PtrInfo; 529 } 530 } 531 532 /// getAlignment - Return the minimum known alignment in bytes of the 533 /// actual memory reference. 534 uint64_t MachineMemOperand::getAlignment() const { 535 return MinAlign(getBaseAlignment(), getOffset()); 536 } 537 538 void MachineMemOperand::print(raw_ostream &OS) const { 539 ModuleSlotTracker DummyMST(nullptr); 540 print(OS, DummyMST); 541 } 542 void MachineMemOperand::print(raw_ostream &OS, ModuleSlotTracker &MST) const { 543 assert((isLoad() || isStore()) && 544 "SV has to be a load, store or both."); 545 546 if (isVolatile()) 547 OS << "Volatile "; 548 549 if (isLoad()) 550 OS << "LD"; 551 if (isStore()) 552 OS << "ST"; 553 OS << getSize(); 554 555 // Print the address information. 556 OS << "["; 557 if (const Value *V = getValue()) 558 V->printAsOperand(OS, /*PrintType=*/false, MST); 559 else if (const PseudoSourceValue *PSV = getPseudoValue()) 560 PSV->printCustom(OS); 561 else 562 OS << "<unknown>"; 563 564 unsigned AS = getAddrSpace(); 565 if (AS != 0) 566 OS << "(addrspace=" << AS << ')'; 567 568 // If the alignment of the memory reference itself differs from the alignment 569 // of the base pointer, print the base alignment explicitly, next to the base 570 // pointer. 571 if (getBaseAlignment() != getAlignment()) 572 OS << "(align=" << getBaseAlignment() << ")"; 573 574 if (getOffset() != 0) 575 OS << "+" << getOffset(); 576 OS << "]"; 577 578 // Print the alignment of the reference. 579 if (getBaseAlignment() != getAlignment() || getBaseAlignment() != getSize()) 580 OS << "(align=" << getAlignment() << ")"; 581 582 // Print TBAA info. 583 if (const MDNode *TBAAInfo = getAAInfo().TBAA) { 584 OS << "(tbaa="; 585 if (TBAAInfo->getNumOperands() > 0) 586 TBAAInfo->getOperand(0)->printAsOperand(OS, MST); 587 else 588 OS << "<unknown>"; 589 OS << ")"; 590 } 591 592 // Print AA scope info. 593 if (const MDNode *ScopeInfo = getAAInfo().Scope) { 594 OS << "(alias.scope="; 595 if (ScopeInfo->getNumOperands() > 0) 596 for (unsigned i = 0, ie = ScopeInfo->getNumOperands(); i != ie; ++i) { 597 ScopeInfo->getOperand(i)->printAsOperand(OS, MST); 598 if (i != ie-1) 599 OS << ","; 600 } 601 else 602 OS << "<unknown>"; 603 OS << ")"; 604 } 605 606 // Print AA noalias scope info. 607 if (const MDNode *NoAliasInfo = getAAInfo().NoAlias) { 608 OS << "(noalias="; 609 if (NoAliasInfo->getNumOperands() > 0) 610 for (unsigned i = 0, ie = NoAliasInfo->getNumOperands(); i != ie; ++i) { 611 NoAliasInfo->getOperand(i)->printAsOperand(OS, MST); 612 if (i != ie-1) 613 OS << ","; 614 } 615 else 616 OS << "<unknown>"; 617 OS << ")"; 618 } 619 620 // Print nontemporal info. 621 if (isNonTemporal()) 622 OS << "(nontemporal)"; 623 624 if (isInvariant()) 625 OS << "(invariant)"; 626 } 627 628 //===----------------------------------------------------------------------===// 629 // MachineInstr Implementation 630 //===----------------------------------------------------------------------===// 631 632 void MachineInstr::addImplicitDefUseOperands(MachineFunction &MF) { 633 if (MCID->ImplicitDefs) 634 for (const MCPhysReg *ImpDefs = MCID->getImplicitDefs(); *ImpDefs; 635 ++ImpDefs) 636 addOperand(MF, MachineOperand::CreateReg(*ImpDefs, true, true)); 637 if (MCID->ImplicitUses) 638 for (const MCPhysReg *ImpUses = MCID->getImplicitUses(); *ImpUses; 639 ++ImpUses) 640 addOperand(MF, MachineOperand::CreateReg(*ImpUses, false, true)); 641 } 642 643 /// MachineInstr ctor - This constructor creates a MachineInstr and adds the 644 /// implicit operands. It reserves space for the number of operands specified by 645 /// the MCInstrDesc. 646 MachineInstr::MachineInstr(MachineFunction &MF, const MCInstrDesc &tid, 647 DebugLoc dl, bool NoImp) 648 : MCID(&tid), Parent(nullptr), Operands(nullptr), NumOperands(0), Flags(0), 649 AsmPrinterFlags(0), NumMemRefs(0), MemRefs(nullptr), 650 debugLoc(std::move(dl)) { 651 assert(debugLoc.hasTrivialDestructor() && "Expected trivial destructor"); 652 653 // Reserve space for the expected number of operands. 654 if (unsigned NumOps = MCID->getNumOperands() + 655 MCID->getNumImplicitDefs() + MCID->getNumImplicitUses()) { 656 CapOperands = OperandCapacity::get(NumOps); 657 Operands = MF.allocateOperandArray(CapOperands); 658 } 659 660 if (!NoImp) 661 addImplicitDefUseOperands(MF); 662 } 663 664 /// MachineInstr ctor - Copies MachineInstr arg exactly 665 /// 666 MachineInstr::MachineInstr(MachineFunction &MF, const MachineInstr &MI) 667 : MCID(&MI.getDesc()), Parent(nullptr), Operands(nullptr), NumOperands(0), 668 Flags(0), AsmPrinterFlags(0), 669 NumMemRefs(MI.NumMemRefs), MemRefs(MI.MemRefs), 670 debugLoc(MI.getDebugLoc()) { 671 assert(debugLoc.hasTrivialDestructor() && "Expected trivial destructor"); 672 673 CapOperands = OperandCapacity::get(MI.getNumOperands()); 674 Operands = MF.allocateOperandArray(CapOperands); 675 676 // Copy operands. 677 for (const MachineOperand &MO : MI.operands()) 678 addOperand(MF, MO); 679 680 // Copy all the sensible flags. 681 setFlags(MI.Flags); 682 } 683 684 /// getRegInfo - If this instruction is embedded into a MachineFunction, 685 /// return the MachineRegisterInfo object for the current function, otherwise 686 /// return null. 687 MachineRegisterInfo *MachineInstr::getRegInfo() { 688 if (MachineBasicBlock *MBB = getParent()) 689 return &MBB->getParent()->getRegInfo(); 690 return nullptr; 691 } 692 693 /// RemoveRegOperandsFromUseLists - Unlink all of the register operands in 694 /// this instruction from their respective use lists. This requires that the 695 /// operands already be on their use lists. 696 void MachineInstr::RemoveRegOperandsFromUseLists(MachineRegisterInfo &MRI) { 697 for (MachineOperand &MO : operands()) 698 if (MO.isReg()) 699 MRI.removeRegOperandFromUseList(&MO); 700 } 701 702 /// AddRegOperandsToUseLists - Add all of the register operands in 703 /// this instruction from their respective use lists. This requires that the 704 /// operands not be on their use lists yet. 705 void MachineInstr::AddRegOperandsToUseLists(MachineRegisterInfo &MRI) { 706 for (MachineOperand &MO : operands()) 707 if (MO.isReg()) 708 MRI.addRegOperandToUseList(&MO); 709 } 710 711 void MachineInstr::addOperand(const MachineOperand &Op) { 712 MachineBasicBlock *MBB = getParent(); 713 assert(MBB && "Use MachineInstrBuilder to add operands to dangling instrs"); 714 MachineFunction *MF = MBB->getParent(); 715 assert(MF && "Use MachineInstrBuilder to add operands to dangling instrs"); 716 addOperand(*MF, Op); 717 } 718 719 /// Move NumOps MachineOperands from Src to Dst, with support for overlapping 720 /// ranges. If MRI is non-null also update use-def chains. 721 static void moveOperands(MachineOperand *Dst, MachineOperand *Src, 722 unsigned NumOps, MachineRegisterInfo *MRI) { 723 if (MRI) 724 return MRI->moveOperands(Dst, Src, NumOps); 725 726 // MachineOperand is a trivially copyable type so we can just use memmove. 727 std::memmove(Dst, Src, NumOps * sizeof(MachineOperand)); 728 } 729 730 /// addOperand - Add the specified operand to the instruction. If it is an 731 /// implicit operand, it is added to the end of the operand list. If it is 732 /// an explicit operand it is added at the end of the explicit operand list 733 /// (before the first implicit operand). 734 void MachineInstr::addOperand(MachineFunction &MF, const MachineOperand &Op) { 735 assert(MCID && "Cannot add operands before providing an instr descriptor"); 736 737 // Check if we're adding one of our existing operands. 738 if (&Op >= Operands && &Op < Operands + NumOperands) { 739 // This is unusual: MI->addOperand(MI->getOperand(i)). 740 // If adding Op requires reallocating or moving existing operands around, 741 // the Op reference could go stale. Support it by copying Op. 742 MachineOperand CopyOp(Op); 743 return addOperand(MF, CopyOp); 744 } 745 746 // Find the insert location for the new operand. Implicit registers go at 747 // the end, everything else goes before the implicit regs. 748 // 749 // FIXME: Allow mixed explicit and implicit operands on inline asm. 750 // InstrEmitter::EmitSpecialNode() is marking inline asm clobbers as 751 // implicit-defs, but they must not be moved around. See the FIXME in 752 // InstrEmitter.cpp. 753 unsigned OpNo = getNumOperands(); 754 bool isImpReg = Op.isReg() && Op.isImplicit(); 755 if (!isImpReg && !isInlineAsm()) { 756 while (OpNo && Operands[OpNo-1].isReg() && Operands[OpNo-1].isImplicit()) { 757 --OpNo; 758 assert(!Operands[OpNo].isTied() && "Cannot move tied operands"); 759 } 760 } 761 762 #ifndef NDEBUG 763 bool isMetaDataOp = Op.getType() == MachineOperand::MO_Metadata; 764 // OpNo now points as the desired insertion point. Unless this is a variadic 765 // instruction, only implicit regs are allowed beyond MCID->getNumOperands(). 766 // RegMask operands go between the explicit and implicit operands. 767 assert((isImpReg || Op.isRegMask() || MCID->isVariadic() || 768 OpNo < MCID->getNumOperands() || isMetaDataOp) && 769 "Trying to add an operand to a machine instr that is already done!"); 770 #endif 771 772 MachineRegisterInfo *MRI = getRegInfo(); 773 774 // Determine if the Operands array needs to be reallocated. 775 // Save the old capacity and operand array. 776 OperandCapacity OldCap = CapOperands; 777 MachineOperand *OldOperands = Operands; 778 if (!OldOperands || OldCap.getSize() == getNumOperands()) { 779 CapOperands = OldOperands ? OldCap.getNext() : OldCap.get(1); 780 Operands = MF.allocateOperandArray(CapOperands); 781 // Move the operands before the insertion point. 782 if (OpNo) 783 moveOperands(Operands, OldOperands, OpNo, MRI); 784 } 785 786 // Move the operands following the insertion point. 787 if (OpNo != NumOperands) 788 moveOperands(Operands + OpNo + 1, OldOperands + OpNo, NumOperands - OpNo, 789 MRI); 790 ++NumOperands; 791 792 // Deallocate the old operand array. 793 if (OldOperands != Operands && OldOperands) 794 MF.deallocateOperandArray(OldCap, OldOperands); 795 796 // Copy Op into place. It still needs to be inserted into the MRI use lists. 797 MachineOperand *NewMO = new (Operands + OpNo) MachineOperand(Op); 798 NewMO->ParentMI = this; 799 800 // When adding a register operand, tell MRI about it. 801 if (NewMO->isReg()) { 802 // Ensure isOnRegUseList() returns false, regardless of Op's status. 803 NewMO->Contents.Reg.Prev = nullptr; 804 // Ignore existing ties. This is not a property that can be copied. 805 NewMO->TiedTo = 0; 806 // Add the new operand to MRI, but only for instructions in an MBB. 807 if (MRI) 808 MRI->addRegOperandToUseList(NewMO); 809 // The MCID operand information isn't accurate until we start adding 810 // explicit operands. The implicit operands are added first, then the 811 // explicits are inserted before them. 812 if (!isImpReg) { 813 // Tie uses to defs as indicated in MCInstrDesc. 814 if (NewMO->isUse()) { 815 int DefIdx = MCID->getOperandConstraint(OpNo, MCOI::TIED_TO); 816 if (DefIdx != -1) 817 tieOperands(DefIdx, OpNo); 818 } 819 // If the register operand is flagged as early, mark the operand as such. 820 if (MCID->getOperandConstraint(OpNo, MCOI::EARLY_CLOBBER) != -1) 821 NewMO->setIsEarlyClobber(true); 822 } 823 } 824 } 825 826 /// RemoveOperand - Erase an operand from an instruction, leaving it with one 827 /// fewer operand than it started with. 828 /// 829 void MachineInstr::RemoveOperand(unsigned OpNo) { 830 assert(OpNo < getNumOperands() && "Invalid operand number"); 831 untieRegOperand(OpNo); 832 833 #ifndef NDEBUG 834 // Moving tied operands would break the ties. 835 for (unsigned i = OpNo + 1, e = getNumOperands(); i != e; ++i) 836 if (Operands[i].isReg()) 837 assert(!Operands[i].isTied() && "Cannot move tied operands"); 838 #endif 839 840 MachineRegisterInfo *MRI = getRegInfo(); 841 if (MRI && Operands[OpNo].isReg()) 842 MRI->removeRegOperandFromUseList(Operands + OpNo); 843 844 // Don't call the MachineOperand destructor. A lot of this code depends on 845 // MachineOperand having a trivial destructor anyway, and adding a call here 846 // wouldn't make it 'destructor-correct'. 847 848 if (unsigned N = NumOperands - 1 - OpNo) 849 moveOperands(Operands + OpNo, Operands + OpNo + 1, N, MRI); 850 --NumOperands; 851 } 852 853 /// addMemOperand - Add a MachineMemOperand to the machine instruction. 854 /// This function should be used only occasionally. The setMemRefs function 855 /// is the primary method for setting up a MachineInstr's MemRefs list. 856 void MachineInstr::addMemOperand(MachineFunction &MF, 857 MachineMemOperand *MO) { 858 mmo_iterator OldMemRefs = MemRefs; 859 unsigned OldNumMemRefs = NumMemRefs; 860 861 unsigned NewNum = NumMemRefs + 1; 862 mmo_iterator NewMemRefs = MF.allocateMemRefsArray(NewNum); 863 864 std::copy(OldMemRefs, OldMemRefs + OldNumMemRefs, NewMemRefs); 865 NewMemRefs[NewNum - 1] = MO; 866 setMemRefs(NewMemRefs, NewMemRefs + NewNum); 867 } 868 869 std::pair<MachineInstr::mmo_iterator, unsigned> 870 MachineInstr::mergeMemRefsWith(const MachineInstr& Other) { 871 // TODO: If we end up with too many memory operands, return the empty 872 // conservative set rather than failing asserts. 873 // TODO: consider uniquing elements within the operand lists to reduce 874 // space usage and fall back to conservative information less often. 875 size_t CombinedNumMemRefs = (memoperands_end() - memoperands_begin()) 876 + (Other.memoperands_end() - Other.memoperands_begin()); 877 878 MachineFunction *MF = getParent()->getParent(); 879 mmo_iterator MemBegin = MF->allocateMemRefsArray(CombinedNumMemRefs); 880 mmo_iterator MemEnd = std::copy(memoperands_begin(), memoperands_end(), 881 MemBegin); 882 MemEnd = std::copy(Other.memoperands_begin(), Other.memoperands_end(), 883 MemEnd); 884 assert(MemEnd - MemBegin == (ptrdiff_t)CombinedNumMemRefs && 885 "missing memrefs"); 886 887 return std::make_pair(MemBegin, CombinedNumMemRefs); 888 } 889 890 bool MachineInstr::hasPropertyInBundle(unsigned Mask, QueryType Type) const { 891 assert(!isBundledWithPred() && "Must be called on bundle header"); 892 for (MachineBasicBlock::const_instr_iterator MII = getIterator();; ++MII) { 893 if (MII->getDesc().getFlags() & Mask) { 894 if (Type == AnyInBundle) 895 return true; 896 } else { 897 if (Type == AllInBundle && !MII->isBundle()) 898 return false; 899 } 900 // This was the last instruction in the bundle. 901 if (!MII->isBundledWithSucc()) 902 return Type == AllInBundle; 903 } 904 } 905 906 bool MachineInstr::isIdenticalTo(const MachineInstr *Other, 907 MICheckType Check) const { 908 // If opcodes or number of operands are not the same then the two 909 // instructions are obviously not identical. 910 if (Other->getOpcode() != getOpcode() || 911 Other->getNumOperands() != getNumOperands()) 912 return false; 913 914 if (isBundle()) { 915 // Both instructions are bundles, compare MIs inside the bundle. 916 MachineBasicBlock::const_instr_iterator I1 = getIterator(); 917 MachineBasicBlock::const_instr_iterator E1 = getParent()->instr_end(); 918 MachineBasicBlock::const_instr_iterator I2 = Other->getIterator(); 919 MachineBasicBlock::const_instr_iterator E2= Other->getParent()->instr_end(); 920 while (++I1 != E1 && I1->isInsideBundle()) { 921 ++I2; 922 if (I2 == E2 || !I2->isInsideBundle() || !I1->isIdenticalTo(&*I2, Check)) 923 return false; 924 } 925 } 926 927 // Check operands to make sure they match. 928 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { 929 const MachineOperand &MO = getOperand(i); 930 const MachineOperand &OMO = Other->getOperand(i); 931 if (!MO.isReg()) { 932 if (!MO.isIdenticalTo(OMO)) 933 return false; 934 continue; 935 } 936 937 // Clients may or may not want to ignore defs when testing for equality. 938 // For example, machine CSE pass only cares about finding common 939 // subexpressions, so it's safe to ignore virtual register defs. 940 if (MO.isDef()) { 941 if (Check == IgnoreDefs) 942 continue; 943 else if (Check == IgnoreVRegDefs) { 944 if (TargetRegisterInfo::isPhysicalRegister(MO.getReg()) || 945 TargetRegisterInfo::isPhysicalRegister(OMO.getReg())) 946 if (MO.getReg() != OMO.getReg()) 947 return false; 948 } else { 949 if (!MO.isIdenticalTo(OMO)) 950 return false; 951 if (Check == CheckKillDead && MO.isDead() != OMO.isDead()) 952 return false; 953 } 954 } else { 955 if (!MO.isIdenticalTo(OMO)) 956 return false; 957 if (Check == CheckKillDead && MO.isKill() != OMO.isKill()) 958 return false; 959 } 960 } 961 // If DebugLoc does not match then two dbg.values are not identical. 962 if (isDebugValue()) 963 if (getDebugLoc() && Other->getDebugLoc() && 964 getDebugLoc() != Other->getDebugLoc()) 965 return false; 966 return true; 967 } 968 969 MachineInstr *MachineInstr::removeFromParent() { 970 assert(getParent() && "Not embedded in a basic block!"); 971 return getParent()->remove(this); 972 } 973 974 MachineInstr *MachineInstr::removeFromBundle() { 975 assert(getParent() && "Not embedded in a basic block!"); 976 return getParent()->remove_instr(this); 977 } 978 979 void MachineInstr::eraseFromParent() { 980 assert(getParent() && "Not embedded in a basic block!"); 981 getParent()->erase(this); 982 } 983 984 void MachineInstr::eraseFromParentAndMarkDBGValuesForRemoval() { 985 assert(getParent() && "Not embedded in a basic block!"); 986 MachineBasicBlock *MBB = getParent(); 987 MachineFunction *MF = MBB->getParent(); 988 assert(MF && "Not embedded in a function!"); 989 990 MachineInstr *MI = (MachineInstr *)this; 991 MachineRegisterInfo &MRI = MF->getRegInfo(); 992 993 for (const MachineOperand &MO : MI->operands()) { 994 if (!MO.isReg() || !MO.isDef()) 995 continue; 996 unsigned Reg = MO.getReg(); 997 if (!TargetRegisterInfo::isVirtualRegister(Reg)) 998 continue; 999 MRI.markUsesInDebugValueAsUndef(Reg); 1000 } 1001 MI->eraseFromParent(); 1002 } 1003 1004 void MachineInstr::eraseFromBundle() { 1005 assert(getParent() && "Not embedded in a basic block!"); 1006 getParent()->erase_instr(this); 1007 } 1008 1009 /// getNumExplicitOperands - Returns the number of non-implicit operands. 1010 /// 1011 unsigned MachineInstr::getNumExplicitOperands() const { 1012 unsigned NumOperands = MCID->getNumOperands(); 1013 if (!MCID->isVariadic()) 1014 return NumOperands; 1015 1016 for (unsigned i = NumOperands, e = getNumOperands(); i != e; ++i) { 1017 const MachineOperand &MO = getOperand(i); 1018 if (!MO.isReg() || !MO.isImplicit()) 1019 NumOperands++; 1020 } 1021 return NumOperands; 1022 } 1023 1024 void MachineInstr::bundleWithPred() { 1025 assert(!isBundledWithPred() && "MI is already bundled with its predecessor"); 1026 setFlag(BundledPred); 1027 MachineBasicBlock::instr_iterator Pred = getIterator(); 1028 --Pred; 1029 assert(!Pred->isBundledWithSucc() && "Inconsistent bundle flags"); 1030 Pred->setFlag(BundledSucc); 1031 } 1032 1033 void MachineInstr::bundleWithSucc() { 1034 assert(!isBundledWithSucc() && "MI is already bundled with its successor"); 1035 setFlag(BundledSucc); 1036 MachineBasicBlock::instr_iterator Succ = getIterator(); 1037 ++Succ; 1038 assert(!Succ->isBundledWithPred() && "Inconsistent bundle flags"); 1039 Succ->setFlag(BundledPred); 1040 } 1041 1042 void MachineInstr::unbundleFromPred() { 1043 assert(isBundledWithPred() && "MI isn't bundled with its predecessor"); 1044 clearFlag(BundledPred); 1045 MachineBasicBlock::instr_iterator Pred = getIterator(); 1046 --Pred; 1047 assert(Pred->isBundledWithSucc() && "Inconsistent bundle flags"); 1048 Pred->clearFlag(BundledSucc); 1049 } 1050 1051 void MachineInstr::unbundleFromSucc() { 1052 assert(isBundledWithSucc() && "MI isn't bundled with its successor"); 1053 clearFlag(BundledSucc); 1054 MachineBasicBlock::instr_iterator Succ = getIterator(); 1055 ++Succ; 1056 assert(Succ->isBundledWithPred() && "Inconsistent bundle flags"); 1057 Succ->clearFlag(BundledPred); 1058 } 1059 1060 bool MachineInstr::isStackAligningInlineAsm() const { 1061 if (isInlineAsm()) { 1062 unsigned ExtraInfo = getOperand(InlineAsm::MIOp_ExtraInfo).getImm(); 1063 if (ExtraInfo & InlineAsm::Extra_IsAlignStack) 1064 return true; 1065 } 1066 return false; 1067 } 1068 1069 InlineAsm::AsmDialect MachineInstr::getInlineAsmDialect() const { 1070 assert(isInlineAsm() && "getInlineAsmDialect() only works for inline asms!"); 1071 unsigned ExtraInfo = getOperand(InlineAsm::MIOp_ExtraInfo).getImm(); 1072 return InlineAsm::AsmDialect((ExtraInfo & InlineAsm::Extra_AsmDialect) != 0); 1073 } 1074 1075 int MachineInstr::findInlineAsmFlagIdx(unsigned OpIdx, 1076 unsigned *GroupNo) const { 1077 assert(isInlineAsm() && "Expected an inline asm instruction"); 1078 assert(OpIdx < getNumOperands() && "OpIdx out of range"); 1079 1080 // Ignore queries about the initial operands. 1081 if (OpIdx < InlineAsm::MIOp_FirstOperand) 1082 return -1; 1083 1084 unsigned Group = 0; 1085 unsigned NumOps; 1086 for (unsigned i = InlineAsm::MIOp_FirstOperand, e = getNumOperands(); i < e; 1087 i += NumOps) { 1088 const MachineOperand &FlagMO = getOperand(i); 1089 // If we reach the implicit register operands, stop looking. 1090 if (!FlagMO.isImm()) 1091 return -1; 1092 NumOps = 1 + InlineAsm::getNumOperandRegisters(FlagMO.getImm()); 1093 if (i + NumOps > OpIdx) { 1094 if (GroupNo) 1095 *GroupNo = Group; 1096 return i; 1097 } 1098 ++Group; 1099 } 1100 return -1; 1101 } 1102 1103 const TargetRegisterClass* 1104 MachineInstr::getRegClassConstraint(unsigned OpIdx, 1105 const TargetInstrInfo *TII, 1106 const TargetRegisterInfo *TRI) const { 1107 assert(getParent() && "Can't have an MBB reference here!"); 1108 assert(getParent()->getParent() && "Can't have an MF reference here!"); 1109 const MachineFunction &MF = *getParent()->getParent(); 1110 1111 // Most opcodes have fixed constraints in their MCInstrDesc. 1112 if (!isInlineAsm()) 1113 return TII->getRegClass(getDesc(), OpIdx, TRI, MF); 1114 1115 if (!getOperand(OpIdx).isReg()) 1116 return nullptr; 1117 1118 // For tied uses on inline asm, get the constraint from the def. 1119 unsigned DefIdx; 1120 if (getOperand(OpIdx).isUse() && isRegTiedToDefOperand(OpIdx, &DefIdx)) 1121 OpIdx = DefIdx; 1122 1123 // Inline asm stores register class constraints in the flag word. 1124 int FlagIdx = findInlineAsmFlagIdx(OpIdx); 1125 if (FlagIdx < 0) 1126 return nullptr; 1127 1128 unsigned Flag = getOperand(FlagIdx).getImm(); 1129 unsigned RCID; 1130 if (InlineAsm::hasRegClassConstraint(Flag, RCID)) 1131 return TRI->getRegClass(RCID); 1132 1133 // Assume that all registers in a memory operand are pointers. 1134 if (InlineAsm::getKind(Flag) == InlineAsm::Kind_Mem) 1135 return TRI->getPointerRegClass(MF); 1136 1137 return nullptr; 1138 } 1139 1140 const TargetRegisterClass *MachineInstr::getRegClassConstraintEffectForVReg( 1141 unsigned Reg, const TargetRegisterClass *CurRC, const TargetInstrInfo *TII, 1142 const TargetRegisterInfo *TRI, bool ExploreBundle) const { 1143 // Check every operands inside the bundle if we have 1144 // been asked to. 1145 if (ExploreBundle) 1146 for (ConstMIBundleOperands OpndIt(this); OpndIt.isValid() && CurRC; 1147 ++OpndIt) 1148 CurRC = OpndIt->getParent()->getRegClassConstraintEffectForVRegImpl( 1149 OpndIt.getOperandNo(), Reg, CurRC, TII, TRI); 1150 else 1151 // Otherwise, just check the current operands. 1152 for (unsigned i = 0, e = NumOperands; i < e && CurRC; ++i) 1153 CurRC = getRegClassConstraintEffectForVRegImpl(i, Reg, CurRC, TII, TRI); 1154 return CurRC; 1155 } 1156 1157 const TargetRegisterClass *MachineInstr::getRegClassConstraintEffectForVRegImpl( 1158 unsigned OpIdx, unsigned Reg, const TargetRegisterClass *CurRC, 1159 const TargetInstrInfo *TII, const TargetRegisterInfo *TRI) const { 1160 assert(CurRC && "Invalid initial register class"); 1161 // Check if Reg is constrained by some of its use/def from MI. 1162 const MachineOperand &MO = getOperand(OpIdx); 1163 if (!MO.isReg() || MO.getReg() != Reg) 1164 return CurRC; 1165 // If yes, accumulate the constraints through the operand. 1166 return getRegClassConstraintEffect(OpIdx, CurRC, TII, TRI); 1167 } 1168 1169 const TargetRegisterClass *MachineInstr::getRegClassConstraintEffect( 1170 unsigned OpIdx, const TargetRegisterClass *CurRC, 1171 const TargetInstrInfo *TII, const TargetRegisterInfo *TRI) const { 1172 const TargetRegisterClass *OpRC = getRegClassConstraint(OpIdx, TII, TRI); 1173 const MachineOperand &MO = getOperand(OpIdx); 1174 assert(MO.isReg() && 1175 "Cannot get register constraints for non-register operand"); 1176 assert(CurRC && "Invalid initial register class"); 1177 if (unsigned SubIdx = MO.getSubReg()) { 1178 if (OpRC) 1179 CurRC = TRI->getMatchingSuperRegClass(CurRC, OpRC, SubIdx); 1180 else 1181 CurRC = TRI->getSubClassWithSubReg(CurRC, SubIdx); 1182 } else if (OpRC) 1183 CurRC = TRI->getCommonSubClass(CurRC, OpRC); 1184 return CurRC; 1185 } 1186 1187 /// Return the number of instructions inside the MI bundle, not counting the 1188 /// header instruction. 1189 unsigned MachineInstr::getBundleSize() const { 1190 MachineBasicBlock::const_instr_iterator I = getIterator(); 1191 unsigned Size = 0; 1192 while (I->isBundledWithSucc()) 1193 ++Size, ++I; 1194 return Size; 1195 } 1196 1197 /// findRegisterUseOperandIdx() - Returns the MachineOperand that is a use of 1198 /// the specific register or -1 if it is not found. It further tightens 1199 /// the search criteria to a use that kills the register if isKill is true. 1200 int MachineInstr::findRegisterUseOperandIdx(unsigned Reg, bool isKill, 1201 const TargetRegisterInfo *TRI) const { 1202 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { 1203 const MachineOperand &MO = getOperand(i); 1204 if (!MO.isReg() || !MO.isUse()) 1205 continue; 1206 unsigned MOReg = MO.getReg(); 1207 if (!MOReg) 1208 continue; 1209 if (MOReg == Reg || 1210 (TRI && 1211 TargetRegisterInfo::isPhysicalRegister(MOReg) && 1212 TargetRegisterInfo::isPhysicalRegister(Reg) && 1213 TRI->isSubRegister(MOReg, Reg))) 1214 if (!isKill || MO.isKill()) 1215 return i; 1216 } 1217 return -1; 1218 } 1219 1220 /// readsWritesVirtualRegister - Return a pair of bools (reads, writes) 1221 /// indicating if this instruction reads or writes Reg. This also considers 1222 /// partial defines. 1223 std::pair<bool,bool> 1224 MachineInstr::readsWritesVirtualRegister(unsigned Reg, 1225 SmallVectorImpl<unsigned> *Ops) const { 1226 bool PartDef = false; // Partial redefine. 1227 bool FullDef = false; // Full define. 1228 bool Use = false; 1229 1230 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { 1231 const MachineOperand &MO = getOperand(i); 1232 if (!MO.isReg() || MO.getReg() != Reg) 1233 continue; 1234 if (Ops) 1235 Ops->push_back(i); 1236 if (MO.isUse()) 1237 Use |= !MO.isUndef(); 1238 else if (MO.getSubReg() && !MO.isUndef()) 1239 // A partial <def,undef> doesn't count as reading the register. 1240 PartDef = true; 1241 else 1242 FullDef = true; 1243 } 1244 // A partial redefine uses Reg unless there is also a full define. 1245 return std::make_pair(Use || (PartDef && !FullDef), PartDef || FullDef); 1246 } 1247 1248 /// findRegisterDefOperandIdx() - Returns the operand index that is a def of 1249 /// the specified register or -1 if it is not found. If isDead is true, defs 1250 /// that are not dead are skipped. If TargetRegisterInfo is non-null, then it 1251 /// also checks if there is a def of a super-register. 1252 int 1253 MachineInstr::findRegisterDefOperandIdx(unsigned Reg, bool isDead, bool Overlap, 1254 const TargetRegisterInfo *TRI) const { 1255 bool isPhys = TargetRegisterInfo::isPhysicalRegister(Reg); 1256 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { 1257 const MachineOperand &MO = getOperand(i); 1258 // Accept regmask operands when Overlap is set. 1259 // Ignore them when looking for a specific def operand (Overlap == false). 1260 if (isPhys && Overlap && MO.isRegMask() && MO.clobbersPhysReg(Reg)) 1261 return i; 1262 if (!MO.isReg() || !MO.isDef()) 1263 continue; 1264 unsigned MOReg = MO.getReg(); 1265 bool Found = (MOReg == Reg); 1266 if (!Found && TRI && isPhys && 1267 TargetRegisterInfo::isPhysicalRegister(MOReg)) { 1268 if (Overlap) 1269 Found = TRI->regsOverlap(MOReg, Reg); 1270 else 1271 Found = TRI->isSubRegister(MOReg, Reg); 1272 } 1273 if (Found && (!isDead || MO.isDead())) 1274 return i; 1275 } 1276 return -1; 1277 } 1278 1279 /// findFirstPredOperandIdx() - Find the index of the first operand in the 1280 /// operand list that is used to represent the predicate. It returns -1 if 1281 /// none is found. 1282 int MachineInstr::findFirstPredOperandIdx() const { 1283 // Don't call MCID.findFirstPredOperandIdx() because this variant 1284 // is sometimes called on an instruction that's not yet complete, and 1285 // so the number of operands is less than the MCID indicates. In 1286 // particular, the PTX target does this. 1287 const MCInstrDesc &MCID = getDesc(); 1288 if (MCID.isPredicable()) { 1289 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) 1290 if (MCID.OpInfo[i].isPredicate()) 1291 return i; 1292 } 1293 1294 return -1; 1295 } 1296 1297 // MachineOperand::TiedTo is 4 bits wide. 1298 const unsigned TiedMax = 15; 1299 1300 /// tieOperands - Mark operands at DefIdx and UseIdx as tied to each other. 1301 /// 1302 /// Use and def operands can be tied together, indicated by a non-zero TiedTo 1303 /// field. TiedTo can have these values: 1304 /// 1305 /// 0: Operand is not tied to anything. 1306 /// 1 to TiedMax-1: Tied to getOperand(TiedTo-1). 1307 /// TiedMax: Tied to an operand >= TiedMax-1. 1308 /// 1309 /// The tied def must be one of the first TiedMax operands on a normal 1310 /// instruction. INLINEASM instructions allow more tied defs. 1311 /// 1312 void MachineInstr::tieOperands(unsigned DefIdx, unsigned UseIdx) { 1313 MachineOperand &DefMO = getOperand(DefIdx); 1314 MachineOperand &UseMO = getOperand(UseIdx); 1315 assert(DefMO.isDef() && "DefIdx must be a def operand"); 1316 assert(UseMO.isUse() && "UseIdx must be a use operand"); 1317 assert(!DefMO.isTied() && "Def is already tied to another use"); 1318 assert(!UseMO.isTied() && "Use is already tied to another def"); 1319 1320 if (DefIdx < TiedMax) 1321 UseMO.TiedTo = DefIdx + 1; 1322 else { 1323 // Inline asm can use the group descriptors to find tied operands, but on 1324 // normal instruction, the tied def must be within the first TiedMax 1325 // operands. 1326 assert(isInlineAsm() && "DefIdx out of range"); 1327 UseMO.TiedTo = TiedMax; 1328 } 1329 1330 // UseIdx can be out of range, we'll search for it in findTiedOperandIdx(). 1331 DefMO.TiedTo = std::min(UseIdx + 1, TiedMax); 1332 } 1333 1334 /// Given the index of a tied register operand, find the operand it is tied to. 1335 /// Defs are tied to uses and vice versa. Returns the index of the tied operand 1336 /// which must exist. 1337 unsigned MachineInstr::findTiedOperandIdx(unsigned OpIdx) const { 1338 const MachineOperand &MO = getOperand(OpIdx); 1339 assert(MO.isTied() && "Operand isn't tied"); 1340 1341 // Normally TiedTo is in range. 1342 if (MO.TiedTo < TiedMax) 1343 return MO.TiedTo - 1; 1344 1345 // Uses on normal instructions can be out of range. 1346 if (!isInlineAsm()) { 1347 // Normal tied defs must be in the 0..TiedMax-1 range. 1348 if (MO.isUse()) 1349 return TiedMax - 1; 1350 // MO is a def. Search for the tied use. 1351 for (unsigned i = TiedMax - 1, e = getNumOperands(); i != e; ++i) { 1352 const MachineOperand &UseMO = getOperand(i); 1353 if (UseMO.isReg() && UseMO.isUse() && UseMO.TiedTo == OpIdx + 1) 1354 return i; 1355 } 1356 llvm_unreachable("Can't find tied use"); 1357 } 1358 1359 // Now deal with inline asm by parsing the operand group descriptor flags. 1360 // Find the beginning of each operand group. 1361 SmallVector<unsigned, 8> GroupIdx; 1362 unsigned OpIdxGroup = ~0u; 1363 unsigned NumOps; 1364 for (unsigned i = InlineAsm::MIOp_FirstOperand, e = getNumOperands(); i < e; 1365 i += NumOps) { 1366 const MachineOperand &FlagMO = getOperand(i); 1367 assert(FlagMO.isImm() && "Invalid tied operand on inline asm"); 1368 unsigned CurGroup = GroupIdx.size(); 1369 GroupIdx.push_back(i); 1370 NumOps = 1 + InlineAsm::getNumOperandRegisters(FlagMO.getImm()); 1371 // OpIdx belongs to this operand group. 1372 if (OpIdx > i && OpIdx < i + NumOps) 1373 OpIdxGroup = CurGroup; 1374 unsigned TiedGroup; 1375 if (!InlineAsm::isUseOperandTiedToDef(FlagMO.getImm(), TiedGroup)) 1376 continue; 1377 // Operands in this group are tied to operands in TiedGroup which must be 1378 // earlier. Find the number of operands between the two groups. 1379 unsigned Delta = i - GroupIdx[TiedGroup]; 1380 1381 // OpIdx is a use tied to TiedGroup. 1382 if (OpIdxGroup == CurGroup) 1383 return OpIdx - Delta; 1384 1385 // OpIdx is a def tied to this use group. 1386 if (OpIdxGroup == TiedGroup) 1387 return OpIdx + Delta; 1388 } 1389 llvm_unreachable("Invalid tied operand on inline asm"); 1390 } 1391 1392 /// clearKillInfo - Clears kill flags on all operands. 1393 /// 1394 void MachineInstr::clearKillInfo() { 1395 for (MachineOperand &MO : operands()) { 1396 if (MO.isReg() && MO.isUse()) 1397 MO.setIsKill(false); 1398 } 1399 } 1400 1401 void MachineInstr::substituteRegister(unsigned FromReg, 1402 unsigned ToReg, 1403 unsigned SubIdx, 1404 const TargetRegisterInfo &RegInfo) { 1405 if (TargetRegisterInfo::isPhysicalRegister(ToReg)) { 1406 if (SubIdx) 1407 ToReg = RegInfo.getSubReg(ToReg, SubIdx); 1408 for (MachineOperand &MO : operands()) { 1409 if (!MO.isReg() || MO.getReg() != FromReg) 1410 continue; 1411 MO.substPhysReg(ToReg, RegInfo); 1412 } 1413 } else { 1414 for (MachineOperand &MO : operands()) { 1415 if (!MO.isReg() || MO.getReg() != FromReg) 1416 continue; 1417 MO.substVirtReg(ToReg, SubIdx, RegInfo); 1418 } 1419 } 1420 } 1421 1422 /// isSafeToMove - Return true if it is safe to move this instruction. If 1423 /// SawStore is set to true, it means that there is a store (or call) between 1424 /// the instruction's location and its intended destination. 1425 bool MachineInstr::isSafeToMove(AliasAnalysis *AA, bool &SawStore) const { 1426 // Ignore stuff that we obviously can't move. 1427 // 1428 // Treat volatile loads as stores. This is not strictly necessary for 1429 // volatiles, but it is required for atomic loads. It is not allowed to move 1430 // a load across an atomic load with Ordering > Monotonic. 1431 if (mayStore() || isCall() || 1432 (mayLoad() && hasOrderedMemoryRef())) { 1433 SawStore = true; 1434 return false; 1435 } 1436 1437 if (isPosition() || isDebugValue() || isTerminator() || 1438 hasUnmodeledSideEffects()) 1439 return false; 1440 1441 // See if this instruction does a load. If so, we have to guarantee that the 1442 // loaded value doesn't change between the load and the its intended 1443 // destination. The check for isInvariantLoad gives the targe the chance to 1444 // classify the load as always returning a constant, e.g. a constant pool 1445 // load. 1446 if (mayLoad() && !isInvariantLoad(AA)) 1447 // Otherwise, this is a real load. If there is a store between the load and 1448 // end of block, we can't move it. 1449 return !SawStore; 1450 1451 return true; 1452 } 1453 1454 /// hasOrderedMemoryRef - Return true if this instruction may have an ordered 1455 /// or volatile memory reference, or if the information describing the memory 1456 /// reference is not available. Return false if it is known to have no ordered 1457 /// memory references. 1458 bool MachineInstr::hasOrderedMemoryRef() const { 1459 // An instruction known never to access memory won't have a volatile access. 1460 if (!mayStore() && 1461 !mayLoad() && 1462 !isCall() && 1463 !hasUnmodeledSideEffects()) 1464 return false; 1465 1466 // Otherwise, if the instruction has no memory reference information, 1467 // conservatively assume it wasn't preserved. 1468 if (memoperands_empty()) 1469 return true; 1470 1471 // Check the memory reference information for ordered references. 1472 for (mmo_iterator I = memoperands_begin(), E = memoperands_end(); I != E; ++I) 1473 if (!(*I)->isUnordered()) 1474 return true; 1475 1476 return false; 1477 } 1478 1479 /// isInvariantLoad - Return true if this instruction is loading from a 1480 /// location whose value is invariant across the function. For example, 1481 /// loading a value from the constant pool or from the argument area 1482 /// of a function if it does not change. This should only return true of 1483 /// *all* loads the instruction does are invariant (if it does multiple loads). 1484 bool MachineInstr::isInvariantLoad(AliasAnalysis *AA) const { 1485 // If the instruction doesn't load at all, it isn't an invariant load. 1486 if (!mayLoad()) 1487 return false; 1488 1489 // If the instruction has lost its memoperands, conservatively assume that 1490 // it may not be an invariant load. 1491 if (memoperands_empty()) 1492 return false; 1493 1494 const MachineFrameInfo *MFI = getParent()->getParent()->getFrameInfo(); 1495 1496 for (mmo_iterator I = memoperands_begin(), 1497 E = memoperands_end(); I != E; ++I) { 1498 if ((*I)->isVolatile()) return false; 1499 if ((*I)->isStore()) return false; 1500 if ((*I)->isInvariant()) return true; 1501 1502 1503 // A load from a constant PseudoSourceValue is invariant. 1504 if (const PseudoSourceValue *PSV = (*I)->getPseudoValue()) 1505 if (PSV->isConstant(MFI)) 1506 continue; 1507 1508 if (const Value *V = (*I)->getValue()) { 1509 // If we have an AliasAnalysis, ask it whether the memory is constant. 1510 if (AA && 1511 AA->pointsToConstantMemory( 1512 MemoryLocation(V, (*I)->getSize(), (*I)->getAAInfo()))) 1513 continue; 1514 } 1515 1516 // Otherwise assume conservatively. 1517 return false; 1518 } 1519 1520 // Everything checks out. 1521 return true; 1522 } 1523 1524 /// isConstantValuePHI - If the specified instruction is a PHI that always 1525 /// merges together the same virtual register, return the register, otherwise 1526 /// return 0. 1527 unsigned MachineInstr::isConstantValuePHI() const { 1528 if (!isPHI()) 1529 return 0; 1530 assert(getNumOperands() >= 3 && 1531 "It's illegal to have a PHI without source operands"); 1532 1533 unsigned Reg = getOperand(1).getReg(); 1534 for (unsigned i = 3, e = getNumOperands(); i < e; i += 2) 1535 if (getOperand(i).getReg() != Reg) 1536 return 0; 1537 return Reg; 1538 } 1539 1540 bool MachineInstr::hasUnmodeledSideEffects() const { 1541 if (hasProperty(MCID::UnmodeledSideEffects)) 1542 return true; 1543 if (isInlineAsm()) { 1544 unsigned ExtraInfo = getOperand(InlineAsm::MIOp_ExtraInfo).getImm(); 1545 if (ExtraInfo & InlineAsm::Extra_HasSideEffects) 1546 return true; 1547 } 1548 1549 return false; 1550 } 1551 1552 bool MachineInstr::isLoadFoldBarrier() const { 1553 return mayStore() || isCall() || hasUnmodeledSideEffects(); 1554 } 1555 1556 /// allDefsAreDead - Return true if all the defs of this instruction are dead. 1557 /// 1558 bool MachineInstr::allDefsAreDead() const { 1559 for (const MachineOperand &MO : operands()) { 1560 if (!MO.isReg() || MO.isUse()) 1561 continue; 1562 if (!MO.isDead()) 1563 return false; 1564 } 1565 return true; 1566 } 1567 1568 /// copyImplicitOps - Copy implicit register operands from specified 1569 /// instruction to this instruction. 1570 void MachineInstr::copyImplicitOps(MachineFunction &MF, 1571 const MachineInstr *MI) { 1572 for (unsigned i = MI->getDesc().getNumOperands(), e = MI->getNumOperands(); 1573 i != e; ++i) { 1574 const MachineOperand &MO = MI->getOperand(i); 1575 if ((MO.isReg() && MO.isImplicit()) || MO.isRegMask()) 1576 addOperand(MF, MO); 1577 } 1578 } 1579 1580 void MachineInstr::dump() const { 1581 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) 1582 dbgs() << " " << *this; 1583 #endif 1584 } 1585 1586 void MachineInstr::print(raw_ostream &OS, bool SkipOpers) const { 1587 const Module *M = nullptr; 1588 if (const MachineBasicBlock *MBB = getParent()) 1589 if (const MachineFunction *MF = MBB->getParent()) 1590 M = MF->getFunction()->getParent(); 1591 1592 ModuleSlotTracker MST(M); 1593 print(OS, MST, SkipOpers); 1594 } 1595 1596 void MachineInstr::print(raw_ostream &OS, ModuleSlotTracker &MST, 1597 bool SkipOpers) const { 1598 // We can be a bit tidier if we know the MachineFunction. 1599 const MachineFunction *MF = nullptr; 1600 const TargetRegisterInfo *TRI = nullptr; 1601 const MachineRegisterInfo *MRI = nullptr; 1602 const TargetInstrInfo *TII = nullptr; 1603 if (const MachineBasicBlock *MBB = getParent()) { 1604 MF = MBB->getParent(); 1605 if (MF) { 1606 MRI = &MF->getRegInfo(); 1607 TRI = MF->getSubtarget().getRegisterInfo(); 1608 TII = MF->getSubtarget().getInstrInfo(); 1609 } 1610 } 1611 1612 // Save a list of virtual registers. 1613 SmallVector<unsigned, 8> VirtRegs; 1614 1615 // Print explicitly defined operands on the left of an assignment syntax. 1616 unsigned StartOp = 0, e = getNumOperands(); 1617 for (; StartOp < e && getOperand(StartOp).isReg() && 1618 getOperand(StartOp).isDef() && 1619 !getOperand(StartOp).isImplicit(); 1620 ++StartOp) { 1621 if (StartOp != 0) OS << ", "; 1622 getOperand(StartOp).print(OS, MST, TRI); 1623 unsigned Reg = getOperand(StartOp).getReg(); 1624 if (TargetRegisterInfo::isVirtualRegister(Reg)) 1625 VirtRegs.push_back(Reg); 1626 } 1627 1628 if (StartOp != 0) 1629 OS << " = "; 1630 1631 // Print the opcode name. 1632 if (TII) 1633 OS << TII->getName(getOpcode()); 1634 else 1635 OS << "UNKNOWN"; 1636 1637 if (SkipOpers) 1638 return; 1639 1640 // Print the rest of the operands. 1641 bool OmittedAnyCallClobbers = false; 1642 bool FirstOp = true; 1643 unsigned AsmDescOp = ~0u; 1644 unsigned AsmOpCount = 0; 1645 1646 if (isInlineAsm() && e >= InlineAsm::MIOp_FirstOperand) { 1647 // Print asm string. 1648 OS << " "; 1649 getOperand(InlineAsm::MIOp_AsmString).print(OS, MST, TRI); 1650 1651 // Print HasSideEffects, MayLoad, MayStore, IsAlignStack 1652 unsigned ExtraInfo = getOperand(InlineAsm::MIOp_ExtraInfo).getImm(); 1653 if (ExtraInfo & InlineAsm::Extra_HasSideEffects) 1654 OS << " [sideeffect]"; 1655 if (ExtraInfo & InlineAsm::Extra_MayLoad) 1656 OS << " [mayload]"; 1657 if (ExtraInfo & InlineAsm::Extra_MayStore) 1658 OS << " [maystore]"; 1659 if (ExtraInfo & InlineAsm::Extra_IsAlignStack) 1660 OS << " [alignstack]"; 1661 if (getInlineAsmDialect() == InlineAsm::AD_ATT) 1662 OS << " [attdialect]"; 1663 if (getInlineAsmDialect() == InlineAsm::AD_Intel) 1664 OS << " [inteldialect]"; 1665 1666 StartOp = AsmDescOp = InlineAsm::MIOp_FirstOperand; 1667 FirstOp = false; 1668 } 1669 1670 for (unsigned i = StartOp, e = getNumOperands(); i != e; ++i) { 1671 const MachineOperand &MO = getOperand(i); 1672 1673 if (MO.isReg() && TargetRegisterInfo::isVirtualRegister(MO.getReg())) 1674 VirtRegs.push_back(MO.getReg()); 1675 1676 // Omit call-clobbered registers which aren't used anywhere. This makes 1677 // call instructions much less noisy on targets where calls clobber lots 1678 // of registers. Don't rely on MO.isDead() because we may be called before 1679 // LiveVariables is run, or we may be looking at a non-allocatable reg. 1680 if (MRI && isCall() && 1681 MO.isReg() && MO.isImplicit() && MO.isDef()) { 1682 unsigned Reg = MO.getReg(); 1683 if (TargetRegisterInfo::isPhysicalRegister(Reg)) { 1684 if (MRI->use_empty(Reg)) { 1685 bool HasAliasLive = false; 1686 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) { 1687 unsigned AliasReg = *AI; 1688 if (!MRI->use_empty(AliasReg)) { 1689 HasAliasLive = true; 1690 break; 1691 } 1692 } 1693 if (!HasAliasLive) { 1694 OmittedAnyCallClobbers = true; 1695 continue; 1696 } 1697 } 1698 } 1699 } 1700 1701 if (FirstOp) FirstOp = false; else OS << ","; 1702 OS << " "; 1703 if (i < getDesc().NumOperands) { 1704 const MCOperandInfo &MCOI = getDesc().OpInfo[i]; 1705 if (MCOI.isPredicate()) 1706 OS << "pred:"; 1707 if (MCOI.isOptionalDef()) 1708 OS << "opt:"; 1709 } 1710 if (isDebugValue() && MO.isMetadata()) { 1711 // Pretty print DBG_VALUE instructions. 1712 auto *DIV = dyn_cast<DILocalVariable>(MO.getMetadata()); 1713 if (DIV && !DIV->getName().empty()) 1714 OS << "!\"" << DIV->getName() << '\"'; 1715 else 1716 MO.print(OS, MST, TRI); 1717 } else if (TRI && (isInsertSubreg() || isRegSequence()) && MO.isImm()) { 1718 OS << TRI->getSubRegIndexName(MO.getImm()); 1719 } else if (i == AsmDescOp && MO.isImm()) { 1720 // Pretty print the inline asm operand descriptor. 1721 OS << '$' << AsmOpCount++; 1722 unsigned Flag = MO.getImm(); 1723 switch (InlineAsm::getKind(Flag)) { 1724 case InlineAsm::Kind_RegUse: OS << ":[reguse"; break; 1725 case InlineAsm::Kind_RegDef: OS << ":[regdef"; break; 1726 case InlineAsm::Kind_RegDefEarlyClobber: OS << ":[regdef-ec"; break; 1727 case InlineAsm::Kind_Clobber: OS << ":[clobber"; break; 1728 case InlineAsm::Kind_Imm: OS << ":[imm"; break; 1729 case InlineAsm::Kind_Mem: OS << ":[mem"; break; 1730 default: OS << ":[??" << InlineAsm::getKind(Flag); break; 1731 } 1732 1733 unsigned RCID = 0; 1734 if (InlineAsm::hasRegClassConstraint(Flag, RCID)) { 1735 if (TRI) { 1736 OS << ':' << TRI->getRegClassName(TRI->getRegClass(RCID)); 1737 } else 1738 OS << ":RC" << RCID; 1739 } 1740 1741 unsigned TiedTo = 0; 1742 if (InlineAsm::isUseOperandTiedToDef(Flag, TiedTo)) 1743 OS << " tiedto:$" << TiedTo; 1744 1745 OS << ']'; 1746 1747 // Compute the index of the next operand descriptor. 1748 AsmDescOp += 1 + InlineAsm::getNumOperandRegisters(Flag); 1749 } else 1750 MO.print(OS, MST, TRI); 1751 } 1752 1753 // Briefly indicate whether any call clobbers were omitted. 1754 if (OmittedAnyCallClobbers) { 1755 if (!FirstOp) OS << ","; 1756 OS << " ..."; 1757 } 1758 1759 bool HaveSemi = false; 1760 const unsigned PrintableFlags = FrameSetup | FrameDestroy; 1761 if (Flags & PrintableFlags) { 1762 if (!HaveSemi) { 1763 OS << ";"; 1764 HaveSemi = true; 1765 } 1766 OS << " flags: "; 1767 1768 if (Flags & FrameSetup) 1769 OS << "FrameSetup"; 1770 1771 if (Flags & FrameDestroy) 1772 OS << "FrameDestroy"; 1773 } 1774 1775 if (!memoperands_empty()) { 1776 if (!HaveSemi) { 1777 OS << ";"; 1778 HaveSemi = true; 1779 } 1780 1781 OS << " mem:"; 1782 for (mmo_iterator i = memoperands_begin(), e = memoperands_end(); 1783 i != e; ++i) { 1784 (*i)->print(OS, MST); 1785 if (std::next(i) != e) 1786 OS << " "; 1787 } 1788 } 1789 1790 // Print the regclass of any virtual registers encountered. 1791 if (MRI && !VirtRegs.empty()) { 1792 if (!HaveSemi) { 1793 OS << ";"; 1794 HaveSemi = true; 1795 } 1796 for (unsigned i = 0; i != VirtRegs.size(); ++i) { 1797 const TargetRegisterClass *RC = MRI->getRegClass(VirtRegs[i]); 1798 OS << " " << TRI->getRegClassName(RC) 1799 << ':' << PrintReg(VirtRegs[i]); 1800 for (unsigned j = i+1; j != VirtRegs.size();) { 1801 if (MRI->getRegClass(VirtRegs[j]) != RC) { 1802 ++j; 1803 continue; 1804 } 1805 if (VirtRegs[i] != VirtRegs[j]) 1806 OS << "," << PrintReg(VirtRegs[j]); 1807 VirtRegs.erase(VirtRegs.begin()+j); 1808 } 1809 } 1810 } 1811 1812 // Print debug location information. 1813 if (isDebugValue() && getOperand(e - 2).isMetadata()) { 1814 if (!HaveSemi) 1815 OS << ";"; 1816 auto *DV = cast<DILocalVariable>(getOperand(e - 2).getMetadata()); 1817 OS << " line no:" << DV->getLine(); 1818 if (auto *InlinedAt = debugLoc->getInlinedAt()) { 1819 DebugLoc InlinedAtDL(InlinedAt); 1820 if (InlinedAtDL && MF) { 1821 OS << " inlined @[ "; 1822 InlinedAtDL.print(OS); 1823 OS << " ]"; 1824 } 1825 } 1826 if (isIndirectDebugValue()) 1827 OS << " indirect"; 1828 } else if (debugLoc && MF) { 1829 if (!HaveSemi) 1830 OS << ";"; 1831 OS << " dbg:"; 1832 debugLoc.print(OS); 1833 } 1834 1835 OS << '\n'; 1836 } 1837 1838 bool MachineInstr::addRegisterKilled(unsigned IncomingReg, 1839 const TargetRegisterInfo *RegInfo, 1840 bool AddIfNotFound) { 1841 bool isPhysReg = TargetRegisterInfo::isPhysicalRegister(IncomingReg); 1842 bool hasAliases = isPhysReg && 1843 MCRegAliasIterator(IncomingReg, RegInfo, false).isValid(); 1844 bool Found = false; 1845 SmallVector<unsigned,4> DeadOps; 1846 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { 1847 MachineOperand &MO = getOperand(i); 1848 if (!MO.isReg() || !MO.isUse() || MO.isUndef()) 1849 continue; 1850 unsigned Reg = MO.getReg(); 1851 if (!Reg) 1852 continue; 1853 1854 if (Reg == IncomingReg) { 1855 if (!Found) { 1856 if (MO.isKill()) 1857 // The register is already marked kill. 1858 return true; 1859 if (isPhysReg && isRegTiedToDefOperand(i)) 1860 // Two-address uses of physregs must not be marked kill. 1861 return true; 1862 MO.setIsKill(); 1863 Found = true; 1864 } 1865 } else if (hasAliases && MO.isKill() && 1866 TargetRegisterInfo::isPhysicalRegister(Reg)) { 1867 // A super-register kill already exists. 1868 if (RegInfo->isSuperRegister(IncomingReg, Reg)) 1869 return true; 1870 if (RegInfo->isSubRegister(IncomingReg, Reg)) 1871 DeadOps.push_back(i); 1872 } 1873 } 1874 1875 // Trim unneeded kill operands. 1876 while (!DeadOps.empty()) { 1877 unsigned OpIdx = DeadOps.back(); 1878 if (getOperand(OpIdx).isImplicit()) 1879 RemoveOperand(OpIdx); 1880 else 1881 getOperand(OpIdx).setIsKill(false); 1882 DeadOps.pop_back(); 1883 } 1884 1885 // If not found, this means an alias of one of the operands is killed. Add a 1886 // new implicit operand if required. 1887 if (!Found && AddIfNotFound) { 1888 addOperand(MachineOperand::CreateReg(IncomingReg, 1889 false /*IsDef*/, 1890 true /*IsImp*/, 1891 true /*IsKill*/)); 1892 return true; 1893 } 1894 return Found; 1895 } 1896 1897 void MachineInstr::clearRegisterKills(unsigned Reg, 1898 const TargetRegisterInfo *RegInfo) { 1899 if (!TargetRegisterInfo::isPhysicalRegister(Reg)) 1900 RegInfo = nullptr; 1901 for (MachineOperand &MO : operands()) { 1902 if (!MO.isReg() || !MO.isUse() || !MO.isKill()) 1903 continue; 1904 unsigned OpReg = MO.getReg(); 1905 if (OpReg == Reg || (RegInfo && RegInfo->isSuperRegister(Reg, OpReg))) 1906 MO.setIsKill(false); 1907 } 1908 } 1909 1910 bool MachineInstr::addRegisterDead(unsigned Reg, 1911 const TargetRegisterInfo *RegInfo, 1912 bool AddIfNotFound) { 1913 bool isPhysReg = TargetRegisterInfo::isPhysicalRegister(Reg); 1914 bool hasAliases = isPhysReg && 1915 MCRegAliasIterator(Reg, RegInfo, false).isValid(); 1916 bool Found = false; 1917 SmallVector<unsigned,4> DeadOps; 1918 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { 1919 MachineOperand &MO = getOperand(i); 1920 if (!MO.isReg() || !MO.isDef()) 1921 continue; 1922 unsigned MOReg = MO.getReg(); 1923 if (!MOReg) 1924 continue; 1925 1926 if (MOReg == Reg) { 1927 MO.setIsDead(); 1928 Found = true; 1929 } else if (hasAliases && MO.isDead() && 1930 TargetRegisterInfo::isPhysicalRegister(MOReg)) { 1931 // There exists a super-register that's marked dead. 1932 if (RegInfo->isSuperRegister(Reg, MOReg)) 1933 return true; 1934 if (RegInfo->isSubRegister(Reg, MOReg)) 1935 DeadOps.push_back(i); 1936 } 1937 } 1938 1939 // Trim unneeded dead operands. 1940 while (!DeadOps.empty()) { 1941 unsigned OpIdx = DeadOps.back(); 1942 if (getOperand(OpIdx).isImplicit()) 1943 RemoveOperand(OpIdx); 1944 else 1945 getOperand(OpIdx).setIsDead(false); 1946 DeadOps.pop_back(); 1947 } 1948 1949 // If not found, this means an alias of one of the operands is dead. Add a 1950 // new implicit operand if required. 1951 if (Found || !AddIfNotFound) 1952 return Found; 1953 1954 addOperand(MachineOperand::CreateReg(Reg, 1955 true /*IsDef*/, 1956 true /*IsImp*/, 1957 false /*IsKill*/, 1958 true /*IsDead*/)); 1959 return true; 1960 } 1961 1962 void MachineInstr::clearRegisterDeads(unsigned Reg) { 1963 for (MachineOperand &MO : operands()) { 1964 if (!MO.isReg() || !MO.isDef() || MO.getReg() != Reg) 1965 continue; 1966 MO.setIsDead(false); 1967 } 1968 } 1969 1970 void MachineInstr::setRegisterDefReadUndef(unsigned Reg, bool IsUndef) { 1971 for (MachineOperand &MO : operands()) { 1972 if (!MO.isReg() || !MO.isDef() || MO.getReg() != Reg || MO.getSubReg() == 0) 1973 continue; 1974 MO.setIsUndef(IsUndef); 1975 } 1976 } 1977 1978 void MachineInstr::addRegisterDefined(unsigned Reg, 1979 const TargetRegisterInfo *RegInfo) { 1980 if (TargetRegisterInfo::isPhysicalRegister(Reg)) { 1981 MachineOperand *MO = findRegisterDefOperand(Reg, false, RegInfo); 1982 if (MO) 1983 return; 1984 } else { 1985 for (const MachineOperand &MO : operands()) { 1986 if (MO.isReg() && MO.getReg() == Reg && MO.isDef() && 1987 MO.getSubReg() == 0) 1988 return; 1989 } 1990 } 1991 addOperand(MachineOperand::CreateReg(Reg, 1992 true /*IsDef*/, 1993 true /*IsImp*/)); 1994 } 1995 1996 void MachineInstr::setPhysRegsDeadExcept(ArrayRef<unsigned> UsedRegs, 1997 const TargetRegisterInfo &TRI) { 1998 bool HasRegMask = false; 1999 for (MachineOperand &MO : operands()) { 2000 if (MO.isRegMask()) { 2001 HasRegMask = true; 2002 continue; 2003 } 2004 if (!MO.isReg() || !MO.isDef()) continue; 2005 unsigned Reg = MO.getReg(); 2006 if (!TargetRegisterInfo::isPhysicalRegister(Reg)) continue; 2007 // If there are no uses, including partial uses, the def is dead. 2008 if (std::none_of(UsedRegs.begin(), UsedRegs.end(), 2009 [&](unsigned Use) { return TRI.regsOverlap(Use, Reg); })) 2010 MO.setIsDead(); 2011 } 2012 2013 // This is a call with a register mask operand. 2014 // Mask clobbers are always dead, so add defs for the non-dead defines. 2015 if (HasRegMask) 2016 for (ArrayRef<unsigned>::iterator I = UsedRegs.begin(), E = UsedRegs.end(); 2017 I != E; ++I) 2018 addRegisterDefined(*I, &TRI); 2019 } 2020 2021 unsigned 2022 MachineInstrExpressionTrait::getHashValue(const MachineInstr* const &MI) { 2023 // Build up a buffer of hash code components. 2024 SmallVector<size_t, 8> HashComponents; 2025 HashComponents.reserve(MI->getNumOperands() + 1); 2026 HashComponents.push_back(MI->getOpcode()); 2027 for (const MachineOperand &MO : MI->operands()) { 2028 if (MO.isReg() && MO.isDef() && 2029 TargetRegisterInfo::isVirtualRegister(MO.getReg())) 2030 continue; // Skip virtual register defs. 2031 2032 HashComponents.push_back(hash_value(MO)); 2033 } 2034 return hash_combine_range(HashComponents.begin(), HashComponents.end()); 2035 } 2036 2037 void MachineInstr::emitError(StringRef Msg) const { 2038 // Find the source location cookie. 2039 unsigned LocCookie = 0; 2040 const MDNode *LocMD = nullptr; 2041 for (unsigned i = getNumOperands(); i != 0; --i) { 2042 if (getOperand(i-1).isMetadata() && 2043 (LocMD = getOperand(i-1).getMetadata()) && 2044 LocMD->getNumOperands() != 0) { 2045 if (const ConstantInt *CI = 2046 mdconst::dyn_extract<ConstantInt>(LocMD->getOperand(0))) { 2047 LocCookie = CI->getZExtValue(); 2048 break; 2049 } 2050 } 2051 } 2052 2053 if (const MachineBasicBlock *MBB = getParent()) 2054 if (const MachineFunction *MF = MBB->getParent()) 2055 return MF->getMMI().getModule()->getContext().emitError(LocCookie, Msg); 2056 report_fatal_error(Msg); 2057 } 2058