1 //===- lib/Codegen/MachineRegisterInfo.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 // Implementation of the MachineRegisterInfo class. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "llvm/CodeGen/MachineRegisterInfo.h" 15 #include "llvm/ADT/iterator_range.h" 16 #include "llvm/CodeGen/LowLevelType.h" 17 #include "llvm/CodeGen/MachineBasicBlock.h" 18 #include "llvm/CodeGen/MachineFunction.h" 19 #include "llvm/CodeGen/MachineInstr.h" 20 #include "llvm/CodeGen/MachineInstrBuilder.h" 21 #include "llvm/CodeGen/MachineOperand.h" 22 #include "llvm/CodeGen/TargetInstrInfo.h" 23 #include "llvm/CodeGen/TargetRegisterInfo.h" 24 #include "llvm/CodeGen/TargetSubtargetInfo.h" 25 #include "llvm/Config/llvm-config.h" 26 #include "llvm/IR/Attributes.h" 27 #include "llvm/IR/DebugLoc.h" 28 #include "llvm/IR/Function.h" 29 #include "llvm/MC/MCRegisterInfo.h" 30 #include "llvm/Support/Casting.h" 31 #include "llvm/Support/CommandLine.h" 32 #include "llvm/Support/Compiler.h" 33 #include "llvm/Support/ErrorHandling.h" 34 #include "llvm/Support/raw_ostream.h" 35 #include <cassert> 36 37 using namespace llvm; 38 39 static cl::opt<bool> EnableSubRegLiveness("enable-subreg-liveness", cl::Hidden, 40 cl::init(true), cl::desc("Enable subregister liveness tracking.")); 41 42 // Pin the vtable to this file. 43 void MachineRegisterInfo::Delegate::anchor() {} 44 45 MachineRegisterInfo::MachineRegisterInfo(MachineFunction *MF) 46 : MF(MF), TracksSubRegLiveness(MF->getSubtarget().enableSubRegLiveness() && 47 EnableSubRegLiveness), 48 IsUpdatedCSRsInitialized(false) { 49 unsigned NumRegs = getTargetRegisterInfo()->getNumRegs(); 50 VRegInfo.reserve(256); 51 RegAllocHints.reserve(256); 52 UsedPhysRegMask.resize(NumRegs); 53 PhysRegUseDefLists.reset(new MachineOperand*[NumRegs]()); 54 } 55 56 /// setRegClass - Set the register class of the specified virtual register. 57 /// 58 void 59 MachineRegisterInfo::setRegClass(unsigned Reg, const TargetRegisterClass *RC) { 60 assert(RC && RC->isAllocatable() && "Invalid RC for virtual register"); 61 VRegInfo[Reg].first = RC; 62 } 63 64 void MachineRegisterInfo::setRegBank(unsigned Reg, 65 const RegisterBank &RegBank) { 66 VRegInfo[Reg].first = &RegBank; 67 } 68 69 static const TargetRegisterClass * 70 constrainRegClass(MachineRegisterInfo &MRI, unsigned Reg, 71 const TargetRegisterClass *OldRC, 72 const TargetRegisterClass *RC, unsigned MinNumRegs) { 73 if (OldRC == RC) 74 return RC; 75 const TargetRegisterClass *NewRC = 76 MRI.getTargetRegisterInfo()->getCommonSubClass(OldRC, RC); 77 if (!NewRC || NewRC == OldRC) 78 return NewRC; 79 if (NewRC->getNumRegs() < MinNumRegs) 80 return nullptr; 81 MRI.setRegClass(Reg, NewRC); 82 return NewRC; 83 } 84 85 const TargetRegisterClass * 86 MachineRegisterInfo::constrainRegClass(unsigned Reg, 87 const TargetRegisterClass *RC, 88 unsigned MinNumRegs) { 89 return ::constrainRegClass(*this, Reg, getRegClass(Reg), RC, MinNumRegs); 90 } 91 92 bool 93 MachineRegisterInfo::constrainRegAttrs(unsigned Reg, 94 unsigned ConstrainingReg, 95 unsigned MinNumRegs) { 96 auto const *OldRC = getRegClassOrNull(Reg); 97 auto const *RC = getRegClassOrNull(ConstrainingReg); 98 // A virtual register at any point must have either a low-level type 99 // or a class assigned, but not both. The only exception is the internals of 100 // GlobalISel's instruction selection pass, which is allowed to temporarily 101 // introduce registers with types and classes both. 102 assert((OldRC || getType(Reg).isValid()) && "Reg has neither class nor type"); 103 assert((!OldRC || !getType(Reg).isValid()) && "Reg has class and type both"); 104 assert((RC || getType(ConstrainingReg).isValid()) && 105 "ConstrainingReg has neither class nor type"); 106 assert((!RC || !getType(ConstrainingReg).isValid()) && 107 "ConstrainingReg has class and type both"); 108 if (OldRC && RC) 109 return ::constrainRegClass(*this, Reg, OldRC, RC, MinNumRegs); 110 // If one of the virtual registers is generic (used in generic machine 111 // instructions, has a low-level type, doesn't have a class), and the other is 112 // concrete (used in target specific instructions, doesn't have a low-level 113 // type, has a class), we can not unify them. 114 if (OldRC || RC) 115 return false; 116 // At this point, both registers are guaranteed to have a valid low-level 117 // type, and they must agree. 118 if (getType(Reg) != getType(ConstrainingReg)) 119 return false; 120 auto const *OldRB = getRegBankOrNull(Reg); 121 auto const *RB = getRegBankOrNull(ConstrainingReg); 122 if (OldRB) 123 return !RB || RB == OldRB; 124 if (RB) 125 setRegBank(Reg, *RB); 126 return true; 127 } 128 129 bool 130 MachineRegisterInfo::recomputeRegClass(unsigned Reg) { 131 const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo(); 132 const TargetRegisterClass *OldRC = getRegClass(Reg); 133 const TargetRegisterClass *NewRC = 134 getTargetRegisterInfo()->getLargestLegalSuperClass(OldRC, *MF); 135 136 // Stop early if there is no room to grow. 137 if (NewRC == OldRC) 138 return false; 139 140 // Accumulate constraints from all uses. 141 for (MachineOperand &MO : reg_nodbg_operands(Reg)) { 142 // Apply the effect of the given operand to NewRC. 143 MachineInstr *MI = MO.getParent(); 144 unsigned OpNo = &MO - &MI->getOperand(0); 145 NewRC = MI->getRegClassConstraintEffect(OpNo, NewRC, TII, 146 getTargetRegisterInfo()); 147 if (!NewRC || NewRC == OldRC) 148 return false; 149 } 150 setRegClass(Reg, NewRC); 151 return true; 152 } 153 154 unsigned MachineRegisterInfo::createIncompleteVirtualRegister(StringRef Name) { 155 unsigned Reg = TargetRegisterInfo::index2VirtReg(getNumVirtRegs()); 156 VRegInfo.grow(Reg); 157 RegAllocHints.grow(Reg); 158 insertVRegByName(Name, Reg); 159 return Reg; 160 } 161 162 /// createVirtualRegister - Create and return a new virtual register in the 163 /// function with the specified register class. 164 /// 165 unsigned 166 MachineRegisterInfo::createVirtualRegister(const TargetRegisterClass *RegClass, 167 StringRef Name) { 168 assert(RegClass && "Cannot create register without RegClass!"); 169 assert(RegClass->isAllocatable() && 170 "Virtual register RegClass must be allocatable."); 171 172 // New virtual register number. 173 unsigned Reg = createIncompleteVirtualRegister(Name); 174 VRegInfo[Reg].first = RegClass; 175 if (TheDelegate) 176 TheDelegate->MRI_NoteNewVirtualRegister(Reg); 177 return Reg; 178 } 179 180 unsigned MachineRegisterInfo::cloneVirtualRegister(unsigned VReg, 181 StringRef Name) { 182 unsigned Reg = createIncompleteVirtualRegister(Name); 183 VRegInfo[Reg].first = VRegInfo[VReg].first; 184 setType(Reg, getType(VReg)); 185 if (TheDelegate) 186 TheDelegate->MRI_NoteNewVirtualRegister(Reg); 187 return Reg; 188 } 189 190 void MachineRegisterInfo::setType(unsigned VReg, LLT Ty) { 191 // Check that VReg doesn't have a class. 192 assert((getRegClassOrRegBank(VReg).isNull() || 193 !getRegClassOrRegBank(VReg).is<const TargetRegisterClass *>()) && 194 "Can't set the size of a non-generic virtual register"); 195 VRegToType.grow(VReg); 196 VRegToType[VReg] = Ty; 197 } 198 199 unsigned 200 MachineRegisterInfo::createGenericVirtualRegister(LLT Ty, StringRef Name) { 201 // New virtual register number. 202 unsigned Reg = createIncompleteVirtualRegister(Name); 203 // FIXME: Should we use a dummy register class? 204 VRegInfo[Reg].first = static_cast<RegisterBank *>(nullptr); 205 setType(Reg, Ty); 206 if (TheDelegate) 207 TheDelegate->MRI_NoteNewVirtualRegister(Reg); 208 return Reg; 209 } 210 211 void MachineRegisterInfo::clearVirtRegTypes() { VRegToType.clear(); } 212 213 /// clearVirtRegs - Remove all virtual registers (after physreg assignment). 214 void MachineRegisterInfo::clearVirtRegs() { 215 #ifndef NDEBUG 216 for (unsigned i = 0, e = getNumVirtRegs(); i != e; ++i) { 217 unsigned Reg = TargetRegisterInfo::index2VirtReg(i); 218 if (!VRegInfo[Reg].second) 219 continue; 220 verifyUseList(Reg); 221 llvm_unreachable("Remaining virtual register operands"); 222 } 223 #endif 224 VRegInfo.clear(); 225 for (auto &I : LiveIns) 226 I.second = 0; 227 } 228 229 void MachineRegisterInfo::verifyUseList(unsigned Reg) const { 230 #ifndef NDEBUG 231 bool Valid = true; 232 for (MachineOperand &M : reg_operands(Reg)) { 233 MachineOperand *MO = &M; 234 MachineInstr *MI = MO->getParent(); 235 if (!MI) { 236 errs() << printReg(Reg, getTargetRegisterInfo()) 237 << " use list MachineOperand " << MO 238 << " has no parent instruction.\n"; 239 Valid = false; 240 continue; 241 } 242 MachineOperand *MO0 = &MI->getOperand(0); 243 unsigned NumOps = MI->getNumOperands(); 244 if (!(MO >= MO0 && MO < MO0+NumOps)) { 245 errs() << printReg(Reg, getTargetRegisterInfo()) 246 << " use list MachineOperand " << MO 247 << " doesn't belong to parent MI: " << *MI; 248 Valid = false; 249 } 250 if (!MO->isReg()) { 251 errs() << printReg(Reg, getTargetRegisterInfo()) 252 << " MachineOperand " << MO << ": " << *MO 253 << " is not a register\n"; 254 Valid = false; 255 } 256 if (MO->getReg() != Reg) { 257 errs() << printReg(Reg, getTargetRegisterInfo()) 258 << " use-list MachineOperand " << MO << ": " 259 << *MO << " is the wrong register\n"; 260 Valid = false; 261 } 262 } 263 assert(Valid && "Invalid use list"); 264 #endif 265 } 266 267 void MachineRegisterInfo::verifyUseLists() const { 268 #ifndef NDEBUG 269 for (unsigned i = 0, e = getNumVirtRegs(); i != e; ++i) 270 verifyUseList(TargetRegisterInfo::index2VirtReg(i)); 271 for (unsigned i = 1, e = getTargetRegisterInfo()->getNumRegs(); i != e; ++i) 272 verifyUseList(i); 273 #endif 274 } 275 276 /// Add MO to the linked list of operands for its register. 277 void MachineRegisterInfo::addRegOperandToUseList(MachineOperand *MO) { 278 assert(!MO->isOnRegUseList() && "Already on list"); 279 MachineOperand *&HeadRef = getRegUseDefListHead(MO->getReg()); 280 MachineOperand *const Head = HeadRef; 281 282 // Head points to the first list element. 283 // Next is NULL on the last list element. 284 // Prev pointers are circular, so Head->Prev == Last. 285 286 // Head is NULL for an empty list. 287 if (!Head) { 288 MO->Contents.Reg.Prev = MO; 289 MO->Contents.Reg.Next = nullptr; 290 HeadRef = MO; 291 return; 292 } 293 assert(MO->getReg() == Head->getReg() && "Different regs on the same list!"); 294 295 // Insert MO between Last and Head in the circular Prev chain. 296 MachineOperand *Last = Head->Contents.Reg.Prev; 297 assert(Last && "Inconsistent use list"); 298 assert(MO->getReg() == Last->getReg() && "Different regs on the same list!"); 299 Head->Contents.Reg.Prev = MO; 300 MO->Contents.Reg.Prev = Last; 301 302 // Def operands always precede uses. This allows def_iterator to stop early. 303 // Insert def operands at the front, and use operands at the back. 304 if (MO->isDef()) { 305 // Insert def at the front. 306 MO->Contents.Reg.Next = Head; 307 HeadRef = MO; 308 } else { 309 // Insert use at the end. 310 MO->Contents.Reg.Next = nullptr; 311 Last->Contents.Reg.Next = MO; 312 } 313 } 314 315 /// Remove MO from its use-def list. 316 void MachineRegisterInfo::removeRegOperandFromUseList(MachineOperand *MO) { 317 assert(MO->isOnRegUseList() && "Operand not on use list"); 318 MachineOperand *&HeadRef = getRegUseDefListHead(MO->getReg()); 319 MachineOperand *const Head = HeadRef; 320 assert(Head && "List already empty"); 321 322 // Unlink this from the doubly linked list of operands. 323 MachineOperand *Next = MO->Contents.Reg.Next; 324 MachineOperand *Prev = MO->Contents.Reg.Prev; 325 326 // Prev links are circular, next link is NULL instead of looping back to Head. 327 if (MO == Head) 328 HeadRef = Next; 329 else 330 Prev->Contents.Reg.Next = Next; 331 332 (Next ? Next : Head)->Contents.Reg.Prev = Prev; 333 334 MO->Contents.Reg.Prev = nullptr; 335 MO->Contents.Reg.Next = nullptr; 336 } 337 338 /// Move NumOps operands from Src to Dst, updating use-def lists as needed. 339 /// 340 /// The Dst range is assumed to be uninitialized memory. (Or it may contain 341 /// operands that won't be destroyed, which is OK because the MO destructor is 342 /// trivial anyway). 343 /// 344 /// The Src and Dst ranges may overlap. 345 void MachineRegisterInfo::moveOperands(MachineOperand *Dst, 346 MachineOperand *Src, 347 unsigned NumOps) { 348 assert(Src != Dst && NumOps && "Noop moveOperands"); 349 350 // Copy backwards if Dst is within the Src range. 351 int Stride = 1; 352 if (Dst >= Src && Dst < Src + NumOps) { 353 Stride = -1; 354 Dst += NumOps - 1; 355 Src += NumOps - 1; 356 } 357 358 // Copy one operand at a time. 359 do { 360 new (Dst) MachineOperand(*Src); 361 362 // Dst takes Src's place in the use-def chain. 363 if (Src->isReg()) { 364 MachineOperand *&Head = getRegUseDefListHead(Src->getReg()); 365 MachineOperand *Prev = Src->Contents.Reg.Prev; 366 MachineOperand *Next = Src->Contents.Reg.Next; 367 assert(Head && "List empty, but operand is chained"); 368 assert(Prev && "Operand was not on use-def list"); 369 370 // Prev links are circular, next link is NULL instead of looping back to 371 // Head. 372 if (Src == Head) 373 Head = Dst; 374 else 375 Prev->Contents.Reg.Next = Dst; 376 377 // Update Prev pointer. This also works when Src was pointing to itself 378 // in a 1-element list. In that case Head == Dst. 379 (Next ? Next : Head)->Contents.Reg.Prev = Dst; 380 } 381 382 Dst += Stride; 383 Src += Stride; 384 } while (--NumOps); 385 } 386 387 /// replaceRegWith - Replace all instances of FromReg with ToReg in the 388 /// machine function. This is like llvm-level X->replaceAllUsesWith(Y), 389 /// except that it also changes any definitions of the register as well. 390 /// If ToReg is a physical register we apply the sub register to obtain the 391 /// final/proper physical register. 392 void MachineRegisterInfo::replaceRegWith(unsigned FromReg, unsigned ToReg) { 393 assert(FromReg != ToReg && "Cannot replace a reg with itself"); 394 395 const TargetRegisterInfo *TRI = getTargetRegisterInfo(); 396 397 // TODO: This could be more efficient by bulk changing the operands. 398 for (reg_iterator I = reg_begin(FromReg), E = reg_end(); I != E; ) { 399 MachineOperand &O = *I; 400 ++I; 401 if (TargetRegisterInfo::isPhysicalRegister(ToReg)) { 402 O.substPhysReg(ToReg, *TRI); 403 } else { 404 O.setReg(ToReg); 405 } 406 } 407 } 408 409 /// getVRegDef - Return the machine instr that defines the specified virtual 410 /// register or null if none is found. This assumes that the code is in SSA 411 /// form, so there should only be one definition. 412 MachineInstr *MachineRegisterInfo::getVRegDef(unsigned Reg) const { 413 // Since we are in SSA form, we can use the first definition. 414 def_instr_iterator I = def_instr_begin(Reg); 415 assert((I.atEnd() || std::next(I) == def_instr_end()) && 416 "getVRegDef assumes a single definition or no definition"); 417 return !I.atEnd() ? &*I : nullptr; 418 } 419 420 /// getUniqueVRegDef - Return the unique machine instr that defines the 421 /// specified virtual register or null if none is found. If there are 422 /// multiple definitions or no definition, return null. 423 MachineInstr *MachineRegisterInfo::getUniqueVRegDef(unsigned Reg) const { 424 if (def_empty(Reg)) return nullptr; 425 def_instr_iterator I = def_instr_begin(Reg); 426 if (std::next(I) != def_instr_end()) 427 return nullptr; 428 return &*I; 429 } 430 431 bool MachineRegisterInfo::hasOneNonDBGUse(unsigned RegNo) const { 432 use_nodbg_iterator UI = use_nodbg_begin(RegNo); 433 if (UI == use_nodbg_end()) 434 return false; 435 return ++UI == use_nodbg_end(); 436 } 437 438 /// clearKillFlags - Iterate over all the uses of the given register and 439 /// clear the kill flag from the MachineOperand. This function is used by 440 /// optimization passes which extend register lifetimes and need only 441 /// preserve conservative kill flag information. 442 void MachineRegisterInfo::clearKillFlags(unsigned Reg) const { 443 for (MachineOperand &MO : use_operands(Reg)) 444 MO.setIsKill(false); 445 } 446 447 bool MachineRegisterInfo::isLiveIn(unsigned Reg) const { 448 for (livein_iterator I = livein_begin(), E = livein_end(); I != E; ++I) 449 if (I->first == Reg || I->second == Reg) 450 return true; 451 return false; 452 } 453 454 /// getLiveInPhysReg - If VReg is a live-in virtual register, return the 455 /// corresponding live-in physical register. 456 unsigned MachineRegisterInfo::getLiveInPhysReg(unsigned VReg) const { 457 for (livein_iterator I = livein_begin(), E = livein_end(); I != E; ++I) 458 if (I->second == VReg) 459 return I->first; 460 return 0; 461 } 462 463 /// getLiveInVirtReg - If PReg is a live-in physical register, return the 464 /// corresponding live-in physical register. 465 unsigned MachineRegisterInfo::getLiveInVirtReg(unsigned PReg) const { 466 for (livein_iterator I = livein_begin(), E = livein_end(); I != E; ++I) 467 if (I->first == PReg) 468 return I->second; 469 return 0; 470 } 471 472 /// EmitLiveInCopies - Emit copies to initialize livein virtual registers 473 /// into the given entry block. 474 void 475 MachineRegisterInfo::EmitLiveInCopies(MachineBasicBlock *EntryMBB, 476 const TargetRegisterInfo &TRI, 477 const TargetInstrInfo &TII) { 478 // Emit the copies into the top of the block. 479 for (unsigned i = 0, e = LiveIns.size(); i != e; ++i) 480 if (LiveIns[i].second) { 481 if (use_nodbg_empty(LiveIns[i].second)) { 482 // The livein has no non-dbg uses. Drop it. 483 // 484 // It would be preferable to have isel avoid creating live-in 485 // records for unused arguments in the first place, but it's 486 // complicated by the debug info code for arguments. 487 LiveIns.erase(LiveIns.begin() + i); 488 --i; --e; 489 } else { 490 // Emit a copy. 491 BuildMI(*EntryMBB, EntryMBB->begin(), DebugLoc(), 492 TII.get(TargetOpcode::COPY), LiveIns[i].second) 493 .addReg(LiveIns[i].first); 494 495 // Add the register to the entry block live-in set. 496 EntryMBB->addLiveIn(LiveIns[i].first); 497 } 498 } else { 499 // Add the register to the entry block live-in set. 500 EntryMBB->addLiveIn(LiveIns[i].first); 501 } 502 } 503 504 LaneBitmask MachineRegisterInfo::getMaxLaneMaskForVReg(unsigned Reg) const { 505 // Lane masks are only defined for vregs. 506 assert(TargetRegisterInfo::isVirtualRegister(Reg)); 507 const TargetRegisterClass &TRC = *getRegClass(Reg); 508 return TRC.getLaneMask(); 509 } 510 511 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) 512 LLVM_DUMP_METHOD void MachineRegisterInfo::dumpUses(unsigned Reg) const { 513 for (MachineInstr &I : use_instructions(Reg)) 514 I.dump(); 515 } 516 #endif 517 518 void MachineRegisterInfo::freezeReservedRegs(const MachineFunction &MF) { 519 ReservedRegs = getTargetRegisterInfo()->getReservedRegs(MF); 520 assert(ReservedRegs.size() == getTargetRegisterInfo()->getNumRegs() && 521 "Invalid ReservedRegs vector from target"); 522 } 523 524 bool MachineRegisterInfo::isConstantPhysReg(unsigned PhysReg) const { 525 assert(TargetRegisterInfo::isPhysicalRegister(PhysReg)); 526 527 const TargetRegisterInfo *TRI = getTargetRegisterInfo(); 528 if (TRI->isConstantPhysReg(PhysReg)) 529 return true; 530 531 // Check if any overlapping register is modified, or allocatable so it may be 532 // used later. 533 for (MCRegAliasIterator AI(PhysReg, TRI, true); 534 AI.isValid(); ++AI) 535 if (!def_empty(*AI) || isAllocatable(*AI)) 536 return false; 537 return true; 538 } 539 540 bool 541 MachineRegisterInfo::isCallerPreservedOrConstPhysReg(unsigned PhysReg) const { 542 const TargetRegisterInfo *TRI = getTargetRegisterInfo(); 543 return isConstantPhysReg(PhysReg) || 544 TRI->isCallerPreservedPhysReg(PhysReg, *MF); 545 } 546 547 /// markUsesInDebugValueAsUndef - Mark every DBG_VALUE referencing the 548 /// specified register as undefined which causes the DBG_VALUE to be 549 /// deleted during LiveDebugVariables analysis. 550 void MachineRegisterInfo::markUsesInDebugValueAsUndef(unsigned Reg) const { 551 // Mark any DBG_VALUE that uses Reg as undef (but don't delete it.) 552 MachineRegisterInfo::use_instr_iterator nextI; 553 for (use_instr_iterator I = use_instr_begin(Reg), E = use_instr_end(); 554 I != E; I = nextI) { 555 nextI = std::next(I); // I is invalidated by the setReg 556 MachineInstr *UseMI = &*I; 557 if (UseMI->isDebugValue()) 558 UseMI->getOperand(0).setReg(0U); 559 } 560 } 561 562 static const Function *getCalledFunction(const MachineInstr &MI) { 563 for (const MachineOperand &MO : MI.operands()) { 564 if (!MO.isGlobal()) 565 continue; 566 const Function *Func = dyn_cast<Function>(MO.getGlobal()); 567 if (Func != nullptr) 568 return Func; 569 } 570 return nullptr; 571 } 572 573 static bool isNoReturnDef(const MachineOperand &MO) { 574 // Anything which is not a noreturn function is a real def. 575 const MachineInstr &MI = *MO.getParent(); 576 if (!MI.isCall()) 577 return false; 578 const MachineBasicBlock &MBB = *MI.getParent(); 579 if (!MBB.succ_empty()) 580 return false; 581 const MachineFunction &MF = *MBB.getParent(); 582 // We need to keep correct unwind information even if the function will 583 // not return, since the runtime may need it. 584 if (MF.getFunction().hasFnAttribute(Attribute::UWTable)) 585 return false; 586 const Function *Called = getCalledFunction(MI); 587 return !(Called == nullptr || !Called->hasFnAttribute(Attribute::NoReturn) || 588 !Called->hasFnAttribute(Attribute::NoUnwind)); 589 } 590 591 bool MachineRegisterInfo::isPhysRegModified(unsigned PhysReg, 592 bool SkipNoReturnDef) const { 593 if (UsedPhysRegMask.test(PhysReg)) 594 return true; 595 const TargetRegisterInfo *TRI = getTargetRegisterInfo(); 596 for (MCRegAliasIterator AI(PhysReg, TRI, true); AI.isValid(); ++AI) { 597 for (const MachineOperand &MO : make_range(def_begin(*AI), def_end())) { 598 if (!SkipNoReturnDef && isNoReturnDef(MO)) 599 continue; 600 return true; 601 } 602 } 603 return false; 604 } 605 606 bool MachineRegisterInfo::isPhysRegUsed(unsigned PhysReg) const { 607 if (UsedPhysRegMask.test(PhysReg)) 608 return true; 609 const TargetRegisterInfo *TRI = getTargetRegisterInfo(); 610 for (MCRegAliasIterator AliasReg(PhysReg, TRI, true); AliasReg.isValid(); 611 ++AliasReg) { 612 if (!reg_nodbg_empty(*AliasReg)) 613 return true; 614 } 615 return false; 616 } 617 618 void MachineRegisterInfo::disableCalleeSavedRegister(unsigned Reg) { 619 620 const TargetRegisterInfo *TRI = getTargetRegisterInfo(); 621 assert(Reg && (Reg < TRI->getNumRegs()) && 622 "Trying to disable an invalid register"); 623 624 if (!IsUpdatedCSRsInitialized) { 625 const MCPhysReg *CSR = TRI->getCalleeSavedRegs(MF); 626 for (const MCPhysReg *I = CSR; *I; ++I) 627 UpdatedCSRs.push_back(*I); 628 629 // Zero value represents the end of the register list 630 // (no more registers should be pushed). 631 UpdatedCSRs.push_back(0); 632 633 IsUpdatedCSRsInitialized = true; 634 } 635 636 // Remove the register (and its aliases from the list). 637 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) 638 UpdatedCSRs.erase(std::remove(UpdatedCSRs.begin(), UpdatedCSRs.end(), *AI), 639 UpdatedCSRs.end()); 640 } 641 642 const MCPhysReg *MachineRegisterInfo::getCalleeSavedRegs() const { 643 if (IsUpdatedCSRsInitialized) 644 return UpdatedCSRs.data(); 645 646 return getTargetRegisterInfo()->getCalleeSavedRegs(MF); 647 } 648 649 void MachineRegisterInfo::setCalleeSavedRegs(ArrayRef<MCPhysReg> CSRs) { 650 if (IsUpdatedCSRsInitialized) 651 UpdatedCSRs.clear(); 652 653 for (MCPhysReg Reg : CSRs) 654 UpdatedCSRs.push_back(Reg); 655 656 // Zero value represents the end of the register list 657 // (no more registers should be pushed). 658 UpdatedCSRs.push_back(0); 659 IsUpdatedCSRsInitialized = true; 660 } 661 662 bool MachineRegisterInfo::isReservedRegUnit(unsigned Unit) const { 663 const TargetRegisterInfo *TRI = getTargetRegisterInfo(); 664 for (MCRegUnitRootIterator Root(Unit, TRI); Root.isValid(); ++Root) { 665 bool IsRootReserved = true; 666 for (MCSuperRegIterator Super(*Root, TRI, /*IncludeSelf=*/true); 667 Super.isValid(); ++Super) { 668 unsigned Reg = *Super; 669 if (!isReserved(Reg)) { 670 IsRootReserved = false; 671 break; 672 } 673 } 674 if (IsRootReserved) 675 return true; 676 } 677 return false; 678 } 679