blob: 64cc2e669ad0d601d364778f42873f24bf1ab9d5 [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"
Matthias Braunf8422972017-12-13 02:51:04 +000016#include "llvm/CodeGen/LiveIntervals.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"
David Blaikie3f833ed2017-11-08 01:01:31 +000024#include "llvm/CodeGen/TargetInstrInfo.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000025#include "llvm/CodeGen/TargetRegisterInfo.h"
26#include "llvm/CodeGen/TargetSubtargetInfo.h"
Nico Weber432a3882018-04-30 14:59:11 +000027#include "llvm/Config/llvm-config.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000028#include "llvm/IR/BasicBlock.h"
29#include "llvm/IR/DataLayout.h"
Taewook Oh06a21282017-02-13 18:15:31 +000030#include "llvm/IR/DebugInfoMetadata.h"
Duncan P. N. Exon Smith326921542015-06-26 22:04:20 +000031#include "llvm/IR/ModuleSlotTracker.h"
Chris Lattnerd051af72010-01-26 04:55:51 +000032#include "llvm/MC/MCAsmInfo.h"
33#include "llvm/MC/MCContext.h"
Cong Hou663dd012015-12-13 09:52:14 +000034#include "llvm/Support/DataTypes.h"
David Greene6c56cef2010-01-04 23:22:07 +000035#include "llvm/Support/Debug.h"
Daniel Dunbar796e43e2009-07-24 10:36:58 +000036#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000037#include "llvm/Target/TargetMachine.h"
Chris Lattner4336b872004-10-26 15:43:42 +000038#include <algorithm>
Alkis Evlogimenos14f3fe82004-02-16 07:17:43 +000039using namespace llvm;
40
Chandler Carruthe96dd892014-04-21 22:55:11 +000041#define DEBUG_TYPE "codegen"
42
Cong Hou166e0852015-09-29 19:46:09 +000043MachineBasicBlock::MachineBasicBlock(MachineFunction &MF, const BasicBlock *B)
44 : BB(B), Number(-1), xParent(&MF) {
Dan Gohman804c95d2008-07-28 21:51:04 +000045 Insts.Parent = this;
Hiroshi Yamauchidce9def2017-11-02 22:26:51 +000046 if (B)
47 IrrLoopHeaderWeight = B->getIrrLoopHeaderWeight();
Tanya Lattner91fa3a92004-05-24 07:14:35 +000048}
Tanya Lattner91fa3a92004-05-24 07:14:35 +000049
Dan Gohman0ece9432008-07-17 23:49:46 +000050MachineBasicBlock::~MachineBasicBlock() {
Dan Gohman0ece9432008-07-17 23:49:46 +000051}
52
Cong Hou2a02c1c2015-08-12 21:18:54 +000053/// Return the MCSymbol for this basic block.
Chris Lattner29bdac42010-03-13 21:04:28 +000054MCSymbol *MachineBasicBlock::getSymbol() const {
Eli Bendersky58b04b72013-04-22 21:21:08 +000055 if (!CachedMCSymbol) {
56 const MachineFunction *MF = getParent();
57 MCContext &Ctx = MF->getContext();
Mehdi Amini36d33fc2016-10-01 06:46:33 +000058 auto Prefix = Ctx.getAsmInfo()->getPrivateLabelPrefix();
Reid Klecknerb9204a52015-11-11 23:09:31 +000059 assert(getNumber() >= 0 && "cannot get label for unreachable MBB");
Jim Grosbach6f482002015-05-18 18:43:14 +000060 CachedMCSymbol = Ctx.getOrCreateSymbol(Twine(Prefix) + "BB" +
Eli Bendersky58b04b72013-04-22 21:21:08 +000061 Twine(MF->getFunctionNumber()) +
62 "_" + Twine(getNumber()));
63 }
64
65 return CachedMCSymbol;
Chris Lattnerd051af72010-01-26 04:55:51 +000066}
67
68
Chris Lattneraf119ca2009-08-23 00:35:30 +000069raw_ostream &llvm::operator<<(raw_ostream &OS, const MachineBasicBlock &MBB) {
Daniel Dunbar796e43e2009-07-24 10:36:58 +000070 MBB.print(OS);
71 return OS;
72}
Tanya Lattner91fa3a92004-05-24 07:14:35 +000073
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +000074Printable llvm::printMBBReference(const MachineBasicBlock &MBB) {
75 return Printable([&MBB](raw_ostream &OS) { return MBB.printAsOperand(OS); });
76}
77
Cong Hou2a02c1c2015-08-12 21:18:54 +000078/// When an MBB is added to an MF, we need to update the parent pointer of the
79/// MBB, the MBB numbering, and any instructions in the MBB to be on the right
80/// operand list for registers.
Chris Lattner961e7422008-01-01 01:12:31 +000081///
82/// MBBs start out as #-1. When a MBB is added to a MachineFunction, it
83/// gets the next available unique MBB number. If it is removed from a
84/// MachineFunction, it goes back to being #-1.
Duncan P. N. Exon Smithf947c3a2016-08-30 18:40:47 +000085void ilist_callback_traits<MachineBasicBlock>::addNodeToList(
86 MachineBasicBlock *N) {
Dan Gohman3b460302008-07-07 23:14:23 +000087 MachineFunction &MF = *N->getParent();
88 N->Number = MF.addToMBBNumbering(N);
Chris Lattner961e7422008-01-01 01:12:31 +000089
90 // Make sure the instructions have their operands in the reginfo lists.
Dan Gohman3b460302008-07-07 23:14:23 +000091 MachineRegisterInfo &RegInfo = MF.getRegInfo();
Evan Cheng7fae11b2011-12-14 02:11:42 +000092 for (MachineBasicBlock::instr_iterator
93 I = N->instr_begin(), E = N->instr_end(); I != E; ++I)
Chris Lattner961e7422008-01-01 01:12:31 +000094 I->AddRegOperandsToUseLists(RegInfo);
Brian Gaekecb5d22a2004-05-12 21:35:22 +000095}
96
Duncan P. N. Exon Smithf947c3a2016-08-30 18:40:47 +000097void ilist_callback_traits<MachineBasicBlock>::removeNodeFromList(
98 MachineBasicBlock *N) {
Chris Lattner574e7162007-12-31 04:56:33 +000099 N->getParent()->removeFromMBBNumbering(N->Number);
Brian Gaekecb5d22a2004-05-12 21:35:22 +0000100 N->Number = -1;
101}
102
Cong Hou2a02c1c2015-08-12 21:18:54 +0000103/// When we add an instruction to a basic block list, we update its parent
104/// pointer and add its operands from reg use/def lists if appropriate.
Chris Lattneraf119ca2009-08-23 00:35:30 +0000105void ilist_traits<MachineInstr>::addNodeToList(MachineInstr *N) {
Craig Topperc0196b12014-04-14 00:51:57 +0000106 assert(!N->getParent() && "machine instruction already in a basic block");
Dan Gohman3b460302008-07-07 23:14:23 +0000107 N->setParent(Parent);
Jakub Staszakfeadd432011-06-16 18:01:17 +0000108
Dan Gohman3b460302008-07-07 23:14:23 +0000109 // Add the instruction's register operands to their corresponding
110 // use/def lists.
111 MachineFunction *MF = Parent->getParent();
112 N->AddRegOperandsToUseLists(MF->getRegInfo());
Alkis Evlogimenos14f3fe82004-02-16 07:17:43 +0000113}
114
Cong Hou2a02c1c2015-08-12 21:18:54 +0000115/// When we remove an instruction from a basic block list, we update its parent
116/// pointer and remove its operands from reg use/def lists if appropriate.
Chris Lattneraf119ca2009-08-23 00:35:30 +0000117void ilist_traits<MachineInstr>::removeNodeFromList(MachineInstr *N) {
Craig Topperc0196b12014-04-14 00:51:57 +0000118 assert(N->getParent() && "machine instruction not in a basic block");
Dan Gohman3b460302008-07-07 23:14:23 +0000119
120 // Remove from the use/def lists.
Justin Bognerfdf9bf42017-10-10 23:50:49 +0000121 if (MachineFunction *MF = N->getMF())
Jakob Stoklund Olesenc4102d42012-08-09 22:49:37 +0000122 N->RemoveRegOperandsFromUseLists(MF->getRegInfo());
Jakub Staszakfeadd432011-06-16 18:01:17 +0000123
Craig Topperc0196b12014-04-14 00:51:57 +0000124 N->setParent(nullptr);
Alkis Evlogimenos14f3fe82004-02-16 07:17:43 +0000125}
126
Cong Hou2a02c1c2015-08-12 21:18:54 +0000127/// When moving a range of instructions from one MBB list to another, we need to
128/// update the parent pointers and the use/def lists.
Duncan P. N. Exon Smithcc9edac2016-09-11 16:38:18 +0000129void ilist_traits<MachineInstr>::transferNodesFromList(ilist_traits &FromList,
130 instr_iterator First,
131 instr_iterator Last) {
Cong Hou166e0852015-09-29 19:46:09 +0000132 assert(Parent->getParent() == FromList.Parent->getParent() &&
Dan Gohman804c95d2008-07-28 21:51:04 +0000133 "MachineInstr parent mismatch!");
Duncan P. N. Exon Smithb7668d52016-08-30 18:00:45 +0000134 assert(this != &FromList && "Called without a real transfer...");
135 assert(Parent != FromList.Parent && "Two lists have the same parent?");
Chris Lattner961e7422008-01-01 01:12:31 +0000136
137 // If splicing between two blocks within the same function, just update the
138 // parent pointers.
Cong Hou166e0852015-09-29 19:46:09 +0000139 for (; First != Last; ++First)
140 First->setParent(Parent);
Alkis Evlogimenos14f3fe82004-02-16 07:17:43 +0000141}
142
Duncan P. N. Exon Smithf947c3a2016-08-30 18:40:47 +0000143void ilist_traits<MachineInstr>::deleteNode(MachineInstr *MI) {
Dan Gohman3b460302008-07-07 23:14:23 +0000144 assert(!MI->getParent() && "MI is still in a block!");
145 Parent->getParent()->DeleteMachineInstr(MI);
146}
147
Dan Gohman88c547e2010-07-07 14:33:51 +0000148MachineBasicBlock::iterator MachineBasicBlock::getFirstNonPHI() {
Benjamin Kramerbaa41d42012-02-10 00:28:31 +0000149 instr_iterator I = instr_begin(), E = instr_end();
150 while (I != E && I->isPHI())
Dan Gohman88c547e2010-07-07 14:33:51 +0000151 ++I;
Akira Hatanaka6fe7aca2012-10-26 17:11:42 +0000152 assert((I == E || !I->isInsideBundle()) &&
153 "First non-phi MI cannot be inside a bundle!");
Dan Gohman88c547e2010-07-07 14:33:51 +0000154 return I;
155}
156
Jakob Stoklund Olesenef541852010-10-30 01:26:14 +0000157MachineBasicBlock::iterator
158MachineBasicBlock::SkipPHIsAndLabels(MachineBasicBlock::iterator I) {
Stanislav Mekhanoshin6ec3e3a2017-01-20 00:44:31 +0000159 const TargetInstrInfo *TII = getParent()->getSubtarget().getInstrInfo();
160
Benjamin Kramerbaa41d42012-02-10 00:28:31 +0000161 iterator E = end();
Stanislav Mekhanoshin6ec3e3a2017-01-20 00:44:31 +0000162 while (I != E && (I->isPHI() || I->isPosition() ||
163 TII->isBasicBlockPrologue(*I)))
Keith Walker830a8c12016-09-16 14:07:29 +0000164 ++I;
165 // FIXME: This needs to change if we wish to bundle labels
166 // inside the bundle.
167 assert((I == E || !I->isInsideBundle()) &&
168 "First non-phi / non-label instruction is inside a bundle!");
169 return I;
170}
171
172MachineBasicBlock::iterator
173MachineBasicBlock::SkipPHIsLabelsAndDebug(MachineBasicBlock::iterator I) {
Stanislav Mekhanoshin6ec3e3a2017-01-20 00:44:31 +0000174 const TargetInstrInfo *TII = getParent()->getSubtarget().getInstrInfo();
175
Keith Walker830a8c12016-09-16 14:07:29 +0000176 iterator E = end();
Shiva Chen801bf7e2018-05-09 02:42:00 +0000177 while (I != E && (I->isPHI() || I->isPosition() || I->isDebugInstr() ||
Stanislav Mekhanoshin6ec3e3a2017-01-20 00:44:31 +0000178 TII->isBasicBlockPrologue(*I)))
Jakob Stoklund Olesenef541852010-10-30 01:26:14 +0000179 ++I;
Evan Cheng2a81dd42011-12-06 22:12:01 +0000180 // FIXME: This needs to change if we wish to bundle labels / dbg_values
181 // inside the bundle.
Akira Hatanaka6fe7aca2012-10-26 17:11:42 +0000182 assert((I == E || !I->isInsideBundle()) &&
Keith Walker830a8c12016-09-16 14:07:29 +0000183 "First non-phi / non-label / non-debug "
184 "instruction is inside a bundle!");
Jakob Stoklund Olesenef541852010-10-30 01:26:14 +0000185 return I;
186}
187
Chris Lattner4336b872004-10-26 15:43:42 +0000188MachineBasicBlock::iterator MachineBasicBlock::getFirstTerminator() {
Benjamin Kramerbaa41d42012-02-10 00:28:31 +0000189 iterator B = begin(), E = end(), I = E;
Shiva Chen801bf7e2018-05-09 02:42:00 +0000190 while (I != B && ((--I)->isTerminator() || I->isDebugInstr()))
Jakob Stoklund Olesenc3810282011-01-14 02:12:54 +0000191 ; /*noop */
Benjamin Kramerbaa41d42012-02-10 00:28:31 +0000192 while (I != E && !I->isTerminator())
Evan Cheng2a81dd42011-12-06 22:12:01 +0000193 ++I;
194 return I;
195}
196
Evan Cheng7fae11b2011-12-14 02:11:42 +0000197MachineBasicBlock::instr_iterator MachineBasicBlock::getFirstInstrTerminator() {
Benjamin Kramerbaa41d42012-02-10 00:28:31 +0000198 instr_iterator B = instr_begin(), E = instr_end(), I = E;
Shiva Chen801bf7e2018-05-09 02:42:00 +0000199 while (I != B && ((--I)->isTerminator() || I->isDebugInstr()))
Evan Cheng2a81dd42011-12-06 22:12:01 +0000200 ; /*noop */
Benjamin Kramerbaa41d42012-02-10 00:28:31 +0000201 while (I != E && !I->isTerminator())
Jakob Stoklund Olesenab3d6ec2011-01-14 06:33:45 +0000202 ++I;
Jakob Stoklund Olesenc3810282011-01-14 02:12:54 +0000203 return I;
Alkis Evlogimenosaf2de482004-02-23 18:14:48 +0000204}
205
Benjamin Kramer6b568962015-06-23 14:47:29 +0000206MachineBasicBlock::iterator MachineBasicBlock::getFirstNonDebugInstr() {
207 // Skip over begin-of-block dbg_value instructions.
Florian Hahn3c8b8c92016-12-16 11:10:26 +0000208 return skipDebugInstructionsForward(begin(), end());
Benjamin Kramer6b568962015-06-23 14:47:29 +0000209}
210
Jakob Stoklund Olesen4bc5e382011-01-13 21:28:52 +0000211MachineBasicBlock::iterator MachineBasicBlock::getLastNonDebugInstr() {
Evan Cheng2a81dd42011-12-06 22:12:01 +0000212 // Skip over end-of-block dbg_value instructions.
Evan Cheng7fae11b2011-12-14 02:11:42 +0000213 instr_iterator B = instr_begin(), I = instr_end();
Jakob Stoklund Olesen4bc5e382011-01-13 21:28:52 +0000214 while (I != B) {
215 --I;
Evan Cheng2a81dd42011-12-06 22:12:01 +0000216 // Return instruction that starts a bundle.
Shiva Chen801bf7e2018-05-09 02:42:00 +0000217 if (I->isDebugInstr() || I->isInsideBundle())
Evan Cheng2a81dd42011-12-06 22:12:01 +0000218 continue;
219 return I;
220 }
221 // The block is all debug values.
222 return end();
223}
224
Reid Klecknered170792015-09-17 17:19:40 +0000225bool MachineBasicBlock::hasEHPadSuccessor() const {
226 for (const_succ_iterator I = succ_begin(), E = succ_end(); I != E; ++I)
227 if ((*I)->isEHPad())
228 return true;
229 return false;
230}
231
Aaron Ballman615eb472017-10-15 14:32:27 +0000232#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Yaron Kereneb2a2542016-01-29 20:50:44 +0000233LLVM_DUMP_METHOD void MachineBasicBlock::dump() const {
David Greene6c56cef2010-01-04 23:22:07 +0000234 print(dbgs());
Alkis Evlogimenos14f3fe82004-02-16 07:17:43 +0000235}
Manman Ren742534c2012-09-06 19:06:06 +0000236#endif
Alkis Evlogimenos14f3fe82004-02-16 07:17:43 +0000237
Andrew Kaylord4971192017-06-22 23:27:16 +0000238bool MachineBasicBlock::isLegalToHoistInto() const {
239 if (isReturnBlock() || hasEHPadSuccessor())
240 return false;
241 return true;
242}
243
Jakob Stoklund Olesen2bbeaa82009-11-20 01:17:03 +0000244StringRef MachineBasicBlock::getName() const {
245 if (const BasicBlock *LBB = getBasicBlock())
246 return LBB->getName();
247 else
Matthias Braun43130592017-02-18 00:41:16 +0000248 return StringRef("", 0);
Jakob Stoklund Olesen2bbeaa82009-11-20 01:17:03 +0000249}
250
Andrew Trick320c7032012-03-07 00:18:18 +0000251/// Return a hopefully unique identifier for this block.
252std::string MachineBasicBlock::getFullName() const {
253 std::string Name;
254 if (getParent())
Craig Toppera538d832012-08-22 06:07:19 +0000255 Name = (getParent()->getName() + ":").str();
Andrew Trick320c7032012-03-07 00:18:18 +0000256 if (getBasicBlock())
257 Name += getBasicBlock()->getName();
258 else
Yaron Keren75e0c4b2015-03-27 17:51:30 +0000259 Name += ("BB" + Twine(getNumber())).str();
Andrew Trick320c7032012-03-07 00:18:18 +0000260 return Name;
261}
262
Francis Visoiu Mistrih378b5f32018-01-18 17:59:06 +0000263void MachineBasicBlock::print(raw_ostream &OS, const SlotIndexes *Indexes,
Francis Visoiu Mistriheb3f76f2018-01-18 18:05:15 +0000264 bool IsStandalone) const {
Evan Chengbcf1d7f2007-02-10 02:38:19 +0000265 const MachineFunction *MF = getParent();
Chris Lattneraf119ca2009-08-23 00:35:30 +0000266 if (!MF) {
Chris Lattner4336b872004-10-26 15:43:42 +0000267 OS << "Can't print out MachineBasicBlock because parent MachineFunction"
268 << " is null\n";
Tanya Lattnera578cb72004-05-24 06:11:51 +0000269 return;
270 }
Matthias Braunf1caa282017-12-15 22:22:58 +0000271 const Function &F = MF->getFunction();
272 const Module *M = F.getParent();
Duncan P. N. Exon Smith326921542015-06-26 22:04:20 +0000273 ModuleSlotTracker MST(M);
Francis Visoiu Mistrihda89d182018-02-08 05:02:00 +0000274 MST.incorporateFunction(F);
Francis Visoiu Mistriheb3f76f2018-01-18 18:05:15 +0000275 print(OS, MST, Indexes, IsStandalone);
Duncan P. N. Exon Smith326921542015-06-26 22:04:20 +0000276}
277
278void MachineBasicBlock::print(raw_ostream &OS, ModuleSlotTracker &MST,
Francis Visoiu Mistrih378b5f32018-01-18 17:59:06 +0000279 const SlotIndexes *Indexes,
Francis Visoiu Mistriheb3f76f2018-01-18 18:05:15 +0000280 bool IsStandalone) const {
Duncan P. N. Exon Smith326921542015-06-26 22:04:20 +0000281 const MachineFunction *MF = getParent();
282 if (!MF) {
283 OS << "Can't print out MachineBasicBlock because parent MachineFunction"
284 << " is null\n";
285 return;
286 }
Alkis Evlogimenosfcb3f512004-09-05 18:39:20 +0000287
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000288 if (Indexes)
289 OS << Indexes->getMBBStartIdx(this) << '\t';
290
Francis Visoiu Mistrihda89d182018-02-08 05:02:00 +0000291 OS << "bb." << getNumber();
292 bool HasAttributes = false;
293 if (const auto *BB = getBasicBlock()) {
294 if (BB->hasName()) {
295 OS << "." << BB->getName();
296 } else {
297 HasAttributes = true;
298 OS << " (";
299 int Slot = MST.getLocalSlot(BB);
300 if (Slot == -1)
301 OS << "<ir-block badref>";
302 else
303 OS << (Twine("%ir-block.") + Twine(Slot)).str();
304 }
Dan Gohman34341e62009-10-31 20:19:03 +0000305 }
Jakob Stoklund Olesen2a2b37e2011-12-06 21:08:39 +0000306
Francis Visoiu Mistrihda89d182018-02-08 05:02:00 +0000307 if (hasAddressTaken()) {
308 OS << (HasAttributes ? ", " : " (");
309 OS << "address-taken";
310 HasAttributes = true;
311 }
312 if (isEHPad()) {
313 OS << (HasAttributes ? ", " : " (");
314 OS << "landing-pad";
315 HasAttributes = true;
316 }
317 if (getAlignment()) {
318 OS << (HasAttributes ? ", " : " (");
319 OS << "align " << getAlignment();
320 HasAttributes = true;
321 }
322 if (HasAttributes)
323 OS << ")";
324 OS << ":\n";
Evan Chengbcf1d7f2007-02-10 02:38:19 +0000325
Eric Christopherfc6de422014-08-05 02:39:49 +0000326 const TargetRegisterInfo *TRI = MF->getSubtarget().getRegisterInfo();
Francis Visoiu Mistrihfb7b14f72018-02-09 01:14:44 +0000327 const MachineRegisterInfo &MRI = MF->getRegInfo();
Francis Visoiu Mistrihf6ed7952018-02-13 18:08:26 +0000328 const TargetInstrInfo &TII = *getParent()->getSubtarget().getInstrInfo();
Francis Visoiu Mistrih3fbbdf32018-02-15 16:23:59 +0000329 bool HasLineAttributes = false;
Francis Visoiu Mistrihfb7b14f72018-02-09 01:14:44 +0000330
Francis Visoiu Mistrihafad84e2018-02-14 20:23:05 +0000331 // Print the preds of this block according to the CFG.
Francis Visoiu Mistrihe4fae4d52018-02-26 15:23:42 +0000332 if (!pred_empty() && IsStandalone) {
Francis Visoiu Mistrihafad84e2018-02-14 20:23:05 +0000333 if (Indexes) OS << '\t';
334 // Don't indent(2), align with previous line attributes.
335 OS << "; predecessors: ";
336 for (auto I = pred_begin(), E = pred_end(); I != E; ++I) {
337 if (I != pred_begin())
Francis Visoiu Mistrihfb7b14f72018-02-09 01:14:44 +0000338 OS << ", ";
Francis Visoiu Mistrihafad84e2018-02-14 20:23:05 +0000339 OS << printMBBReference(**I);
Matthias Braunb2b7ef12015-08-24 22:59:52 +0000340 }
Chris Lattneraf119ca2009-08-23 00:35:30 +0000341 OS << '\n';
Francis Visoiu Mistrih3fbbdf32018-02-15 16:23:59 +0000342 HasLineAttributes = true;
Evan Chengbcf1d7f2007-02-10 02:38:19 +0000343 }
Francis Visoiu Mistrih39ec2e92018-02-09 00:10:31 +0000344
Francis Visoiu Mistriha37e0092018-02-09 00:12:53 +0000345 if (!succ_empty()) {
Francis Visoiu Mistrihfb7b14f72018-02-09 01:14:44 +0000346 if (Indexes) OS << '\t';
Francis Visoiu Mistriha37e0092018-02-09 00:12:53 +0000347 // Print the successors
348 OS.indent(2) << "successors: ";
349 for (auto I = succ_begin(), E = succ_end(); I != E; ++I) {
350 if (I != succ_begin())
351 OS << ", ";
352 OS << printMBBReference(**I);
Francis Visoiu Mistrih7d3dde32018-02-09 00:40:57 +0000353 if (!Probs.empty())
354 OS << '('
355 << format("0x%08" PRIx32, getSuccProbability(I).getNumerator())
356 << ')';
Francis Visoiu Mistriha37e0092018-02-09 00:12:53 +0000357 }
Francis Visoiu Mistrihe4fae4d52018-02-26 15:23:42 +0000358 if (!Probs.empty() && IsStandalone) {
Francis Visoiu Mistrih7d3dde32018-02-09 00:40:57 +0000359 // Print human readable probabilities as comments.
360 OS << "; ";
361 for (auto I = succ_begin(), E = succ_end(); I != E; ++I) {
362 const BranchProbability &BP = *getProbabilityIterator(I);
363 if (I != succ_begin())
364 OS << ", ";
365 OS << printMBBReference(**I) << '('
366 << format("%.2f%%",
367 rint(((double)BP.getNumerator() / BP.getDenominator()) *
368 100.0 * 100.0) /
369 100.0)
370 << ')';
371 }
Francis Visoiu Mistriha37e0092018-02-09 00:12:53 +0000372 }
Francis Visoiu Mistrih3fbbdf32018-02-15 16:23:59 +0000373
374 OS << '\n';
375 HasLineAttributes = true;
Francis Visoiu Mistrih39ec2e92018-02-09 00:10:31 +0000376 }
377
Francis Visoiu Mistrihafad84e2018-02-14 20:23:05 +0000378 if (!livein_empty() && MRI.tracksLiveness()) {
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000379 if (Indexes) OS << '\t';
Francis Visoiu Mistrihafad84e2018-02-14 20:23:05 +0000380 OS.indent(2) << "liveins: ";
381
382 bool First = true;
383 for (const auto &LI : liveins()) {
384 if (!First)
Francis Visoiu Mistrih33979ce2018-02-09 19:46:02 +0000385 OS << ", ";
Francis Visoiu Mistrihafad84e2018-02-14 20:23:05 +0000386 First = false;
387 OS << printReg(LI.PhysReg, TRI);
388 if (!LI.LaneMask.all())
389 OS << ":0x" << PrintLaneMask(LI.LaneMask);
Francis Visoiu Mistrih33979ce2018-02-09 19:46:02 +0000390 }
Francis Visoiu Mistrih3fbbdf32018-02-15 16:23:59 +0000391 HasLineAttributes = true;
Chris Lattner9a1e91b2006-09-26 03:41:59 +0000392 }
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000393
Francis Visoiu Mistrih3fbbdf32018-02-15 16:23:59 +0000394 if (HasLineAttributes)
395 OS << '\n';
396
Francis Visoiu Mistrihf6ed7952018-02-13 18:08:26 +0000397 bool IsInBundle = false;
398 for (const MachineInstr &MI : instrs()) {
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000399 if (Indexes) {
Francis Visoiu Mistrihf6ed7952018-02-13 18:08:26 +0000400 if (Indexes->hasIndex(MI))
401 OS << Indexes->getInstructionIndex(MI);
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000402 OS << '\t';
403 }
Francis Visoiu Mistrihf6ed7952018-02-13 18:08:26 +0000404
405 if (IsInBundle && !MI.isInsideBundle()) {
406 OS.indent(2) << "}\n";
407 IsInBundle = false;
408 }
409
410 OS.indent(IsInBundle ? 4 : 2);
411 MI.print(OS, MST, IsStandalone, /*SkipOpers=*/false, /*SkipDebugLoc=*/false,
Krzysztof Parzyszek71a4c0c2018-04-10 16:46:13 +0000412 /*AddNewLine=*/false, &TII);
Francis Visoiu Mistrihf6ed7952018-02-13 18:08:26 +0000413
414 if (!IsInBundle && MI.getFlag(MachineInstr::BundledSucc)) {
415 OS << " {";
416 IsInBundle = true;
417 }
Krzysztof Parzyszek71a4c0c2018-04-10 16:46:13 +0000418 OS << '\n';
Alkis Evlogimenosfcb3f512004-09-05 18:39:20 +0000419 }
Chris Lattner329c14a2005-04-01 06:48:38 +0000420
Francis Visoiu Mistrihf6ed7952018-02-13 18:08:26 +0000421 if (IsInBundle)
422 OS.indent(2) << "}\n";
423
Francis Visoiu Mistrihe4fae4d52018-02-26 15:23:42 +0000424 if (IrrLoopHeaderWeight && IsStandalone) {
Hiroshi Yamauchidce9def2017-11-02 22:26:51 +0000425 if (Indexes) OS << '\t';
Francis Visoiu Mistrih1e002a22018-02-15 15:27:34 +0000426 OS.indent(2) << "; Irreducible loop header weight: "
427 << IrrLoopHeaderWeight.getValue() << '\n';
Hiroshi Yamauchidce9def2017-11-02 22:26:51 +0000428 }
Alkis Evlogimenos14f3fe82004-02-16 07:17:43 +0000429}
Chris Lattner4336b872004-10-26 15:43:42 +0000430
Cong Hou2793e722015-08-10 22:27:10 +0000431void MachineBasicBlock::printAsOperand(raw_ostream &OS,
432 bool /*PrintType*/) const {
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +0000433 OS << "%bb." << getNumber();
Chandler Carruthd48cdbf2014-01-09 02:29:41 +0000434}
435
Matthias Braune6a24852015-09-25 21:51:14 +0000436void MachineBasicBlock::removeLiveIn(MCPhysReg Reg, LaneBitmask LaneMask) {
David Majnemer42531262016-08-12 03:55:06 +0000437 LiveInVector::iterator I = find_if(
438 LiveIns, [Reg](const RegisterMaskPair &LI) { return LI.PhysReg == Reg; });
Matthias Braund9da1622015-09-09 18:08:03 +0000439 if (I == LiveIns.end())
440 return;
441
442 I->LaneMask &= ~LaneMask;
Krzysztof Parzyszek91b5cf82016-12-15 14:36:06 +0000443 if (I->LaneMask.none())
Jakob Stoklund Olesen8e58c902012-03-28 20:11:42 +0000444 LiveIns.erase(I);
Evan Chengf7ed82d2007-02-19 21:49:54 +0000445}
446
Matthias Braunac4becc2017-05-31 20:30:22 +0000447MachineBasicBlock::livein_iterator
448MachineBasicBlock::removeLiveIn(MachineBasicBlock::livein_iterator I) {
Matthias Braune2e65912017-05-31 21:25:03 +0000449 // Get non-const version of iterator.
450 LiveInVector::iterator LI = LiveIns.begin() + (I - LiveIns.begin());
451 return LiveIns.erase(LI);
Matthias Braunac4becc2017-05-31 20:30:22 +0000452}
453
Matthias Braune6a24852015-09-25 21:51:14 +0000454bool MachineBasicBlock::isLiveIn(MCPhysReg Reg, LaneBitmask LaneMask) const {
David Majnemer42531262016-08-12 03:55:06 +0000455 livein_iterator I = find_if(
456 LiveIns, [Reg](const RegisterMaskPair &LI) { return LI.PhysReg == Reg; });
Krzysztof Parzyszekea9f8ce2016-12-16 19:11:56 +0000457 return I != livein_end() && (I->LaneMask & LaneMask).any();
Matthias Braund9da1622015-09-09 18:08:03 +0000458}
459
460void MachineBasicBlock::sortUniqueLiveIns() {
Mandeep Singh Grange92f0cf2018-04-06 18:08:42 +0000461 llvm::sort(LiveIns.begin(), LiveIns.end(),
462 [](const RegisterMaskPair &LI0, const RegisterMaskPair &LI1) {
463 return LI0.PhysReg < LI1.PhysReg;
464 });
Matthias Braund9da1622015-09-09 18:08:03 +0000465 // Liveins are sorted by physreg now we can merge their lanemasks.
466 LiveInVector::const_iterator I = LiveIns.begin();
467 LiveInVector::const_iterator J;
468 LiveInVector::iterator Out = LiveIns.begin();
469 for (; I != LiveIns.end(); ++Out, I = J) {
470 unsigned PhysReg = I->PhysReg;
Matthias Braune6a24852015-09-25 21:51:14 +0000471 LaneBitmask LaneMask = I->LaneMask;
Matthias Braund9da1622015-09-09 18:08:03 +0000472 for (J = std::next(I); J != LiveIns.end() && J->PhysReg == PhysReg; ++J)
473 LaneMask |= J->LaneMask;
474 Out->PhysReg = PhysReg;
475 Out->LaneMask = LaneMask;
476 }
477 LiveIns.erase(Out, LiveIns.end());
Aaron Ballman9f154f62015-07-29 15:57:49 +0000478}
479
Jakob Stoklund Olesen533c3bf2013-07-03 23:56:20 +0000480unsigned
Matthias Braun130bd902015-08-25 22:05:55 +0000481MachineBasicBlock::addLiveIn(MCPhysReg PhysReg, const TargetRegisterClass *RC) {
Jakob Stoklund Olesen533c3bf2013-07-03 23:56:20 +0000482 assert(getParent() && "MBB must be inserted in function");
483 assert(TargetRegisterInfo::isPhysicalRegister(PhysReg) && "Expected physreg");
484 assert(RC && "Register class is required");
Reid Kleckner0e288232015-08-27 23:27:47 +0000485 assert((isEHPad() || this == &getParent()->front()) &&
Jakob Stoklund Olesen533c3bf2013-07-03 23:56:20 +0000486 "Only the entry block and landing pads can have physreg live ins");
487
488 bool LiveIn = isLiveIn(PhysReg);
Jakob Stoklund Olesenbbbb5322013-07-04 04:32:35 +0000489 iterator I = SkipPHIsAndLabels(begin()), E = end();
Jakob Stoklund Olesen533c3bf2013-07-03 23:56:20 +0000490 MachineRegisterInfo &MRI = getParent()->getRegInfo();
Eric Christopherfc6de422014-08-05 02:39:49 +0000491 const TargetInstrInfo &TII = *getParent()->getSubtarget().getInstrInfo();
Jakob Stoklund Olesen533c3bf2013-07-03 23:56:20 +0000492
493 // Look for an existing copy.
494 if (LiveIn)
495 for (;I != E && I->isCopy(); ++I)
496 if (I->getOperand(1).getReg() == PhysReg) {
497 unsigned VirtReg = I->getOperand(0).getReg();
498 if (!MRI.constrainRegClass(VirtReg, RC))
499 llvm_unreachable("Incompatible live-in register class.");
500 return VirtReg;
501 }
502
503 // No luck, create a virtual register.
504 unsigned VirtReg = MRI.createVirtualRegister(RC);
505 BuildMI(*this, I, DebugLoc(), TII.get(TargetOpcode::COPY), VirtReg)
506 .addReg(PhysReg, RegState::Kill);
507 if (!LiveIn)
508 addLiveIn(PhysReg);
509 return VirtReg;
510}
511
Chris Lattner94866be2006-10-24 00:02:26 +0000512void MachineBasicBlock::moveBefore(MachineBasicBlock *NewAfter) {
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000513 getParent()->splice(NewAfter->getIterator(), getIterator());
Chris Lattner94866be2006-10-24 00:02:26 +0000514}
515
516void MachineBasicBlock::moveAfter(MachineBasicBlock *NewBefore) {
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000517 getParent()->splice(++NewBefore->getIterator(), getIterator());
Chris Lattner94866be2006-10-24 00:02:26 +0000518}
519
Jim Grosbach801b33b2009-11-12 03:55:33 +0000520void MachineBasicBlock::updateTerminator() {
Eric Christopherfc6de422014-08-05 02:39:49 +0000521 const TargetInstrInfo *TII = getParent()->getSubtarget().getInstrInfo();
Jim Grosbach801b33b2009-11-12 03:55:33 +0000522 // A block with no successors has no concerns with fall-through edges.
Chad Rosierdca76512016-05-25 21:53:46 +0000523 if (this->succ_empty())
524 return;
Jim Grosbach801b33b2009-11-12 03:55:33 +0000525
Craig Topperc0196b12014-04-14 00:51:57 +0000526 MachineBasicBlock *TBB = nullptr, *FBB = nullptr;
Jim Grosbach801b33b2009-11-12 03:55:33 +0000527 SmallVector<MachineOperand, 4> Cond;
Taewook Oh06a21282017-02-13 18:15:31 +0000528 DebugLoc DL = findBranchDebugLoc();
Jacques Pienaar71c30a12016-07-15 14:41:04 +0000529 bool B = TII->analyzeBranch(*this, TBB, FBB, Cond);
Jim Grosbach801b33b2009-11-12 03:55:33 +0000530 (void) B;
531 assert(!B && "UpdateTerminators requires analyzable predecessors!");
532 if (Cond.empty()) {
533 if (TBB) {
Chad Rosierdca76512016-05-25 21:53:46 +0000534 // The block has an unconditional branch. If its successor is now its
535 // layout successor, delete the branch.
Jim Grosbach801b33b2009-11-12 03:55:33 +0000536 if (isLayoutSuccessor(TBB))
Matt Arsenault1b9fc8e2016-09-14 20:43:16 +0000537 TII->removeBranch(*this);
Jim Grosbach801b33b2009-11-12 03:55:33 +0000538 } else {
Chad Rosierdca76512016-05-25 21:53:46 +0000539 // The block has an unconditional fallthrough. If its successor is not its
540 // layout successor, insert a branch. First we have to locate the only
541 // non-landing-pad successor, as that is the fallthrough block.
Chandler Carruthee54feb2011-11-22 13:13:16 +0000542 for (succ_iterator SI = succ_begin(), SE = succ_end(); SI != SE; ++SI) {
Reid Kleckner0e288232015-08-27 23:27:47 +0000543 if ((*SI)->isEHPad())
Chandler Carruthee54feb2011-11-22 13:13:16 +0000544 continue;
545 assert(!TBB && "Found more than one non-landing-pad successor!");
546 TBB = *SI;
547 }
Chandler Carruth8c68f1f2011-11-23 08:23:54 +0000548
Chad Rosierdca76512016-05-25 21:53:46 +0000549 // If there is no non-landing-pad successor, the block has no fall-through
550 // edges to be concerned with.
Chandler Carruth8c68f1f2011-11-23 08:23:54 +0000551 if (!TBB)
552 return;
553
554 // Finally update the unconditional successor to be reached via a branch
555 // if it would not be reached by fallthrough.
Jim Grosbach801b33b2009-11-12 03:55:33 +0000556 if (!isLayoutSuccessor(TBB))
Matt Arsenaulte8e0f5c2016-09-14 17:24:15 +0000557 TII->insertBranch(*this, TBB, nullptr, Cond, DL);
Jim Grosbach801b33b2009-11-12 03:55:33 +0000558 }
Chad Rosierdca76512016-05-25 21:53:46 +0000559 return;
560 }
Chandler Carruth1f5580b2012-04-16 22:03:00 +0000561
Chad Rosierdca76512016-05-25 21:53:46 +0000562 if (FBB) {
563 // The block has a non-fallthrough conditional branch. If one of its
564 // successors is its layout successor, rewrite it to a fallthrough
565 // conditional branch.
566 if (isLayoutSuccessor(TBB)) {
Matt Arsenault1b9fc8e2016-09-14 20:43:16 +0000567 if (TII->reverseBranchCondition(Cond))
Chandler Carruth1f5580b2012-04-16 22:03:00 +0000568 return;
Matt Arsenault1b9fc8e2016-09-14 20:43:16 +0000569 TII->removeBranch(*this);
Matt Arsenaulte8e0f5c2016-09-14 17:24:15 +0000570 TII->insertBranch(*this, FBB, nullptr, Cond, DL);
Chad Rosierdca76512016-05-25 21:53:46 +0000571 } else if (isLayoutSuccessor(FBB)) {
Matt Arsenault1b9fc8e2016-09-14 20:43:16 +0000572 TII->removeBranch(*this);
Matt Arsenaulte8e0f5c2016-09-14 17:24:15 +0000573 TII->insertBranch(*this, TBB, nullptr, Cond, DL);
Jim Grosbach801b33b2009-11-12 03:55:33 +0000574 }
Chad Rosierdca76512016-05-25 21:53:46 +0000575 return;
576 }
577
578 // Walk through the successors and find the successor which is not a landing
579 // pad and is not the conditional branch destination (in TBB) as the
580 // fallthrough successor.
581 MachineBasicBlock *FallthroughBB = nullptr;
582 for (succ_iterator SI = succ_begin(), SE = succ_end(); SI != SE; ++SI) {
583 if ((*SI)->isEHPad() || *SI == TBB)
584 continue;
585 assert(!FallthroughBB && "Found more than one fallthrough successor.");
586 FallthroughBB = *SI;
587 }
588
Haicheng Wub71b2f62016-07-03 19:14:17 +0000589 if (!FallthroughBB) {
590 if (canFallThrough()) {
591 // We fallthrough to the same basic block as the conditional jump targets.
592 // Remove the conditional jump, leaving unconditional fallthrough.
593 // FIXME: This does not seem like a reasonable pattern to support, but it
594 // has been seen in the wild coming out of degenerate ARM test cases.
Matt Arsenault1b9fc8e2016-09-14 20:43:16 +0000595 TII->removeBranch(*this);
Taewook Oh06a21282017-02-13 18:15:31 +0000596
Haicheng Wub71b2f62016-07-03 19:14:17 +0000597 // Finally update the unconditional successor to be reached via a branch if
598 // it would not be reached by fallthrough.
599 if (!isLayoutSuccessor(TBB))
Matt Arsenaulte8e0f5c2016-09-14 17:24:15 +0000600 TII->insertBranch(*this, TBB, nullptr, Cond, DL);
Haicheng Wub71b2f62016-07-03 19:14:17 +0000601 return;
602 }
Chad Rosierdca76512016-05-25 21:53:46 +0000603
Haicheng Wub71b2f62016-07-03 19:14:17 +0000604 // We enter here iff exactly one successor is TBB which cannot fallthrough
605 // and the rest successors if any are EHPads. In this case, we need to
606 // change the conditional branch into unconditional branch.
Matt Arsenault1b9fc8e2016-09-14 20:43:16 +0000607 TII->removeBranch(*this);
Haicheng Wub71b2f62016-07-03 19:14:17 +0000608 Cond.clear();
Matt Arsenaulte8e0f5c2016-09-14 17:24:15 +0000609 TII->insertBranch(*this, TBB, nullptr, Cond, DL);
Chad Rosierdca76512016-05-25 21:53:46 +0000610 return;
611 }
612
613 // The block has a fallthrough conditional branch.
614 if (isLayoutSuccessor(TBB)) {
Matt Arsenault1b9fc8e2016-09-14 20:43:16 +0000615 if (TII->reverseBranchCondition(Cond)) {
Chad Rosierdca76512016-05-25 21:53:46 +0000616 // We can't reverse the condition, add an unconditional branch.
617 Cond.clear();
Matt Arsenaulte8e0f5c2016-09-14 17:24:15 +0000618 TII->insertBranch(*this, FallthroughBB, nullptr, Cond, DL);
Chad Rosierdca76512016-05-25 21:53:46 +0000619 return;
620 }
Matt Arsenault1b9fc8e2016-09-14 20:43:16 +0000621 TII->removeBranch(*this);
Matt Arsenaulte8e0f5c2016-09-14 17:24:15 +0000622 TII->insertBranch(*this, FallthroughBB, nullptr, Cond, DL);
Chad Rosierdca76512016-05-25 21:53:46 +0000623 } else if (!isLayoutSuccessor(FallthroughBB)) {
Matt Arsenault1b9fc8e2016-09-14 20:43:16 +0000624 TII->removeBranch(*this);
Matt Arsenaulte8e0f5c2016-09-14 17:24:15 +0000625 TII->insertBranch(*this, TBB, FallthroughBB, Cond, DL);
Jim Grosbach801b33b2009-11-12 03:55:33 +0000626 }
627}
Chris Lattner94866be2006-10-24 00:02:26 +0000628
Cong Houc1069892015-12-13 09:26:17 +0000629void MachineBasicBlock::validateSuccProbs() const {
630#ifndef NDEBUG
631 int64_t Sum = 0;
632 for (auto Prob : Probs)
633 Sum += Prob.getNumerator();
634 // Due to precision issue, we assume that the sum of probabilities is one if
635 // the difference between the sum of their numerators and the denominator is
636 // no greater than the number of successors.
Cong Houc00e65a2015-12-13 17:00:25 +0000637 assert((uint64_t)std::abs(Sum - BranchProbability::getDenominator()) <=
Cong Houc1069892015-12-13 09:26:17 +0000638 Probs.size() &&
639 "The sum of successors's probabilities exceeds one.");
640#endif // NDEBUG
641}
642
Cong Hou23a3bf02015-11-04 21:37:58 +0000643void MachineBasicBlock::addSuccessor(MachineBasicBlock *Succ,
644 BranchProbability Prob) {
645 // Probability list is either empty (if successor list isn't empty, this means
646 // disabled optimization) or has the same size as successor list.
Cong Hou4aef7ef2015-12-01 11:05:39 +0000647 if (!(Probs.empty() && !Successors.empty()))
Cong Hou23a3bf02015-11-04 21:37:58 +0000648 Probs.push_back(Prob);
649 Successors.push_back(Succ);
650 Succ->addPredecessor(this);
651}
652
653void MachineBasicBlock::addSuccessorWithoutProb(MachineBasicBlock *Succ) {
654 // We need to make sure probability list is either empty or has the same size
655 // of successor list. When this function is called, we can safely delete all
656 // probability in the list.
657 Probs.clear();
658 Successors.push_back(Succ);
659 Succ->addPredecessor(this);
660}
661
Cong Houc1069892015-12-13 09:26:17 +0000662void MachineBasicBlock::removeSuccessor(MachineBasicBlock *Succ,
663 bool NormalizeSuccProbs) {
David Majnemer0d955d02016-08-11 22:21:41 +0000664 succ_iterator I = find(Successors, Succ);
Cong Houc1069892015-12-13 09:26:17 +0000665 removeSuccessor(I, NormalizeSuccProbs);
Chris Lattner4336b872004-10-26 15:43:42 +0000666}
667
Jakub Staszakfeadd432011-06-16 18:01:17 +0000668MachineBasicBlock::succ_iterator
Cong Houc1069892015-12-13 09:26:17 +0000669MachineBasicBlock::removeSuccessor(succ_iterator I, bool NormalizeSuccProbs) {
Chris Lattner4336b872004-10-26 15:43:42 +0000670 assert(I != Successors.end() && "Not a current successor!");
Jakub Staszak12a43bd2011-06-16 20:22:37 +0000671
Cong Hou23a3bf02015-11-04 21:37:58 +0000672 // If probability list is empty it means we don't use it (disabled
673 // optimization).
674 if (!Probs.empty()) {
675 probability_iterator WI = getProbabilityIterator(I);
676 Probs.erase(WI);
Cong Houc1069892015-12-13 09:26:17 +0000677 if (NormalizeSuccProbs)
678 normalizeSuccProbs();
Cong Hou23a3bf02015-11-04 21:37:58 +0000679 }
680
Chris Lattner4336b872004-10-26 15:43:42 +0000681 (*I)->removePredecessor(this);
Dan Gohmanf87dc922009-01-08 22:19:34 +0000682 return Successors.erase(I);
Chris Lattner4336b872004-10-26 15:43:42 +0000683}
684
Jakub Staszak12a43bd2011-06-16 20:22:37 +0000685void MachineBasicBlock::replaceSuccessor(MachineBasicBlock *Old,
686 MachineBasicBlock *New) {
Jakob Stoklund Olesen8c28ac92012-08-10 03:23:27 +0000687 if (Old == New)
688 return;
Jakub Staszak12a43bd2011-06-16 20:22:37 +0000689
Jakob Stoklund Olesen8c28ac92012-08-10 03:23:27 +0000690 succ_iterator E = succ_end();
691 succ_iterator NewI = E;
692 succ_iterator OldI = E;
693 for (succ_iterator I = succ_begin(); I != E; ++I) {
694 if (*I == Old) {
695 OldI = I;
696 if (NewI != E)
697 break;
698 }
699 if (*I == New) {
700 NewI = I;
701 if (OldI != E)
702 break;
703 }
704 }
705 assert(OldI != E && "Old is not a successor of this block");
Jakob Stoklund Olesen8c28ac92012-08-10 03:23:27 +0000706
707 // If New isn't already a successor, let it take Old's place.
708 if (NewI == E) {
Cong Hou11c14202015-11-18 01:45:10 +0000709 Old->removePredecessor(this);
Jakob Stoklund Olesen8c28ac92012-08-10 03:23:27 +0000710 New->addPredecessor(this);
711 *OldI = New;
712 return;
Jakub Staszak12a43bd2011-06-16 20:22:37 +0000713 }
714
Jakob Stoklund Olesen8c28ac92012-08-10 03:23:27 +0000715 // New is already a successor.
Cong Hou23a3bf02015-11-04 21:37:58 +0000716 // Update its probability instead of adding a duplicate edge.
Cong Houd97c1002015-12-01 05:29:22 +0000717 if (!Probs.empty()) {
718 auto ProbIter = getProbabilityIterator(NewI);
719 if (!ProbIter->isUnknown())
720 *ProbIter += *getProbabilityIterator(OldI);
721 }
Cong Hou11c14202015-11-18 01:45:10 +0000722 removeSuccessor(OldI);
Jakub Staszak12a43bd2011-06-16 20:22:37 +0000723}
724
Chandler Carruth19618fc2018-04-10 01:41:17 +0000725void MachineBasicBlock::copySuccessor(MachineBasicBlock *Orig,
726 succ_iterator I) {
727 if (Orig->Probs.empty())
728 addSuccessor(*I, Orig->getSuccProbability(I));
729 else
730 addSuccessorWithoutProb(*I);
731}
732
Cong Hou166e0852015-09-29 19:46:09 +0000733void MachineBasicBlock::addPredecessor(MachineBasicBlock *Pred) {
734 Predecessors.push_back(Pred);
Chris Lattner4336b872004-10-26 15:43:42 +0000735}
736
Cong Hou166e0852015-09-29 19:46:09 +0000737void MachineBasicBlock::removePredecessor(MachineBasicBlock *Pred) {
David Majnemer0d955d02016-08-11 22:21:41 +0000738 pred_iterator I = find(Predecessors, Pred);
Chris Lattner4336b872004-10-26 15:43:42 +0000739 assert(I != Predecessors.end() && "Pred is not a predecessor of this block!");
740 Predecessors.erase(I);
741}
Evan Chenga92b2b32007-05-17 23:58:53 +0000742
Cong Hou166e0852015-09-29 19:46:09 +0000743void MachineBasicBlock::transferSuccessors(MachineBasicBlock *FromMBB) {
744 if (this == FromMBB)
Mon P Wang3e583932008-05-05 19:05:59 +0000745 return;
Jakub Staszakfeadd432011-06-16 18:01:17 +0000746
Cong Hou166e0852015-09-29 19:46:09 +0000747 while (!FromMBB->succ_empty()) {
748 MachineBasicBlock *Succ = *FromMBB->succ_begin();
Jakub Staszak12a43bd2011-06-16 20:22:37 +0000749
Cong Houd97c1002015-12-01 05:29:22 +0000750 // If probability list is empty it means we don't use it (disabled optimization).
751 if (!FromMBB->Probs.empty()) {
752 auto Prob = *FromMBB->Probs.begin();
753 addSuccessor(Succ, Prob);
754 } else
755 addSuccessorWithoutProb(Succ);
Jakub Staszak12a43bd2011-06-16 20:22:37 +0000756
Cong Hou166e0852015-09-29 19:46:09 +0000757 FromMBB->removeSuccessor(Succ);
Dan Gohman34396292010-07-06 20:24:04 +0000758 }
759}
760
761void
Cong Hou166e0852015-09-29 19:46:09 +0000762MachineBasicBlock::transferSuccessorsAndUpdatePHIs(MachineBasicBlock *FromMBB) {
763 if (this == FromMBB)
Dan Gohman34396292010-07-06 20:24:04 +0000764 return;
Jakub Staszakfeadd432011-06-16 18:01:17 +0000765
Cong Hou166e0852015-09-29 19:46:09 +0000766 while (!FromMBB->succ_empty()) {
767 MachineBasicBlock *Succ = *FromMBB->succ_begin();
Cong Houd97c1002015-12-01 05:29:22 +0000768 if (!FromMBB->Probs.empty()) {
769 auto Prob = *FromMBB->Probs.begin();
770 addSuccessor(Succ, Prob);
771 } else
772 addSuccessorWithoutProb(Succ);
Cong Hou166e0852015-09-29 19:46:09 +0000773 FromMBB->removeSuccessor(Succ);
Dan Gohman34396292010-07-06 20:24:04 +0000774
775 // Fix up any PHI nodes in the successor.
Evan Cheng7fae11b2011-12-14 02:11:42 +0000776 for (MachineBasicBlock::instr_iterator MI = Succ->instr_begin(),
777 ME = Succ->instr_end(); MI != ME && MI->isPHI(); ++MI)
Dan Gohman34396292010-07-06 20:24:04 +0000778 for (unsigned i = 2, e = MI->getNumOperands()+1; i != e; i += 2) {
779 MachineOperand &MO = MI->getOperand(i);
Cong Hou166e0852015-09-29 19:46:09 +0000780 if (MO.getMBB() == FromMBB)
Dan Gohman34396292010-07-06 20:24:04 +0000781 MO.setMBB(this);
782 }
783 }
Cong Houc1069892015-12-13 09:26:17 +0000784 normalizeSuccProbs();
Mon P Wang3e583932008-05-05 19:05:59 +0000785}
786
Jakob Stoklund Olesenfee94ca2012-07-30 17:36:47 +0000787bool MachineBasicBlock::isPredecessor(const MachineBasicBlock *MBB) const {
David Majnemer42531262016-08-12 03:55:06 +0000788 return is_contained(predecessors(), MBB);
Jakob Stoklund Olesenfee94ca2012-07-30 17:36:47 +0000789}
790
Dan Gohmanff62c622009-03-30 20:06:29 +0000791bool MachineBasicBlock::isSuccessor(const MachineBasicBlock *MBB) const {
David Majnemer42531262016-08-12 03:55:06 +0000792 return is_contained(successors(), MBB);
Evan Chenga92b2b32007-05-17 23:58:53 +0000793}
Evan Chengdf757852007-06-04 06:44:01 +0000794
Dan Gohmanff62c622009-03-30 20:06:29 +0000795bool MachineBasicBlock::isLayoutSuccessor(const MachineBasicBlock *MBB) const {
Dan Gohmana78bae32008-10-02 22:09:09 +0000796 MachineFunction::const_iterator I(this);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000797 return std::next(I) == MachineFunction::const_iterator(MBB);
Dan Gohmana78bae32008-10-02 22:09:09 +0000798}
799
Jan Sjodinf1a30f12017-03-31 15:55:37 +0000800MachineBasicBlock *MachineBasicBlock::getFallThrough() {
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000801 MachineFunction::iterator Fallthrough = getIterator();
Bob Wilson2d4ff122009-11-26 00:32:21 +0000802 ++Fallthrough;
803 // If FallthroughBlock is off the end of the function, it can't fall through.
804 if (Fallthrough == getParent()->end())
Jan Sjodinf1a30f12017-03-31 15:55:37 +0000805 return nullptr;
Bob Wilson2d4ff122009-11-26 00:32:21 +0000806
807 // If FallthroughBlock isn't a successor, no fallthrough is possible.
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000808 if (!isSuccessor(&*Fallthrough))
Jan Sjodinf1a30f12017-03-31 15:55:37 +0000809 return nullptr;
Bob Wilson2d4ff122009-11-26 00:32:21 +0000810
Dan Gohman0b44cb02009-12-05 00:32:59 +0000811 // Analyze the branches, if any, at the end of the block.
Craig Topperc0196b12014-04-14 00:51:57 +0000812 MachineBasicBlock *TBB = nullptr, *FBB = nullptr;
Dan Gohman0b44cb02009-12-05 00:32:59 +0000813 SmallVector<MachineOperand, 4> Cond;
Eric Christopherfc6de422014-08-05 02:39:49 +0000814 const TargetInstrInfo *TII = getParent()->getSubtarget().getInstrInfo();
Jacques Pienaar71c30a12016-07-15 14:41:04 +0000815 if (TII->analyzeBranch(*this, TBB, FBB, Cond)) {
Dan Gohman0b44cb02009-12-05 00:32:59 +0000816 // If we couldn't analyze the branch, examine the last instruction.
817 // If the block doesn't end in a known control barrier, assume fallthrough
Chad Rosier1a1531d2012-01-26 18:24:25 +0000818 // is possible. The isPredicated check is needed because this code can be
Dan Gohman0b44cb02009-12-05 00:32:59 +0000819 // called during IfConversion, where an instruction which is normally a
Chad Rosier9b61cf32012-01-26 20:19:05 +0000820 // Barrier is predicated and thus no longer an actual control barrier.
Jan Sjodinf1a30f12017-03-31 15:55:37 +0000821 return (empty() || !back().isBarrier() || TII->isPredicated(back()))
822 ? &*Fallthrough
823 : nullptr;
Dan Gohman0b44cb02009-12-05 00:32:59 +0000824 }
Bob Wilson2d4ff122009-11-26 00:32:21 +0000825
826 // If there is no branch, control always falls through.
Jan Sjodinf1a30f12017-03-31 15:55:37 +0000827 if (!TBB) return &*Fallthrough;
Bob Wilson2d4ff122009-11-26 00:32:21 +0000828
829 // If there is some explicit branch to the fallthrough block, it can obviously
830 // reach, even though the branch should get folded to fall through implicitly.
831 if (MachineFunction::iterator(TBB) == Fallthrough ||
832 MachineFunction::iterator(FBB) == Fallthrough)
Jan Sjodinf1a30f12017-03-31 15:55:37 +0000833 return &*Fallthrough;
Bob Wilson2d4ff122009-11-26 00:32:21 +0000834
835 // If it's an unconditional branch to some block not the fall through, it
836 // doesn't fall through.
Jan Sjodinf1a30f12017-03-31 15:55:37 +0000837 if (Cond.empty()) return nullptr;
Bob Wilson2d4ff122009-11-26 00:32:21 +0000838
839 // Otherwise, if it is conditional and has no explicit false block, it falls
840 // through.
Jan Sjodinf1a30f12017-03-31 15:55:37 +0000841 return (FBB == nullptr) ? &*Fallthrough : nullptr;
842}
843
844bool MachineBasicBlock::canFallThrough() {
845 return getFallThrough() != nullptr;
Bob Wilson2d4ff122009-11-26 00:32:21 +0000846}
847
Quentin Colombet23341a82016-04-21 21:01:13 +0000848MachineBasicBlock *MachineBasicBlock::SplitCriticalEdge(MachineBasicBlock *Succ,
849 Pass &P) {
Quentin Colombet77e18782016-04-21 20:46:27 +0000850 if (!canSplitCriticalEdge(Succ))
Craig Topperc0196b12014-04-14 00:51:57 +0000851 return nullptr;
Evan Cheng2d14d8a2012-04-24 19:06:55 +0000852
Dan Gohman3570f812010-06-22 17:25:57 +0000853 MachineFunction *MF = getParent();
Cong Hou166e0852015-09-29 19:46:09 +0000854 DebugLoc DL; // FIXME: this is nowhere
Dan Gohman3570f812010-06-22 17:25:57 +0000855
Dan Gohman3570f812010-06-22 17:25:57 +0000856 MachineBasicBlock *NMBB = MF->CreateMachineBasicBlock();
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000857 MF->insert(std::next(MachineFunction::iterator(this)), NMBB);
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000858 LLVM_DEBUG(dbgs() << "Splitting critical edge: " << printMBBReference(*this)
859 << " -- " << printMBBReference(*NMBB) << " -- "
860 << printMBBReference(*Succ) << '\n');
Cameron Zwarichcdcab382013-02-12 03:49:20 +0000861
Quentin Colombet23341a82016-04-21 21:01:13 +0000862 LiveIntervals *LIS = P.getAnalysisIfAvailable<LiveIntervals>();
863 SlotIndexes *Indexes = P.getAnalysisIfAvailable<SlotIndexes>();
Cameron Zwarichcdcab382013-02-12 03:49:20 +0000864 if (LIS)
865 LIS->insertMBBInMaps(NMBB);
866 else if (Indexes)
Cameron Zwarich21beaf62013-02-10 23:29:54 +0000867 Indexes->insertMBBInMaps(NMBB);
Dan Gohman3570f812010-06-22 17:25:57 +0000868
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000869 // On some targets like Mips, branches may kill virtual registers. Make sure
870 // that LiveVariables is properly updated after updateTerminator replaces the
871 // terminators.
Quentin Colombet23341a82016-04-21 21:01:13 +0000872 LiveVariables *LV = P.getAnalysisIfAvailable<LiveVariables>();
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000873
874 // Collect a list of virtual registers killed by the terminators.
875 SmallVector<unsigned, 4> KilledRegs;
876 if (LV)
Evan Cheng7fae11b2011-12-14 02:11:42 +0000877 for (instr_iterator I = getFirstInstrTerminator(), E = instr_end();
Evan Cheng2a81dd42011-12-06 22:12:01 +0000878 I != E; ++I) {
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000879 MachineInstr *MI = &*I;
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000880 for (MachineInstr::mop_iterator OI = MI->operands_begin(),
881 OE = MI->operands_end(); OI != OE; ++OI) {
Lang Hamesedeea172012-02-09 05:59:36 +0000882 if (!OI->isReg() || OI->getReg() == 0 ||
883 !OI->isUse() || !OI->isKill() || OI->isUndef())
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000884 continue;
885 unsigned Reg = OI->getReg();
Lang Hamesedeea172012-02-09 05:59:36 +0000886 if (TargetRegisterInfo::isPhysicalRegister(Reg) ||
Duncan P. N. Exon Smithd26fdc82016-07-01 01:51:32 +0000887 LV->getVarInfo(Reg).removeKill(*MI)) {
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000888 KilledRegs.push_back(Reg);
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000889 LLVM_DEBUG(dbgs() << "Removing terminator kill: " << *MI);
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000890 OI->setIsKill(false);
891 }
892 }
893 }
894
Cameron Zwarichbfebb412013-02-17 00:10:44 +0000895 SmallVector<unsigned, 4> UsedRegs;
896 if (LIS) {
897 for (instr_iterator I = getFirstInstrTerminator(), E = instr_end();
898 I != E; ++I) {
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000899 MachineInstr *MI = &*I;
Cameron Zwarichbfebb412013-02-17 00:10:44 +0000900
901 for (MachineInstr::mop_iterator OI = MI->operands_begin(),
902 OE = MI->operands_end(); OI != OE; ++OI) {
903 if (!OI->isReg() || OI->getReg() == 0)
904 continue;
905
906 unsigned Reg = OI->getReg();
David Majnemer0d955d02016-08-11 22:21:41 +0000907 if (!is_contained(UsedRegs, Reg))
Cameron Zwarichbfebb412013-02-17 00:10:44 +0000908 UsedRegs.push_back(Reg);
909 }
910 }
911 }
912
Dan Gohman3570f812010-06-22 17:25:57 +0000913 ReplaceUsesOfBlockWith(Succ, NMBB);
Cameron Zwarichba378ce2013-02-11 09:24:45 +0000914
915 // If updateTerminator() removes instructions, we need to remove them from
916 // SlotIndexes.
917 SmallVector<MachineInstr*, 4> Terminators;
918 if (Indexes) {
919 for (instr_iterator I = getFirstInstrTerminator(), E = instr_end();
920 I != E; ++I)
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000921 Terminators.push_back(&*I);
Cameron Zwarichba378ce2013-02-11 09:24:45 +0000922 }
923
Dan Gohman3570f812010-06-22 17:25:57 +0000924 updateTerminator();
925
Cameron Zwarichba378ce2013-02-11 09:24:45 +0000926 if (Indexes) {
927 SmallVector<MachineInstr*, 4> NewTerminators;
928 for (instr_iterator I = getFirstInstrTerminator(), E = instr_end();
929 I != E; ++I)
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000930 NewTerminators.push_back(&*I);
Cameron Zwarichba378ce2013-02-11 09:24:45 +0000931
932 for (SmallVectorImpl<MachineInstr*>::iterator I = Terminators.begin(),
933 E = Terminators.end(); I != E; ++I) {
David Majnemer0d955d02016-08-11 22:21:41 +0000934 if (!is_contained(NewTerminators, *I))
935 Indexes->removeMachineInstrFromMaps(**I);
Cameron Zwarichba378ce2013-02-11 09:24:45 +0000936 }
937 }
938
Dan Gohman3570f812010-06-22 17:25:57 +0000939 // Insert unconditional "jump Succ" instruction in NMBB if necessary.
940 NMBB->addSuccessor(Succ);
941 if (!NMBB->isLayoutSuccessor(Succ)) {
Quentin Colombet77e18782016-04-21 20:46:27 +0000942 SmallVector<MachineOperand, 4> Cond;
943 const TargetInstrInfo *TII = getParent()->getSubtarget().getInstrInfo();
Matt Arsenaulte8e0f5c2016-09-14 17:24:15 +0000944 TII->insertBranch(*NMBB, Succ, nullptr, Cond, DL);
Cameron Zwarich21beaf62013-02-10 23:29:54 +0000945
946 if (Indexes) {
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000947 for (MachineInstr &MI : NMBB->instrs()) {
Cameron Zwarich21beaf62013-02-10 23:29:54 +0000948 // Some instructions may have been moved to NMBB by updateTerminator(),
949 // so we first remove any instruction that already has an index.
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000950 if (Indexes->hasIndex(MI))
951 Indexes->removeMachineInstrFromMaps(MI);
952 Indexes->insertMachineInstrInMaps(MI);
Cameron Zwarich21beaf62013-02-10 23:29:54 +0000953 }
954 }
Dan Gohman3570f812010-06-22 17:25:57 +0000955 }
956
957 // Fix PHI nodes in Succ so they refer to NMBB instead of this
Evan Cheng7fae11b2011-12-14 02:11:42 +0000958 for (MachineBasicBlock::instr_iterator
959 i = Succ->instr_begin(),e = Succ->instr_end();
960 i != e && i->isPHI(); ++i)
Dan Gohman3570f812010-06-22 17:25:57 +0000961 for (unsigned ni = 1, ne = i->getNumOperands(); ni != ne; ni += 2)
962 if (i->getOperand(ni+1).getMBB() == this)
963 i->getOperand(ni+1).setMBB(NMBB);
964
Jakob Stoklund Olesen06b6ccf2011-10-14 17:25:46 +0000965 // Inherit live-ins from the successor
Matthias Braund9da1622015-09-09 18:08:03 +0000966 for (const auto &LI : Succ->liveins())
Matthias Braunb2b7ef12015-08-24 22:59:52 +0000967 NMBB->addLiveIn(LI);
Jakob Stoklund Olesen06b6ccf2011-10-14 17:25:46 +0000968
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000969 // Update LiveVariables.
Eric Christopherfc6de422014-08-05 02:39:49 +0000970 const TargetRegisterInfo *TRI = MF->getSubtarget().getRegisterInfo();
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000971 if (LV) {
972 // Restore kills of virtual registers that were killed by the terminators.
973 while (!KilledRegs.empty()) {
974 unsigned Reg = KilledRegs.pop_back_val();
Evan Cheng7fae11b2011-12-14 02:11:42 +0000975 for (instr_iterator I = instr_end(), E = instr_begin(); I != E;) {
Lang Hamesedeea172012-02-09 05:59:36 +0000976 if (!(--I)->addRegisterKilled(Reg, TRI, /* addIfNotFound= */ false))
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000977 continue;
Lang Hamesedeea172012-02-09 05:59:36 +0000978 if (TargetRegisterInfo::isVirtualRegister(Reg))
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +0000979 LV->getVarInfo(Reg).Kills.push_back(&*I);
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000980 LLVM_DEBUG(dbgs() << "Restored terminator kill: " << *I);
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000981 break;
982 }
983 }
984 // Update relevant live-through information.
Dan Gohman3570f812010-06-22 17:25:57 +0000985 LV->addNewBlock(NMBB, this, Succ);
Jakob Stoklund Olesendd6fcc42011-05-29 20:10:28 +0000986 }
Dan Gohman3570f812010-06-22 17:25:57 +0000987
Cameron Zwarichcdcab382013-02-12 03:49:20 +0000988 if (LIS) {
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000989 // After splitting the edge and updating SlotIndexes, live intervals may be
990 // in one of two situations, depending on whether this block was the last in
Cong Hou2793e722015-08-10 22:27:10 +0000991 // the function. If the original block was the last in the function, all
992 // live intervals will end prior to the beginning of the new split block. If
993 // the original block was not at the end of the function, all live intervals
994 // will extend to the end of the new split block.
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000995
996 bool isLastMBB =
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000997 std::next(MachineFunction::iterator(NMBB)) == getParent()->end();
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000998
999 SlotIndex StartIndex = Indexes->getMBBEndIdx(this);
1000 SlotIndex PrevIndex = StartIndex.getPrevSlot();
1001 SlotIndex EndIndex = Indexes->getMBBEndIdx(NMBB);
1002
1003 // Find the registers used from NMBB in PHIs in Succ.
1004 SmallSet<unsigned, 8> PHISrcRegs;
1005 for (MachineBasicBlock::instr_iterator
1006 I = Succ->instr_begin(), E = Succ->instr_end();
1007 I != E && I->isPHI(); ++I) {
1008 for (unsigned ni = 1, ne = I->getNumOperands(); ni != ne; ni += 2) {
1009 if (I->getOperand(ni+1).getMBB() == NMBB) {
1010 MachineOperand &MO = I->getOperand(ni);
1011 unsigned Reg = MO.getReg();
1012 PHISrcRegs.insert(Reg);
Cameron Zwarichaf349312013-02-12 03:49:17 +00001013 if (MO.isUndef())
1014 continue;
Cameron Zwarichb47fb382013-02-11 09:24:47 +00001015
1016 LiveInterval &LI = LIS->getInterval(Reg);
1017 VNInfo *VNI = LI.getVNInfoAt(PrevIndex);
Cong Hou2793e722015-08-10 22:27:10 +00001018 assert(VNI &&
1019 "PHI sources should be live out of their predecessors.");
Matthias Braun13ddb7c2013-10-10 21:28:43 +00001020 LI.addSegment(LiveInterval::Segment(StartIndex, EndIndex, VNI));
Cameron Zwarichb47fb382013-02-11 09:24:47 +00001021 }
1022 }
1023 }
1024
1025 MachineRegisterInfo *MRI = &getParent()->getRegInfo();
1026 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
1027 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
1028 if (PHISrcRegs.count(Reg) || !LIS->hasInterval(Reg))
1029 continue;
1030
1031 LiveInterval &LI = LIS->getInterval(Reg);
1032 if (!LI.liveAt(PrevIndex))
1033 continue;
1034
Cameron Zwarichaf349312013-02-12 03:49:17 +00001035 bool isLiveOut = LI.liveAt(LIS->getMBBStartIdx(Succ));
Cameron Zwarichb47fb382013-02-11 09:24:47 +00001036 if (isLiveOut && isLastMBB) {
1037 VNInfo *VNI = LI.getVNInfoAt(PrevIndex);
1038 assert(VNI && "LiveInterval should have VNInfo where it is live.");
Matthias Braun13ddb7c2013-10-10 21:28:43 +00001039 LI.addSegment(LiveInterval::Segment(StartIndex, EndIndex, VNI));
Cameron Zwarichb47fb382013-02-11 09:24:47 +00001040 } else if (!isLiveOut && !isLastMBB) {
Matthias Braun13ddb7c2013-10-10 21:28:43 +00001041 LI.removeSegment(StartIndex, EndIndex);
Cameron Zwarichb47fb382013-02-11 09:24:47 +00001042 }
1043 }
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001044
1045 // Update all intervals for registers whose uses may have been modified by
1046 // updateTerminator().
Cameron Zwarich24955962013-02-17 11:09:00 +00001047 LIS->repairIntervalsInRange(this, getFirstTerminator(), end(), UsedRegs);
Cameron Zwarichb47fb382013-02-11 09:24:47 +00001048 }
1049
Dan Gohman3570f812010-06-22 17:25:57 +00001050 if (MachineDominatorTree *MDT =
Quentin Colombet23341a82016-04-21 21:01:13 +00001051 P.getAnalysisIfAvailable<MachineDominatorTree>())
Quentin Colombetabea99f2014-08-13 21:00:07 +00001052 MDT->recordSplitCriticalEdge(this, Succ, NMBB);
Dan Gohman3570f812010-06-22 17:25:57 +00001053
Quentin Colombet23341a82016-04-21 21:01:13 +00001054 if (MachineLoopInfo *MLI = P.getAnalysisIfAvailable<MachineLoopInfo>())
Dan Gohman3570f812010-06-22 17:25:57 +00001055 if (MachineLoop *TIL = MLI->getLoopFor(this)) {
1056 // If one or the other blocks were not in a loop, the new block is not
1057 // either, and thus LI doesn't need to be updated.
1058 if (MachineLoop *DestLoop = MLI->getLoopFor(Succ)) {
1059 if (TIL == DestLoop) {
1060 // Both in the same loop, the NMBB joins loop.
1061 DestLoop->addBasicBlockToLoop(NMBB, MLI->getBase());
1062 } else if (TIL->contains(DestLoop)) {
1063 // Edge from an outer loop to an inner loop. Add to the outer loop.
1064 TIL->addBasicBlockToLoop(NMBB, MLI->getBase());
1065 } else if (DestLoop->contains(TIL)) {
1066 // Edge from an inner loop to an outer loop. Add to the outer loop.
1067 DestLoop->addBasicBlockToLoop(NMBB, MLI->getBase());
1068 } else {
1069 // Edge from two loops with no containment relation. Because these
1070 // are natural loops, we know that the destination block must be the
1071 // header of its loop (adding a branch into a loop elsewhere would
1072 // create an irreducible loop).
1073 assert(DestLoop->getHeader() == Succ &&
1074 "Should not create irreducible loops!");
1075 if (MachineLoop *P = DestLoop->getParentLoop())
1076 P->addBasicBlockToLoop(NMBB, MLI->getBase());
1077 }
1078 }
1079 }
1080
1081 return NMBB;
1082}
1083
Quentin Colombet77e18782016-04-21 20:46:27 +00001084bool MachineBasicBlock::canSplitCriticalEdge(
1085 const MachineBasicBlock *Succ) const {
1086 // Splitting the critical edge to a landing pad block is non-trivial. Don't do
1087 // it in this generic function.
1088 if (Succ->isEHPad())
1089 return false;
1090
1091 const MachineFunction *MF = getParent();
1092
1093 // Performance might be harmed on HW that implements branching using exec mask
1094 // where both sides of the branches are always executed.
1095 if (MF->getTarget().requiresStructuredCFG())
1096 return false;
1097
1098 // We may need to update this's terminator, but we can't do that if
1099 // AnalyzeBranch fails. If this uses a jump table, we won't touch it.
1100 const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo();
1101 MachineBasicBlock *TBB = nullptr, *FBB = nullptr;
1102 SmallVector<MachineOperand, 4> Cond;
1103 // AnalyzeBanch should modify this, since we did not allow modification.
Jacques Pienaar71c30a12016-07-15 14:41:04 +00001104 if (TII->analyzeBranch(*const_cast<MachineBasicBlock *>(this), TBB, FBB, Cond,
Quentin Colombet77e18782016-04-21 20:46:27 +00001105 /*AllowModify*/ false))
1106 return false;
1107
1108 // Avoid bugpoint weirdness: A block may end with a conditional branch but
1109 // jumps to the same MBB is either case. We have duplicate CFG edges in that
1110 // case that we can't handle. Since this never happens in properly optimized
1111 // code, just skip those edges.
1112 if (TBB && TBB == FBB) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001113 LLVM_DEBUG(dbgs() << "Won't split critical edge after degenerate "
1114 << printMBBReference(*this) << '\n');
Quentin Colombet77e18782016-04-21 20:46:27 +00001115 return false;
1116 }
1117 return true;
1118}
1119
Jakob Stoklund Olesenccfb5fb2012-12-17 23:55:38 +00001120/// Prepare MI to be removed from its bundle. This fixes bundle flags on MI's
1121/// neighboring instructions so the bundle won't be broken by removing MI.
1122static void unbundleSingleMI(MachineInstr *MI) {
1123 // Removing the first instruction in a bundle.
1124 if (MI->isBundledWithSucc() && !MI->isBundledWithPred())
1125 MI->unbundleFromSucc();
1126 // Removing the last instruction in a bundle.
1127 if (MI->isBundledWithPred() && !MI->isBundledWithSucc())
1128 MI->unbundleFromPred();
1129 // If MI is not bundled, or if it is internal to a bundle, the neighbor flags
1130 // are already fine.
Evan Cheng7fae11b2011-12-14 02:11:42 +00001131}
1132
Jakob Stoklund Olesenccfb5fb2012-12-17 23:55:38 +00001133MachineBasicBlock::instr_iterator
1134MachineBasicBlock::erase(MachineBasicBlock::instr_iterator I) {
Duncan P. N. Exon Smith0ac8eb92015-10-09 19:23:20 +00001135 unbundleSingleMI(&*I);
Jakob Stoklund Olesenccfb5fb2012-12-17 23:55:38 +00001136 return Insts.erase(I);
1137}
Evan Cheng7fae11b2011-12-14 02:11:42 +00001138
Jakob Stoklund Olesenccfb5fb2012-12-17 23:55:38 +00001139MachineInstr *MachineBasicBlock::remove_instr(MachineInstr *MI) {
1140 unbundleSingleMI(MI);
1141 MI->clearFlag(MachineInstr::BundledPred);
1142 MI->clearFlag(MachineInstr::BundledSucc);
1143 return Insts.remove(MI);
Evan Cheng7fae11b2011-12-14 02:11:42 +00001144}
1145
Jakob Stoklund Olesen422e07b2012-12-18 17:54:53 +00001146MachineBasicBlock::instr_iterator
1147MachineBasicBlock::insert(instr_iterator I, MachineInstr *MI) {
1148 assert(!MI->isBundledWithPred() && !MI->isBundledWithSucc() &&
1149 "Cannot insert instruction with bundle flags");
1150 // Set the bundle flags when inserting inside a bundle.
1151 if (I != instr_end() && I->isBundledWithPred()) {
1152 MI->setFlag(MachineInstr::BundledPred);
1153 MI->setFlag(MachineInstr::BundledSucc);
1154 }
1155 return Insts.insert(I, MI);
1156}
1157
Cong Hou2a02c1c2015-08-12 21:18:54 +00001158/// This method unlinks 'this' from the containing function, and returns it, but
1159/// does not delete it.
Dan Gohman3b460302008-07-07 23:14:23 +00001160MachineBasicBlock *MachineBasicBlock::removeFromParent() {
1161 assert(getParent() && "Not embedded in a function!");
1162 getParent()->remove(this);
1163 return this;
1164}
1165
Cong Hou2a02c1c2015-08-12 21:18:54 +00001166/// This method unlinks 'this' from the containing function, and deletes it.
Dan Gohman3b460302008-07-07 23:14:23 +00001167void MachineBasicBlock::eraseFromParent() {
1168 assert(getParent() && "Not embedded in a function!");
1169 getParent()->erase(this);
1170}
1171
Cong Hou2a02c1c2015-08-12 21:18:54 +00001172/// Given a machine basic block that branched to 'Old', change the code and CFG
1173/// so that it branches to 'New' instead.
Evan Chengdf757852007-06-04 06:44:01 +00001174void MachineBasicBlock::ReplaceUsesOfBlockWith(MachineBasicBlock *Old,
1175 MachineBasicBlock *New) {
1176 assert(Old != New && "Cannot replace self with self!");
1177
Evan Cheng7fae11b2011-12-14 02:11:42 +00001178 MachineBasicBlock::instr_iterator I = instr_end();
1179 while (I != instr_begin()) {
Evan Chengdf757852007-06-04 06:44:01 +00001180 --I;
Evan Cheng7f8e5632011-12-07 07:15:52 +00001181 if (!I->isTerminator()) break;
Evan Chengdf757852007-06-04 06:44:01 +00001182
1183 // Scan the operands of this machine instruction, replacing any uses of Old
1184 // with New.
1185 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
Dan Gohman0d1e9a82008-10-03 15:45:36 +00001186 if (I->getOperand(i).isMBB() &&
Dan Gohman38453ee2008-09-13 17:58:21 +00001187 I->getOperand(i).getMBB() == Old)
Chris Lattnera5bb3702007-12-30 23:10:15 +00001188 I->getOperand(i).setMBB(New);
Evan Chengdf757852007-06-04 06:44:01 +00001189 }
1190
Dan Gohmanbb2f1072009-05-05 21:10:19 +00001191 // Update the successor information.
Jakub Staszak12a43bd2011-06-16 20:22:37 +00001192 replaceSuccessor(Old, New);
Evan Chengdf757852007-06-04 06:44:01 +00001193}
1194
Cong Hou2a02c1c2015-08-12 21:18:54 +00001195/// Various pieces of code can cause excess edges in the CFG to be inserted. If
1196/// we have proven that MBB can only branch to DestA and DestB, remove any other
1197/// MBB successors from the CFG. DestA and DestB can be null.
Jakub Staszakfeadd432011-06-16 18:01:17 +00001198///
Chris Lattner574e7162007-12-31 04:56:33 +00001199/// Besides DestA and DestB, retain other edges leading to LandingPads
1200/// (currently there can be only one; we don't check or require that here).
Evan Cheng2afd7022007-06-18 22:43:58 +00001201/// Note it is possible that DestA and/or DestB are LandingPads.
1202bool MachineBasicBlock::CorrectExtraCFGEdges(MachineBasicBlock *DestA,
1203 MachineBasicBlock *DestB,
Cong Hou166e0852015-09-29 19:46:09 +00001204 bool IsCond) {
Bill Wendling2d5967d2009-12-16 00:08:36 +00001205 // The values of DestA and DestB frequently come from a call to the
1206 // 'TargetInstrInfo::AnalyzeBranch' method. We take our meaning of the initial
1207 // values from there.
1208 //
1209 // 1. If both DestA and DestB are null, then the block ends with no branches
1210 // (it falls through to its successor).
Cong Hou166e0852015-09-29 19:46:09 +00001211 // 2. If DestA is set, DestB is null, and IsCond is false, then the block ends
Bill Wendling2d5967d2009-12-16 00:08:36 +00001212 // with only an unconditional branch.
Cong Hou166e0852015-09-29 19:46:09 +00001213 // 3. If DestA is set, DestB is null, and IsCond is true, then the block ends
Bill Wendling2d5967d2009-12-16 00:08:36 +00001214 // with a conditional branch that falls through to a successor (DestB).
Cong Hou166e0852015-09-29 19:46:09 +00001215 // 4. If DestA and DestB is set and IsCond is true, then the block ends with a
Bill Wendling2d5967d2009-12-16 00:08:36 +00001216 // conditional branch followed by an unconditional branch. DestA is the
1217 // 'true' destination and DestB is the 'false' destination.
1218
Bill Wendling95643402010-04-01 00:00:43 +00001219 bool Changed = false;
Evan Cheng2afd7022007-06-18 22:43:58 +00001220
Duncan P. N. Exon Smith41cf73c2016-08-16 21:46:03 +00001221 MachineBasicBlock *FallThru = getNextNode();
Bill Wendling95643402010-04-01 00:00:43 +00001222
Craig Topperc0196b12014-04-14 00:51:57 +00001223 if (!DestA && !DestB) {
Bill Wendling95643402010-04-01 00:00:43 +00001224 // Block falls through to successor.
Duncan P. N. Exon Smith41cf73c2016-08-16 21:46:03 +00001225 DestA = FallThru;
1226 DestB = FallThru;
Craig Topperc0196b12014-04-14 00:51:57 +00001227 } else if (DestA && !DestB) {
Cong Hou166e0852015-09-29 19:46:09 +00001228 if (IsCond)
Bill Wendling95643402010-04-01 00:00:43 +00001229 // Block ends in conditional jump that falls through to successor.
Duncan P. N. Exon Smith41cf73c2016-08-16 21:46:03 +00001230 DestB = FallThru;
Evan Cheng2afd7022007-06-18 22:43:58 +00001231 } else {
Cong Hou166e0852015-09-29 19:46:09 +00001232 assert(DestA && DestB && IsCond &&
Bill Wendling95643402010-04-01 00:00:43 +00001233 "CFG in a bad state. Cannot correct CFG edges");
Evan Cheng2afd7022007-06-18 22:43:58 +00001234 }
Bill Wendling95643402010-04-01 00:00:43 +00001235
1236 // Remove superfluous edges. I.e., those which aren't destinations of this
1237 // basic block, duplicate edges, or landing pads.
1238 SmallPtrSet<const MachineBasicBlock*, 8> SeenMBBs;
Evan Cheng2afd7022007-06-18 22:43:58 +00001239 MachineBasicBlock::succ_iterator SI = succ_begin();
Evan Cheng2afd7022007-06-18 22:43:58 +00001240 while (SI != succ_end()) {
Bill Wendling2d5967d2009-12-16 00:08:36 +00001241 const MachineBasicBlock *MBB = *SI;
David Blaikie70573dc2014-11-19 07:49:26 +00001242 if (!SeenMBBs.insert(MBB).second ||
Reid Kleckner0e288232015-08-27 23:27:47 +00001243 (MBB != DestA && MBB != DestB && !MBB->isEHPad())) {
Bill Wendling95643402010-04-01 00:00:43 +00001244 // This is a superfluous edge, remove it.
Bill Wendlingfa9810d2010-03-31 23:26:26 +00001245 SI = removeSuccessor(SI);
Bill Wendling95643402010-04-01 00:00:43 +00001246 Changed = true;
1247 } else {
1248 ++SI;
Evan Cheng2afd7022007-06-18 22:43:58 +00001249 }
1250 }
Bill Wendling2d5967d2009-12-16 00:08:36 +00001251
Cong Houc1069892015-12-13 09:26:17 +00001252 if (Changed)
1253 normalizeSuccProbs();
Bill Wendling95643402010-04-01 00:00:43 +00001254 return Changed;
Evan Cheng2afd7022007-06-18 22:43:58 +00001255}
Evan Cheng57be2f22009-11-17 19:19:59 +00001256
Cong Hou2a02c1c2015-08-12 21:18:54 +00001257/// Find the next valid DebugLoc starting at MBBI, skipping any DBG_VALUE
1258/// instructions. Return UnknownLoc if there is none.
Dale Johannesenc5db5992010-01-20 21:36:02 +00001259DebugLoc
Evan Cheng7fae11b2011-12-14 02:11:42 +00001260MachineBasicBlock::findDebugLoc(instr_iterator MBBI) {
Evan Cheng2a81dd42011-12-06 22:12:01 +00001261 // Skip debug declarations, we don't want a DebugLoc from them.
Florian Hahn3c8b8c92016-12-16 11:10:26 +00001262 MBBI = skipDebugInstructionsForward(MBBI, instr_end());
1263 if (MBBI != instr_end())
1264 return MBBI->getDebugLoc();
1265 return {};
Dale Johannesenc5db5992010-01-20 21:36:02 +00001266}
1267
Derek Schuff10b31352018-03-15 22:06:51 +00001268/// Find the previous valid DebugLoc preceding MBBI, skipping and DBG_VALUE
1269/// instructions. Return UnknownLoc if there is none.
1270DebugLoc MachineBasicBlock::findPrevDebugLoc(instr_iterator MBBI) {
1271 if (MBBI == instr_begin()) return {};
1272 // Skip debug declarations, we don't want a DebugLoc from them.
1273 MBBI = skipDebugInstructionsBackward(std::prev(MBBI), instr_begin());
Shiva Chen801bf7e2018-05-09 02:42:00 +00001274 if (!MBBI->isDebugInstr()) return MBBI->getDebugLoc();
Derek Schuff10b31352018-03-15 22:06:51 +00001275 return {};
1276}
1277
Taewook Oh06a21282017-02-13 18:15:31 +00001278/// Find and return the merged DebugLoc of the branch instructions of the block.
1279/// Return UnknownLoc if there is none.
1280DebugLoc
1281MachineBasicBlock::findBranchDebugLoc() {
Taewook Oh4d35f9e2017-02-13 21:12:27 +00001282 DebugLoc DL;
Taewook Oh06a21282017-02-13 18:15:31 +00001283 auto TI = getFirstTerminator();
1284 while (TI != end() && !TI->isBranch())
1285 ++TI;
1286
1287 if (TI != end()) {
1288 DL = TI->getDebugLoc();
1289 for (++TI ; TI != end() ; ++TI)
1290 if (TI->isBranch())
1291 DL = DILocation::getMergedLocation(DL, TI->getDebugLoc());
1292 }
1293 return DL;
1294}
1295
Cong Houd97c1002015-12-01 05:29:22 +00001296/// Return probability of the edge from this block to MBB.
Cong Hou23a3bf02015-11-04 21:37:58 +00001297BranchProbability
1298MachineBasicBlock::getSuccProbability(const_succ_iterator Succ) const {
Cong Hou4aef7ef2015-12-01 11:05:39 +00001299 if (Probs.empty())
Cong Hou23a3bf02015-11-04 21:37:58 +00001300 return BranchProbability(1, succ_size());
1301
Cong Hou4aef7ef2015-12-01 11:05:39 +00001302 const auto &Prob = *getProbabilityIterator(Succ);
1303 if (Prob.isUnknown()) {
1304 // For unknown probabilities, collect the sum of all known ones, and evenly
1305 // ditribute the complemental of the sum to each unknown probability.
1306 unsigned KnownProbNum = 0;
1307 auto Sum = BranchProbability::getZero();
1308 for (auto &P : Probs) {
1309 if (!P.isUnknown()) {
1310 Sum += P;
1311 KnownProbNum++;
1312 }
1313 }
1314 return Sum.getCompl() / (Probs.size() - KnownProbNum);
1315 } else
1316 return Prob;
Manman Renb6819182014-01-29 23:18:47 +00001317}
1318
Cong Hou23a3bf02015-11-04 21:37:58 +00001319/// Set successor probability of a given iterator.
1320void MachineBasicBlock::setSuccProbability(succ_iterator I,
1321 BranchProbability Prob) {
1322 assert(!Prob.isUnknown());
Cong Houd97c1002015-12-01 05:29:22 +00001323 if (Probs.empty())
Cong Hou23a3bf02015-11-04 21:37:58 +00001324 return;
1325 *getProbabilityIterator(I) = Prob;
Cong Hou23a3bf02015-11-04 21:37:58 +00001326}
1327
Hans Wennborg1dbaf672015-12-01 03:49:42 +00001328/// Return probability iterator corresonding to the I successor iterator
1329MachineBasicBlock::const_probability_iterator
1330MachineBasicBlock::getProbabilityIterator(
1331 MachineBasicBlock::const_succ_iterator I) const {
Cong Houfa1917c2015-12-01 00:02:51 +00001332 assert(Probs.size() == Successors.size() && "Async probability list!");
1333 const size_t index = std::distance(Successors.begin(), I);
1334 assert(index < Probs.size() && "Not a current successor!");
1335 return Probs.begin() + index;
1336}
1337
Cong Houd97c1002015-12-01 05:29:22 +00001338/// Return probability iterator corresonding to the I successor iterator.
1339MachineBasicBlock::probability_iterator
1340MachineBasicBlock::getProbabilityIterator(MachineBasicBlock::succ_iterator I) {
1341 assert(Probs.size() == Successors.size() && "Async probability list!");
1342 const size_t index = std::distance(Successors.begin(), I);
1343 assert(index < Probs.size() && "Not a current successor!");
1344 return Probs.begin() + index;
1345}
1346
James Molloyc747cda2012-09-12 10:18:23 +00001347/// Return whether (physical) register "Reg" has been <def>ined and not <kill>ed
1348/// as of just before "MI".
Junmo Park12386102016-01-07 10:26:32 +00001349///
James Molloyc747cda2012-09-12 10:18:23 +00001350/// Search is localised to a neighborhood of
1351/// Neighborhood instructions before (searching for defs or kills) and N
1352/// instructions after (searching just for defs) MI.
1353MachineBasicBlock::LivenessQueryResult
1354MachineBasicBlock::computeRegisterLiveness(const TargetRegisterInfo *TRI,
Matthias Braun07a07ba2015-05-27 05:12:39 +00001355 unsigned Reg, const_iterator Before,
1356 unsigned Neighborhood) const {
James Molloyc747cda2012-09-12 10:18:23 +00001357 unsigned N = Neighborhood;
James Molloyc747cda2012-09-12 10:18:23 +00001358
Matthias Braun07a07ba2015-05-27 05:12:39 +00001359 // Start by searching backwards from Before, looking for kills, reads or defs.
1360 const_iterator I(Before);
James Molloyc747cda2012-09-12 10:18:23 +00001361 // If this is the first insn in the block, don't search backwards.
Matthias Braun07a07ba2015-05-27 05:12:39 +00001362 if (I != begin()) {
James Molloyc747cda2012-09-12 10:18:23 +00001363 do {
1364 --I;
1365
Matthias Braun60d69e22015-12-11 19:42:09 +00001366 MachineOperandIteratorBase::PhysRegInfo Info =
Duncan P. N. Exon Smithf9ab4162016-02-27 17:05:33 +00001367 ConstMIOperands(*I).analyzePhysReg(Reg, TRI);
James Molloyc747cda2012-09-12 10:18:23 +00001368
Matthias Braun60d69e22015-12-11 19:42:09 +00001369 // Defs happen after uses so they take precedence if both are present.
Tim Northoverdd219d02012-11-20 09:56:11 +00001370
Matthias Braun60d69e22015-12-11 19:42:09 +00001371 // Register is dead after a dead def of the full register.
1372 if (Info.DeadDef)
James Molloyc747cda2012-09-12 10:18:23 +00001373 return LQR_Dead;
Matthias Braun60d69e22015-12-11 19:42:09 +00001374 // Register is (at least partially) live after a def.
Quentin Colombet08e79992016-04-26 23:14:29 +00001375 if (Info.Defined) {
1376 if (!Info.PartialDeadDef)
1377 return LQR_Live;
1378 // As soon as we saw a partial definition (dead or not),
1379 // we cannot tell if the value is partial live without
1380 // tracking the lanemasks. We are not going to do this,
1381 // so fall back on the remaining of the analysis.
1382 break;
1383 }
Matthias Braun60d69e22015-12-11 19:42:09 +00001384 // Register is dead after a full kill or clobber and no def.
1385 if (Info.Killed || Info.Clobbered)
1386 return LQR_Dead;
1387 // Register must be live if we read it.
1388 if (Info.Read)
1389 return LQR_Live;
Matthias Braun07a07ba2015-05-27 05:12:39 +00001390 } while (I != begin() && --N > 0);
James Molloyc747cda2012-09-12 10:18:23 +00001391 }
1392
1393 // Did we get to the start of the block?
Matthias Braun07a07ba2015-05-27 05:12:39 +00001394 if (I == begin()) {
James Molloyc747cda2012-09-12 10:18:23 +00001395 // If so, the register's state is definitely defined by the live-in state.
Matthias Braun60d69e22015-12-11 19:42:09 +00001396 for (MCRegAliasIterator RAI(Reg, TRI, /*IncludeSelf=*/true); RAI.isValid();
1397 ++RAI)
Matthias Braun07a07ba2015-05-27 05:12:39 +00001398 if (isLiveIn(*RAI))
Matthias Braun60d69e22015-12-11 19:42:09 +00001399 return LQR_Live;
James Molloyc747cda2012-09-12 10:18:23 +00001400
1401 return LQR_Dead;
1402 }
1403
1404 N = Neighborhood;
1405
Matthias Braun07a07ba2015-05-27 05:12:39 +00001406 // Try searching forwards from Before, looking for reads or defs.
1407 I = const_iterator(Before);
James Molloyc747cda2012-09-12 10:18:23 +00001408 // If this is the last insn in the block, don't search forwards.
Matthias Braun07a07ba2015-05-27 05:12:39 +00001409 if (I != end()) {
1410 for (++I; I != end() && N > 0; ++I, --N) {
Matthias Braun60d69e22015-12-11 19:42:09 +00001411 MachineOperandIteratorBase::PhysRegInfo Info =
Duncan P. N. Exon Smithf9ab4162016-02-27 17:05:33 +00001412 ConstMIOperands(*I).analyzePhysReg(Reg, TRI);
James Molloyc747cda2012-09-12 10:18:23 +00001413
Matthias Braun60d69e22015-12-11 19:42:09 +00001414 // Register is live when we read it here.
1415 if (Info.Read)
1416 return LQR_Live;
1417 // Register is dead if we can fully overwrite or clobber it here.
1418 if (Info.FullyDefined || Info.Clobbered)
James Molloyc747cda2012-09-12 10:18:23 +00001419 return LQR_Dead;
1420 }
1421 }
1422
1423 // At this point we have no idea of the liveness of the register.
1424 return LQR_Unknown;
1425}
Reid Klecknerb8fd1622015-11-06 17:06:38 +00001426
1427const uint32_t *
1428MachineBasicBlock::getBeginClobberMask(const TargetRegisterInfo *TRI) const {
1429 // EH funclet entry does not preserve any registers.
1430 return isEHFuncletEntry() ? TRI->getNoPreservedMask() : nullptr;
1431}
1432
1433const uint32_t *
1434MachineBasicBlock::getEndClobberMask(const TargetRegisterInfo *TRI) const {
1435 // If we see a return block with successors, this must be a funclet return,
1436 // which does not preserve any registers. If there are no successors, we don't
1437 // care what kind of return it is, putting a mask after it is a no-op.
1438 return isReturnBlock() && !succ_empty() ? TRI->getNoPreservedMask() : nullptr;
1439}
Matthias Braun18198302016-12-16 23:55:37 +00001440
1441void MachineBasicBlock::clearLiveIns() {
1442 LiveIns.clear();
1443}
Matthias Braun11723322017-01-05 20:01:19 +00001444
1445MachineBasicBlock::livein_iterator MachineBasicBlock::livein_begin() const {
1446 assert(getParent()->getProperties().hasProperty(
1447 MachineFunctionProperties::Property::TracksLiveness) &&
1448 "Liveness information is accurate");
1449 return LiveIns.begin();
1450}