1 //===-- llvm/CodeGen/MachineBasicBlock.cpp ----------------------*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // Collect the sequence of machine instructions for a basic block. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "llvm/CodeGen/MachineBasicBlock.h" 15 #include "llvm/BasicBlock.h" 16 #include "llvm/CodeGen/LiveVariables.h" 17 #include "llvm/CodeGen/MachineDominators.h" 18 #include "llvm/CodeGen/MachineFunction.h" 19 #include "llvm/CodeGen/MachineLoopInfo.h" 20 #include "llvm/CodeGen/SlotIndexes.h" 21 #include "llvm/MC/MCAsmInfo.h" 22 #include "llvm/MC/MCContext.h" 23 #include "llvm/Target/TargetRegisterInfo.h" 24 #include "llvm/Target/TargetData.h" 25 #include "llvm/Target/TargetInstrInfo.h" 26 #include "llvm/Target/TargetMachine.h" 27 #include "llvm/Assembly/Writer.h" 28 #include "llvm/ADT/SmallString.h" 29 #include "llvm/ADT/SmallPtrSet.h" 30 #include "llvm/Support/Debug.h" 31 #include "llvm/Support/LeakDetector.h" 32 #include "llvm/Support/raw_ostream.h" 33 #include <algorithm> 34 using namespace llvm; 35 36 MachineBasicBlock::MachineBasicBlock(MachineFunction &mf, const BasicBlock *bb) 37 : BB(bb), Number(-1), xParent(&mf), Alignment(0), IsLandingPad(false), 38 AddressTaken(false) { 39 Insts.Parent = this; 40 } 41 42 MachineBasicBlock::~MachineBasicBlock() { 43 LeakDetector::removeGarbageObject(this); 44 } 45 46 /// getSymbol - Return the MCSymbol for this basic block. 47 /// 48 MCSymbol *MachineBasicBlock::getSymbol() const { 49 const MachineFunction *MF = getParent(); 50 MCContext &Ctx = MF->getContext(); 51 const char *Prefix = Ctx.getAsmInfo().getPrivateGlobalPrefix(); 52 return Ctx.GetOrCreateSymbol(Twine(Prefix) + "BB" + 53 Twine(MF->getFunctionNumber()) + "_" + 54 Twine(getNumber())); 55 } 56 57 58 raw_ostream &llvm::operator<<(raw_ostream &OS, const MachineBasicBlock &MBB) { 59 MBB.print(OS); 60 return OS; 61 } 62 63 /// addNodeToList (MBB) - When an MBB is added to an MF, we need to update the 64 /// parent pointer of the MBB, the MBB numbering, and any instructions in the 65 /// MBB to be on the right operand list for registers. 66 /// 67 /// MBBs start out as #-1. When a MBB is added to a MachineFunction, it 68 /// gets the next available unique MBB number. If it is removed from a 69 /// MachineFunction, it goes back to being #-1. 70 void ilist_traits<MachineBasicBlock>::addNodeToList(MachineBasicBlock *N) { 71 MachineFunction &MF = *N->getParent(); 72 N->Number = MF.addToMBBNumbering(N); 73 74 // Make sure the instructions have their operands in the reginfo lists. 75 MachineRegisterInfo &RegInfo = MF.getRegInfo(); 76 for (MachineBasicBlock::iterator I = N->begin(), E = N->end(); I != E; ++I) 77 I->AddRegOperandsToUseLists(RegInfo); 78 79 LeakDetector::removeGarbageObject(N); 80 } 81 82 void ilist_traits<MachineBasicBlock>::removeNodeFromList(MachineBasicBlock *N) { 83 N->getParent()->removeFromMBBNumbering(N->Number); 84 N->Number = -1; 85 LeakDetector::addGarbageObject(N); 86 } 87 88 89 /// addNodeToList (MI) - When we add an instruction to a basic block 90 /// list, we update its parent pointer and add its operands from reg use/def 91 /// lists if appropriate. 92 void ilist_traits<MachineInstr>::addNodeToList(MachineInstr *N) { 93 assert(N->getParent() == 0 && "machine instruction already in a basic block"); 94 N->setParent(Parent); 95 96 // Add the instruction's register operands to their corresponding 97 // use/def lists. 98 MachineFunction *MF = Parent->getParent(); 99 N->AddRegOperandsToUseLists(MF->getRegInfo()); 100 101 LeakDetector::removeGarbageObject(N); 102 } 103 104 /// removeNodeFromList (MI) - When we remove an instruction from a basic block 105 /// list, we update its parent pointer and remove its operands from reg use/def 106 /// lists if appropriate. 107 void ilist_traits<MachineInstr>::removeNodeFromList(MachineInstr *N) { 108 assert(N->getParent() != 0 && "machine instruction not in a basic block"); 109 110 // Remove from the use/def lists. 111 N->RemoveRegOperandsFromUseLists(); 112 113 N->setParent(0); 114 115 LeakDetector::addGarbageObject(N); 116 } 117 118 /// transferNodesFromList (MI) - When moving a range of instructions from one 119 /// MBB list to another, we need to update the parent pointers and the use/def 120 /// lists. 121 void ilist_traits<MachineInstr>:: 122 transferNodesFromList(ilist_traits<MachineInstr> &fromList, 123 MachineBasicBlock::iterator first, 124 MachineBasicBlock::iterator last) { 125 assert(Parent->getParent() == fromList.Parent->getParent() && 126 "MachineInstr parent mismatch!"); 127 128 // Splice within the same MBB -> no change. 129 if (Parent == fromList.Parent) return; 130 131 // If splicing between two blocks within the same function, just update the 132 // parent pointers. 133 for (; first != last; ++first) 134 first->setParent(Parent); 135 } 136 137 void ilist_traits<MachineInstr>::deleteNode(MachineInstr* MI) { 138 assert(!MI->getParent() && "MI is still in a block!"); 139 Parent->getParent()->DeleteMachineInstr(MI); 140 } 141 142 MachineBasicBlock::iterator MachineBasicBlock::getFirstNonPHI() { 143 iterator I = begin(); 144 while (I != end() && I->isPHI()) 145 ++I; 146 return I; 147 } 148 149 MachineBasicBlock::iterator 150 MachineBasicBlock::SkipPHIsAndLabels(MachineBasicBlock::iterator I) { 151 while (I != end() && (I->isPHI() || I->isLabel() || I->isDebugValue())) 152 ++I; 153 return I; 154 } 155 156 MachineBasicBlock::iterator MachineBasicBlock::getFirstTerminator() { 157 iterator I = end(); 158 while (I != begin() && ((--I)->getDesc().isTerminator() || I->isDebugValue())) 159 ; /*noop */ 160 while (I != end() && !I->getDesc().isTerminator()) 161 ++I; 162 return I; 163 } 164 165 MachineBasicBlock::iterator MachineBasicBlock::getLastNonDebugInstr() { 166 iterator B = begin(), I = end(); 167 while (I != B) { 168 --I; 169 if (I->isDebugValue()) 170 continue; 171 return I; 172 } 173 // The block is all debug values. 174 return end(); 175 } 176 177 const MachineBasicBlock *MachineBasicBlock::getLandingPadSuccessor() const { 178 // A block with a landing pad successor only has one other successor. 179 if (succ_size() > 2) 180 return 0; 181 for (const_succ_iterator I = succ_begin(), E = succ_end(); I != E; ++I) 182 if ((*I)->isLandingPad()) 183 return *I; 184 return 0; 185 } 186 187 void MachineBasicBlock::dump() const { 188 print(dbgs()); 189 } 190 191 StringRef MachineBasicBlock::getName() const { 192 if (const BasicBlock *LBB = getBasicBlock()) 193 return LBB->getName(); 194 else 195 return "(null)"; 196 } 197 198 void MachineBasicBlock::print(raw_ostream &OS, SlotIndexes *Indexes) const { 199 const MachineFunction *MF = getParent(); 200 if (!MF) { 201 OS << "Can't print out MachineBasicBlock because parent MachineFunction" 202 << " is null\n"; 203 return; 204 } 205 206 if (Alignment) { OS << "Alignment " << Alignment << "\n"; } 207 208 if (Indexes) 209 OS << Indexes->getMBBStartIdx(this) << '\t'; 210 211 OS << "BB#" << getNumber() << ": "; 212 213 const char *Comma = ""; 214 if (const BasicBlock *LBB = getBasicBlock()) { 215 OS << Comma << "derived from LLVM BB "; 216 WriteAsOperand(OS, LBB, /*PrintType=*/false); 217 Comma = ", "; 218 } 219 if (isLandingPad()) { OS << Comma << "EH LANDING PAD"; Comma = ", "; } 220 if (hasAddressTaken()) { OS << Comma << "ADDRESS TAKEN"; Comma = ", "; } 221 OS << '\n'; 222 223 const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo(); 224 if (!livein_empty()) { 225 if (Indexes) OS << '\t'; 226 OS << " Live Ins:"; 227 for (livein_iterator I = livein_begin(),E = livein_end(); I != E; ++I) 228 OS << ' ' << PrintReg(*I, TRI); 229 OS << '\n'; 230 } 231 // Print the preds of this block according to the CFG. 232 if (!pred_empty()) { 233 if (Indexes) OS << '\t'; 234 OS << " Predecessors according to CFG:"; 235 for (const_pred_iterator PI = pred_begin(), E = pred_end(); PI != E; ++PI) 236 OS << " BB#" << (*PI)->getNumber(); 237 OS << '\n'; 238 } 239 240 for (const_iterator I = begin(); I != end(); ++I) { 241 if (Indexes) { 242 if (Indexes->hasIndex(I)) 243 OS << Indexes->getInstructionIndex(I); 244 OS << '\t'; 245 } 246 OS << '\t'; 247 I->print(OS, &getParent()->getTarget()); 248 } 249 250 // Print the successors of this block according to the CFG. 251 if (!succ_empty()) { 252 if (Indexes) OS << '\t'; 253 OS << " Successors according to CFG:"; 254 for (const_succ_iterator SI = succ_begin(), E = succ_end(); SI != E; ++SI) 255 OS << " BB#" << (*SI)->getNumber(); 256 OS << '\n'; 257 } 258 } 259 260 void MachineBasicBlock::removeLiveIn(unsigned Reg) { 261 std::vector<unsigned>::iterator I = 262 std::find(LiveIns.begin(), LiveIns.end(), Reg); 263 assert(I != LiveIns.end() && "Not a live in!"); 264 LiveIns.erase(I); 265 } 266 267 bool MachineBasicBlock::isLiveIn(unsigned Reg) const { 268 livein_iterator I = std::find(livein_begin(), livein_end(), Reg); 269 return I != livein_end(); 270 } 271 272 void MachineBasicBlock::moveBefore(MachineBasicBlock *NewAfter) { 273 getParent()->splice(NewAfter, this); 274 } 275 276 void MachineBasicBlock::moveAfter(MachineBasicBlock *NewBefore) { 277 MachineFunction::iterator BBI = NewBefore; 278 getParent()->splice(++BBI, this); 279 } 280 281 void MachineBasicBlock::updateTerminator() { 282 const TargetInstrInfo *TII = getParent()->getTarget().getInstrInfo(); 283 // A block with no successors has no concerns with fall-through edges. 284 if (this->succ_empty()) return; 285 286 MachineBasicBlock *TBB = 0, *FBB = 0; 287 SmallVector<MachineOperand, 4> Cond; 288 DebugLoc dl; // FIXME: this is nowhere 289 bool B = TII->AnalyzeBranch(*this, TBB, FBB, Cond); 290 (void) B; 291 assert(!B && "UpdateTerminators requires analyzable predecessors!"); 292 if (Cond.empty()) { 293 if (TBB) { 294 // The block has an unconditional branch. If its successor is now 295 // its layout successor, delete the branch. 296 if (isLayoutSuccessor(TBB)) 297 TII->RemoveBranch(*this); 298 } else { 299 // The block has an unconditional fallthrough. If its successor is not 300 // its layout successor, insert a branch. First we have to locate the 301 // only non-landing-pad successor, as that is the fallthrough block. 302 for (succ_iterator SI = succ_begin(), SE = succ_end(); SI != SE; ++SI) { 303 if ((*SI)->isLandingPad()) 304 continue; 305 assert(!TBB && "Found more than one non-landing-pad successor!"); 306 TBB = *SI; 307 } 308 309 // If there is no non-landing-pad successor, the block has no 310 // fall-through edges to be concerned with. 311 if (!TBB) 312 return; 313 314 // Finally update the unconditional successor to be reached via a branch 315 // if it would not be reached by fallthrough. 316 if (!isLayoutSuccessor(TBB)) 317 TII->InsertBranch(*this, TBB, 0, Cond, dl); 318 } 319 } else { 320 if (FBB) { 321 // The block has a non-fallthrough conditional branch. If one of its 322 // successors is its layout successor, rewrite it to a fallthrough 323 // conditional branch. 324 if (isLayoutSuccessor(TBB)) { 325 if (TII->ReverseBranchCondition(Cond)) 326 return; 327 TII->RemoveBranch(*this); 328 TII->InsertBranch(*this, FBB, 0, Cond, dl); 329 } else if (isLayoutSuccessor(FBB)) { 330 TII->RemoveBranch(*this); 331 TII->InsertBranch(*this, TBB, 0, Cond, dl); 332 } 333 } else { 334 // The block has a fallthrough conditional branch. 335 MachineBasicBlock *MBBA = *succ_begin(); 336 MachineBasicBlock *MBBB = *llvm::next(succ_begin()); 337 if (MBBA == TBB) std::swap(MBBB, MBBA); 338 if (isLayoutSuccessor(TBB)) { 339 if (TII->ReverseBranchCondition(Cond)) { 340 // We can't reverse the condition, add an unconditional branch. 341 Cond.clear(); 342 TII->InsertBranch(*this, MBBA, 0, Cond, dl); 343 return; 344 } 345 TII->RemoveBranch(*this); 346 TII->InsertBranch(*this, MBBA, 0, Cond, dl); 347 } else if (!isLayoutSuccessor(MBBA)) { 348 TII->RemoveBranch(*this); 349 TII->InsertBranch(*this, TBB, MBBA, Cond, dl); 350 } 351 } 352 } 353 } 354 355 void MachineBasicBlock::addSuccessor(MachineBasicBlock *succ, uint32_t weight) { 356 357 // If we see non-zero value for the first time it means we actually use Weight 358 // list, so we fill all Weights with 0's. 359 if (weight != 0 && Weights.empty()) 360 Weights.resize(Successors.size()); 361 362 if (weight != 0 || !Weights.empty()) 363 Weights.push_back(weight); 364 365 Successors.push_back(succ); 366 succ->addPredecessor(this); 367 } 368 369 void MachineBasicBlock::removeSuccessor(MachineBasicBlock *succ) { 370 succ->removePredecessor(this); 371 succ_iterator I = std::find(Successors.begin(), Successors.end(), succ); 372 assert(I != Successors.end() && "Not a current successor!"); 373 374 // If Weight list is empty it means we don't use it (disabled optimization). 375 if (!Weights.empty()) { 376 weight_iterator WI = getWeightIterator(I); 377 Weights.erase(WI); 378 } 379 380 Successors.erase(I); 381 } 382 383 MachineBasicBlock::succ_iterator 384 MachineBasicBlock::removeSuccessor(succ_iterator I) { 385 assert(I != Successors.end() && "Not a current successor!"); 386 387 // If Weight list is empty it means we don't use it (disabled optimization). 388 if (!Weights.empty()) { 389 weight_iterator WI = getWeightIterator(I); 390 Weights.erase(WI); 391 } 392 393 (*I)->removePredecessor(this); 394 return Successors.erase(I); 395 } 396 397 void MachineBasicBlock::replaceSuccessor(MachineBasicBlock *Old, 398 MachineBasicBlock *New) { 399 uint32_t weight = 0; 400 succ_iterator SI = std::find(Successors.begin(), Successors.end(), Old); 401 402 // If Weight list is empty it means we don't use it (disabled optimization). 403 if (!Weights.empty()) { 404 weight_iterator WI = getWeightIterator(SI); 405 weight = *WI; 406 } 407 408 // Update the successor information. 409 removeSuccessor(SI); 410 addSuccessor(New, weight); 411 } 412 413 void MachineBasicBlock::addPredecessor(MachineBasicBlock *pred) { 414 Predecessors.push_back(pred); 415 } 416 417 void MachineBasicBlock::removePredecessor(MachineBasicBlock *pred) { 418 pred_iterator I = std::find(Predecessors.begin(), Predecessors.end(), pred); 419 assert(I != Predecessors.end() && "Pred is not a predecessor of this block!"); 420 Predecessors.erase(I); 421 } 422 423 void MachineBasicBlock::transferSuccessors(MachineBasicBlock *fromMBB) { 424 if (this == fromMBB) 425 return; 426 427 while (!fromMBB->succ_empty()) { 428 MachineBasicBlock *Succ = *fromMBB->succ_begin(); 429 uint32_t weight = 0; 430 431 432 // If Weight list is empty it means we don't use it (disabled optimization). 433 if (!fromMBB->Weights.empty()) 434 weight = *fromMBB->Weights.begin(); 435 436 addSuccessor(Succ, weight); 437 fromMBB->removeSuccessor(Succ); 438 } 439 } 440 441 void 442 MachineBasicBlock::transferSuccessorsAndUpdatePHIs(MachineBasicBlock *fromMBB) { 443 if (this == fromMBB) 444 return; 445 446 while (!fromMBB->succ_empty()) { 447 MachineBasicBlock *Succ = *fromMBB->succ_begin(); 448 addSuccessor(Succ); 449 fromMBB->removeSuccessor(Succ); 450 451 // Fix up any PHI nodes in the successor. 452 for (MachineBasicBlock::iterator MI = Succ->begin(), ME = Succ->end(); 453 MI != ME && MI->isPHI(); ++MI) 454 for (unsigned i = 2, e = MI->getNumOperands()+1; i != e; i += 2) { 455 MachineOperand &MO = MI->getOperand(i); 456 if (MO.getMBB() == fromMBB) 457 MO.setMBB(this); 458 } 459 } 460 } 461 462 bool MachineBasicBlock::isSuccessor(const MachineBasicBlock *MBB) const { 463 const_succ_iterator I = std::find(Successors.begin(), Successors.end(), MBB); 464 return I != Successors.end(); 465 } 466 467 bool MachineBasicBlock::isLayoutSuccessor(const MachineBasicBlock *MBB) const { 468 MachineFunction::const_iterator I(this); 469 return llvm::next(I) == MachineFunction::const_iterator(MBB); 470 } 471 472 bool MachineBasicBlock::canFallThrough() { 473 MachineFunction::iterator Fallthrough = this; 474 ++Fallthrough; 475 // If FallthroughBlock is off the end of the function, it can't fall through. 476 if (Fallthrough == getParent()->end()) 477 return false; 478 479 // If FallthroughBlock isn't a successor, no fallthrough is possible. 480 if (!isSuccessor(Fallthrough)) 481 return false; 482 483 // Analyze the branches, if any, at the end of the block. 484 MachineBasicBlock *TBB = 0, *FBB = 0; 485 SmallVector<MachineOperand, 4> Cond; 486 const TargetInstrInfo *TII = getParent()->getTarget().getInstrInfo(); 487 if (TII->AnalyzeBranch(*this, TBB, FBB, Cond)) { 488 // If we couldn't analyze the branch, examine the last instruction. 489 // If the block doesn't end in a known control barrier, assume fallthrough 490 // is possible. The isPredicable check is needed because this code can be 491 // called during IfConversion, where an instruction which is normally a 492 // Barrier is predicated and thus no longer an actual control barrier. This 493 // is over-conservative though, because if an instruction isn't actually 494 // predicated we could still treat it like a barrier. 495 return empty() || !back().getDesc().isBarrier() || 496 back().getDesc().isPredicable(); 497 } 498 499 // If there is no branch, control always falls through. 500 if (TBB == 0) return true; 501 502 // If there is some explicit branch to the fallthrough block, it can obviously 503 // reach, even though the branch should get folded to fall through implicitly. 504 if (MachineFunction::iterator(TBB) == Fallthrough || 505 MachineFunction::iterator(FBB) == Fallthrough) 506 return true; 507 508 // If it's an unconditional branch to some block not the fall through, it 509 // doesn't fall through. 510 if (Cond.empty()) return false; 511 512 // Otherwise, if it is conditional and has no explicit false block, it falls 513 // through. 514 return FBB == 0; 515 } 516 517 MachineBasicBlock * 518 MachineBasicBlock::SplitCriticalEdge(MachineBasicBlock *Succ, Pass *P) { 519 MachineFunction *MF = getParent(); 520 DebugLoc dl; // FIXME: this is nowhere 521 522 // We may need to update this's terminator, but we can't do that if 523 // AnalyzeBranch fails. If this uses a jump table, we won't touch it. 524 const TargetInstrInfo *TII = MF->getTarget().getInstrInfo(); 525 MachineBasicBlock *TBB = 0, *FBB = 0; 526 SmallVector<MachineOperand, 4> Cond; 527 if (TII->AnalyzeBranch(*this, TBB, FBB, Cond)) 528 return NULL; 529 530 // Avoid bugpoint weirdness: A block may end with a conditional branch but 531 // jumps to the same MBB is either case. We have duplicate CFG edges in that 532 // case that we can't handle. Since this never happens in properly optimized 533 // code, just skip those edges. 534 if (TBB && TBB == FBB) { 535 DEBUG(dbgs() << "Won't split critical edge after degenerate BB#" 536 << getNumber() << '\n'); 537 return NULL; 538 } 539 540 MachineBasicBlock *NMBB = MF->CreateMachineBasicBlock(); 541 MF->insert(llvm::next(MachineFunction::iterator(this)), NMBB); 542 DEBUG(dbgs() << "Splitting critical edge:" 543 " BB#" << getNumber() 544 << " -- BB#" << NMBB->getNumber() 545 << " -- BB#" << Succ->getNumber() << '\n'); 546 547 // On some targets like Mips, branches may kill virtual registers. Make sure 548 // that LiveVariables is properly updated after updateTerminator replaces the 549 // terminators. 550 LiveVariables *LV = P->getAnalysisIfAvailable<LiveVariables>(); 551 552 // Collect a list of virtual registers killed by the terminators. 553 SmallVector<unsigned, 4> KilledRegs; 554 if (LV) 555 for (iterator I = getFirstTerminator(), E = end(); I != E; ++I) { 556 MachineInstr *MI = I; 557 for (MachineInstr::mop_iterator OI = MI->operands_begin(), 558 OE = MI->operands_end(); OI != OE; ++OI) { 559 if (!OI->isReg() || !OI->isUse() || !OI->isKill() || OI->isUndef()) 560 continue; 561 unsigned Reg = OI->getReg(); 562 if (TargetRegisterInfo::isVirtualRegister(Reg) && 563 LV->getVarInfo(Reg).removeKill(MI)) { 564 KilledRegs.push_back(Reg); 565 DEBUG(dbgs() << "Removing terminator kill: " << *MI); 566 OI->setIsKill(false); 567 } 568 } 569 } 570 571 ReplaceUsesOfBlockWith(Succ, NMBB); 572 updateTerminator(); 573 574 // Insert unconditional "jump Succ" instruction in NMBB if necessary. 575 NMBB->addSuccessor(Succ); 576 if (!NMBB->isLayoutSuccessor(Succ)) { 577 Cond.clear(); 578 MF->getTarget().getInstrInfo()->InsertBranch(*NMBB, Succ, NULL, Cond, dl); 579 } 580 581 // Fix PHI nodes in Succ so they refer to NMBB instead of this 582 for (MachineBasicBlock::iterator i = Succ->begin(), e = Succ->end(); 583 i != e && i->isPHI(); ++i) 584 for (unsigned ni = 1, ne = i->getNumOperands(); ni != ne; ni += 2) 585 if (i->getOperand(ni+1).getMBB() == this) 586 i->getOperand(ni+1).setMBB(NMBB); 587 588 // Inherit live-ins from the successor 589 for (MachineBasicBlock::livein_iterator I = Succ->livein_begin(), 590 E = Succ->livein_end(); I != E; ++I) 591 NMBB->addLiveIn(*I); 592 593 // Update LiveVariables. 594 if (LV) { 595 // Restore kills of virtual registers that were killed by the terminators. 596 while (!KilledRegs.empty()) { 597 unsigned Reg = KilledRegs.pop_back_val(); 598 for (iterator I = end(), E = begin(); I != E;) { 599 if (!(--I)->addRegisterKilled(Reg, NULL, /* addIfNotFound= */ false)) 600 continue; 601 LV->getVarInfo(Reg).Kills.push_back(I); 602 DEBUG(dbgs() << "Restored terminator kill: " << *I); 603 break; 604 } 605 } 606 // Update relevant live-through information. 607 LV->addNewBlock(NMBB, this, Succ); 608 } 609 610 if (MachineDominatorTree *MDT = 611 P->getAnalysisIfAvailable<MachineDominatorTree>()) { 612 // Update dominator information. 613 MachineDomTreeNode *SucccDTNode = MDT->getNode(Succ); 614 615 bool IsNewIDom = true; 616 for (const_pred_iterator PI = Succ->pred_begin(), E = Succ->pred_end(); 617 PI != E; ++PI) { 618 MachineBasicBlock *PredBB = *PI; 619 if (PredBB == NMBB) 620 continue; 621 if (!MDT->dominates(SucccDTNode, MDT->getNode(PredBB))) { 622 IsNewIDom = false; 623 break; 624 } 625 } 626 627 // We know "this" dominates the newly created basic block. 628 MachineDomTreeNode *NewDTNode = MDT->addNewBlock(NMBB, this); 629 630 // If all the other predecessors of "Succ" are dominated by "Succ" itself 631 // then the new block is the new immediate dominator of "Succ". Otherwise, 632 // the new block doesn't dominate anything. 633 if (IsNewIDom) 634 MDT->changeImmediateDominator(SucccDTNode, NewDTNode); 635 } 636 637 if (MachineLoopInfo *MLI = P->getAnalysisIfAvailable<MachineLoopInfo>()) 638 if (MachineLoop *TIL = MLI->getLoopFor(this)) { 639 // If one or the other blocks were not in a loop, the new block is not 640 // either, and thus LI doesn't need to be updated. 641 if (MachineLoop *DestLoop = MLI->getLoopFor(Succ)) { 642 if (TIL == DestLoop) { 643 // Both in the same loop, the NMBB joins loop. 644 DestLoop->addBasicBlockToLoop(NMBB, MLI->getBase()); 645 } else if (TIL->contains(DestLoop)) { 646 // Edge from an outer loop to an inner loop. Add to the outer loop. 647 TIL->addBasicBlockToLoop(NMBB, MLI->getBase()); 648 } else if (DestLoop->contains(TIL)) { 649 // Edge from an inner loop to an outer loop. Add to the outer loop. 650 DestLoop->addBasicBlockToLoop(NMBB, MLI->getBase()); 651 } else { 652 // Edge from two loops with no containment relation. Because these 653 // are natural loops, we know that the destination block must be the 654 // header of its loop (adding a branch into a loop elsewhere would 655 // create an irreducible loop). 656 assert(DestLoop->getHeader() == Succ && 657 "Should not create irreducible loops!"); 658 if (MachineLoop *P = DestLoop->getParentLoop()) 659 P->addBasicBlockToLoop(NMBB, MLI->getBase()); 660 } 661 } 662 } 663 664 return NMBB; 665 } 666 667 /// removeFromParent - This method unlinks 'this' from the containing function, 668 /// and returns it, but does not delete it. 669 MachineBasicBlock *MachineBasicBlock::removeFromParent() { 670 assert(getParent() && "Not embedded in a function!"); 671 getParent()->remove(this); 672 return this; 673 } 674 675 676 /// eraseFromParent - This method unlinks 'this' from the containing function, 677 /// and deletes it. 678 void MachineBasicBlock::eraseFromParent() { 679 assert(getParent() && "Not embedded in a function!"); 680 getParent()->erase(this); 681 } 682 683 684 /// ReplaceUsesOfBlockWith - Given a machine basic block that branched to 685 /// 'Old', change the code and CFG so that it branches to 'New' instead. 686 void MachineBasicBlock::ReplaceUsesOfBlockWith(MachineBasicBlock *Old, 687 MachineBasicBlock *New) { 688 assert(Old != New && "Cannot replace self with self!"); 689 690 MachineBasicBlock::iterator I = end(); 691 while (I != begin()) { 692 --I; 693 if (!I->getDesc().isTerminator()) break; 694 695 // Scan the operands of this machine instruction, replacing any uses of Old 696 // with New. 697 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) 698 if (I->getOperand(i).isMBB() && 699 I->getOperand(i).getMBB() == Old) 700 I->getOperand(i).setMBB(New); 701 } 702 703 // Update the successor information. 704 replaceSuccessor(Old, New); 705 } 706 707 /// CorrectExtraCFGEdges - Various pieces of code can cause excess edges in the 708 /// CFG to be inserted. If we have proven that MBB can only branch to DestA and 709 /// DestB, remove any other MBB successors from the CFG. DestA and DestB can be 710 /// null. 711 /// 712 /// Besides DestA and DestB, retain other edges leading to LandingPads 713 /// (currently there can be only one; we don't check or require that here). 714 /// Note it is possible that DestA and/or DestB are LandingPads. 715 bool MachineBasicBlock::CorrectExtraCFGEdges(MachineBasicBlock *DestA, 716 MachineBasicBlock *DestB, 717 bool isCond) { 718 // The values of DestA and DestB frequently come from a call to the 719 // 'TargetInstrInfo::AnalyzeBranch' method. We take our meaning of the initial 720 // values from there. 721 // 722 // 1. If both DestA and DestB are null, then the block ends with no branches 723 // (it falls through to its successor). 724 // 2. If DestA is set, DestB is null, and isCond is false, then the block ends 725 // with only an unconditional branch. 726 // 3. If DestA is set, DestB is null, and isCond is true, then the block ends 727 // with a conditional branch that falls through to a successor (DestB). 728 // 4. If DestA and DestB is set and isCond is true, then the block ends with a 729 // conditional branch followed by an unconditional branch. DestA is the 730 // 'true' destination and DestB is the 'false' destination. 731 732 bool Changed = false; 733 734 MachineFunction::iterator FallThru = 735 llvm::next(MachineFunction::iterator(this)); 736 737 if (DestA == 0 && DestB == 0) { 738 // Block falls through to successor. 739 DestA = FallThru; 740 DestB = FallThru; 741 } else if (DestA != 0 && DestB == 0) { 742 if (isCond) 743 // Block ends in conditional jump that falls through to successor. 744 DestB = FallThru; 745 } else { 746 assert(DestA && DestB && isCond && 747 "CFG in a bad state. Cannot correct CFG edges"); 748 } 749 750 // Remove superfluous edges. I.e., those which aren't destinations of this 751 // basic block, duplicate edges, or landing pads. 752 SmallPtrSet<const MachineBasicBlock*, 8> SeenMBBs; 753 MachineBasicBlock::succ_iterator SI = succ_begin(); 754 while (SI != succ_end()) { 755 const MachineBasicBlock *MBB = *SI; 756 if (!SeenMBBs.insert(MBB) || 757 (MBB != DestA && MBB != DestB && !MBB->isLandingPad())) { 758 // This is a superfluous edge, remove it. 759 SI = removeSuccessor(SI); 760 Changed = true; 761 } else { 762 ++SI; 763 } 764 } 765 766 return Changed; 767 } 768 769 /// findDebugLoc - find the next valid DebugLoc starting at MBBI, skipping 770 /// any DBG_VALUE instructions. Return UnknownLoc if there is none. 771 DebugLoc 772 MachineBasicBlock::findDebugLoc(MachineBasicBlock::iterator &MBBI) { 773 DebugLoc DL; 774 MachineBasicBlock::iterator E = end(); 775 if (MBBI != E) { 776 // Skip debug declarations, we don't want a DebugLoc from them. 777 MachineBasicBlock::iterator MBBI2 = MBBI; 778 while (MBBI2 != E && MBBI2->isDebugValue()) 779 MBBI2++; 780 if (MBBI2 != E) 781 DL = MBBI2->getDebugLoc(); 782 } 783 return DL; 784 } 785 786 /// getSuccWeight - Return weight of the edge from this block to MBB. 787 /// 788 uint32_t MachineBasicBlock::getSuccWeight(MachineBasicBlock *succ) { 789 if (Weights.empty()) 790 return 0; 791 792 succ_iterator I = std::find(Successors.begin(), Successors.end(), succ); 793 return *getWeightIterator(I); 794 } 795 796 /// getWeightIterator - Return wight iterator corresonding to the I successor 797 /// iterator 798 MachineBasicBlock::weight_iterator MachineBasicBlock:: 799 getWeightIterator(MachineBasicBlock::succ_iterator I) { 800 assert(Weights.size() == Successors.size() && "Async weight list!"); 801 size_t index = std::distance(Successors.begin(), I); 802 assert(index < Weights.size() && "Not a current successor!"); 803 return Weights.begin() + index; 804 } 805 806 void llvm::WriteAsOperand(raw_ostream &OS, const MachineBasicBlock *MBB, 807 bool t) { 808 OS << "BB#" << MBB->getNumber(); 809 } 810 811