blob: 5cc7ba69f9ca9f5223d4cbda0a16884a66231217 [file] [log] [blame]
Alkis Evlogimenos14f3fe82004-02-16 07:17:43 +00001//===-- llvm/CodeGen/MachineBasicBlock.cpp ----------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Alkis Evlogimenos14f3fe82004-02-16 07:17:43 +00007//
8//===----------------------------------------------------------------------===//
9//
10// Collect the sequence of machine instructions for a basic block.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/MachineBasicBlock.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm/ADT/SmallPtrSet.h"
16#include "llvm/ADT/SmallString.h"
Cameron Zwarichb47fb382013-02-11 09:24:47 +000017#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Dan Gohman3570f812010-06-22 17:25:57 +000018#include "llvm/CodeGen/LiveVariables.h"
19#include "llvm/CodeGen/MachineDominators.h"
Alkis Evlogimenos14f3fe82004-02-16 07:17:43 +000020#include "llvm/CodeGen/MachineFunction.h"
Jakob Stoklund Olesen533c3bf2013-07-03 23:56:20 +000021#include "llvm/CodeGen/MachineInstrBuilder.h"
Dan Gohman3570f812010-06-22 17:25:57 +000022#include "llvm/CodeGen/MachineLoopInfo.h"
Cameron Zwarichb47fb382013-02-11 09:24:47 +000023#include "llvm/CodeGen/MachineRegisterInfo.h"
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +000024#include "llvm/CodeGen/SlotIndexes.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000025#include "llvm/IR/BasicBlock.h"
26#include "llvm/IR/DataLayout.h"
Duncan P. N. Exon Smith326921542015-06-26 22:04:20 +000027#include "llvm/IR/ModuleSlotTracker.h"
Chris Lattnerd051af72010-01-26 04:55:51 +000028#include "llvm/MC/MCAsmInfo.h"
29#include "llvm/MC/MCContext.h"
Cong Hou663dd012015-12-13 09:52:14 +000030#include "llvm/Support/DataTypes.h"
David Greene6c56cef2010-01-04 23:22:07 +000031#include "llvm/Support/Debug.h"
Daniel Dunbar796e43e2009-07-24 10:36:58 +000032#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000033#include "llvm/Target/TargetInstrInfo.h"
34#include "llvm/Target/TargetMachine.h"
35#include "llvm/Target/TargetRegisterInfo.h"
Eric Christopherd9134482014-08-04 21:25:23 +000036#include "llvm/Target/TargetSubtargetInfo.h"
Chris Lattner4336b872004-10-26 15:43:42 +000037#include <algorithm>
Alkis Evlogimenos14f3fe82004-02-16 07:17:43 +000038using namespace llvm;
39
Chandler Carruthe96dd892014-04-21 22:55:11 +000040#define DEBUG_TYPE "codegen"
41
Cong Hou166e0852015-09-29 19:46:09 +000042MachineBasicBlock::MachineBasicBlock(MachineFunction &MF, const BasicBlock *B)
43 : BB(B), Number(-1), xParent(&MF) {
Dan Gohman804c95d2008-07-28 21:51:04 +000044 Insts.Parent = this;
Tanya Lattner91fa3a92004-05-24 07:14:35 +000045}
Tanya Lattner91fa3a92004-05-24 07:14:35 +000046
Dan Gohman0ece9432008-07-17 23:49:46 +000047MachineBasicBlock::~MachineBasicBlock() {
Dan Gohman0ece9432008-07-17 23:49:46 +000048}
49
Cong Hou2a02c1c2015-08-12 21:18:54 +000050/// Return the MCSymbol for this basic block.
Chris Lattner29bdac42010-03-13 21:04:28 +000051MCSymbol *MachineBasicBlock::getSymbol() const {
Eli Bendersky58b04b72013-04-22 21:21:08 +000052 if (!CachedMCSymbol) {
53 const MachineFunction *MF = getParent();
54 MCContext &Ctx = MF->getContext();
Matt Arsenault4e273432014-12-04 00:06:57 +000055 const char *Prefix = Ctx.getAsmInfo()->getPrivateLabelPrefix();
Reid Klecknerb9204a52015-11-11 23:09:31 +000056 assert(getNumber() >= 0 && "cannot get label for unreachable MBB");
Jim Grosbach6f482002015-05-18 18:43:14 +000057 CachedMCSymbol = Ctx.getOrCreateSymbol(Twine(Prefix) + "BB" +
Eli Bendersky58b04b72013-04-22 21:21:08 +000058 Twine(MF->getFunctionNumber()) +
59 "_" + Twine(getNumber()));
60 }
61
62 return CachedMCSymbol;
Chris Lattnerd051af72010-01-26 04:55:51 +000063}
64
65
Chris Lattneraf119ca2009-08-23 00:35:30 +000066raw_ostream &llvm::operator<<(raw_ostream &OS, const MachineBasicBlock &MBB) {
Daniel Dunbar796e43e2009-07-24 10:36:58 +000067 MBB.print(OS);
68 return OS;
69}
Tanya Lattner91fa3a92004-05-24 07:14:35 +000070
Cong Hou2a02c1c2015-08-12 21:18:54 +000071/// When an MBB is added to an MF, we need to update the parent pointer of the
72/// MBB, the MBB numbering, and any instructions in the MBB to be on the right
73/// operand list for registers.
Chris Lattner961e7422008-01-01 01:12:31 +000074///
75/// MBBs start out as #-1. When a MBB is added to a MachineFunction, it
76/// gets the next available unique MBB number. If it is removed from a
77/// MachineFunction, it goes back to being #-1.
Chris Lattneraf119ca2009-08-23 00:35:30 +000078void ilist_traits<MachineBasicBlock>::addNodeToList(MachineBasicBlock *N) {
Dan Gohman3b460302008-07-07 23:14:23 +000079 MachineFunction &MF = *N->getParent();
80 N->Number = MF.addToMBBNumbering(N);
Chris Lattner961e7422008-01-01 01:12:31 +000081
82 // Make sure the instructions have their operands in the reginfo lists.
Dan Gohman3b460302008-07-07 23:14:23 +000083 MachineRegisterInfo &RegInfo = MF.getRegInfo();
Evan Cheng7fae11b2011-12-14 02:11:42 +000084 for (MachineBasicBlock::instr_iterator
85 I = N->instr_begin(), E = N->instr_end(); I != E; ++I)
Chris Lattner961e7422008-01-01 01:12:31 +000086 I->AddRegOperandsToUseLists(RegInfo);
Brian Gaekecb5d22a2004-05-12 21:35:22 +000087}
88
Chris Lattneraf119ca2009-08-23 00:35:30 +000089void ilist_traits<MachineBasicBlock>::removeNodeFromList(MachineBasicBlock *N) {
Chris Lattner574e7162007-12-31 04:56:33 +000090 N->getParent()->removeFromMBBNumbering(N->Number);
Brian Gaekecb5d22a2004-05-12 21:35:22 +000091 N->Number = -1;
92}
93
Cong Hou2a02c1c2015-08-12 21:18:54 +000094/// When we add an instruction to a basic block list, we update its parent
95/// pointer and add its operands from reg use/def lists if appropriate.
Chris Lattneraf119ca2009-08-23 00:35:30 +000096void ilist_traits<MachineInstr>::addNodeToList(MachineInstr *N) {
Craig Topperc0196b12014-04-14 00:51:57 +000097 assert(!N->getParent() && "machine instruction already in a basic block");
Dan Gohman3b460302008-07-07 23:14:23 +000098 N->setParent(Parent);
Jakub Staszakfeadd432011-06-16 18:01:17 +000099
Dan Gohman3b460302008-07-07 23:14:23 +0000100 // Add the instruction's register operands to their corresponding
101 // use/def lists.
102 MachineFunction *MF = Parent->getParent();
103 N->AddRegOperandsToUseLists(MF->getRegInfo());
Alkis Evlogimenos14f3fe82004-02-16 07:17:43 +0000104}
105
Cong Hou2a02c1c2015-08-12 21:18:54 +0000106/// When we remove an instruction from a basic block list, we update its parent
107/// pointer and remove its operands from reg use/def lists if appropriate.
Chris Lattneraf119ca2009-08-23 00:35:30 +0000108void ilist_traits<MachineInstr>::removeNodeFromList(MachineInstr *N) {
Craig Topperc0196b12014-04-14 00:51:57 +0000109 assert(N->getParent() && "machine instruction not in a basic block");
Dan Gohman3b460302008-07-07 23:14:23 +0000110
111 // Remove from the use/def lists.
Jakob Stoklund Olesenc4102d42012-08-09 22:49:37 +0000112 if (MachineFunction *MF = N->getParent()->getParent())
113 N->RemoveRegOperandsFromUseLists(MF->getRegInfo());
Jakub Staszakfeadd432011-06-16 18:01:17 +0000114
Craig Topperc0196b12014-04-14 00:51:57 +0000115 N->setParent(nullptr);
Alkis Evlogimenos14f3fe82004-02-16 07:17:43 +0000116}
117
Cong Hou2a02c1c2015-08-12 21:18:54 +0000118/// When moving a range of instructions from one MBB list to another, we need to
119/// update the parent pointers and the use/def lists.
Chris Lattneraf119ca2009-08-23 00:35:30 +0000120void ilist_traits<MachineInstr>::
Cong Hou166e0852015-09-29 19:46:09 +0000121transferNodesFromList(ilist_traits<MachineInstr> &FromList,
122 ilist_iterator<MachineInstr> First,
123 ilist_iterator<MachineInstr> Last) {
124 assert(Parent->getParent() == FromList.Parent->getParent() &&
Dan Gohman804c95d2008-07-28 21:51:04 +0000125 "MachineInstr parent mismatch!");
126
Chris Lattner574e7162007-12-31 04:56:33 +0000127 // Splice within the same MBB -> no change.
Cong Hou166e0852015-09-29 19:46:09 +0000128 if (Parent == FromList.Parent) return;
Chris Lattner961e7422008-01-01 01:12:31 +0000129
130 // If splicing between two blocks within the same function, just update the
131 // parent pointers.
Cong Hou166e0852015-09-29 19:46:09 +0000132 for (; First != Last; ++First)
133 First->setParent(Parent);
Alkis Evlogimenos14f3fe82004-02-16 07:17:43 +0000134}
135
Dan Gohman804c95d2008-07-28 21:51:04 +0000136void ilist_traits<MachineInstr>::deleteNode(MachineInstr* MI) {
Dan Gohman3b460302008-07-07 23:14:23 +0000137 assert(!MI->getParent() && "MI is still in a block!");
138 Parent->getParent()->DeleteMachineInstr(MI);
139}
140
Dan Gohman88c547e2010-07-07 14:33:51 +0000141MachineBasicBlock::iterator MachineBasicBlock::getFirstNonPHI() {
Benjamin Kramerbaa41d42012-02-10 00:28:31 +0000142 instr_iterator I = instr_begin(), E = instr_end();
143 while (I != E && I->isPHI())
Dan Gohman88c547e2010-07-07 14:33:51 +0000144 ++I;
Akira Hatanaka6fe7aca2012-10-26 17:11:42 +0000145 assert((I == E || !I->isInsideBundle()) &&
146 "First non-phi MI cannot be inside a bundle!");
Dan Gohman88c547e2010-07-07 14:33:51 +0000147 return I;
148}
149
Jakob Stoklund Olesenef541852010-10-30 01:26:14 +0000150MachineBasicBlock::iterator
151MachineBasicBlock::SkipPHIsAndLabels(MachineBasicBlock::iterator I) {
Benjamin Kramerbaa41d42012-02-10 00:28:31 +0000152 iterator E = end();
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000153 while (I != E && (I->isPHI() || I->isPosition() || I->isDebugValue()))
Jakob Stoklund Olesenef541852010-10-30 01:26:14 +0000154 ++I;
Evan Cheng2a81dd42011-12-06 22:12:01 +0000155 // FIXME: This needs to change if we wish to bundle labels / dbg_values
156 // inside the bundle.
Akira Hatanaka6fe7aca2012-10-26 17:11:42 +0000157 assert((I == E || !I->isInsideBundle()) &&
Evan Cheng2a81dd42011-12-06 22:12:01 +0000158 "First non-phi / non-label instruction is inside a bundle!");
Jakob Stoklund Olesenef541852010-10-30 01:26:14 +0000159 return I;
160}
161
Chris Lattner4336b872004-10-26 15:43:42 +0000162MachineBasicBlock::iterator MachineBasicBlock::getFirstTerminator() {
Benjamin Kramerbaa41d42012-02-10 00:28:31 +0000163 iterator B = begin(), E = end(), I = E;
164 while (I != B && ((--I)->isTerminator() || I->isDebugValue()))
Jakob Stoklund Olesenc3810282011-01-14 02:12:54 +0000165 ; /*noop */
Benjamin Kramerbaa41d42012-02-10 00:28:31 +0000166 while (I != E && !I->isTerminator())
Evan Cheng2a81dd42011-12-06 22:12:01 +0000167 ++I;
168 return I;
169}
170
Evan Cheng7fae11b2011-12-14 02:11:42 +0000171MachineBasicBlock::instr_iterator MachineBasicBlock::getFirstInstrTerminator() {
Benjamin Kramerbaa41d42012-02-10 00:28:31 +0000172 instr_iterator B = instr_begin(), E = instr_end(), I = E;
173 while (I != B && ((--I)->isTerminator() || I->isDebugValue()))
Evan Cheng2a81dd42011-12-06 22:12:01 +0000174 ; /*noop */
Benjamin Kramerbaa41d42012-02-10 00:28:31 +0000175 while (I != E && !I->isTerminator())
Jakob Stoklund Olesenab3d6ec2011-01-14 06:33:45 +0000176 ++I;
Jakob Stoklund Olesenc3810282011-01-14 02:12:54 +0000177 return I;
Alkis Evlogimenosaf2de482004-02-23 18:14:48 +0000178}
179
Benjamin Kramer6b568962015-06-23 14:47:29 +0000180MachineBasicBlock::iterator MachineBasicBlock::getFirstNonDebugInstr() {
181 // Skip over begin-of-block dbg_value instructions.
182 iterator I = begin(), E = end();
183 while (I != E && I->isDebugValue())
184 ++I;
185 return I;
186}
187
Jakob Stoklund Olesen4bc5e382011-01-13 21:28:52 +0000188MachineBasicBlock::iterator MachineBasicBlock::getLastNonDebugInstr() {
Evan Cheng2a81dd42011-12-06 22:12:01 +0000189 // Skip over end-of-block dbg_value instructions.
Evan Cheng7fae11b2011-12-14 02:11:42 +0000190 instr_iterator B = instr_begin(), I = instr_end();
Jakob Stoklund Olesen4bc5e382011-01-13 21:28:52 +0000191 while (I != B) {
192 --I;
Evan Cheng2a81dd42011-12-06 22:12:01 +0000193 // Return instruction that starts a bundle.
194 if (I->isDebugValue() || I->isInsideBundle())
195 continue;
196 return I;
197 }
198 // The block is all debug values.
199 return end();
200}
201
Jakob Stoklund Olesen096bd882011-02-04 19:33:11 +0000202const MachineBasicBlock *MachineBasicBlock::getLandingPadSuccessor() const {
203 // A block with a landing pad successor only has one other successor.
204 if (succ_size() > 2)
Craig Topperc0196b12014-04-14 00:51:57 +0000205 return nullptr;
Jakob Stoklund Olesen096bd882011-02-04 19:33:11 +0000206 for (const_succ_iterator I = succ_begin(), E = succ_end(); I != E; ++I)
Reid Kleckner0e288232015-08-27 23:27:47 +0000207 if ((*I)->isEHPad())
Jakob Stoklund Olesen096bd882011-02-04 19:33:11 +0000208 return *I;
Craig Topperc0196b12014-04-14 00:51:57 +0000209 return nullptr;
Jakob Stoklund Olesen096bd882011-02-04 19:33:11 +0000210}
211
Reid Klecknered170792015-09-17 17:19:40 +0000212bool MachineBasicBlock::hasEHPadSuccessor() const {
213 for (const_succ_iterator I = succ_begin(), E = succ_end(); I != E; ++I)
214 if ((*I)->isEHPad())
215 return true;
216 return false;
217}
218
Manman Ren19f49ac2012-09-11 22:23:19 +0000219#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Yaron Kereneb2a2542016-01-29 20:50:44 +0000220LLVM_DUMP_METHOD void MachineBasicBlock::dump() const {
David Greene6c56cef2010-01-04 23:22:07 +0000221 print(dbgs());
Alkis Evlogimenos14f3fe82004-02-16 07:17:43 +0000222}
Manman Ren742534c2012-09-06 19:06:06 +0000223#endif
Alkis Evlogimenos14f3fe82004-02-16 07:17:43 +0000224
Jakob Stoklund Olesen2bbeaa82009-11-20 01:17:03 +0000225StringRef MachineBasicBlock::getName() const {
226 if (const BasicBlock *LBB = getBasicBlock())
227 return LBB->getName();
228 else
229 return "(null)";
230}
231
Andrew Trick320c7032012-03-07 00:18:18 +0000232/// Return a hopefully unique identifier for this block.
233std::string MachineBasicBlock::getFullName() const {
234 std::string Name;
235 if (getParent())
Craig Toppera538d832012-08-22 06:07:19 +0000236 Name = (getParent()->getName() + ":").str();
Andrew Trick320c7032012-03-07 00:18:18 +0000237 if (getBasicBlock())
238 Name += getBasicBlock()->getName();
239 else
Yaron Keren75e0c4b2015-03-27 17:51:30 +0000240 Name += ("BB" + Twine(getNumber())).str();
Andrew Trick320c7032012-03-07 00:18:18 +0000241 return Name;
242}
243
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000244void MachineBasicBlock::print(raw_ostream &OS, SlotIndexes *Indexes) const {
Evan Chengbcf1d7f2007-02-10 02:38:19 +0000245 const MachineFunction *MF = getParent();
Chris Lattneraf119ca2009-08-23 00:35:30 +0000246 if (!MF) {
Chris Lattner4336b872004-10-26 15:43:42 +0000247 OS << "Can't print out MachineBasicBlock because parent MachineFunction"
248 << " is null\n";
Tanya Lattnera578cb72004-05-24 06:11:51 +0000249 return;
250 }
Duncan P. N. Exon Smith326921542015-06-26 22:04:20 +0000251 const Function *F = MF->getFunction();
252 const Module *M = F ? F->getParent() : nullptr;
253 ModuleSlotTracker MST(M);
254 print(OS, MST, Indexes);
255}
256
257void MachineBasicBlock::print(raw_ostream &OS, ModuleSlotTracker &MST,
258 SlotIndexes *Indexes) const {
259 const MachineFunction *MF = getParent();
260 if (!MF) {
261 OS << "Can't print out MachineBasicBlock because parent MachineFunction"
262 << " is null\n";
263 return;
264 }
Alkis Evlogimenosfcb3f512004-09-05 18:39:20 +0000265
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000266 if (Indexes)
267 OS << Indexes->getMBBStartIdx(this) << '\t';
268
Dan Gohman34341e62009-10-31 20:19:03 +0000269 OS << "BB#" << getNumber() << ": ";
270
271 const char *Comma = "";
272 if (const BasicBlock *LBB = getBasicBlock()) {
273 OS << Comma << "derived from LLVM BB ";
Duncan P. N. Exon Smith326921542015-06-26 22:04:20 +0000274 LBB->printAsOperand(OS, /*PrintType=*/false, MST);
Dan Gohman34341e62009-10-31 20:19:03 +0000275 Comma = ", ";
276 }
Reid Kleckner0e288232015-08-27 23:27:47 +0000277 if (isEHPad()) { OS << Comma << "EH LANDING PAD"; Comma = ", "; }
Dan Gohman34341e62009-10-31 20:19:03 +0000278 if (hasAddressTaken()) { OS << Comma << "ADDRESS TAKEN"; Comma = ", "; }
Bill Wendling4fd96632012-06-15 19:30:42 +0000279 if (Alignment)
Jakob Stoklund Olesen2a2b37e2011-12-06 21:08:39 +0000280 OS << Comma << "Align " << Alignment << " (" << (1u << Alignment)
281 << " bytes)";
Jakob Stoklund Olesen2a2b37e2011-12-06 21:08:39 +0000282
Chris Lattneraf119ca2009-08-23 00:35:30 +0000283 OS << '\n';
Evan Chengbcf1d7f2007-02-10 02:38:19 +0000284
Eric Christopherfc6de422014-08-05 02:39:49 +0000285 const TargetRegisterInfo *TRI = MF->getSubtarget().getRegisterInfo();
Dan Gohmanc731c972007-10-03 19:26:29 +0000286 if (!livein_empty()) {
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000287 if (Indexes) OS << '\t';
Dan Gohman34341e62009-10-31 20:19:03 +0000288 OS << " Live Ins:";
Matthias Braund9da1622015-09-09 18:08:03 +0000289 for (const auto &LI : make_range(livein_begin(), livein_end())) {
290 OS << ' ' << PrintReg(LI.PhysReg, TRI);
291 if (LI.LaneMask != ~0u)
Matthias Braunc804cdb2015-09-25 21:51:24 +0000292 OS << ':' << PrintLaneMask(LI.LaneMask);
Matthias Braunb2b7ef12015-08-24 22:59:52 +0000293 }
Chris Lattneraf119ca2009-08-23 00:35:30 +0000294 OS << '\n';
Evan Chengbcf1d7f2007-02-10 02:38:19 +0000295 }
Chris Lattner9a1e91b2006-09-26 03:41:59 +0000296 // Print the preds of this block according to the CFG.
297 if (!pred_empty()) {
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000298 if (Indexes) OS << '\t';
Chris Lattner9a1e91b2006-09-26 03:41:59 +0000299 OS << " Predecessors according to CFG:";
300 for (const_pred_iterator PI = pred_begin(), E = pred_end(); PI != E; ++PI)
Dan Gohman34341e62009-10-31 20:19:03 +0000301 OS << " BB#" << (*PI)->getNumber();
Chris Lattneraf119ca2009-08-23 00:35:30 +0000302 OS << '\n';
Chris Lattner9a1e91b2006-09-26 03:41:59 +0000303 }
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000304
Evan Cheng7fae11b2011-12-14 02:11:42 +0000305 for (const_instr_iterator I = instr_begin(); I != instr_end(); ++I) {
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000306 if (Indexes) {
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000307 if (Indexes->hasIndex(&*I))
308 OS << Indexes->getInstructionIndex(&*I);
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000309 OS << '\t';
310 }
Chris Lattner1216f542009-08-23 00:47:04 +0000311 OS << '\t';
Evan Cheng7fae11b2011-12-14 02:11:42 +0000312 if (I->isInsideBundle())
313 OS << " * ";
Duncan P. N. Exon Smithf48e9822015-06-26 22:06:47 +0000314 I->print(OS, MST);
Alkis Evlogimenosfcb3f512004-09-05 18:39:20 +0000315 }
Chris Lattner329c14a2005-04-01 06:48:38 +0000316
317 // Print the successors of this block according to the CFG.
318 if (!succ_empty()) {
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000319 if (Indexes) OS << '\t';
Chris Lattner329c14a2005-04-01 06:48:38 +0000320 OS << " Successors according to CFG:";
Jakob Stoklund Olesen1dc107a2012-08-13 23:13:23 +0000321 for (const_succ_iterator SI = succ_begin(), E = succ_end(); SI != E; ++SI) {
Dan Gohman34341e62009-10-31 20:19:03 +0000322 OS << " BB#" << (*SI)->getNumber();
Cong Houd97c1002015-12-01 05:29:22 +0000323 if (!Probs.empty())
324 OS << '(' << *getProbabilityIterator(SI) << ')';
Jakob Stoklund Olesen1dc107a2012-08-13 23:13:23 +0000325 }
Chris Lattneraf119ca2009-08-23 00:35:30 +0000326 OS << '\n';
Chris Lattner329c14a2005-04-01 06:48:38 +0000327 }
Alkis Evlogimenos14f3fe82004-02-16 07:17:43 +0000328}
Chris Lattner4336b872004-10-26 15:43:42 +0000329
Cong Hou2793e722015-08-10 22:27:10 +0000330void MachineBasicBlock::printAsOperand(raw_ostream &OS,
331 bool /*PrintType*/) const {
Chandler Carruthd48cdbf2014-01-09 02:29:41 +0000332 OS << "BB#" << getNumber();
333}
334
Matthias Braune6a24852015-09-25 21:51:14 +0000335void MachineBasicBlock::removeLiveIn(MCPhysReg Reg, LaneBitmask LaneMask) {
Matthias Braund9da1622015-09-09 18:08:03 +0000336 LiveInVector::iterator I = std::find_if(
337 LiveIns.begin(), LiveIns.end(),
338 [Reg] (const RegisterMaskPair &LI) { return LI.PhysReg == Reg; });
339 if (I == LiveIns.end())
340 return;
341
342 I->LaneMask &= ~LaneMask;
343 if (I->LaneMask == 0)
Jakob Stoklund Olesen8e58c902012-03-28 20:11:42 +0000344 LiveIns.erase(I);
Evan Chengf7ed82d2007-02-19 21:49:54 +0000345}
346
Matthias Braune6a24852015-09-25 21:51:14 +0000347bool MachineBasicBlock::isLiveIn(MCPhysReg Reg, LaneBitmask LaneMask) const {
Matthias Braund9da1622015-09-09 18:08:03 +0000348 livein_iterator I = std::find_if(
349 LiveIns.begin(), LiveIns.end(),
350 [Reg] (const RegisterMaskPair &LI) { return LI.PhysReg == Reg; });
351 return I != livein_end() && (I->LaneMask & LaneMask) != 0;
352}
353
354void MachineBasicBlock::sortUniqueLiveIns() {
355 std::sort(LiveIns.begin(), LiveIns.end(),
356 [](const RegisterMaskPair &LI0, const RegisterMaskPair &LI1) {
357 return LI0.PhysReg < LI1.PhysReg;
358 });
359 // Liveins are sorted by physreg now we can merge their lanemasks.
360 LiveInVector::const_iterator I = LiveIns.begin();
361 LiveInVector::const_iterator J;
362 LiveInVector::iterator Out = LiveIns.begin();
363 for (; I != LiveIns.end(); ++Out, I = J) {
364 unsigned PhysReg = I->PhysReg;
Matthias Braune6a24852015-09-25 21:51:14 +0000365 LaneBitmask LaneMask = I->LaneMask;
Matthias Braund9da1622015-09-09 18:08:03 +0000366 for (J = std::next(I); J != LiveIns.end() && J->PhysReg == PhysReg; ++J)
367 LaneMask |= J->LaneMask;
368 Out->PhysReg = PhysReg;
369 Out->LaneMask = LaneMask;
370 }
371 LiveIns.erase(Out, LiveIns.end());
Aaron Ballman9f154f62015-07-29 15:57:49 +0000372}
373
Jakob Stoklund Olesen533c3bf2013-07-03 23:56:20 +0000374unsigned
Matthias Braun130bd902015-08-25 22:05:55 +0000375MachineBasicBlock::addLiveIn(MCPhysReg PhysReg, const TargetRegisterClass *RC) {
Jakob Stoklund Olesen533c3bf2013-07-03 23:56:20 +0000376 assert(getParent() && "MBB must be inserted in function");
377 assert(TargetRegisterInfo::isPhysicalRegister(PhysReg) && "Expected physreg");
378 assert(RC && "Register class is required");
Reid Kleckner0e288232015-08-27 23:27:47 +0000379 assert((isEHPad() || this == &getParent()->front()) &&
Jakob Stoklund Olesen533c3bf2013-07-03 23:56:20 +0000380 "Only the entry block and landing pads can have physreg live ins");
381
382 bool LiveIn = isLiveIn(PhysReg);
Jakob Stoklund Olesenbbbb5322013-07-04 04:32:35 +0000383 iterator I = SkipPHIsAndLabels(begin()), E = end();
Jakob Stoklund Olesen533c3bf2013-07-03 23:56:20 +0000384 MachineRegisterInfo &MRI = getParent()->getRegInfo();
Eric Christopherfc6de422014-08-05 02:39:49 +0000385 const TargetInstrInfo &TII = *getParent()->getSubtarget().getInstrInfo();
Jakob Stoklund Olesen533c3bf2013-07-03 23:56:20 +0000386
387 // Look for an existing copy.
388 if (LiveIn)
389 for (;I != E && I->isCopy(); ++I)
390 if (I->getOperand(1).getReg() == PhysReg) {
391 unsigned VirtReg = I->getOperand(0).getReg();
392 if (!MRI.constrainRegClass(VirtReg, RC))
393 llvm_unreachable("Incompatible live-in register class.");
394 return VirtReg;
395 }
396
397 // No luck, create a virtual register.
398 unsigned VirtReg = MRI.createVirtualRegister(RC);
399 BuildMI(*this, I, DebugLoc(), TII.get(TargetOpcode::COPY), VirtReg)
400 .addReg(PhysReg, RegState::Kill);
401 if (!LiveIn)
402 addLiveIn(PhysReg);
403 return VirtReg;
404}
405
Chris Lattner94866be2006-10-24 00:02:26 +0000406void MachineBasicBlock::moveBefore(MachineBasicBlock *NewAfter) {
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000407 getParent()->splice(NewAfter->getIterator(), getIterator());
Chris Lattner94866be2006-10-24 00:02:26 +0000408}
409
410void MachineBasicBlock::moveAfter(MachineBasicBlock *NewBefore) {
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000411 getParent()->splice(++NewBefore->getIterator(), getIterator());
Chris Lattner94866be2006-10-24 00:02:26 +0000412}
413
Jim Grosbach801b33b2009-11-12 03:55:33 +0000414void MachineBasicBlock::updateTerminator() {
Eric Christopherfc6de422014-08-05 02:39:49 +0000415 const TargetInstrInfo *TII = getParent()->getSubtarget().getInstrInfo();
Jim Grosbach801b33b2009-11-12 03:55:33 +0000416 // A block with no successors has no concerns with fall-through edges.
417 if (this->succ_empty()) return;
418
Craig Topperc0196b12014-04-14 00:51:57 +0000419 MachineBasicBlock *TBB = nullptr, *FBB = nullptr;
Jim Grosbach801b33b2009-11-12 03:55:33 +0000420 SmallVector<MachineOperand, 4> Cond;
Cong Hou166e0852015-09-29 19:46:09 +0000421 DebugLoc DL; // FIXME: this is nowhere
Jim Grosbach801b33b2009-11-12 03:55:33 +0000422 bool B = TII->AnalyzeBranch(*this, TBB, FBB, Cond);
423 (void) B;
424 assert(!B && "UpdateTerminators requires analyzable predecessors!");
425 if (Cond.empty()) {
426 if (TBB) {
427 // The block has an unconditional branch. If its successor is now
428 // its layout successor, delete the branch.
429 if (isLayoutSuccessor(TBB))
430 TII->RemoveBranch(*this);
431 } else {
432 // The block has an unconditional fallthrough. If its successor is not
Chandler Carruthee54feb2011-11-22 13:13:16 +0000433 // its layout successor, insert a branch. First we have to locate the
434 // only non-landing-pad successor, as that is the fallthrough block.
435 for (succ_iterator SI = succ_begin(), SE = succ_end(); SI != SE; ++SI) {
Reid Kleckner0e288232015-08-27 23:27:47 +0000436 if ((*SI)->isEHPad())
Chandler Carruthee54feb2011-11-22 13:13:16 +0000437 continue;
438 assert(!TBB && "Found more than one non-landing-pad successor!");
439 TBB = *SI;
440 }
Chandler Carruth8c68f1f2011-11-23 08:23:54 +0000441
442 // If there is no non-landing-pad successor, the block has no
443 // fall-through edges to be concerned with.
444 if (!TBB)
445 return;
446
447 // Finally update the unconditional successor to be reached via a branch
448 // if it would not be reached by fallthrough.
Jim Grosbach801b33b2009-11-12 03:55:33 +0000449 if (!isLayoutSuccessor(TBB))
Cong Hou166e0852015-09-29 19:46:09 +0000450 TII->InsertBranch(*this, TBB, nullptr, Cond, DL);
Jim Grosbach801b33b2009-11-12 03:55:33 +0000451 }
452 } else {
453 if (FBB) {
454 // The block has a non-fallthrough conditional branch. If one of its
455 // successors is its layout successor, rewrite it to a fallthrough
456 // conditional branch.
457 if (isLayoutSuccessor(TBB)) {
Jakob Stoklund Olesen8a3fdae2009-11-22 18:28:04 +0000458 if (TII->ReverseBranchCondition(Cond))
459 return;
Jim Grosbach801b33b2009-11-12 03:55:33 +0000460 TII->RemoveBranch(*this);
Cong Hou166e0852015-09-29 19:46:09 +0000461 TII->InsertBranch(*this, FBB, nullptr, Cond, DL);
Jim Grosbach801b33b2009-11-12 03:55:33 +0000462 } else if (isLayoutSuccessor(FBB)) {
463 TII->RemoveBranch(*this);
Cong Hou166e0852015-09-29 19:46:09 +0000464 TII->InsertBranch(*this, TBB, nullptr, Cond, DL);
Jim Grosbach801b33b2009-11-12 03:55:33 +0000465 }
466 } else {
Chandler Carruth1f5580b2012-04-16 22:03:00 +0000467 // Walk through the successors and find the successor which is not
468 // a landing pad and is not the conditional branch destination (in TBB)
469 // as the fallthrough successor.
Craig Topperc0196b12014-04-14 00:51:57 +0000470 MachineBasicBlock *FallthroughBB = nullptr;
Chandler Carruth1f5580b2012-04-16 22:03:00 +0000471 for (succ_iterator SI = succ_begin(), SE = succ_end(); SI != SE; ++SI) {
Reid Kleckner0e288232015-08-27 23:27:47 +0000472 if ((*SI)->isEHPad() || *SI == TBB)
Chandler Carruth1f5580b2012-04-16 22:03:00 +0000473 continue;
474 assert(!FallthroughBB && "Found more than one fallthrough successor.");
475 FallthroughBB = *SI;
476 }
477 if (!FallthroughBB && canFallThrough()) {
478 // We fallthrough to the same basic block as the conditional jump
479 // targets. Remove the conditional jump, leaving unconditional
480 // fallthrough.
Cong Hou2793e722015-08-10 22:27:10 +0000481 // FIXME: This does not seem like a reasonable pattern to support, but
482 // it has been seen in the wild coming out of degenerate ARM test cases.
Chandler Carruth1f5580b2012-04-16 22:03:00 +0000483 TII->RemoveBranch(*this);
484
485 // Finally update the unconditional successor to be reached via a branch
486 // if it would not be reached by fallthrough.
487 if (!isLayoutSuccessor(TBB))
Cong Hou166e0852015-09-29 19:46:09 +0000488 TII->InsertBranch(*this, TBB, nullptr, Cond, DL);
Chandler Carruth1f5580b2012-04-16 22:03:00 +0000489 return;
490 }
491
Jim Grosbach801b33b2009-11-12 03:55:33 +0000492 // The block has a fallthrough conditional branch.
Jim Grosbach801b33b2009-11-12 03:55:33 +0000493 if (isLayoutSuccessor(TBB)) {
Jakob Stoklund Olesen8a3fdae2009-11-22 18:28:04 +0000494 if (TII->ReverseBranchCondition(Cond)) {
495 // We can't reverse the condition, add an unconditional branch.
496 Cond.clear();
Cong Hou166e0852015-09-29 19:46:09 +0000497 TII->InsertBranch(*this, FallthroughBB, nullptr, Cond, DL);
Jakob Stoklund Olesen8a3fdae2009-11-22 18:28:04 +0000498 return;
499 }
Jim Grosbach801b33b2009-11-12 03:55:33 +0000500 TII->RemoveBranch(*this);
Cong Hou166e0852015-09-29 19:46:09 +0000501 TII->InsertBranch(*this, FallthroughBB, nullptr, Cond, DL);
Chandler Carruth1f5580b2012-04-16 22:03:00 +0000502 } else if (!isLayoutSuccessor(FallthroughBB)) {
Jim Grosbach801b33b2009-11-12 03:55:33 +0000503 TII->RemoveBranch(*this);
Cong Hou166e0852015-09-29 19:46:09 +0000504 TII->InsertBranch(*this, TBB, FallthroughBB, Cond, DL);
Jim Grosbach801b33b2009-11-12 03:55:33 +0000505 }
506 }
507 }
508}
Chris Lattner94866be2006-10-24 00:02:26 +0000509
Cong Houc1069892015-12-13 09:26:17 +0000510void MachineBasicBlock::validateSuccProbs() const {
511#ifndef NDEBUG
512 int64_t Sum = 0;
513 for (auto Prob : Probs)
514 Sum += Prob.getNumerator();
515 // Due to precision issue, we assume that the sum of probabilities is one if
516 // the difference between the sum of their numerators and the denominator is
517 // no greater than the number of successors.
Cong Houc00e65a2015-12-13 17:00:25 +0000518 assert((uint64_t)std::abs(Sum - BranchProbability::getDenominator()) <=
Cong Houc1069892015-12-13 09:26:17 +0000519 Probs.size() &&
520 "The sum of successors's probabilities exceeds one.");
521#endif // NDEBUG
522}
523
Cong Hou23a3bf02015-11-04 21:37:58 +0000524void MachineBasicBlock::addSuccessor(MachineBasicBlock *Succ,
525 BranchProbability Prob) {
526 // Probability list is either empty (if successor list isn't empty, this means
527 // disabled optimization) or has the same size as successor list.
Cong Hou4aef7ef2015-12-01 11:05:39 +0000528 if (!(Probs.empty() && !Successors.empty()))
Cong Hou23a3bf02015-11-04 21:37:58 +0000529 Probs.push_back(Prob);
530 Successors.push_back(Succ);
531 Succ->addPredecessor(this);
532}
533
534void MachineBasicBlock::addSuccessorWithoutProb(MachineBasicBlock *Succ) {
535 // We need to make sure probability list is either empty or has the same size
536 // of successor list. When this function is called, we can safely delete all
537 // probability in the list.
538 Probs.clear();
539 Successors.push_back(Succ);
540 Succ->addPredecessor(this);
541}
542
Cong Houc1069892015-12-13 09:26:17 +0000543void MachineBasicBlock::removeSuccessor(MachineBasicBlock *Succ,
544 bool NormalizeSuccProbs) {
Cong Hou166e0852015-09-29 19:46:09 +0000545 succ_iterator I = std::find(Successors.begin(), Successors.end(), Succ);
Cong Houc1069892015-12-13 09:26:17 +0000546 removeSuccessor(I, NormalizeSuccProbs);
Chris Lattner4336b872004-10-26 15:43:42 +0000547}
548
Jakub Staszakfeadd432011-06-16 18:01:17 +0000549MachineBasicBlock::succ_iterator
Cong Houc1069892015-12-13 09:26:17 +0000550MachineBasicBlock::removeSuccessor(succ_iterator I, bool NormalizeSuccProbs) {
Chris Lattner4336b872004-10-26 15:43:42 +0000551 assert(I != Successors.end() && "Not a current successor!");
Jakub Staszak12a43bd2011-06-16 20:22:37 +0000552
Cong Hou23a3bf02015-11-04 21:37:58 +0000553 // If probability list is empty it means we don't use it (disabled
554 // optimization).
555 if (!Probs.empty()) {
556 probability_iterator WI = getProbabilityIterator(I);
557 Probs.erase(WI);
Cong Houc1069892015-12-13 09:26:17 +0000558 if (NormalizeSuccProbs)
559 normalizeSuccProbs();
Cong Hou23a3bf02015-11-04 21:37:58 +0000560 }
561
Chris Lattner4336b872004-10-26 15:43:42 +0000562 (*I)->removePredecessor(this);
Dan Gohmanf87dc922009-01-08 22:19:34 +0000563 return Successors.erase(I);
Chris Lattner4336b872004-10-26 15:43:42 +0000564}
565
Jakub Staszak12a43bd2011-06-16 20:22:37 +0000566void MachineBasicBlock::replaceSuccessor(MachineBasicBlock *Old,
567 MachineBasicBlock *New) {
Jakob Stoklund Olesen8c28ac92012-08-10 03:23:27 +0000568 if (Old == New)
569 return;
Jakub Staszak12a43bd2011-06-16 20:22:37 +0000570
Jakob Stoklund Olesen8c28ac92012-08-10 03:23:27 +0000571 succ_iterator E = succ_end();
572 succ_iterator NewI = E;
573 succ_iterator OldI = E;
574 for (succ_iterator I = succ_begin(); I != E; ++I) {
575 if (*I == Old) {
576 OldI = I;
577 if (NewI != E)
578 break;
579 }
580 if (*I == New) {
581 NewI = I;
582 if (OldI != E)
583 break;
584 }
585 }
586 assert(OldI != E && "Old is not a successor of this block");
Jakob Stoklund Olesen8c28ac92012-08-10 03:23:27 +0000587
588 // If New isn't already a successor, let it take Old's place.
589 if (NewI == E) {
Cong Hou11c14202015-11-18 01:45:10 +0000590 Old->removePredecessor(this);
Jakob Stoklund Olesen8c28ac92012-08-10 03:23:27 +0000591 New->addPredecessor(this);
592 *OldI = New;
593 return;
Jakub Staszak12a43bd2011-06-16 20:22:37 +0000594 }
595
Jakob Stoklund Olesen8c28ac92012-08-10 03:23:27 +0000596 // New is already a successor.
Cong Hou23a3bf02015-11-04 21:37:58 +0000597 // Update its probability instead of adding a duplicate edge.
Cong Houd97c1002015-12-01 05:29:22 +0000598 if (!Probs.empty()) {
599 auto ProbIter = getProbabilityIterator(NewI);
600 if (!ProbIter->isUnknown())
601 *ProbIter += *getProbabilityIterator(OldI);
602 }
Cong Hou11c14202015-11-18 01:45:10 +0000603 removeSuccessor(OldI);
Jakub Staszak12a43bd2011-06-16 20:22:37 +0000604}
605
Cong Hou166e0852015-09-29 19:46:09 +0000606void MachineBasicBlock::addPredecessor(MachineBasicBlock *Pred) {
607 Predecessors.push_back(Pred);
Chris Lattner4336b872004-10-26 15:43:42 +0000608}
609
Cong Hou166e0852015-09-29 19:46:09 +0000610void MachineBasicBlock::removePredecessor(MachineBasicBlock *Pred) {
611 pred_iterator I = std::find(Predecessors.begin(), Predecessors.end(), Pred);
Chris Lattner4336b872004-10-26 15:43:42 +0000612 assert(I != Predecessors.end() && "Pred is not a predecessor of this block!");
613 Predecessors.erase(I);
614}
Evan Chenga92b2b32007-05-17 23:58:53 +0000615
Cong Hou166e0852015-09-29 19:46:09 +0000616void MachineBasicBlock::transferSuccessors(MachineBasicBlock *FromMBB) {
617 if (this == FromMBB)
Mon P Wang3e583932008-05-05 19:05:59 +0000618 return;
Jakub Staszakfeadd432011-06-16 18:01:17 +0000619
Cong Hou166e0852015-09-29 19:46:09 +0000620 while (!FromMBB->succ_empty()) {
621 MachineBasicBlock *Succ = *FromMBB->succ_begin();
Jakub Staszak12a43bd2011-06-16 20:22:37 +0000622
Cong Houd97c1002015-12-01 05:29:22 +0000623 // If probability list is empty it means we don't use it (disabled optimization).
624 if (!FromMBB->Probs.empty()) {
625 auto Prob = *FromMBB->Probs.begin();
626 addSuccessor(Succ, Prob);
627 } else
628 addSuccessorWithoutProb(Succ);
Jakub Staszak12a43bd2011-06-16 20:22:37 +0000629
Cong Hou166e0852015-09-29 19:46:09 +0000630 FromMBB->removeSuccessor(Succ);
Dan Gohman34396292010-07-06 20:24:04 +0000631 }
632}
633
634void
Cong Hou166e0852015-09-29 19:46:09 +0000635MachineBasicBlock::transferSuccessorsAndUpdatePHIs(MachineBasicBlock *FromMBB) {
636 if (this == FromMBB)
Dan Gohman34396292010-07-06 20:24:04 +0000637 return;
Jakub Staszakfeadd432011-06-16 18:01:17 +0000638
Cong Hou166e0852015-09-29 19:46:09 +0000639 while (!FromMBB->succ_empty()) {
640 MachineBasicBlock *Succ = *FromMBB->succ_begin();
Cong Houd97c1002015-12-01 05:29:22 +0000641 if (!FromMBB->Probs.empty()) {
642 auto Prob = *FromMBB->Probs.begin();
643 addSuccessor(Succ, Prob);
644 } else
645 addSuccessorWithoutProb(Succ);
Cong Hou166e0852015-09-29 19:46:09 +0000646 FromMBB->removeSuccessor(Succ);
Dan Gohman34396292010-07-06 20:24:04 +0000647
648 // Fix up any PHI nodes in the successor.
Evan Cheng7fae11b2011-12-14 02:11:42 +0000649 for (MachineBasicBlock::instr_iterator MI = Succ->instr_begin(),
650 ME = Succ->instr_end(); MI != ME && MI->isPHI(); ++MI)
Dan Gohman34396292010-07-06 20:24:04 +0000651 for (unsigned i = 2, e = MI->getNumOperands()+1; i != e; i += 2) {
652 MachineOperand &MO = MI->getOperand(i);
Cong Hou166e0852015-09-29 19:46:09 +0000653 if (MO.getMBB() == FromMBB)
Dan Gohman34396292010-07-06 20:24:04 +0000654 MO.setMBB(this);
655 }
656 }
Cong Houc1069892015-12-13 09:26:17 +0000657 normalizeSuccProbs();
Mon P Wang3e583932008-05-05 19:05:59 +0000658}
659
Jakob Stoklund Olesenfee94ca2012-07-30 17:36:47 +0000660bool MachineBasicBlock::isPredecessor(const MachineBasicBlock *MBB) const {
661 return std::find(pred_begin(), pred_end(), MBB) != pred_end();
662}
663
Dan Gohmanff62c622009-03-30 20:06:29 +0000664bool MachineBasicBlock::isSuccessor(const MachineBasicBlock *MBB) const {
Jakob Stoklund Olesenfee94ca2012-07-30 17:36:47 +0000665 return std::find(succ_begin(), succ_end(), MBB) != succ_end();
Evan Chenga92b2b32007-05-17 23:58:53 +0000666}
Evan Chengdf757852007-06-04 06:44:01 +0000667
Dan Gohmanff62c622009-03-30 20:06:29 +0000668bool MachineBasicBlock::isLayoutSuccessor(const MachineBasicBlock *MBB) const {
Dan Gohmana78bae32008-10-02 22:09:09 +0000669 MachineFunction::const_iterator I(this);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000670 return std::next(I) == MachineFunction::const_iterator(MBB);
Dan Gohmana78bae32008-10-02 22:09:09 +0000671}
672
Bob Wilson2d4ff122009-11-26 00:32:21 +0000673bool MachineBasicBlock::canFallThrough() {
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000674 MachineFunction::iterator Fallthrough = getIterator();
Bob Wilson2d4ff122009-11-26 00:32:21 +0000675 ++Fallthrough;
676 // If FallthroughBlock is off the end of the function, it can't fall through.
677 if (Fallthrough == getParent()->end())
678 return false;
679
680 // If FallthroughBlock isn't a successor, no fallthrough is possible.
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000681 if (!isSuccessor(&*Fallthrough))
Bob Wilson2d4ff122009-11-26 00:32:21 +0000682 return false;
683
Dan Gohman0b44cb02009-12-05 00:32:59 +0000684 // Analyze the branches, if any, at the end of the block.
Craig Topperc0196b12014-04-14 00:51:57 +0000685 MachineBasicBlock *TBB = nullptr, *FBB = nullptr;
Dan Gohman0b44cb02009-12-05 00:32:59 +0000686 SmallVector<MachineOperand, 4> Cond;
Eric Christopherfc6de422014-08-05 02:39:49 +0000687 const TargetInstrInfo *TII = getParent()->getSubtarget().getInstrInfo();
Jakob Stoklund Olesen834d70d2010-01-15 20:00:12 +0000688 if (TII->AnalyzeBranch(*this, TBB, FBB, Cond)) {
Dan Gohman0b44cb02009-12-05 00:32:59 +0000689 // If we couldn't analyze the branch, examine the last instruction.
690 // If the block doesn't end in a known control barrier, assume fallthrough
Chad Rosier1a1531d2012-01-26 18:24:25 +0000691 // is possible. The isPredicated check is needed because this code can be
Dan Gohman0b44cb02009-12-05 00:32:59 +0000692 // called during IfConversion, where an instruction which is normally a
Chad Rosier9b61cf32012-01-26 20:19:05 +0000693 // Barrier is predicated and thus no longer an actual control barrier.
Chad Rosier1a1531d2012-01-26 18:24:25 +0000694 return empty() || !back().isBarrier() || TII->isPredicated(&back());
Dan Gohman0b44cb02009-12-05 00:32:59 +0000695 }
Bob Wilson2d4ff122009-11-26 00:32:21 +0000696
697 // If there is no branch, control always falls through.
Craig Topperc0196b12014-04-14 00:51:57 +0000698 if (!TBB) return true;
Bob Wilson2d4ff122009-11-26 00:32:21 +0000699
700 // If there is some explicit branch to the fallthrough block, it can obviously
701 // reach, even though the branch should get folded to fall through implicitly.
702 if (MachineFunction::iterator(TBB) == Fallthrough ||
703 MachineFunction::iterator(FBB) == Fallthrough)
704 return true;
705
706 // If it's an unconditional branch to some block not the fall through, it
707 // doesn't fall through.
708 if (Cond.empty()) return false;
709
710 // Otherwise, if it is conditional and has no explicit false block, it falls
711 // through.
Craig Topperc0196b12014-04-14 00:51:57 +0000712 return FBB == nullptr;
Bob Wilson2d4ff122009-11-26 00:32:21 +0000713}
714
Dan Gohman3570f812010-06-22 17:25:57 +0000715MachineBasicBlock *
716MachineBasicBlock::SplitCriticalEdge(MachineBasicBlock *Succ, Pass *P) {
Evan Cheng2d14d8a2012-04-24 19:06:55 +0000717 // Splitting the critical edge to a landing pad block is non-trivial. Don't do
718 // it in this generic function.
Reid Kleckner0e288232015-08-27 23:27:47 +0000719 if (Succ->isEHPad())
Craig Topperc0196b12014-04-14 00:51:57 +0000720 return nullptr;
Evan Cheng2d14d8a2012-04-24 19:06:55 +0000721
Dan Gohman3570f812010-06-22 17:25:57 +0000722 MachineFunction *MF = getParent();
Cong Hou166e0852015-09-29 19:46:09 +0000723 DebugLoc DL; // FIXME: this is nowhere
Dan Gohman3570f812010-06-22 17:25:57 +0000724
Vincent Lejeune92b0a642013-12-07 01:49:19 +0000725 // Performance might be harmed on HW that implements branching using exec mask
726 // where both sides of the branches are always executed.
727 if (MF->getTarget().requiresStructuredCFG())
Craig Topperc0196b12014-04-14 00:51:57 +0000728 return nullptr;
Vincent Lejeune92b0a642013-12-07 01:49:19 +0000729
Jakob Stoklund Olesenea263192010-11-02 00:58:37 +0000730 // We may need to update this's terminator, but we can't do that if
731 // AnalyzeBranch fails. If this uses a jump table, we won't touch it.
Eric Christopherfc6de422014-08-05 02:39:49 +0000732 const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo();
Craig Topperc0196b12014-04-14 00:51:57 +0000733 MachineBasicBlock *TBB = nullptr, *FBB = nullptr;
Dan Gohman3570f812010-06-22 17:25:57 +0000734 SmallVector<MachineOperand, 4> Cond;
735 if (TII->AnalyzeBranch(*this, TBB, FBB, Cond))
Craig Topperc0196b12014-04-14 00:51:57 +0000736 return nullptr;
Dan Gohman3570f812010-06-22 17:25:57 +0000737
Jakob Stoklund Olesenea263192010-11-02 00:58:37 +0000738 // Avoid bugpoint weirdness: A block may end with a conditional branch but
739 // jumps to the same MBB is either case. We have duplicate CFG edges in that
740 // case that we can't handle. Since this never happens in properly optimized
741 // code, just skip those edges.
742 if (TBB && TBB == FBB) {
743 DEBUG(dbgs() << "Won't split critical edge after degenerate BB#"
744 << getNumber() << '\n');
Craig Topperc0196b12014-04-14 00:51:57 +0000745 return nullptr;
Jakob Stoklund Olesenea263192010-11-02 00:58:37 +0000746 }
747
Dan Gohman3570f812010-06-22 17:25:57 +0000748 MachineBasicBlock *NMBB = MF->CreateMachineBasicBlock();
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000749 MF->insert(std::next(MachineFunction::iterator(this)), NMBB);
Evan Chenga6848242010-08-17 17:15:14 +0000750 DEBUG(dbgs() << "Splitting critical edge:"
Dan Gohman3570f812010-06-22 17:25:57 +0000751 " BB#" << getNumber()
752 << " -- BB#" << NMBB->getNumber()
753 << " -- BB#" << Succ->getNumber() << '\n');
Cameron Zwarichcdcab382013-02-12 03:49:20 +0000754
755 LiveIntervals *LIS = P->getAnalysisIfAvailable<LiveIntervals>();
Cameron Zwarich21beaf62013-02-10 23:29:54 +0000756 SlotIndexes *Indexes = P->getAnalysisIfAvailable<SlotIndexes>();
Cameron Zwarichcdcab382013-02-12 03:49:20 +0000757 if (LIS)
758 LIS->insertMBBInMaps(NMBB);
759 else if (Indexes)
Cameron Zwarich21beaf62013-02-10 23:29:54 +0000760 Indexes->insertMBBInMaps(NMBB);
Dan Gohman3570f812010-06-22 17:25:57 +0000761
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000762 // On some targets like Mips, branches may kill virtual registers. Make sure
763 // that LiveVariables is properly updated after updateTerminator replaces the
764 // terminators.
765 LiveVariables *LV = P->getAnalysisIfAvailable<LiveVariables>();
766
767 // Collect a list of virtual registers killed by the terminators.
768 SmallVector<unsigned, 4> KilledRegs;
769 if (LV)
Evan Cheng7fae11b2011-12-14 02:11:42 +0000770 for (instr_iterator I = getFirstInstrTerminator(), E = instr_end();
Evan Cheng2a81dd42011-12-06 22:12:01 +0000771 I != E; ++I) {
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000772 MachineInstr *MI = &*I;
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000773 for (MachineInstr::mop_iterator OI = MI->operands_begin(),
774 OE = MI->operands_end(); OI != OE; ++OI) {
Lang Hamesedeea172012-02-09 05:59:36 +0000775 if (!OI->isReg() || OI->getReg() == 0 ||
776 !OI->isUse() || !OI->isKill() || OI->isUndef())
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000777 continue;
778 unsigned Reg = OI->getReg();
Lang Hamesedeea172012-02-09 05:59:36 +0000779 if (TargetRegisterInfo::isPhysicalRegister(Reg) ||
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000780 LV->getVarInfo(Reg).removeKill(MI)) {
781 KilledRegs.push_back(Reg);
782 DEBUG(dbgs() << "Removing terminator kill: " << *MI);
783 OI->setIsKill(false);
784 }
785 }
786 }
787
Cameron Zwarichbfebb412013-02-17 00:10:44 +0000788 SmallVector<unsigned, 4> UsedRegs;
789 if (LIS) {
790 for (instr_iterator I = getFirstInstrTerminator(), E = instr_end();
791 I != E; ++I) {
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000792 MachineInstr *MI = &*I;
Cameron Zwarichbfebb412013-02-17 00:10:44 +0000793
794 for (MachineInstr::mop_iterator OI = MI->operands_begin(),
795 OE = MI->operands_end(); OI != OE; ++OI) {
796 if (!OI->isReg() || OI->getReg() == 0)
797 continue;
798
799 unsigned Reg = OI->getReg();
800 if (std::find(UsedRegs.begin(), UsedRegs.end(), Reg) == UsedRegs.end())
801 UsedRegs.push_back(Reg);
802 }
803 }
804 }
805
Dan Gohman3570f812010-06-22 17:25:57 +0000806 ReplaceUsesOfBlockWith(Succ, NMBB);
Cameron Zwarichba378ce2013-02-11 09:24:45 +0000807
808 // If updateTerminator() removes instructions, we need to remove them from
809 // SlotIndexes.
810 SmallVector<MachineInstr*, 4> Terminators;
811 if (Indexes) {
812 for (instr_iterator I = getFirstInstrTerminator(), E = instr_end();
813 I != E; ++I)
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000814 Terminators.push_back(&*I);
Cameron Zwarichba378ce2013-02-11 09:24:45 +0000815 }
816
Dan Gohman3570f812010-06-22 17:25:57 +0000817 updateTerminator();
818
Cameron Zwarichba378ce2013-02-11 09:24:45 +0000819 if (Indexes) {
820 SmallVector<MachineInstr*, 4> NewTerminators;
821 for (instr_iterator I = getFirstInstrTerminator(), E = instr_end();
822 I != E; ++I)
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000823 NewTerminators.push_back(&*I);
Cameron Zwarichba378ce2013-02-11 09:24:45 +0000824
825 for (SmallVectorImpl<MachineInstr*>::iterator I = Terminators.begin(),
826 E = Terminators.end(); I != E; ++I) {
827 if (std::find(NewTerminators.begin(), NewTerminators.end(), *I) ==
828 NewTerminators.end())
829 Indexes->removeMachineInstrFromMaps(*I);
830 }
831 }
832
Dan Gohman3570f812010-06-22 17:25:57 +0000833 // Insert unconditional "jump Succ" instruction in NMBB if necessary.
834 NMBB->addSuccessor(Succ);
835 if (!NMBB->isLayoutSuccessor(Succ)) {
836 Cond.clear();
Cong Hou166e0852015-09-29 19:46:09 +0000837 TII->InsertBranch(*NMBB, Succ, nullptr, Cond, DL);
Cameron Zwarich21beaf62013-02-10 23:29:54 +0000838
839 if (Indexes) {
840 for (instr_iterator I = NMBB->instr_begin(), E = NMBB->instr_end();
841 I != E; ++I) {
842 // Some instructions may have been moved to NMBB by updateTerminator(),
843 // so we first remove any instruction that already has an index.
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000844 if (Indexes->hasIndex(&*I))
845 Indexes->removeMachineInstrFromMaps(&*I);
846 Indexes->insertMachineInstrInMaps(&*I);
Cameron Zwarich21beaf62013-02-10 23:29:54 +0000847 }
848 }
Dan Gohman3570f812010-06-22 17:25:57 +0000849 }
850
851 // Fix PHI nodes in Succ so they refer to NMBB instead of this
Evan Cheng7fae11b2011-12-14 02:11:42 +0000852 for (MachineBasicBlock::instr_iterator
853 i = Succ->instr_begin(),e = Succ->instr_end();
854 i != e && i->isPHI(); ++i)
Dan Gohman3570f812010-06-22 17:25:57 +0000855 for (unsigned ni = 1, ne = i->getNumOperands(); ni != ne; ni += 2)
856 if (i->getOperand(ni+1).getMBB() == this)
857 i->getOperand(ni+1).setMBB(NMBB);
858
Jakob Stoklund Olesen06b6ccf2011-10-14 17:25:46 +0000859 // Inherit live-ins from the successor
Matthias Braund9da1622015-09-09 18:08:03 +0000860 for (const auto &LI : Succ->liveins())
Matthias Braunb2b7ef12015-08-24 22:59:52 +0000861 NMBB->addLiveIn(LI);
Jakob Stoklund Olesen06b6ccf2011-10-14 17:25:46 +0000862
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000863 // Update LiveVariables.
Eric Christopherfc6de422014-08-05 02:39:49 +0000864 const TargetRegisterInfo *TRI = MF->getSubtarget().getRegisterInfo();
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000865 if (LV) {
866 // Restore kills of virtual registers that were killed by the terminators.
867 while (!KilledRegs.empty()) {
868 unsigned Reg = KilledRegs.pop_back_val();
Evan Cheng7fae11b2011-12-14 02:11:42 +0000869 for (instr_iterator I = instr_end(), E = instr_begin(); I != E;) {
Lang Hamesedeea172012-02-09 05:59:36 +0000870 if (!(--I)->addRegisterKilled(Reg, TRI, /* addIfNotFound= */ false))
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000871 continue;
Lang Hamesedeea172012-02-09 05:59:36 +0000872 if (TargetRegisterInfo::isVirtualRegister(Reg))
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000873 LV->getVarInfo(Reg).Kills.push_back(&*I);
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000874 DEBUG(dbgs() << "Restored terminator kill: " << *I);
875 break;
876 }
877 }
878 // Update relevant live-through information.
Dan Gohman3570f812010-06-22 17:25:57 +0000879 LV->addNewBlock(NMBB, this, Succ);
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000880 }
Dan Gohman3570f812010-06-22 17:25:57 +0000881
Cameron Zwarichcdcab382013-02-12 03:49:20 +0000882 if (LIS) {
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000883 // After splitting the edge and updating SlotIndexes, live intervals may be
884 // in one of two situations, depending on whether this block was the last in
Cong Hou2793e722015-08-10 22:27:10 +0000885 // the function. If the original block was the last in the function, all
886 // live intervals will end prior to the beginning of the new split block. If
887 // the original block was not at the end of the function, all live intervals
888 // will extend to the end of the new split block.
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000889
890 bool isLastMBB =
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000891 std::next(MachineFunction::iterator(NMBB)) == getParent()->end();
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000892
893 SlotIndex StartIndex = Indexes->getMBBEndIdx(this);
894 SlotIndex PrevIndex = StartIndex.getPrevSlot();
895 SlotIndex EndIndex = Indexes->getMBBEndIdx(NMBB);
896
897 // Find the registers used from NMBB in PHIs in Succ.
898 SmallSet<unsigned, 8> PHISrcRegs;
899 for (MachineBasicBlock::instr_iterator
900 I = Succ->instr_begin(), E = Succ->instr_end();
901 I != E && I->isPHI(); ++I) {
902 for (unsigned ni = 1, ne = I->getNumOperands(); ni != ne; ni += 2) {
903 if (I->getOperand(ni+1).getMBB() == NMBB) {
904 MachineOperand &MO = I->getOperand(ni);
905 unsigned Reg = MO.getReg();
906 PHISrcRegs.insert(Reg);
Cameron Zwarichaf349312013-02-12 03:49:17 +0000907 if (MO.isUndef())
908 continue;
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000909
910 LiveInterval &LI = LIS->getInterval(Reg);
911 VNInfo *VNI = LI.getVNInfoAt(PrevIndex);
Cong Hou2793e722015-08-10 22:27:10 +0000912 assert(VNI &&
913 "PHI sources should be live out of their predecessors.");
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000914 LI.addSegment(LiveInterval::Segment(StartIndex, EndIndex, VNI));
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000915 }
916 }
917 }
918
919 MachineRegisterInfo *MRI = &getParent()->getRegInfo();
920 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
921 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
922 if (PHISrcRegs.count(Reg) || !LIS->hasInterval(Reg))
923 continue;
924
925 LiveInterval &LI = LIS->getInterval(Reg);
926 if (!LI.liveAt(PrevIndex))
927 continue;
928
Cameron Zwarichaf349312013-02-12 03:49:17 +0000929 bool isLiveOut = LI.liveAt(LIS->getMBBStartIdx(Succ));
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000930 if (isLiveOut && isLastMBB) {
931 VNInfo *VNI = LI.getVNInfoAt(PrevIndex);
932 assert(VNI && "LiveInterval should have VNInfo where it is live.");
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000933 LI.addSegment(LiveInterval::Segment(StartIndex, EndIndex, VNI));
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000934 } else if (!isLiveOut && !isLastMBB) {
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000935 LI.removeSegment(StartIndex, EndIndex);
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000936 }
937 }
Cameron Zwarichbfebb412013-02-17 00:10:44 +0000938
939 // Update all intervals for registers whose uses may have been modified by
940 // updateTerminator().
Cameron Zwarich24955962013-02-17 11:09:00 +0000941 LIS->repairIntervalsInRange(this, getFirstTerminator(), end(), UsedRegs);
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000942 }
943
Dan Gohman3570f812010-06-22 17:25:57 +0000944 if (MachineDominatorTree *MDT =
Quentin Colombetabea99f2014-08-13 21:00:07 +0000945 P->getAnalysisIfAvailable<MachineDominatorTree>())
946 MDT->recordSplitCriticalEdge(this, Succ, NMBB);
Dan Gohman3570f812010-06-22 17:25:57 +0000947
Evan Cheng647c5592010-08-17 17:43:50 +0000948 if (MachineLoopInfo *MLI = P->getAnalysisIfAvailable<MachineLoopInfo>())
Dan Gohman3570f812010-06-22 17:25:57 +0000949 if (MachineLoop *TIL = MLI->getLoopFor(this)) {
950 // If one or the other blocks were not in a loop, the new block is not
951 // either, and thus LI doesn't need to be updated.
952 if (MachineLoop *DestLoop = MLI->getLoopFor(Succ)) {
953 if (TIL == DestLoop) {
954 // Both in the same loop, the NMBB joins loop.
955 DestLoop->addBasicBlockToLoop(NMBB, MLI->getBase());
956 } else if (TIL->contains(DestLoop)) {
957 // Edge from an outer loop to an inner loop. Add to the outer loop.
958 TIL->addBasicBlockToLoop(NMBB, MLI->getBase());
959 } else if (DestLoop->contains(TIL)) {
960 // Edge from an inner loop to an outer loop. Add to the outer loop.
961 DestLoop->addBasicBlockToLoop(NMBB, MLI->getBase());
962 } else {
963 // Edge from two loops with no containment relation. Because these
964 // are natural loops, we know that the destination block must be the
965 // header of its loop (adding a branch into a loop elsewhere would
966 // create an irreducible loop).
967 assert(DestLoop->getHeader() == Succ &&
968 "Should not create irreducible loops!");
969 if (MachineLoop *P = DestLoop->getParentLoop())
970 P->addBasicBlockToLoop(NMBB, MLI->getBase());
971 }
972 }
973 }
974
975 return NMBB;
976}
977
Jakob Stoklund Olesenccfb5fb2012-12-17 23:55:38 +0000978/// Prepare MI to be removed from its bundle. This fixes bundle flags on MI's
979/// neighboring instructions so the bundle won't be broken by removing MI.
980static void unbundleSingleMI(MachineInstr *MI) {
981 // Removing the first instruction in a bundle.
982 if (MI->isBundledWithSucc() && !MI->isBundledWithPred())
983 MI->unbundleFromSucc();
984 // Removing the last instruction in a bundle.
985 if (MI->isBundledWithPred() && !MI->isBundledWithSucc())
986 MI->unbundleFromPred();
987 // If MI is not bundled, or if it is internal to a bundle, the neighbor flags
988 // are already fine.
Evan Cheng7fae11b2011-12-14 02:11:42 +0000989}
990
Jakob Stoklund Olesenccfb5fb2012-12-17 23:55:38 +0000991MachineBasicBlock::instr_iterator
992MachineBasicBlock::erase(MachineBasicBlock::instr_iterator I) {
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000993 unbundleSingleMI(&*I);
Jakob Stoklund Olesenccfb5fb2012-12-17 23:55:38 +0000994 return Insts.erase(I);
995}
Evan Cheng7fae11b2011-12-14 02:11:42 +0000996
Jakob Stoklund Olesenccfb5fb2012-12-17 23:55:38 +0000997MachineInstr *MachineBasicBlock::remove_instr(MachineInstr *MI) {
998 unbundleSingleMI(MI);
999 MI->clearFlag(MachineInstr::BundledPred);
1000 MI->clearFlag(MachineInstr::BundledSucc);
1001 return Insts.remove(MI);
Evan Cheng7fae11b2011-12-14 02:11:42 +00001002}
1003
Jakob Stoklund Olesen422e07b2012-12-18 17:54:53 +00001004MachineBasicBlock::instr_iterator
1005MachineBasicBlock::insert(instr_iterator I, MachineInstr *MI) {
1006 assert(!MI->isBundledWithPred() && !MI->isBundledWithSucc() &&
1007 "Cannot insert instruction with bundle flags");
1008 // Set the bundle flags when inserting inside a bundle.
1009 if (I != instr_end() && I->isBundledWithPred()) {
1010 MI->setFlag(MachineInstr::BundledPred);
1011 MI->setFlag(MachineInstr::BundledSucc);
1012 }
1013 return Insts.insert(I, MI);
1014}
1015
Cong Hou2a02c1c2015-08-12 21:18:54 +00001016/// This method unlinks 'this' from the containing function, and returns it, but
1017/// does not delete it.
Dan Gohman3b460302008-07-07 23:14:23 +00001018MachineBasicBlock *MachineBasicBlock::removeFromParent() {
1019 assert(getParent() && "Not embedded in a function!");
1020 getParent()->remove(this);
1021 return this;
1022}
1023
Cong Hou2a02c1c2015-08-12 21:18:54 +00001024/// This method unlinks 'this' from the containing function, and deletes it.
Dan Gohman3b460302008-07-07 23:14:23 +00001025void MachineBasicBlock::eraseFromParent() {
1026 assert(getParent() && "Not embedded in a function!");
1027 getParent()->erase(this);
1028}
1029
Cong Hou2a02c1c2015-08-12 21:18:54 +00001030/// Given a machine basic block that branched to 'Old', change the code and CFG
1031/// so that it branches to 'New' instead.
Evan Chengdf757852007-06-04 06:44:01 +00001032void MachineBasicBlock::ReplaceUsesOfBlockWith(MachineBasicBlock *Old,
1033 MachineBasicBlock *New) {
1034 assert(Old != New && "Cannot replace self with self!");
1035
Evan Cheng7fae11b2011-12-14 02:11:42 +00001036 MachineBasicBlock::instr_iterator I = instr_end();
1037 while (I != instr_begin()) {
Evan Chengdf757852007-06-04 06:44:01 +00001038 --I;
Evan Cheng7f8e5632011-12-07 07:15:52 +00001039 if (!I->isTerminator()) break;
Evan Chengdf757852007-06-04 06:44:01 +00001040
1041 // Scan the operands of this machine instruction, replacing any uses of Old
1042 // with New.
1043 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
Dan Gohman0d1e9a82008-10-03 15:45:36 +00001044 if (I->getOperand(i).isMBB() &&
Dan Gohman38453ee2008-09-13 17:58:21 +00001045 I->getOperand(i).getMBB() == Old)
Chris Lattnera5bb3702007-12-30 23:10:15 +00001046 I->getOperand(i).setMBB(New);
Evan Chengdf757852007-06-04 06:44:01 +00001047 }
1048
Dan Gohmanbb2f1072009-05-05 21:10:19 +00001049 // Update the successor information.
Jakub Staszak12a43bd2011-06-16 20:22:37 +00001050 replaceSuccessor(Old, New);
Evan Chengdf757852007-06-04 06:44:01 +00001051}
1052
Cong Hou2a02c1c2015-08-12 21:18:54 +00001053/// Various pieces of code can cause excess edges in the CFG to be inserted. If
1054/// we have proven that MBB can only branch to DestA and DestB, remove any other
1055/// MBB successors from the CFG. DestA and DestB can be null.
Jakub Staszakfeadd432011-06-16 18:01:17 +00001056///
Chris Lattner574e7162007-12-31 04:56:33 +00001057/// Besides DestA and DestB, retain other edges leading to LandingPads
1058/// (currently there can be only one; we don't check or require that here).
Evan Cheng2afd7022007-06-18 22:43:58 +00001059/// Note it is possible that DestA and/or DestB are LandingPads.
1060bool MachineBasicBlock::CorrectExtraCFGEdges(MachineBasicBlock *DestA,
1061 MachineBasicBlock *DestB,
Cong Hou166e0852015-09-29 19:46:09 +00001062 bool IsCond) {
Bill Wendling2d5967d2009-12-16 00:08:36 +00001063 // The values of DestA and DestB frequently come from a call to the
1064 // 'TargetInstrInfo::AnalyzeBranch' method. We take our meaning of the initial
1065 // values from there.
1066 //
1067 // 1. If both DestA and DestB are null, then the block ends with no branches
1068 // (it falls through to its successor).
Cong Hou166e0852015-09-29 19:46:09 +00001069 // 2. If DestA is set, DestB is null, and IsCond is false, then the block ends
Bill Wendling2d5967d2009-12-16 00:08:36 +00001070 // with only an unconditional branch.
Cong Hou166e0852015-09-29 19:46:09 +00001071 // 3. If DestA is set, DestB is null, and IsCond is true, then the block ends
Bill Wendling2d5967d2009-12-16 00:08:36 +00001072 // with a conditional branch that falls through to a successor (DestB).
Cong Hou166e0852015-09-29 19:46:09 +00001073 // 4. If DestA and DestB is set and IsCond is true, then the block ends with a
Bill Wendling2d5967d2009-12-16 00:08:36 +00001074 // conditional branch followed by an unconditional branch. DestA is the
1075 // 'true' destination and DestB is the 'false' destination.
1076
Bill Wendling95643402010-04-01 00:00:43 +00001077 bool Changed = false;
Evan Cheng2afd7022007-06-18 22:43:58 +00001078
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +00001079 MachineFunction::iterator FallThru = std::next(getIterator());
Bill Wendling95643402010-04-01 00:00:43 +00001080
Craig Topperc0196b12014-04-14 00:51:57 +00001081 if (!DestA && !DestB) {
Bill Wendling95643402010-04-01 00:00:43 +00001082 // Block falls through to successor.
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +00001083 DestA = &*FallThru;
1084 DestB = &*FallThru;
Craig Topperc0196b12014-04-14 00:51:57 +00001085 } else if (DestA && !DestB) {
Cong Hou166e0852015-09-29 19:46:09 +00001086 if (IsCond)
Bill Wendling95643402010-04-01 00:00:43 +00001087 // Block ends in conditional jump that falls through to successor.
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +00001088 DestB = &*FallThru;
Evan Cheng2afd7022007-06-18 22:43:58 +00001089 } else {
Cong Hou166e0852015-09-29 19:46:09 +00001090 assert(DestA && DestB && IsCond &&
Bill Wendling95643402010-04-01 00:00:43 +00001091 "CFG in a bad state. Cannot correct CFG edges");
Evan Cheng2afd7022007-06-18 22:43:58 +00001092 }
Bill Wendling95643402010-04-01 00:00:43 +00001093
1094 // Remove superfluous edges. I.e., those which aren't destinations of this
1095 // basic block, duplicate edges, or landing pads.
1096 SmallPtrSet<const MachineBasicBlock*, 8> SeenMBBs;
Evan Cheng2afd7022007-06-18 22:43:58 +00001097 MachineBasicBlock::succ_iterator SI = succ_begin();
Evan Cheng2afd7022007-06-18 22:43:58 +00001098 while (SI != succ_end()) {
Bill Wendling2d5967d2009-12-16 00:08:36 +00001099 const MachineBasicBlock *MBB = *SI;
David Blaikie70573dc2014-11-19 07:49:26 +00001100 if (!SeenMBBs.insert(MBB).second ||
Reid Kleckner0e288232015-08-27 23:27:47 +00001101 (MBB != DestA && MBB != DestB && !MBB->isEHPad())) {
Bill Wendling95643402010-04-01 00:00:43 +00001102 // This is a superfluous edge, remove it.
Bill Wendlingfa9810d2010-03-31 23:26:26 +00001103 SI = removeSuccessor(SI);
Bill Wendling95643402010-04-01 00:00:43 +00001104 Changed = true;
1105 } else {
1106 ++SI;
Evan Cheng2afd7022007-06-18 22:43:58 +00001107 }
1108 }
Bill Wendling2d5967d2009-12-16 00:08:36 +00001109
Cong Houc1069892015-12-13 09:26:17 +00001110 if (Changed)
1111 normalizeSuccProbs();
Bill Wendling95643402010-04-01 00:00:43 +00001112 return Changed;
Evan Cheng2afd7022007-06-18 22:43:58 +00001113}
Evan Cheng57be2f22009-11-17 19:19:59 +00001114
Cong Hou2a02c1c2015-08-12 21:18:54 +00001115/// Find the next valid DebugLoc starting at MBBI, skipping any DBG_VALUE
1116/// instructions. Return UnknownLoc if there is none.
Dale Johannesenc5db5992010-01-20 21:36:02 +00001117DebugLoc
Evan Cheng7fae11b2011-12-14 02:11:42 +00001118MachineBasicBlock::findDebugLoc(instr_iterator MBBI) {
Dale Johannesenc5db5992010-01-20 21:36:02 +00001119 DebugLoc DL;
Evan Cheng7fae11b2011-12-14 02:11:42 +00001120 instr_iterator E = instr_end();
Evan Cheng2a81dd42011-12-06 22:12:01 +00001121 if (MBBI == E)
1122 return DL;
1123
1124 // Skip debug declarations, we don't want a DebugLoc from them.
1125 while (MBBI != E && MBBI->isDebugValue())
1126 MBBI++;
1127 if (MBBI != E)
1128 DL = MBBI->getDebugLoc();
Dale Johannesenc5db5992010-01-20 21:36:02 +00001129 return DL;
1130}
1131
Cong Houd97c1002015-12-01 05:29:22 +00001132/// Return probability of the edge from this block to MBB.
Cong Hou23a3bf02015-11-04 21:37:58 +00001133BranchProbability
1134MachineBasicBlock::getSuccProbability(const_succ_iterator Succ) const {
Cong Hou4aef7ef2015-12-01 11:05:39 +00001135 if (Probs.empty())
Cong Hou23a3bf02015-11-04 21:37:58 +00001136 return BranchProbability(1, succ_size());
1137
Cong Hou4aef7ef2015-12-01 11:05:39 +00001138 const auto &Prob = *getProbabilityIterator(Succ);
1139 if (Prob.isUnknown()) {
1140 // For unknown probabilities, collect the sum of all known ones, and evenly
1141 // ditribute the complemental of the sum to each unknown probability.
1142 unsigned KnownProbNum = 0;
1143 auto Sum = BranchProbability::getZero();
1144 for (auto &P : Probs) {
1145 if (!P.isUnknown()) {
1146 Sum += P;
1147 KnownProbNum++;
1148 }
1149 }
1150 return Sum.getCompl() / (Probs.size() - KnownProbNum);
1151 } else
1152 return Prob;
Manman Renb6819182014-01-29 23:18:47 +00001153}
1154
Cong Hou23a3bf02015-11-04 21:37:58 +00001155/// Set successor probability of a given iterator.
1156void MachineBasicBlock::setSuccProbability(succ_iterator I,
1157 BranchProbability Prob) {
1158 assert(!Prob.isUnknown());
Cong Houd97c1002015-12-01 05:29:22 +00001159 if (Probs.empty())
Cong Hou23a3bf02015-11-04 21:37:58 +00001160 return;
1161 *getProbabilityIterator(I) = Prob;
Cong Hou23a3bf02015-11-04 21:37:58 +00001162}
1163
Hans Wennborg1dbaf672015-12-01 03:49:42 +00001164/// Return probability iterator corresonding to the I successor iterator
1165MachineBasicBlock::const_probability_iterator
1166MachineBasicBlock::getProbabilityIterator(
1167 MachineBasicBlock::const_succ_iterator I) const {
Cong Houfa1917c2015-12-01 00:02:51 +00001168 assert(Probs.size() == Successors.size() && "Async probability list!");
1169 const size_t index = std::distance(Successors.begin(), I);
1170 assert(index < Probs.size() && "Not a current successor!");
1171 return Probs.begin() + index;
1172}
1173
Cong Houd97c1002015-12-01 05:29:22 +00001174/// Return probability iterator corresonding to the I successor iterator.
1175MachineBasicBlock::probability_iterator
1176MachineBasicBlock::getProbabilityIterator(MachineBasicBlock::succ_iterator I) {
1177 assert(Probs.size() == Successors.size() && "Async probability list!");
1178 const size_t index = std::distance(Successors.begin(), I);
1179 assert(index < Probs.size() && "Not a current successor!");
1180 return Probs.begin() + index;
1181}
1182
James Molloyc747cda2012-09-12 10:18:23 +00001183/// Return whether (physical) register "Reg" has been <def>ined and not <kill>ed
1184/// as of just before "MI".
Junmo Park12386102016-01-07 10:26:32 +00001185///
James Molloyc747cda2012-09-12 10:18:23 +00001186/// Search is localised to a neighborhood of
1187/// Neighborhood instructions before (searching for defs or kills) and N
1188/// instructions after (searching just for defs) MI.
1189MachineBasicBlock::LivenessQueryResult
1190MachineBasicBlock::computeRegisterLiveness(const TargetRegisterInfo *TRI,
Matthias Braun07a07ba2015-05-27 05:12:39 +00001191 unsigned Reg, const_iterator Before,
1192 unsigned Neighborhood) const {
James Molloyc747cda2012-09-12 10:18:23 +00001193 unsigned N = Neighborhood;
James Molloyc747cda2012-09-12 10:18:23 +00001194
Matthias Braun07a07ba2015-05-27 05:12:39 +00001195 // Start by searching backwards from Before, looking for kills, reads or defs.
1196 const_iterator I(Before);
James Molloyc747cda2012-09-12 10:18:23 +00001197 // If this is the first insn in the block, don't search backwards.
Matthias Braun07a07ba2015-05-27 05:12:39 +00001198 if (I != begin()) {
James Molloyc747cda2012-09-12 10:18:23 +00001199 do {
1200 --I;
1201
Matthias Braun60d69e22015-12-11 19:42:09 +00001202 MachineOperandIteratorBase::PhysRegInfo Info =
Matthias Braun07a07ba2015-05-27 05:12:39 +00001203 ConstMIOperands(I).analyzePhysReg(Reg, TRI);
James Molloyc747cda2012-09-12 10:18:23 +00001204
Matthias Braun60d69e22015-12-11 19:42:09 +00001205 // Defs happen after uses so they take precedence if both are present.
Tim Northoverdd219d02012-11-20 09:56:11 +00001206
Matthias Braun60d69e22015-12-11 19:42:09 +00001207 // Register is dead after a dead def of the full register.
1208 if (Info.DeadDef)
James Molloyc747cda2012-09-12 10:18:23 +00001209 return LQR_Dead;
Matthias Braun60d69e22015-12-11 19:42:09 +00001210 // Register is (at least partially) live after a def.
1211 if (Info.Defined)
1212 return LQR_Live;
1213 // Register is dead after a full kill or clobber and no def.
1214 if (Info.Killed || Info.Clobbered)
1215 return LQR_Dead;
1216 // Register must be live if we read it.
1217 if (Info.Read)
1218 return LQR_Live;
Matthias Braun07a07ba2015-05-27 05:12:39 +00001219 } while (I != begin() && --N > 0);
James Molloyc747cda2012-09-12 10:18:23 +00001220 }
1221
1222 // Did we get to the start of the block?
Matthias Braun07a07ba2015-05-27 05:12:39 +00001223 if (I == begin()) {
James Molloyc747cda2012-09-12 10:18:23 +00001224 // If so, the register's state is definitely defined by the live-in state.
Matthias Braun60d69e22015-12-11 19:42:09 +00001225 for (MCRegAliasIterator RAI(Reg, TRI, /*IncludeSelf=*/true); RAI.isValid();
1226 ++RAI)
Matthias Braun07a07ba2015-05-27 05:12:39 +00001227 if (isLiveIn(*RAI))
Matthias Braun60d69e22015-12-11 19:42:09 +00001228 return LQR_Live;
James Molloyc747cda2012-09-12 10:18:23 +00001229
1230 return LQR_Dead;
1231 }
1232
1233 N = Neighborhood;
1234
Matthias Braun07a07ba2015-05-27 05:12:39 +00001235 // Try searching forwards from Before, looking for reads or defs.
1236 I = const_iterator(Before);
James Molloyc747cda2012-09-12 10:18:23 +00001237 // If this is the last insn in the block, don't search forwards.
Matthias Braun07a07ba2015-05-27 05:12:39 +00001238 if (I != end()) {
1239 for (++I; I != end() && N > 0; ++I, --N) {
Matthias Braun60d69e22015-12-11 19:42:09 +00001240 MachineOperandIteratorBase::PhysRegInfo Info =
Matthias Braun07a07ba2015-05-27 05:12:39 +00001241 ConstMIOperands(I).analyzePhysReg(Reg, TRI);
James Molloyc747cda2012-09-12 10:18:23 +00001242
Matthias Braun60d69e22015-12-11 19:42:09 +00001243 // Register is live when we read it here.
1244 if (Info.Read)
1245 return LQR_Live;
1246 // Register is dead if we can fully overwrite or clobber it here.
1247 if (Info.FullyDefined || Info.Clobbered)
James Molloyc747cda2012-09-12 10:18:23 +00001248 return LQR_Dead;
1249 }
1250 }
1251
1252 // At this point we have no idea of the liveness of the register.
1253 return LQR_Unknown;
1254}
Reid Klecknerb8fd1622015-11-06 17:06:38 +00001255
1256const uint32_t *
1257MachineBasicBlock::getBeginClobberMask(const TargetRegisterInfo *TRI) const {
1258 // EH funclet entry does not preserve any registers.
1259 return isEHFuncletEntry() ? TRI->getNoPreservedMask() : nullptr;
1260}
1261
1262const uint32_t *
1263MachineBasicBlock::getEndClobberMask(const TargetRegisterInfo *TRI) const {
1264 // If we see a return block with successors, this must be a funclet return,
1265 // which does not preserve any registers. If there are no successors, we don't
1266 // care what kind of return it is, putting a mask after it is a no-op.
1267 return isReturnBlock() && !succ_empty() ? TRI->getNoPreservedMask() : nullptr;
1268}