blob: 75fdb7e212d7c591f0d0f5fe80db6172be3903b1 [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"
Jakob Stoklund Olesenf4a1e1a2010-10-26 20:21:46 +000020#include "llvm/CodeGen/SlotIndexes.h"
Chris Lattnerf71cb012010-01-26 04:55:51 +000021#include "llvm/MC/MCAsmInfo.h"
22#include "llvm/MC/MCContext.h"
Bill Wendling43cf6c32009-12-15 00:39:24 +000023#include "llvm/Target/TargetRegisterInfo.h"
Owen Anderson07000c62006-05-12 06:33:49 +000024#include "llvm/Target/TargetData.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
Jakub Staszak12af5ff2011-06-16 18:01:17 +000063/// addNodeToList (MBB) - When an MBB is added to an MF, we need to update the
Chris Lattner62ed6b92008-01-01 01:12:31 +000064/// 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);
Jakub Staszak12af5ff2011-06-16 18:01:17 +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();
Jakub Staszak12af5ff2011-06-16 18:01:17 +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
Jakob Stoklund Olesen92095e72010-10-30 01:26:14 +0000149MachineBasicBlock::iterator
150MachineBasicBlock::SkipPHIsAndLabels(MachineBasicBlock::iterator I) {
151 while (I != end() && (I->isPHI() || I->isLabel() || I->isDebugValue()))
152 ++I;
153 return I;
154}
155
Chris Lattner52c09d72004-10-26 15:43:42 +0000156MachineBasicBlock::iterator MachineBasicBlock::getFirstTerminator() {
Jakob Stoklund Olesenb6436e52011-01-14 02:12:54 +0000157 iterator I = end();
Jakob Stoklund Olesen04223902011-01-14 06:33:45 +0000158 while (I != begin() && ((--I)->getDesc().isTerminator() || I->isDebugValue()))
Jakob Stoklund Olesenb6436e52011-01-14 02:12:54 +0000159 ; /*noop */
Jakob Stoklund Olesen04223902011-01-14 06:33:45 +0000160 while (I != end() && !I->getDesc().isTerminator())
161 ++I;
Jakob Stoklund Olesenb6436e52011-01-14 02:12:54 +0000162 return I;
Alkis Evlogimenos743d0a12004-02-23 18:14:48 +0000163}
164
Jakob Stoklund Olesen4f28c1c2011-01-13 21:28:52 +0000165MachineBasicBlock::iterator MachineBasicBlock::getLastNonDebugInstr() {
166 iterator B = begin(), I = end();
167 while (I != B) {
168 --I;
169 if (I->isDebugValue())
170 continue;
171 return I;
172 }
173 // The block is all debug values.
174 return end();
175}
176
Jakob Stoklund Olesencb640472011-02-04 19:33:11 +0000177const MachineBasicBlock *MachineBasicBlock::getLandingPadSuccessor() const {
178 // A block with a landing pad successor only has one other successor.
179 if (succ_size() > 2)
180 return 0;
181 for (const_succ_iterator I = succ_begin(), E = succ_end(); I != E; ++I)
182 if ((*I)->isLandingPad())
183 return *I;
184 return 0;
185}
186
Chris Lattner52c09d72004-10-26 15:43:42 +0000187void MachineBasicBlock::dump() const {
David Greenedbdbbd92010-01-04 23:22:07 +0000188 print(dbgs());
Alkis Evlogimenosaad5c052004-02-16 07:17:43 +0000189}
190
Jakob Stoklund Olesen324da762009-11-20 01:17:03 +0000191StringRef MachineBasicBlock::getName() const {
192 if (const BasicBlock *LBB = getBasicBlock())
193 return LBB->getName();
194 else
195 return "(null)";
196}
197
Jakob Stoklund Olesenf4a1e1a2010-10-26 20:21:46 +0000198void MachineBasicBlock::print(raw_ostream &OS, SlotIndexes *Indexes) const {
Evan Cheng13d82852007-02-10 02:38:19 +0000199 const MachineFunction *MF = getParent();
Chris Lattner6371ed52009-08-23 00:35:30 +0000200 if (!MF) {
Chris Lattner52c09d72004-10-26 15:43:42 +0000201 OS << "Can't print out MachineBasicBlock because parent MachineFunction"
202 << " is null\n";
Tanya Lattner792699c2004-05-24 06:11:51 +0000203 return;
204 }
Alkis Evlogimenosa6382862004-09-05 18:39:20 +0000205
Jakob Stoklund Olesenf4a1e1a2010-10-26 20:21:46 +0000206 if (Indexes)
207 OS << Indexes->getMBBStartIdx(this) << '\t';
208
Dan Gohman0ba90f32009-10-31 20:19:03 +0000209 OS << "BB#" << getNumber() << ": ";
210
211 const char *Comma = "";
212 if (const BasicBlock *LBB = getBasicBlock()) {
213 OS << Comma << "derived from LLVM BB ";
214 WriteAsOperand(OS, LBB, /*PrintType=*/false);
215 Comma = ", ";
216 }
217 if (isLandingPad()) { OS << Comma << "EH LANDING PAD"; Comma = ", "; }
218 if (hasAddressTaken()) { OS << Comma << "ADDRESS TAKEN"; Comma = ", "; }
Jakob Stoklund Olesenf2e94452011-12-06 21:08:39 +0000219 if (Alignment) {
220 OS << Comma << "Align " << Alignment << " (" << (1u << Alignment)
221 << " bytes)";
222 Comma = ", ";
223 }
224
Chris Lattner6371ed52009-08-23 00:35:30 +0000225 OS << '\n';
Evan Cheng13d82852007-02-10 02:38:19 +0000226
Jakob Stoklund Olesenf4a1e1a2010-10-26 20:21:46 +0000227 const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo();
Dan Gohmancb406c22007-10-03 19:26:29 +0000228 if (!livein_empty()) {
Jakob Stoklund Olesenf4a1e1a2010-10-26 20:21:46 +0000229 if (Indexes) OS << '\t';
Dan Gohman0ba90f32009-10-31 20:19:03 +0000230 OS << " Live Ins:";
Dan Gohman81bf03e2010-04-13 16:57:55 +0000231 for (livein_iterator I = livein_begin(),E = livein_end(); I != E; ++I)
Jakob Stoklund Olesen668c9e32011-01-13 00:57:35 +0000232 OS << ' ' << PrintReg(*I, TRI);
Chris Lattner6371ed52009-08-23 00:35:30 +0000233 OS << '\n';
Evan Cheng13d82852007-02-10 02:38:19 +0000234 }
Chris Lattner681764b2006-09-26 03:41:59 +0000235 // Print the preds of this block according to the CFG.
236 if (!pred_empty()) {
Jakob Stoklund Olesenf4a1e1a2010-10-26 20:21:46 +0000237 if (Indexes) OS << '\t';
Chris Lattner681764b2006-09-26 03:41:59 +0000238 OS << " Predecessors according to CFG:";
239 for (const_pred_iterator PI = pred_begin(), E = pred_end(); PI != E; ++PI)
Dan Gohman0ba90f32009-10-31 20:19:03 +0000240 OS << " BB#" << (*PI)->getNumber();
Chris Lattner6371ed52009-08-23 00:35:30 +0000241 OS << '\n';
Chris Lattner681764b2006-09-26 03:41:59 +0000242 }
Jakob Stoklund Olesenf4a1e1a2010-10-26 20:21:46 +0000243
Alkis Evlogimenosa6382862004-09-05 18:39:20 +0000244 for (const_iterator I = begin(); I != end(); ++I) {
Jakob Stoklund Olesenf4a1e1a2010-10-26 20:21:46 +0000245 if (Indexes) {
246 if (Indexes->hasIndex(I))
247 OS << Indexes->getInstructionIndex(I);
248 OS << '\t';
249 }
Chris Lattner2d8e3d22009-08-23 00:47:04 +0000250 OS << '\t';
Alkis Evlogimenosa6382862004-09-05 18:39:20 +0000251 I->print(OS, &getParent()->getTarget());
252 }
Chris Lattner380ae492005-04-01 06:48:38 +0000253
254 // Print the successors of this block according to the CFG.
255 if (!succ_empty()) {
Jakob Stoklund Olesenf4a1e1a2010-10-26 20:21:46 +0000256 if (Indexes) OS << '\t';
Chris Lattner380ae492005-04-01 06:48:38 +0000257 OS << " Successors according to CFG:";
258 for (const_succ_iterator SI = succ_begin(), E = succ_end(); SI != E; ++SI)
Dan Gohman0ba90f32009-10-31 20:19:03 +0000259 OS << " BB#" << (*SI)->getNumber();
Chris Lattner6371ed52009-08-23 00:35:30 +0000260 OS << '\n';
Chris Lattner380ae492005-04-01 06:48:38 +0000261 }
Alkis Evlogimenosaad5c052004-02-16 07:17:43 +0000262}
Chris Lattner52c09d72004-10-26 15:43:42 +0000263
Evan Chengb371f452007-02-19 21:49:54 +0000264void MachineBasicBlock::removeLiveIn(unsigned Reg) {
Dan Gohman81bf03e2010-04-13 16:57:55 +0000265 std::vector<unsigned>::iterator I =
266 std::find(LiveIns.begin(), LiveIns.end(), Reg);
267 assert(I != LiveIns.end() && "Not a live in!");
Evan Chengb371f452007-02-19 21:49:54 +0000268 LiveIns.erase(I);
269}
270
Evan Chenga971dbd2008-04-24 09:06:33 +0000271bool MachineBasicBlock::isLiveIn(unsigned Reg) const {
Dan Gohman81bf03e2010-04-13 16:57:55 +0000272 livein_iterator I = std::find(livein_begin(), livein_end(), Reg);
Evan Chenga971dbd2008-04-24 09:06:33 +0000273 return I != livein_end();
274}
275
Chris Lattnerc585a3f2006-10-24 00:02:26 +0000276void MachineBasicBlock::moveBefore(MachineBasicBlock *NewAfter) {
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000277 getParent()->splice(NewAfter, this);
Chris Lattnerc585a3f2006-10-24 00:02:26 +0000278}
279
280void MachineBasicBlock::moveAfter(MachineBasicBlock *NewBefore) {
Chris Lattnerc585a3f2006-10-24 00:02:26 +0000281 MachineFunction::iterator BBI = NewBefore;
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000282 getParent()->splice(++BBI, this);
Chris Lattnerc585a3f2006-10-24 00:02:26 +0000283}
284
Jim Grosbach7707a0d2009-11-12 03:55:33 +0000285void MachineBasicBlock::updateTerminator() {
286 const TargetInstrInfo *TII = getParent()->getTarget().getInstrInfo();
287 // A block with no successors has no concerns with fall-through edges.
288 if (this->succ_empty()) return;
289
290 MachineBasicBlock *TBB = 0, *FBB = 0;
291 SmallVector<MachineOperand, 4> Cond;
Stuart Hastings3bf91252010-06-17 22:43:56 +0000292 DebugLoc dl; // FIXME: this is nowhere
Jim Grosbach7707a0d2009-11-12 03:55:33 +0000293 bool B = TII->AnalyzeBranch(*this, TBB, FBB, Cond);
294 (void) B;
295 assert(!B && "UpdateTerminators requires analyzable predecessors!");
296 if (Cond.empty()) {
297 if (TBB) {
298 // The block has an unconditional branch. If its successor is now
299 // its layout successor, delete the branch.
300 if (isLayoutSuccessor(TBB))
301 TII->RemoveBranch(*this);
302 } else {
303 // The block has an unconditional fallthrough. If its successor is not
Chandler Carruth3b7b2092011-11-22 13:13:16 +0000304 // its layout successor, insert a branch. First we have to locate the
305 // only non-landing-pad successor, as that is the fallthrough block.
306 for (succ_iterator SI = succ_begin(), SE = succ_end(); SI != SE; ++SI) {
307 if ((*SI)->isLandingPad())
308 continue;
309 assert(!TBB && "Found more than one non-landing-pad successor!");
310 TBB = *SI;
311 }
Chandler Carruth521fc5b2011-11-23 08:23:54 +0000312
313 // If there is no non-landing-pad successor, the block has no
314 // fall-through edges to be concerned with.
315 if (!TBB)
316 return;
317
318 // Finally update the unconditional successor to be reached via a branch
319 // if it would not be reached by fallthrough.
Jim Grosbach7707a0d2009-11-12 03:55:33 +0000320 if (!isLayoutSuccessor(TBB))
Stuart Hastings3bf91252010-06-17 22:43:56 +0000321 TII->InsertBranch(*this, TBB, 0, Cond, dl);
Jim Grosbach7707a0d2009-11-12 03:55:33 +0000322 }
323 } else {
324 if (FBB) {
325 // The block has a non-fallthrough conditional branch. If one of its
326 // successors is its layout successor, rewrite it to a fallthrough
327 // conditional branch.
328 if (isLayoutSuccessor(TBB)) {
Jakob Stoklund Olesene0239932009-11-22 18:28:04 +0000329 if (TII->ReverseBranchCondition(Cond))
330 return;
Jim Grosbach7707a0d2009-11-12 03:55:33 +0000331 TII->RemoveBranch(*this);
Stuart Hastings3bf91252010-06-17 22:43:56 +0000332 TII->InsertBranch(*this, FBB, 0, Cond, dl);
Jim Grosbach7707a0d2009-11-12 03:55:33 +0000333 } else if (isLayoutSuccessor(FBB)) {
334 TII->RemoveBranch(*this);
Stuart Hastings3bf91252010-06-17 22:43:56 +0000335 TII->InsertBranch(*this, TBB, 0, Cond, dl);
Jim Grosbach7707a0d2009-11-12 03:55:33 +0000336 }
337 } else {
338 // The block has a fallthrough conditional branch.
339 MachineBasicBlock *MBBA = *succ_begin();
Chris Lattner7896c9f2009-12-03 00:50:42 +0000340 MachineBasicBlock *MBBB = *llvm::next(succ_begin());
Jim Grosbach7707a0d2009-11-12 03:55:33 +0000341 if (MBBA == TBB) std::swap(MBBB, MBBA);
342 if (isLayoutSuccessor(TBB)) {
Jakob Stoklund Olesene0239932009-11-22 18:28:04 +0000343 if (TII->ReverseBranchCondition(Cond)) {
344 // We can't reverse the condition, add an unconditional branch.
345 Cond.clear();
Stuart Hastings3bf91252010-06-17 22:43:56 +0000346 TII->InsertBranch(*this, MBBA, 0, Cond, dl);
Jakob Stoklund Olesene0239932009-11-22 18:28:04 +0000347 return;
348 }
Jim Grosbach7707a0d2009-11-12 03:55:33 +0000349 TII->RemoveBranch(*this);
Stuart Hastings3bf91252010-06-17 22:43:56 +0000350 TII->InsertBranch(*this, MBBA, 0, Cond, dl);
Jim Grosbach7707a0d2009-11-12 03:55:33 +0000351 } else if (!isLayoutSuccessor(MBBA)) {
352 TII->RemoveBranch(*this);
Stuart Hastings3bf91252010-06-17 22:43:56 +0000353 TII->InsertBranch(*this, TBB, MBBA, Cond, dl);
Jim Grosbach7707a0d2009-11-12 03:55:33 +0000354 }
355 }
356 }
357}
Chris Lattnerc585a3f2006-10-24 00:02:26 +0000358
Jakub Staszak7cc2b072011-06-16 20:22:37 +0000359void MachineBasicBlock::addSuccessor(MachineBasicBlock *succ, uint32_t weight) {
360
361 // If we see non-zero value for the first time it means we actually use Weight
362 // list, so we fill all Weights with 0's.
363 if (weight != 0 && Weights.empty())
364 Weights.resize(Successors.size());
365
366 if (weight != 0 || !Weights.empty())
367 Weights.push_back(weight);
368
369 Successors.push_back(succ);
370 succ->addPredecessor(this);
371 }
Chris Lattner52c09d72004-10-26 15:43:42 +0000372
373void MachineBasicBlock::removeSuccessor(MachineBasicBlock *succ) {
374 succ->removePredecessor(this);
375 succ_iterator I = std::find(Successors.begin(), Successors.end(), succ);
376 assert(I != Successors.end() && "Not a current successor!");
Jakub Staszak7cc2b072011-06-16 20:22:37 +0000377
378 // If Weight list is empty it means we don't use it (disabled optimization).
379 if (!Weights.empty()) {
380 weight_iterator WI = getWeightIterator(I);
381 Weights.erase(WI);
382 }
383
Chris Lattner52c09d72004-10-26 15:43:42 +0000384 Successors.erase(I);
385}
386
Jakub Staszak12af5ff2011-06-16 18:01:17 +0000387MachineBasicBlock::succ_iterator
Chris Lattnerf20c1a42007-12-31 04:56:33 +0000388MachineBasicBlock::removeSuccessor(succ_iterator I) {
Chris Lattner52c09d72004-10-26 15:43:42 +0000389 assert(I != Successors.end() && "Not a current successor!");
Jakub Staszak7cc2b072011-06-16 20:22:37 +0000390
391 // If Weight list is empty it means we don't use it (disabled optimization).
392 if (!Weights.empty()) {
393 weight_iterator WI = getWeightIterator(I);
394 Weights.erase(WI);
395 }
396
Chris Lattner52c09d72004-10-26 15:43:42 +0000397 (*I)->removePredecessor(this);
Dan Gohman5d5ee802009-01-08 22:19:34 +0000398 return Successors.erase(I);
Chris Lattner52c09d72004-10-26 15:43:42 +0000399}
400
Jakub Staszak7cc2b072011-06-16 20:22:37 +0000401void MachineBasicBlock::replaceSuccessor(MachineBasicBlock *Old,
402 MachineBasicBlock *New) {
403 uint32_t weight = 0;
404 succ_iterator SI = std::find(Successors.begin(), Successors.end(), Old);
405
406 // If Weight list is empty it means we don't use it (disabled optimization).
407 if (!Weights.empty()) {
408 weight_iterator WI = getWeightIterator(SI);
409 weight = *WI;
410 }
411
412 // Update the successor information.
413 removeSuccessor(SI);
414 addSuccessor(New, weight);
415}
416
Chris Lattner52c09d72004-10-26 15:43:42 +0000417void MachineBasicBlock::addPredecessor(MachineBasicBlock *pred) {
418 Predecessors.push_back(pred);
419}
420
421void MachineBasicBlock::removePredecessor(MachineBasicBlock *pred) {
Eli Friedman6dda9162011-04-18 21:21:37 +0000422 pred_iterator I = std::find(Predecessors.begin(), Predecessors.end(), pred);
Chris Lattner52c09d72004-10-26 15:43:42 +0000423 assert(I != Predecessors.end() && "Pred is not a predecessor of this block!");
424 Predecessors.erase(I);
425}
Evan Cheng4f098782007-05-17 23:58:53 +0000426
Chris Lattner6371ed52009-08-23 00:35:30 +0000427void MachineBasicBlock::transferSuccessors(MachineBasicBlock *fromMBB) {
Mon P Wang63307c32008-05-05 19:05:59 +0000428 if (this == fromMBB)
429 return;
Jakub Staszak12af5ff2011-06-16 18:01:17 +0000430
Dan Gohman14152b42010-07-06 20:24:04 +0000431 while (!fromMBB->succ_empty()) {
432 MachineBasicBlock *Succ = *fromMBB->succ_begin();
Jakub Staszak7cc2b072011-06-16 20:22:37 +0000433 uint32_t weight = 0;
434
435
436 // If Weight list is empty it means we don't use it (disabled optimization).
437 if (!fromMBB->Weights.empty())
438 weight = *fromMBB->Weights.begin();
439
440 addSuccessor(Succ, weight);
Dan Gohman14152b42010-07-06 20:24:04 +0000441 fromMBB->removeSuccessor(Succ);
442 }
443}
444
445void
446MachineBasicBlock::transferSuccessorsAndUpdatePHIs(MachineBasicBlock *fromMBB) {
447 if (this == fromMBB)
448 return;
Jakub Staszak12af5ff2011-06-16 18:01:17 +0000449
Dan Gohman14152b42010-07-06 20:24:04 +0000450 while (!fromMBB->succ_empty()) {
451 MachineBasicBlock *Succ = *fromMBB->succ_begin();
452 addSuccessor(Succ);
453 fromMBB->removeSuccessor(Succ);
454
455 // Fix up any PHI nodes in the successor.
456 for (MachineBasicBlock::iterator MI = Succ->begin(), ME = Succ->end();
457 MI != ME && MI->isPHI(); ++MI)
458 for (unsigned i = 2, e = MI->getNumOperands()+1; i != e; i += 2) {
459 MachineOperand &MO = MI->getOperand(i);
460 if (MO.getMBB() == fromMBB)
461 MO.setMBB(this);
462 }
463 }
Mon P Wang63307c32008-05-05 19:05:59 +0000464}
465
Dan Gohman6d1b89e2009-03-30 20:06:29 +0000466bool MachineBasicBlock::isSuccessor(const MachineBasicBlock *MBB) const {
Eli Friedman6dda9162011-04-18 21:21:37 +0000467 const_succ_iterator I = std::find(Successors.begin(), Successors.end(), MBB);
Evan Cheng4f098782007-05-17 23:58:53 +0000468 return I != Successors.end();
469}
Evan Cheng0370fad2007-06-04 06:44:01 +0000470
Dan Gohman6d1b89e2009-03-30 20:06:29 +0000471bool MachineBasicBlock::isLayoutSuccessor(const MachineBasicBlock *MBB) const {
Dan Gohman6ade6f52008-10-02 22:09:09 +0000472 MachineFunction::const_iterator I(this);
Chris Lattner7896c9f2009-12-03 00:50:42 +0000473 return llvm::next(I) == MachineFunction::const_iterator(MBB);
Dan Gohman6ade6f52008-10-02 22:09:09 +0000474}
475
Bob Wilson15acadd2009-11-26 00:32:21 +0000476bool MachineBasicBlock::canFallThrough() {
Bob Wilson15acadd2009-11-26 00:32:21 +0000477 MachineFunction::iterator Fallthrough = this;
478 ++Fallthrough;
479 // If FallthroughBlock is off the end of the function, it can't fall through.
480 if (Fallthrough == getParent()->end())
481 return false;
482
483 // If FallthroughBlock isn't a successor, no fallthrough is possible.
484 if (!isSuccessor(Fallthrough))
485 return false;
486
Dan Gohman735985f2009-12-05 00:32:59 +0000487 // Analyze the branches, if any, at the end of the block.
488 MachineBasicBlock *TBB = 0, *FBB = 0;
489 SmallVector<MachineOperand, 4> Cond;
490 const TargetInstrInfo *TII = getParent()->getTarget().getInstrInfo();
Jakob Stoklund Olesen33cc8d62010-01-15 20:00:12 +0000491 if (TII->AnalyzeBranch(*this, TBB, FBB, Cond)) {
Dan Gohman735985f2009-12-05 00:32:59 +0000492 // If we couldn't analyze the branch, examine the last instruction.
493 // If the block doesn't end in a known control barrier, assume fallthrough
494 // is possible. The isPredicable check is needed because this code can be
495 // called during IfConversion, where an instruction which is normally a
496 // Barrier is predicated and thus no longer an actual control barrier. This
497 // is over-conservative though, because if an instruction isn't actually
498 // predicated we could still treat it like a barrier.
Bob Wilson15acadd2009-11-26 00:32:21 +0000499 return empty() || !back().getDesc().isBarrier() ||
500 back().getDesc().isPredicable();
Dan Gohman735985f2009-12-05 00:32:59 +0000501 }
Bob Wilson15acadd2009-11-26 00:32:21 +0000502
503 // If there is no branch, control always falls through.
504 if (TBB == 0) return true;
505
506 // If there is some explicit branch to the fallthrough block, it can obviously
507 // reach, even though the branch should get folded to fall through implicitly.
508 if (MachineFunction::iterator(TBB) == Fallthrough ||
509 MachineFunction::iterator(FBB) == Fallthrough)
510 return true;
511
512 // If it's an unconditional branch to some block not the fall through, it
513 // doesn't fall through.
514 if (Cond.empty()) return false;
515
516 // Otherwise, if it is conditional and has no explicit false block, it falls
517 // through.
518 return FBB == 0;
519}
520
Dan Gohman853d3fb2010-06-22 17:25:57 +0000521MachineBasicBlock *
522MachineBasicBlock::SplitCriticalEdge(MachineBasicBlock *Succ, Pass *P) {
523 MachineFunction *MF = getParent();
524 DebugLoc dl; // FIXME: this is nowhere
525
Jakob Stoklund Olesen371e82b2010-11-02 00:58:37 +0000526 // We may need to update this's terminator, but we can't do that if
527 // AnalyzeBranch fails. If this uses a jump table, we won't touch it.
Dan Gohman853d3fb2010-06-22 17:25:57 +0000528 const TargetInstrInfo *TII = MF->getTarget().getInstrInfo();
529 MachineBasicBlock *TBB = 0, *FBB = 0;
530 SmallVector<MachineOperand, 4> Cond;
531 if (TII->AnalyzeBranch(*this, TBB, FBB, Cond))
532 return NULL;
533
Jakob Stoklund Olesen371e82b2010-11-02 00:58:37 +0000534 // Avoid bugpoint weirdness: A block may end with a conditional branch but
535 // jumps to the same MBB is either case. We have duplicate CFG edges in that
536 // case that we can't handle. Since this never happens in properly optimized
537 // code, just skip those edges.
538 if (TBB && TBB == FBB) {
539 DEBUG(dbgs() << "Won't split critical edge after degenerate BB#"
540 << getNumber() << '\n');
541 return NULL;
542 }
543
Dan Gohman853d3fb2010-06-22 17:25:57 +0000544 MachineBasicBlock *NMBB = MF->CreateMachineBasicBlock();
545 MF->insert(llvm::next(MachineFunction::iterator(this)), NMBB);
Evan Cheng087fbeb2010-08-17 17:15:14 +0000546 DEBUG(dbgs() << "Splitting critical edge:"
Dan Gohman853d3fb2010-06-22 17:25:57 +0000547 " BB#" << getNumber()
548 << " -- BB#" << NMBB->getNumber()
549 << " -- BB#" << Succ->getNumber() << '\n');
550
Jakob Stoklund Olesen57903352011-05-29 20:10:28 +0000551 // On some targets like Mips, branches may kill virtual registers. Make sure
552 // that LiveVariables is properly updated after updateTerminator replaces the
553 // terminators.
554 LiveVariables *LV = P->getAnalysisIfAvailable<LiveVariables>();
555
556 // Collect a list of virtual registers killed by the terminators.
557 SmallVector<unsigned, 4> KilledRegs;
558 if (LV)
559 for (iterator I = getFirstTerminator(), E = end(); I != E; ++I) {
560 MachineInstr *MI = I;
561 for (MachineInstr::mop_iterator OI = MI->operands_begin(),
562 OE = MI->operands_end(); OI != OE; ++OI) {
563 if (!OI->isReg() || !OI->isUse() || !OI->isKill() || OI->isUndef())
564 continue;
565 unsigned Reg = OI->getReg();
566 if (TargetRegisterInfo::isVirtualRegister(Reg) &&
567 LV->getVarInfo(Reg).removeKill(MI)) {
568 KilledRegs.push_back(Reg);
569 DEBUG(dbgs() << "Removing terminator kill: " << *MI);
570 OI->setIsKill(false);
571 }
572 }
573 }
574
Dan Gohman853d3fb2010-06-22 17:25:57 +0000575 ReplaceUsesOfBlockWith(Succ, NMBB);
576 updateTerminator();
577
578 // Insert unconditional "jump Succ" instruction in NMBB if necessary.
579 NMBB->addSuccessor(Succ);
580 if (!NMBB->isLayoutSuccessor(Succ)) {
581 Cond.clear();
582 MF->getTarget().getInstrInfo()->InsertBranch(*NMBB, Succ, NULL, Cond, dl);
583 }
584
585 // Fix PHI nodes in Succ so they refer to NMBB instead of this
586 for (MachineBasicBlock::iterator i = Succ->begin(), e = Succ->end();
587 i != e && i->isPHI(); ++i)
588 for (unsigned ni = 1, ne = i->getNumOperands(); ni != ne; ni += 2)
589 if (i->getOperand(ni+1).getMBB() == this)
590 i->getOperand(ni+1).setMBB(NMBB);
591
Jakob Stoklund Olesenac7caa02011-10-14 17:25:46 +0000592 // Inherit live-ins from the successor
593 for (MachineBasicBlock::livein_iterator I = Succ->livein_begin(),
594 E = Succ->livein_end(); I != E; ++I)
595 NMBB->addLiveIn(*I);
596
Jakob Stoklund Olesen57903352011-05-29 20:10:28 +0000597 // Update LiveVariables.
598 if (LV) {
599 // Restore kills of virtual registers that were killed by the terminators.
600 while (!KilledRegs.empty()) {
601 unsigned Reg = KilledRegs.pop_back_val();
602 for (iterator I = end(), E = begin(); I != E;) {
603 if (!(--I)->addRegisterKilled(Reg, NULL, /* addIfNotFound= */ false))
604 continue;
605 LV->getVarInfo(Reg).Kills.push_back(I);
606 DEBUG(dbgs() << "Restored terminator kill: " << *I);
607 break;
608 }
609 }
610 // Update relevant live-through information.
Dan Gohman853d3fb2010-06-22 17:25:57 +0000611 LV->addNewBlock(NMBB, this, Succ);
Jakob Stoklund Olesen57903352011-05-29 20:10:28 +0000612 }
Dan Gohman853d3fb2010-06-22 17:25:57 +0000613
614 if (MachineDominatorTree *MDT =
Evan Cheng19708922010-08-19 23:32:47 +0000615 P->getAnalysisIfAvailable<MachineDominatorTree>()) {
616 // Update dominator information.
617 MachineDomTreeNode *SucccDTNode = MDT->getNode(Succ);
618
619 bool IsNewIDom = true;
620 for (const_pred_iterator PI = Succ->pred_begin(), E = Succ->pred_end();
621 PI != E; ++PI) {
622 MachineBasicBlock *PredBB = *PI;
623 if (PredBB == NMBB)
624 continue;
625 if (!MDT->dominates(SucccDTNode, MDT->getNode(PredBB))) {
626 IsNewIDom = false;
627 break;
628 }
629 }
630
631 // We know "this" dominates the newly created basic block.
632 MachineDomTreeNode *NewDTNode = MDT->addNewBlock(NMBB, this);
633
634 // If all the other predecessors of "Succ" are dominated by "Succ" itself
635 // then the new block is the new immediate dominator of "Succ". Otherwise,
636 // the new block doesn't dominate anything.
637 if (IsNewIDom)
638 MDT->changeImmediateDominator(SucccDTNode, NewDTNode);
639 }
Dan Gohman853d3fb2010-06-22 17:25:57 +0000640
Evan Chenge0083842010-08-17 17:43:50 +0000641 if (MachineLoopInfo *MLI = P->getAnalysisIfAvailable<MachineLoopInfo>())
Dan Gohman853d3fb2010-06-22 17:25:57 +0000642 if (MachineLoop *TIL = MLI->getLoopFor(this)) {
643 // If one or the other blocks were not in a loop, the new block is not
644 // either, and thus LI doesn't need to be updated.
645 if (MachineLoop *DestLoop = MLI->getLoopFor(Succ)) {
646 if (TIL == DestLoop) {
647 // Both in the same loop, the NMBB joins loop.
648 DestLoop->addBasicBlockToLoop(NMBB, MLI->getBase());
649 } else if (TIL->contains(DestLoop)) {
650 // Edge from an outer loop to an inner loop. Add to the outer loop.
651 TIL->addBasicBlockToLoop(NMBB, MLI->getBase());
652 } else if (DestLoop->contains(TIL)) {
653 // Edge from an inner loop to an outer loop. Add to the outer loop.
654 DestLoop->addBasicBlockToLoop(NMBB, MLI->getBase());
655 } else {
656 // Edge from two loops with no containment relation. Because these
657 // are natural loops, we know that the destination block must be the
658 // header of its loop (adding a branch into a loop elsewhere would
659 // create an irreducible loop).
660 assert(DestLoop->getHeader() == Succ &&
661 "Should not create irreducible loops!");
662 if (MachineLoop *P = DestLoop->getParentLoop())
663 P->addBasicBlockToLoop(NMBB, MLI->getBase());
664 }
665 }
666 }
667
668 return NMBB;
669}
670
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000671/// removeFromParent - This method unlinks 'this' from the containing function,
672/// and returns it, but does not delete it.
673MachineBasicBlock *MachineBasicBlock::removeFromParent() {
674 assert(getParent() && "Not embedded in a function!");
675 getParent()->remove(this);
676 return this;
677}
678
679
680/// eraseFromParent - This method unlinks 'this' from the containing function,
681/// and deletes it.
682void MachineBasicBlock::eraseFromParent() {
683 assert(getParent() && "Not embedded in a function!");
684 getParent()->erase(this);
685}
686
687
Evan Cheng0370fad2007-06-04 06:44:01 +0000688/// ReplaceUsesOfBlockWith - Given a machine basic block that branched to
689/// 'Old', change the code and CFG so that it branches to 'New' instead.
690void MachineBasicBlock::ReplaceUsesOfBlockWith(MachineBasicBlock *Old,
691 MachineBasicBlock *New) {
692 assert(Old != New && "Cannot replace self with self!");
693
694 MachineBasicBlock::iterator I = end();
695 while (I != begin()) {
696 --I;
Chris Lattner749c6f62008-01-07 07:27:27 +0000697 if (!I->getDesc().isTerminator()) break;
Evan Cheng0370fad2007-06-04 06:44:01 +0000698
699 // Scan the operands of this machine instruction, replacing any uses of Old
700 // with New.
701 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
Dan Gohmand735b802008-10-03 15:45:36 +0000702 if (I->getOperand(i).isMBB() &&
Dan Gohman014278e2008-09-13 17:58:21 +0000703 I->getOperand(i).getMBB() == Old)
Chris Lattner8aa797a2007-12-30 23:10:15 +0000704 I->getOperand(i).setMBB(New);
Evan Cheng0370fad2007-06-04 06:44:01 +0000705 }
706
Dan Gohman5412d062009-05-05 21:10:19 +0000707 // Update the successor information.
Jakub Staszak7cc2b072011-06-16 20:22:37 +0000708 replaceSuccessor(Old, New);
Evan Cheng0370fad2007-06-04 06:44:01 +0000709}
710
Evan Cheng2bdb7d02007-06-18 22:43:58 +0000711/// CorrectExtraCFGEdges - Various pieces of code can cause excess edges in the
712/// CFG to be inserted. If we have proven that MBB can only branch to DestA and
Bill Wendlingc70d33112009-12-16 00:08:36 +0000713/// DestB, remove any other MBB successors from the CFG. DestA and DestB can be
714/// null.
Jakub Staszak12af5ff2011-06-16 18:01:17 +0000715///
Chris Lattnerf20c1a42007-12-31 04:56:33 +0000716/// Besides DestA and DestB, retain other edges leading to LandingPads
717/// (currently there can be only one; we don't check or require that here).
Evan Cheng2bdb7d02007-06-18 22:43:58 +0000718/// Note it is possible that DestA and/or DestB are LandingPads.
719bool MachineBasicBlock::CorrectExtraCFGEdges(MachineBasicBlock *DestA,
720 MachineBasicBlock *DestB,
721 bool isCond) {
Bill Wendlingc70d33112009-12-16 00:08:36 +0000722 // The values of DestA and DestB frequently come from a call to the
723 // 'TargetInstrInfo::AnalyzeBranch' method. We take our meaning of the initial
724 // values from there.
725 //
726 // 1. If both DestA and DestB are null, then the block ends with no branches
727 // (it falls through to its successor).
728 // 2. If DestA is set, DestB is null, and isCond is false, then the block ends
729 // with only an unconditional branch.
730 // 3. If DestA is set, DestB is null, and isCond is true, then the block ends
731 // with a conditional branch that falls through to a successor (DestB).
732 // 4. If DestA and DestB is set and isCond is true, then the block ends with a
733 // conditional branch followed by an unconditional branch. DestA is the
734 // 'true' destination and DestB is the 'false' destination.
735
Bill Wendlinge543d162010-04-01 00:00:43 +0000736 bool Changed = false;
Evan Cheng2bdb7d02007-06-18 22:43:58 +0000737
Chris Lattner7896c9f2009-12-03 00:50:42 +0000738 MachineFunction::iterator FallThru =
739 llvm::next(MachineFunction::iterator(this));
Bill Wendlinge543d162010-04-01 00:00:43 +0000740
741 if (DestA == 0 && DestB == 0) {
742 // Block falls through to successor.
743 DestA = FallThru;
744 DestB = FallThru;
745 } else if (DestA != 0 && DestB == 0) {
746 if (isCond)
747 // Block ends in conditional jump that falls through to successor.
Evan Cheng2bdb7d02007-06-18 22:43:58 +0000748 DestB = FallThru;
Evan Cheng2bdb7d02007-06-18 22:43:58 +0000749 } else {
Bill Wendlinge543d162010-04-01 00:00:43 +0000750 assert(DestA && DestB && isCond &&
751 "CFG in a bad state. Cannot correct CFG edges");
Evan Cheng2bdb7d02007-06-18 22:43:58 +0000752 }
Bill Wendlinge543d162010-04-01 00:00:43 +0000753
754 // Remove superfluous edges. I.e., those which aren't destinations of this
755 // basic block, duplicate edges, or landing pads.
756 SmallPtrSet<const MachineBasicBlock*, 8> SeenMBBs;
Evan Cheng2bdb7d02007-06-18 22:43:58 +0000757 MachineBasicBlock::succ_iterator SI = succ_begin();
Evan Cheng2bdb7d02007-06-18 22:43:58 +0000758 while (SI != succ_end()) {
Bill Wendlingc70d33112009-12-16 00:08:36 +0000759 const MachineBasicBlock *MBB = *SI;
Bill Wendlinge543d162010-04-01 00:00:43 +0000760 if (!SeenMBBs.insert(MBB) ||
761 (MBB != DestA && MBB != DestB && !MBB->isLandingPad())) {
762 // This is a superfluous edge, remove it.
Bill Wendling9e9cca42010-03-31 23:26:26 +0000763 SI = removeSuccessor(SI);
Bill Wendlinge543d162010-04-01 00:00:43 +0000764 Changed = true;
765 } else {
766 ++SI;
Evan Cheng2bdb7d02007-06-18 22:43:58 +0000767 }
768 }
Bill Wendlingc70d33112009-12-16 00:08:36 +0000769
Bill Wendlinge543d162010-04-01 00:00:43 +0000770 return Changed;
Evan Cheng2bdb7d02007-06-18 22:43:58 +0000771}
Evan Cheng2a085c32009-11-17 19:19:59 +0000772
Dale Johannesen73e884b2010-01-20 21:36:02 +0000773/// findDebugLoc - find the next valid DebugLoc starting at MBBI, skipping
Dale Johannesen10fedd22010-02-10 00:11:11 +0000774/// any DBG_VALUE instructions. Return UnknownLoc if there is none.
Dale Johannesen73e884b2010-01-20 21:36:02 +0000775DebugLoc
776MachineBasicBlock::findDebugLoc(MachineBasicBlock::iterator &MBBI) {
777 DebugLoc DL;
778 MachineBasicBlock::iterator E = end();
779 if (MBBI != E) {
780 // Skip debug declarations, we don't want a DebugLoc from them.
781 MachineBasicBlock::iterator MBBI2 = MBBI;
Chris Lattner518bb532010-02-09 19:54:29 +0000782 while (MBBI2 != E && MBBI2->isDebugValue())
Dale Johannesen73e884b2010-01-20 21:36:02 +0000783 MBBI2++;
784 if (MBBI2 != E)
785 DL = MBBI2->getDebugLoc();
786 }
787 return DL;
788}
789
Jakub Staszak7cc2b072011-06-16 20:22:37 +0000790/// getSuccWeight - Return weight of the edge from this block to MBB.
791///
792uint32_t MachineBasicBlock::getSuccWeight(MachineBasicBlock *succ) {
Jakub Staszak981d8262011-06-17 18:00:21 +0000793 if (Weights.empty())
794 return 0;
795
Jakub Staszak7cc2b072011-06-16 20:22:37 +0000796 succ_iterator I = std::find(Successors.begin(), Successors.end(), succ);
797 return *getWeightIterator(I);
798}
799
800/// getWeightIterator - Return wight iterator corresonding to the I successor
801/// iterator
802MachineBasicBlock::weight_iterator MachineBasicBlock::
803getWeightIterator(MachineBasicBlock::succ_iterator I) {
Jakub Staszak981d8262011-06-17 18:00:21 +0000804 assert(Weights.size() == Successors.size() && "Async weight list!");
Jakub Staszak7cc2b072011-06-16 20:22:37 +0000805 size_t index = std::distance(Successors.begin(), I);
806 assert(index < Weights.size() && "Not a current successor!");
807 return Weights.begin() + index;
808}
809
Evan Cheng2a085c32009-11-17 19:19:59 +0000810void llvm::WriteAsOperand(raw_ostream &OS, const MachineBasicBlock *MBB,
811 bool t) {
812 OS << "BB#" << MBB->getNumber();
813}
Dale Johannesen918f0f02010-01-20 00:19:24 +0000814