blob: e2d0c4b7e85e1177c628481f8296feaec52b47ee [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
Reid Klecknered170792015-09-17 17:19:40 +0000201bool MachineBasicBlock::hasEHPadSuccessor() const {
202 for (const_succ_iterator I = succ_begin(), E = succ_end(); I != E; ++I)
203 if ((*I)->isEHPad())
204 return true;
205 return false;
206}
207
Manman Ren19f49ac2012-09-11 22:23:19 +0000208#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Yaron Kereneb2a2542016-01-29 20:50:44 +0000209LLVM_DUMP_METHOD void MachineBasicBlock::dump() const {
David Greene6c56cef2010-01-04 23:22:07 +0000210 print(dbgs());
Alkis Evlogimenos14f3fe82004-02-16 07:17:43 +0000211}
Manman Ren742534c2012-09-06 19:06:06 +0000212#endif
Alkis Evlogimenos14f3fe82004-02-16 07:17:43 +0000213
Jakob Stoklund Olesen2bbeaa82009-11-20 01:17:03 +0000214StringRef MachineBasicBlock::getName() const {
215 if (const BasicBlock *LBB = getBasicBlock())
216 return LBB->getName();
217 else
218 return "(null)";
219}
220
Andrew Trick320c7032012-03-07 00:18:18 +0000221/// Return a hopefully unique identifier for this block.
222std::string MachineBasicBlock::getFullName() const {
223 std::string Name;
224 if (getParent())
Craig Toppera538d832012-08-22 06:07:19 +0000225 Name = (getParent()->getName() + ":").str();
Andrew Trick320c7032012-03-07 00:18:18 +0000226 if (getBasicBlock())
227 Name += getBasicBlock()->getName();
228 else
Yaron Keren75e0c4b2015-03-27 17:51:30 +0000229 Name += ("BB" + Twine(getNumber())).str();
Andrew Trick320c7032012-03-07 00:18:18 +0000230 return Name;
231}
232
Matthias Braun0e881d62016-05-05 18:14:43 +0000233void MachineBasicBlock::print(raw_ostream &OS, const SlotIndexes *Indexes)
234 const {
Evan Chengbcf1d7f2007-02-10 02:38:19 +0000235 const MachineFunction *MF = getParent();
Chris Lattneraf119ca2009-08-23 00:35:30 +0000236 if (!MF) {
Chris Lattner4336b872004-10-26 15:43:42 +0000237 OS << "Can't print out MachineBasicBlock because parent MachineFunction"
238 << " is null\n";
Tanya Lattnera578cb72004-05-24 06:11:51 +0000239 return;
240 }
Duncan P. N. Exon Smith326921542015-06-26 22:04:20 +0000241 const Function *F = MF->getFunction();
242 const Module *M = F ? F->getParent() : nullptr;
243 ModuleSlotTracker MST(M);
244 print(OS, MST, Indexes);
245}
246
247void MachineBasicBlock::print(raw_ostream &OS, ModuleSlotTracker &MST,
Matthias Braun0e881d62016-05-05 18:14:43 +0000248 const SlotIndexes *Indexes) const {
Duncan P. N. Exon Smith326921542015-06-26 22:04:20 +0000249 const MachineFunction *MF = getParent();
250 if (!MF) {
251 OS << "Can't print out MachineBasicBlock because parent MachineFunction"
252 << " is null\n";
253 return;
254 }
Alkis Evlogimenosfcb3f512004-09-05 18:39:20 +0000255
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000256 if (Indexes)
257 OS << Indexes->getMBBStartIdx(this) << '\t';
258
Dan Gohman34341e62009-10-31 20:19:03 +0000259 OS << "BB#" << getNumber() << ": ";
260
261 const char *Comma = "";
262 if (const BasicBlock *LBB = getBasicBlock()) {
263 OS << Comma << "derived from LLVM BB ";
Duncan P. N. Exon Smith326921542015-06-26 22:04:20 +0000264 LBB->printAsOperand(OS, /*PrintType=*/false, MST);
Dan Gohman34341e62009-10-31 20:19:03 +0000265 Comma = ", ";
266 }
Reid Kleckner0e288232015-08-27 23:27:47 +0000267 if (isEHPad()) { OS << Comma << "EH LANDING PAD"; Comma = ", "; }
Dan Gohman34341e62009-10-31 20:19:03 +0000268 if (hasAddressTaken()) { OS << Comma << "ADDRESS TAKEN"; Comma = ", "; }
Bill Wendling4fd96632012-06-15 19:30:42 +0000269 if (Alignment)
Jakob Stoklund Olesen2a2b37e2011-12-06 21:08:39 +0000270 OS << Comma << "Align " << Alignment << " (" << (1u << Alignment)
271 << " bytes)";
Jakob Stoklund Olesen2a2b37e2011-12-06 21:08:39 +0000272
Chris Lattneraf119ca2009-08-23 00:35:30 +0000273 OS << '\n';
Evan Chengbcf1d7f2007-02-10 02:38:19 +0000274
Eric Christopherfc6de422014-08-05 02:39:49 +0000275 const TargetRegisterInfo *TRI = MF->getSubtarget().getRegisterInfo();
Dan Gohmanc731c972007-10-03 19:26:29 +0000276 if (!livein_empty()) {
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000277 if (Indexes) OS << '\t';
Dan Gohman34341e62009-10-31 20:19:03 +0000278 OS << " Live Ins:";
Matthias Braund9da1622015-09-09 18:08:03 +0000279 for (const auto &LI : make_range(livein_begin(), livein_end())) {
280 OS << ' ' << PrintReg(LI.PhysReg, TRI);
281 if (LI.LaneMask != ~0u)
Matthias Braunc804cdb2015-09-25 21:51:24 +0000282 OS << ':' << PrintLaneMask(LI.LaneMask);
Matthias Braunb2b7ef12015-08-24 22:59:52 +0000283 }
Chris Lattneraf119ca2009-08-23 00:35:30 +0000284 OS << '\n';
Evan Chengbcf1d7f2007-02-10 02:38:19 +0000285 }
Chris Lattner9a1e91b2006-09-26 03:41:59 +0000286 // Print the preds of this block according to the CFG.
287 if (!pred_empty()) {
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000288 if (Indexes) OS << '\t';
Chris Lattner9a1e91b2006-09-26 03:41:59 +0000289 OS << " Predecessors according to CFG:";
290 for (const_pred_iterator PI = pred_begin(), E = pred_end(); PI != E; ++PI)
Dan Gohman34341e62009-10-31 20:19:03 +0000291 OS << " BB#" << (*PI)->getNumber();
Chris Lattneraf119ca2009-08-23 00:35:30 +0000292 OS << '\n';
Chris Lattner9a1e91b2006-09-26 03:41:59 +0000293 }
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000294
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000295 for (auto &I : instrs()) {
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000296 if (Indexes) {
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000297 if (Indexes->hasIndex(I))
298 OS << Indexes->getInstructionIndex(I);
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000299 OS << '\t';
300 }
Chris Lattner1216f542009-08-23 00:47:04 +0000301 OS << '\t';
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000302 if (I.isInsideBundle())
Evan Cheng7fae11b2011-12-14 02:11:42 +0000303 OS << " * ";
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000304 I.print(OS, MST);
Alkis Evlogimenosfcb3f512004-09-05 18:39:20 +0000305 }
Chris Lattner329c14a2005-04-01 06:48:38 +0000306
307 // Print the successors of this block according to the CFG.
308 if (!succ_empty()) {
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000309 if (Indexes) OS << '\t';
Chris Lattner329c14a2005-04-01 06:48:38 +0000310 OS << " Successors according to CFG:";
Jakob Stoklund Olesen1dc107a2012-08-13 23:13:23 +0000311 for (const_succ_iterator SI = succ_begin(), E = succ_end(); SI != E; ++SI) {
Dan Gohman34341e62009-10-31 20:19:03 +0000312 OS << " BB#" << (*SI)->getNumber();
Cong Houd97c1002015-12-01 05:29:22 +0000313 if (!Probs.empty())
314 OS << '(' << *getProbabilityIterator(SI) << ')';
Jakob Stoklund Olesen1dc107a2012-08-13 23:13:23 +0000315 }
Chris Lattneraf119ca2009-08-23 00:35:30 +0000316 OS << '\n';
Chris Lattner329c14a2005-04-01 06:48:38 +0000317 }
Alkis Evlogimenos14f3fe82004-02-16 07:17:43 +0000318}
Chris Lattner4336b872004-10-26 15:43:42 +0000319
Cong Hou2793e722015-08-10 22:27:10 +0000320void MachineBasicBlock::printAsOperand(raw_ostream &OS,
321 bool /*PrintType*/) const {
Chandler Carruthd48cdbf2014-01-09 02:29:41 +0000322 OS << "BB#" << getNumber();
323}
324
Matthias Braune6a24852015-09-25 21:51:14 +0000325void MachineBasicBlock::removeLiveIn(MCPhysReg Reg, LaneBitmask LaneMask) {
Matthias Braund9da1622015-09-09 18:08:03 +0000326 LiveInVector::iterator I = std::find_if(
327 LiveIns.begin(), LiveIns.end(),
328 [Reg] (const RegisterMaskPair &LI) { return LI.PhysReg == Reg; });
329 if (I == LiveIns.end())
330 return;
331
332 I->LaneMask &= ~LaneMask;
333 if (I->LaneMask == 0)
Jakob Stoklund Olesen8e58c902012-03-28 20:11:42 +0000334 LiveIns.erase(I);
Evan Chengf7ed82d2007-02-19 21:49:54 +0000335}
336
Matthias Braune6a24852015-09-25 21:51:14 +0000337bool MachineBasicBlock::isLiveIn(MCPhysReg Reg, LaneBitmask LaneMask) const {
Matthias Braund9da1622015-09-09 18:08:03 +0000338 livein_iterator I = std::find_if(
339 LiveIns.begin(), LiveIns.end(),
340 [Reg] (const RegisterMaskPair &LI) { return LI.PhysReg == Reg; });
341 return I != livein_end() && (I->LaneMask & LaneMask) != 0;
342}
343
344void MachineBasicBlock::sortUniqueLiveIns() {
345 std::sort(LiveIns.begin(), LiveIns.end(),
346 [](const RegisterMaskPair &LI0, const RegisterMaskPair &LI1) {
347 return LI0.PhysReg < LI1.PhysReg;
348 });
349 // Liveins are sorted by physreg now we can merge their lanemasks.
350 LiveInVector::const_iterator I = LiveIns.begin();
351 LiveInVector::const_iterator J;
352 LiveInVector::iterator Out = LiveIns.begin();
353 for (; I != LiveIns.end(); ++Out, I = J) {
354 unsigned PhysReg = I->PhysReg;
Matthias Braune6a24852015-09-25 21:51:14 +0000355 LaneBitmask LaneMask = I->LaneMask;
Matthias Braund9da1622015-09-09 18:08:03 +0000356 for (J = std::next(I); J != LiveIns.end() && J->PhysReg == PhysReg; ++J)
357 LaneMask |= J->LaneMask;
358 Out->PhysReg = PhysReg;
359 Out->LaneMask = LaneMask;
360 }
361 LiveIns.erase(Out, LiveIns.end());
Aaron Ballman9f154f62015-07-29 15:57:49 +0000362}
363
Jakob Stoklund Olesen533c3bf2013-07-03 23:56:20 +0000364unsigned
Matthias Braun130bd902015-08-25 22:05:55 +0000365MachineBasicBlock::addLiveIn(MCPhysReg PhysReg, const TargetRegisterClass *RC) {
Jakob Stoklund Olesen533c3bf2013-07-03 23:56:20 +0000366 assert(getParent() && "MBB must be inserted in function");
367 assert(TargetRegisterInfo::isPhysicalRegister(PhysReg) && "Expected physreg");
368 assert(RC && "Register class is required");
Reid Kleckner0e288232015-08-27 23:27:47 +0000369 assert((isEHPad() || this == &getParent()->front()) &&
Jakob Stoklund Olesen533c3bf2013-07-03 23:56:20 +0000370 "Only the entry block and landing pads can have physreg live ins");
371
372 bool LiveIn = isLiveIn(PhysReg);
Jakob Stoklund Olesenbbbb5322013-07-04 04:32:35 +0000373 iterator I = SkipPHIsAndLabels(begin()), E = end();
Jakob Stoklund Olesen533c3bf2013-07-03 23:56:20 +0000374 MachineRegisterInfo &MRI = getParent()->getRegInfo();
Eric Christopherfc6de422014-08-05 02:39:49 +0000375 const TargetInstrInfo &TII = *getParent()->getSubtarget().getInstrInfo();
Jakob Stoklund Olesen533c3bf2013-07-03 23:56:20 +0000376
377 // Look for an existing copy.
378 if (LiveIn)
379 for (;I != E && I->isCopy(); ++I)
380 if (I->getOperand(1).getReg() == PhysReg) {
381 unsigned VirtReg = I->getOperand(0).getReg();
382 if (!MRI.constrainRegClass(VirtReg, RC))
383 llvm_unreachable("Incompatible live-in register class.");
384 return VirtReg;
385 }
386
387 // No luck, create a virtual register.
388 unsigned VirtReg = MRI.createVirtualRegister(RC);
389 BuildMI(*this, I, DebugLoc(), TII.get(TargetOpcode::COPY), VirtReg)
390 .addReg(PhysReg, RegState::Kill);
391 if (!LiveIn)
392 addLiveIn(PhysReg);
393 return VirtReg;
394}
395
Chris Lattner94866be2006-10-24 00:02:26 +0000396void MachineBasicBlock::moveBefore(MachineBasicBlock *NewAfter) {
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000397 getParent()->splice(NewAfter->getIterator(), getIterator());
Chris Lattner94866be2006-10-24 00:02:26 +0000398}
399
400void MachineBasicBlock::moveAfter(MachineBasicBlock *NewBefore) {
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000401 getParent()->splice(++NewBefore->getIterator(), getIterator());
Chris Lattner94866be2006-10-24 00:02:26 +0000402}
403
Jim Grosbach801b33b2009-11-12 03:55:33 +0000404void MachineBasicBlock::updateTerminator() {
Eric Christopherfc6de422014-08-05 02:39:49 +0000405 const TargetInstrInfo *TII = getParent()->getSubtarget().getInstrInfo();
Jim Grosbach801b33b2009-11-12 03:55:33 +0000406 // A block with no successors has no concerns with fall-through edges.
Chad Rosierdca76512016-05-25 21:53:46 +0000407 if (this->succ_empty())
408 return;
Jim Grosbach801b33b2009-11-12 03:55:33 +0000409
Craig Topperc0196b12014-04-14 00:51:57 +0000410 MachineBasicBlock *TBB = nullptr, *FBB = nullptr;
Jim Grosbach801b33b2009-11-12 03:55:33 +0000411 SmallVector<MachineOperand, 4> Cond;
Cong Hou166e0852015-09-29 19:46:09 +0000412 DebugLoc DL; // FIXME: this is nowhere
Jim Grosbach801b33b2009-11-12 03:55:33 +0000413 bool B = TII->AnalyzeBranch(*this, TBB, FBB, Cond);
414 (void) B;
415 assert(!B && "UpdateTerminators requires analyzable predecessors!");
416 if (Cond.empty()) {
417 if (TBB) {
Chad Rosierdca76512016-05-25 21:53:46 +0000418 // The block has an unconditional branch. If its successor is now its
419 // layout successor, delete the branch.
Jim Grosbach801b33b2009-11-12 03:55:33 +0000420 if (isLayoutSuccessor(TBB))
421 TII->RemoveBranch(*this);
422 } else {
Chad Rosierdca76512016-05-25 21:53:46 +0000423 // The block has an unconditional fallthrough. If its successor is not its
424 // layout successor, insert a branch. First we have to locate the only
425 // non-landing-pad successor, as that is the fallthrough block.
Chandler Carruthee54feb2011-11-22 13:13:16 +0000426 for (succ_iterator SI = succ_begin(), SE = succ_end(); SI != SE; ++SI) {
Reid Kleckner0e288232015-08-27 23:27:47 +0000427 if ((*SI)->isEHPad())
Chandler Carruthee54feb2011-11-22 13:13:16 +0000428 continue;
429 assert(!TBB && "Found more than one non-landing-pad successor!");
430 TBB = *SI;
431 }
Chandler Carruth8c68f1f2011-11-23 08:23:54 +0000432
Chad Rosierdca76512016-05-25 21:53:46 +0000433 // If there is no non-landing-pad successor, the block has no fall-through
434 // edges to be concerned with.
Chandler Carruth8c68f1f2011-11-23 08:23:54 +0000435 if (!TBB)
436 return;
437
438 // Finally update the unconditional successor to be reached via a branch
439 // if it would not be reached by fallthrough.
Jim Grosbach801b33b2009-11-12 03:55:33 +0000440 if (!isLayoutSuccessor(TBB))
Cong Hou166e0852015-09-29 19:46:09 +0000441 TII->InsertBranch(*this, TBB, nullptr, Cond, DL);
Jim Grosbach801b33b2009-11-12 03:55:33 +0000442 }
Chad Rosierdca76512016-05-25 21:53:46 +0000443 return;
444 }
Chandler Carruth1f5580b2012-04-16 22:03:00 +0000445
Chad Rosierdca76512016-05-25 21:53:46 +0000446 if (FBB) {
447 // The block has a non-fallthrough conditional branch. If one of its
448 // successors is its layout successor, rewrite it to a fallthrough
449 // conditional branch.
450 if (isLayoutSuccessor(TBB)) {
451 if (TII->ReverseBranchCondition(Cond))
Chandler Carruth1f5580b2012-04-16 22:03:00 +0000452 return;
Chad Rosierdca76512016-05-25 21:53:46 +0000453 TII->RemoveBranch(*this);
454 TII->InsertBranch(*this, FBB, nullptr, Cond, DL);
455 } else if (isLayoutSuccessor(FBB)) {
456 TII->RemoveBranch(*this);
457 TII->InsertBranch(*this, TBB, nullptr, Cond, DL);
Jim Grosbach801b33b2009-11-12 03:55:33 +0000458 }
Chad Rosierdca76512016-05-25 21:53:46 +0000459 return;
460 }
461
462 // Walk through the successors and find the successor which is not a landing
463 // pad and is not the conditional branch destination (in TBB) as the
464 // fallthrough successor.
465 MachineBasicBlock *FallthroughBB = nullptr;
466 for (succ_iterator SI = succ_begin(), SE = succ_end(); SI != SE; ++SI) {
467 if ((*SI)->isEHPad() || *SI == TBB)
468 continue;
469 assert(!FallthroughBB && "Found more than one fallthrough successor.");
470 FallthroughBB = *SI;
471 }
472
473 if (!FallthroughBB && canFallThrough()) {
474 // We fallthrough to the same basic block as the conditional jump targets.
475 // Remove the conditional jump, leaving unconditional fallthrough.
476 // FIXME: This does not seem like a reasonable pattern to support, but it
477 // has been seen in the wild coming out of degenerate ARM test cases.
478 TII->RemoveBranch(*this);
479
480 // Finally update the unconditional successor to be reached via a branch if
481 // it would not be reached by fallthrough.
482 if (!isLayoutSuccessor(TBB))
483 TII->InsertBranch(*this, TBB, nullptr, Cond, DL);
484 return;
485 }
486
487 // The block has a fallthrough conditional branch.
488 if (isLayoutSuccessor(TBB)) {
489 if (TII->ReverseBranchCondition(Cond)) {
490 // We can't reverse the condition, add an unconditional branch.
491 Cond.clear();
492 TII->InsertBranch(*this, FallthroughBB, nullptr, Cond, DL);
493 return;
494 }
495 TII->RemoveBranch(*this);
496 TII->InsertBranch(*this, FallthroughBB, nullptr, Cond, DL);
497 } else if (!isLayoutSuccessor(FallthroughBB)) {
498 TII->RemoveBranch(*this);
499 TII->InsertBranch(*this, TBB, FallthroughBB, Cond, DL);
Jim Grosbach801b33b2009-11-12 03:55:33 +0000500 }
501}
Chris Lattner94866be2006-10-24 00:02:26 +0000502
Cong Houc1069892015-12-13 09:26:17 +0000503void MachineBasicBlock::validateSuccProbs() const {
504#ifndef NDEBUG
505 int64_t Sum = 0;
506 for (auto Prob : Probs)
507 Sum += Prob.getNumerator();
508 // Due to precision issue, we assume that the sum of probabilities is one if
509 // the difference between the sum of their numerators and the denominator is
510 // no greater than the number of successors.
Cong Houc00e65a2015-12-13 17:00:25 +0000511 assert((uint64_t)std::abs(Sum - BranchProbability::getDenominator()) <=
Cong Houc1069892015-12-13 09:26:17 +0000512 Probs.size() &&
513 "The sum of successors's probabilities exceeds one.");
514#endif // NDEBUG
515}
516
Cong Hou23a3bf02015-11-04 21:37:58 +0000517void MachineBasicBlock::addSuccessor(MachineBasicBlock *Succ,
518 BranchProbability Prob) {
519 // Probability list is either empty (if successor list isn't empty, this means
520 // disabled optimization) or has the same size as successor list.
Cong Hou4aef7ef2015-12-01 11:05:39 +0000521 if (!(Probs.empty() && !Successors.empty()))
Cong Hou23a3bf02015-11-04 21:37:58 +0000522 Probs.push_back(Prob);
523 Successors.push_back(Succ);
524 Succ->addPredecessor(this);
525}
526
527void MachineBasicBlock::addSuccessorWithoutProb(MachineBasicBlock *Succ) {
528 // We need to make sure probability list is either empty or has the same size
529 // of successor list. When this function is called, we can safely delete all
530 // probability in the list.
531 Probs.clear();
532 Successors.push_back(Succ);
533 Succ->addPredecessor(this);
534}
535
Cong Houc1069892015-12-13 09:26:17 +0000536void MachineBasicBlock::removeSuccessor(MachineBasicBlock *Succ,
537 bool NormalizeSuccProbs) {
Cong Hou166e0852015-09-29 19:46:09 +0000538 succ_iterator I = std::find(Successors.begin(), Successors.end(), Succ);
Cong Houc1069892015-12-13 09:26:17 +0000539 removeSuccessor(I, NormalizeSuccProbs);
Chris Lattner4336b872004-10-26 15:43:42 +0000540}
541
Jakub Staszakfeadd432011-06-16 18:01:17 +0000542MachineBasicBlock::succ_iterator
Cong Houc1069892015-12-13 09:26:17 +0000543MachineBasicBlock::removeSuccessor(succ_iterator I, bool NormalizeSuccProbs) {
Chris Lattner4336b872004-10-26 15:43:42 +0000544 assert(I != Successors.end() && "Not a current successor!");
Jakub Staszak12a43bd2011-06-16 20:22:37 +0000545
Cong Hou23a3bf02015-11-04 21:37:58 +0000546 // If probability list is empty it means we don't use it (disabled
547 // optimization).
548 if (!Probs.empty()) {
549 probability_iterator WI = getProbabilityIterator(I);
550 Probs.erase(WI);
Cong Houc1069892015-12-13 09:26:17 +0000551 if (NormalizeSuccProbs)
552 normalizeSuccProbs();
Cong Hou23a3bf02015-11-04 21:37:58 +0000553 }
554
Chris Lattner4336b872004-10-26 15:43:42 +0000555 (*I)->removePredecessor(this);
Dan Gohmanf87dc922009-01-08 22:19:34 +0000556 return Successors.erase(I);
Chris Lattner4336b872004-10-26 15:43:42 +0000557}
558
Jakub Staszak12a43bd2011-06-16 20:22:37 +0000559void MachineBasicBlock::replaceSuccessor(MachineBasicBlock *Old,
560 MachineBasicBlock *New) {
Jakob Stoklund Olesen8c28ac92012-08-10 03:23:27 +0000561 if (Old == New)
562 return;
Jakub Staszak12a43bd2011-06-16 20:22:37 +0000563
Jakob Stoklund Olesen8c28ac92012-08-10 03:23:27 +0000564 succ_iterator E = succ_end();
565 succ_iterator NewI = E;
566 succ_iterator OldI = E;
567 for (succ_iterator I = succ_begin(); I != E; ++I) {
568 if (*I == Old) {
569 OldI = I;
570 if (NewI != E)
571 break;
572 }
573 if (*I == New) {
574 NewI = I;
575 if (OldI != E)
576 break;
577 }
578 }
579 assert(OldI != E && "Old is not a successor of this block");
Jakob Stoklund Olesen8c28ac92012-08-10 03:23:27 +0000580
581 // If New isn't already a successor, let it take Old's place.
582 if (NewI == E) {
Cong Hou11c14202015-11-18 01:45:10 +0000583 Old->removePredecessor(this);
Jakob Stoklund Olesen8c28ac92012-08-10 03:23:27 +0000584 New->addPredecessor(this);
585 *OldI = New;
586 return;
Jakub Staszak12a43bd2011-06-16 20:22:37 +0000587 }
588
Jakob Stoklund Olesen8c28ac92012-08-10 03:23:27 +0000589 // New is already a successor.
Cong Hou23a3bf02015-11-04 21:37:58 +0000590 // Update its probability instead of adding a duplicate edge.
Cong Houd97c1002015-12-01 05:29:22 +0000591 if (!Probs.empty()) {
592 auto ProbIter = getProbabilityIterator(NewI);
593 if (!ProbIter->isUnknown())
594 *ProbIter += *getProbabilityIterator(OldI);
595 }
Cong Hou11c14202015-11-18 01:45:10 +0000596 removeSuccessor(OldI);
Jakub Staszak12a43bd2011-06-16 20:22:37 +0000597}
598
Cong Hou166e0852015-09-29 19:46:09 +0000599void MachineBasicBlock::addPredecessor(MachineBasicBlock *Pred) {
600 Predecessors.push_back(Pred);
Chris Lattner4336b872004-10-26 15:43:42 +0000601}
602
Cong Hou166e0852015-09-29 19:46:09 +0000603void MachineBasicBlock::removePredecessor(MachineBasicBlock *Pred) {
604 pred_iterator I = std::find(Predecessors.begin(), Predecessors.end(), Pred);
Chris Lattner4336b872004-10-26 15:43:42 +0000605 assert(I != Predecessors.end() && "Pred is not a predecessor of this block!");
606 Predecessors.erase(I);
607}
Evan Chenga92b2b32007-05-17 23:58:53 +0000608
Cong Hou166e0852015-09-29 19:46:09 +0000609void MachineBasicBlock::transferSuccessors(MachineBasicBlock *FromMBB) {
610 if (this == FromMBB)
Mon P Wang3e583932008-05-05 19:05:59 +0000611 return;
Jakub Staszakfeadd432011-06-16 18:01:17 +0000612
Cong Hou166e0852015-09-29 19:46:09 +0000613 while (!FromMBB->succ_empty()) {
614 MachineBasicBlock *Succ = *FromMBB->succ_begin();
Jakub Staszak12a43bd2011-06-16 20:22:37 +0000615
Cong Houd97c1002015-12-01 05:29:22 +0000616 // If probability list is empty it means we don't use it (disabled optimization).
617 if (!FromMBB->Probs.empty()) {
618 auto Prob = *FromMBB->Probs.begin();
619 addSuccessor(Succ, Prob);
620 } else
621 addSuccessorWithoutProb(Succ);
Jakub Staszak12a43bd2011-06-16 20:22:37 +0000622
Cong Hou166e0852015-09-29 19:46:09 +0000623 FromMBB->removeSuccessor(Succ);
Dan Gohman34396292010-07-06 20:24:04 +0000624 }
625}
626
627void
Cong Hou166e0852015-09-29 19:46:09 +0000628MachineBasicBlock::transferSuccessorsAndUpdatePHIs(MachineBasicBlock *FromMBB) {
629 if (this == FromMBB)
Dan Gohman34396292010-07-06 20:24:04 +0000630 return;
Jakub Staszakfeadd432011-06-16 18:01:17 +0000631
Cong Hou166e0852015-09-29 19:46:09 +0000632 while (!FromMBB->succ_empty()) {
633 MachineBasicBlock *Succ = *FromMBB->succ_begin();
Cong Houd97c1002015-12-01 05:29:22 +0000634 if (!FromMBB->Probs.empty()) {
635 auto Prob = *FromMBB->Probs.begin();
636 addSuccessor(Succ, Prob);
637 } else
638 addSuccessorWithoutProb(Succ);
Cong Hou166e0852015-09-29 19:46:09 +0000639 FromMBB->removeSuccessor(Succ);
Dan Gohman34396292010-07-06 20:24:04 +0000640
641 // Fix up any PHI nodes in the successor.
Evan Cheng7fae11b2011-12-14 02:11:42 +0000642 for (MachineBasicBlock::instr_iterator MI = Succ->instr_begin(),
643 ME = Succ->instr_end(); MI != ME && MI->isPHI(); ++MI)
Dan Gohman34396292010-07-06 20:24:04 +0000644 for (unsigned i = 2, e = MI->getNumOperands()+1; i != e; i += 2) {
645 MachineOperand &MO = MI->getOperand(i);
Cong Hou166e0852015-09-29 19:46:09 +0000646 if (MO.getMBB() == FromMBB)
Dan Gohman34396292010-07-06 20:24:04 +0000647 MO.setMBB(this);
648 }
649 }
Cong Houc1069892015-12-13 09:26:17 +0000650 normalizeSuccProbs();
Mon P Wang3e583932008-05-05 19:05:59 +0000651}
652
Jakob Stoklund Olesenfee94ca2012-07-30 17:36:47 +0000653bool MachineBasicBlock::isPredecessor(const MachineBasicBlock *MBB) const {
654 return std::find(pred_begin(), pred_end(), MBB) != pred_end();
655}
656
Dan Gohmanff62c622009-03-30 20:06:29 +0000657bool MachineBasicBlock::isSuccessor(const MachineBasicBlock *MBB) const {
Jakob Stoklund Olesenfee94ca2012-07-30 17:36:47 +0000658 return std::find(succ_begin(), succ_end(), MBB) != succ_end();
Evan Chenga92b2b32007-05-17 23:58:53 +0000659}
Evan Chengdf757852007-06-04 06:44:01 +0000660
Dan Gohmanff62c622009-03-30 20:06:29 +0000661bool MachineBasicBlock::isLayoutSuccessor(const MachineBasicBlock *MBB) const {
Dan Gohmana78bae32008-10-02 22:09:09 +0000662 MachineFunction::const_iterator I(this);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000663 return std::next(I) == MachineFunction::const_iterator(MBB);
Dan Gohmana78bae32008-10-02 22:09:09 +0000664}
665
Bob Wilson2d4ff122009-11-26 00:32:21 +0000666bool MachineBasicBlock::canFallThrough() {
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000667 MachineFunction::iterator Fallthrough = getIterator();
Bob Wilson2d4ff122009-11-26 00:32:21 +0000668 ++Fallthrough;
669 // If FallthroughBlock is off the end of the function, it can't fall through.
670 if (Fallthrough == getParent()->end())
671 return false;
672
673 // If FallthroughBlock isn't a successor, no fallthrough is possible.
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000674 if (!isSuccessor(&*Fallthrough))
Bob Wilson2d4ff122009-11-26 00:32:21 +0000675 return false;
676
Dan Gohman0b44cb02009-12-05 00:32:59 +0000677 // Analyze the branches, if any, at the end of the block.
Craig Topperc0196b12014-04-14 00:51:57 +0000678 MachineBasicBlock *TBB = nullptr, *FBB = nullptr;
Dan Gohman0b44cb02009-12-05 00:32:59 +0000679 SmallVector<MachineOperand, 4> Cond;
Eric Christopherfc6de422014-08-05 02:39:49 +0000680 const TargetInstrInfo *TII = getParent()->getSubtarget().getInstrInfo();
Jakob Stoklund Olesen834d70d2010-01-15 20:00:12 +0000681 if (TII->AnalyzeBranch(*this, TBB, FBB, Cond)) {
Dan Gohman0b44cb02009-12-05 00:32:59 +0000682 // If we couldn't analyze the branch, examine the last instruction.
683 // If the block doesn't end in a known control barrier, assume fallthrough
Chad Rosier1a1531d2012-01-26 18:24:25 +0000684 // is possible. The isPredicated check is needed because this code can be
Dan Gohman0b44cb02009-12-05 00:32:59 +0000685 // called during IfConversion, where an instruction which is normally a
Chad Rosier9b61cf32012-01-26 20:19:05 +0000686 // Barrier is predicated and thus no longer an actual control barrier.
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +0000687 return empty() || !back().isBarrier() || TII->isPredicated(back());
Dan Gohman0b44cb02009-12-05 00:32:59 +0000688 }
Bob Wilson2d4ff122009-11-26 00:32:21 +0000689
690 // If there is no branch, control always falls through.
Craig Topperc0196b12014-04-14 00:51:57 +0000691 if (!TBB) return true;
Bob Wilson2d4ff122009-11-26 00:32:21 +0000692
693 // If there is some explicit branch to the fallthrough block, it can obviously
694 // reach, even though the branch should get folded to fall through implicitly.
695 if (MachineFunction::iterator(TBB) == Fallthrough ||
696 MachineFunction::iterator(FBB) == Fallthrough)
697 return true;
698
699 // If it's an unconditional branch to some block not the fall through, it
700 // doesn't fall through.
701 if (Cond.empty()) return false;
702
703 // Otherwise, if it is conditional and has no explicit false block, it falls
704 // through.
Craig Topperc0196b12014-04-14 00:51:57 +0000705 return FBB == nullptr;
Bob Wilson2d4ff122009-11-26 00:32:21 +0000706}
707
Quentin Colombet23341a82016-04-21 21:01:13 +0000708MachineBasicBlock *MachineBasicBlock::SplitCriticalEdge(MachineBasicBlock *Succ,
709 Pass &P) {
Quentin Colombet77e18782016-04-21 20:46:27 +0000710 if (!canSplitCriticalEdge(Succ))
Craig Topperc0196b12014-04-14 00:51:57 +0000711 return nullptr;
Evan Cheng2d14d8a2012-04-24 19:06:55 +0000712
Dan Gohman3570f812010-06-22 17:25:57 +0000713 MachineFunction *MF = getParent();
Cong Hou166e0852015-09-29 19:46:09 +0000714 DebugLoc DL; // FIXME: this is nowhere
Dan Gohman3570f812010-06-22 17:25:57 +0000715
Dan Gohman3570f812010-06-22 17:25:57 +0000716 MachineBasicBlock *NMBB = MF->CreateMachineBasicBlock();
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000717 MF->insert(std::next(MachineFunction::iterator(this)), NMBB);
Evan Chenga6848242010-08-17 17:15:14 +0000718 DEBUG(dbgs() << "Splitting critical edge:"
Dan Gohman3570f812010-06-22 17:25:57 +0000719 " BB#" << getNumber()
720 << " -- BB#" << NMBB->getNumber()
721 << " -- BB#" << Succ->getNumber() << '\n');
Cameron Zwarichcdcab382013-02-12 03:49:20 +0000722
Quentin Colombet23341a82016-04-21 21:01:13 +0000723 LiveIntervals *LIS = P.getAnalysisIfAvailable<LiveIntervals>();
724 SlotIndexes *Indexes = P.getAnalysisIfAvailable<SlotIndexes>();
Cameron Zwarichcdcab382013-02-12 03:49:20 +0000725 if (LIS)
726 LIS->insertMBBInMaps(NMBB);
727 else if (Indexes)
Cameron Zwarich21beaf62013-02-10 23:29:54 +0000728 Indexes->insertMBBInMaps(NMBB);
Dan Gohman3570f812010-06-22 17:25:57 +0000729
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000730 // On some targets like Mips, branches may kill virtual registers. Make sure
731 // that LiveVariables is properly updated after updateTerminator replaces the
732 // terminators.
Quentin Colombet23341a82016-04-21 21:01:13 +0000733 LiveVariables *LV = P.getAnalysisIfAvailable<LiveVariables>();
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000734
735 // Collect a list of virtual registers killed by the terminators.
736 SmallVector<unsigned, 4> KilledRegs;
737 if (LV)
Evan Cheng7fae11b2011-12-14 02:11:42 +0000738 for (instr_iterator I = getFirstInstrTerminator(), E = instr_end();
Evan Cheng2a81dd42011-12-06 22:12:01 +0000739 I != E; ++I) {
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000740 MachineInstr *MI = &*I;
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000741 for (MachineInstr::mop_iterator OI = MI->operands_begin(),
742 OE = MI->operands_end(); OI != OE; ++OI) {
Lang Hamesedeea172012-02-09 05:59:36 +0000743 if (!OI->isReg() || OI->getReg() == 0 ||
744 !OI->isUse() || !OI->isKill() || OI->isUndef())
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000745 continue;
746 unsigned Reg = OI->getReg();
Lang Hamesedeea172012-02-09 05:59:36 +0000747 if (TargetRegisterInfo::isPhysicalRegister(Reg) ||
Duncan P. N. Exon Smithd26fdc82016-07-01 01:51:32 +0000748 LV->getVarInfo(Reg).removeKill(*MI)) {
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000749 KilledRegs.push_back(Reg);
750 DEBUG(dbgs() << "Removing terminator kill: " << *MI);
751 OI->setIsKill(false);
752 }
753 }
754 }
755
Cameron Zwarichbfebb412013-02-17 00:10:44 +0000756 SmallVector<unsigned, 4> UsedRegs;
757 if (LIS) {
758 for (instr_iterator I = getFirstInstrTerminator(), E = instr_end();
759 I != E; ++I) {
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000760 MachineInstr *MI = &*I;
Cameron Zwarichbfebb412013-02-17 00:10:44 +0000761
762 for (MachineInstr::mop_iterator OI = MI->operands_begin(),
763 OE = MI->operands_end(); OI != OE; ++OI) {
764 if (!OI->isReg() || OI->getReg() == 0)
765 continue;
766
767 unsigned Reg = OI->getReg();
768 if (std::find(UsedRegs.begin(), UsedRegs.end(), Reg) == UsedRegs.end())
769 UsedRegs.push_back(Reg);
770 }
771 }
772 }
773
Dan Gohman3570f812010-06-22 17:25:57 +0000774 ReplaceUsesOfBlockWith(Succ, NMBB);
Cameron Zwarichba378ce2013-02-11 09:24:45 +0000775
776 // If updateTerminator() removes instructions, we need to remove them from
777 // SlotIndexes.
778 SmallVector<MachineInstr*, 4> Terminators;
779 if (Indexes) {
780 for (instr_iterator I = getFirstInstrTerminator(), E = instr_end();
781 I != E; ++I)
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000782 Terminators.push_back(&*I);
Cameron Zwarichba378ce2013-02-11 09:24:45 +0000783 }
784
Dan Gohman3570f812010-06-22 17:25:57 +0000785 updateTerminator();
786
Cameron Zwarichba378ce2013-02-11 09:24:45 +0000787 if (Indexes) {
788 SmallVector<MachineInstr*, 4> NewTerminators;
789 for (instr_iterator I = getFirstInstrTerminator(), E = instr_end();
790 I != E; ++I)
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000791 NewTerminators.push_back(&*I);
Cameron Zwarichba378ce2013-02-11 09:24:45 +0000792
793 for (SmallVectorImpl<MachineInstr*>::iterator I = Terminators.begin(),
794 E = Terminators.end(); I != E; ++I) {
795 if (std::find(NewTerminators.begin(), NewTerminators.end(), *I) ==
796 NewTerminators.end())
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000797 Indexes->removeMachineInstrFromMaps(**I);
Cameron Zwarichba378ce2013-02-11 09:24:45 +0000798 }
799 }
800
Dan Gohman3570f812010-06-22 17:25:57 +0000801 // Insert unconditional "jump Succ" instruction in NMBB if necessary.
802 NMBB->addSuccessor(Succ);
803 if (!NMBB->isLayoutSuccessor(Succ)) {
Quentin Colombet77e18782016-04-21 20:46:27 +0000804 SmallVector<MachineOperand, 4> Cond;
805 const TargetInstrInfo *TII = getParent()->getSubtarget().getInstrInfo();
Cong Hou166e0852015-09-29 19:46:09 +0000806 TII->InsertBranch(*NMBB, Succ, nullptr, Cond, DL);
Cameron Zwarich21beaf62013-02-10 23:29:54 +0000807
808 if (Indexes) {
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000809 for (MachineInstr &MI : NMBB->instrs()) {
Cameron Zwarich21beaf62013-02-10 23:29:54 +0000810 // Some instructions may have been moved to NMBB by updateTerminator(),
811 // so we first remove any instruction that already has an index.
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000812 if (Indexes->hasIndex(MI))
813 Indexes->removeMachineInstrFromMaps(MI);
814 Indexes->insertMachineInstrInMaps(MI);
Cameron Zwarich21beaf62013-02-10 23:29:54 +0000815 }
816 }
Dan Gohman3570f812010-06-22 17:25:57 +0000817 }
818
819 // Fix PHI nodes in Succ so they refer to NMBB instead of this
Evan Cheng7fae11b2011-12-14 02:11:42 +0000820 for (MachineBasicBlock::instr_iterator
821 i = Succ->instr_begin(),e = Succ->instr_end();
822 i != e && i->isPHI(); ++i)
Dan Gohman3570f812010-06-22 17:25:57 +0000823 for (unsigned ni = 1, ne = i->getNumOperands(); ni != ne; ni += 2)
824 if (i->getOperand(ni+1).getMBB() == this)
825 i->getOperand(ni+1).setMBB(NMBB);
826
Jakob Stoklund Olesen06b6ccf2011-10-14 17:25:46 +0000827 // Inherit live-ins from the successor
Matthias Braund9da1622015-09-09 18:08:03 +0000828 for (const auto &LI : Succ->liveins())
Matthias Braunb2b7ef12015-08-24 22:59:52 +0000829 NMBB->addLiveIn(LI);
Jakob Stoklund Olesen06b6ccf2011-10-14 17:25:46 +0000830
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000831 // Update LiveVariables.
Eric Christopherfc6de422014-08-05 02:39:49 +0000832 const TargetRegisterInfo *TRI = MF->getSubtarget().getRegisterInfo();
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000833 if (LV) {
834 // Restore kills of virtual registers that were killed by the terminators.
835 while (!KilledRegs.empty()) {
836 unsigned Reg = KilledRegs.pop_back_val();
Evan Cheng7fae11b2011-12-14 02:11:42 +0000837 for (instr_iterator I = instr_end(), E = instr_begin(); I != E;) {
Lang Hamesedeea172012-02-09 05:59:36 +0000838 if (!(--I)->addRegisterKilled(Reg, TRI, /* addIfNotFound= */ false))
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000839 continue;
Lang Hamesedeea172012-02-09 05:59:36 +0000840 if (TargetRegisterInfo::isVirtualRegister(Reg))
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000841 LV->getVarInfo(Reg).Kills.push_back(&*I);
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000842 DEBUG(dbgs() << "Restored terminator kill: " << *I);
843 break;
844 }
845 }
846 // Update relevant live-through information.
Dan Gohman3570f812010-06-22 17:25:57 +0000847 LV->addNewBlock(NMBB, this, Succ);
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000848 }
Dan Gohman3570f812010-06-22 17:25:57 +0000849
Cameron Zwarichcdcab382013-02-12 03:49:20 +0000850 if (LIS) {
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000851 // After splitting the edge and updating SlotIndexes, live intervals may be
852 // in one of two situations, depending on whether this block was the last in
Cong Hou2793e722015-08-10 22:27:10 +0000853 // the function. If the original block was the last in the function, all
854 // live intervals will end prior to the beginning of the new split block. If
855 // the original block was not at the end of the function, all live intervals
856 // will extend to the end of the new split block.
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000857
858 bool isLastMBB =
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000859 std::next(MachineFunction::iterator(NMBB)) == getParent()->end();
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000860
861 SlotIndex StartIndex = Indexes->getMBBEndIdx(this);
862 SlotIndex PrevIndex = StartIndex.getPrevSlot();
863 SlotIndex EndIndex = Indexes->getMBBEndIdx(NMBB);
864
865 // Find the registers used from NMBB in PHIs in Succ.
866 SmallSet<unsigned, 8> PHISrcRegs;
867 for (MachineBasicBlock::instr_iterator
868 I = Succ->instr_begin(), E = Succ->instr_end();
869 I != E && I->isPHI(); ++I) {
870 for (unsigned ni = 1, ne = I->getNumOperands(); ni != ne; ni += 2) {
871 if (I->getOperand(ni+1).getMBB() == NMBB) {
872 MachineOperand &MO = I->getOperand(ni);
873 unsigned Reg = MO.getReg();
874 PHISrcRegs.insert(Reg);
Cameron Zwarichaf349312013-02-12 03:49:17 +0000875 if (MO.isUndef())
876 continue;
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000877
878 LiveInterval &LI = LIS->getInterval(Reg);
879 VNInfo *VNI = LI.getVNInfoAt(PrevIndex);
Cong Hou2793e722015-08-10 22:27:10 +0000880 assert(VNI &&
881 "PHI sources should be live out of their predecessors.");
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000882 LI.addSegment(LiveInterval::Segment(StartIndex, EndIndex, VNI));
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000883 }
884 }
885 }
886
887 MachineRegisterInfo *MRI = &getParent()->getRegInfo();
888 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
889 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
890 if (PHISrcRegs.count(Reg) || !LIS->hasInterval(Reg))
891 continue;
892
893 LiveInterval &LI = LIS->getInterval(Reg);
894 if (!LI.liveAt(PrevIndex))
895 continue;
896
Cameron Zwarichaf349312013-02-12 03:49:17 +0000897 bool isLiveOut = LI.liveAt(LIS->getMBBStartIdx(Succ));
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000898 if (isLiveOut && isLastMBB) {
899 VNInfo *VNI = LI.getVNInfoAt(PrevIndex);
900 assert(VNI && "LiveInterval should have VNInfo where it is live.");
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000901 LI.addSegment(LiveInterval::Segment(StartIndex, EndIndex, VNI));
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000902 } else if (!isLiveOut && !isLastMBB) {
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000903 LI.removeSegment(StartIndex, EndIndex);
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000904 }
905 }
Cameron Zwarichbfebb412013-02-17 00:10:44 +0000906
907 // Update all intervals for registers whose uses may have been modified by
908 // updateTerminator().
Cameron Zwarich24955962013-02-17 11:09:00 +0000909 LIS->repairIntervalsInRange(this, getFirstTerminator(), end(), UsedRegs);
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000910 }
911
Dan Gohman3570f812010-06-22 17:25:57 +0000912 if (MachineDominatorTree *MDT =
Quentin Colombet23341a82016-04-21 21:01:13 +0000913 P.getAnalysisIfAvailable<MachineDominatorTree>())
Quentin Colombetabea99f2014-08-13 21:00:07 +0000914 MDT->recordSplitCriticalEdge(this, Succ, NMBB);
Dan Gohman3570f812010-06-22 17:25:57 +0000915
Quentin Colombet23341a82016-04-21 21:01:13 +0000916 if (MachineLoopInfo *MLI = P.getAnalysisIfAvailable<MachineLoopInfo>())
Dan Gohman3570f812010-06-22 17:25:57 +0000917 if (MachineLoop *TIL = MLI->getLoopFor(this)) {
918 // If one or the other blocks were not in a loop, the new block is not
919 // either, and thus LI doesn't need to be updated.
920 if (MachineLoop *DestLoop = MLI->getLoopFor(Succ)) {
921 if (TIL == DestLoop) {
922 // Both in the same loop, the NMBB joins loop.
923 DestLoop->addBasicBlockToLoop(NMBB, MLI->getBase());
924 } else if (TIL->contains(DestLoop)) {
925 // Edge from an outer loop to an inner loop. Add to the outer loop.
926 TIL->addBasicBlockToLoop(NMBB, MLI->getBase());
927 } else if (DestLoop->contains(TIL)) {
928 // Edge from an inner loop to an outer loop. Add to the outer loop.
929 DestLoop->addBasicBlockToLoop(NMBB, MLI->getBase());
930 } else {
931 // Edge from two loops with no containment relation. Because these
932 // are natural loops, we know that the destination block must be the
933 // header of its loop (adding a branch into a loop elsewhere would
934 // create an irreducible loop).
935 assert(DestLoop->getHeader() == Succ &&
936 "Should not create irreducible loops!");
937 if (MachineLoop *P = DestLoop->getParentLoop())
938 P->addBasicBlockToLoop(NMBB, MLI->getBase());
939 }
940 }
941 }
942
943 return NMBB;
944}
945
Quentin Colombet77e18782016-04-21 20:46:27 +0000946bool MachineBasicBlock::canSplitCriticalEdge(
947 const MachineBasicBlock *Succ) const {
948 // Splitting the critical edge to a landing pad block is non-trivial. Don't do
949 // it in this generic function.
950 if (Succ->isEHPad())
951 return false;
952
953 const MachineFunction *MF = getParent();
954
955 // Performance might be harmed on HW that implements branching using exec mask
956 // where both sides of the branches are always executed.
957 if (MF->getTarget().requiresStructuredCFG())
958 return false;
959
960 // We may need to update this's terminator, but we can't do that if
961 // AnalyzeBranch fails. If this uses a jump table, we won't touch it.
962 const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo();
963 MachineBasicBlock *TBB = nullptr, *FBB = nullptr;
964 SmallVector<MachineOperand, 4> Cond;
965 // AnalyzeBanch should modify this, since we did not allow modification.
966 if (TII->AnalyzeBranch(*const_cast<MachineBasicBlock *>(this), TBB, FBB, Cond,
967 /*AllowModify*/ false))
968 return false;
969
970 // Avoid bugpoint weirdness: A block may end with a conditional branch but
971 // jumps to the same MBB is either case. We have duplicate CFG edges in that
972 // case that we can't handle. Since this never happens in properly optimized
973 // code, just skip those edges.
974 if (TBB && TBB == FBB) {
975 DEBUG(dbgs() << "Won't split critical edge after degenerate BB#"
976 << getNumber() << '\n');
977 return false;
978 }
979 return true;
980}
981
Jakob Stoklund Olesenccfb5fb2012-12-17 23:55:38 +0000982/// Prepare MI to be removed from its bundle. This fixes bundle flags on MI's
983/// neighboring instructions so the bundle won't be broken by removing MI.
984static void unbundleSingleMI(MachineInstr *MI) {
985 // Removing the first instruction in a bundle.
986 if (MI->isBundledWithSucc() && !MI->isBundledWithPred())
987 MI->unbundleFromSucc();
988 // Removing the last instruction in a bundle.
989 if (MI->isBundledWithPred() && !MI->isBundledWithSucc())
990 MI->unbundleFromPred();
991 // If MI is not bundled, or if it is internal to a bundle, the neighbor flags
992 // are already fine.
Evan Cheng7fae11b2011-12-14 02:11:42 +0000993}
994
Jakob Stoklund Olesenccfb5fb2012-12-17 23:55:38 +0000995MachineBasicBlock::instr_iterator
996MachineBasicBlock::erase(MachineBasicBlock::instr_iterator I) {
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000997 unbundleSingleMI(&*I);
Jakob Stoklund Olesenccfb5fb2012-12-17 23:55:38 +0000998 return Insts.erase(I);
999}
Evan Cheng7fae11b2011-12-14 02:11:42 +00001000
Jakob Stoklund Olesenccfb5fb2012-12-17 23:55:38 +00001001MachineInstr *MachineBasicBlock::remove_instr(MachineInstr *MI) {
1002 unbundleSingleMI(MI);
1003 MI->clearFlag(MachineInstr::BundledPred);
1004 MI->clearFlag(MachineInstr::BundledSucc);
1005 return Insts.remove(MI);
Evan Cheng7fae11b2011-12-14 02:11:42 +00001006}
1007
Jakob Stoklund Olesen422e07b2012-12-18 17:54:53 +00001008MachineBasicBlock::instr_iterator
1009MachineBasicBlock::insert(instr_iterator I, MachineInstr *MI) {
1010 assert(!MI->isBundledWithPred() && !MI->isBundledWithSucc() &&
1011 "Cannot insert instruction with bundle flags");
1012 // Set the bundle flags when inserting inside a bundle.
1013 if (I != instr_end() && I->isBundledWithPred()) {
1014 MI->setFlag(MachineInstr::BundledPred);
1015 MI->setFlag(MachineInstr::BundledSucc);
1016 }
1017 return Insts.insert(I, MI);
1018}
1019
Cong Hou2a02c1c2015-08-12 21:18:54 +00001020/// This method unlinks 'this' from the containing function, and returns it, but
1021/// does not delete it.
Dan Gohman3b460302008-07-07 23:14:23 +00001022MachineBasicBlock *MachineBasicBlock::removeFromParent() {
1023 assert(getParent() && "Not embedded in a function!");
1024 getParent()->remove(this);
1025 return this;
1026}
1027
Cong Hou2a02c1c2015-08-12 21:18:54 +00001028/// This method unlinks 'this' from the containing function, and deletes it.
Dan Gohman3b460302008-07-07 23:14:23 +00001029void MachineBasicBlock::eraseFromParent() {
1030 assert(getParent() && "Not embedded in a function!");
1031 getParent()->erase(this);
1032}
1033
Cong Hou2a02c1c2015-08-12 21:18:54 +00001034/// Given a machine basic block that branched to 'Old', change the code and CFG
1035/// so that it branches to 'New' instead.
Evan Chengdf757852007-06-04 06:44:01 +00001036void MachineBasicBlock::ReplaceUsesOfBlockWith(MachineBasicBlock *Old,
1037 MachineBasicBlock *New) {
1038 assert(Old != New && "Cannot replace self with self!");
1039
Evan Cheng7fae11b2011-12-14 02:11:42 +00001040 MachineBasicBlock::instr_iterator I = instr_end();
1041 while (I != instr_begin()) {
Evan Chengdf757852007-06-04 06:44:01 +00001042 --I;
Evan Cheng7f8e5632011-12-07 07:15:52 +00001043 if (!I->isTerminator()) break;
Evan Chengdf757852007-06-04 06:44:01 +00001044
1045 // Scan the operands of this machine instruction, replacing any uses of Old
1046 // with New.
1047 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
Dan Gohman0d1e9a82008-10-03 15:45:36 +00001048 if (I->getOperand(i).isMBB() &&
Dan Gohman38453ee2008-09-13 17:58:21 +00001049 I->getOperand(i).getMBB() == Old)
Chris Lattnera5bb3702007-12-30 23:10:15 +00001050 I->getOperand(i).setMBB(New);
Evan Chengdf757852007-06-04 06:44:01 +00001051 }
1052
Dan Gohmanbb2f1072009-05-05 21:10:19 +00001053 // Update the successor information.
Jakub Staszak12a43bd2011-06-16 20:22:37 +00001054 replaceSuccessor(Old, New);
Evan Chengdf757852007-06-04 06:44:01 +00001055}
1056
Cong Hou2a02c1c2015-08-12 21:18:54 +00001057/// Various pieces of code can cause excess edges in the CFG to be inserted. If
1058/// we have proven that MBB can only branch to DestA and DestB, remove any other
1059/// MBB successors from the CFG. DestA and DestB can be null.
Jakub Staszakfeadd432011-06-16 18:01:17 +00001060///
Chris Lattner574e7162007-12-31 04:56:33 +00001061/// Besides DestA and DestB, retain other edges leading to LandingPads
1062/// (currently there can be only one; we don't check or require that here).
Evan Cheng2afd7022007-06-18 22:43:58 +00001063/// Note it is possible that DestA and/or DestB are LandingPads.
1064bool MachineBasicBlock::CorrectExtraCFGEdges(MachineBasicBlock *DestA,
1065 MachineBasicBlock *DestB,
Cong Hou166e0852015-09-29 19:46:09 +00001066 bool IsCond) {
Bill Wendling2d5967d2009-12-16 00:08:36 +00001067 // The values of DestA and DestB frequently come from a call to the
1068 // 'TargetInstrInfo::AnalyzeBranch' method. We take our meaning of the initial
1069 // values from there.
1070 //
1071 // 1. If both DestA and DestB are null, then the block ends with no branches
1072 // (it falls through to its successor).
Cong Hou166e0852015-09-29 19:46:09 +00001073 // 2. If DestA is set, DestB is null, and IsCond is false, then the block ends
Bill Wendling2d5967d2009-12-16 00:08:36 +00001074 // with only an unconditional branch.
Cong Hou166e0852015-09-29 19:46:09 +00001075 // 3. If DestA is set, DestB is null, and IsCond is true, then the block ends
Bill Wendling2d5967d2009-12-16 00:08:36 +00001076 // with a conditional branch that falls through to a successor (DestB).
Cong Hou166e0852015-09-29 19:46:09 +00001077 // 4. If DestA and DestB is set and IsCond is true, then the block ends with a
Bill Wendling2d5967d2009-12-16 00:08:36 +00001078 // conditional branch followed by an unconditional branch. DestA is the
1079 // 'true' destination and DestB is the 'false' destination.
1080
Bill Wendling95643402010-04-01 00:00:43 +00001081 bool Changed = false;
Evan Cheng2afd7022007-06-18 22:43:58 +00001082
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +00001083 MachineFunction::iterator FallThru = std::next(getIterator());
Bill Wendling95643402010-04-01 00:00:43 +00001084
Craig Topperc0196b12014-04-14 00:51:57 +00001085 if (!DestA && !DestB) {
Bill Wendling95643402010-04-01 00:00:43 +00001086 // Block falls through to successor.
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +00001087 DestA = &*FallThru;
1088 DestB = &*FallThru;
Craig Topperc0196b12014-04-14 00:51:57 +00001089 } else if (DestA && !DestB) {
Cong Hou166e0852015-09-29 19:46:09 +00001090 if (IsCond)
Bill Wendling95643402010-04-01 00:00:43 +00001091 // Block ends in conditional jump that falls through to successor.
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +00001092 DestB = &*FallThru;
Evan Cheng2afd7022007-06-18 22:43:58 +00001093 } else {
Cong Hou166e0852015-09-29 19:46:09 +00001094 assert(DestA && DestB && IsCond &&
Bill Wendling95643402010-04-01 00:00:43 +00001095 "CFG in a bad state. Cannot correct CFG edges");
Evan Cheng2afd7022007-06-18 22:43:58 +00001096 }
Bill Wendling95643402010-04-01 00:00:43 +00001097
1098 // Remove superfluous edges. I.e., those which aren't destinations of this
1099 // basic block, duplicate edges, or landing pads.
1100 SmallPtrSet<const MachineBasicBlock*, 8> SeenMBBs;
Evan Cheng2afd7022007-06-18 22:43:58 +00001101 MachineBasicBlock::succ_iterator SI = succ_begin();
Evan Cheng2afd7022007-06-18 22:43:58 +00001102 while (SI != succ_end()) {
Bill Wendling2d5967d2009-12-16 00:08:36 +00001103 const MachineBasicBlock *MBB = *SI;
David Blaikie70573dc2014-11-19 07:49:26 +00001104 if (!SeenMBBs.insert(MBB).second ||
Reid Kleckner0e288232015-08-27 23:27:47 +00001105 (MBB != DestA && MBB != DestB && !MBB->isEHPad())) {
Bill Wendling95643402010-04-01 00:00:43 +00001106 // This is a superfluous edge, remove it.
Bill Wendlingfa9810d2010-03-31 23:26:26 +00001107 SI = removeSuccessor(SI);
Bill Wendling95643402010-04-01 00:00:43 +00001108 Changed = true;
1109 } else {
1110 ++SI;
Evan Cheng2afd7022007-06-18 22:43:58 +00001111 }
1112 }
Bill Wendling2d5967d2009-12-16 00:08:36 +00001113
Cong Houc1069892015-12-13 09:26:17 +00001114 if (Changed)
1115 normalizeSuccProbs();
Bill Wendling95643402010-04-01 00:00:43 +00001116 return Changed;
Evan Cheng2afd7022007-06-18 22:43:58 +00001117}
Evan Cheng57be2f22009-11-17 19:19:59 +00001118
Cong Hou2a02c1c2015-08-12 21:18:54 +00001119/// Find the next valid DebugLoc starting at MBBI, skipping any DBG_VALUE
1120/// instructions. Return UnknownLoc if there is none.
Dale Johannesenc5db5992010-01-20 21:36:02 +00001121DebugLoc
Evan Cheng7fae11b2011-12-14 02:11:42 +00001122MachineBasicBlock::findDebugLoc(instr_iterator MBBI) {
Dale Johannesenc5db5992010-01-20 21:36:02 +00001123 DebugLoc DL;
Evan Cheng7fae11b2011-12-14 02:11:42 +00001124 instr_iterator E = instr_end();
Evan Cheng2a81dd42011-12-06 22:12:01 +00001125 if (MBBI == E)
1126 return DL;
1127
1128 // Skip debug declarations, we don't want a DebugLoc from them.
1129 while (MBBI != E && MBBI->isDebugValue())
1130 MBBI++;
1131 if (MBBI != E)
1132 DL = MBBI->getDebugLoc();
Dale Johannesenc5db5992010-01-20 21:36:02 +00001133 return DL;
1134}
1135
Cong Houd97c1002015-12-01 05:29:22 +00001136/// Return probability of the edge from this block to MBB.
Cong Hou23a3bf02015-11-04 21:37:58 +00001137BranchProbability
1138MachineBasicBlock::getSuccProbability(const_succ_iterator Succ) const {
Cong Hou4aef7ef2015-12-01 11:05:39 +00001139 if (Probs.empty())
Cong Hou23a3bf02015-11-04 21:37:58 +00001140 return BranchProbability(1, succ_size());
1141
Cong Hou4aef7ef2015-12-01 11:05:39 +00001142 const auto &Prob = *getProbabilityIterator(Succ);
1143 if (Prob.isUnknown()) {
1144 // For unknown probabilities, collect the sum of all known ones, and evenly
1145 // ditribute the complemental of the sum to each unknown probability.
1146 unsigned KnownProbNum = 0;
1147 auto Sum = BranchProbability::getZero();
1148 for (auto &P : Probs) {
1149 if (!P.isUnknown()) {
1150 Sum += P;
1151 KnownProbNum++;
1152 }
1153 }
1154 return Sum.getCompl() / (Probs.size() - KnownProbNum);
1155 } else
1156 return Prob;
Manman Renb6819182014-01-29 23:18:47 +00001157}
1158
Cong Hou23a3bf02015-11-04 21:37:58 +00001159/// Set successor probability of a given iterator.
1160void MachineBasicBlock::setSuccProbability(succ_iterator I,
1161 BranchProbability Prob) {
1162 assert(!Prob.isUnknown());
Cong Houd97c1002015-12-01 05:29:22 +00001163 if (Probs.empty())
Cong Hou23a3bf02015-11-04 21:37:58 +00001164 return;
1165 *getProbabilityIterator(I) = Prob;
Cong Hou23a3bf02015-11-04 21:37:58 +00001166}
1167
Hans Wennborg1dbaf672015-12-01 03:49:42 +00001168/// Return probability iterator corresonding to the I successor iterator
1169MachineBasicBlock::const_probability_iterator
1170MachineBasicBlock::getProbabilityIterator(
1171 MachineBasicBlock::const_succ_iterator I) const {
Cong Houfa1917c2015-12-01 00:02:51 +00001172 assert(Probs.size() == Successors.size() && "Async probability list!");
1173 const size_t index = std::distance(Successors.begin(), I);
1174 assert(index < Probs.size() && "Not a current successor!");
1175 return Probs.begin() + index;
1176}
1177
Cong Houd97c1002015-12-01 05:29:22 +00001178/// Return probability iterator corresonding to the I successor iterator.
1179MachineBasicBlock::probability_iterator
1180MachineBasicBlock::getProbabilityIterator(MachineBasicBlock::succ_iterator I) {
1181 assert(Probs.size() == Successors.size() && "Async probability list!");
1182 const size_t index = std::distance(Successors.begin(), I);
1183 assert(index < Probs.size() && "Not a current successor!");
1184 return Probs.begin() + index;
1185}
1186
James Molloyc747cda2012-09-12 10:18:23 +00001187/// Return whether (physical) register "Reg" has been <def>ined and not <kill>ed
1188/// as of just before "MI".
Junmo Park12386102016-01-07 10:26:32 +00001189///
James Molloyc747cda2012-09-12 10:18:23 +00001190/// Search is localised to a neighborhood of
1191/// Neighborhood instructions before (searching for defs or kills) and N
1192/// instructions after (searching just for defs) MI.
1193MachineBasicBlock::LivenessQueryResult
1194MachineBasicBlock::computeRegisterLiveness(const TargetRegisterInfo *TRI,
Matthias Braun07a07ba2015-05-27 05:12:39 +00001195 unsigned Reg, const_iterator Before,
1196 unsigned Neighborhood) const {
James Molloyc747cda2012-09-12 10:18:23 +00001197 unsigned N = Neighborhood;
James Molloyc747cda2012-09-12 10:18:23 +00001198
Matthias Braun07a07ba2015-05-27 05:12:39 +00001199 // Start by searching backwards from Before, looking for kills, reads or defs.
1200 const_iterator I(Before);
James Molloyc747cda2012-09-12 10:18:23 +00001201 // If this is the first insn in the block, don't search backwards.
Matthias Braun07a07ba2015-05-27 05:12:39 +00001202 if (I != begin()) {
James Molloyc747cda2012-09-12 10:18:23 +00001203 do {
1204 --I;
1205
Matthias Braun60d69e22015-12-11 19:42:09 +00001206 MachineOperandIteratorBase::PhysRegInfo Info =
Duncan P. N. Exon Smithf9ab4162016-02-27 17:05:33 +00001207 ConstMIOperands(*I).analyzePhysReg(Reg, TRI);
James Molloyc747cda2012-09-12 10:18:23 +00001208
Matthias Braun60d69e22015-12-11 19:42:09 +00001209 // Defs happen after uses so they take precedence if both are present.
Tim Northoverdd219d02012-11-20 09:56:11 +00001210
Matthias Braun60d69e22015-12-11 19:42:09 +00001211 // Register is dead after a dead def of the full register.
1212 if (Info.DeadDef)
James Molloyc747cda2012-09-12 10:18:23 +00001213 return LQR_Dead;
Matthias Braun60d69e22015-12-11 19:42:09 +00001214 // Register is (at least partially) live after a def.
Quentin Colombet08e79992016-04-26 23:14:29 +00001215 if (Info.Defined) {
1216 if (!Info.PartialDeadDef)
1217 return LQR_Live;
1218 // As soon as we saw a partial definition (dead or not),
1219 // we cannot tell if the value is partial live without
1220 // tracking the lanemasks. We are not going to do this,
1221 // so fall back on the remaining of the analysis.
1222 break;
1223 }
Matthias Braun60d69e22015-12-11 19:42:09 +00001224 // Register is dead after a full kill or clobber and no def.
1225 if (Info.Killed || Info.Clobbered)
1226 return LQR_Dead;
1227 // Register must be live if we read it.
1228 if (Info.Read)
1229 return LQR_Live;
Matthias Braun07a07ba2015-05-27 05:12:39 +00001230 } while (I != begin() && --N > 0);
James Molloyc747cda2012-09-12 10:18:23 +00001231 }
1232
1233 // Did we get to the start of the block?
Matthias Braun07a07ba2015-05-27 05:12:39 +00001234 if (I == begin()) {
James Molloyc747cda2012-09-12 10:18:23 +00001235 // If so, the register's state is definitely defined by the live-in state.
Matthias Braun60d69e22015-12-11 19:42:09 +00001236 for (MCRegAliasIterator RAI(Reg, TRI, /*IncludeSelf=*/true); RAI.isValid();
1237 ++RAI)
Matthias Braun07a07ba2015-05-27 05:12:39 +00001238 if (isLiveIn(*RAI))
Matthias Braun60d69e22015-12-11 19:42:09 +00001239 return LQR_Live;
James Molloyc747cda2012-09-12 10:18:23 +00001240
1241 return LQR_Dead;
1242 }
1243
1244 N = Neighborhood;
1245
Matthias Braun07a07ba2015-05-27 05:12:39 +00001246 // Try searching forwards from Before, looking for reads or defs.
1247 I = const_iterator(Before);
James Molloyc747cda2012-09-12 10:18:23 +00001248 // If this is the last insn in the block, don't search forwards.
Matthias Braun07a07ba2015-05-27 05:12:39 +00001249 if (I != end()) {
1250 for (++I; I != end() && N > 0; ++I, --N) {
Matthias Braun60d69e22015-12-11 19:42:09 +00001251 MachineOperandIteratorBase::PhysRegInfo Info =
Duncan P. N. Exon Smithf9ab4162016-02-27 17:05:33 +00001252 ConstMIOperands(*I).analyzePhysReg(Reg, TRI);
James Molloyc747cda2012-09-12 10:18:23 +00001253
Matthias Braun60d69e22015-12-11 19:42:09 +00001254 // Register is live when we read it here.
1255 if (Info.Read)
1256 return LQR_Live;
1257 // Register is dead if we can fully overwrite or clobber it here.
1258 if (Info.FullyDefined || Info.Clobbered)
James Molloyc747cda2012-09-12 10:18:23 +00001259 return LQR_Dead;
1260 }
1261 }
1262
1263 // At this point we have no idea of the liveness of the register.
1264 return LQR_Unknown;
1265}
Reid Klecknerb8fd1622015-11-06 17:06:38 +00001266
1267const uint32_t *
1268MachineBasicBlock::getBeginClobberMask(const TargetRegisterInfo *TRI) const {
1269 // EH funclet entry does not preserve any registers.
1270 return isEHFuncletEntry() ? TRI->getNoPreservedMask() : nullptr;
1271}
1272
1273const uint32_t *
1274MachineBasicBlock::getEndClobberMask(const TargetRegisterInfo *TRI) const {
1275 // If we see a return block with successors, this must be a funclet return,
1276 // which does not preserve any registers. If there are no successors, we don't
1277 // care what kind of return it is, putting a mask after it is a no-op.
1278 return isReturnBlock() && !succ_empty() ? TRI->getNoPreservedMask() : nullptr;
1279}