blob: d351db59e69000c1cf82e87df39a7c20ace4e88c [file] [log] [blame]
Alkis Evlogimenosaad5c052004-02-16 07:17:43 +00001//===-- llvm/CodeGen/MachineBasicBlock.cpp ----------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-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 Evlogimenosaad5c052004-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"
Alkis Evlogimenosaad5c052004-02-16 07:17:43 +000015#include "llvm/BasicBlock.h"
Dan Gohman853d3fb2010-06-22 17:25:57 +000016#include "llvm/CodeGen/LiveVariables.h"
17#include "llvm/CodeGen/MachineDominators.h"
Alkis Evlogimenosaad5c052004-02-16 07:17:43 +000018#include "llvm/CodeGen/MachineFunction.h"
Dan Gohman853d3fb2010-06-22 17:25:57 +000019#include "llvm/CodeGen/MachineLoopInfo.h"
Chris Lattnerf71cb012010-01-26 04:55:51 +000020#include "llvm/MC/MCAsmInfo.h"
21#include "llvm/MC/MCContext.h"
Bill Wendling43cf6c32009-12-15 00:39:24 +000022#include "llvm/Target/TargetRegisterInfo.h"
Owen Anderson07000c62006-05-12 06:33:49 +000023#include "llvm/Target/TargetData.h"
Chris Lattnerf14cf852008-01-07 07:42:25 +000024#include "llvm/Target/TargetInstrDesc.h"
Jim Grosbach7707a0d2009-11-12 03:55:33 +000025#include "llvm/Target/TargetInstrInfo.h"
Alkis Evlogimenos743d0a12004-02-23 18:14:48 +000026#include "llvm/Target/TargetMachine.h"
Chris Lattnerf71cb012010-01-26 04:55:51 +000027#include "llvm/Assembly/Writer.h"
28#include "llvm/ADT/SmallString.h"
Bill Wendlinge543d162010-04-01 00:00:43 +000029#include "llvm/ADT/SmallPtrSet.h"
David Greenedbdbbd92010-01-04 23:22:07 +000030#include "llvm/Support/Debug.h"
Dan Gohman2c3f7ae2008-07-17 23:49:46 +000031#include "llvm/Support/LeakDetector.h"
Daniel Dunbar1cd1d982009-07-24 10:36:58 +000032#include "llvm/Support/raw_ostream.h"
Chris Lattner52c09d72004-10-26 15:43:42 +000033#include <algorithm>
Alkis Evlogimenosaad5c052004-02-16 07:17:43 +000034using namespace llvm;
35
Dan Gohman8e5f2c62008-07-07 23:14:23 +000036MachineBasicBlock::MachineBasicBlock(MachineFunction &mf, const BasicBlock *bb)
Dan Gohman8c2b5252009-10-30 01:27:03 +000037 : BB(bb), Number(-1), xParent(&mf), Alignment(0), IsLandingPad(false),
38 AddressTaken(false) {
Dan Gohmanfed90b62008-07-28 21:51:04 +000039 Insts.Parent = this;
Tanya Lattner17fb34b2004-05-24 07:14:35 +000040}
Tanya Lattner17fb34b2004-05-24 07:14:35 +000041
Dan Gohman2c3f7ae2008-07-17 23:49:46 +000042MachineBasicBlock::~MachineBasicBlock() {
43 LeakDetector::removeGarbageObject(this);
44}
45
Chris Lattnerf71cb012010-01-26 04:55:51 +000046/// getSymbol - Return the MCSymbol for this basic block.
47///
Chris Lattner1b2eb0e2010-03-13 21:04:28 +000048MCSymbol *MachineBasicBlock::getSymbol() const {
Chris Lattnerf71cb012010-01-26 04:55:51 +000049 const MachineFunction *MF = getParent();
Chris Lattner1b2eb0e2010-03-13 21:04:28 +000050 MCContext &Ctx = MF->getContext();
51 const char *Prefix = Ctx.getAsmInfo().getPrivateGlobalPrefix();
Chris Lattner9b97a732010-03-30 18:10:53 +000052 return Ctx.GetOrCreateSymbol(Twine(Prefix) + "BB" +
53 Twine(MF->getFunctionNumber()) + "_" +
54 Twine(getNumber()));
Chris Lattnerf71cb012010-01-26 04:55:51 +000055}
56
57
Chris Lattner6371ed52009-08-23 00:35:30 +000058raw_ostream &llvm::operator<<(raw_ostream &OS, const MachineBasicBlock &MBB) {
Daniel Dunbar1cd1d982009-07-24 10:36:58 +000059 MBB.print(OS);
60 return OS;
61}
Tanya Lattner17fb34b2004-05-24 07:14:35 +000062
Chris Lattner62ed6b92008-01-01 01:12:31 +000063/// addNodeToList (MBB) - When an MBB is added to an MF, we need to update the
64/// parent pointer of the MBB, the MBB numbering, and any instructions in the
65/// MBB to be on the right operand list for registers.
66///
67/// MBBs start out as #-1. When a MBB is added to a MachineFunction, it
68/// gets the next available unique MBB number. If it is removed from a
69/// MachineFunction, it goes back to being #-1.
Chris Lattner6371ed52009-08-23 00:35:30 +000070void ilist_traits<MachineBasicBlock>::addNodeToList(MachineBasicBlock *N) {
Dan Gohman8e5f2c62008-07-07 23:14:23 +000071 MachineFunction &MF = *N->getParent();
72 N->Number = MF.addToMBBNumbering(N);
Chris Lattner62ed6b92008-01-01 01:12:31 +000073
74 // Make sure the instructions have their operands in the reginfo lists.
Dan Gohman8e5f2c62008-07-07 23:14:23 +000075 MachineRegisterInfo &RegInfo = MF.getRegInfo();
Chris Lattner62ed6b92008-01-01 01:12:31 +000076 for (MachineBasicBlock::iterator I = N->begin(), E = N->end(); I != E; ++I)
77 I->AddRegOperandsToUseLists(RegInfo);
Dan Gohman2c3f7ae2008-07-17 23:49:46 +000078
79 LeakDetector::removeGarbageObject(N);
Brian Gaeke0bcb1ad2004-05-12 21:35:22 +000080}
81
Chris Lattner6371ed52009-08-23 00:35:30 +000082void ilist_traits<MachineBasicBlock>::removeNodeFromList(MachineBasicBlock *N) {
Chris Lattnerf20c1a42007-12-31 04:56:33 +000083 N->getParent()->removeFromMBBNumbering(N->Number);
Brian Gaeke0bcb1ad2004-05-12 21:35:22 +000084 N->Number = -1;
Dan Gohman2c3f7ae2008-07-17 23:49:46 +000085 LeakDetector::addGarbageObject(N);
Brian Gaeke0bcb1ad2004-05-12 21:35:22 +000086}
87
Chris Lattner5e61fa92004-02-19 16:13:54 +000088
Chris Lattner62ed6b92008-01-01 01:12:31 +000089/// addNodeToList (MI) - When we add an instruction to a basic block
90/// list, we update its parent pointer and add its operands from reg use/def
91/// lists if appropriate.
Chris Lattner6371ed52009-08-23 00:35:30 +000092void ilist_traits<MachineInstr>::addNodeToList(MachineInstr *N) {
Chris Lattnerf20c1a42007-12-31 04:56:33 +000093 assert(N->getParent() == 0 && "machine instruction already in a basic block");
Dan Gohman8e5f2c62008-07-07 23:14:23 +000094 N->setParent(Parent);
Chris Lattner62ed6b92008-01-01 01:12:31 +000095
Dan Gohman8e5f2c62008-07-07 23:14:23 +000096 // Add the instruction's register operands to their corresponding
97 // use/def lists.
98 MachineFunction *MF = Parent->getParent();
99 N->AddRegOperandsToUseLists(MF->getRegInfo());
Dan Gohman2c3f7ae2008-07-17 23:49:46 +0000100
101 LeakDetector::removeGarbageObject(N);
Alkis Evlogimenosaad5c052004-02-16 07:17:43 +0000102}
103
Chris Lattner62ed6b92008-01-01 01:12:31 +0000104/// removeNodeFromList (MI) - When we remove an instruction from a basic block
105/// list, we update its parent pointer and remove its operands from reg use/def
106/// lists if appropriate.
Chris Lattner6371ed52009-08-23 00:35:30 +0000107void ilist_traits<MachineInstr>::removeNodeFromList(MachineInstr *N) {
Chris Lattnerf20c1a42007-12-31 04:56:33 +0000108 assert(N->getParent() != 0 && "machine instruction not in a basic block");
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000109
110 // Remove from the use/def lists.
111 N->RemoveRegOperandsFromUseLists();
Chris Lattner62ed6b92008-01-01 01:12:31 +0000112
Chris Lattnerf20c1a42007-12-31 04:56:33 +0000113 N->setParent(0);
Dan Gohman2c3f7ae2008-07-17 23:49:46 +0000114
115 LeakDetector::addGarbageObject(N);
Alkis Evlogimenosaad5c052004-02-16 07:17:43 +0000116}
117
Chris Lattner62ed6b92008-01-01 01:12:31 +0000118/// transferNodesFromList (MI) - When moving a range of instructions from one
119/// MBB list to another, we need to update the parent pointers and the use/def
120/// lists.
Chris Lattner6371ed52009-08-23 00:35:30 +0000121void ilist_traits<MachineInstr>::
122transferNodesFromList(ilist_traits<MachineInstr> &fromList,
123 MachineBasicBlock::iterator first,
124 MachineBasicBlock::iterator last) {
Dan Gohmanfed90b62008-07-28 21:51:04 +0000125 assert(Parent->getParent() == fromList.Parent->getParent() &&
126 "MachineInstr parent mismatch!");
127
Chris Lattnerf20c1a42007-12-31 04:56:33 +0000128 // Splice within the same MBB -> no change.
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000129 if (Parent == fromList.Parent) return;
Chris Lattner62ed6b92008-01-01 01:12:31 +0000130
131 // If splicing between two blocks within the same function, just update the
132 // parent pointers.
Dan Gohmanfed90b62008-07-28 21:51:04 +0000133 for (; first != last; ++first)
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000134 first->setParent(Parent);
Alkis Evlogimenosaad5c052004-02-16 07:17:43 +0000135}
136
Dan Gohmanfed90b62008-07-28 21:51:04 +0000137void ilist_traits<MachineInstr>::deleteNode(MachineInstr* MI) {
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000138 assert(!MI->getParent() && "MI is still in a block!");
139 Parent->getParent()->DeleteMachineInstr(MI);
140}
141
Dan Gohmand463a742010-07-07 14:33:51 +0000142MachineBasicBlock::iterator MachineBasicBlock::getFirstNonPHI() {
143 iterator I = begin();
144 while (I != end() && I->isPHI())
145 ++I;
146 return I;
147}
148
Chris Lattner52c09d72004-10-26 15:43:42 +0000149MachineBasicBlock::iterator MachineBasicBlock::getFirstTerminator() {
Alkis Evlogimenos743d0a12004-02-23 18:14:48 +0000150 iterator I = end();
Chris Lattner749c6f62008-01-07 07:27:27 +0000151 while (I != begin() && (--I)->getDesc().isTerminator())
Anton Korobeynikov406452d2007-09-02 22:11:14 +0000152 ; /*noop */
Chris Lattner749c6f62008-01-07 07:27:27 +0000153 if (I != end() && !I->getDesc().isTerminator()) ++I;
Alkis Evlogimenos743d0a12004-02-23 18:14:48 +0000154 return I;
155}
156
Chris Lattner52c09d72004-10-26 15:43:42 +0000157void MachineBasicBlock::dump() const {
David Greenedbdbbd92010-01-04 23:22:07 +0000158 print(dbgs());
Alkis Evlogimenosaad5c052004-02-16 07:17:43 +0000159}
160
Daniel Dunbar1cd1d982009-07-24 10:36:58 +0000161static inline void OutputReg(raw_ostream &os, unsigned RegNo,
Dan Gohman6f0d0242008-02-10 18:45:23 +0000162 const TargetRegisterInfo *TRI = 0) {
Dan Gohman0ba90f32009-10-31 20:19:03 +0000163 if (RegNo != 0 && TargetRegisterInfo::isPhysicalRegister(RegNo)) {
Dan Gohman6f0d0242008-02-10 18:45:23 +0000164 if (TRI)
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000165 os << " %" << TRI->get(RegNo).Name;
Evan Cheng13d82852007-02-10 02:38:19 +0000166 else
Dan Gohman0ba90f32009-10-31 20:19:03 +0000167 os << " %physreg" << RegNo;
Evan Cheng13d82852007-02-10 02:38:19 +0000168 } else
169 os << " %reg" << RegNo;
170}
171
Jakob Stoklund Olesen324da762009-11-20 01:17:03 +0000172StringRef MachineBasicBlock::getName() const {
173 if (const BasicBlock *LBB = getBasicBlock())
174 return LBB->getName();
175 else
176 return "(null)";
177}
178
Chris Lattner2d8e3d22009-08-23 00:47:04 +0000179void MachineBasicBlock::print(raw_ostream &OS) const {
Evan Cheng13d82852007-02-10 02:38:19 +0000180 const MachineFunction *MF = getParent();
Chris Lattner6371ed52009-08-23 00:35:30 +0000181 if (!MF) {
Chris Lattner52c09d72004-10-26 15:43:42 +0000182 OS << "Can't print out MachineBasicBlock because parent MachineFunction"
183 << " is null\n";
Tanya Lattner792699c2004-05-24 06:11:51 +0000184 return;
185 }
Alkis Evlogimenosa6382862004-09-05 18:39:20 +0000186
Dan Gohman0ba90f32009-10-31 20:19:03 +0000187 if (Alignment) { OS << "Alignment " << Alignment << "\n"; }
188
189 OS << "BB#" << getNumber() << ": ";
190
191 const char *Comma = "";
192 if (const BasicBlock *LBB = getBasicBlock()) {
193 OS << Comma << "derived from LLVM BB ";
194 WriteAsOperand(OS, LBB, /*PrintType=*/false);
195 Comma = ", ";
196 }
197 if (isLandingPad()) { OS << Comma << "EH LANDING PAD"; Comma = ", "; }
198 if (hasAddressTaken()) { OS << Comma << "ADDRESS TAKEN"; Comma = ", "; }
Chris Lattner6371ed52009-08-23 00:35:30 +0000199 OS << '\n';
Evan Cheng13d82852007-02-10 02:38:19 +0000200
Dan Gohman6f0d0242008-02-10 18:45:23 +0000201 const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo();
Dan Gohmancb406c22007-10-03 19:26:29 +0000202 if (!livein_empty()) {
Dan Gohman0ba90f32009-10-31 20:19:03 +0000203 OS << " Live Ins:";
Dan Gohman81bf03e2010-04-13 16:57:55 +0000204 for (livein_iterator I = livein_begin(),E = livein_end(); I != E; ++I)
Dan Gohman6f0d0242008-02-10 18:45:23 +0000205 OutputReg(OS, *I, TRI);
Chris Lattner6371ed52009-08-23 00:35:30 +0000206 OS << '\n';
Evan Cheng13d82852007-02-10 02:38:19 +0000207 }
Chris Lattner681764b2006-09-26 03:41:59 +0000208 // Print the preds of this block according to the CFG.
209 if (!pred_empty()) {
210 OS << " Predecessors according to CFG:";
211 for (const_pred_iterator PI = pred_begin(), E = pred_end(); PI != E; ++PI)
Dan Gohman0ba90f32009-10-31 20:19:03 +0000212 OS << " BB#" << (*PI)->getNumber();
Chris Lattner6371ed52009-08-23 00:35:30 +0000213 OS << '\n';
Chris Lattner681764b2006-09-26 03:41:59 +0000214 }
215
Alkis Evlogimenosa6382862004-09-05 18:39:20 +0000216 for (const_iterator I = begin(); I != end(); ++I) {
Chris Lattner2d8e3d22009-08-23 00:47:04 +0000217 OS << '\t';
Alkis Evlogimenosa6382862004-09-05 18:39:20 +0000218 I->print(OS, &getParent()->getTarget());
219 }
Chris Lattner380ae492005-04-01 06:48:38 +0000220
221 // Print the successors of this block according to the CFG.
222 if (!succ_empty()) {
223 OS << " Successors according to CFG:";
224 for (const_succ_iterator SI = succ_begin(), E = succ_end(); SI != E; ++SI)
Dan Gohman0ba90f32009-10-31 20:19:03 +0000225 OS << " BB#" << (*SI)->getNumber();
Chris Lattner6371ed52009-08-23 00:35:30 +0000226 OS << '\n';
Chris Lattner380ae492005-04-01 06:48:38 +0000227 }
Alkis Evlogimenosaad5c052004-02-16 07:17:43 +0000228}
Chris Lattner52c09d72004-10-26 15:43:42 +0000229
Evan Chengb371f452007-02-19 21:49:54 +0000230void MachineBasicBlock::removeLiveIn(unsigned Reg) {
Dan Gohman81bf03e2010-04-13 16:57:55 +0000231 std::vector<unsigned>::iterator I =
232 std::find(LiveIns.begin(), LiveIns.end(), Reg);
233 assert(I != LiveIns.end() && "Not a live in!");
Evan Chengb371f452007-02-19 21:49:54 +0000234 LiveIns.erase(I);
235}
236
Evan Chenga971dbd2008-04-24 09:06:33 +0000237bool MachineBasicBlock::isLiveIn(unsigned Reg) const {
Dan Gohman81bf03e2010-04-13 16:57:55 +0000238 livein_iterator I = std::find(livein_begin(), livein_end(), Reg);
Evan Chenga971dbd2008-04-24 09:06:33 +0000239 return I != livein_end();
240}
241
Chris Lattnerc585a3f2006-10-24 00:02:26 +0000242void MachineBasicBlock::moveBefore(MachineBasicBlock *NewAfter) {
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000243 getParent()->splice(NewAfter, this);
Chris Lattnerc585a3f2006-10-24 00:02:26 +0000244}
245
246void MachineBasicBlock::moveAfter(MachineBasicBlock *NewBefore) {
Chris Lattnerc585a3f2006-10-24 00:02:26 +0000247 MachineFunction::iterator BBI = NewBefore;
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000248 getParent()->splice(++BBI, this);
Chris Lattnerc585a3f2006-10-24 00:02:26 +0000249}
250
Jim Grosbach7707a0d2009-11-12 03:55:33 +0000251void MachineBasicBlock::updateTerminator() {
252 const TargetInstrInfo *TII = getParent()->getTarget().getInstrInfo();
253 // A block with no successors has no concerns with fall-through edges.
254 if (this->succ_empty()) return;
255
256 MachineBasicBlock *TBB = 0, *FBB = 0;
257 SmallVector<MachineOperand, 4> Cond;
Stuart Hastings3bf91252010-06-17 22:43:56 +0000258 DebugLoc dl; // FIXME: this is nowhere
Jim Grosbach7707a0d2009-11-12 03:55:33 +0000259 bool B = TII->AnalyzeBranch(*this, TBB, FBB, Cond);
260 (void) B;
261 assert(!B && "UpdateTerminators requires analyzable predecessors!");
262 if (Cond.empty()) {
263 if (TBB) {
264 // The block has an unconditional branch. If its successor is now
265 // its layout successor, delete the branch.
266 if (isLayoutSuccessor(TBB))
267 TII->RemoveBranch(*this);
268 } else {
269 // The block has an unconditional fallthrough. If its successor is not
270 // its layout successor, insert a branch.
271 TBB = *succ_begin();
272 if (!isLayoutSuccessor(TBB))
Stuart Hastings3bf91252010-06-17 22:43:56 +0000273 TII->InsertBranch(*this, TBB, 0, Cond, dl);
Jim Grosbach7707a0d2009-11-12 03:55:33 +0000274 }
275 } else {
276 if (FBB) {
277 // The block has a non-fallthrough conditional branch. If one of its
278 // successors is its layout successor, rewrite it to a fallthrough
279 // conditional branch.
280 if (isLayoutSuccessor(TBB)) {
Jakob Stoklund Olesene0239932009-11-22 18:28:04 +0000281 if (TII->ReverseBranchCondition(Cond))
282 return;
Jim Grosbach7707a0d2009-11-12 03:55:33 +0000283 TII->RemoveBranch(*this);
Stuart Hastings3bf91252010-06-17 22:43:56 +0000284 TII->InsertBranch(*this, FBB, 0, Cond, dl);
Jim Grosbach7707a0d2009-11-12 03:55:33 +0000285 } else if (isLayoutSuccessor(FBB)) {
286 TII->RemoveBranch(*this);
Stuart Hastings3bf91252010-06-17 22:43:56 +0000287 TII->InsertBranch(*this, TBB, 0, Cond, dl);
Jim Grosbach7707a0d2009-11-12 03:55:33 +0000288 }
289 } else {
290 // The block has a fallthrough conditional branch.
291 MachineBasicBlock *MBBA = *succ_begin();
Chris Lattner7896c9f2009-12-03 00:50:42 +0000292 MachineBasicBlock *MBBB = *llvm::next(succ_begin());
Jim Grosbach7707a0d2009-11-12 03:55:33 +0000293 if (MBBA == TBB) std::swap(MBBB, MBBA);
294 if (isLayoutSuccessor(TBB)) {
Jakob Stoklund Olesene0239932009-11-22 18:28:04 +0000295 if (TII->ReverseBranchCondition(Cond)) {
296 // We can't reverse the condition, add an unconditional branch.
297 Cond.clear();
Stuart Hastings3bf91252010-06-17 22:43:56 +0000298 TII->InsertBranch(*this, MBBA, 0, Cond, dl);
Jakob Stoklund Olesene0239932009-11-22 18:28:04 +0000299 return;
300 }
Jim Grosbach7707a0d2009-11-12 03:55:33 +0000301 TII->RemoveBranch(*this);
Stuart Hastings3bf91252010-06-17 22:43:56 +0000302 TII->InsertBranch(*this, MBBA, 0, Cond, dl);
Jim Grosbach7707a0d2009-11-12 03:55:33 +0000303 } else if (!isLayoutSuccessor(MBBA)) {
304 TII->RemoveBranch(*this);
Stuart Hastings3bf91252010-06-17 22:43:56 +0000305 TII->InsertBranch(*this, TBB, MBBA, Cond, dl);
Jim Grosbach7707a0d2009-11-12 03:55:33 +0000306 }
307 }
308 }
309}
Chris Lattnerc585a3f2006-10-24 00:02:26 +0000310
Chris Lattner52c09d72004-10-26 15:43:42 +0000311void MachineBasicBlock::addSuccessor(MachineBasicBlock *succ) {
312 Successors.push_back(succ);
313 succ->addPredecessor(this);
314}
315
316void MachineBasicBlock::removeSuccessor(MachineBasicBlock *succ) {
317 succ->removePredecessor(this);
318 succ_iterator I = std::find(Successors.begin(), Successors.end(), succ);
319 assert(I != Successors.end() && "Not a current successor!");
320 Successors.erase(I);
321}
322
Chris Lattnerf20c1a42007-12-31 04:56:33 +0000323MachineBasicBlock::succ_iterator
324MachineBasicBlock::removeSuccessor(succ_iterator I) {
Chris Lattner52c09d72004-10-26 15:43:42 +0000325 assert(I != Successors.end() && "Not a current successor!");
326 (*I)->removePredecessor(this);
Dan Gohman5d5ee802009-01-08 22:19:34 +0000327 return Successors.erase(I);
Chris Lattner52c09d72004-10-26 15:43:42 +0000328}
329
330void MachineBasicBlock::addPredecessor(MachineBasicBlock *pred) {
331 Predecessors.push_back(pred);
332}
333
334void MachineBasicBlock::removePredecessor(MachineBasicBlock *pred) {
Misha Brukmanedf128a2005-04-21 22:36:52 +0000335 std::vector<MachineBasicBlock *>::iterator I =
Chris Lattner52c09d72004-10-26 15:43:42 +0000336 std::find(Predecessors.begin(), Predecessors.end(), pred);
337 assert(I != Predecessors.end() && "Pred is not a predecessor of this block!");
338 Predecessors.erase(I);
339}
Evan Cheng4f098782007-05-17 23:58:53 +0000340
Chris Lattner6371ed52009-08-23 00:35:30 +0000341void MachineBasicBlock::transferSuccessors(MachineBasicBlock *fromMBB) {
Mon P Wang63307c32008-05-05 19:05:59 +0000342 if (this == fromMBB)
343 return;
344
Dan Gohman14152b42010-07-06 20:24:04 +0000345 while (!fromMBB->succ_empty()) {
346 MachineBasicBlock *Succ = *fromMBB->succ_begin();
347 addSuccessor(Succ);
348 fromMBB->removeSuccessor(Succ);
349 }
350}
351
352void
353MachineBasicBlock::transferSuccessorsAndUpdatePHIs(MachineBasicBlock *fromMBB) {
354 if (this == fromMBB)
355 return;
Chris Lattner6371ed52009-08-23 00:35:30 +0000356
Dan Gohman14152b42010-07-06 20:24:04 +0000357 while (!fromMBB->succ_empty()) {
358 MachineBasicBlock *Succ = *fromMBB->succ_begin();
359 addSuccessor(Succ);
360 fromMBB->removeSuccessor(Succ);
361
362 // Fix up any PHI nodes in the successor.
363 for (MachineBasicBlock::iterator MI = Succ->begin(), ME = Succ->end();
364 MI != ME && MI->isPHI(); ++MI)
365 for (unsigned i = 2, e = MI->getNumOperands()+1; i != e; i += 2) {
366 MachineOperand &MO = MI->getOperand(i);
367 if (MO.getMBB() == fromMBB)
368 MO.setMBB(this);
369 }
370 }
Mon P Wang63307c32008-05-05 19:05:59 +0000371}
372
Dan Gohman6d1b89e2009-03-30 20:06:29 +0000373bool MachineBasicBlock::isSuccessor(const MachineBasicBlock *MBB) const {
Evan Cheng4f098782007-05-17 23:58:53 +0000374 std::vector<MachineBasicBlock *>::const_iterator I =
375 std::find(Successors.begin(), Successors.end(), MBB);
376 return I != Successors.end();
377}
Evan Cheng0370fad2007-06-04 06:44:01 +0000378
Dan Gohman6d1b89e2009-03-30 20:06:29 +0000379bool MachineBasicBlock::isLayoutSuccessor(const MachineBasicBlock *MBB) const {
Dan Gohman6ade6f52008-10-02 22:09:09 +0000380 MachineFunction::const_iterator I(this);
Chris Lattner7896c9f2009-12-03 00:50:42 +0000381 return llvm::next(I) == MachineFunction::const_iterator(MBB);
Dan Gohman6ade6f52008-10-02 22:09:09 +0000382}
383
Bob Wilson15acadd2009-11-26 00:32:21 +0000384bool MachineBasicBlock::canFallThrough() {
Bob Wilson15acadd2009-11-26 00:32:21 +0000385 MachineFunction::iterator Fallthrough = this;
386 ++Fallthrough;
387 // If FallthroughBlock is off the end of the function, it can't fall through.
388 if (Fallthrough == getParent()->end())
389 return false;
390
391 // If FallthroughBlock isn't a successor, no fallthrough is possible.
392 if (!isSuccessor(Fallthrough))
393 return false;
394
Dan Gohman735985f2009-12-05 00:32:59 +0000395 // Analyze the branches, if any, at the end of the block.
396 MachineBasicBlock *TBB = 0, *FBB = 0;
397 SmallVector<MachineOperand, 4> Cond;
398 const TargetInstrInfo *TII = getParent()->getTarget().getInstrInfo();
Jakob Stoklund Olesen33cc8d62010-01-15 20:00:12 +0000399 if (TII->AnalyzeBranch(*this, TBB, FBB, Cond)) {
Dan Gohman735985f2009-12-05 00:32:59 +0000400 // If we couldn't analyze the branch, examine the last instruction.
401 // If the block doesn't end in a known control barrier, assume fallthrough
402 // is possible. The isPredicable check is needed because this code can be
403 // called during IfConversion, where an instruction which is normally a
404 // Barrier is predicated and thus no longer an actual control barrier. This
405 // is over-conservative though, because if an instruction isn't actually
406 // predicated we could still treat it like a barrier.
Bob Wilson15acadd2009-11-26 00:32:21 +0000407 return empty() || !back().getDesc().isBarrier() ||
408 back().getDesc().isPredicable();
Dan Gohman735985f2009-12-05 00:32:59 +0000409 }
Bob Wilson15acadd2009-11-26 00:32:21 +0000410
411 // If there is no branch, control always falls through.
412 if (TBB == 0) return true;
413
414 // If there is some explicit branch to the fallthrough block, it can obviously
415 // reach, even though the branch should get folded to fall through implicitly.
416 if (MachineFunction::iterator(TBB) == Fallthrough ||
417 MachineFunction::iterator(FBB) == Fallthrough)
418 return true;
419
420 // If it's an unconditional branch to some block not the fall through, it
421 // doesn't fall through.
422 if (Cond.empty()) return false;
423
424 // Otherwise, if it is conditional and has no explicit false block, it falls
425 // through.
426 return FBB == 0;
427}
428
Dan Gohman853d3fb2010-06-22 17:25:57 +0000429MachineBasicBlock *
430MachineBasicBlock::SplitCriticalEdge(MachineBasicBlock *Succ, Pass *P) {
431 MachineFunction *MF = getParent();
432 DebugLoc dl; // FIXME: this is nowhere
433
434 // We may need to update this's terminator, but we can't do that if AnalyzeBranch
435 // fails. If this uses a jump table, we won't touch it.
436 const TargetInstrInfo *TII = MF->getTarget().getInstrInfo();
437 MachineBasicBlock *TBB = 0, *FBB = 0;
438 SmallVector<MachineOperand, 4> Cond;
439 if (TII->AnalyzeBranch(*this, TBB, FBB, Cond))
440 return NULL;
441
442 MachineBasicBlock *NMBB = MF->CreateMachineBasicBlock();
443 MF->insert(llvm::next(MachineFunction::iterator(this)), NMBB);
Evan Cheng087fbeb2010-08-17 17:15:14 +0000444 DEBUG(dbgs() << "Splitting critical edge:"
Dan Gohman853d3fb2010-06-22 17:25:57 +0000445 " BB#" << getNumber()
446 << " -- BB#" << NMBB->getNumber()
447 << " -- BB#" << Succ->getNumber() << '\n');
448
449 ReplaceUsesOfBlockWith(Succ, NMBB);
450 updateTerminator();
451
452 // Insert unconditional "jump Succ" instruction in NMBB if necessary.
453 NMBB->addSuccessor(Succ);
454 if (!NMBB->isLayoutSuccessor(Succ)) {
455 Cond.clear();
456 MF->getTarget().getInstrInfo()->InsertBranch(*NMBB, Succ, NULL, Cond, dl);
457 }
458
459 // Fix PHI nodes in Succ so they refer to NMBB instead of this
460 for (MachineBasicBlock::iterator i = Succ->begin(), e = Succ->end();
461 i != e && i->isPHI(); ++i)
462 for (unsigned ni = 1, ne = i->getNumOperands(); ni != ne; ni += 2)
463 if (i->getOperand(ni+1).getMBB() == this)
464 i->getOperand(ni+1).setMBB(NMBB);
465
466 if (LiveVariables *LV =
467 P->getAnalysisIfAvailable<LiveVariables>())
468 LV->addNewBlock(NMBB, this, Succ);
469
470 if (MachineDominatorTree *MDT =
471 P->getAnalysisIfAvailable<MachineDominatorTree>())
472 MDT->addNewBlock(NMBB, this);
473
Evan Chenge0083842010-08-17 17:43:50 +0000474 if (MachineLoopInfo *MLI = P->getAnalysisIfAvailable<MachineLoopInfo>())
Dan Gohman853d3fb2010-06-22 17:25:57 +0000475 if (MachineLoop *TIL = MLI->getLoopFor(this)) {
476 // If one or the other blocks were not in a loop, the new block is not
477 // either, and thus LI doesn't need to be updated.
478 if (MachineLoop *DestLoop = MLI->getLoopFor(Succ)) {
479 if (TIL == DestLoop) {
480 // Both in the same loop, the NMBB joins loop.
481 DestLoop->addBasicBlockToLoop(NMBB, MLI->getBase());
482 } else if (TIL->contains(DestLoop)) {
483 // Edge from an outer loop to an inner loop. Add to the outer loop.
484 TIL->addBasicBlockToLoop(NMBB, MLI->getBase());
485 } else if (DestLoop->contains(TIL)) {
486 // Edge from an inner loop to an outer loop. Add to the outer loop.
487 DestLoop->addBasicBlockToLoop(NMBB, MLI->getBase());
488 } else {
489 // Edge from two loops with no containment relation. Because these
490 // are natural loops, we know that the destination block must be the
491 // header of its loop (adding a branch into a loop elsewhere would
492 // create an irreducible loop).
493 assert(DestLoop->getHeader() == Succ &&
494 "Should not create irreducible loops!");
495 if (MachineLoop *P = DestLoop->getParentLoop())
496 P->addBasicBlockToLoop(NMBB, MLI->getBase());
497 }
498 }
499 }
500
501 return NMBB;
502}
503
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000504/// removeFromParent - This method unlinks 'this' from the containing function,
505/// and returns it, but does not delete it.
506MachineBasicBlock *MachineBasicBlock::removeFromParent() {
507 assert(getParent() && "Not embedded in a function!");
508 getParent()->remove(this);
509 return this;
510}
511
512
513/// eraseFromParent - This method unlinks 'this' from the containing function,
514/// and deletes it.
515void MachineBasicBlock::eraseFromParent() {
516 assert(getParent() && "Not embedded in a function!");
517 getParent()->erase(this);
518}
519
520
Evan Cheng0370fad2007-06-04 06:44:01 +0000521/// ReplaceUsesOfBlockWith - Given a machine basic block that branched to
522/// 'Old', change the code and CFG so that it branches to 'New' instead.
523void MachineBasicBlock::ReplaceUsesOfBlockWith(MachineBasicBlock *Old,
524 MachineBasicBlock *New) {
525 assert(Old != New && "Cannot replace self with self!");
526
527 MachineBasicBlock::iterator I = end();
528 while (I != begin()) {
529 --I;
Chris Lattner749c6f62008-01-07 07:27:27 +0000530 if (!I->getDesc().isTerminator()) break;
Evan Cheng0370fad2007-06-04 06:44:01 +0000531
532 // Scan the operands of this machine instruction, replacing any uses of Old
533 // with New.
534 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
Dan Gohmand735b802008-10-03 15:45:36 +0000535 if (I->getOperand(i).isMBB() &&
Dan Gohman014278e2008-09-13 17:58:21 +0000536 I->getOperand(i).getMBB() == Old)
Chris Lattner8aa797a2007-12-30 23:10:15 +0000537 I->getOperand(i).setMBB(New);
Evan Cheng0370fad2007-06-04 06:44:01 +0000538 }
539
Dan Gohman5412d062009-05-05 21:10:19 +0000540 // Update the successor information.
Evan Cheng0370fad2007-06-04 06:44:01 +0000541 removeSuccessor(Old);
Dan Gohman5412d062009-05-05 21:10:19 +0000542 addSuccessor(New);
Evan Cheng0370fad2007-06-04 06:44:01 +0000543}
544
Evan Cheng2bdb7d02007-06-18 22:43:58 +0000545/// CorrectExtraCFGEdges - Various pieces of code can cause excess edges in the
546/// CFG to be inserted. If we have proven that MBB can only branch to DestA and
Bill Wendlingc70d33112009-12-16 00:08:36 +0000547/// DestB, remove any other MBB successors from the CFG. DestA and DestB can be
548/// null.
549///
Chris Lattnerf20c1a42007-12-31 04:56:33 +0000550/// Besides DestA and DestB, retain other edges leading to LandingPads
551/// (currently there can be only one; we don't check or require that here).
Evan Cheng2bdb7d02007-06-18 22:43:58 +0000552/// Note it is possible that DestA and/or DestB are LandingPads.
553bool MachineBasicBlock::CorrectExtraCFGEdges(MachineBasicBlock *DestA,
554 MachineBasicBlock *DestB,
555 bool isCond) {
Bill Wendlingc70d33112009-12-16 00:08:36 +0000556 // The values of DestA and DestB frequently come from a call to the
557 // 'TargetInstrInfo::AnalyzeBranch' method. We take our meaning of the initial
558 // values from there.
559 //
560 // 1. If both DestA and DestB are null, then the block ends with no branches
561 // (it falls through to its successor).
562 // 2. If DestA is set, DestB is null, and isCond is false, then the block ends
563 // with only an unconditional branch.
564 // 3. If DestA is set, DestB is null, and isCond is true, then the block ends
565 // with a conditional branch that falls through to a successor (DestB).
566 // 4. If DestA and DestB is set and isCond is true, then the block ends with a
567 // conditional branch followed by an unconditional branch. DestA is the
568 // 'true' destination and DestB is the 'false' destination.
569
Bill Wendlinge543d162010-04-01 00:00:43 +0000570 bool Changed = false;
Evan Cheng2bdb7d02007-06-18 22:43:58 +0000571
Chris Lattner7896c9f2009-12-03 00:50:42 +0000572 MachineFunction::iterator FallThru =
573 llvm::next(MachineFunction::iterator(this));
Bill Wendlinge543d162010-04-01 00:00:43 +0000574
575 if (DestA == 0 && DestB == 0) {
576 // Block falls through to successor.
577 DestA = FallThru;
578 DestB = FallThru;
579 } else if (DestA != 0 && DestB == 0) {
580 if (isCond)
581 // Block ends in conditional jump that falls through to successor.
Evan Cheng2bdb7d02007-06-18 22:43:58 +0000582 DestB = FallThru;
Evan Cheng2bdb7d02007-06-18 22:43:58 +0000583 } else {
Bill Wendlinge543d162010-04-01 00:00:43 +0000584 assert(DestA && DestB && isCond &&
585 "CFG in a bad state. Cannot correct CFG edges");
Evan Cheng2bdb7d02007-06-18 22:43:58 +0000586 }
Bill Wendlinge543d162010-04-01 00:00:43 +0000587
588 // Remove superfluous edges. I.e., those which aren't destinations of this
589 // basic block, duplicate edges, or landing pads.
590 SmallPtrSet<const MachineBasicBlock*, 8> SeenMBBs;
Evan Cheng2bdb7d02007-06-18 22:43:58 +0000591 MachineBasicBlock::succ_iterator SI = succ_begin();
Evan Cheng2bdb7d02007-06-18 22:43:58 +0000592 while (SI != succ_end()) {
Bill Wendlingc70d33112009-12-16 00:08:36 +0000593 const MachineBasicBlock *MBB = *SI;
Bill Wendlinge543d162010-04-01 00:00:43 +0000594 if (!SeenMBBs.insert(MBB) ||
595 (MBB != DestA && MBB != DestB && !MBB->isLandingPad())) {
596 // This is a superfluous edge, remove it.
Bill Wendling9e9cca42010-03-31 23:26:26 +0000597 SI = removeSuccessor(SI);
Bill Wendlinge543d162010-04-01 00:00:43 +0000598 Changed = true;
599 } else {
600 ++SI;
Evan Cheng2bdb7d02007-06-18 22:43:58 +0000601 }
602 }
Bill Wendlingc70d33112009-12-16 00:08:36 +0000603
Bill Wendlinge543d162010-04-01 00:00:43 +0000604 return Changed;
Evan Cheng2bdb7d02007-06-18 22:43:58 +0000605}
Evan Cheng2a085c32009-11-17 19:19:59 +0000606
Dale Johannesen73e884b2010-01-20 21:36:02 +0000607/// findDebugLoc - find the next valid DebugLoc starting at MBBI, skipping
Dale Johannesen10fedd22010-02-10 00:11:11 +0000608/// any DBG_VALUE instructions. Return UnknownLoc if there is none.
Dale Johannesen73e884b2010-01-20 21:36:02 +0000609DebugLoc
610MachineBasicBlock::findDebugLoc(MachineBasicBlock::iterator &MBBI) {
611 DebugLoc DL;
612 MachineBasicBlock::iterator E = end();
613 if (MBBI != E) {
614 // Skip debug declarations, we don't want a DebugLoc from them.
615 MachineBasicBlock::iterator MBBI2 = MBBI;
Chris Lattner518bb532010-02-09 19:54:29 +0000616 while (MBBI2 != E && MBBI2->isDebugValue())
Dale Johannesen73e884b2010-01-20 21:36:02 +0000617 MBBI2++;
618 if (MBBI2 != E)
619 DL = MBBI2->getDebugLoc();
620 }
621 return DL;
622}
623
Evan Cheng2a085c32009-11-17 19:19:59 +0000624void llvm::WriteAsOperand(raw_ostream &OS, const MachineBasicBlock *MBB,
625 bool t) {
626 OS << "BB#" << MBB->getNumber();
627}
Dale Johannesen918f0f02010-01-20 00:19:24 +0000628