blob: 6310859e4b575761a5ca664533409f25337df860 [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"
Cameron Zwarichb47fb382013-02-11 09:24:47 +000016#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Dan Gohman3570f812010-06-22 17:25:57 +000017#include "llvm/CodeGen/LiveVariables.h"
18#include "llvm/CodeGen/MachineDominators.h"
Alkis Evlogimenos14f3fe82004-02-16 07:17:43 +000019#include "llvm/CodeGen/MachineFunction.h"
Jakob Stoklund Olesen533c3bf2013-07-03 23:56:20 +000020#include "llvm/CodeGen/MachineInstrBuilder.h"
Dan Gohman3570f812010-06-22 17:25:57 +000021#include "llvm/CodeGen/MachineLoopInfo.h"
Cameron Zwarichb47fb382013-02-11 09:24:47 +000022#include "llvm/CodeGen/MachineRegisterInfo.h"
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +000023#include "llvm/CodeGen/SlotIndexes.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000024#include "llvm/IR/BasicBlock.h"
25#include "llvm/IR/DataLayout.h"
Duncan P. N. Exon Smith326921542015-06-26 22:04:20 +000026#include "llvm/IR/ModuleSlotTracker.h"
Chris Lattnerd051af72010-01-26 04:55:51 +000027#include "llvm/MC/MCAsmInfo.h"
28#include "llvm/MC/MCContext.h"
Cong Hou663dd012015-12-13 09:52:14 +000029#include "llvm/Support/DataTypes.h"
David Greene6c56cef2010-01-04 23:22:07 +000030#include "llvm/Support/Debug.h"
Daniel Dunbar796e43e2009-07-24 10:36:58 +000031#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000032#include "llvm/Target/TargetInstrInfo.h"
33#include "llvm/Target/TargetMachine.h"
34#include "llvm/Target/TargetRegisterInfo.h"
Eric Christopherd9134482014-08-04 21:25:23 +000035#include "llvm/Target/TargetSubtargetInfo.h"
Chris Lattner4336b872004-10-26 15:43:42 +000036#include <algorithm>
Alkis Evlogimenos14f3fe82004-02-16 07:17:43 +000037using namespace llvm;
38
Chandler Carruthe96dd892014-04-21 22:55:11 +000039#define DEBUG_TYPE "codegen"
40
Cong Hou166e0852015-09-29 19:46:09 +000041MachineBasicBlock::MachineBasicBlock(MachineFunction &MF, const BasicBlock *B)
42 : BB(B), Number(-1), xParent(&MF) {
Dan Gohman804c95d2008-07-28 21:51:04 +000043 Insts.Parent = this;
Tanya Lattner91fa3a92004-05-24 07:14:35 +000044}
Tanya Lattner91fa3a92004-05-24 07:14:35 +000045
Dan Gohman0ece9432008-07-17 23:49:46 +000046MachineBasicBlock::~MachineBasicBlock() {
Dan Gohman0ece9432008-07-17 23:49:46 +000047}
48
Cong Hou2a02c1c2015-08-12 21:18:54 +000049/// Return the MCSymbol for this basic block.
Chris Lattner29bdac42010-03-13 21:04:28 +000050MCSymbol *MachineBasicBlock::getSymbol() const {
Eli Bendersky58b04b72013-04-22 21:21:08 +000051 if (!CachedMCSymbol) {
52 const MachineFunction *MF = getParent();
53 MCContext &Ctx = MF->getContext();
Matt Arsenault4e273432014-12-04 00:06:57 +000054 const char *Prefix = Ctx.getAsmInfo()->getPrivateLabelPrefix();
Reid Klecknerb9204a52015-11-11 23:09:31 +000055 assert(getNumber() >= 0 && "cannot get label for unreachable MBB");
Jim Grosbach6f482002015-05-18 18:43:14 +000056 CachedMCSymbol = Ctx.getOrCreateSymbol(Twine(Prefix) + "BB" +
Eli Bendersky58b04b72013-04-22 21:21:08 +000057 Twine(MF->getFunctionNumber()) +
58 "_" + Twine(getNumber()));
59 }
60
61 return CachedMCSymbol;
Chris Lattnerd051af72010-01-26 04:55:51 +000062}
63
64
Chris Lattneraf119ca2009-08-23 00:35:30 +000065raw_ostream &llvm::operator<<(raw_ostream &OS, const MachineBasicBlock &MBB) {
Daniel Dunbar796e43e2009-07-24 10:36:58 +000066 MBB.print(OS);
67 return OS;
68}
Tanya Lattner91fa3a92004-05-24 07:14:35 +000069
Cong Hou2a02c1c2015-08-12 21:18:54 +000070/// When an MBB is added to an MF, we need to update the parent pointer of the
71/// MBB, the MBB numbering, and any instructions in the MBB to be on the right
72/// operand list for registers.
Chris Lattner961e7422008-01-01 01:12:31 +000073///
74/// MBBs start out as #-1. When a MBB is added to a MachineFunction, it
75/// gets the next available unique MBB number. If it is removed from a
76/// MachineFunction, it goes back to being #-1.
Chris Lattneraf119ca2009-08-23 00:35:30 +000077void ilist_traits<MachineBasicBlock>::addNodeToList(MachineBasicBlock *N) {
Dan Gohman3b460302008-07-07 23:14:23 +000078 MachineFunction &MF = *N->getParent();
79 N->Number = MF.addToMBBNumbering(N);
Chris Lattner961e7422008-01-01 01:12:31 +000080
81 // Make sure the instructions have their operands in the reginfo lists.
Dan Gohman3b460302008-07-07 23:14:23 +000082 MachineRegisterInfo &RegInfo = MF.getRegInfo();
Evan Cheng7fae11b2011-12-14 02:11:42 +000083 for (MachineBasicBlock::instr_iterator
84 I = N->instr_begin(), E = N->instr_end(); I != E; ++I)
Chris Lattner961e7422008-01-01 01:12:31 +000085 I->AddRegOperandsToUseLists(RegInfo);
Brian Gaekecb5d22a2004-05-12 21:35:22 +000086}
87
Chris Lattneraf119ca2009-08-23 00:35:30 +000088void ilist_traits<MachineBasicBlock>::removeNodeFromList(MachineBasicBlock *N) {
Chris Lattner574e7162007-12-31 04:56:33 +000089 N->getParent()->removeFromMBBNumbering(N->Number);
Brian Gaekecb5d22a2004-05-12 21:35:22 +000090 N->Number = -1;
91}
92
Cong Hou2a02c1c2015-08-12 21:18:54 +000093/// When we add an instruction to a basic block list, we update its parent
94/// pointer and add its operands from reg use/def lists if appropriate.
Chris Lattneraf119ca2009-08-23 00:35:30 +000095void ilist_traits<MachineInstr>::addNodeToList(MachineInstr *N) {
Craig Topperc0196b12014-04-14 00:51:57 +000096 assert(!N->getParent() && "machine instruction already in a basic block");
Dan Gohman3b460302008-07-07 23:14:23 +000097 N->setParent(Parent);
Jakub Staszakfeadd432011-06-16 18:01:17 +000098
Dan Gohman3b460302008-07-07 23:14:23 +000099 // Add the instruction's register operands to their corresponding
100 // use/def lists.
101 MachineFunction *MF = Parent->getParent();
102 N->AddRegOperandsToUseLists(MF->getRegInfo());
Alkis Evlogimenos14f3fe82004-02-16 07:17:43 +0000103}
104
Cong Hou2a02c1c2015-08-12 21:18:54 +0000105/// When we remove an instruction from a basic block list, we update its parent
106/// pointer and remove its operands from reg use/def lists if appropriate.
Chris Lattneraf119ca2009-08-23 00:35:30 +0000107void ilist_traits<MachineInstr>::removeNodeFromList(MachineInstr *N) {
Craig Topperc0196b12014-04-14 00:51:57 +0000108 assert(N->getParent() && "machine instruction not in a basic block");
Dan Gohman3b460302008-07-07 23:14:23 +0000109
110 // Remove from the use/def lists.
Jakob Stoklund Olesenc4102d42012-08-09 22:49:37 +0000111 if (MachineFunction *MF = N->getParent()->getParent())
112 N->RemoveRegOperandsFromUseLists(MF->getRegInfo());
Jakub Staszakfeadd432011-06-16 18:01:17 +0000113
Craig Topperc0196b12014-04-14 00:51:57 +0000114 N->setParent(nullptr);
Alkis Evlogimenos14f3fe82004-02-16 07:17:43 +0000115}
116
Cong Hou2a02c1c2015-08-12 21:18:54 +0000117/// When moving a range of instructions from one MBB list to another, we need to
118/// update the parent pointers and the use/def lists.
Chris Lattneraf119ca2009-08-23 00:35:30 +0000119void ilist_traits<MachineInstr>::
Cong Hou166e0852015-09-29 19:46:09 +0000120transferNodesFromList(ilist_traits<MachineInstr> &FromList,
121 ilist_iterator<MachineInstr> First,
122 ilist_iterator<MachineInstr> Last) {
123 assert(Parent->getParent() == FromList.Parent->getParent() &&
Dan Gohman804c95d2008-07-28 21:51:04 +0000124 "MachineInstr parent mismatch!");
125
Chris Lattner574e7162007-12-31 04:56:33 +0000126 // Splice within the same MBB -> no change.
Cong Hou166e0852015-09-29 19:46:09 +0000127 if (Parent == FromList.Parent) return;
Chris Lattner961e7422008-01-01 01:12:31 +0000128
129 // If splicing between two blocks within the same function, just update the
130 // parent pointers.
Cong Hou166e0852015-09-29 19:46:09 +0000131 for (; First != Last; ++First)
132 First->setParent(Parent);
Alkis Evlogimenos14f3fe82004-02-16 07:17:43 +0000133}
134
Dan Gohman804c95d2008-07-28 21:51:04 +0000135void ilist_traits<MachineInstr>::deleteNode(MachineInstr* MI) {
Dan Gohman3b460302008-07-07 23:14:23 +0000136 assert(!MI->getParent() && "MI is still in a block!");
137 Parent->getParent()->DeleteMachineInstr(MI);
138}
139
Dan Gohman88c547e2010-07-07 14:33:51 +0000140MachineBasicBlock::iterator MachineBasicBlock::getFirstNonPHI() {
Benjamin Kramerbaa41d42012-02-10 00:28:31 +0000141 instr_iterator I = instr_begin(), E = instr_end();
142 while (I != E && I->isPHI())
Dan Gohman88c547e2010-07-07 14:33:51 +0000143 ++I;
Akira Hatanaka6fe7aca2012-10-26 17:11:42 +0000144 assert((I == E || !I->isInsideBundle()) &&
145 "First non-phi MI cannot be inside a bundle!");
Dan Gohman88c547e2010-07-07 14:33:51 +0000146 return I;
147}
148
Jakob Stoklund Olesenef541852010-10-30 01:26:14 +0000149MachineBasicBlock::iterator
150MachineBasicBlock::SkipPHIsAndLabels(MachineBasicBlock::iterator I) {
Benjamin Kramerbaa41d42012-02-10 00:28:31 +0000151 iterator E = end();
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000152 while (I != E && (I->isPHI() || I->isPosition() || I->isDebugValue()))
Jakob Stoklund Olesenef541852010-10-30 01:26:14 +0000153 ++I;
Evan Cheng2a81dd42011-12-06 22:12:01 +0000154 // FIXME: This needs to change if we wish to bundle labels / dbg_values
155 // inside the bundle.
Akira Hatanaka6fe7aca2012-10-26 17:11:42 +0000156 assert((I == E || !I->isInsideBundle()) &&
Evan Cheng2a81dd42011-12-06 22:12:01 +0000157 "First non-phi / non-label instruction is inside a bundle!");
Jakob Stoklund Olesenef541852010-10-30 01:26:14 +0000158 return I;
159}
160
Chris Lattner4336b872004-10-26 15:43:42 +0000161MachineBasicBlock::iterator MachineBasicBlock::getFirstTerminator() {
Benjamin Kramerbaa41d42012-02-10 00:28:31 +0000162 iterator B = begin(), E = end(), I = E;
163 while (I != B && ((--I)->isTerminator() || I->isDebugValue()))
Jakob Stoklund Olesenc3810282011-01-14 02:12:54 +0000164 ; /*noop */
Benjamin Kramerbaa41d42012-02-10 00:28:31 +0000165 while (I != E && !I->isTerminator())
Evan Cheng2a81dd42011-12-06 22:12:01 +0000166 ++I;
167 return I;
168}
169
Evan Cheng7fae11b2011-12-14 02:11:42 +0000170MachineBasicBlock::instr_iterator MachineBasicBlock::getFirstInstrTerminator() {
Benjamin Kramerbaa41d42012-02-10 00:28:31 +0000171 instr_iterator B = instr_begin(), E = instr_end(), I = E;
172 while (I != B && ((--I)->isTerminator() || I->isDebugValue()))
Evan Cheng2a81dd42011-12-06 22:12:01 +0000173 ; /*noop */
Benjamin Kramerbaa41d42012-02-10 00:28:31 +0000174 while (I != E && !I->isTerminator())
Jakob Stoklund Olesenab3d6ec2011-01-14 06:33:45 +0000175 ++I;
Jakob Stoklund Olesenc3810282011-01-14 02:12:54 +0000176 return I;
Alkis Evlogimenosaf2de482004-02-23 18:14:48 +0000177}
178
Benjamin Kramer6b568962015-06-23 14:47:29 +0000179MachineBasicBlock::iterator MachineBasicBlock::getFirstNonDebugInstr() {
180 // Skip over begin-of-block dbg_value instructions.
181 iterator I = begin(), E = end();
182 while (I != E && I->isDebugValue())
183 ++I;
184 return I;
185}
186
Jakob Stoklund Olesen4bc5e382011-01-13 21:28:52 +0000187MachineBasicBlock::iterator MachineBasicBlock::getLastNonDebugInstr() {
Evan Cheng2a81dd42011-12-06 22:12:01 +0000188 // Skip over end-of-block dbg_value instructions.
Evan Cheng7fae11b2011-12-14 02:11:42 +0000189 instr_iterator B = instr_begin(), I = instr_end();
Jakob Stoklund Olesen4bc5e382011-01-13 21:28:52 +0000190 while (I != B) {
191 --I;
Evan Cheng2a81dd42011-12-06 22:12:01 +0000192 // Return instruction that starts a bundle.
193 if (I->isDebugValue() || I->isInsideBundle())
194 continue;
195 return I;
196 }
197 // The block is all debug values.
198 return end();
199}
200
Jakob Stoklund Olesen096bd882011-02-04 19:33:11 +0000201const MachineBasicBlock *MachineBasicBlock::getLandingPadSuccessor() const {
202 // A block with a landing pad successor only has one other successor.
203 if (succ_size() > 2)
Craig Topperc0196b12014-04-14 00:51:57 +0000204 return nullptr;
Jakob Stoklund Olesen096bd882011-02-04 19:33:11 +0000205 for (const_succ_iterator I = succ_begin(), E = succ_end(); I != E; ++I)
Reid Kleckner0e288232015-08-27 23:27:47 +0000206 if ((*I)->isEHPad())
Jakob Stoklund Olesen096bd882011-02-04 19:33:11 +0000207 return *I;
Craig Topperc0196b12014-04-14 00:51:57 +0000208 return nullptr;
Jakob Stoklund Olesen096bd882011-02-04 19:33:11 +0000209}
210
Reid Klecknered170792015-09-17 17:19:40 +0000211bool MachineBasicBlock::hasEHPadSuccessor() const {
212 for (const_succ_iterator I = succ_begin(), E = succ_end(); I != E; ++I)
213 if ((*I)->isEHPad())
214 return true;
215 return false;
216}
217
Manman Ren19f49ac2012-09-11 22:23:19 +0000218#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Yaron Kereneb2a2542016-01-29 20:50:44 +0000219LLVM_DUMP_METHOD void MachineBasicBlock::dump() const {
David Greene6c56cef2010-01-04 23:22:07 +0000220 print(dbgs());
Alkis Evlogimenos14f3fe82004-02-16 07:17:43 +0000221}
Manman Ren742534c2012-09-06 19:06:06 +0000222#endif
Alkis Evlogimenos14f3fe82004-02-16 07:17:43 +0000223
Jakob Stoklund Olesen2bbeaa82009-11-20 01:17:03 +0000224StringRef MachineBasicBlock::getName() const {
225 if (const BasicBlock *LBB = getBasicBlock())
226 return LBB->getName();
227 else
228 return "(null)";
229}
230
Andrew Trick320c7032012-03-07 00:18:18 +0000231/// Return a hopefully unique identifier for this block.
232std::string MachineBasicBlock::getFullName() const {
233 std::string Name;
234 if (getParent())
Craig Toppera538d832012-08-22 06:07:19 +0000235 Name = (getParent()->getName() + ":").str();
Andrew Trick320c7032012-03-07 00:18:18 +0000236 if (getBasicBlock())
237 Name += getBasicBlock()->getName();
238 else
Yaron Keren75e0c4b2015-03-27 17:51:30 +0000239 Name += ("BB" + Twine(getNumber())).str();
Andrew Trick320c7032012-03-07 00:18:18 +0000240 return Name;
241}
242
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000243void MachineBasicBlock::print(raw_ostream &OS, SlotIndexes *Indexes) const {
Evan Chengbcf1d7f2007-02-10 02:38:19 +0000244 const MachineFunction *MF = getParent();
Chris Lattneraf119ca2009-08-23 00:35:30 +0000245 if (!MF) {
Chris Lattner4336b872004-10-26 15:43:42 +0000246 OS << "Can't print out MachineBasicBlock because parent MachineFunction"
247 << " is null\n";
Tanya Lattnera578cb72004-05-24 06:11:51 +0000248 return;
249 }
Duncan P. N. Exon Smith326921542015-06-26 22:04:20 +0000250 const Function *F = MF->getFunction();
251 const Module *M = F ? F->getParent() : nullptr;
252 ModuleSlotTracker MST(M);
253 print(OS, MST, Indexes);
254}
255
256void MachineBasicBlock::print(raw_ostream &OS, ModuleSlotTracker &MST,
257 SlotIndexes *Indexes) const {
258 const MachineFunction *MF = getParent();
259 if (!MF) {
260 OS << "Can't print out MachineBasicBlock because parent MachineFunction"
261 << " is null\n";
262 return;
263 }
Alkis Evlogimenosfcb3f512004-09-05 18:39:20 +0000264
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000265 if (Indexes)
266 OS << Indexes->getMBBStartIdx(this) << '\t';
267
Dan Gohman34341e62009-10-31 20:19:03 +0000268 OS << "BB#" << getNumber() << ": ";
269
270 const char *Comma = "";
271 if (const BasicBlock *LBB = getBasicBlock()) {
272 OS << Comma << "derived from LLVM BB ";
Duncan P. N. Exon Smith326921542015-06-26 22:04:20 +0000273 LBB->printAsOperand(OS, /*PrintType=*/false, MST);
Dan Gohman34341e62009-10-31 20:19:03 +0000274 Comma = ", ";
275 }
Reid Kleckner0e288232015-08-27 23:27:47 +0000276 if (isEHPad()) { OS << Comma << "EH LANDING PAD"; Comma = ", "; }
Dan Gohman34341e62009-10-31 20:19:03 +0000277 if (hasAddressTaken()) { OS << Comma << "ADDRESS TAKEN"; Comma = ", "; }
Bill Wendling4fd96632012-06-15 19:30:42 +0000278 if (Alignment)
Jakob Stoklund Olesen2a2b37e2011-12-06 21:08:39 +0000279 OS << Comma << "Align " << Alignment << " (" << (1u << Alignment)
280 << " bytes)";
Jakob Stoklund Olesen2a2b37e2011-12-06 21:08:39 +0000281
Chris Lattneraf119ca2009-08-23 00:35:30 +0000282 OS << '\n';
Evan Chengbcf1d7f2007-02-10 02:38:19 +0000283
Eric Christopherfc6de422014-08-05 02:39:49 +0000284 const TargetRegisterInfo *TRI = MF->getSubtarget().getRegisterInfo();
Dan Gohmanc731c972007-10-03 19:26:29 +0000285 if (!livein_empty()) {
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000286 if (Indexes) OS << '\t';
Dan Gohman34341e62009-10-31 20:19:03 +0000287 OS << " Live Ins:";
Matthias Braund9da1622015-09-09 18:08:03 +0000288 for (const auto &LI : make_range(livein_begin(), livein_end())) {
289 OS << ' ' << PrintReg(LI.PhysReg, TRI);
290 if (LI.LaneMask != ~0u)
Matthias Braunc804cdb2015-09-25 21:51:24 +0000291 OS << ':' << PrintLaneMask(LI.LaneMask);
Matthias Braunb2b7ef12015-08-24 22:59:52 +0000292 }
Chris Lattneraf119ca2009-08-23 00:35:30 +0000293 OS << '\n';
Evan Chengbcf1d7f2007-02-10 02:38:19 +0000294 }
Chris Lattner9a1e91b2006-09-26 03:41:59 +0000295 // Print the preds of this block according to the CFG.
296 if (!pred_empty()) {
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000297 if (Indexes) OS << '\t';
Chris Lattner9a1e91b2006-09-26 03:41:59 +0000298 OS << " Predecessors according to CFG:";
299 for (const_pred_iterator PI = pred_begin(), E = pred_end(); PI != E; ++PI)
Dan Gohman34341e62009-10-31 20:19:03 +0000300 OS << " BB#" << (*PI)->getNumber();
Chris Lattneraf119ca2009-08-23 00:35:30 +0000301 OS << '\n';
Chris Lattner9a1e91b2006-09-26 03:41:59 +0000302 }
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000303
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000304 for (auto &I : instrs()) {
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000305 if (Indexes) {
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000306 if (Indexes->hasIndex(I))
307 OS << Indexes->getInstructionIndex(I);
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000308 OS << '\t';
309 }
Chris Lattner1216f542009-08-23 00:47:04 +0000310 OS << '\t';
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000311 if (I.isInsideBundle())
Evan Cheng7fae11b2011-12-14 02:11:42 +0000312 OS << " * ";
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000313 I.print(OS, MST);
Alkis Evlogimenosfcb3f512004-09-05 18:39:20 +0000314 }
Chris Lattner329c14a2005-04-01 06:48:38 +0000315
316 // Print the successors of this block according to the CFG.
317 if (!succ_empty()) {
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000318 if (Indexes) OS << '\t';
Chris Lattner329c14a2005-04-01 06:48:38 +0000319 OS << " Successors according to CFG:";
Jakob Stoklund Olesen1dc107a2012-08-13 23:13:23 +0000320 for (const_succ_iterator SI = succ_begin(), E = succ_end(); SI != E; ++SI) {
Dan Gohman34341e62009-10-31 20:19:03 +0000321 OS << " BB#" << (*SI)->getNumber();
Cong Houd97c1002015-12-01 05:29:22 +0000322 if (!Probs.empty())
323 OS << '(' << *getProbabilityIterator(SI) << ')';
Jakob Stoklund Olesen1dc107a2012-08-13 23:13:23 +0000324 }
Chris Lattneraf119ca2009-08-23 00:35:30 +0000325 OS << '\n';
Chris Lattner329c14a2005-04-01 06:48:38 +0000326 }
Alkis Evlogimenos14f3fe82004-02-16 07:17:43 +0000327}
Chris Lattner4336b872004-10-26 15:43:42 +0000328
Cong Hou2793e722015-08-10 22:27:10 +0000329void MachineBasicBlock::printAsOperand(raw_ostream &OS,
330 bool /*PrintType*/) const {
Chandler Carruthd48cdbf2014-01-09 02:29:41 +0000331 OS << "BB#" << getNumber();
332}
333
Matthias Braune6a24852015-09-25 21:51:14 +0000334void MachineBasicBlock::removeLiveIn(MCPhysReg Reg, LaneBitmask LaneMask) {
Matthias Braund9da1622015-09-09 18:08:03 +0000335 LiveInVector::iterator I = std::find_if(
336 LiveIns.begin(), LiveIns.end(),
337 [Reg] (const RegisterMaskPair &LI) { return LI.PhysReg == Reg; });
338 if (I == LiveIns.end())
339 return;
340
341 I->LaneMask &= ~LaneMask;
342 if (I->LaneMask == 0)
Jakob Stoklund Olesen8e58c902012-03-28 20:11:42 +0000343 LiveIns.erase(I);
Evan Chengf7ed82d2007-02-19 21:49:54 +0000344}
345
Matthias Braune6a24852015-09-25 21:51:14 +0000346bool MachineBasicBlock::isLiveIn(MCPhysReg Reg, LaneBitmask LaneMask) const {
Matthias Braund9da1622015-09-09 18:08:03 +0000347 livein_iterator I = std::find_if(
348 LiveIns.begin(), LiveIns.end(),
349 [Reg] (const RegisterMaskPair &LI) { return LI.PhysReg == Reg; });
350 return I != livein_end() && (I->LaneMask & LaneMask) != 0;
351}
352
353void MachineBasicBlock::sortUniqueLiveIns() {
354 std::sort(LiveIns.begin(), LiveIns.end(),
355 [](const RegisterMaskPair &LI0, const RegisterMaskPair &LI1) {
356 return LI0.PhysReg < LI1.PhysReg;
357 });
358 // Liveins are sorted by physreg now we can merge their lanemasks.
359 LiveInVector::const_iterator I = LiveIns.begin();
360 LiveInVector::const_iterator J;
361 LiveInVector::iterator Out = LiveIns.begin();
362 for (; I != LiveIns.end(); ++Out, I = J) {
363 unsigned PhysReg = I->PhysReg;
Matthias Braune6a24852015-09-25 21:51:14 +0000364 LaneBitmask LaneMask = I->LaneMask;
Matthias Braund9da1622015-09-09 18:08:03 +0000365 for (J = std::next(I); J != LiveIns.end() && J->PhysReg == PhysReg; ++J)
366 LaneMask |= J->LaneMask;
367 Out->PhysReg = PhysReg;
368 Out->LaneMask = LaneMask;
369 }
370 LiveIns.erase(Out, LiveIns.end());
Aaron Ballman9f154f62015-07-29 15:57:49 +0000371}
372
Jakob Stoklund Olesen533c3bf2013-07-03 23:56:20 +0000373unsigned
Matthias Braun130bd902015-08-25 22:05:55 +0000374MachineBasicBlock::addLiveIn(MCPhysReg PhysReg, const TargetRegisterClass *RC) {
Jakob Stoklund Olesen533c3bf2013-07-03 23:56:20 +0000375 assert(getParent() && "MBB must be inserted in function");
376 assert(TargetRegisterInfo::isPhysicalRegister(PhysReg) && "Expected physreg");
377 assert(RC && "Register class is required");
Reid Kleckner0e288232015-08-27 23:27:47 +0000378 assert((isEHPad() || this == &getParent()->front()) &&
Jakob Stoklund Olesen533c3bf2013-07-03 23:56:20 +0000379 "Only the entry block and landing pads can have physreg live ins");
380
381 bool LiveIn = isLiveIn(PhysReg);
Jakob Stoklund Olesenbbbb5322013-07-04 04:32:35 +0000382 iterator I = SkipPHIsAndLabels(begin()), E = end();
Jakob Stoklund Olesen533c3bf2013-07-03 23:56:20 +0000383 MachineRegisterInfo &MRI = getParent()->getRegInfo();
Eric Christopherfc6de422014-08-05 02:39:49 +0000384 const TargetInstrInfo &TII = *getParent()->getSubtarget().getInstrInfo();
Jakob Stoklund Olesen533c3bf2013-07-03 23:56:20 +0000385
386 // Look for an existing copy.
387 if (LiveIn)
388 for (;I != E && I->isCopy(); ++I)
389 if (I->getOperand(1).getReg() == PhysReg) {
390 unsigned VirtReg = I->getOperand(0).getReg();
391 if (!MRI.constrainRegClass(VirtReg, RC))
392 llvm_unreachable("Incompatible live-in register class.");
393 return VirtReg;
394 }
395
396 // No luck, create a virtual register.
397 unsigned VirtReg = MRI.createVirtualRegister(RC);
398 BuildMI(*this, I, DebugLoc(), TII.get(TargetOpcode::COPY), VirtReg)
399 .addReg(PhysReg, RegState::Kill);
400 if (!LiveIn)
401 addLiveIn(PhysReg);
402 return VirtReg;
403}
404
Chris Lattner94866be2006-10-24 00:02:26 +0000405void MachineBasicBlock::moveBefore(MachineBasicBlock *NewAfter) {
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000406 getParent()->splice(NewAfter->getIterator(), getIterator());
Chris Lattner94866be2006-10-24 00:02:26 +0000407}
408
409void MachineBasicBlock::moveAfter(MachineBasicBlock *NewBefore) {
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000410 getParent()->splice(++NewBefore->getIterator(), getIterator());
Chris Lattner94866be2006-10-24 00:02:26 +0000411}
412
Jim Grosbach801b33b2009-11-12 03:55:33 +0000413void MachineBasicBlock::updateTerminator() {
Eric Christopherfc6de422014-08-05 02:39:49 +0000414 const TargetInstrInfo *TII = getParent()->getSubtarget().getInstrInfo();
Jim Grosbach801b33b2009-11-12 03:55:33 +0000415 // A block with no successors has no concerns with fall-through edges.
416 if (this->succ_empty()) return;
417
Craig Topperc0196b12014-04-14 00:51:57 +0000418 MachineBasicBlock *TBB = nullptr, *FBB = nullptr;
Jim Grosbach801b33b2009-11-12 03:55:33 +0000419 SmallVector<MachineOperand, 4> Cond;
Cong Hou166e0852015-09-29 19:46:09 +0000420 DebugLoc DL; // FIXME: this is nowhere
Jim Grosbach801b33b2009-11-12 03:55:33 +0000421 bool B = TII->AnalyzeBranch(*this, TBB, FBB, Cond);
422 (void) B;
423 assert(!B && "UpdateTerminators requires analyzable predecessors!");
424 if (Cond.empty()) {
425 if (TBB) {
426 // The block has an unconditional branch. If its successor is now
427 // its layout successor, delete the branch.
428 if (isLayoutSuccessor(TBB))
429 TII->RemoveBranch(*this);
430 } else {
431 // The block has an unconditional fallthrough. If its successor is not
Chandler Carruthee54feb2011-11-22 13:13:16 +0000432 // its layout successor, insert a branch. First we have to locate the
433 // only non-landing-pad successor, as that is the fallthrough block.
434 for (succ_iterator SI = succ_begin(), SE = succ_end(); SI != SE; ++SI) {
Reid Kleckner0e288232015-08-27 23:27:47 +0000435 if ((*SI)->isEHPad())
Chandler Carruthee54feb2011-11-22 13:13:16 +0000436 continue;
437 assert(!TBB && "Found more than one non-landing-pad successor!");
438 TBB = *SI;
439 }
Chandler Carruth8c68f1f2011-11-23 08:23:54 +0000440
441 // If there is no non-landing-pad successor, the block has no
442 // fall-through edges to be concerned with.
443 if (!TBB)
444 return;
445
446 // Finally update the unconditional successor to be reached via a branch
447 // if it would not be reached by fallthrough.
Jim Grosbach801b33b2009-11-12 03:55:33 +0000448 if (!isLayoutSuccessor(TBB))
Cong Hou166e0852015-09-29 19:46:09 +0000449 TII->InsertBranch(*this, TBB, nullptr, Cond, DL);
Jim Grosbach801b33b2009-11-12 03:55:33 +0000450 }
451 } else {
452 if (FBB) {
453 // The block has a non-fallthrough conditional branch. If one of its
454 // successors is its layout successor, rewrite it to a fallthrough
455 // conditional branch.
456 if (isLayoutSuccessor(TBB)) {
Jakob Stoklund Olesen8a3fdae2009-11-22 18:28:04 +0000457 if (TII->ReverseBranchCondition(Cond))
458 return;
Jim Grosbach801b33b2009-11-12 03:55:33 +0000459 TII->RemoveBranch(*this);
Cong Hou166e0852015-09-29 19:46:09 +0000460 TII->InsertBranch(*this, FBB, nullptr, Cond, DL);
Jim Grosbach801b33b2009-11-12 03:55:33 +0000461 } else if (isLayoutSuccessor(FBB)) {
462 TII->RemoveBranch(*this);
Cong Hou166e0852015-09-29 19:46:09 +0000463 TII->InsertBranch(*this, TBB, nullptr, Cond, DL);
Jim Grosbach801b33b2009-11-12 03:55:33 +0000464 }
465 } else {
Chandler Carruth1f5580b2012-04-16 22:03:00 +0000466 // Walk through the successors and find the successor which is not
467 // a landing pad and is not the conditional branch destination (in TBB)
468 // as the fallthrough successor.
Craig Topperc0196b12014-04-14 00:51:57 +0000469 MachineBasicBlock *FallthroughBB = nullptr;
Chandler Carruth1f5580b2012-04-16 22:03:00 +0000470 for (succ_iterator SI = succ_begin(), SE = succ_end(); SI != SE; ++SI) {
Reid Kleckner0e288232015-08-27 23:27:47 +0000471 if ((*SI)->isEHPad() || *SI == TBB)
Chandler Carruth1f5580b2012-04-16 22:03:00 +0000472 continue;
473 assert(!FallthroughBB && "Found more than one fallthrough successor.");
474 FallthroughBB = *SI;
475 }
476 if (!FallthroughBB && canFallThrough()) {
477 // We fallthrough to the same basic block as the conditional jump
478 // targets. Remove the conditional jump, leaving unconditional
479 // fallthrough.
Cong Hou2793e722015-08-10 22:27:10 +0000480 // FIXME: This does not seem like a reasonable pattern to support, but
481 // it has been seen in the wild coming out of degenerate ARM test cases.
Chandler Carruth1f5580b2012-04-16 22:03:00 +0000482 TII->RemoveBranch(*this);
483
484 // Finally update the unconditional successor to be reached via a branch
485 // if it would not be reached by fallthrough.
486 if (!isLayoutSuccessor(TBB))
Cong Hou166e0852015-09-29 19:46:09 +0000487 TII->InsertBranch(*this, TBB, nullptr, Cond, DL);
Chandler Carruth1f5580b2012-04-16 22:03:00 +0000488 return;
489 }
490
Jim Grosbach801b33b2009-11-12 03:55:33 +0000491 // The block has a fallthrough conditional branch.
Jim Grosbach801b33b2009-11-12 03:55:33 +0000492 if (isLayoutSuccessor(TBB)) {
Jakob Stoklund Olesen8a3fdae2009-11-22 18:28:04 +0000493 if (TII->ReverseBranchCondition(Cond)) {
494 // We can't reverse the condition, add an unconditional branch.
495 Cond.clear();
Cong Hou166e0852015-09-29 19:46:09 +0000496 TII->InsertBranch(*this, FallthroughBB, nullptr, Cond, DL);
Jakob Stoklund Olesen8a3fdae2009-11-22 18:28:04 +0000497 return;
498 }
Jim Grosbach801b33b2009-11-12 03:55:33 +0000499 TII->RemoveBranch(*this);
Cong Hou166e0852015-09-29 19:46:09 +0000500 TII->InsertBranch(*this, FallthroughBB, nullptr, Cond, DL);
Chandler Carruth1f5580b2012-04-16 22:03:00 +0000501 } else if (!isLayoutSuccessor(FallthroughBB)) {
Jim Grosbach801b33b2009-11-12 03:55:33 +0000502 TII->RemoveBranch(*this);
Cong Hou166e0852015-09-29 19:46:09 +0000503 TII->InsertBranch(*this, TBB, FallthroughBB, Cond, DL);
Jim Grosbach801b33b2009-11-12 03:55:33 +0000504 }
505 }
506 }
507}
Chris Lattner94866be2006-10-24 00:02:26 +0000508
Cong Houc1069892015-12-13 09:26:17 +0000509void MachineBasicBlock::validateSuccProbs() const {
510#ifndef NDEBUG
511 int64_t Sum = 0;
512 for (auto Prob : Probs)
513 Sum += Prob.getNumerator();
514 // Due to precision issue, we assume that the sum of probabilities is one if
515 // the difference between the sum of their numerators and the denominator is
516 // no greater than the number of successors.
Cong Houc00e65a2015-12-13 17:00:25 +0000517 assert((uint64_t)std::abs(Sum - BranchProbability::getDenominator()) <=
Cong Houc1069892015-12-13 09:26:17 +0000518 Probs.size() &&
519 "The sum of successors's probabilities exceeds one.");
520#endif // NDEBUG
521}
522
Cong Hou23a3bf02015-11-04 21:37:58 +0000523void MachineBasicBlock::addSuccessor(MachineBasicBlock *Succ,
524 BranchProbability Prob) {
525 // Probability list is either empty (if successor list isn't empty, this means
526 // disabled optimization) or has the same size as successor list.
Cong Hou4aef7ef2015-12-01 11:05:39 +0000527 if (!(Probs.empty() && !Successors.empty()))
Cong Hou23a3bf02015-11-04 21:37:58 +0000528 Probs.push_back(Prob);
529 Successors.push_back(Succ);
530 Succ->addPredecessor(this);
531}
532
533void MachineBasicBlock::addSuccessorWithoutProb(MachineBasicBlock *Succ) {
534 // We need to make sure probability list is either empty or has the same size
535 // of successor list. When this function is called, we can safely delete all
536 // probability in the list.
537 Probs.clear();
538 Successors.push_back(Succ);
539 Succ->addPredecessor(this);
540}
541
Cong Houc1069892015-12-13 09:26:17 +0000542void MachineBasicBlock::removeSuccessor(MachineBasicBlock *Succ,
543 bool NormalizeSuccProbs) {
Cong Hou166e0852015-09-29 19:46:09 +0000544 succ_iterator I = std::find(Successors.begin(), Successors.end(), Succ);
Cong Houc1069892015-12-13 09:26:17 +0000545 removeSuccessor(I, NormalizeSuccProbs);
Chris Lattner4336b872004-10-26 15:43:42 +0000546}
547
Jakub Staszakfeadd432011-06-16 18:01:17 +0000548MachineBasicBlock::succ_iterator
Cong Houc1069892015-12-13 09:26:17 +0000549MachineBasicBlock::removeSuccessor(succ_iterator I, bool NormalizeSuccProbs) {
Chris Lattner4336b872004-10-26 15:43:42 +0000550 assert(I != Successors.end() && "Not a current successor!");
Jakub Staszak12a43bd2011-06-16 20:22:37 +0000551
Cong Hou23a3bf02015-11-04 21:37:58 +0000552 // If probability list is empty it means we don't use it (disabled
553 // optimization).
554 if (!Probs.empty()) {
555 probability_iterator WI = getProbabilityIterator(I);
556 Probs.erase(WI);
Cong Houc1069892015-12-13 09:26:17 +0000557 if (NormalizeSuccProbs)
558 normalizeSuccProbs();
Cong Hou23a3bf02015-11-04 21:37:58 +0000559 }
560
Chris Lattner4336b872004-10-26 15:43:42 +0000561 (*I)->removePredecessor(this);
Dan Gohmanf87dc922009-01-08 22:19:34 +0000562 return Successors.erase(I);
Chris Lattner4336b872004-10-26 15:43:42 +0000563}
564
Jakub Staszak12a43bd2011-06-16 20:22:37 +0000565void MachineBasicBlock::replaceSuccessor(MachineBasicBlock *Old,
566 MachineBasicBlock *New) {
Jakob Stoklund Olesen8c28ac92012-08-10 03:23:27 +0000567 if (Old == New)
568 return;
Jakub Staszak12a43bd2011-06-16 20:22:37 +0000569
Jakob Stoklund Olesen8c28ac92012-08-10 03:23:27 +0000570 succ_iterator E = succ_end();
571 succ_iterator NewI = E;
572 succ_iterator OldI = E;
573 for (succ_iterator I = succ_begin(); I != E; ++I) {
574 if (*I == Old) {
575 OldI = I;
576 if (NewI != E)
577 break;
578 }
579 if (*I == New) {
580 NewI = I;
581 if (OldI != E)
582 break;
583 }
584 }
585 assert(OldI != E && "Old is not a successor of this block");
Jakob Stoklund Olesen8c28ac92012-08-10 03:23:27 +0000586
587 // If New isn't already a successor, let it take Old's place.
588 if (NewI == E) {
Cong Hou11c14202015-11-18 01:45:10 +0000589 Old->removePredecessor(this);
Jakob Stoklund Olesen8c28ac92012-08-10 03:23:27 +0000590 New->addPredecessor(this);
591 *OldI = New;
592 return;
Jakub Staszak12a43bd2011-06-16 20:22:37 +0000593 }
594
Jakob Stoklund Olesen8c28ac92012-08-10 03:23:27 +0000595 // New is already a successor.
Cong Hou23a3bf02015-11-04 21:37:58 +0000596 // Update its probability instead of adding a duplicate edge.
Cong Houd97c1002015-12-01 05:29:22 +0000597 if (!Probs.empty()) {
598 auto ProbIter = getProbabilityIterator(NewI);
599 if (!ProbIter->isUnknown())
600 *ProbIter += *getProbabilityIterator(OldI);
601 }
Cong Hou11c14202015-11-18 01:45:10 +0000602 removeSuccessor(OldI);
Jakub Staszak12a43bd2011-06-16 20:22:37 +0000603}
604
Cong Hou166e0852015-09-29 19:46:09 +0000605void MachineBasicBlock::addPredecessor(MachineBasicBlock *Pred) {
606 Predecessors.push_back(Pred);
Chris Lattner4336b872004-10-26 15:43:42 +0000607}
608
Cong Hou166e0852015-09-29 19:46:09 +0000609void MachineBasicBlock::removePredecessor(MachineBasicBlock *Pred) {
610 pred_iterator I = std::find(Predecessors.begin(), Predecessors.end(), Pred);
Chris Lattner4336b872004-10-26 15:43:42 +0000611 assert(I != Predecessors.end() && "Pred is not a predecessor of this block!");
612 Predecessors.erase(I);
613}
Evan Chenga92b2b32007-05-17 23:58:53 +0000614
Cong Hou166e0852015-09-29 19:46:09 +0000615void MachineBasicBlock::transferSuccessors(MachineBasicBlock *FromMBB) {
616 if (this == FromMBB)
Mon P Wang3e583932008-05-05 19:05:59 +0000617 return;
Jakub Staszakfeadd432011-06-16 18:01:17 +0000618
Cong Hou166e0852015-09-29 19:46:09 +0000619 while (!FromMBB->succ_empty()) {
620 MachineBasicBlock *Succ = *FromMBB->succ_begin();
Jakub Staszak12a43bd2011-06-16 20:22:37 +0000621
Cong Houd97c1002015-12-01 05:29:22 +0000622 // If probability list is empty it means we don't use it (disabled optimization).
623 if (!FromMBB->Probs.empty()) {
624 auto Prob = *FromMBB->Probs.begin();
625 addSuccessor(Succ, Prob);
626 } else
627 addSuccessorWithoutProb(Succ);
Jakub Staszak12a43bd2011-06-16 20:22:37 +0000628
Cong Hou166e0852015-09-29 19:46:09 +0000629 FromMBB->removeSuccessor(Succ);
Dan Gohman34396292010-07-06 20:24:04 +0000630 }
631}
632
633void
Cong Hou166e0852015-09-29 19:46:09 +0000634MachineBasicBlock::transferSuccessorsAndUpdatePHIs(MachineBasicBlock *FromMBB) {
635 if (this == FromMBB)
Dan Gohman34396292010-07-06 20:24:04 +0000636 return;
Jakub Staszakfeadd432011-06-16 18:01:17 +0000637
Cong Hou166e0852015-09-29 19:46:09 +0000638 while (!FromMBB->succ_empty()) {
639 MachineBasicBlock *Succ = *FromMBB->succ_begin();
Cong Houd97c1002015-12-01 05:29:22 +0000640 if (!FromMBB->Probs.empty()) {
641 auto Prob = *FromMBB->Probs.begin();
642 addSuccessor(Succ, Prob);
643 } else
644 addSuccessorWithoutProb(Succ);
Cong Hou166e0852015-09-29 19:46:09 +0000645 FromMBB->removeSuccessor(Succ);
Dan Gohman34396292010-07-06 20:24:04 +0000646
647 // Fix up any PHI nodes in the successor.
Evan Cheng7fae11b2011-12-14 02:11:42 +0000648 for (MachineBasicBlock::instr_iterator MI = Succ->instr_begin(),
649 ME = Succ->instr_end(); MI != ME && MI->isPHI(); ++MI)
Dan Gohman34396292010-07-06 20:24:04 +0000650 for (unsigned i = 2, e = MI->getNumOperands()+1; i != e; i += 2) {
651 MachineOperand &MO = MI->getOperand(i);
Cong Hou166e0852015-09-29 19:46:09 +0000652 if (MO.getMBB() == FromMBB)
Dan Gohman34396292010-07-06 20:24:04 +0000653 MO.setMBB(this);
654 }
655 }
Cong Houc1069892015-12-13 09:26:17 +0000656 normalizeSuccProbs();
Mon P Wang3e583932008-05-05 19:05:59 +0000657}
658
Jakob Stoklund Olesenfee94ca2012-07-30 17:36:47 +0000659bool MachineBasicBlock::isPredecessor(const MachineBasicBlock *MBB) const {
660 return std::find(pred_begin(), pred_end(), MBB) != pred_end();
661}
662
Dan Gohmanff62c622009-03-30 20:06:29 +0000663bool MachineBasicBlock::isSuccessor(const MachineBasicBlock *MBB) const {
Jakob Stoklund Olesenfee94ca2012-07-30 17:36:47 +0000664 return std::find(succ_begin(), succ_end(), MBB) != succ_end();
Evan Chenga92b2b32007-05-17 23:58:53 +0000665}
Evan Chengdf757852007-06-04 06:44:01 +0000666
Dan Gohmanff62c622009-03-30 20:06:29 +0000667bool MachineBasicBlock::isLayoutSuccessor(const MachineBasicBlock *MBB) const {
Dan Gohmana78bae32008-10-02 22:09:09 +0000668 MachineFunction::const_iterator I(this);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000669 return std::next(I) == MachineFunction::const_iterator(MBB);
Dan Gohmana78bae32008-10-02 22:09:09 +0000670}
671
Bob Wilson2d4ff122009-11-26 00:32:21 +0000672bool MachineBasicBlock::canFallThrough() {
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000673 MachineFunction::iterator Fallthrough = getIterator();
Bob Wilson2d4ff122009-11-26 00:32:21 +0000674 ++Fallthrough;
675 // If FallthroughBlock is off the end of the function, it can't fall through.
676 if (Fallthrough == getParent()->end())
677 return false;
678
679 // If FallthroughBlock isn't a successor, no fallthrough is possible.
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000680 if (!isSuccessor(&*Fallthrough))
Bob Wilson2d4ff122009-11-26 00:32:21 +0000681 return false;
682
Dan Gohman0b44cb02009-12-05 00:32:59 +0000683 // Analyze the branches, if any, at the end of the block.
Craig Topperc0196b12014-04-14 00:51:57 +0000684 MachineBasicBlock *TBB = nullptr, *FBB = nullptr;
Dan Gohman0b44cb02009-12-05 00:32:59 +0000685 SmallVector<MachineOperand, 4> Cond;
Eric Christopherfc6de422014-08-05 02:39:49 +0000686 const TargetInstrInfo *TII = getParent()->getSubtarget().getInstrInfo();
Jakob Stoklund Olesen834d70d2010-01-15 20:00:12 +0000687 if (TII->AnalyzeBranch(*this, TBB, FBB, Cond)) {
Dan Gohman0b44cb02009-12-05 00:32:59 +0000688 // If we couldn't analyze the branch, examine the last instruction.
689 // If the block doesn't end in a known control barrier, assume fallthrough
Chad Rosier1a1531d2012-01-26 18:24:25 +0000690 // is possible. The isPredicated check is needed because this code can be
Dan Gohman0b44cb02009-12-05 00:32:59 +0000691 // called during IfConversion, where an instruction which is normally a
Chad Rosier9b61cf32012-01-26 20:19:05 +0000692 // Barrier is predicated and thus no longer an actual control barrier.
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +0000693 return empty() || !back().isBarrier() || TII->isPredicated(back());
Dan Gohman0b44cb02009-12-05 00:32:59 +0000694 }
Bob Wilson2d4ff122009-11-26 00:32:21 +0000695
696 // If there is no branch, control always falls through.
Craig Topperc0196b12014-04-14 00:51:57 +0000697 if (!TBB) return true;
Bob Wilson2d4ff122009-11-26 00:32:21 +0000698
699 // If there is some explicit branch to the fallthrough block, it can obviously
700 // reach, even though the branch should get folded to fall through implicitly.
701 if (MachineFunction::iterator(TBB) == Fallthrough ||
702 MachineFunction::iterator(FBB) == Fallthrough)
703 return true;
704
705 // If it's an unconditional branch to some block not the fall through, it
706 // doesn't fall through.
707 if (Cond.empty()) return false;
708
709 // Otherwise, if it is conditional and has no explicit false block, it falls
710 // through.
Craig Topperc0196b12014-04-14 00:51:57 +0000711 return FBB == nullptr;
Bob Wilson2d4ff122009-11-26 00:32:21 +0000712}
713
Dan Gohman3570f812010-06-22 17:25:57 +0000714MachineBasicBlock *
715MachineBasicBlock::SplitCriticalEdge(MachineBasicBlock *Succ, Pass *P) {
Quentin Colombet77e18782016-04-21 20:46:27 +0000716 if (!canSplitCriticalEdge(Succ))
Craig Topperc0196b12014-04-14 00:51:57 +0000717 return nullptr;
Evan Cheng2d14d8a2012-04-24 19:06:55 +0000718
Dan Gohman3570f812010-06-22 17:25:57 +0000719 MachineFunction *MF = getParent();
Cong Hou166e0852015-09-29 19:46:09 +0000720 DebugLoc DL; // FIXME: this is nowhere
Dan Gohman3570f812010-06-22 17:25:57 +0000721
Dan Gohman3570f812010-06-22 17:25:57 +0000722 MachineBasicBlock *NMBB = MF->CreateMachineBasicBlock();
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000723 MF->insert(std::next(MachineFunction::iterator(this)), NMBB);
Evan Chenga6848242010-08-17 17:15:14 +0000724 DEBUG(dbgs() << "Splitting critical edge:"
Dan Gohman3570f812010-06-22 17:25:57 +0000725 " BB#" << getNumber()
726 << " -- BB#" << NMBB->getNumber()
727 << " -- BB#" << Succ->getNumber() << '\n');
Cameron Zwarichcdcab382013-02-12 03:49:20 +0000728
729 LiveIntervals *LIS = P->getAnalysisIfAvailable<LiveIntervals>();
Cameron Zwarich21beaf62013-02-10 23:29:54 +0000730 SlotIndexes *Indexes = P->getAnalysisIfAvailable<SlotIndexes>();
Cameron Zwarichcdcab382013-02-12 03:49:20 +0000731 if (LIS)
732 LIS->insertMBBInMaps(NMBB);
733 else if (Indexes)
Cameron Zwarich21beaf62013-02-10 23:29:54 +0000734 Indexes->insertMBBInMaps(NMBB);
Dan Gohman3570f812010-06-22 17:25:57 +0000735
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000736 // On some targets like Mips, branches may kill virtual registers. Make sure
737 // that LiveVariables is properly updated after updateTerminator replaces the
738 // terminators.
739 LiveVariables *LV = P->getAnalysisIfAvailable<LiveVariables>();
740
741 // Collect a list of virtual registers killed by the terminators.
742 SmallVector<unsigned, 4> KilledRegs;
743 if (LV)
Evan Cheng7fae11b2011-12-14 02:11:42 +0000744 for (instr_iterator I = getFirstInstrTerminator(), E = instr_end();
Evan Cheng2a81dd42011-12-06 22:12:01 +0000745 I != E; ++I) {
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000746 MachineInstr *MI = &*I;
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000747 for (MachineInstr::mop_iterator OI = MI->operands_begin(),
748 OE = MI->operands_end(); OI != OE; ++OI) {
Lang Hamesedeea172012-02-09 05:59:36 +0000749 if (!OI->isReg() || OI->getReg() == 0 ||
750 !OI->isUse() || !OI->isKill() || OI->isUndef())
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000751 continue;
752 unsigned Reg = OI->getReg();
Lang Hamesedeea172012-02-09 05:59:36 +0000753 if (TargetRegisterInfo::isPhysicalRegister(Reg) ||
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000754 LV->getVarInfo(Reg).removeKill(MI)) {
755 KilledRegs.push_back(Reg);
756 DEBUG(dbgs() << "Removing terminator kill: " << *MI);
757 OI->setIsKill(false);
758 }
759 }
760 }
761
Cameron Zwarichbfebb412013-02-17 00:10:44 +0000762 SmallVector<unsigned, 4> UsedRegs;
763 if (LIS) {
764 for (instr_iterator I = getFirstInstrTerminator(), E = instr_end();
765 I != E; ++I) {
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000766 MachineInstr *MI = &*I;
Cameron Zwarichbfebb412013-02-17 00:10:44 +0000767
768 for (MachineInstr::mop_iterator OI = MI->operands_begin(),
769 OE = MI->operands_end(); OI != OE; ++OI) {
770 if (!OI->isReg() || OI->getReg() == 0)
771 continue;
772
773 unsigned Reg = OI->getReg();
774 if (std::find(UsedRegs.begin(), UsedRegs.end(), Reg) == UsedRegs.end())
775 UsedRegs.push_back(Reg);
776 }
777 }
778 }
779
Dan Gohman3570f812010-06-22 17:25:57 +0000780 ReplaceUsesOfBlockWith(Succ, NMBB);
Cameron Zwarichba378ce2013-02-11 09:24:45 +0000781
782 // If updateTerminator() removes instructions, we need to remove them from
783 // SlotIndexes.
784 SmallVector<MachineInstr*, 4> Terminators;
785 if (Indexes) {
786 for (instr_iterator I = getFirstInstrTerminator(), E = instr_end();
787 I != E; ++I)
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000788 Terminators.push_back(&*I);
Cameron Zwarichba378ce2013-02-11 09:24:45 +0000789 }
790
Dan Gohman3570f812010-06-22 17:25:57 +0000791 updateTerminator();
792
Cameron Zwarichba378ce2013-02-11 09:24:45 +0000793 if (Indexes) {
794 SmallVector<MachineInstr*, 4> NewTerminators;
795 for (instr_iterator I = getFirstInstrTerminator(), E = instr_end();
796 I != E; ++I)
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000797 NewTerminators.push_back(&*I);
Cameron Zwarichba378ce2013-02-11 09:24:45 +0000798
799 for (SmallVectorImpl<MachineInstr*>::iterator I = Terminators.begin(),
800 E = Terminators.end(); I != E; ++I) {
801 if (std::find(NewTerminators.begin(), NewTerminators.end(), *I) ==
802 NewTerminators.end())
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000803 Indexes->removeMachineInstrFromMaps(**I);
Cameron Zwarichba378ce2013-02-11 09:24:45 +0000804 }
805 }
806
Dan Gohman3570f812010-06-22 17:25:57 +0000807 // Insert unconditional "jump Succ" instruction in NMBB if necessary.
808 NMBB->addSuccessor(Succ);
809 if (!NMBB->isLayoutSuccessor(Succ)) {
Quentin Colombet77e18782016-04-21 20:46:27 +0000810 SmallVector<MachineOperand, 4> Cond;
811 const TargetInstrInfo *TII = getParent()->getSubtarget().getInstrInfo();
Cong Hou166e0852015-09-29 19:46:09 +0000812 TII->InsertBranch(*NMBB, Succ, nullptr, Cond, DL);
Cameron Zwarich21beaf62013-02-10 23:29:54 +0000813
814 if (Indexes) {
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000815 for (MachineInstr &MI : NMBB->instrs()) {
Cameron Zwarich21beaf62013-02-10 23:29:54 +0000816 // Some instructions may have been moved to NMBB by updateTerminator(),
817 // so we first remove any instruction that already has an index.
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000818 if (Indexes->hasIndex(MI))
819 Indexes->removeMachineInstrFromMaps(MI);
820 Indexes->insertMachineInstrInMaps(MI);
Cameron Zwarich21beaf62013-02-10 23:29:54 +0000821 }
822 }
Dan Gohman3570f812010-06-22 17:25:57 +0000823 }
824
825 // Fix PHI nodes in Succ so they refer to NMBB instead of this
Evan Cheng7fae11b2011-12-14 02:11:42 +0000826 for (MachineBasicBlock::instr_iterator
827 i = Succ->instr_begin(),e = Succ->instr_end();
828 i != e && i->isPHI(); ++i)
Dan Gohman3570f812010-06-22 17:25:57 +0000829 for (unsigned ni = 1, ne = i->getNumOperands(); ni != ne; ni += 2)
830 if (i->getOperand(ni+1).getMBB() == this)
831 i->getOperand(ni+1).setMBB(NMBB);
832
Jakob Stoklund Olesen06b6ccf2011-10-14 17:25:46 +0000833 // Inherit live-ins from the successor
Matthias Braund9da1622015-09-09 18:08:03 +0000834 for (const auto &LI : Succ->liveins())
Matthias Braunb2b7ef12015-08-24 22:59:52 +0000835 NMBB->addLiveIn(LI);
Jakob Stoklund Olesen06b6ccf2011-10-14 17:25:46 +0000836
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000837 // Update LiveVariables.
Eric Christopherfc6de422014-08-05 02:39:49 +0000838 const TargetRegisterInfo *TRI = MF->getSubtarget().getRegisterInfo();
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000839 if (LV) {
840 // Restore kills of virtual registers that were killed by the terminators.
841 while (!KilledRegs.empty()) {
842 unsigned Reg = KilledRegs.pop_back_val();
Evan Cheng7fae11b2011-12-14 02:11:42 +0000843 for (instr_iterator I = instr_end(), E = instr_begin(); I != E;) {
Lang Hamesedeea172012-02-09 05:59:36 +0000844 if (!(--I)->addRegisterKilled(Reg, TRI, /* addIfNotFound= */ false))
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000845 continue;
Lang Hamesedeea172012-02-09 05:59:36 +0000846 if (TargetRegisterInfo::isVirtualRegister(Reg))
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000847 LV->getVarInfo(Reg).Kills.push_back(&*I);
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000848 DEBUG(dbgs() << "Restored terminator kill: " << *I);
849 break;
850 }
851 }
852 // Update relevant live-through information.
Dan Gohman3570f812010-06-22 17:25:57 +0000853 LV->addNewBlock(NMBB, this, Succ);
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000854 }
Dan Gohman3570f812010-06-22 17:25:57 +0000855
Cameron Zwarichcdcab382013-02-12 03:49:20 +0000856 if (LIS) {
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000857 // After splitting the edge and updating SlotIndexes, live intervals may be
858 // in one of two situations, depending on whether this block was the last in
Cong Hou2793e722015-08-10 22:27:10 +0000859 // the function. If the original block was the last in the function, all
860 // live intervals will end prior to the beginning of the new split block. If
861 // the original block was not at the end of the function, all live intervals
862 // will extend to the end of the new split block.
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000863
864 bool isLastMBB =
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000865 std::next(MachineFunction::iterator(NMBB)) == getParent()->end();
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000866
867 SlotIndex StartIndex = Indexes->getMBBEndIdx(this);
868 SlotIndex PrevIndex = StartIndex.getPrevSlot();
869 SlotIndex EndIndex = Indexes->getMBBEndIdx(NMBB);
870
871 // Find the registers used from NMBB in PHIs in Succ.
872 SmallSet<unsigned, 8> PHISrcRegs;
873 for (MachineBasicBlock::instr_iterator
874 I = Succ->instr_begin(), E = Succ->instr_end();
875 I != E && I->isPHI(); ++I) {
876 for (unsigned ni = 1, ne = I->getNumOperands(); ni != ne; ni += 2) {
877 if (I->getOperand(ni+1).getMBB() == NMBB) {
878 MachineOperand &MO = I->getOperand(ni);
879 unsigned Reg = MO.getReg();
880 PHISrcRegs.insert(Reg);
Cameron Zwarichaf349312013-02-12 03:49:17 +0000881 if (MO.isUndef())
882 continue;
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000883
884 LiveInterval &LI = LIS->getInterval(Reg);
885 VNInfo *VNI = LI.getVNInfoAt(PrevIndex);
Cong Hou2793e722015-08-10 22:27:10 +0000886 assert(VNI &&
887 "PHI sources should be live out of their predecessors.");
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000888 LI.addSegment(LiveInterval::Segment(StartIndex, EndIndex, VNI));
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000889 }
890 }
891 }
892
893 MachineRegisterInfo *MRI = &getParent()->getRegInfo();
894 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
895 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
896 if (PHISrcRegs.count(Reg) || !LIS->hasInterval(Reg))
897 continue;
898
899 LiveInterval &LI = LIS->getInterval(Reg);
900 if (!LI.liveAt(PrevIndex))
901 continue;
902
Cameron Zwarichaf349312013-02-12 03:49:17 +0000903 bool isLiveOut = LI.liveAt(LIS->getMBBStartIdx(Succ));
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000904 if (isLiveOut && isLastMBB) {
905 VNInfo *VNI = LI.getVNInfoAt(PrevIndex);
906 assert(VNI && "LiveInterval should have VNInfo where it is live.");
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000907 LI.addSegment(LiveInterval::Segment(StartIndex, EndIndex, VNI));
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000908 } else if (!isLiveOut && !isLastMBB) {
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000909 LI.removeSegment(StartIndex, EndIndex);
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000910 }
911 }
Cameron Zwarichbfebb412013-02-17 00:10:44 +0000912
913 // Update all intervals for registers whose uses may have been modified by
914 // updateTerminator().
Cameron Zwarich24955962013-02-17 11:09:00 +0000915 LIS->repairIntervalsInRange(this, getFirstTerminator(), end(), UsedRegs);
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000916 }
917
Dan Gohman3570f812010-06-22 17:25:57 +0000918 if (MachineDominatorTree *MDT =
Quentin Colombetabea99f2014-08-13 21:00:07 +0000919 P->getAnalysisIfAvailable<MachineDominatorTree>())
920 MDT->recordSplitCriticalEdge(this, Succ, NMBB);
Dan Gohman3570f812010-06-22 17:25:57 +0000921
Evan Cheng647c5592010-08-17 17:43:50 +0000922 if (MachineLoopInfo *MLI = P->getAnalysisIfAvailable<MachineLoopInfo>())
Dan Gohman3570f812010-06-22 17:25:57 +0000923 if (MachineLoop *TIL = MLI->getLoopFor(this)) {
924 // If one or the other blocks were not in a loop, the new block is not
925 // either, and thus LI doesn't need to be updated.
926 if (MachineLoop *DestLoop = MLI->getLoopFor(Succ)) {
927 if (TIL == DestLoop) {
928 // Both in the same loop, the NMBB joins loop.
929 DestLoop->addBasicBlockToLoop(NMBB, MLI->getBase());
930 } else if (TIL->contains(DestLoop)) {
931 // Edge from an outer loop to an inner loop. Add to the outer loop.
932 TIL->addBasicBlockToLoop(NMBB, MLI->getBase());
933 } else if (DestLoop->contains(TIL)) {
934 // Edge from an inner loop to an outer loop. Add to the outer loop.
935 DestLoop->addBasicBlockToLoop(NMBB, MLI->getBase());
936 } else {
937 // Edge from two loops with no containment relation. Because these
938 // are natural loops, we know that the destination block must be the
939 // header of its loop (adding a branch into a loop elsewhere would
940 // create an irreducible loop).
941 assert(DestLoop->getHeader() == Succ &&
942 "Should not create irreducible loops!");
943 if (MachineLoop *P = DestLoop->getParentLoop())
944 P->addBasicBlockToLoop(NMBB, MLI->getBase());
945 }
946 }
947 }
948
949 return NMBB;
950}
951
Quentin Colombet77e18782016-04-21 20:46:27 +0000952bool MachineBasicBlock::canSplitCriticalEdge(
953 const MachineBasicBlock *Succ) const {
954 // Splitting the critical edge to a landing pad block is non-trivial. Don't do
955 // it in this generic function.
956 if (Succ->isEHPad())
957 return false;
958
959 const MachineFunction *MF = getParent();
960
961 // Performance might be harmed on HW that implements branching using exec mask
962 // where both sides of the branches are always executed.
963 if (MF->getTarget().requiresStructuredCFG())
964 return false;
965
966 // We may need to update this's terminator, but we can't do that if
967 // AnalyzeBranch fails. If this uses a jump table, we won't touch it.
968 const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo();
969 MachineBasicBlock *TBB = nullptr, *FBB = nullptr;
970 SmallVector<MachineOperand, 4> Cond;
971 // AnalyzeBanch should modify this, since we did not allow modification.
972 if (TII->AnalyzeBranch(*const_cast<MachineBasicBlock *>(this), TBB, FBB, Cond,
973 /*AllowModify*/ false))
974 return false;
975
976 // Avoid bugpoint weirdness: A block may end with a conditional branch but
977 // jumps to the same MBB is either case. We have duplicate CFG edges in that
978 // case that we can't handle. Since this never happens in properly optimized
979 // code, just skip those edges.
980 if (TBB && TBB == FBB) {
981 DEBUG(dbgs() << "Won't split critical edge after degenerate BB#"
982 << getNumber() << '\n');
983 return false;
984 }
985 return true;
986}
987
Jakob Stoklund Olesenccfb5fb2012-12-17 23:55:38 +0000988/// Prepare MI to be removed from its bundle. This fixes bundle flags on MI's
989/// neighboring instructions so the bundle won't be broken by removing MI.
990static void unbundleSingleMI(MachineInstr *MI) {
991 // Removing the first instruction in a bundle.
992 if (MI->isBundledWithSucc() && !MI->isBundledWithPred())
993 MI->unbundleFromSucc();
994 // Removing the last instruction in a bundle.
995 if (MI->isBundledWithPred() && !MI->isBundledWithSucc())
996 MI->unbundleFromPred();
997 // If MI is not bundled, or if it is internal to a bundle, the neighbor flags
998 // are already fine.
Evan Cheng7fae11b2011-12-14 02:11:42 +0000999}
1000
Jakob Stoklund Olesenccfb5fb2012-12-17 23:55:38 +00001001MachineBasicBlock::instr_iterator
1002MachineBasicBlock::erase(MachineBasicBlock::instr_iterator I) {
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +00001003 unbundleSingleMI(&*I);
Jakob Stoklund Olesenccfb5fb2012-12-17 23:55:38 +00001004 return Insts.erase(I);
1005}
Evan Cheng7fae11b2011-12-14 02:11:42 +00001006
Jakob Stoklund Olesenccfb5fb2012-12-17 23:55:38 +00001007MachineInstr *MachineBasicBlock::remove_instr(MachineInstr *MI) {
1008 unbundleSingleMI(MI);
1009 MI->clearFlag(MachineInstr::BundledPred);
1010 MI->clearFlag(MachineInstr::BundledSucc);
1011 return Insts.remove(MI);
Evan Cheng7fae11b2011-12-14 02:11:42 +00001012}
1013
Jakob Stoklund Olesen422e07b2012-12-18 17:54:53 +00001014MachineBasicBlock::instr_iterator
1015MachineBasicBlock::insert(instr_iterator I, MachineInstr *MI) {
1016 assert(!MI->isBundledWithPred() && !MI->isBundledWithSucc() &&
1017 "Cannot insert instruction with bundle flags");
1018 // Set the bundle flags when inserting inside a bundle.
1019 if (I != instr_end() && I->isBundledWithPred()) {
1020 MI->setFlag(MachineInstr::BundledPred);
1021 MI->setFlag(MachineInstr::BundledSucc);
1022 }
1023 return Insts.insert(I, MI);
1024}
1025
Cong Hou2a02c1c2015-08-12 21:18:54 +00001026/// This method unlinks 'this' from the containing function, and returns it, but
1027/// does not delete it.
Dan Gohman3b460302008-07-07 23:14:23 +00001028MachineBasicBlock *MachineBasicBlock::removeFromParent() {
1029 assert(getParent() && "Not embedded in a function!");
1030 getParent()->remove(this);
1031 return this;
1032}
1033
Cong Hou2a02c1c2015-08-12 21:18:54 +00001034/// This method unlinks 'this' from the containing function, and deletes it.
Dan Gohman3b460302008-07-07 23:14:23 +00001035void MachineBasicBlock::eraseFromParent() {
1036 assert(getParent() && "Not embedded in a function!");
1037 getParent()->erase(this);
1038}
1039
Cong Hou2a02c1c2015-08-12 21:18:54 +00001040/// Given a machine basic block that branched to 'Old', change the code and CFG
1041/// so that it branches to 'New' instead.
Evan Chengdf757852007-06-04 06:44:01 +00001042void MachineBasicBlock::ReplaceUsesOfBlockWith(MachineBasicBlock *Old,
1043 MachineBasicBlock *New) {
1044 assert(Old != New && "Cannot replace self with self!");
1045
Evan Cheng7fae11b2011-12-14 02:11:42 +00001046 MachineBasicBlock::instr_iterator I = instr_end();
1047 while (I != instr_begin()) {
Evan Chengdf757852007-06-04 06:44:01 +00001048 --I;
Evan Cheng7f8e5632011-12-07 07:15:52 +00001049 if (!I->isTerminator()) break;
Evan Chengdf757852007-06-04 06:44:01 +00001050
1051 // Scan the operands of this machine instruction, replacing any uses of Old
1052 // with New.
1053 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
Dan Gohman0d1e9a82008-10-03 15:45:36 +00001054 if (I->getOperand(i).isMBB() &&
Dan Gohman38453ee2008-09-13 17:58:21 +00001055 I->getOperand(i).getMBB() == Old)
Chris Lattnera5bb3702007-12-30 23:10:15 +00001056 I->getOperand(i).setMBB(New);
Evan Chengdf757852007-06-04 06:44:01 +00001057 }
1058
Dan Gohmanbb2f1072009-05-05 21:10:19 +00001059 // Update the successor information.
Jakub Staszak12a43bd2011-06-16 20:22:37 +00001060 replaceSuccessor(Old, New);
Evan Chengdf757852007-06-04 06:44:01 +00001061}
1062
Cong Hou2a02c1c2015-08-12 21:18:54 +00001063/// Various pieces of code can cause excess edges in the CFG to be inserted. If
1064/// we have proven that MBB can only branch to DestA and DestB, remove any other
1065/// MBB successors from the CFG. DestA and DestB can be null.
Jakub Staszakfeadd432011-06-16 18:01:17 +00001066///
Chris Lattner574e7162007-12-31 04:56:33 +00001067/// Besides DestA and DestB, retain other edges leading to LandingPads
1068/// (currently there can be only one; we don't check or require that here).
Evan Cheng2afd7022007-06-18 22:43:58 +00001069/// Note it is possible that DestA and/or DestB are LandingPads.
1070bool MachineBasicBlock::CorrectExtraCFGEdges(MachineBasicBlock *DestA,
1071 MachineBasicBlock *DestB,
Cong Hou166e0852015-09-29 19:46:09 +00001072 bool IsCond) {
Bill Wendling2d5967d2009-12-16 00:08:36 +00001073 // The values of DestA and DestB frequently come from a call to the
1074 // 'TargetInstrInfo::AnalyzeBranch' method. We take our meaning of the initial
1075 // values from there.
1076 //
1077 // 1. If both DestA and DestB are null, then the block ends with no branches
1078 // (it falls through to its successor).
Cong Hou166e0852015-09-29 19:46:09 +00001079 // 2. If DestA is set, DestB is null, and IsCond is false, then the block ends
Bill Wendling2d5967d2009-12-16 00:08:36 +00001080 // with only an unconditional branch.
Cong Hou166e0852015-09-29 19:46:09 +00001081 // 3. If DestA is set, DestB is null, and IsCond is true, then the block ends
Bill Wendling2d5967d2009-12-16 00:08:36 +00001082 // with a conditional branch that falls through to a successor (DestB).
Cong Hou166e0852015-09-29 19:46:09 +00001083 // 4. If DestA and DestB is set and IsCond is true, then the block ends with a
Bill Wendling2d5967d2009-12-16 00:08:36 +00001084 // conditional branch followed by an unconditional branch. DestA is the
1085 // 'true' destination and DestB is the 'false' destination.
1086
Bill Wendling95643402010-04-01 00:00:43 +00001087 bool Changed = false;
Evan Cheng2afd7022007-06-18 22:43:58 +00001088
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +00001089 MachineFunction::iterator FallThru = std::next(getIterator());
Bill Wendling95643402010-04-01 00:00:43 +00001090
Craig Topperc0196b12014-04-14 00:51:57 +00001091 if (!DestA && !DestB) {
Bill Wendling95643402010-04-01 00:00:43 +00001092 // Block falls through to successor.
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +00001093 DestA = &*FallThru;
1094 DestB = &*FallThru;
Craig Topperc0196b12014-04-14 00:51:57 +00001095 } else if (DestA && !DestB) {
Cong Hou166e0852015-09-29 19:46:09 +00001096 if (IsCond)
Bill Wendling95643402010-04-01 00:00:43 +00001097 // Block ends in conditional jump that falls through to successor.
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +00001098 DestB = &*FallThru;
Evan Cheng2afd7022007-06-18 22:43:58 +00001099 } else {
Cong Hou166e0852015-09-29 19:46:09 +00001100 assert(DestA && DestB && IsCond &&
Bill Wendling95643402010-04-01 00:00:43 +00001101 "CFG in a bad state. Cannot correct CFG edges");
Evan Cheng2afd7022007-06-18 22:43:58 +00001102 }
Bill Wendling95643402010-04-01 00:00:43 +00001103
1104 // Remove superfluous edges. I.e., those which aren't destinations of this
1105 // basic block, duplicate edges, or landing pads.
1106 SmallPtrSet<const MachineBasicBlock*, 8> SeenMBBs;
Evan Cheng2afd7022007-06-18 22:43:58 +00001107 MachineBasicBlock::succ_iterator SI = succ_begin();
Evan Cheng2afd7022007-06-18 22:43:58 +00001108 while (SI != succ_end()) {
Bill Wendling2d5967d2009-12-16 00:08:36 +00001109 const MachineBasicBlock *MBB = *SI;
David Blaikie70573dc2014-11-19 07:49:26 +00001110 if (!SeenMBBs.insert(MBB).second ||
Reid Kleckner0e288232015-08-27 23:27:47 +00001111 (MBB != DestA && MBB != DestB && !MBB->isEHPad())) {
Bill Wendling95643402010-04-01 00:00:43 +00001112 // This is a superfluous edge, remove it.
Bill Wendlingfa9810d2010-03-31 23:26:26 +00001113 SI = removeSuccessor(SI);
Bill Wendling95643402010-04-01 00:00:43 +00001114 Changed = true;
1115 } else {
1116 ++SI;
Evan Cheng2afd7022007-06-18 22:43:58 +00001117 }
1118 }
Bill Wendling2d5967d2009-12-16 00:08:36 +00001119
Cong Houc1069892015-12-13 09:26:17 +00001120 if (Changed)
1121 normalizeSuccProbs();
Bill Wendling95643402010-04-01 00:00:43 +00001122 return Changed;
Evan Cheng2afd7022007-06-18 22:43:58 +00001123}
Evan Cheng57be2f22009-11-17 19:19:59 +00001124
Cong Hou2a02c1c2015-08-12 21:18:54 +00001125/// Find the next valid DebugLoc starting at MBBI, skipping any DBG_VALUE
1126/// instructions. Return UnknownLoc if there is none.
Dale Johannesenc5db5992010-01-20 21:36:02 +00001127DebugLoc
Evan Cheng7fae11b2011-12-14 02:11:42 +00001128MachineBasicBlock::findDebugLoc(instr_iterator MBBI) {
Dale Johannesenc5db5992010-01-20 21:36:02 +00001129 DebugLoc DL;
Evan Cheng7fae11b2011-12-14 02:11:42 +00001130 instr_iterator E = instr_end();
Evan Cheng2a81dd42011-12-06 22:12:01 +00001131 if (MBBI == E)
1132 return DL;
1133
1134 // Skip debug declarations, we don't want a DebugLoc from them.
1135 while (MBBI != E && MBBI->isDebugValue())
1136 MBBI++;
1137 if (MBBI != E)
1138 DL = MBBI->getDebugLoc();
Dale Johannesenc5db5992010-01-20 21:36:02 +00001139 return DL;
1140}
1141
Cong Houd97c1002015-12-01 05:29:22 +00001142/// Return probability of the edge from this block to MBB.
Cong Hou23a3bf02015-11-04 21:37:58 +00001143BranchProbability
1144MachineBasicBlock::getSuccProbability(const_succ_iterator Succ) const {
Cong Hou4aef7ef2015-12-01 11:05:39 +00001145 if (Probs.empty())
Cong Hou23a3bf02015-11-04 21:37:58 +00001146 return BranchProbability(1, succ_size());
1147
Cong Hou4aef7ef2015-12-01 11:05:39 +00001148 const auto &Prob = *getProbabilityIterator(Succ);
1149 if (Prob.isUnknown()) {
1150 // For unknown probabilities, collect the sum of all known ones, and evenly
1151 // ditribute the complemental of the sum to each unknown probability.
1152 unsigned KnownProbNum = 0;
1153 auto Sum = BranchProbability::getZero();
1154 for (auto &P : Probs) {
1155 if (!P.isUnknown()) {
1156 Sum += P;
1157 KnownProbNum++;
1158 }
1159 }
1160 return Sum.getCompl() / (Probs.size() - KnownProbNum);
1161 } else
1162 return Prob;
Manman Renb6819182014-01-29 23:18:47 +00001163}
1164
Cong Hou23a3bf02015-11-04 21:37:58 +00001165/// Set successor probability of a given iterator.
1166void MachineBasicBlock::setSuccProbability(succ_iterator I,
1167 BranchProbability Prob) {
1168 assert(!Prob.isUnknown());
Cong Houd97c1002015-12-01 05:29:22 +00001169 if (Probs.empty())
Cong Hou23a3bf02015-11-04 21:37:58 +00001170 return;
1171 *getProbabilityIterator(I) = Prob;
Cong Hou23a3bf02015-11-04 21:37:58 +00001172}
1173
Hans Wennborg1dbaf672015-12-01 03:49:42 +00001174/// Return probability iterator corresonding to the I successor iterator
1175MachineBasicBlock::const_probability_iterator
1176MachineBasicBlock::getProbabilityIterator(
1177 MachineBasicBlock::const_succ_iterator I) const {
Cong Houfa1917c2015-12-01 00:02:51 +00001178 assert(Probs.size() == Successors.size() && "Async probability list!");
1179 const size_t index = std::distance(Successors.begin(), I);
1180 assert(index < Probs.size() && "Not a current successor!");
1181 return Probs.begin() + index;
1182}
1183
Cong Houd97c1002015-12-01 05:29:22 +00001184/// Return probability iterator corresonding to the I successor iterator.
1185MachineBasicBlock::probability_iterator
1186MachineBasicBlock::getProbabilityIterator(MachineBasicBlock::succ_iterator I) {
1187 assert(Probs.size() == Successors.size() && "Async probability list!");
1188 const size_t index = std::distance(Successors.begin(), I);
1189 assert(index < Probs.size() && "Not a current successor!");
1190 return Probs.begin() + index;
1191}
1192
James Molloyc747cda2012-09-12 10:18:23 +00001193/// Return whether (physical) register "Reg" has been <def>ined and not <kill>ed
1194/// as of just before "MI".
Junmo Park12386102016-01-07 10:26:32 +00001195///
James Molloyc747cda2012-09-12 10:18:23 +00001196/// Search is localised to a neighborhood of
1197/// Neighborhood instructions before (searching for defs or kills) and N
1198/// instructions after (searching just for defs) MI.
1199MachineBasicBlock::LivenessQueryResult
1200MachineBasicBlock::computeRegisterLiveness(const TargetRegisterInfo *TRI,
Matthias Braun07a07ba2015-05-27 05:12:39 +00001201 unsigned Reg, const_iterator Before,
1202 unsigned Neighborhood) const {
James Molloyc747cda2012-09-12 10:18:23 +00001203 unsigned N = Neighborhood;
James Molloyc747cda2012-09-12 10:18:23 +00001204
Matthias Braun07a07ba2015-05-27 05:12:39 +00001205 // Start by searching backwards from Before, looking for kills, reads or defs.
1206 const_iterator I(Before);
James Molloyc747cda2012-09-12 10:18:23 +00001207 // If this is the first insn in the block, don't search backwards.
Matthias Braun07a07ba2015-05-27 05:12:39 +00001208 if (I != begin()) {
James Molloyc747cda2012-09-12 10:18:23 +00001209 do {
1210 --I;
1211
Matthias Braun60d69e22015-12-11 19:42:09 +00001212 MachineOperandIteratorBase::PhysRegInfo Info =
Duncan P. N. Exon Smithf9ab4162016-02-27 17:05:33 +00001213 ConstMIOperands(*I).analyzePhysReg(Reg, TRI);
James Molloyc747cda2012-09-12 10:18:23 +00001214
Matthias Braun60d69e22015-12-11 19:42:09 +00001215 // Defs happen after uses so they take precedence if both are present.
Tim Northoverdd219d02012-11-20 09:56:11 +00001216
Matthias Braun60d69e22015-12-11 19:42:09 +00001217 // Register is dead after a dead def of the full register.
1218 if (Info.DeadDef)
James Molloyc747cda2012-09-12 10:18:23 +00001219 return LQR_Dead;
Matthias Braun60d69e22015-12-11 19:42:09 +00001220 // Register is (at least partially) live after a def.
1221 if (Info.Defined)
1222 return LQR_Live;
1223 // Register is dead after a full kill or clobber and no def.
1224 if (Info.Killed || Info.Clobbered)
1225 return LQR_Dead;
1226 // Register must be live if we read it.
1227 if (Info.Read)
1228 return LQR_Live;
Matthias Braun07a07ba2015-05-27 05:12:39 +00001229 } while (I != begin() && --N > 0);
James Molloyc747cda2012-09-12 10:18:23 +00001230 }
1231
1232 // Did we get to the start of the block?
Matthias Braun07a07ba2015-05-27 05:12:39 +00001233 if (I == begin()) {
James Molloyc747cda2012-09-12 10:18:23 +00001234 // If so, the register's state is definitely defined by the live-in state.
Matthias Braun60d69e22015-12-11 19:42:09 +00001235 for (MCRegAliasIterator RAI(Reg, TRI, /*IncludeSelf=*/true); RAI.isValid();
1236 ++RAI)
Matthias Braun07a07ba2015-05-27 05:12:39 +00001237 if (isLiveIn(*RAI))
Matthias Braun60d69e22015-12-11 19:42:09 +00001238 return LQR_Live;
James Molloyc747cda2012-09-12 10:18:23 +00001239
1240 return LQR_Dead;
1241 }
1242
1243 N = Neighborhood;
1244
Matthias Braun07a07ba2015-05-27 05:12:39 +00001245 // Try searching forwards from Before, looking for reads or defs.
1246 I = const_iterator(Before);
James Molloyc747cda2012-09-12 10:18:23 +00001247 // If this is the last insn in the block, don't search forwards.
Matthias Braun07a07ba2015-05-27 05:12:39 +00001248 if (I != end()) {
1249 for (++I; I != end() && N > 0; ++I, --N) {
Matthias Braun60d69e22015-12-11 19:42:09 +00001250 MachineOperandIteratorBase::PhysRegInfo Info =
Duncan P. N. Exon Smithf9ab4162016-02-27 17:05:33 +00001251 ConstMIOperands(*I).analyzePhysReg(Reg, TRI);
James Molloyc747cda2012-09-12 10:18:23 +00001252
Matthias Braun60d69e22015-12-11 19:42:09 +00001253 // Register is live when we read it here.
1254 if (Info.Read)
1255 return LQR_Live;
1256 // Register is dead if we can fully overwrite or clobber it here.
1257 if (Info.FullyDefined || Info.Clobbered)
James Molloyc747cda2012-09-12 10:18:23 +00001258 return LQR_Dead;
1259 }
1260 }
1261
1262 // At this point we have no idea of the liveness of the register.
1263 return LQR_Unknown;
1264}
Reid Klecknerb8fd1622015-11-06 17:06:38 +00001265
1266const uint32_t *
1267MachineBasicBlock::getBeginClobberMask(const TargetRegisterInfo *TRI) const {
1268 // EH funclet entry does not preserve any registers.
1269 return isEHFuncletEntry() ? TRI->getNoPreservedMask() : nullptr;
1270}
1271
1272const uint32_t *
1273MachineBasicBlock::getEndClobberMask(const TargetRegisterInfo *TRI) const {
1274 // If we see a return block with successors, this must be a funclet return,
1275 // which does not preserve any registers. If there are no successors, we don't
1276 // care what kind of return it is, putting a mask after it is a no-op.
1277 return isReturnBlock() && !succ_empty() ? TRI->getNoPreservedMask() : nullptr;
1278}