1f22ef01cSRoman Divacky //===-- llvm/CodeGen/MachineBasicBlock.cpp ----------------------*- C++ -*-===// 2f22ef01cSRoman Divacky // 3f22ef01cSRoman Divacky // The LLVM Compiler Infrastructure 4f22ef01cSRoman Divacky // 5f22ef01cSRoman Divacky // This file is distributed under the University of Illinois Open Source 6f22ef01cSRoman Divacky // License. See LICENSE.TXT for details. 7f22ef01cSRoman Divacky // 8f22ef01cSRoman Divacky //===----------------------------------------------------------------------===// 9f22ef01cSRoman Divacky // 10f22ef01cSRoman Divacky // Collect the sequence of machine instructions for a basic block. 11f22ef01cSRoman Divacky // 12f22ef01cSRoman Divacky //===----------------------------------------------------------------------===// 13f22ef01cSRoman Divacky 14f22ef01cSRoman Divacky #include "llvm/CodeGen/MachineBasicBlock.h" 15139f7f9bSDimitry Andric #include "llvm/ADT/SmallPtrSet.h" 16139f7f9bSDimitry Andric #include "llvm/CodeGen/LiveIntervalAnalysis.h" 17ffd1746dSEd Schouten #include "llvm/CodeGen/LiveVariables.h" 18ffd1746dSEd Schouten #include "llvm/CodeGen/MachineDominators.h" 19f22ef01cSRoman Divacky #include "llvm/CodeGen/MachineFunction.h" 20*6beeb091SDimitry Andric #include "llvm/CodeGen/MachineInstrBuilder.h" 21ffd1746dSEd Schouten #include "llvm/CodeGen/MachineLoopInfo.h" 22139f7f9bSDimitry Andric #include "llvm/CodeGen/MachineRegisterInfo.h" 232754fe60SDimitry Andric #include "llvm/CodeGen/SlotIndexes.h" 24139f7f9bSDimitry Andric #include "llvm/IR/BasicBlock.h" 25139f7f9bSDimitry Andric #include "llvm/IR/DataLayout.h" 267a7e6055SDimitry Andric #include "llvm/IR/DebugInfoMetadata.h" 273dac3a9bSDimitry Andric #include "llvm/IR/ModuleSlotTracker.h" 28f22ef01cSRoman Divacky #include "llvm/MC/MCAsmInfo.h" 29f22ef01cSRoman Divacky #include "llvm/MC/MCContext.h" 307d523365SDimitry Andric #include "llvm/Support/DataTypes.h" 31f22ef01cSRoman Divacky #include "llvm/Support/Debug.h" 32f22ef01cSRoman Divacky #include "llvm/Support/raw_ostream.h" 33139f7f9bSDimitry Andric #include "llvm/Target/TargetInstrInfo.h" 34139f7f9bSDimitry Andric #include "llvm/Target/TargetMachine.h" 35139f7f9bSDimitry Andric #include "llvm/Target/TargetRegisterInfo.h" 3639d628a0SDimitry Andric #include "llvm/Target/TargetSubtargetInfo.h" 37f22ef01cSRoman Divacky #include <algorithm> 38f22ef01cSRoman Divacky using namespace llvm; 39f22ef01cSRoman Divacky 4091bc56edSDimitry Andric #define DEBUG_TYPE "codegen" 4191bc56edSDimitry Andric 427d523365SDimitry Andric MachineBasicBlock::MachineBasicBlock(MachineFunction &MF, const BasicBlock *B) 437d523365SDimitry Andric : BB(B), Number(-1), xParent(&MF) { 44f22ef01cSRoman Divacky Insts.Parent = this; 45f22ef01cSRoman Divacky } 46f22ef01cSRoman Divacky 47f22ef01cSRoman Divacky MachineBasicBlock::~MachineBasicBlock() { 48f22ef01cSRoman Divacky } 49f22ef01cSRoman Divacky 507d523365SDimitry Andric /// Return the MCSymbol for this basic block. 51f22ef01cSRoman Divacky MCSymbol *MachineBasicBlock::getSymbol() const { 52284c1978SDimitry Andric if (!CachedMCSymbol) { 53f22ef01cSRoman Divacky const MachineFunction *MF = getParent(); 54f22ef01cSRoman Divacky MCContext &Ctx = MF->getContext(); 55d88c1a5aSDimitry Andric auto Prefix = Ctx.getAsmInfo()->getPrivateLabelPrefix(); 567d523365SDimitry Andric assert(getNumber() >= 0 && "cannot get label for unreachable MBB"); 57ff0cc061SDimitry Andric CachedMCSymbol = Ctx.getOrCreateSymbol(Twine(Prefix) + "BB" + 58284c1978SDimitry Andric Twine(MF->getFunctionNumber()) + 59284c1978SDimitry Andric "_" + Twine(getNumber())); 60284c1978SDimitry Andric } 61284c1978SDimitry Andric 62284c1978SDimitry Andric return CachedMCSymbol; 63f22ef01cSRoman Divacky } 64f22ef01cSRoman Divacky 65f22ef01cSRoman Divacky 66f22ef01cSRoman Divacky raw_ostream &llvm::operator<<(raw_ostream &OS, const MachineBasicBlock &MBB) { 67f22ef01cSRoman Divacky MBB.print(OS); 68f22ef01cSRoman Divacky return OS; 69f22ef01cSRoman Divacky } 70f22ef01cSRoman Divacky 717d523365SDimitry Andric /// When an MBB is added to an MF, we need to update the parent pointer of the 727d523365SDimitry Andric /// MBB, the MBB numbering, and any instructions in the MBB to be on the right 737d523365SDimitry Andric /// operand list for registers. 74f22ef01cSRoman Divacky /// 75f22ef01cSRoman Divacky /// MBBs start out as #-1. When a MBB is added to a MachineFunction, it 76f22ef01cSRoman Divacky /// gets the next available unique MBB number. If it is removed from a 77f22ef01cSRoman Divacky /// MachineFunction, it goes back to being #-1. 78d88c1a5aSDimitry Andric void ilist_callback_traits<MachineBasicBlock>::addNodeToList( 79d88c1a5aSDimitry Andric MachineBasicBlock *N) { 80f22ef01cSRoman Divacky MachineFunction &MF = *N->getParent(); 81f22ef01cSRoman Divacky N->Number = MF.addToMBBNumbering(N); 82f22ef01cSRoman Divacky 83f22ef01cSRoman Divacky // Make sure the instructions have their operands in the reginfo lists. 84f22ef01cSRoman Divacky MachineRegisterInfo &RegInfo = MF.getRegInfo(); 85dff0c46cSDimitry Andric for (MachineBasicBlock::instr_iterator 86dff0c46cSDimitry Andric I = N->instr_begin(), E = N->instr_end(); I != E; ++I) 87f22ef01cSRoman Divacky I->AddRegOperandsToUseLists(RegInfo); 88f22ef01cSRoman Divacky } 89f22ef01cSRoman Divacky 90d88c1a5aSDimitry Andric void ilist_callback_traits<MachineBasicBlock>::removeNodeFromList( 91d88c1a5aSDimitry Andric MachineBasicBlock *N) { 92f22ef01cSRoman Divacky N->getParent()->removeFromMBBNumbering(N->Number); 93f22ef01cSRoman Divacky N->Number = -1; 94f22ef01cSRoman Divacky } 95f22ef01cSRoman Divacky 967d523365SDimitry Andric /// When we add an instruction to a basic block list, we update its parent 977d523365SDimitry Andric /// pointer and add its operands from reg use/def lists if appropriate. 98f22ef01cSRoman Divacky void ilist_traits<MachineInstr>::addNodeToList(MachineInstr *N) { 9991bc56edSDimitry Andric assert(!N->getParent() && "machine instruction already in a basic block"); 100f22ef01cSRoman Divacky N->setParent(Parent); 101f22ef01cSRoman Divacky 102f22ef01cSRoman Divacky // Add the instruction's register operands to their corresponding 103f22ef01cSRoman Divacky // use/def lists. 104f22ef01cSRoman Divacky MachineFunction *MF = Parent->getParent(); 105f22ef01cSRoman Divacky N->AddRegOperandsToUseLists(MF->getRegInfo()); 106f22ef01cSRoman Divacky } 107f22ef01cSRoman Divacky 1087d523365SDimitry Andric /// When we remove an instruction from a basic block list, we update its parent 1097d523365SDimitry Andric /// pointer and remove its operands from reg use/def lists if appropriate. 110f22ef01cSRoman Divacky void ilist_traits<MachineInstr>::removeNodeFromList(MachineInstr *N) { 11191bc56edSDimitry Andric assert(N->getParent() && "machine instruction not in a basic block"); 112f22ef01cSRoman Divacky 113f22ef01cSRoman Divacky // Remove from the use/def lists. 1147ae0e2c9SDimitry Andric if (MachineFunction *MF = N->getParent()->getParent()) 1157ae0e2c9SDimitry Andric N->RemoveRegOperandsFromUseLists(MF->getRegInfo()); 116f22ef01cSRoman Divacky 11791bc56edSDimitry Andric N->setParent(nullptr); 118f22ef01cSRoman Divacky } 119f22ef01cSRoman Divacky 1207d523365SDimitry Andric /// When moving a range of instructions from one MBB list to another, we need to 1217d523365SDimitry Andric /// update the parent pointers and the use/def lists. 122d88c1a5aSDimitry Andric void ilist_traits<MachineInstr>::transferNodesFromList(ilist_traits &FromList, 123d88c1a5aSDimitry Andric instr_iterator First, 124d88c1a5aSDimitry Andric instr_iterator Last) { 1257d523365SDimitry Andric assert(Parent->getParent() == FromList.Parent->getParent() && 126f22ef01cSRoman Divacky "MachineInstr parent mismatch!"); 127d88c1a5aSDimitry Andric assert(this != &FromList && "Called without a real transfer..."); 128d88c1a5aSDimitry Andric assert(Parent != FromList.Parent && "Two lists have the same parent?"); 129f22ef01cSRoman Divacky 130f22ef01cSRoman Divacky // If splicing between two blocks within the same function, just update the 131f22ef01cSRoman Divacky // parent pointers. 1327d523365SDimitry Andric for (; First != Last; ++First) 1337d523365SDimitry Andric First->setParent(Parent); 134f22ef01cSRoman Divacky } 135f22ef01cSRoman Divacky 136f22ef01cSRoman Divacky void ilist_traits<MachineInstr>::deleteNode(MachineInstr *MI) { 137f22ef01cSRoman Divacky assert(!MI->getParent() && "MI is still in a block!"); 138f22ef01cSRoman Divacky Parent->getParent()->DeleteMachineInstr(MI); 139f22ef01cSRoman Divacky } 140f22ef01cSRoman Divacky 141ffd1746dSEd Schouten MachineBasicBlock::iterator MachineBasicBlock::getFirstNonPHI() { 142dff0c46cSDimitry Andric instr_iterator I = instr_begin(), E = instr_end(); 143dff0c46cSDimitry Andric while (I != E && I->isPHI()) 144ffd1746dSEd Schouten ++I; 1453861d79fSDimitry Andric assert((I == E || !I->isInsideBundle()) && 1463861d79fSDimitry Andric "First non-phi MI cannot be inside a bundle!"); 147ffd1746dSEd Schouten return I; 148ffd1746dSEd Schouten } 149ffd1746dSEd Schouten 1502754fe60SDimitry Andric MachineBasicBlock::iterator 1512754fe60SDimitry Andric MachineBasicBlock::SkipPHIsAndLabels(MachineBasicBlock::iterator I) { 1527a7e6055SDimitry Andric const TargetInstrInfo *TII = getParent()->getSubtarget().getInstrInfo(); 1537a7e6055SDimitry Andric 154dff0c46cSDimitry Andric iterator E = end(); 1557a7e6055SDimitry Andric while (I != E && (I->isPHI() || I->isPosition() || 1567a7e6055SDimitry Andric TII->isBasicBlockPrologue(*I))) 157d88c1a5aSDimitry Andric ++I; 158d88c1a5aSDimitry Andric // FIXME: This needs to change if we wish to bundle labels 159d88c1a5aSDimitry Andric // inside the bundle. 160d88c1a5aSDimitry Andric assert((I == E || !I->isInsideBundle()) && 161d88c1a5aSDimitry Andric "First non-phi / non-label instruction is inside a bundle!"); 162d88c1a5aSDimitry Andric return I; 163d88c1a5aSDimitry Andric } 164d88c1a5aSDimitry Andric 165d88c1a5aSDimitry Andric MachineBasicBlock::iterator 166d88c1a5aSDimitry Andric MachineBasicBlock::SkipPHIsLabelsAndDebug(MachineBasicBlock::iterator I) { 1677a7e6055SDimitry Andric const TargetInstrInfo *TII = getParent()->getSubtarget().getInstrInfo(); 1687a7e6055SDimitry Andric 169d88c1a5aSDimitry Andric iterator E = end(); 1707a7e6055SDimitry Andric while (I != E && (I->isPHI() || I->isPosition() || I->isDebugValue() || 1717a7e6055SDimitry Andric TII->isBasicBlockPrologue(*I))) 1722754fe60SDimitry Andric ++I; 173dff0c46cSDimitry Andric // FIXME: This needs to change if we wish to bundle labels / dbg_values 174dff0c46cSDimitry Andric // inside the bundle. 1753861d79fSDimitry Andric assert((I == E || !I->isInsideBundle()) && 176d88c1a5aSDimitry Andric "First non-phi / non-label / non-debug " 177d88c1a5aSDimitry Andric "instruction is inside a bundle!"); 1782754fe60SDimitry Andric return I; 1792754fe60SDimitry Andric } 1802754fe60SDimitry Andric 181f22ef01cSRoman Divacky MachineBasicBlock::iterator MachineBasicBlock::getFirstTerminator() { 182dff0c46cSDimitry Andric iterator B = begin(), E = end(), I = E; 183dff0c46cSDimitry Andric while (I != B && ((--I)->isTerminator() || I->isDebugValue())) 184f22ef01cSRoman Divacky ; /*noop */ 185dff0c46cSDimitry Andric while (I != E && !I->isTerminator()) 186dff0c46cSDimitry Andric ++I; 187dff0c46cSDimitry Andric return I; 188dff0c46cSDimitry Andric } 189dff0c46cSDimitry Andric 190dff0c46cSDimitry Andric MachineBasicBlock::instr_iterator MachineBasicBlock::getFirstInstrTerminator() { 191dff0c46cSDimitry Andric instr_iterator B = instr_begin(), E = instr_end(), I = E; 192dff0c46cSDimitry Andric while (I != B && ((--I)->isTerminator() || I->isDebugValue())) 193dff0c46cSDimitry Andric ; /*noop */ 194dff0c46cSDimitry Andric while (I != E && !I->isTerminator()) 1952754fe60SDimitry Andric ++I; 196f22ef01cSRoman Divacky return I; 197f22ef01cSRoman Divacky } 198f22ef01cSRoman Divacky 1993dac3a9bSDimitry Andric MachineBasicBlock::iterator MachineBasicBlock::getFirstNonDebugInstr() { 2003dac3a9bSDimitry Andric // Skip over begin-of-block dbg_value instructions. 201d88c1a5aSDimitry Andric return skipDebugInstructionsForward(begin(), end()); 2023dac3a9bSDimitry Andric } 2033dac3a9bSDimitry Andric 2042754fe60SDimitry Andric MachineBasicBlock::iterator MachineBasicBlock::getLastNonDebugInstr() { 205dff0c46cSDimitry Andric // Skip over end-of-block dbg_value instructions. 206dff0c46cSDimitry Andric instr_iterator B = instr_begin(), I = instr_end(); 2072754fe60SDimitry Andric while (I != B) { 2082754fe60SDimitry Andric --I; 209dff0c46cSDimitry Andric // Return instruction that starts a bundle. 210dff0c46cSDimitry Andric if (I->isDebugValue() || I->isInsideBundle()) 211dff0c46cSDimitry Andric continue; 212dff0c46cSDimitry Andric return I; 213dff0c46cSDimitry Andric } 214dff0c46cSDimitry Andric // The block is all debug values. 215dff0c46cSDimitry Andric return end(); 216dff0c46cSDimitry Andric } 217dff0c46cSDimitry Andric 2187d523365SDimitry Andric bool MachineBasicBlock::hasEHPadSuccessor() const { 2197d523365SDimitry Andric for (const_succ_iterator I = succ_begin(), E = succ_end(); I != E; ++I) 2207d523365SDimitry Andric if ((*I)->isEHPad()) 2217d523365SDimitry Andric return true; 2227d523365SDimitry Andric return false; 2237d523365SDimitry Andric } 2247d523365SDimitry Andric 2253861d79fSDimitry Andric #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) 2263ca95b02SDimitry Andric LLVM_DUMP_METHOD void MachineBasicBlock::dump() const { 227f22ef01cSRoman Divacky print(dbgs()); 228f22ef01cSRoman Divacky } 2293861d79fSDimitry Andric #endif 230f22ef01cSRoman Divacky 231edd7eaddSDimitry Andric bool MachineBasicBlock::isLegalToHoistInto() const { 232edd7eaddSDimitry Andric if (isReturnBlock() || hasEHPadSuccessor()) 233edd7eaddSDimitry Andric return false; 234edd7eaddSDimitry Andric return true; 235edd7eaddSDimitry Andric } 236edd7eaddSDimitry Andric 237f22ef01cSRoman Divacky StringRef MachineBasicBlock::getName() const { 238f22ef01cSRoman Divacky if (const BasicBlock *LBB = getBasicBlock()) 239f22ef01cSRoman Divacky return LBB->getName(); 240f22ef01cSRoman Divacky else 2417a7e6055SDimitry Andric return StringRef("", 0); 242f22ef01cSRoman Divacky } 243f22ef01cSRoman Divacky 244dff0c46cSDimitry Andric /// Return a hopefully unique identifier for this block. 245dff0c46cSDimitry Andric std::string MachineBasicBlock::getFullName() const { 246dff0c46cSDimitry Andric std::string Name; 247dff0c46cSDimitry Andric if (getParent()) 2483861d79fSDimitry Andric Name = (getParent()->getName() + ":").str(); 249dff0c46cSDimitry Andric if (getBasicBlock()) 250dff0c46cSDimitry Andric Name += getBasicBlock()->getName(); 251dff0c46cSDimitry Andric else 252ff0cc061SDimitry Andric Name += ("BB" + Twine(getNumber())).str(); 253dff0c46cSDimitry Andric return Name; 254dff0c46cSDimitry Andric } 255dff0c46cSDimitry Andric 2563ca95b02SDimitry Andric void MachineBasicBlock::print(raw_ostream &OS, const SlotIndexes *Indexes) 2573ca95b02SDimitry Andric const { 258f22ef01cSRoman Divacky const MachineFunction *MF = getParent(); 259f22ef01cSRoman Divacky if (!MF) { 260f22ef01cSRoman Divacky OS << "Can't print out MachineBasicBlock because parent MachineFunction" 261f22ef01cSRoman Divacky << " is null\n"; 262f22ef01cSRoman Divacky return; 263f22ef01cSRoman Divacky } 2643dac3a9bSDimitry Andric const Function *F = MF->getFunction(); 2653dac3a9bSDimitry Andric const Module *M = F ? F->getParent() : nullptr; 2663dac3a9bSDimitry Andric ModuleSlotTracker MST(M); 2673dac3a9bSDimitry Andric print(OS, MST, Indexes); 2683dac3a9bSDimitry Andric } 2693dac3a9bSDimitry Andric 2703dac3a9bSDimitry Andric void MachineBasicBlock::print(raw_ostream &OS, ModuleSlotTracker &MST, 2713ca95b02SDimitry Andric const SlotIndexes *Indexes) const { 2723dac3a9bSDimitry Andric const MachineFunction *MF = getParent(); 2733dac3a9bSDimitry Andric if (!MF) { 2743dac3a9bSDimitry Andric OS << "Can't print out MachineBasicBlock because parent MachineFunction" 2753dac3a9bSDimitry Andric << " is null\n"; 2763dac3a9bSDimitry Andric return; 2773dac3a9bSDimitry Andric } 278f22ef01cSRoman Divacky 2792754fe60SDimitry Andric if (Indexes) 2802754fe60SDimitry Andric OS << Indexes->getMBBStartIdx(this) << '\t'; 2812754fe60SDimitry Andric 282f22ef01cSRoman Divacky OS << "BB#" << getNumber() << ": "; 283f22ef01cSRoman Divacky 284f22ef01cSRoman Divacky const char *Comma = ""; 285f22ef01cSRoman Divacky if (const BasicBlock *LBB = getBasicBlock()) { 286f22ef01cSRoman Divacky OS << Comma << "derived from LLVM BB "; 2873dac3a9bSDimitry Andric LBB->printAsOperand(OS, /*PrintType=*/false, MST); 288f22ef01cSRoman Divacky Comma = ", "; 289f22ef01cSRoman Divacky } 2907d523365SDimitry Andric if (isEHPad()) { OS << Comma << "EH LANDING PAD"; Comma = ", "; } 291f22ef01cSRoman Divacky if (hasAddressTaken()) { OS << Comma << "ADDRESS TAKEN"; Comma = ", "; } 2927ae0e2c9SDimitry Andric if (Alignment) 293dff0c46cSDimitry Andric OS << Comma << "Align " << Alignment << " (" << (1u << Alignment) 294dff0c46cSDimitry Andric << " bytes)"; 295dff0c46cSDimitry Andric 296f22ef01cSRoman Divacky OS << '\n'; 297f22ef01cSRoman Divacky 29839d628a0SDimitry Andric const TargetRegisterInfo *TRI = MF->getSubtarget().getRegisterInfo(); 299f22ef01cSRoman Divacky if (!livein_empty()) { 3002754fe60SDimitry Andric if (Indexes) OS << '\t'; 301f22ef01cSRoman Divacky OS << " Live Ins:"; 30295ec533aSDimitry Andric for (const auto &LI : LiveIns) { 3037d523365SDimitry Andric OS << ' ' << PrintReg(LI.PhysReg, TRI); 304d88c1a5aSDimitry Andric if (!LI.LaneMask.all()) 3057d523365SDimitry Andric OS << ':' << PrintLaneMask(LI.LaneMask); 3067d523365SDimitry Andric } 307f22ef01cSRoman Divacky OS << '\n'; 308f22ef01cSRoman Divacky } 309f22ef01cSRoman Divacky // Print the preds of this block according to the CFG. 310f22ef01cSRoman Divacky if (!pred_empty()) { 3112754fe60SDimitry Andric if (Indexes) OS << '\t'; 312f22ef01cSRoman Divacky OS << " Predecessors according to CFG:"; 313f22ef01cSRoman Divacky for (const_pred_iterator PI = pred_begin(), E = pred_end(); PI != E; ++PI) 314f22ef01cSRoman Divacky OS << " BB#" << (*PI)->getNumber(); 315f22ef01cSRoman Divacky OS << '\n'; 316f22ef01cSRoman Divacky } 317f22ef01cSRoman Divacky 3183ca95b02SDimitry Andric for (auto &I : instrs()) { 3192754fe60SDimitry Andric if (Indexes) { 3203ca95b02SDimitry Andric if (Indexes->hasIndex(I)) 3213ca95b02SDimitry Andric OS << Indexes->getInstructionIndex(I); 3222754fe60SDimitry Andric OS << '\t'; 3232754fe60SDimitry Andric } 324f22ef01cSRoman Divacky OS << '\t'; 3253ca95b02SDimitry Andric if (I.isInsideBundle()) 326dff0c46cSDimitry Andric OS << " * "; 3273ca95b02SDimitry Andric I.print(OS, MST); 328f22ef01cSRoman Divacky } 329f22ef01cSRoman Divacky 330f22ef01cSRoman Divacky // Print the successors of this block according to the CFG. 331f22ef01cSRoman Divacky if (!succ_empty()) { 3322754fe60SDimitry Andric if (Indexes) OS << '\t'; 333f22ef01cSRoman Divacky OS << " Successors according to CFG:"; 3347ae0e2c9SDimitry Andric for (const_succ_iterator SI = succ_begin(), E = succ_end(); SI != E; ++SI) { 335f22ef01cSRoman Divacky OS << " BB#" << (*SI)->getNumber(); 3367d523365SDimitry Andric if (!Probs.empty()) 3377d523365SDimitry Andric OS << '(' << *getProbabilityIterator(SI) << ')'; 3387ae0e2c9SDimitry Andric } 339f22ef01cSRoman Divacky OS << '\n'; 340f22ef01cSRoman Divacky } 341f22ef01cSRoman Divacky } 342f22ef01cSRoman Divacky 3437d523365SDimitry Andric void MachineBasicBlock::printAsOperand(raw_ostream &OS, 3447d523365SDimitry Andric bool /*PrintType*/) const { 34591bc56edSDimitry Andric OS << "BB#" << getNumber(); 34691bc56edSDimitry Andric } 34791bc56edSDimitry Andric 3487d523365SDimitry Andric void MachineBasicBlock::removeLiveIn(MCPhysReg Reg, LaneBitmask LaneMask) { 349d88c1a5aSDimitry Andric LiveInVector::iterator I = find_if( 350d88c1a5aSDimitry Andric LiveIns, [Reg](const RegisterMaskPair &LI) { return LI.PhysReg == Reg; }); 3517d523365SDimitry Andric if (I == LiveIns.end()) 3527d523365SDimitry Andric return; 3537d523365SDimitry Andric 3547d523365SDimitry Andric I->LaneMask &= ~LaneMask; 355d88c1a5aSDimitry Andric if (I->LaneMask.none()) 356f22ef01cSRoman Divacky LiveIns.erase(I); 357f22ef01cSRoman Divacky } 358f22ef01cSRoman Divacky 359f9448bf3SDimitry Andric MachineBasicBlock::livein_iterator 360f9448bf3SDimitry Andric MachineBasicBlock::removeLiveIn(MachineBasicBlock::livein_iterator I) { 361f9448bf3SDimitry Andric // Get non-const version of iterator. 362f9448bf3SDimitry Andric LiveInVector::iterator LI = LiveIns.begin() + (I - LiveIns.begin()); 363f9448bf3SDimitry Andric return LiveIns.erase(LI); 364f9448bf3SDimitry Andric } 365f9448bf3SDimitry Andric 3667d523365SDimitry Andric bool MachineBasicBlock::isLiveIn(MCPhysReg Reg, LaneBitmask LaneMask) const { 367d88c1a5aSDimitry Andric livein_iterator I = find_if( 368d88c1a5aSDimitry Andric LiveIns, [Reg](const RegisterMaskPair &LI) { return LI.PhysReg == Reg; }); 369d88c1a5aSDimitry Andric return I != livein_end() && (I->LaneMask & LaneMask).any(); 3707d523365SDimitry Andric } 3717d523365SDimitry Andric 3727d523365SDimitry Andric void MachineBasicBlock::sortUniqueLiveIns() { 3737d523365SDimitry Andric std::sort(LiveIns.begin(), LiveIns.end(), 3747d523365SDimitry Andric [](const RegisterMaskPair &LI0, const RegisterMaskPair &LI1) { 3757d523365SDimitry Andric return LI0.PhysReg < LI1.PhysReg; 3767d523365SDimitry Andric }); 3777d523365SDimitry Andric // Liveins are sorted by physreg now we can merge their lanemasks. 3787d523365SDimitry Andric LiveInVector::const_iterator I = LiveIns.begin(); 3797d523365SDimitry Andric LiveInVector::const_iterator J; 3807d523365SDimitry Andric LiveInVector::iterator Out = LiveIns.begin(); 3817d523365SDimitry Andric for (; I != LiveIns.end(); ++Out, I = J) { 3827d523365SDimitry Andric unsigned PhysReg = I->PhysReg; 3837d523365SDimitry Andric LaneBitmask LaneMask = I->LaneMask; 3847d523365SDimitry Andric for (J = std::next(I); J != LiveIns.end() && J->PhysReg == PhysReg; ++J) 3857d523365SDimitry Andric LaneMask |= J->LaneMask; 3867d523365SDimitry Andric Out->PhysReg = PhysReg; 3877d523365SDimitry Andric Out->LaneMask = LaneMask; 3887d523365SDimitry Andric } 3897d523365SDimitry Andric LiveIns.erase(Out, LiveIns.end()); 390f22ef01cSRoman Divacky } 391f22ef01cSRoman Divacky 392*6beeb091SDimitry Andric unsigned 3937d523365SDimitry Andric MachineBasicBlock::addLiveIn(MCPhysReg PhysReg, const TargetRegisterClass *RC) { 394*6beeb091SDimitry Andric assert(getParent() && "MBB must be inserted in function"); 395*6beeb091SDimitry Andric assert(TargetRegisterInfo::isPhysicalRegister(PhysReg) && "Expected physreg"); 396*6beeb091SDimitry Andric assert(RC && "Register class is required"); 3977d523365SDimitry Andric assert((isEHPad() || this == &getParent()->front()) && 398*6beeb091SDimitry Andric "Only the entry block and landing pads can have physreg live ins"); 399*6beeb091SDimitry Andric 400*6beeb091SDimitry Andric bool LiveIn = isLiveIn(PhysReg); 401*6beeb091SDimitry Andric iterator I = SkipPHIsAndLabels(begin()), E = end(); 402*6beeb091SDimitry Andric MachineRegisterInfo &MRI = getParent()->getRegInfo(); 40339d628a0SDimitry Andric const TargetInstrInfo &TII = *getParent()->getSubtarget().getInstrInfo(); 404*6beeb091SDimitry Andric 405*6beeb091SDimitry Andric // Look for an existing copy. 406*6beeb091SDimitry Andric if (LiveIn) 407*6beeb091SDimitry Andric for (;I != E && I->isCopy(); ++I) 408*6beeb091SDimitry Andric if (I->getOperand(1).getReg() == PhysReg) { 409*6beeb091SDimitry Andric unsigned VirtReg = I->getOperand(0).getReg(); 410*6beeb091SDimitry Andric if (!MRI.constrainRegClass(VirtReg, RC)) 411*6beeb091SDimitry Andric llvm_unreachable("Incompatible live-in register class."); 412*6beeb091SDimitry Andric return VirtReg; 413*6beeb091SDimitry Andric } 414*6beeb091SDimitry Andric 415*6beeb091SDimitry Andric // No luck, create a virtual register. 416*6beeb091SDimitry Andric unsigned VirtReg = MRI.createVirtualRegister(RC); 417*6beeb091SDimitry Andric BuildMI(*this, I, DebugLoc(), TII.get(TargetOpcode::COPY), VirtReg) 418*6beeb091SDimitry Andric .addReg(PhysReg, RegState::Kill); 419*6beeb091SDimitry Andric if (!LiveIn) 420*6beeb091SDimitry Andric addLiveIn(PhysReg); 421*6beeb091SDimitry Andric return VirtReg; 422*6beeb091SDimitry Andric } 423*6beeb091SDimitry Andric 424f22ef01cSRoman Divacky void MachineBasicBlock::moveBefore(MachineBasicBlock *NewAfter) { 4257d523365SDimitry Andric getParent()->splice(NewAfter->getIterator(), getIterator()); 426f22ef01cSRoman Divacky } 427f22ef01cSRoman Divacky 428f22ef01cSRoman Divacky void MachineBasicBlock::moveAfter(MachineBasicBlock *NewBefore) { 4297d523365SDimitry Andric getParent()->splice(++NewBefore->getIterator(), getIterator()); 430f22ef01cSRoman Divacky } 431f22ef01cSRoman Divacky 432f22ef01cSRoman Divacky void MachineBasicBlock::updateTerminator() { 43339d628a0SDimitry Andric const TargetInstrInfo *TII = getParent()->getSubtarget().getInstrInfo(); 434f22ef01cSRoman Divacky // A block with no successors has no concerns with fall-through edges. 4353ca95b02SDimitry Andric if (this->succ_empty()) 4363ca95b02SDimitry Andric return; 437f22ef01cSRoman Divacky 43891bc56edSDimitry Andric MachineBasicBlock *TBB = nullptr, *FBB = nullptr; 439f22ef01cSRoman Divacky SmallVector<MachineOperand, 4> Cond; 4407a7e6055SDimitry Andric DebugLoc DL = findBranchDebugLoc(); 4413ca95b02SDimitry Andric bool B = TII->analyzeBranch(*this, TBB, FBB, Cond); 442f22ef01cSRoman Divacky (void) B; 443f22ef01cSRoman Divacky assert(!B && "UpdateTerminators requires analyzable predecessors!"); 444f22ef01cSRoman Divacky if (Cond.empty()) { 445f22ef01cSRoman Divacky if (TBB) { 4463ca95b02SDimitry Andric // The block has an unconditional branch. If its successor is now its 4473ca95b02SDimitry Andric // layout successor, delete the branch. 448f22ef01cSRoman Divacky if (isLayoutSuccessor(TBB)) 449d88c1a5aSDimitry Andric TII->removeBranch(*this); 450f22ef01cSRoman Divacky } else { 4513ca95b02SDimitry Andric // The block has an unconditional fallthrough. If its successor is not its 4523ca95b02SDimitry Andric // layout successor, insert a branch. First we have to locate the only 4533ca95b02SDimitry Andric // non-landing-pad successor, as that is the fallthrough block. 454dff0c46cSDimitry Andric for (succ_iterator SI = succ_begin(), SE = succ_end(); SI != SE; ++SI) { 4557d523365SDimitry Andric if ((*SI)->isEHPad()) 456dff0c46cSDimitry Andric continue; 457dff0c46cSDimitry Andric assert(!TBB && "Found more than one non-landing-pad successor!"); 458dff0c46cSDimitry Andric TBB = *SI; 459dff0c46cSDimitry Andric } 460dff0c46cSDimitry Andric 4613ca95b02SDimitry Andric // If there is no non-landing-pad successor, the block has no fall-through 4623ca95b02SDimitry Andric // edges to be concerned with. 463dff0c46cSDimitry Andric if (!TBB) 464dff0c46cSDimitry Andric return; 465dff0c46cSDimitry Andric 466dff0c46cSDimitry Andric // Finally update the unconditional successor to be reached via a branch 467dff0c46cSDimitry Andric // if it would not be reached by fallthrough. 468f22ef01cSRoman Divacky if (!isLayoutSuccessor(TBB)) 469d88c1a5aSDimitry Andric TII->insertBranch(*this, TBB, nullptr, Cond, DL); 470f22ef01cSRoman Divacky } 4713ca95b02SDimitry Andric return; 4723ca95b02SDimitry Andric } 4733ca95b02SDimitry Andric 474f22ef01cSRoman Divacky if (FBB) { 475f22ef01cSRoman Divacky // The block has a non-fallthrough conditional branch. If one of its 476f22ef01cSRoman Divacky // successors is its layout successor, rewrite it to a fallthrough 477f22ef01cSRoman Divacky // conditional branch. 478f22ef01cSRoman Divacky if (isLayoutSuccessor(TBB)) { 479d88c1a5aSDimitry Andric if (TII->reverseBranchCondition(Cond)) 480f22ef01cSRoman Divacky return; 481d88c1a5aSDimitry Andric TII->removeBranch(*this); 482d88c1a5aSDimitry Andric TII->insertBranch(*this, FBB, nullptr, Cond, DL); 483f22ef01cSRoman Divacky } else if (isLayoutSuccessor(FBB)) { 484d88c1a5aSDimitry Andric TII->removeBranch(*this); 485d88c1a5aSDimitry Andric TII->insertBranch(*this, TBB, nullptr, Cond, DL); 486f22ef01cSRoman Divacky } 4873ca95b02SDimitry Andric return; 4883ca95b02SDimitry Andric } 4893ca95b02SDimitry Andric 4903ca95b02SDimitry Andric // Walk through the successors and find the successor which is not a landing 4913ca95b02SDimitry Andric // pad and is not the conditional branch destination (in TBB) as the 4923ca95b02SDimitry Andric // fallthrough successor. 49391bc56edSDimitry Andric MachineBasicBlock *FallthroughBB = nullptr; 494cb4dff85SDimitry Andric for (succ_iterator SI = succ_begin(), SE = succ_end(); SI != SE; ++SI) { 4957d523365SDimitry Andric if ((*SI)->isEHPad() || *SI == TBB) 496cb4dff85SDimitry Andric continue; 497cb4dff85SDimitry Andric assert(!FallthroughBB && "Found more than one fallthrough successor."); 498cb4dff85SDimitry Andric FallthroughBB = *SI; 499cb4dff85SDimitry Andric } 5003ca95b02SDimitry Andric 5013ca95b02SDimitry Andric if (!FallthroughBB) { 5023ca95b02SDimitry Andric if (canFallThrough()) { 5033ca95b02SDimitry Andric // We fallthrough to the same basic block as the conditional jump targets. 5043ca95b02SDimitry Andric // Remove the conditional jump, leaving unconditional fallthrough. 5053ca95b02SDimitry Andric // FIXME: This does not seem like a reasonable pattern to support, but it 5063ca95b02SDimitry Andric // has been seen in the wild coming out of degenerate ARM test cases. 507d88c1a5aSDimitry Andric TII->removeBranch(*this); 508cb4dff85SDimitry Andric 5093ca95b02SDimitry Andric // Finally update the unconditional successor to be reached via a branch if 5103ca95b02SDimitry Andric // it would not be reached by fallthrough. 511cb4dff85SDimitry Andric if (!isLayoutSuccessor(TBB)) 512d88c1a5aSDimitry Andric TII->insertBranch(*this, TBB, nullptr, Cond, DL); 513cb4dff85SDimitry Andric return; 514cb4dff85SDimitry Andric } 515cb4dff85SDimitry Andric 5163ca95b02SDimitry Andric // We enter here iff exactly one successor is TBB which cannot fallthrough 5173ca95b02SDimitry Andric // and the rest successors if any are EHPads. In this case, we need to 5183ca95b02SDimitry Andric // change the conditional branch into unconditional branch. 519d88c1a5aSDimitry Andric TII->removeBranch(*this); 5203ca95b02SDimitry Andric Cond.clear(); 521d88c1a5aSDimitry Andric TII->insertBranch(*this, TBB, nullptr, Cond, DL); 5223ca95b02SDimitry Andric return; 5233ca95b02SDimitry Andric } 5243ca95b02SDimitry Andric 525f22ef01cSRoman Divacky // The block has a fallthrough conditional branch. 526f22ef01cSRoman Divacky if (isLayoutSuccessor(TBB)) { 527d88c1a5aSDimitry Andric if (TII->reverseBranchCondition(Cond)) { 528f22ef01cSRoman Divacky // We can't reverse the condition, add an unconditional branch. 529f22ef01cSRoman Divacky Cond.clear(); 530d88c1a5aSDimitry Andric TII->insertBranch(*this, FallthroughBB, nullptr, Cond, DL); 531f22ef01cSRoman Divacky return; 532f22ef01cSRoman Divacky } 533d88c1a5aSDimitry Andric TII->removeBranch(*this); 534d88c1a5aSDimitry Andric TII->insertBranch(*this, FallthroughBB, nullptr, Cond, DL); 535cb4dff85SDimitry Andric } else if (!isLayoutSuccessor(FallthroughBB)) { 536d88c1a5aSDimitry Andric TII->removeBranch(*this); 537d88c1a5aSDimitry Andric TII->insertBranch(*this, TBB, FallthroughBB, Cond, DL); 538f22ef01cSRoman Divacky } 539f22ef01cSRoman Divacky } 540f22ef01cSRoman Divacky 5417d523365SDimitry Andric void MachineBasicBlock::validateSuccProbs() const { 5427d523365SDimitry Andric #ifndef NDEBUG 5437d523365SDimitry Andric int64_t Sum = 0; 5447d523365SDimitry Andric for (auto Prob : Probs) 5457d523365SDimitry Andric Sum += Prob.getNumerator(); 5467d523365SDimitry Andric // Due to precision issue, we assume that the sum of probabilities is one if 5477d523365SDimitry Andric // the difference between the sum of their numerators and the denominator is 5487d523365SDimitry Andric // no greater than the number of successors. 5497d523365SDimitry Andric assert((uint64_t)std::abs(Sum - BranchProbability::getDenominator()) <= 5507d523365SDimitry Andric Probs.size() && 5517d523365SDimitry Andric "The sum of successors's probabilities exceeds one."); 5527d523365SDimitry Andric #endif // NDEBUG 553f22ef01cSRoman Divacky } 554f22ef01cSRoman Divacky 5557d523365SDimitry Andric void MachineBasicBlock::addSuccessor(MachineBasicBlock *Succ, 5567d523365SDimitry Andric BranchProbability Prob) { 5577d523365SDimitry Andric // Probability list is either empty (if successor list isn't empty, this means 5587d523365SDimitry Andric // disabled optimization) or has the same size as successor list. 5597d523365SDimitry Andric if (!(Probs.empty() && !Successors.empty())) 5607d523365SDimitry Andric Probs.push_back(Prob); 5617d523365SDimitry Andric Successors.push_back(Succ); 5627d523365SDimitry Andric Succ->addPredecessor(this); 56317a519f9SDimitry Andric } 56417a519f9SDimitry Andric 5657d523365SDimitry Andric void MachineBasicBlock::addSuccessorWithoutProb(MachineBasicBlock *Succ) { 5667d523365SDimitry Andric // We need to make sure probability list is either empty or has the same size 5677d523365SDimitry Andric // of successor list. When this function is called, we can safely delete all 5687d523365SDimitry Andric // probability in the list. 5697d523365SDimitry Andric Probs.clear(); 5707d523365SDimitry Andric Successors.push_back(Succ); 5717d523365SDimitry Andric Succ->addPredecessor(this); 5727d523365SDimitry Andric } 5737d523365SDimitry Andric 5747d523365SDimitry Andric void MachineBasicBlock::removeSuccessor(MachineBasicBlock *Succ, 5757d523365SDimitry Andric bool NormalizeSuccProbs) { 576d88c1a5aSDimitry Andric succ_iterator I = find(Successors, Succ); 5777d523365SDimitry Andric removeSuccessor(I, NormalizeSuccProbs); 578f22ef01cSRoman Divacky } 579f22ef01cSRoman Divacky 580f22ef01cSRoman Divacky MachineBasicBlock::succ_iterator 5817d523365SDimitry Andric MachineBasicBlock::removeSuccessor(succ_iterator I, bool NormalizeSuccProbs) { 582f22ef01cSRoman Divacky assert(I != Successors.end() && "Not a current successor!"); 58317a519f9SDimitry Andric 5847d523365SDimitry Andric // If probability list is empty it means we don't use it (disabled 5857d523365SDimitry Andric // optimization). 5867d523365SDimitry Andric if (!Probs.empty()) { 5877d523365SDimitry Andric probability_iterator WI = getProbabilityIterator(I); 5887d523365SDimitry Andric Probs.erase(WI); 5897d523365SDimitry Andric if (NormalizeSuccProbs) 5907d523365SDimitry Andric normalizeSuccProbs(); 59117a519f9SDimitry Andric } 59217a519f9SDimitry Andric 593f22ef01cSRoman Divacky (*I)->removePredecessor(this); 594f22ef01cSRoman Divacky return Successors.erase(I); 595f22ef01cSRoman Divacky } 596f22ef01cSRoman Divacky 59717a519f9SDimitry Andric void MachineBasicBlock::replaceSuccessor(MachineBasicBlock *Old, 59817a519f9SDimitry Andric MachineBasicBlock *New) { 5997ae0e2c9SDimitry Andric if (Old == New) 6007ae0e2c9SDimitry Andric return; 60117a519f9SDimitry Andric 6027ae0e2c9SDimitry Andric succ_iterator E = succ_end(); 6037ae0e2c9SDimitry Andric succ_iterator NewI = E; 6047ae0e2c9SDimitry Andric succ_iterator OldI = E; 6057ae0e2c9SDimitry Andric for (succ_iterator I = succ_begin(); I != E; ++I) { 6067ae0e2c9SDimitry Andric if (*I == Old) { 6077ae0e2c9SDimitry Andric OldI = I; 6087ae0e2c9SDimitry Andric if (NewI != E) 6097ae0e2c9SDimitry Andric break; 6107ae0e2c9SDimitry Andric } 6117ae0e2c9SDimitry Andric if (*I == New) { 6127ae0e2c9SDimitry Andric NewI = I; 6137ae0e2c9SDimitry Andric if (OldI != E) 6147ae0e2c9SDimitry Andric break; 6157ae0e2c9SDimitry Andric } 6167ae0e2c9SDimitry Andric } 6177ae0e2c9SDimitry Andric assert(OldI != E && "Old is not a successor of this block"); 6187ae0e2c9SDimitry Andric 6197ae0e2c9SDimitry Andric // If New isn't already a successor, let it take Old's place. 6207ae0e2c9SDimitry Andric if (NewI == E) { 6217d523365SDimitry Andric Old->removePredecessor(this); 6227ae0e2c9SDimitry Andric New->addPredecessor(this); 6237ae0e2c9SDimitry Andric *OldI = New; 6247ae0e2c9SDimitry Andric return; 62517a519f9SDimitry Andric } 62617a519f9SDimitry Andric 6277ae0e2c9SDimitry Andric // New is already a successor. 6287d523365SDimitry Andric // Update its probability instead of adding a duplicate edge. 6297d523365SDimitry Andric if (!Probs.empty()) { 6307d523365SDimitry Andric auto ProbIter = getProbabilityIterator(NewI); 6317d523365SDimitry Andric if (!ProbIter->isUnknown()) 6327d523365SDimitry Andric *ProbIter += *getProbabilityIterator(OldI); 6337ae0e2c9SDimitry Andric } 6347d523365SDimitry Andric removeSuccessor(OldI); 63517a519f9SDimitry Andric } 63617a519f9SDimitry Andric 6377d523365SDimitry Andric void MachineBasicBlock::addPredecessor(MachineBasicBlock *Pred) { 6387d523365SDimitry Andric Predecessors.push_back(Pred); 639f22ef01cSRoman Divacky } 640f22ef01cSRoman Divacky 6417d523365SDimitry Andric void MachineBasicBlock::removePredecessor(MachineBasicBlock *Pred) { 642d88c1a5aSDimitry Andric pred_iterator I = find(Predecessors, Pred); 643f22ef01cSRoman Divacky assert(I != Predecessors.end() && "Pred is not a predecessor of this block!"); 644f22ef01cSRoman Divacky Predecessors.erase(I); 645f22ef01cSRoman Divacky } 646f22ef01cSRoman Divacky 6477d523365SDimitry Andric void MachineBasicBlock::transferSuccessors(MachineBasicBlock *FromMBB) { 6487d523365SDimitry Andric if (this == FromMBB) 649f22ef01cSRoman Divacky return; 650f22ef01cSRoman Divacky 6517d523365SDimitry Andric while (!FromMBB->succ_empty()) { 6527d523365SDimitry Andric MachineBasicBlock *Succ = *FromMBB->succ_begin(); 65317a519f9SDimitry Andric 6547d523365SDimitry Andric // If probability list is empty it means we don't use it (disabled optimization). 6557d523365SDimitry Andric if (!FromMBB->Probs.empty()) { 6567d523365SDimitry Andric auto Prob = *FromMBB->Probs.begin(); 6577d523365SDimitry Andric addSuccessor(Succ, Prob); 6587d523365SDimitry Andric } else 6597d523365SDimitry Andric addSuccessorWithoutProb(Succ); 66017a519f9SDimitry Andric 6617d523365SDimitry Andric FromMBB->removeSuccessor(Succ); 662ffd1746dSEd Schouten } 663ffd1746dSEd Schouten } 664f22ef01cSRoman Divacky 665ffd1746dSEd Schouten void 6667d523365SDimitry Andric MachineBasicBlock::transferSuccessorsAndUpdatePHIs(MachineBasicBlock *FromMBB) { 6677d523365SDimitry Andric if (this == FromMBB) 668ffd1746dSEd Schouten return; 669ffd1746dSEd Schouten 6707d523365SDimitry Andric while (!FromMBB->succ_empty()) { 6717d523365SDimitry Andric MachineBasicBlock *Succ = *FromMBB->succ_begin(); 6727d523365SDimitry Andric if (!FromMBB->Probs.empty()) { 6737d523365SDimitry Andric auto Prob = *FromMBB->Probs.begin(); 6747d523365SDimitry Andric addSuccessor(Succ, Prob); 6757d523365SDimitry Andric } else 6767d523365SDimitry Andric addSuccessorWithoutProb(Succ); 6777d523365SDimitry Andric FromMBB->removeSuccessor(Succ); 678ffd1746dSEd Schouten 679ffd1746dSEd Schouten // Fix up any PHI nodes in the successor. 680dff0c46cSDimitry Andric for (MachineBasicBlock::instr_iterator MI = Succ->instr_begin(), 681dff0c46cSDimitry Andric ME = Succ->instr_end(); MI != ME && MI->isPHI(); ++MI) 682ffd1746dSEd Schouten for (unsigned i = 2, e = MI->getNumOperands()+1; i != e; i += 2) { 683ffd1746dSEd Schouten MachineOperand &MO = MI->getOperand(i); 6847d523365SDimitry Andric if (MO.getMBB() == FromMBB) 685ffd1746dSEd Schouten MO.setMBB(this); 686ffd1746dSEd Schouten } 687ffd1746dSEd Schouten } 6887d523365SDimitry Andric normalizeSuccProbs(); 689f22ef01cSRoman Divacky } 690f22ef01cSRoman Divacky 6917ae0e2c9SDimitry Andric bool MachineBasicBlock::isPredecessor(const MachineBasicBlock *MBB) const { 692d88c1a5aSDimitry Andric return is_contained(predecessors(), MBB); 6937ae0e2c9SDimitry Andric } 6947ae0e2c9SDimitry Andric 695f22ef01cSRoman Divacky bool MachineBasicBlock::isSuccessor(const MachineBasicBlock *MBB) const { 696d88c1a5aSDimitry Andric return is_contained(successors(), MBB); 697f22ef01cSRoman Divacky } 698f22ef01cSRoman Divacky 699f22ef01cSRoman Divacky bool MachineBasicBlock::isLayoutSuccessor(const MachineBasicBlock *MBB) const { 700f22ef01cSRoman Divacky MachineFunction::const_iterator I(this); 70191bc56edSDimitry Andric return std::next(I) == MachineFunction::const_iterator(MBB); 702f22ef01cSRoman Divacky } 703f22ef01cSRoman Divacky 7047a7e6055SDimitry Andric MachineBasicBlock *MachineBasicBlock::getFallThrough() { 7057d523365SDimitry Andric MachineFunction::iterator Fallthrough = getIterator(); 706f22ef01cSRoman Divacky ++Fallthrough; 707f22ef01cSRoman Divacky // If FallthroughBlock is off the end of the function, it can't fall through. 708f22ef01cSRoman Divacky if (Fallthrough == getParent()->end()) 7097a7e6055SDimitry Andric return nullptr; 710f22ef01cSRoman Divacky 711f22ef01cSRoman Divacky // If FallthroughBlock isn't a successor, no fallthrough is possible. 7127d523365SDimitry Andric if (!isSuccessor(&*Fallthrough)) 7137a7e6055SDimitry Andric return nullptr; 714f22ef01cSRoman Divacky 715f22ef01cSRoman Divacky // Analyze the branches, if any, at the end of the block. 71691bc56edSDimitry Andric MachineBasicBlock *TBB = nullptr, *FBB = nullptr; 717f22ef01cSRoman Divacky SmallVector<MachineOperand, 4> Cond; 71839d628a0SDimitry Andric const TargetInstrInfo *TII = getParent()->getSubtarget().getInstrInfo(); 7193ca95b02SDimitry Andric if (TII->analyzeBranch(*this, TBB, FBB, Cond)) { 720f22ef01cSRoman Divacky // If we couldn't analyze the branch, examine the last instruction. 721f22ef01cSRoman Divacky // If the block doesn't end in a known control barrier, assume fallthrough 722dff0c46cSDimitry Andric // is possible. The isPredicated check is needed because this code can be 723f22ef01cSRoman Divacky // called during IfConversion, where an instruction which is normally a 724dff0c46cSDimitry Andric // Barrier is predicated and thus no longer an actual control barrier. 7257a7e6055SDimitry Andric return (empty() || !back().isBarrier() || TII->isPredicated(back())) 7267a7e6055SDimitry Andric ? &*Fallthrough 7277a7e6055SDimitry Andric : nullptr; 728f22ef01cSRoman Divacky } 729f22ef01cSRoman Divacky 730f22ef01cSRoman Divacky // If there is no branch, control always falls through. 7317a7e6055SDimitry Andric if (!TBB) return &*Fallthrough; 732f22ef01cSRoman Divacky 733f22ef01cSRoman Divacky // If there is some explicit branch to the fallthrough block, it can obviously 734f22ef01cSRoman Divacky // reach, even though the branch should get folded to fall through implicitly. 735f22ef01cSRoman Divacky if (MachineFunction::iterator(TBB) == Fallthrough || 736f22ef01cSRoman Divacky MachineFunction::iterator(FBB) == Fallthrough) 7377a7e6055SDimitry Andric return &*Fallthrough; 738f22ef01cSRoman Divacky 739f22ef01cSRoman Divacky // If it's an unconditional branch to some block not the fall through, it 740f22ef01cSRoman Divacky // doesn't fall through. 7417a7e6055SDimitry Andric if (Cond.empty()) return nullptr; 742f22ef01cSRoman Divacky 743f22ef01cSRoman Divacky // Otherwise, if it is conditional and has no explicit false block, it falls 744f22ef01cSRoman Divacky // through. 7457a7e6055SDimitry Andric return (FBB == nullptr) ? &*Fallthrough : nullptr; 7467a7e6055SDimitry Andric } 7477a7e6055SDimitry Andric 7487a7e6055SDimitry Andric bool MachineBasicBlock::canFallThrough() { 7497a7e6055SDimitry Andric return getFallThrough() != nullptr; 750f22ef01cSRoman Divacky } 751f22ef01cSRoman Divacky 7523ca95b02SDimitry Andric MachineBasicBlock *MachineBasicBlock::SplitCriticalEdge(MachineBasicBlock *Succ, 7533ca95b02SDimitry Andric Pass &P) { 7543ca95b02SDimitry Andric if (!canSplitCriticalEdge(Succ)) 75591bc56edSDimitry Andric return nullptr; 7567ae0e2c9SDimitry Andric 757ffd1746dSEd Schouten MachineFunction *MF = getParent(); 7587d523365SDimitry Andric DebugLoc DL; // FIXME: this is nowhere 759ffd1746dSEd Schouten 760ffd1746dSEd Schouten MachineBasicBlock *NMBB = MF->CreateMachineBasicBlock(); 76191bc56edSDimitry Andric MF->insert(std::next(MachineFunction::iterator(this)), NMBB); 762e580952dSDimitry Andric DEBUG(dbgs() << "Splitting critical edge:" 763ffd1746dSEd Schouten " BB#" << getNumber() 764ffd1746dSEd Schouten << " -- BB#" << NMBB->getNumber() 765ffd1746dSEd Schouten << " -- BB#" << Succ->getNumber() << '\n'); 766ffd1746dSEd Schouten 7673ca95b02SDimitry Andric LiveIntervals *LIS = P.getAnalysisIfAvailable<LiveIntervals>(); 7683ca95b02SDimitry Andric SlotIndexes *Indexes = P.getAnalysisIfAvailable<SlotIndexes>(); 769139f7f9bSDimitry Andric if (LIS) 770139f7f9bSDimitry Andric LIS->insertMBBInMaps(NMBB); 771139f7f9bSDimitry Andric else if (Indexes) 772139f7f9bSDimitry Andric Indexes->insertMBBInMaps(NMBB); 773139f7f9bSDimitry Andric 774bd5abe19SDimitry Andric // On some targets like Mips, branches may kill virtual registers. Make sure 775bd5abe19SDimitry Andric // that LiveVariables is properly updated after updateTerminator replaces the 776bd5abe19SDimitry Andric // terminators. 7773ca95b02SDimitry Andric LiveVariables *LV = P.getAnalysisIfAvailable<LiveVariables>(); 778bd5abe19SDimitry Andric 779bd5abe19SDimitry Andric // Collect a list of virtual registers killed by the terminators. 780bd5abe19SDimitry Andric SmallVector<unsigned, 4> KilledRegs; 781bd5abe19SDimitry Andric if (LV) 782dff0c46cSDimitry Andric for (instr_iterator I = getFirstInstrTerminator(), E = instr_end(); 783dff0c46cSDimitry Andric I != E; ++I) { 7847d523365SDimitry Andric MachineInstr *MI = &*I; 785bd5abe19SDimitry Andric for (MachineInstr::mop_iterator OI = MI->operands_begin(), 786bd5abe19SDimitry Andric OE = MI->operands_end(); OI != OE; ++OI) { 787dff0c46cSDimitry Andric if (!OI->isReg() || OI->getReg() == 0 || 788dff0c46cSDimitry Andric !OI->isUse() || !OI->isKill() || OI->isUndef()) 789bd5abe19SDimitry Andric continue; 790bd5abe19SDimitry Andric unsigned Reg = OI->getReg(); 791dff0c46cSDimitry Andric if (TargetRegisterInfo::isPhysicalRegister(Reg) || 7923ca95b02SDimitry Andric LV->getVarInfo(Reg).removeKill(*MI)) { 793bd5abe19SDimitry Andric KilledRegs.push_back(Reg); 794bd5abe19SDimitry Andric DEBUG(dbgs() << "Removing terminator kill: " << *MI); 795bd5abe19SDimitry Andric OI->setIsKill(false); 796bd5abe19SDimitry Andric } 797bd5abe19SDimitry Andric } 798bd5abe19SDimitry Andric } 799bd5abe19SDimitry Andric 800139f7f9bSDimitry Andric SmallVector<unsigned, 4> UsedRegs; 801139f7f9bSDimitry Andric if (LIS) { 802139f7f9bSDimitry Andric for (instr_iterator I = getFirstInstrTerminator(), E = instr_end(); 803139f7f9bSDimitry Andric I != E; ++I) { 8047d523365SDimitry Andric MachineInstr *MI = &*I; 805139f7f9bSDimitry Andric 806139f7f9bSDimitry Andric for (MachineInstr::mop_iterator OI = MI->operands_begin(), 807139f7f9bSDimitry Andric OE = MI->operands_end(); OI != OE; ++OI) { 808139f7f9bSDimitry Andric if (!OI->isReg() || OI->getReg() == 0) 809139f7f9bSDimitry Andric continue; 810139f7f9bSDimitry Andric 811139f7f9bSDimitry Andric unsigned Reg = OI->getReg(); 812d88c1a5aSDimitry Andric if (!is_contained(UsedRegs, Reg)) 813139f7f9bSDimitry Andric UsedRegs.push_back(Reg); 814139f7f9bSDimitry Andric } 815139f7f9bSDimitry Andric } 816139f7f9bSDimitry Andric } 817139f7f9bSDimitry Andric 818ffd1746dSEd Schouten ReplaceUsesOfBlockWith(Succ, NMBB); 819139f7f9bSDimitry Andric 820139f7f9bSDimitry Andric // If updateTerminator() removes instructions, we need to remove them from 821139f7f9bSDimitry Andric // SlotIndexes. 822139f7f9bSDimitry Andric SmallVector<MachineInstr*, 4> Terminators; 823139f7f9bSDimitry Andric if (Indexes) { 824139f7f9bSDimitry Andric for (instr_iterator I = getFirstInstrTerminator(), E = instr_end(); 825139f7f9bSDimitry Andric I != E; ++I) 8267d523365SDimitry Andric Terminators.push_back(&*I); 827139f7f9bSDimitry Andric } 828139f7f9bSDimitry Andric 829ffd1746dSEd Schouten updateTerminator(); 830ffd1746dSEd Schouten 831139f7f9bSDimitry Andric if (Indexes) { 832139f7f9bSDimitry Andric SmallVector<MachineInstr*, 4> NewTerminators; 833139f7f9bSDimitry Andric for (instr_iterator I = getFirstInstrTerminator(), E = instr_end(); 834139f7f9bSDimitry Andric I != E; ++I) 8357d523365SDimitry Andric NewTerminators.push_back(&*I); 836139f7f9bSDimitry Andric 837139f7f9bSDimitry Andric for (SmallVectorImpl<MachineInstr*>::iterator I = Terminators.begin(), 838139f7f9bSDimitry Andric E = Terminators.end(); I != E; ++I) { 839d88c1a5aSDimitry Andric if (!is_contained(NewTerminators, *I)) 8403ca95b02SDimitry Andric Indexes->removeMachineInstrFromMaps(**I); 841139f7f9bSDimitry Andric } 842139f7f9bSDimitry Andric } 843139f7f9bSDimitry Andric 844ffd1746dSEd Schouten // Insert unconditional "jump Succ" instruction in NMBB if necessary. 845ffd1746dSEd Schouten NMBB->addSuccessor(Succ); 846ffd1746dSEd Schouten if (!NMBB->isLayoutSuccessor(Succ)) { 8473ca95b02SDimitry Andric SmallVector<MachineOperand, 4> Cond; 8483ca95b02SDimitry Andric const TargetInstrInfo *TII = getParent()->getSubtarget().getInstrInfo(); 849d88c1a5aSDimitry Andric TII->insertBranch(*NMBB, Succ, nullptr, Cond, DL); 850139f7f9bSDimitry Andric 851139f7f9bSDimitry Andric if (Indexes) { 8523ca95b02SDimitry Andric for (MachineInstr &MI : NMBB->instrs()) { 853139f7f9bSDimitry Andric // Some instructions may have been moved to NMBB by updateTerminator(), 854139f7f9bSDimitry Andric // so we first remove any instruction that already has an index. 8553ca95b02SDimitry Andric if (Indexes->hasIndex(MI)) 8563ca95b02SDimitry Andric Indexes->removeMachineInstrFromMaps(MI); 8573ca95b02SDimitry Andric Indexes->insertMachineInstrInMaps(MI); 858139f7f9bSDimitry Andric } 859139f7f9bSDimitry Andric } 860ffd1746dSEd Schouten } 861ffd1746dSEd Schouten 862ffd1746dSEd Schouten // Fix PHI nodes in Succ so they refer to NMBB instead of this 863dff0c46cSDimitry Andric for (MachineBasicBlock::instr_iterator 864dff0c46cSDimitry Andric i = Succ->instr_begin(),e = Succ->instr_end(); 865ffd1746dSEd Schouten i != e && i->isPHI(); ++i) 866ffd1746dSEd Schouten for (unsigned ni = 1, ne = i->getNumOperands(); ni != ne; ni += 2) 867ffd1746dSEd Schouten if (i->getOperand(ni+1).getMBB() == this) 868ffd1746dSEd Schouten i->getOperand(ni+1).setMBB(NMBB); 869ffd1746dSEd Schouten 8706122f3e6SDimitry Andric // Inherit live-ins from the successor 8717d523365SDimitry Andric for (const auto &LI : Succ->liveins()) 8727d523365SDimitry Andric NMBB->addLiveIn(LI); 8736122f3e6SDimitry Andric 874bd5abe19SDimitry Andric // Update LiveVariables. 87539d628a0SDimitry Andric const TargetRegisterInfo *TRI = MF->getSubtarget().getRegisterInfo(); 876bd5abe19SDimitry Andric if (LV) { 877bd5abe19SDimitry Andric // Restore kills of virtual registers that were killed by the terminators. 878bd5abe19SDimitry Andric while (!KilledRegs.empty()) { 879bd5abe19SDimitry Andric unsigned Reg = KilledRegs.pop_back_val(); 880dff0c46cSDimitry Andric for (instr_iterator I = instr_end(), E = instr_begin(); I != E;) { 881dff0c46cSDimitry Andric if (!(--I)->addRegisterKilled(Reg, TRI, /* addIfNotFound= */ false)) 882bd5abe19SDimitry Andric continue; 883dff0c46cSDimitry Andric if (TargetRegisterInfo::isVirtualRegister(Reg)) 8847d523365SDimitry Andric LV->getVarInfo(Reg).Kills.push_back(&*I); 885bd5abe19SDimitry Andric DEBUG(dbgs() << "Restored terminator kill: " << *I); 886bd5abe19SDimitry Andric break; 887bd5abe19SDimitry Andric } 888bd5abe19SDimitry Andric } 889bd5abe19SDimitry Andric // Update relevant live-through information. 890ffd1746dSEd Schouten LV->addNewBlock(NMBB, this, Succ); 891bd5abe19SDimitry Andric } 892ffd1746dSEd Schouten 893139f7f9bSDimitry Andric if (LIS) { 894139f7f9bSDimitry Andric // After splitting the edge and updating SlotIndexes, live intervals may be 895139f7f9bSDimitry Andric // in one of two situations, depending on whether this block was the last in 8967d523365SDimitry Andric // the function. If the original block was the last in the function, all 8977d523365SDimitry Andric // live intervals will end prior to the beginning of the new split block. If 8987d523365SDimitry Andric // the original block was not at the end of the function, all live intervals 8997d523365SDimitry Andric // will extend to the end of the new split block. 900139f7f9bSDimitry Andric 901139f7f9bSDimitry Andric bool isLastMBB = 90291bc56edSDimitry Andric std::next(MachineFunction::iterator(NMBB)) == getParent()->end(); 903139f7f9bSDimitry Andric 904139f7f9bSDimitry Andric SlotIndex StartIndex = Indexes->getMBBEndIdx(this); 905139f7f9bSDimitry Andric SlotIndex PrevIndex = StartIndex.getPrevSlot(); 906139f7f9bSDimitry Andric SlotIndex EndIndex = Indexes->getMBBEndIdx(NMBB); 907139f7f9bSDimitry Andric 908139f7f9bSDimitry Andric // Find the registers used from NMBB in PHIs in Succ. 909139f7f9bSDimitry Andric SmallSet<unsigned, 8> PHISrcRegs; 910139f7f9bSDimitry Andric for (MachineBasicBlock::instr_iterator 911139f7f9bSDimitry Andric I = Succ->instr_begin(), E = Succ->instr_end(); 912139f7f9bSDimitry Andric I != E && I->isPHI(); ++I) { 913139f7f9bSDimitry Andric for (unsigned ni = 1, ne = I->getNumOperands(); ni != ne; ni += 2) { 914139f7f9bSDimitry Andric if (I->getOperand(ni+1).getMBB() == NMBB) { 915139f7f9bSDimitry Andric MachineOperand &MO = I->getOperand(ni); 916139f7f9bSDimitry Andric unsigned Reg = MO.getReg(); 917139f7f9bSDimitry Andric PHISrcRegs.insert(Reg); 918139f7f9bSDimitry Andric if (MO.isUndef()) 919139f7f9bSDimitry Andric continue; 920139f7f9bSDimitry Andric 921139f7f9bSDimitry Andric LiveInterval &LI = LIS->getInterval(Reg); 922139f7f9bSDimitry Andric VNInfo *VNI = LI.getVNInfoAt(PrevIndex); 9237d523365SDimitry Andric assert(VNI && 9247d523365SDimitry Andric "PHI sources should be live out of their predecessors."); 925f785676fSDimitry Andric LI.addSegment(LiveInterval::Segment(StartIndex, EndIndex, VNI)); 926139f7f9bSDimitry Andric } 927139f7f9bSDimitry Andric } 928139f7f9bSDimitry Andric } 929139f7f9bSDimitry Andric 930139f7f9bSDimitry Andric MachineRegisterInfo *MRI = &getParent()->getRegInfo(); 931139f7f9bSDimitry Andric for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) { 932139f7f9bSDimitry Andric unsigned Reg = TargetRegisterInfo::index2VirtReg(i); 933139f7f9bSDimitry Andric if (PHISrcRegs.count(Reg) || !LIS->hasInterval(Reg)) 934139f7f9bSDimitry Andric continue; 935139f7f9bSDimitry Andric 936139f7f9bSDimitry Andric LiveInterval &LI = LIS->getInterval(Reg); 937139f7f9bSDimitry Andric if (!LI.liveAt(PrevIndex)) 938139f7f9bSDimitry Andric continue; 939139f7f9bSDimitry Andric 940139f7f9bSDimitry Andric bool isLiveOut = LI.liveAt(LIS->getMBBStartIdx(Succ)); 941139f7f9bSDimitry Andric if (isLiveOut && isLastMBB) { 942139f7f9bSDimitry Andric VNInfo *VNI = LI.getVNInfoAt(PrevIndex); 943139f7f9bSDimitry Andric assert(VNI && "LiveInterval should have VNInfo where it is live."); 944f785676fSDimitry Andric LI.addSegment(LiveInterval::Segment(StartIndex, EndIndex, VNI)); 945139f7f9bSDimitry Andric } else if (!isLiveOut && !isLastMBB) { 946f785676fSDimitry Andric LI.removeSegment(StartIndex, EndIndex); 947139f7f9bSDimitry Andric } 948139f7f9bSDimitry Andric } 949139f7f9bSDimitry Andric 950139f7f9bSDimitry Andric // Update all intervals for registers whose uses may have been modified by 951139f7f9bSDimitry Andric // updateTerminator(). 952139f7f9bSDimitry Andric LIS->repairIntervalsInRange(this, getFirstTerminator(), end(), UsedRegs); 953139f7f9bSDimitry Andric } 954139f7f9bSDimitry Andric 955ffd1746dSEd Schouten if (MachineDominatorTree *MDT = 9563ca95b02SDimitry Andric P.getAnalysisIfAvailable<MachineDominatorTree>()) 95739d628a0SDimitry Andric MDT->recordSplitCriticalEdge(this, Succ, NMBB); 958e580952dSDimitry Andric 9593ca95b02SDimitry Andric if (MachineLoopInfo *MLI = P.getAnalysisIfAvailable<MachineLoopInfo>()) 960ffd1746dSEd Schouten if (MachineLoop *TIL = MLI->getLoopFor(this)) { 961ffd1746dSEd Schouten // If one or the other blocks were not in a loop, the new block is not 962ffd1746dSEd Schouten // either, and thus LI doesn't need to be updated. 963ffd1746dSEd Schouten if (MachineLoop *DestLoop = MLI->getLoopFor(Succ)) { 964ffd1746dSEd Schouten if (TIL == DestLoop) { 965ffd1746dSEd Schouten // Both in the same loop, the NMBB joins loop. 966ffd1746dSEd Schouten DestLoop->addBasicBlockToLoop(NMBB, MLI->getBase()); 967ffd1746dSEd Schouten } else if (TIL->contains(DestLoop)) { 968ffd1746dSEd Schouten // Edge from an outer loop to an inner loop. Add to the outer loop. 969ffd1746dSEd Schouten TIL->addBasicBlockToLoop(NMBB, MLI->getBase()); 970ffd1746dSEd Schouten } else if (DestLoop->contains(TIL)) { 971ffd1746dSEd Schouten // Edge from an inner loop to an outer loop. Add to the outer loop. 972ffd1746dSEd Schouten DestLoop->addBasicBlockToLoop(NMBB, MLI->getBase()); 973ffd1746dSEd Schouten } else { 974ffd1746dSEd Schouten // Edge from two loops with no containment relation. Because these 975ffd1746dSEd Schouten // are natural loops, we know that the destination block must be the 976ffd1746dSEd Schouten // header of its loop (adding a branch into a loop elsewhere would 977ffd1746dSEd Schouten // create an irreducible loop). 978ffd1746dSEd Schouten assert(DestLoop->getHeader() == Succ && 979ffd1746dSEd Schouten "Should not create irreducible loops!"); 980ffd1746dSEd Schouten if (MachineLoop *P = DestLoop->getParentLoop()) 981ffd1746dSEd Schouten P->addBasicBlockToLoop(NMBB, MLI->getBase()); 982ffd1746dSEd Schouten } 983ffd1746dSEd Schouten } 984ffd1746dSEd Schouten } 985ffd1746dSEd Schouten 986ffd1746dSEd Schouten return NMBB; 987ffd1746dSEd Schouten } 988ffd1746dSEd Schouten 9893ca95b02SDimitry Andric bool MachineBasicBlock::canSplitCriticalEdge( 9903ca95b02SDimitry Andric const MachineBasicBlock *Succ) const { 9913ca95b02SDimitry Andric // Splitting the critical edge to a landing pad block is non-trivial. Don't do 9923ca95b02SDimitry Andric // it in this generic function. 9933ca95b02SDimitry Andric if (Succ->isEHPad()) 9943ca95b02SDimitry Andric return false; 9953ca95b02SDimitry Andric 9963ca95b02SDimitry Andric const MachineFunction *MF = getParent(); 9973ca95b02SDimitry Andric 9983ca95b02SDimitry Andric // Performance might be harmed on HW that implements branching using exec mask 9993ca95b02SDimitry Andric // where both sides of the branches are always executed. 10003ca95b02SDimitry Andric if (MF->getTarget().requiresStructuredCFG()) 10013ca95b02SDimitry Andric return false; 10023ca95b02SDimitry Andric 10033ca95b02SDimitry Andric // We may need to update this's terminator, but we can't do that if 10043ca95b02SDimitry Andric // AnalyzeBranch fails. If this uses a jump table, we won't touch it. 10053ca95b02SDimitry Andric const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo(); 10063ca95b02SDimitry Andric MachineBasicBlock *TBB = nullptr, *FBB = nullptr; 10073ca95b02SDimitry Andric SmallVector<MachineOperand, 4> Cond; 10083ca95b02SDimitry Andric // AnalyzeBanch should modify this, since we did not allow modification. 10093ca95b02SDimitry Andric if (TII->analyzeBranch(*const_cast<MachineBasicBlock *>(this), TBB, FBB, Cond, 10103ca95b02SDimitry Andric /*AllowModify*/ false)) 10113ca95b02SDimitry Andric return false; 10123ca95b02SDimitry Andric 10133ca95b02SDimitry Andric // Avoid bugpoint weirdness: A block may end with a conditional branch but 10143ca95b02SDimitry Andric // jumps to the same MBB is either case. We have duplicate CFG edges in that 10153ca95b02SDimitry Andric // case that we can't handle. Since this never happens in properly optimized 10163ca95b02SDimitry Andric // code, just skip those edges. 10173ca95b02SDimitry Andric if (TBB && TBB == FBB) { 10183ca95b02SDimitry Andric DEBUG(dbgs() << "Won't split critical edge after degenerate BB#" 10193ca95b02SDimitry Andric << getNumber() << '\n'); 10203ca95b02SDimitry Andric return false; 10213ca95b02SDimitry Andric } 10223ca95b02SDimitry Andric return true; 10233ca95b02SDimitry Andric } 10243ca95b02SDimitry Andric 1025139f7f9bSDimitry Andric /// Prepare MI to be removed from its bundle. This fixes bundle flags on MI's 1026139f7f9bSDimitry Andric /// neighboring instructions so the bundle won't be broken by removing MI. 1027139f7f9bSDimitry Andric static void unbundleSingleMI(MachineInstr *MI) { 1028139f7f9bSDimitry Andric // Removing the first instruction in a bundle. 1029139f7f9bSDimitry Andric if (MI->isBundledWithSucc() && !MI->isBundledWithPred()) 1030139f7f9bSDimitry Andric MI->unbundleFromSucc(); 1031139f7f9bSDimitry Andric // Removing the last instruction in a bundle. 1032139f7f9bSDimitry Andric if (MI->isBundledWithPred() && !MI->isBundledWithSucc()) 1033139f7f9bSDimitry Andric MI->unbundleFromPred(); 1034139f7f9bSDimitry Andric // If MI is not bundled, or if it is internal to a bundle, the neighbor flags 1035139f7f9bSDimitry Andric // are already fine. 1036dff0c46cSDimitry Andric } 1037dff0c46cSDimitry Andric 1038139f7f9bSDimitry Andric MachineBasicBlock::instr_iterator 1039139f7f9bSDimitry Andric MachineBasicBlock::erase(MachineBasicBlock::instr_iterator I) { 10407d523365SDimitry Andric unbundleSingleMI(&*I); 1041139f7f9bSDimitry Andric return Insts.erase(I); 1042dff0c46cSDimitry Andric } 1043dff0c46cSDimitry Andric 1044139f7f9bSDimitry Andric MachineInstr *MachineBasicBlock::remove_instr(MachineInstr *MI) { 1045139f7f9bSDimitry Andric unbundleSingleMI(MI); 1046139f7f9bSDimitry Andric MI->clearFlag(MachineInstr::BundledPred); 1047139f7f9bSDimitry Andric MI->clearFlag(MachineInstr::BundledSucc); 1048139f7f9bSDimitry Andric return Insts.remove(MI); 1049dff0c46cSDimitry Andric } 1050dff0c46cSDimitry Andric 1051139f7f9bSDimitry Andric MachineBasicBlock::instr_iterator 1052139f7f9bSDimitry Andric MachineBasicBlock::insert(instr_iterator I, MachineInstr *MI) { 1053139f7f9bSDimitry Andric assert(!MI->isBundledWithPred() && !MI->isBundledWithSucc() && 1054139f7f9bSDimitry Andric "Cannot insert instruction with bundle flags"); 1055139f7f9bSDimitry Andric // Set the bundle flags when inserting inside a bundle. 1056139f7f9bSDimitry Andric if (I != instr_end() && I->isBundledWithPred()) { 1057139f7f9bSDimitry Andric MI->setFlag(MachineInstr::BundledPred); 1058139f7f9bSDimitry Andric MI->setFlag(MachineInstr::BundledSucc); 1059dff0c46cSDimitry Andric } 1060139f7f9bSDimitry Andric return Insts.insert(I, MI); 1061dff0c46cSDimitry Andric } 1062dff0c46cSDimitry Andric 10637d523365SDimitry Andric /// This method unlinks 'this' from the containing function, and returns it, but 10647d523365SDimitry Andric /// does not delete it. 1065f22ef01cSRoman Divacky MachineBasicBlock *MachineBasicBlock::removeFromParent() { 1066f22ef01cSRoman Divacky assert(getParent() && "Not embedded in a function!"); 1067f22ef01cSRoman Divacky getParent()->remove(this); 1068f22ef01cSRoman Divacky return this; 1069f22ef01cSRoman Divacky } 1070f22ef01cSRoman Divacky 10717d523365SDimitry Andric /// This method unlinks 'this' from the containing function, and deletes it. 1072f22ef01cSRoman Divacky void MachineBasicBlock::eraseFromParent() { 1073f22ef01cSRoman Divacky assert(getParent() && "Not embedded in a function!"); 1074f22ef01cSRoman Divacky getParent()->erase(this); 1075f22ef01cSRoman Divacky } 1076f22ef01cSRoman Divacky 10777d523365SDimitry Andric /// Given a machine basic block that branched to 'Old', change the code and CFG 10787d523365SDimitry Andric /// so that it branches to 'New' instead. 1079f22ef01cSRoman Divacky void MachineBasicBlock::ReplaceUsesOfBlockWith(MachineBasicBlock *Old, 1080f22ef01cSRoman Divacky MachineBasicBlock *New) { 1081f22ef01cSRoman Divacky assert(Old != New && "Cannot replace self with self!"); 1082f22ef01cSRoman Divacky 1083dff0c46cSDimitry Andric MachineBasicBlock::instr_iterator I = instr_end(); 1084dff0c46cSDimitry Andric while (I != instr_begin()) { 1085f22ef01cSRoman Divacky --I; 1086dff0c46cSDimitry Andric if (!I->isTerminator()) break; 1087f22ef01cSRoman Divacky 1088f22ef01cSRoman Divacky // Scan the operands of this machine instruction, replacing any uses of Old 1089f22ef01cSRoman Divacky // with New. 1090f22ef01cSRoman Divacky for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) 1091f22ef01cSRoman Divacky if (I->getOperand(i).isMBB() && 1092f22ef01cSRoman Divacky I->getOperand(i).getMBB() == Old) 1093f22ef01cSRoman Divacky I->getOperand(i).setMBB(New); 1094f22ef01cSRoman Divacky } 1095f22ef01cSRoman Divacky 1096f22ef01cSRoman Divacky // Update the successor information. 109717a519f9SDimitry Andric replaceSuccessor(Old, New); 1098f22ef01cSRoman Divacky } 1099f22ef01cSRoman Divacky 11007d523365SDimitry Andric /// Various pieces of code can cause excess edges in the CFG to be inserted. If 11017d523365SDimitry Andric /// we have proven that MBB can only branch to DestA and DestB, remove any other 11027d523365SDimitry Andric /// MBB successors from the CFG. DestA and DestB can be null. 1103f22ef01cSRoman Divacky /// 1104f22ef01cSRoman Divacky /// Besides DestA and DestB, retain other edges leading to LandingPads 1105f22ef01cSRoman Divacky /// (currently there can be only one; we don't check or require that here). 1106f22ef01cSRoman Divacky /// Note it is possible that DestA and/or DestB are LandingPads. 1107f22ef01cSRoman Divacky bool MachineBasicBlock::CorrectExtraCFGEdges(MachineBasicBlock *DestA, 1108f22ef01cSRoman Divacky MachineBasicBlock *DestB, 11097d523365SDimitry Andric bool IsCond) { 1110f22ef01cSRoman Divacky // The values of DestA and DestB frequently come from a call to the 1111f22ef01cSRoman Divacky // 'TargetInstrInfo::AnalyzeBranch' method. We take our meaning of the initial 1112f22ef01cSRoman Divacky // values from there. 1113f22ef01cSRoman Divacky // 1114f22ef01cSRoman Divacky // 1. If both DestA and DestB are null, then the block ends with no branches 1115f22ef01cSRoman Divacky // (it falls through to its successor). 11167d523365SDimitry Andric // 2. If DestA is set, DestB is null, and IsCond is false, then the block ends 1117f22ef01cSRoman Divacky // with only an unconditional branch. 11187d523365SDimitry Andric // 3. If DestA is set, DestB is null, and IsCond is true, then the block ends 1119f22ef01cSRoman Divacky // with a conditional branch that falls through to a successor (DestB). 11207d523365SDimitry Andric // 4. If DestA and DestB is set and IsCond is true, then the block ends with a 1121f22ef01cSRoman Divacky // conditional branch followed by an unconditional branch. DestA is the 1122f22ef01cSRoman Divacky // 'true' destination and DestB is the 'false' destination. 1123f22ef01cSRoman Divacky 1124f22ef01cSRoman Divacky bool Changed = false; 1125f22ef01cSRoman Divacky 1126d88c1a5aSDimitry Andric MachineBasicBlock *FallThru = getNextNode(); 1127f22ef01cSRoman Divacky 112891bc56edSDimitry Andric if (!DestA && !DestB) { 1129f22ef01cSRoman Divacky // Block falls through to successor. 1130d88c1a5aSDimitry Andric DestA = FallThru; 1131d88c1a5aSDimitry Andric DestB = FallThru; 113291bc56edSDimitry Andric } else if (DestA && !DestB) { 11337d523365SDimitry Andric if (IsCond) 1134f22ef01cSRoman Divacky // Block ends in conditional jump that falls through to successor. 1135d88c1a5aSDimitry Andric DestB = FallThru; 1136f22ef01cSRoman Divacky } else { 11377d523365SDimitry Andric assert(DestA && DestB && IsCond && 1138f22ef01cSRoman Divacky "CFG in a bad state. Cannot correct CFG edges"); 1139f22ef01cSRoman Divacky } 1140f22ef01cSRoman Divacky 1141f22ef01cSRoman Divacky // Remove superfluous edges. I.e., those which aren't destinations of this 1142f22ef01cSRoman Divacky // basic block, duplicate edges, or landing pads. 1143f22ef01cSRoman Divacky SmallPtrSet<const MachineBasicBlock*, 8> SeenMBBs; 1144f22ef01cSRoman Divacky MachineBasicBlock::succ_iterator SI = succ_begin(); 1145f22ef01cSRoman Divacky while (SI != succ_end()) { 1146f22ef01cSRoman Divacky const MachineBasicBlock *MBB = *SI; 114739d628a0SDimitry Andric if (!SeenMBBs.insert(MBB).second || 11487d523365SDimitry Andric (MBB != DestA && MBB != DestB && !MBB->isEHPad())) { 1149f22ef01cSRoman Divacky // This is a superfluous edge, remove it. 1150f22ef01cSRoman Divacky SI = removeSuccessor(SI); 1151f22ef01cSRoman Divacky Changed = true; 1152f22ef01cSRoman Divacky } else { 1153f22ef01cSRoman Divacky ++SI; 1154f22ef01cSRoman Divacky } 1155f22ef01cSRoman Divacky } 1156f22ef01cSRoman Divacky 11577d523365SDimitry Andric if (Changed) 11587d523365SDimitry Andric normalizeSuccProbs(); 1159f22ef01cSRoman Divacky return Changed; 1160f22ef01cSRoman Divacky } 1161f22ef01cSRoman Divacky 11627d523365SDimitry Andric /// Find the next valid DebugLoc starting at MBBI, skipping any DBG_VALUE 11637d523365SDimitry Andric /// instructions. Return UnknownLoc if there is none. 1164f22ef01cSRoman Divacky DebugLoc 1165dff0c46cSDimitry Andric MachineBasicBlock::findDebugLoc(instr_iterator MBBI) { 1166f22ef01cSRoman Divacky // Skip debug declarations, we don't want a DebugLoc from them. 1167d88c1a5aSDimitry Andric MBBI = skipDebugInstructionsForward(MBBI, instr_end()); 1168d88c1a5aSDimitry Andric if (MBBI != instr_end()) 1169d88c1a5aSDimitry Andric return MBBI->getDebugLoc(); 1170d88c1a5aSDimitry Andric return {}; 1171f22ef01cSRoman Divacky } 1172f22ef01cSRoman Divacky 11737a7e6055SDimitry Andric /// Find and return the merged DebugLoc of the branch instructions of the block. 11747a7e6055SDimitry Andric /// Return UnknownLoc if there is none. 11757a7e6055SDimitry Andric DebugLoc 11767a7e6055SDimitry Andric MachineBasicBlock::findBranchDebugLoc() { 11777a7e6055SDimitry Andric DebugLoc DL; 11787a7e6055SDimitry Andric auto TI = getFirstTerminator(); 11797a7e6055SDimitry Andric while (TI != end() && !TI->isBranch()) 11807a7e6055SDimitry Andric ++TI; 11817a7e6055SDimitry Andric 11827a7e6055SDimitry Andric if (TI != end()) { 11837a7e6055SDimitry Andric DL = TI->getDebugLoc(); 11847a7e6055SDimitry Andric for (++TI ; TI != end() ; ++TI) 11857a7e6055SDimitry Andric if (TI->isBranch()) 11867a7e6055SDimitry Andric DL = DILocation::getMergedLocation(DL, TI->getDebugLoc()); 11877a7e6055SDimitry Andric } 11887a7e6055SDimitry Andric return DL; 11897a7e6055SDimitry Andric } 11907a7e6055SDimitry Andric 11917d523365SDimitry Andric /// Return probability of the edge from this block to MBB. 11927d523365SDimitry Andric BranchProbability 11937d523365SDimitry Andric MachineBasicBlock::getSuccProbability(const_succ_iterator Succ) const { 11947d523365SDimitry Andric if (Probs.empty()) 11957d523365SDimitry Andric return BranchProbability(1, succ_size()); 119617a519f9SDimitry Andric 11977d523365SDimitry Andric const auto &Prob = *getProbabilityIterator(Succ); 11987d523365SDimitry Andric if (Prob.isUnknown()) { 11997d523365SDimitry Andric // For unknown probabilities, collect the sum of all known ones, and evenly 12007d523365SDimitry Andric // ditribute the complemental of the sum to each unknown probability. 12017d523365SDimitry Andric unsigned KnownProbNum = 0; 12027d523365SDimitry Andric auto Sum = BranchProbability::getZero(); 12037d523365SDimitry Andric for (auto &P : Probs) { 12047d523365SDimitry Andric if (!P.isUnknown()) { 12057d523365SDimitry Andric Sum += P; 12067d523365SDimitry Andric KnownProbNum++; 12077d523365SDimitry Andric } 12087d523365SDimitry Andric } 12097d523365SDimitry Andric return Sum.getCompl() / (Probs.size() - KnownProbNum); 12107d523365SDimitry Andric } else 12117d523365SDimitry Andric return Prob; 121217a519f9SDimitry Andric } 121317a519f9SDimitry Andric 12147d523365SDimitry Andric /// Set successor probability of a given iterator. 12157d523365SDimitry Andric void MachineBasicBlock::setSuccProbability(succ_iterator I, 12167d523365SDimitry Andric BranchProbability Prob) { 12177d523365SDimitry Andric assert(!Prob.isUnknown()); 12187d523365SDimitry Andric if (Probs.empty()) 121991bc56edSDimitry Andric return; 12207d523365SDimitry Andric *getProbabilityIterator(I) = Prob; 122191bc56edSDimitry Andric } 122291bc56edSDimitry Andric 12237d523365SDimitry Andric /// Return probability iterator corresonding to the I successor iterator 12247d523365SDimitry Andric MachineBasicBlock::const_probability_iterator 12257d523365SDimitry Andric MachineBasicBlock::getProbabilityIterator( 12267d523365SDimitry Andric MachineBasicBlock::const_succ_iterator I) const { 12277d523365SDimitry Andric assert(Probs.size() == Successors.size() && "Async probability list!"); 1228dff0c46cSDimitry Andric const size_t index = std::distance(Successors.begin(), I); 12297d523365SDimitry Andric assert(index < Probs.size() && "Not a current successor!"); 12307d523365SDimitry Andric return Probs.begin() + index; 12317d523365SDimitry Andric } 12327d523365SDimitry Andric 12337d523365SDimitry Andric /// Return probability iterator corresonding to the I successor iterator. 12347d523365SDimitry Andric MachineBasicBlock::probability_iterator 12357d523365SDimitry Andric MachineBasicBlock::getProbabilityIterator(MachineBasicBlock::succ_iterator I) { 12367d523365SDimitry Andric assert(Probs.size() == Successors.size() && "Async probability list!"); 12377d523365SDimitry Andric const size_t index = std::distance(Successors.begin(), I); 12387d523365SDimitry Andric assert(index < Probs.size() && "Not a current successor!"); 12397d523365SDimitry Andric return Probs.begin() + index; 1240dff0c46cSDimitry Andric } 1241dff0c46cSDimitry Andric 12423861d79fSDimitry Andric /// Return whether (physical) register "Reg" has been <def>ined and not <kill>ed 12433861d79fSDimitry Andric /// as of just before "MI". 12443861d79fSDimitry Andric /// 12453861d79fSDimitry Andric /// Search is localised to a neighborhood of 12463861d79fSDimitry Andric /// Neighborhood instructions before (searching for defs or kills) and N 12473861d79fSDimitry Andric /// instructions after (searching just for defs) MI. 12483861d79fSDimitry Andric MachineBasicBlock::LivenessQueryResult 12493861d79fSDimitry Andric MachineBasicBlock::computeRegisterLiveness(const TargetRegisterInfo *TRI, 1250ff0cc061SDimitry Andric unsigned Reg, const_iterator Before, 1251ff0cc061SDimitry Andric unsigned Neighborhood) const { 12523861d79fSDimitry Andric unsigned N = Neighborhood; 12533861d79fSDimitry Andric 1254ff0cc061SDimitry Andric // Start by searching backwards from Before, looking for kills, reads or defs. 1255ff0cc061SDimitry Andric const_iterator I(Before); 12563861d79fSDimitry Andric // If this is the first insn in the block, don't search backwards. 1257ff0cc061SDimitry Andric if (I != begin()) { 12583861d79fSDimitry Andric do { 12593861d79fSDimitry Andric --I; 12603861d79fSDimitry Andric 12617d523365SDimitry Andric MachineOperandIteratorBase::PhysRegInfo Info = 12623ca95b02SDimitry Andric ConstMIOperands(*I).analyzePhysReg(Reg, TRI); 12633861d79fSDimitry Andric 12647d523365SDimitry Andric // Defs happen after uses so they take precedence if both are present. 1265139f7f9bSDimitry Andric 12667d523365SDimitry Andric // Register is dead after a dead def of the full register. 12677d523365SDimitry Andric if (Info.DeadDef) 12683861d79fSDimitry Andric return LQR_Dead; 12697d523365SDimitry Andric // Register is (at least partially) live after a def. 12703ca95b02SDimitry Andric if (Info.Defined) { 12713ca95b02SDimitry Andric if (!Info.PartialDeadDef) 12727d523365SDimitry Andric return LQR_Live; 12733ca95b02SDimitry Andric // As soon as we saw a partial definition (dead or not), 12743ca95b02SDimitry Andric // we cannot tell if the value is partial live without 12753ca95b02SDimitry Andric // tracking the lanemasks. We are not going to do this, 12763ca95b02SDimitry Andric // so fall back on the remaining of the analysis. 12773ca95b02SDimitry Andric break; 12783ca95b02SDimitry Andric } 12797d523365SDimitry Andric // Register is dead after a full kill or clobber and no def. 12807d523365SDimitry Andric if (Info.Killed || Info.Clobbered) 12817d523365SDimitry Andric return LQR_Dead; 12827d523365SDimitry Andric // Register must be live if we read it. 12837d523365SDimitry Andric if (Info.Read) 12847d523365SDimitry Andric return LQR_Live; 1285ff0cc061SDimitry Andric } while (I != begin() && --N > 0); 12863861d79fSDimitry Andric } 12873861d79fSDimitry Andric 12883861d79fSDimitry Andric // Did we get to the start of the block? 1289ff0cc061SDimitry Andric if (I == begin()) { 12903861d79fSDimitry Andric // If so, the register's state is definitely defined by the live-in state. 12917d523365SDimitry Andric for (MCRegAliasIterator RAI(Reg, TRI, /*IncludeSelf=*/true); RAI.isValid(); 12927d523365SDimitry Andric ++RAI) 1293ff0cc061SDimitry Andric if (isLiveIn(*RAI)) 12947d523365SDimitry Andric return LQR_Live; 12953861d79fSDimitry Andric 12963861d79fSDimitry Andric return LQR_Dead; 12973861d79fSDimitry Andric } 12983861d79fSDimitry Andric 12993861d79fSDimitry Andric N = Neighborhood; 13003861d79fSDimitry Andric 1301ff0cc061SDimitry Andric // Try searching forwards from Before, looking for reads or defs. 1302ff0cc061SDimitry Andric I = const_iterator(Before); 13033861d79fSDimitry Andric // If this is the last insn in the block, don't search forwards. 1304ff0cc061SDimitry Andric if (I != end()) { 1305ff0cc061SDimitry Andric for (++I; I != end() && N > 0; ++I, --N) { 13067d523365SDimitry Andric MachineOperandIteratorBase::PhysRegInfo Info = 13073ca95b02SDimitry Andric ConstMIOperands(*I).analyzePhysReg(Reg, TRI); 13083861d79fSDimitry Andric 13097d523365SDimitry Andric // Register is live when we read it here. 13107d523365SDimitry Andric if (Info.Read) 13117d523365SDimitry Andric return LQR_Live; 13127d523365SDimitry Andric // Register is dead if we can fully overwrite or clobber it here. 13137d523365SDimitry Andric if (Info.FullyDefined || Info.Clobbered) 13143861d79fSDimitry Andric return LQR_Dead; 13153861d79fSDimitry Andric } 13163861d79fSDimitry Andric } 13173861d79fSDimitry Andric 13183861d79fSDimitry Andric // At this point we have no idea of the liveness of the register. 13193861d79fSDimitry Andric return LQR_Unknown; 13203861d79fSDimitry Andric } 13217d523365SDimitry Andric 13227d523365SDimitry Andric const uint32_t * 13237d523365SDimitry Andric MachineBasicBlock::getBeginClobberMask(const TargetRegisterInfo *TRI) const { 13247d523365SDimitry Andric // EH funclet entry does not preserve any registers. 13257d523365SDimitry Andric return isEHFuncletEntry() ? TRI->getNoPreservedMask() : nullptr; 13267d523365SDimitry Andric } 13277d523365SDimitry Andric 13287d523365SDimitry Andric const uint32_t * 13297d523365SDimitry Andric MachineBasicBlock::getEndClobberMask(const TargetRegisterInfo *TRI) const { 13307d523365SDimitry Andric // If we see a return block with successors, this must be a funclet return, 13317d523365SDimitry Andric // which does not preserve any registers. If there are no successors, we don't 13327d523365SDimitry Andric // care what kind of return it is, putting a mask after it is a no-op. 13337d523365SDimitry Andric return isReturnBlock() && !succ_empty() ? TRI->getNoPreservedMask() : nullptr; 13347d523365SDimitry Andric } 1335d88c1a5aSDimitry Andric 1336d88c1a5aSDimitry Andric void MachineBasicBlock::clearLiveIns() { 1337d88c1a5aSDimitry Andric LiveIns.clear(); 1338d88c1a5aSDimitry Andric } 133995ec533aSDimitry Andric 134095ec533aSDimitry Andric MachineBasicBlock::livein_iterator MachineBasicBlock::livein_begin() const { 134195ec533aSDimitry Andric assert(getParent()->getProperties().hasProperty( 134295ec533aSDimitry Andric MachineFunctionProperties::Property::TracksLiveness) && 134395ec533aSDimitry Andric "Liveness information is accurate"); 134495ec533aSDimitry Andric return LiveIns.begin(); 134595ec533aSDimitry Andric } 1346