blob: 132dc333fef290cf55967a9d65c0e503aa7b2339 [file] [log] [blame]
Chris Lattner01d1ee32002-05-21 20:50:24 +00001//===- SimplifyCFG.cpp - Code to perform CFG simplification ---------------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// 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.
Misha Brukmanfd939082005-04-21 23:48:37 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner01d1ee32002-05-21 20:50:24 +00009//
Chris Lattnerbb190ac2002-10-08 21:36:33 +000010// Peephole optimize the CFG.
Chris Lattner01d1ee32002-05-21 20:50:24 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattner218a8222004-06-20 01:13:18 +000014#define DEBUG_TYPE "simplifycfg"
Chris Lattner01d1ee32002-05-21 20:50:24 +000015#include "llvm/Transforms/Utils/Local.h"
Chris Lattner723c66d2004-02-11 03:36:04 +000016#include "llvm/Constants.h"
17#include "llvm/Instructions.h"
Devang Patel383d7ed2009-02-03 22:12:02 +000018#include "llvm/IntrinsicInst.h"
Chris Lattner0d560082004-02-24 05:38:11 +000019#include "llvm/Type.h"
Reid Spencerc1030572007-01-19 21:13:56 +000020#include "llvm/DerivedTypes.h"
Dale Johannesenf8bc3002009-05-13 18:25:07 +000021#include "llvm/GlobalVariable.h"
Chris Lattner01d1ee32002-05-21 20:50:24 +000022#include "llvm/Support/CFG.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000023#include "llvm/Support/Debug.h"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +000024#include "llvm/Support/raw_ostream.h"
Chris Lattner79066fa2007-01-30 23:46:24 +000025#include "llvm/Analysis/ConstantFolding.h"
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +000026#include "llvm/Target/TargetData.h"
Chris Lattnereaba3a12005-09-19 23:49:37 +000027#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Dan Gohman2c635662009-10-30 22:39:04 +000028#include "llvm/ADT/DenseMap.h"
Chris Lattner93e985f2007-02-13 02:10:56 +000029#include "llvm/ADT/SmallVector.h"
Chris Lattnerc9951232007-04-02 01:44:59 +000030#include "llvm/ADT/SmallPtrSet.h"
Evan Cheng502a4f52008-06-12 21:15:59 +000031#include "llvm/ADT/Statistic.h"
Chris Lattner01d1ee32002-05-21 20:50:24 +000032#include <algorithm>
33#include <functional>
Chris Lattnerd52c2612004-02-24 07:23:58 +000034#include <set>
Chris Lattner698f96f2004-10-18 04:07:22 +000035#include <map>
Chris Lattnerf7703df2004-01-09 06:12:26 +000036using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000037
Evan Cheng502a4f52008-06-12 21:15:59 +000038STATISTIC(NumSpeculations, "Number of speculative executed instructions");
39
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +000040namespace {
41class SimplifyCFGOpt {
42 const TargetData *const TD;
43
44 ConstantInt *GetConstantInt(Value *V);
45 Value *GatherConstantSetEQs(Value *V, std::vector<ConstantInt*> &Values);
46 Value *GatherConstantSetNEs(Value *V, std::vector<ConstantInt*> &Values);
47 bool GatherValueComparisons(Instruction *Cond, Value *&CompVal,
48 std::vector<ConstantInt*> &Values);
49 Value *isValueEqualityComparison(TerminatorInst *TI);
50 BasicBlock *GetValueEqualityComparisonCases(TerminatorInst *TI,
51 std::vector<std::pair<ConstantInt*, BasicBlock*> > &Cases);
52 bool SimplifyEqualityComparisonWithOnlyPredecessor(TerminatorInst *TI,
53 BasicBlock *Pred);
54 bool FoldValueComparisonIntoPredecessors(TerminatorInst *TI);
55
56public:
57 explicit SimplifyCFGOpt(const TargetData *td) : TD(td) {}
58 bool run(BasicBlock *BB);
59};
60}
61
Chris Lattner2bdcb562005-08-03 00:19:45 +000062/// SafeToMergeTerminators - Return true if it is safe to merge these two
63/// terminator instructions together.
64///
65static bool SafeToMergeTerminators(TerminatorInst *SI1, TerminatorInst *SI2) {
66 if (SI1 == SI2) return false; // Can't merge with self!
67
68 // It is not safe to merge these two switch instructions if they have a common
69 // successor, and if that successor has a PHI node, and if *that* PHI node has
70 // conflicting incoming values from the two switch blocks.
71 BasicBlock *SI1BB = SI1->getParent();
72 BasicBlock *SI2BB = SI2->getParent();
Chris Lattnerc9951232007-04-02 01:44:59 +000073 SmallPtrSet<BasicBlock*, 16> SI1Succs(succ_begin(SI1BB), succ_end(SI1BB));
Chris Lattner2bdcb562005-08-03 00:19:45 +000074
75 for (succ_iterator I = succ_begin(SI2BB), E = succ_end(SI2BB); I != E; ++I)
76 if (SI1Succs.count(*I))
77 for (BasicBlock::iterator BBI = (*I)->begin();
78 isa<PHINode>(BBI); ++BBI) {
79 PHINode *PN = cast<PHINode>(BBI);
80 if (PN->getIncomingValueForBlock(SI1BB) !=
81 PN->getIncomingValueForBlock(SI2BB))
82 return false;
83 }
84
85 return true;
86}
87
88/// AddPredecessorToBlock - Update PHI nodes in Succ to indicate that there will
89/// now be entries in it from the 'NewPred' block. The values that will be
90/// flowing into the PHI nodes will be the same as those coming in from
91/// ExistPred, an existing predecessor of Succ.
92static void AddPredecessorToBlock(BasicBlock *Succ, BasicBlock *NewPred,
93 BasicBlock *ExistPred) {
94 assert(std::find(succ_begin(ExistPred), succ_end(ExistPred), Succ) !=
95 succ_end(ExistPred) && "ExistPred is not a predecessor of Succ!");
96 if (!isa<PHINode>(Succ->begin())) return; // Quick exit if nothing to do
97
Chris Lattner093a4382008-07-13 22:23:11 +000098 PHINode *PN;
99 for (BasicBlock::iterator I = Succ->begin();
100 (PN = dyn_cast<PHINode>(I)); ++I)
101 PN->addIncoming(PN->getIncomingValueForBlock(ExistPred), NewPred);
Chris Lattner2bdcb562005-08-03 00:19:45 +0000102}
103
Chris Lattner7e663482005-08-03 00:11:16 +0000104
Chris Lattner723c66d2004-02-11 03:36:04 +0000105/// GetIfCondition - Given a basic block (BB) with two predecessors (and
106/// presumably PHI nodes in it), check to see if the merge at this block is due
107/// to an "if condition". If so, return the boolean condition that determines
108/// which entry into BB will be taken. Also, return by references the block
109/// that will be entered from if the condition is true, and the block that will
110/// be entered if the condition is false.
Misha Brukmanfd939082005-04-21 23:48:37 +0000111///
Chris Lattner723c66d2004-02-11 03:36:04 +0000112///
113static Value *GetIfCondition(BasicBlock *BB,
114 BasicBlock *&IfTrue, BasicBlock *&IfFalse) {
115 assert(std::distance(pred_begin(BB), pred_end(BB)) == 2 &&
116 "Function can only handle blocks with 2 predecessors!");
117 BasicBlock *Pred1 = *pred_begin(BB);
118 BasicBlock *Pred2 = *++pred_begin(BB);
119
120 // We can only handle branches. Other control flow will be lowered to
121 // branches if possible anyway.
122 if (!isa<BranchInst>(Pred1->getTerminator()) ||
123 !isa<BranchInst>(Pred2->getTerminator()))
124 return 0;
125 BranchInst *Pred1Br = cast<BranchInst>(Pred1->getTerminator());
126 BranchInst *Pred2Br = cast<BranchInst>(Pred2->getTerminator());
127
128 // Eliminate code duplication by ensuring that Pred1Br is conditional if
129 // either are.
130 if (Pred2Br->isConditional()) {
131 // If both branches are conditional, we don't have an "if statement". In
132 // reality, we could transform this case, but since the condition will be
133 // required anyway, we stand no chance of eliminating it, so the xform is
134 // probably not profitable.
135 if (Pred1Br->isConditional())
136 return 0;
137
138 std::swap(Pred1, Pred2);
139 std::swap(Pred1Br, Pred2Br);
140 }
141
142 if (Pred1Br->isConditional()) {
143 // If we found a conditional branch predecessor, make sure that it branches
144 // to BB and Pred2Br. If it doesn't, this isn't an "if statement".
145 if (Pred1Br->getSuccessor(0) == BB &&
146 Pred1Br->getSuccessor(1) == Pred2) {
147 IfTrue = Pred1;
148 IfFalse = Pred2;
149 } else if (Pred1Br->getSuccessor(0) == Pred2 &&
150 Pred1Br->getSuccessor(1) == BB) {
151 IfTrue = Pred2;
152 IfFalse = Pred1;
153 } else {
154 // We know that one arm of the conditional goes to BB, so the other must
155 // go somewhere unrelated, and this must not be an "if statement".
156 return 0;
157 }
158
159 // The only thing we have to watch out for here is to make sure that Pred2
160 // doesn't have incoming edges from other blocks. If it does, the condition
161 // doesn't dominate BB.
162 if (++pred_begin(Pred2) != pred_end(Pred2))
163 return 0;
164
165 return Pred1Br->getCondition();
166 }
167
168 // Ok, if we got here, both predecessors end with an unconditional branch to
169 // BB. Don't panic! If both blocks only have a single (identical)
170 // predecessor, and THAT is a conditional branch, then we're all ok!
171 if (pred_begin(Pred1) == pred_end(Pred1) ||
172 ++pred_begin(Pred1) != pred_end(Pred1) ||
173 pred_begin(Pred2) == pred_end(Pred2) ||
174 ++pred_begin(Pred2) != pred_end(Pred2) ||
175 *pred_begin(Pred1) != *pred_begin(Pred2))
176 return 0;
177
178 // Otherwise, if this is a conditional branch, then we can use it!
179 BasicBlock *CommonPred = *pred_begin(Pred1);
180 if (BranchInst *BI = dyn_cast<BranchInst>(CommonPred->getTerminator())) {
181 assert(BI->isConditional() && "Two successors but not conditional?");
182 if (BI->getSuccessor(0) == Pred1) {
183 IfTrue = Pred1;
184 IfFalse = Pred2;
185 } else {
186 IfTrue = Pred2;
187 IfFalse = Pred1;
188 }
189 return BI->getCondition();
190 }
191 return 0;
192}
193
Bill Wendling5049fa62009-01-19 23:43:56 +0000194/// DominatesMergePoint - If we have a merge point of an "if condition" as
195/// accepted above, return true if the specified value dominates the block. We
196/// don't handle the true generality of domination here, just a special case
197/// which works well enough for us.
198///
199/// If AggressiveInsts is non-null, and if V does not dominate BB, we check to
200/// see if V (which must be an instruction) is cheap to compute and is
201/// non-trapping. If both are true, the instruction is inserted into the set
202/// and true is returned.
Chris Lattner9c078662004-10-14 05:13:36 +0000203static bool DominatesMergePoint(Value *V, BasicBlock *BB,
204 std::set<Instruction*> *AggressiveInsts) {
Chris Lattner570751c2004-04-09 22:50:22 +0000205 Instruction *I = dyn_cast<Instruction>(V);
Chris Lattnerb74b1812006-10-20 00:42:07 +0000206 if (!I) {
207 // Non-instructions all dominate instructions, but not all constantexprs
208 // can be executed unconditionally.
209 if (ConstantExpr *C = dyn_cast<ConstantExpr>(V))
210 if (C->canTrap())
211 return false;
212 return true;
213 }
Chris Lattner570751c2004-04-09 22:50:22 +0000214 BasicBlock *PBB = I->getParent();
Chris Lattner723c66d2004-02-11 03:36:04 +0000215
Chris Lattnerda895d62005-02-27 06:18:25 +0000216 // We don't want to allow weird loops that might have the "if condition" in
Chris Lattner570751c2004-04-09 22:50:22 +0000217 // the bottom of this block.
218 if (PBB == BB) return false;
Chris Lattner723c66d2004-02-11 03:36:04 +0000219
Chris Lattner570751c2004-04-09 22:50:22 +0000220 // If this instruction is defined in a block that contains an unconditional
221 // branch to BB, then it must be in the 'conditional' part of the "if
222 // statement".
223 if (BranchInst *BI = dyn_cast<BranchInst>(PBB->getTerminator()))
224 if (BI->isUnconditional() && BI->getSuccessor(0) == BB) {
Chris Lattner9c078662004-10-14 05:13:36 +0000225 if (!AggressiveInsts) return false;
Chris Lattner570751c2004-04-09 22:50:22 +0000226 // Okay, it looks like the instruction IS in the "condition". Check to
Dan Gohman4bb31bf2010-03-30 20:04:57 +0000227 // see if it's a cheap instruction to unconditionally compute, and if it
Chris Lattner570751c2004-04-09 22:50:22 +0000228 // only uses stuff defined outside of the condition. If so, hoist it out.
Eli Friedman0b79a772009-07-17 04:28:42 +0000229 if (!I->isSafeToSpeculativelyExecute())
230 return false;
231
Chris Lattner570751c2004-04-09 22:50:22 +0000232 switch (I->getOpcode()) {
233 default: return false; // Cannot hoist this out safely.
Dale Johannesen3a56d142009-03-06 21:08:33 +0000234 case Instruction::Load: {
Eli Friedman0b79a772009-07-17 04:28:42 +0000235 // We have to check to make sure there are no instructions before the
236 // load in its basic block, as we are going to hoist the loop out to
237 // its predecessor.
Dale Johannesen3a56d142009-03-06 21:08:33 +0000238 BasicBlock::iterator IP = PBB->begin();
239 while (isa<DbgInfoIntrinsic>(IP))
240 IP++;
241 if (IP != BasicBlock::iterator(I))
Chris Lattner570751c2004-04-09 22:50:22 +0000242 return false;
243 break;
Dale Johannesen3a56d142009-03-06 21:08:33 +0000244 }
Chris Lattner570751c2004-04-09 22:50:22 +0000245 case Instruction::Add:
246 case Instruction::Sub:
247 case Instruction::And:
248 case Instruction::Or:
249 case Instruction::Xor:
250 case Instruction::Shl:
Reid Spencer3822ff52006-11-08 06:47:33 +0000251 case Instruction::LShr:
252 case Instruction::AShr:
Reid Spencere4d87aa2006-12-23 06:05:41 +0000253 case Instruction::ICmp:
Chris Lattner570751c2004-04-09 22:50:22 +0000254 break; // These are all cheap and non-trapping instructions.
255 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000256
Chris Lattner570751c2004-04-09 22:50:22 +0000257 // Okay, we can only really hoist these out if their operands are not
258 // defined in the conditional region.
Gabor Greiff7ea3632008-06-10 22:03:26 +0000259 for (User::op_iterator i = I->op_begin(), e = I->op_end(); i != e; ++i)
260 if (!DominatesMergePoint(*i, BB, 0))
Chris Lattner570751c2004-04-09 22:50:22 +0000261 return false;
Chris Lattner9c078662004-10-14 05:13:36 +0000262 // Okay, it's safe to do this! Remember this instruction.
263 AggressiveInsts->insert(I);
Chris Lattner570751c2004-04-09 22:50:22 +0000264 }
265
Chris Lattner723c66d2004-02-11 03:36:04 +0000266 return true;
267}
Chris Lattner01d1ee32002-05-21 20:50:24 +0000268
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000269/// GetConstantInt - Extract ConstantInt from value, looking through IntToPtr
270/// and PointerNullValue. Return NULL if value is not a constant int.
271ConstantInt *SimplifyCFGOpt::GetConstantInt(Value *V) {
272 // Normal constant int.
273 ConstantInt *CI = dyn_cast<ConstantInt>(V);
Duncan Sands1df98592010-02-16 11:11:14 +0000274 if (CI || !TD || !isa<Constant>(V) || !V->getType()->isPointerTy())
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000275 return CI;
276
277 // This is some kind of pointer constant. Turn it into a pointer-sized
278 // ConstantInt if possible.
279 const IntegerType *PtrTy = TD->getIntPtrType(V->getContext());
280
281 // Null pointer means 0, see SelectionDAGBuilder::getValue(const Value*).
282 if (isa<ConstantPointerNull>(V))
283 return ConstantInt::get(PtrTy, 0);
284
285 // IntToPtr const int.
286 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V))
287 if (CE->getOpcode() == Instruction::IntToPtr)
288 if (ConstantInt *CI = dyn_cast<ConstantInt>(CE->getOperand(0))) {
289 // The constant is very likely to have the right type already.
290 if (CI->getType() == PtrTy)
291 return CI;
292 else
293 return cast<ConstantInt>
294 (ConstantExpr::getIntegerCast(CI, PtrTy, /*isSigned=*/false));
295 }
296 return 0;
297}
298
Bill Wendling5049fa62009-01-19 23:43:56 +0000299/// GatherConstantSetEQs - Given a potentially 'or'd together collection of
300/// icmp_eq instructions that compare a value against a constant, return the
301/// value being compared, and stick the constant into the Values vector.
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000302Value *SimplifyCFGOpt::
303GatherConstantSetEQs(Value *V, std::vector<ConstantInt*> &Values) {
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000304 Instruction *Inst = dyn_cast<Instruction>(V);
305 if (Inst == 0) return 0;
306
307 if (Inst->getOpcode() == Instruction::ICmp &&
308 cast<ICmpInst>(Inst)->getPredicate() == ICmpInst::ICMP_EQ) {
309 if (ConstantInt *C = GetConstantInt(Inst->getOperand(1))) {
310 Values.push_back(C);
311 return Inst->getOperand(0);
Chris Lattner0d560082004-02-24 05:38:11 +0000312 }
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000313 if (ConstantInt *C = GetConstantInt(Inst->getOperand(0))) {
314 Values.push_back(C);
315 return Inst->getOperand(1);
316 }
317 } else if (Inst->getOpcode() == Instruction::Or) {
318 if (Value *LHS = GatherConstantSetEQs(Inst->getOperand(0), Values))
319 if (Value *RHS = GatherConstantSetEQs(Inst->getOperand(1), Values))
320 if (LHS == RHS)
321 return LHS;
Anton Korobeynikov07e6e562008-02-20 11:26:25 +0000322 }
Chris Lattner0d560082004-02-24 05:38:11 +0000323 return 0;
324}
325
Bill Wendling5049fa62009-01-19 23:43:56 +0000326/// GatherConstantSetNEs - Given a potentially 'and'd together collection of
327/// setne instructions that compare a value against a constant, return the value
328/// being compared, and stick the constant into the Values vector.
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000329Value *SimplifyCFGOpt::
330GatherConstantSetNEs(Value *V, std::vector<ConstantInt*> &Values) {
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000331 Instruction *Inst = dyn_cast<Instruction>(V);
332 if (Inst == 0) return 0;
333
334 if (Inst->getOpcode() == Instruction::ICmp &&
335 cast<ICmpInst>(Inst)->getPredicate() == ICmpInst::ICMP_NE) {
336 if (ConstantInt *C = GetConstantInt(Inst->getOperand(1))) {
337 Values.push_back(C);
338 return Inst->getOperand(0);
Chris Lattner0d560082004-02-24 05:38:11 +0000339 }
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000340 if (ConstantInt *C = GetConstantInt(Inst->getOperand(0))) {
341 Values.push_back(C);
342 return Inst->getOperand(1);
343 }
344 } else if (Inst->getOpcode() == Instruction::And) {
345 if (Value *LHS = GatherConstantSetNEs(Inst->getOperand(0), Values))
346 if (Value *RHS = GatherConstantSetNEs(Inst->getOperand(1), Values))
347 if (LHS == RHS)
348 return LHS;
Anton Korobeynikov07e6e562008-02-20 11:26:25 +0000349 }
Chris Lattner0d560082004-02-24 05:38:11 +0000350 return 0;
351}
352
Chris Lattner0d560082004-02-24 05:38:11 +0000353/// GatherValueComparisons - If the specified Cond is an 'and' or 'or' of a
354/// bunch of comparisons of one value against constants, return the value and
355/// the constants being compared.
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000356bool SimplifyCFGOpt::GatherValueComparisons(Instruction *Cond, Value *&CompVal,
357 std::vector<ConstantInt*> &Values) {
Chris Lattner0d560082004-02-24 05:38:11 +0000358 if (Cond->getOpcode() == Instruction::Or) {
359 CompVal = GatherConstantSetEQs(Cond, Values);
360
361 // Return true to indicate that the condition is true if the CompVal is
362 // equal to one of the constants.
363 return true;
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000364 }
365 if (Cond->getOpcode() == Instruction::And) {
Chris Lattner0d560082004-02-24 05:38:11 +0000366 CompVal = GatherConstantSetNEs(Cond, Values);
Misha Brukmanfd939082005-04-21 23:48:37 +0000367
Chris Lattner0d560082004-02-24 05:38:11 +0000368 // Return false to indicate that the condition is false if the CompVal is
369 // equal to one of the constants.
370 return false;
371 }
372 return false;
373}
374
Eli Friedman080efb82008-12-16 20:54:32 +0000375static void EraseTerminatorInstAndDCECond(TerminatorInst *TI) {
376 Instruction* Cond = 0;
377 if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
378 Cond = dyn_cast<Instruction>(SI->getCondition());
379 } else if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
380 if (BI->isConditional())
381 Cond = dyn_cast<Instruction>(BI->getCondition());
Frits van Bommel7ac40c32010-12-05 18:29:03 +0000382 } else if (IndirectBrInst *IBI = dyn_cast<IndirectBrInst>(TI)) {
383 Cond = dyn_cast<Instruction>(IBI->getAddress());
Eli Friedman080efb82008-12-16 20:54:32 +0000384 }
385
386 TI->eraseFromParent();
387 if (Cond) RecursivelyDeleteTriviallyDeadInstructions(Cond);
388}
389
Chris Lattner9fd49552008-11-27 23:25:44 +0000390/// isValueEqualityComparison - Return true if the specified terminator checks
391/// to see if a value is equal to constant integer value.
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000392Value *SimplifyCFGOpt::isValueEqualityComparison(TerminatorInst *TI) {
393 Value *CV = 0;
Chris Lattner4bebf082004-03-16 19:45:22 +0000394 if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
395 // Do not permit merging of large switch instructions into their
396 // predecessors unless there is only one predecessor.
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000397 if (SI->getNumSuccessors()*std::distance(pred_begin(SI->getParent()),
398 pred_end(SI->getParent())) <= 128)
399 CV = SI->getCondition();
400 } else if (BranchInst *BI = dyn_cast<BranchInst>(TI))
Chris Lattner542f1492004-02-28 21:28:10 +0000401 if (BI->isConditional() && BI->getCondition()->hasOneUse())
Reid Spencere4d87aa2006-12-23 06:05:41 +0000402 if (ICmpInst *ICI = dyn_cast<ICmpInst>(BI->getCondition()))
403 if ((ICI->getPredicate() == ICmpInst::ICMP_EQ ||
404 ICI->getPredicate() == ICmpInst::ICMP_NE) &&
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000405 GetConstantInt(ICI->getOperand(1)))
406 CV = ICI->getOperand(0);
407
408 // Unwrap any lossless ptrtoint cast.
409 if (TD && CV && CV->getType() == TD->getIntPtrType(CV->getContext()))
410 if (PtrToIntInst *PTII = dyn_cast<PtrToIntInst>(CV))
411 CV = PTII->getOperand(0);
412 return CV;
Chris Lattner542f1492004-02-28 21:28:10 +0000413}
414
Bill Wendling5049fa62009-01-19 23:43:56 +0000415/// GetValueEqualityComparisonCases - Given a value comparison instruction,
416/// decode all of the 'cases' that it represents and return the 'default' block.
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000417BasicBlock *SimplifyCFGOpt::
Misha Brukmanfd939082005-04-21 23:48:37 +0000418GetValueEqualityComparisonCases(TerminatorInst *TI,
Chris Lattner542f1492004-02-28 21:28:10 +0000419 std::vector<std::pair<ConstantInt*,
420 BasicBlock*> > &Cases) {
421 if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
422 Cases.reserve(SI->getNumCases());
423 for (unsigned i = 1, e = SI->getNumCases(); i != e; ++i)
Chris Lattnerbe54dcc2005-02-26 18:33:28 +0000424 Cases.push_back(std::make_pair(SI->getCaseValue(i), SI->getSuccessor(i)));
Chris Lattner542f1492004-02-28 21:28:10 +0000425 return SI->getDefaultDest();
426 }
427
428 BranchInst *BI = cast<BranchInst>(TI);
Reid Spencere4d87aa2006-12-23 06:05:41 +0000429 ICmpInst *ICI = cast<ICmpInst>(BI->getCondition());
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000430 Cases.push_back(std::make_pair(GetConstantInt(ICI->getOperand(1)),
Reid Spencere4d87aa2006-12-23 06:05:41 +0000431 BI->getSuccessor(ICI->getPredicate() ==
432 ICmpInst::ICMP_NE)));
433 return BI->getSuccessor(ICI->getPredicate() == ICmpInst::ICMP_EQ);
Chris Lattner542f1492004-02-28 21:28:10 +0000434}
435
436
Bill Wendling5049fa62009-01-19 23:43:56 +0000437/// EliminateBlockCases - Given a vector of bb/value pairs, remove any entries
438/// in the list that match the specified block.
Misha Brukmanfd939082005-04-21 23:48:37 +0000439static void EliminateBlockCases(BasicBlock *BB,
Chris Lattner623369a2005-02-24 06:17:52 +0000440 std::vector<std::pair<ConstantInt*, BasicBlock*> > &Cases) {
441 for (unsigned i = 0, e = Cases.size(); i != e; ++i)
442 if (Cases[i].second == BB) {
443 Cases.erase(Cases.begin()+i);
444 --i; --e;
445 }
446}
447
Bill Wendling5049fa62009-01-19 23:43:56 +0000448/// ValuesOverlap - Return true if there are any keys in C1 that exist in C2 as
449/// well.
Chris Lattner623369a2005-02-24 06:17:52 +0000450static bool
451ValuesOverlap(std::vector<std::pair<ConstantInt*, BasicBlock*> > &C1,
452 std::vector<std::pair<ConstantInt*, BasicBlock*> > &C2) {
453 std::vector<std::pair<ConstantInt*, BasicBlock*> > *V1 = &C1, *V2 = &C2;
454
455 // Make V1 be smaller than V2.
456 if (V1->size() > V2->size())
457 std::swap(V1, V2);
458
459 if (V1->size() == 0) return false;
460 if (V1->size() == 1) {
461 // Just scan V2.
462 ConstantInt *TheVal = (*V1)[0].first;
463 for (unsigned i = 0, e = V2->size(); i != e; ++i)
464 if (TheVal == (*V2)[i].first)
465 return true;
466 }
467
468 // Otherwise, just sort both lists and compare element by element.
469 std::sort(V1->begin(), V1->end());
470 std::sort(V2->begin(), V2->end());
471 unsigned i1 = 0, i2 = 0, e1 = V1->size(), e2 = V2->size();
472 while (i1 != e1 && i2 != e2) {
473 if ((*V1)[i1].first == (*V2)[i2].first)
474 return true;
475 if ((*V1)[i1].first < (*V2)[i2].first)
476 ++i1;
477 else
478 ++i2;
479 }
480 return false;
481}
482
Bill Wendling5049fa62009-01-19 23:43:56 +0000483/// SimplifyEqualityComparisonWithOnlyPredecessor - If TI is known to be a
484/// terminator instruction and its block is known to only have a single
485/// predecessor block, check to see if that predecessor is also a value
486/// comparison with the same value, and if that comparison determines the
487/// outcome of this comparison. If so, simplify TI. This does a very limited
488/// form of jump threading.
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000489bool SimplifyCFGOpt::
490SimplifyEqualityComparisonWithOnlyPredecessor(TerminatorInst *TI,
491 BasicBlock *Pred) {
Chris Lattner623369a2005-02-24 06:17:52 +0000492 Value *PredVal = isValueEqualityComparison(Pred->getTerminator());
493 if (!PredVal) return false; // Not a value comparison in predecessor.
494
495 Value *ThisVal = isValueEqualityComparison(TI);
496 assert(ThisVal && "This isn't a value comparison!!");
497 if (ThisVal != PredVal) return false; // Different predicates.
498
499 // Find out information about when control will move from Pred to TI's block.
500 std::vector<std::pair<ConstantInt*, BasicBlock*> > PredCases;
501 BasicBlock *PredDef = GetValueEqualityComparisonCases(Pred->getTerminator(),
502 PredCases);
503 EliminateBlockCases(PredDef, PredCases); // Remove default from cases.
Misha Brukmanfd939082005-04-21 23:48:37 +0000504
Chris Lattner623369a2005-02-24 06:17:52 +0000505 // Find information about how control leaves this block.
506 std::vector<std::pair<ConstantInt*, BasicBlock*> > ThisCases;
507 BasicBlock *ThisDef = GetValueEqualityComparisonCases(TI, ThisCases);
508 EliminateBlockCases(ThisDef, ThisCases); // Remove default from cases.
509
510 // If TI's block is the default block from Pred's comparison, potentially
511 // simplify TI based on this knowledge.
512 if (PredDef == TI->getParent()) {
513 // If we are here, we know that the value is none of those cases listed in
514 // PredCases. If there are any cases in ThisCases that are in PredCases, we
515 // can simplify TI.
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000516 if (!ValuesOverlap(PredCases, ThisCases))
517 return false;
518
519 if (isa<BranchInst>(TI)) {
520 // Okay, one of the successors of this condbr is dead. Convert it to a
521 // uncond br.
522 assert(ThisCases.size() == 1 && "Branch can only have one case!");
523 // Insert the new branch.
524 Instruction *NI = BranchInst::Create(ThisDef, TI);
525 (void) NI;
Chris Lattner623369a2005-02-24 06:17:52 +0000526
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000527 // Remove PHI node entries for the dead edge.
528 ThisCases[0].second->removePredecessor(TI->getParent());
Chris Lattner623369a2005-02-24 06:17:52 +0000529
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000530 DEBUG(dbgs() << "Threading pred instr: " << *Pred->getTerminator()
531 << "Through successor TI: " << *TI << "Leaving: " << *NI << "\n");
Chris Lattner623369a2005-02-24 06:17:52 +0000532
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000533 EraseTerminatorInstAndDCECond(TI);
534 return true;
Chris Lattner623369a2005-02-24 06:17:52 +0000535 }
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000536
537 SwitchInst *SI = cast<SwitchInst>(TI);
538 // Okay, TI has cases that are statically dead, prune them away.
539 SmallPtrSet<Constant*, 16> DeadCases;
Chris Lattner623369a2005-02-24 06:17:52 +0000540 for (unsigned i = 0, e = PredCases.size(); i != e; ++i)
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000541 DeadCases.insert(PredCases[i].first);
Chris Lattner623369a2005-02-24 06:17:52 +0000542
David Greene89d6fd32010-01-05 01:26:52 +0000543 DEBUG(dbgs() << "Threading pred instr: " << *Pred->getTerminator()
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000544 << "Through successor TI: " << *TI);
Chris Lattner623369a2005-02-24 06:17:52 +0000545
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000546 for (unsigned i = SI->getNumCases()-1; i != 0; --i)
547 if (DeadCases.count(SI->getCaseValue(i))) {
548 SI->getSuccessor(i)->removePredecessor(TI->getParent());
549 SI->removeCase(i);
550 }
551
552 DEBUG(dbgs() << "Leaving: " << *TI << "\n");
Chris Lattner623369a2005-02-24 06:17:52 +0000553 return true;
554 }
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000555
556 // Otherwise, TI's block must correspond to some matched value. Find out
557 // which value (or set of values) this is.
558 ConstantInt *TIV = 0;
559 BasicBlock *TIBB = TI->getParent();
560 for (unsigned i = 0, e = PredCases.size(); i != e; ++i)
561 if (PredCases[i].second == TIBB) {
562 if (TIV != 0)
563 return false; // Cannot handle multiple values coming to this block.
564 TIV = PredCases[i].first;
565 }
566 assert(TIV && "No edge from pred to succ?");
567
568 // Okay, we found the one constant that our value can be if we get into TI's
569 // BB. Find out which successor will unconditionally be branched to.
570 BasicBlock *TheRealDest = 0;
571 for (unsigned i = 0, e = ThisCases.size(); i != e; ++i)
572 if (ThisCases[i].first == TIV) {
573 TheRealDest = ThisCases[i].second;
574 break;
575 }
576
577 // If not handled by any explicit cases, it is handled by the default case.
578 if (TheRealDest == 0) TheRealDest = ThisDef;
579
580 // Remove PHI node entries for dead edges.
581 BasicBlock *CheckEdge = TheRealDest;
582 for (succ_iterator SI = succ_begin(TIBB), e = succ_end(TIBB); SI != e; ++SI)
583 if (*SI != CheckEdge)
584 (*SI)->removePredecessor(TIBB);
585 else
586 CheckEdge = 0;
587
588 // Insert the new branch.
589 Instruction *NI = BranchInst::Create(TheRealDest, TI);
590 (void) NI;
591
592 DEBUG(dbgs() << "Threading pred instr: " << *Pred->getTerminator()
593 << "Through successor TI: " << *TI << "Leaving: " << *NI << "\n");
594
595 EraseTerminatorInstAndDCECond(TI);
596 return true;
Chris Lattner623369a2005-02-24 06:17:52 +0000597}
598
Dale Johannesenc81f5442009-03-12 21:01:11 +0000599namespace {
600 /// ConstantIntOrdering - This class implements a stable ordering of constant
601 /// integers that does not depend on their address. This is important for
602 /// applications that sort ConstantInt's to ensure uniqueness.
603 struct ConstantIntOrdering {
604 bool operator()(const ConstantInt *LHS, const ConstantInt *RHS) const {
605 return LHS->getValue().ult(RHS->getValue());
606 }
607 };
608}
Dale Johannesena9537cf2009-03-12 01:00:26 +0000609
Bill Wendling5049fa62009-01-19 23:43:56 +0000610/// FoldValueComparisonIntoPredecessors - The specified terminator is a value
611/// equality comparison instruction (either a switch or a branch on "X == c").
612/// See if any of the predecessors of the terminator block are value comparisons
613/// on the same value. If so, and if safe to do so, fold them together.
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000614bool SimplifyCFGOpt::FoldValueComparisonIntoPredecessors(TerminatorInst *TI) {
Chris Lattner542f1492004-02-28 21:28:10 +0000615 BasicBlock *BB = TI->getParent();
616 Value *CV = isValueEqualityComparison(TI); // CondVal
617 assert(CV && "Not a comparison?");
618 bool Changed = false;
619
Chris Lattner82442432008-02-18 07:42:56 +0000620 SmallVector<BasicBlock*, 16> Preds(pred_begin(BB), pred_end(BB));
Chris Lattner542f1492004-02-28 21:28:10 +0000621 while (!Preds.empty()) {
Dan Gohmane9d87f42009-05-06 17:22:41 +0000622 BasicBlock *Pred = Preds.pop_back_val();
Misha Brukmanfd939082005-04-21 23:48:37 +0000623
Chris Lattner542f1492004-02-28 21:28:10 +0000624 // See if the predecessor is a comparison with the same value.
625 TerminatorInst *PTI = Pred->getTerminator();
626 Value *PCV = isValueEqualityComparison(PTI); // PredCondVal
627
628 if (PCV == CV && SafeToMergeTerminators(TI, PTI)) {
629 // Figure out which 'cases' to copy from SI to PSI.
630 std::vector<std::pair<ConstantInt*, BasicBlock*> > BBCases;
631 BasicBlock *BBDefault = GetValueEqualityComparisonCases(TI, BBCases);
632
633 std::vector<std::pair<ConstantInt*, BasicBlock*> > PredCases;
634 BasicBlock *PredDefault = GetValueEqualityComparisonCases(PTI, PredCases);
635
636 // Based on whether the default edge from PTI goes to BB or not, fill in
637 // PredCases and PredDefault with the new switch cases we would like to
638 // build.
Chris Lattner82442432008-02-18 07:42:56 +0000639 SmallVector<BasicBlock*, 8> NewSuccessors;
Chris Lattner542f1492004-02-28 21:28:10 +0000640
641 if (PredDefault == BB) {
642 // If this is the default destination from PTI, only the edges in TI
643 // that don't occur in PTI, or that branch to BB will be activated.
Dale Johannesenc81f5442009-03-12 21:01:11 +0000644 std::set<ConstantInt*, ConstantIntOrdering> PTIHandled;
Chris Lattner542f1492004-02-28 21:28:10 +0000645 for (unsigned i = 0, e = PredCases.size(); i != e; ++i)
646 if (PredCases[i].second != BB)
647 PTIHandled.insert(PredCases[i].first);
648 else {
649 // The default destination is BB, we don't need explicit targets.
650 std::swap(PredCases[i], PredCases.back());
651 PredCases.pop_back();
652 --i; --e;
653 }
654
655 // Reconstruct the new switch statement we will be building.
656 if (PredDefault != BBDefault) {
657 PredDefault->removePredecessor(Pred);
658 PredDefault = BBDefault;
659 NewSuccessors.push_back(BBDefault);
660 }
661 for (unsigned i = 0, e = BBCases.size(); i != e; ++i)
662 if (!PTIHandled.count(BBCases[i].first) &&
663 BBCases[i].second != BBDefault) {
664 PredCases.push_back(BBCases[i]);
665 NewSuccessors.push_back(BBCases[i].second);
666 }
667
668 } else {
669 // If this is not the default destination from PSI, only the edges
670 // in SI that occur in PSI with a destination of BB will be
671 // activated.
Dale Johannesenc81f5442009-03-12 21:01:11 +0000672 std::set<ConstantInt*, ConstantIntOrdering> PTIHandled;
Chris Lattner542f1492004-02-28 21:28:10 +0000673 for (unsigned i = 0, e = PredCases.size(); i != e; ++i)
674 if (PredCases[i].second == BB) {
675 PTIHandled.insert(PredCases[i].first);
676 std::swap(PredCases[i], PredCases.back());
677 PredCases.pop_back();
678 --i; --e;
679 }
680
681 // Okay, now we know which constants were sent to BB from the
682 // predecessor. Figure out where they will all go now.
683 for (unsigned i = 0, e = BBCases.size(); i != e; ++i)
684 if (PTIHandled.count(BBCases[i].first)) {
685 // If this is one we are capable of getting...
686 PredCases.push_back(BBCases[i]);
687 NewSuccessors.push_back(BBCases[i].second);
688 PTIHandled.erase(BBCases[i].first);// This constant is taken care of
689 }
690
691 // If there are any constants vectored to BB that TI doesn't handle,
692 // they must go to the default destination of TI.
Dale Johannesenc81f5442009-03-12 21:01:11 +0000693 for (std::set<ConstantInt*, ConstantIntOrdering>::iterator I =
694 PTIHandled.begin(),
Chris Lattner542f1492004-02-28 21:28:10 +0000695 E = PTIHandled.end(); I != E; ++I) {
696 PredCases.push_back(std::make_pair(*I, BBDefault));
697 NewSuccessors.push_back(BBDefault);
698 }
699 }
700
701 // Okay, at this point, we know which new successor Pred will get. Make
702 // sure we update the number of entries in the PHI nodes for these
703 // successors.
704 for (unsigned i = 0, e = NewSuccessors.size(); i != e; ++i)
705 AddPredecessorToBlock(NewSuccessors[i], Pred, BB);
706
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000707 // Convert pointer to int before we switch.
Duncan Sands1df98592010-02-16 11:11:14 +0000708 if (CV->getType()->isPointerTy()) {
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000709 assert(TD && "Cannot switch on pointer without TargetData");
710 CV = new PtrToIntInst(CV, TD->getIntPtrType(CV->getContext()),
711 "magicptr", PTI);
712 }
713
Chris Lattner542f1492004-02-28 21:28:10 +0000714 // Now that the successors are updated, create the new Switch instruction.
Gabor Greifb1dbcd82008-05-15 10:04:30 +0000715 SwitchInst *NewSI = SwitchInst::Create(CV, PredDefault,
716 PredCases.size(), PTI);
Chris Lattner542f1492004-02-28 21:28:10 +0000717 for (unsigned i = 0, e = PredCases.size(); i != e; ++i)
718 NewSI->addCase(PredCases[i].first, PredCases[i].second);
Chris Lattner13b2f762005-01-01 16:02:12 +0000719
Eli Friedman080efb82008-12-16 20:54:32 +0000720 EraseTerminatorInstAndDCECond(PTI);
Chris Lattner13b2f762005-01-01 16:02:12 +0000721
Chris Lattner542f1492004-02-28 21:28:10 +0000722 // Okay, last check. If BB is still a successor of PSI, then we must
723 // have an infinite loop case. If so, add an infinitely looping block
724 // to handle the case to preserve the behavior of the code.
725 BasicBlock *InfLoopBlock = 0;
726 for (unsigned i = 0, e = NewSI->getNumSuccessors(); i != e; ++i)
727 if (NewSI->getSuccessor(i) == BB) {
728 if (InfLoopBlock == 0) {
Chris Lattner093a4382008-07-13 22:23:11 +0000729 // Insert it at the end of the function, because it's either code,
Chris Lattner542f1492004-02-28 21:28:10 +0000730 // or it won't matter if it's hot. :)
Owen Anderson1d0be152009-08-13 21:58:54 +0000731 InfLoopBlock = BasicBlock::Create(BB->getContext(),
732 "infloop", BB->getParent());
Gabor Greif051a9502008-04-06 20:25:17 +0000733 BranchInst::Create(InfLoopBlock, InfLoopBlock);
Chris Lattner542f1492004-02-28 21:28:10 +0000734 }
735 NewSI->setSuccessor(i, InfLoopBlock);
736 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000737
Chris Lattner542f1492004-02-28 21:28:10 +0000738 Changed = true;
739 }
740 }
741 return Changed;
742}
743
Dale Johannesenc1f10402009-06-15 20:59:27 +0000744// isSafeToHoistInvoke - If we would need to insert a select that uses the
745// value of this invoke (comments in HoistThenElseCodeToIf explain why we
746// would need to do this), we can't hoist the invoke, as there is nowhere
747// to put the select in this case.
748static bool isSafeToHoistInvoke(BasicBlock *BB1, BasicBlock *BB2,
749 Instruction *I1, Instruction *I2) {
750 for (succ_iterator SI = succ_begin(BB1), E = succ_end(BB1); SI != E; ++SI) {
751 PHINode *PN;
752 for (BasicBlock::iterator BBI = SI->begin();
753 (PN = dyn_cast<PHINode>(BBI)); ++BBI) {
754 Value *BB1V = PN->getIncomingValueForBlock(BB1);
755 Value *BB2V = PN->getIncomingValueForBlock(BB2);
756 if (BB1V != BB2V && (BB1V==I1 || BB2V==I2)) {
757 return false;
758 }
759 }
760 }
761 return true;
762}
763
Chris Lattner6306d072005-08-03 17:59:45 +0000764/// HoistThenElseCodeToIf - Given a conditional branch that goes to BB1 and
Chris Lattner37dc9382004-11-30 00:29:14 +0000765/// BB2, hoist any common code in the two blocks up into the branch block. The
766/// caller of this function guarantees that BI's block dominates BB1 and BB2.
767static bool HoistThenElseCodeToIf(BranchInst *BI) {
768 // This does very trivial matching, with limited scanning, to find identical
769 // instructions in the two blocks. In particular, we don't want to get into
770 // O(M*N) situations here where M and N are the sizes of BB1 and BB2. As
771 // such, we currently just scan for obviously identical instructions in an
772 // identical order.
773 BasicBlock *BB1 = BI->getSuccessor(0); // The true destination.
774 BasicBlock *BB2 = BI->getSuccessor(1); // The false destination
775
Devang Patel65085cf2009-02-04 00:03:08 +0000776 BasicBlock::iterator BB1_Itr = BB1->begin();
777 BasicBlock::iterator BB2_Itr = BB2->begin();
778
779 Instruction *I1 = BB1_Itr++, *I2 = BB2_Itr++;
780 while (isa<DbgInfoIntrinsic>(I1))
781 I1 = BB1_Itr++;
782 while (isa<DbgInfoIntrinsic>(I2))
783 I2 = BB2_Itr++;
Dale Johannesenc1f10402009-06-15 20:59:27 +0000784 if (I1->getOpcode() != I2->getOpcode() || isa<PHINode>(I1) ||
Dan Gohman58cfa3b2009-08-25 22:11:20 +0000785 !I1->isIdenticalToWhenDefined(I2) ||
Dale Johannesenc1f10402009-06-15 20:59:27 +0000786 (isa<InvokeInst>(I1) && !isSafeToHoistInvoke(BB1, BB2, I1, I2)))
Chris Lattner37dc9382004-11-30 00:29:14 +0000787 return false;
788
789 // If we get here, we can hoist at least one instruction.
790 BasicBlock *BIParent = BI->getParent();
Chris Lattner37dc9382004-11-30 00:29:14 +0000791
792 do {
793 // If we are hoisting the terminator instruction, don't move one (making a
794 // broken BB), instead clone it, and remove BI.
795 if (isa<TerminatorInst>(I1))
796 goto HoistTerminator;
Misha Brukmanfd939082005-04-21 23:48:37 +0000797
Chris Lattner37dc9382004-11-30 00:29:14 +0000798 // For a normal instruction, we just move one to right before the branch,
799 // then replace all uses of the other with the first. Finally, we remove
800 // the now redundant second instruction.
801 BIParent->getInstList().splice(BI, BB1->getInstList(), I1);
802 if (!I2->use_empty())
803 I2->replaceAllUsesWith(I1);
Dan Gohman58cfa3b2009-08-25 22:11:20 +0000804 I1->intersectOptionalDataWith(I2);
Chris Lattner37dc9382004-11-30 00:29:14 +0000805 BB2->getInstList().erase(I2);
Misha Brukmanfd939082005-04-21 23:48:37 +0000806
Devang Patel65085cf2009-02-04 00:03:08 +0000807 I1 = BB1_Itr++;
808 while (isa<DbgInfoIntrinsic>(I1))
809 I1 = BB1_Itr++;
810 I2 = BB2_Itr++;
811 while (isa<DbgInfoIntrinsic>(I2))
812 I2 = BB2_Itr++;
Dan Gohman58cfa3b2009-08-25 22:11:20 +0000813 } while (I1->getOpcode() == I2->getOpcode() &&
814 I1->isIdenticalToWhenDefined(I2));
Chris Lattner37dc9382004-11-30 00:29:14 +0000815
816 return true;
817
818HoistTerminator:
Dale Johannesenc1f10402009-06-15 20:59:27 +0000819 // It may not be possible to hoist an invoke.
820 if (isa<InvokeInst>(I1) && !isSafeToHoistInvoke(BB1, BB2, I1, I2))
821 return true;
822
Chris Lattner37dc9382004-11-30 00:29:14 +0000823 // Okay, it is safe to hoist the terminator.
Nick Lewycky67760642009-09-27 07:38:41 +0000824 Instruction *NT = I1->clone();
Chris Lattner37dc9382004-11-30 00:29:14 +0000825 BIParent->getInstList().insert(BI, NT);
Benjamin Kramerf0127052010-01-05 13:12:22 +0000826 if (!NT->getType()->isVoidTy()) {
Chris Lattner37dc9382004-11-30 00:29:14 +0000827 I1->replaceAllUsesWith(NT);
828 I2->replaceAllUsesWith(NT);
Chris Lattner86cc4232007-02-11 01:37:51 +0000829 NT->takeName(I1);
Chris Lattner37dc9382004-11-30 00:29:14 +0000830 }
831
832 // Hoisting one of the terminators from our successor is a great thing.
833 // Unfortunately, the successors of the if/else blocks may have PHI nodes in
834 // them. If they do, all PHI entries for BB1/BB2 must agree for all PHI
835 // nodes, so we insert select instruction to compute the final result.
836 std::map<std::pair<Value*,Value*>, SelectInst*> InsertedSelects;
837 for (succ_iterator SI = succ_begin(BB1), E = succ_end(BB1); SI != E; ++SI) {
838 PHINode *PN;
839 for (BasicBlock::iterator BBI = SI->begin();
Chris Lattner0f535c62004-11-30 07:47:34 +0000840 (PN = dyn_cast<PHINode>(BBI)); ++BBI) {
Chris Lattner37dc9382004-11-30 00:29:14 +0000841 Value *BB1V = PN->getIncomingValueForBlock(BB1);
842 Value *BB2V = PN->getIncomingValueForBlock(BB2);
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000843 if (BB1V == BB2V) continue;
844
845 // These values do not agree. Insert a select instruction before NT
846 // that determines the right value.
847 SelectInst *&SI = InsertedSelects[std::make_pair(BB1V, BB2V)];
848 if (SI == 0)
849 SI = SelectInst::Create(BI->getCondition(), BB1V, BB2V,
850 BB1V->getName()+"."+BB2V->getName(), NT);
851 // Make the PHI node use the select for all incoming values for BB1/BB2
852 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
853 if (PN->getIncomingBlock(i) == BB1 || PN->getIncomingBlock(i) == BB2)
854 PN->setIncomingValue(i, SI);
Chris Lattner37dc9382004-11-30 00:29:14 +0000855 }
856 }
857
858 // Update any PHI nodes in our new successors.
859 for (succ_iterator SI = succ_begin(BB1), E = succ_end(BB1); SI != E; ++SI)
860 AddPredecessorToBlock(*SI, BIParent, BB1);
Misha Brukmanfd939082005-04-21 23:48:37 +0000861
Eli Friedman080efb82008-12-16 20:54:32 +0000862 EraseTerminatorInstAndDCECond(BI);
Chris Lattner37dc9382004-11-30 00:29:14 +0000863 return true;
864}
865
Evan Cheng4d09efd2008-06-07 08:52:29 +0000866/// SpeculativelyExecuteBB - Given a conditional branch that goes to BB1
867/// and an BB2 and the only successor of BB1 is BB2, hoist simple code
868/// (for now, restricted to a single instruction that's side effect free) from
869/// the BB1 into the branch block to speculatively execute it.
870static bool SpeculativelyExecuteBB(BranchInst *BI, BasicBlock *BB1) {
871 // Only speculatively execution a single instruction (not counting the
872 // terminator) for now.
Devang Patel06b1e672009-03-06 06:00:17 +0000873 Instruction *HInst = NULL;
874 Instruction *Term = BB1->getTerminator();
875 for (BasicBlock::iterator BBI = BB1->begin(), BBE = BB1->end();
876 BBI != BBE; ++BBI) {
877 Instruction *I = BBI;
878 // Skip debug info.
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000879 if (isa<DbgInfoIntrinsic>(I)) continue;
880 if (I == Term) break;
Devang Patel06b1e672009-03-06 06:00:17 +0000881
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000882 if (HInst)
Devang Patel06b1e672009-03-06 06:00:17 +0000883 return false;
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000884 HInst = I;
Devang Patel06b1e672009-03-06 06:00:17 +0000885 }
886 if (!HInst)
887 return false;
Evan Cheng4d09efd2008-06-07 08:52:29 +0000888
Evan Cheng797d9512008-06-11 19:18:20 +0000889 // Be conservative for now. FP select instruction can often be expensive.
890 Value *BrCond = BI->getCondition();
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000891 if (isa<FCmpInst>(BrCond))
Evan Cheng797d9512008-06-11 19:18:20 +0000892 return false;
893
Evan Cheng4d09efd2008-06-07 08:52:29 +0000894 // If BB1 is actually on the false edge of the conditional branch, remember
895 // to swap the select operands later.
896 bool Invert = false;
897 if (BB1 != BI->getSuccessor(0)) {
898 assert(BB1 == BI->getSuccessor(1) && "No edge from 'if' block?");
899 Invert = true;
900 }
901
902 // Turn
903 // BB:
904 // %t1 = icmp
905 // br i1 %t1, label %BB1, label %BB2
906 // BB1:
907 // %t3 = add %t2, c
908 // br label BB2
909 // BB2:
910 // =>
911 // BB:
912 // %t1 = icmp
913 // %t4 = add %t2, c
914 // %t3 = select i1 %t1, %t2, %t3
Devang Patel06b1e672009-03-06 06:00:17 +0000915 switch (HInst->getOpcode()) {
Evan Cheng4d09efd2008-06-07 08:52:29 +0000916 default: return false; // Not safe / profitable to hoist.
917 case Instruction::Add:
918 case Instruction::Sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000919 // Not worth doing for vector ops.
Duncan Sands1df98592010-02-16 11:11:14 +0000920 if (HInst->getType()->isVectorTy())
Chris Lattner9dd3b612009-01-18 23:22:07 +0000921 return false;
922 break;
Evan Cheng4d09efd2008-06-07 08:52:29 +0000923 case Instruction::And:
924 case Instruction::Or:
925 case Instruction::Xor:
926 case Instruction::Shl:
927 case Instruction::LShr:
928 case Instruction::AShr:
Chris Lattner9dd3b612009-01-18 23:22:07 +0000929 // Don't mess with vector operations.
Duncan Sands1df98592010-02-16 11:11:14 +0000930 if (HInst->getType()->isVectorTy())
Evan Chenge5334ea2008-06-25 07:50:12 +0000931 return false;
Evan Cheng4d09efd2008-06-07 08:52:29 +0000932 break; // These are all cheap and non-trapping instructions.
933 }
Chris Lattner6fe73bb2009-01-19 00:36:37 +0000934
935 // If the instruction is obviously dead, don't try to predicate it.
Devang Patel06b1e672009-03-06 06:00:17 +0000936 if (HInst->use_empty()) {
937 HInst->eraseFromParent();
Chris Lattner6fe73bb2009-01-19 00:36:37 +0000938 return true;
939 }
Evan Cheng4d09efd2008-06-07 08:52:29 +0000940
941 // Can we speculatively execute the instruction? And what is the value
942 // if the condition is false? Consider the phi uses, if the incoming value
943 // from the "if" block are all the same V, then V is the value of the
944 // select if the condition is false.
945 BasicBlock *BIParent = BI->getParent();
946 SmallVector<PHINode*, 4> PHIUses;
947 Value *FalseV = NULL;
Chris Lattner6fe73bb2009-01-19 00:36:37 +0000948
949 BasicBlock *BB2 = BB1->getTerminator()->getSuccessor(0);
Devang Patel06b1e672009-03-06 06:00:17 +0000950 for (Value::use_iterator UI = HInst->use_begin(), E = HInst->use_end();
Evan Cheng4d09efd2008-06-07 08:52:29 +0000951 UI != E; ++UI) {
Chris Lattner6fe73bb2009-01-19 00:36:37 +0000952 // Ignore any user that is not a PHI node in BB2. These can only occur in
953 // unreachable blocks, because they would not be dominated by the instr.
Gabor Greif20361b92010-07-22 11:43:44 +0000954 PHINode *PN = dyn_cast<PHINode>(*UI);
Chris Lattner6fe73bb2009-01-19 00:36:37 +0000955 if (!PN || PN->getParent() != BB2)
956 return false;
Evan Cheng4d09efd2008-06-07 08:52:29 +0000957 PHIUses.push_back(PN);
Chris Lattner6fe73bb2009-01-19 00:36:37 +0000958
Evan Cheng4d09efd2008-06-07 08:52:29 +0000959 Value *PHIV = PN->getIncomingValueForBlock(BIParent);
960 if (!FalseV)
961 FalseV = PHIV;
962 else if (FalseV != PHIV)
Chris Lattner6fe73bb2009-01-19 00:36:37 +0000963 return false; // Inconsistent value when condition is false.
Evan Cheng4d09efd2008-06-07 08:52:29 +0000964 }
Chris Lattner6fe73bb2009-01-19 00:36:37 +0000965
966 assert(FalseV && "Must have at least one user, and it must be a PHI");
Evan Cheng4d09efd2008-06-07 08:52:29 +0000967
Evan Cheng502a4f52008-06-12 21:15:59 +0000968 // Do not hoist the instruction if any of its operands are defined but not
969 // used in this BB. The transformation will prevent the operand from
970 // being sunk into the use block.
Devang Patel06b1e672009-03-06 06:00:17 +0000971 for (User::op_iterator i = HInst->op_begin(), e = HInst->op_end();
972 i != e; ++i) {
Evan Cheng502a4f52008-06-12 21:15:59 +0000973 Instruction *OpI = dyn_cast<Instruction>(*i);
974 if (OpI && OpI->getParent() == BIParent &&
975 !OpI->isUsedInBasicBlock(BIParent))
976 return false;
977 }
978
Devang Patel3d0a9a32008-09-18 22:50:42 +0000979 // If we get here, we can hoist the instruction. Try to place it
Dale Johannesen990afed2009-03-13 01:05:24 +0000980 // before the icmp instruction preceding the conditional branch.
Devang Patel3d0a9a32008-09-18 22:50:42 +0000981 BasicBlock::iterator InsertPos = BI;
Dale Johannesen990afed2009-03-13 01:05:24 +0000982 if (InsertPos != BIParent->begin())
983 --InsertPos;
984 // Skip debug info between condition and branch.
985 while (InsertPos != BIParent->begin() && isa<DbgInfoIntrinsic>(InsertPos))
Devang Patel3d0a9a32008-09-18 22:50:42 +0000986 --InsertPos;
Devang Patel20da1f02008-10-03 18:57:37 +0000987 if (InsertPos == BrCond && !isa<PHINode>(BrCond)) {
Devang Patel3d0a9a32008-09-18 22:50:42 +0000988 SmallPtrSet<Instruction *, 4> BB1Insns;
989 for(BasicBlock::iterator BB1I = BB1->begin(), BB1E = BB1->end();
990 BB1I != BB1E; ++BB1I)
991 BB1Insns.insert(BB1I);
992 for(Value::use_iterator UI = BrCond->use_begin(), UE = BrCond->use_end();
993 UI != UE; ++UI) {
994 Instruction *Use = cast<Instruction>(*UI);
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000995 if (!BB1Insns.count(Use)) continue;
996
997 // If BrCond uses the instruction that place it just before
998 // branch instruction.
999 InsertPos = BI;
1000 break;
Devang Patel3d0a9a32008-09-18 22:50:42 +00001001 }
1002 } else
1003 InsertPos = BI;
Devang Patel06b1e672009-03-06 06:00:17 +00001004 BIParent->getInstList().splice(InsertPos, BB1->getInstList(), HInst);
Evan Cheng4d09efd2008-06-07 08:52:29 +00001005
1006 // Create a select whose true value is the speculatively executed value and
1007 // false value is the previously determined FalseV.
1008 SelectInst *SI;
1009 if (Invert)
Devang Patel06b1e672009-03-06 06:00:17 +00001010 SI = SelectInst::Create(BrCond, FalseV, HInst,
1011 FalseV->getName() + "." + HInst->getName(), BI);
Evan Cheng4d09efd2008-06-07 08:52:29 +00001012 else
Devang Patel06b1e672009-03-06 06:00:17 +00001013 SI = SelectInst::Create(BrCond, HInst, FalseV,
1014 HInst->getName() + "." + FalseV->getName(), BI);
Evan Cheng4d09efd2008-06-07 08:52:29 +00001015
1016 // Make the PHI node use the select for all incoming values for "then" and
1017 // "if" blocks.
1018 for (unsigned i = 0, e = PHIUses.size(); i != e; ++i) {
1019 PHINode *PN = PHIUses[i];
1020 for (unsigned j = 0, ee = PN->getNumIncomingValues(); j != ee; ++j)
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001021 if (PN->getIncomingBlock(j) == BB1 || PN->getIncomingBlock(j) == BIParent)
Evan Cheng4d09efd2008-06-07 08:52:29 +00001022 PN->setIncomingValue(j, SI);
1023 }
1024
Evan Cheng502a4f52008-06-12 21:15:59 +00001025 ++NumSpeculations;
Evan Cheng4d09efd2008-06-07 08:52:29 +00001026 return true;
1027}
1028
Chris Lattner2e42e362005-09-20 00:43:16 +00001029/// BlockIsSimpleEnoughToThreadThrough - Return true if we can thread a branch
1030/// across this block.
1031static bool BlockIsSimpleEnoughToThreadThrough(BasicBlock *BB) {
1032 BranchInst *BI = cast<BranchInst>(BB->getTerminator());
Chris Lattnere9487f02005-09-20 01:48:40 +00001033 unsigned Size = 0;
1034
Devang Patel9200c892009-03-10 18:00:05 +00001035 for (BasicBlock::iterator BBI = BB->begin(); &*BBI != BI; ++BBI) {
Dale Johannesen8483e542009-03-12 23:18:09 +00001036 if (isa<DbgInfoIntrinsic>(BBI))
1037 continue;
Chris Lattnere9487f02005-09-20 01:48:40 +00001038 if (Size > 10) return false; // Don't clone large BB's.
Dale Johannesen8483e542009-03-12 23:18:09 +00001039 ++Size;
Chris Lattner2e42e362005-09-20 00:43:16 +00001040
Dale Johannesen8483e542009-03-12 23:18:09 +00001041 // We can only support instructions that do not define values that are
Chris Lattnere9487f02005-09-20 01:48:40 +00001042 // live outside of the current basic block.
1043 for (Value::use_iterator UI = BBI->use_begin(), E = BBI->use_end();
1044 UI != E; ++UI) {
1045 Instruction *U = cast<Instruction>(*UI);
1046 if (U->getParent() != BB || isa<PHINode>(U)) return false;
1047 }
Chris Lattner2e42e362005-09-20 00:43:16 +00001048
1049 // Looks ok, continue checking.
1050 }
Chris Lattnere9487f02005-09-20 01:48:40 +00001051
Chris Lattner2e42e362005-09-20 00:43:16 +00001052 return true;
1053}
1054
Chris Lattnereaba3a12005-09-19 23:49:37 +00001055/// FoldCondBranchOnPHI - If we have a conditional branch on a PHI node value
1056/// that is defined in the same block as the branch and if any PHI entries are
1057/// constants, thread edges corresponding to that entry to be branches to their
1058/// ultimate destination.
1059static bool FoldCondBranchOnPHI(BranchInst *BI) {
1060 BasicBlock *BB = BI->getParent();
1061 PHINode *PN = dyn_cast<PHINode>(BI->getCondition());
Chris Lattner9c88d982005-09-19 23:57:04 +00001062 // NOTE: we currently cannot transform this case if the PHI node is used
1063 // outside of the block.
Chris Lattner2e42e362005-09-20 00:43:16 +00001064 if (!PN || PN->getParent() != BB || !PN->hasOneUse())
1065 return false;
Chris Lattnereaba3a12005-09-19 23:49:37 +00001066
1067 // Degenerate case of a single entry PHI.
1068 if (PN->getNumIncomingValues() == 1) {
Chris Lattner29874e02008-12-03 19:44:02 +00001069 FoldSingleEntryPHINodes(PN->getParent());
Chris Lattnereaba3a12005-09-19 23:49:37 +00001070 return true;
1071 }
1072
1073 // Now we know that this block has multiple preds and two succs.
Chris Lattner2e42e362005-09-20 00:43:16 +00001074 if (!BlockIsSimpleEnoughToThreadThrough(BB)) return false;
Chris Lattnereaba3a12005-09-19 23:49:37 +00001075
1076 // Okay, this is a simple enough basic block. See if any phi values are
1077 // constants.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001078 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001079 ConstantInt *CB = dyn_cast<ConstantInt>(PN->getIncomingValue(i));
1080 if (CB == 0 || !CB->getType()->isIntegerTy(1)) continue;
1081
1082 // Okay, we now know that all edges from PredBB should be revectored to
1083 // branch to RealDest.
1084 BasicBlock *PredBB = PN->getIncomingBlock(i);
1085 BasicBlock *RealDest = BI->getSuccessor(!CB->getZExtValue());
1086
1087 if (RealDest == BB) continue; // Skip self loops.
1088
1089 // The dest block might have PHI nodes, other predecessors and other
1090 // difficult cases. Instead of being smart about this, just insert a new
1091 // block that jumps to the destination block, effectively splitting
1092 // the edge we are about to create.
1093 BasicBlock *EdgeBB = BasicBlock::Create(BB->getContext(),
1094 RealDest->getName()+".critedge",
1095 RealDest->getParent(), RealDest);
1096 BranchInst::Create(RealDest, EdgeBB);
1097 PHINode *PN;
1098 for (BasicBlock::iterator BBI = RealDest->begin();
1099 (PN = dyn_cast<PHINode>(BBI)); ++BBI) {
1100 Value *V = PN->getIncomingValueForBlock(BB);
1101 PN->addIncoming(V, EdgeBB);
Chris Lattnereaba3a12005-09-19 23:49:37 +00001102 }
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001103
1104 // BB may have instructions that are being threaded over. Clone these
1105 // instructions into EdgeBB. We know that there will be no uses of the
1106 // cloned instructions outside of EdgeBB.
1107 BasicBlock::iterator InsertPt = EdgeBB->begin();
1108 DenseMap<Value*, Value*> TranslateMap; // Track translated values.
1109 for (BasicBlock::iterator BBI = BB->begin(); &*BBI != BI; ++BBI) {
1110 if (PHINode *PN = dyn_cast<PHINode>(BBI)) {
1111 TranslateMap[PN] = PN->getIncomingValueForBlock(PredBB);
1112 continue;
1113 }
1114 // Clone the instruction.
1115 Instruction *N = BBI->clone();
1116 if (BBI->hasName()) N->setName(BBI->getName()+".c");
1117
1118 // Update operands due to translation.
1119 for (User::op_iterator i = N->op_begin(), e = N->op_end();
1120 i != e; ++i) {
1121 DenseMap<Value*, Value*>::iterator PI = TranslateMap.find(*i);
1122 if (PI != TranslateMap.end())
1123 *i = PI->second;
1124 }
1125
1126 // Check for trivial simplification.
1127 if (Constant *C = ConstantFoldInstruction(N)) {
1128 TranslateMap[BBI] = C;
1129 delete N; // Constant folded away, don't need actual inst
1130 } else {
1131 // Insert the new instruction into its new home.
1132 EdgeBB->getInstList().insert(InsertPt, N);
1133 if (!BBI->use_empty())
1134 TranslateMap[BBI] = N;
1135 }
1136 }
1137
1138 // Loop over all of the edges from PredBB to BB, changing them to branch
1139 // to EdgeBB instead.
1140 TerminatorInst *PredBBTI = PredBB->getTerminator();
1141 for (unsigned i = 0, e = PredBBTI->getNumSuccessors(); i != e; ++i)
1142 if (PredBBTI->getSuccessor(i) == BB) {
1143 BB->removePredecessor(PredBB);
1144 PredBBTI->setSuccessor(i, EdgeBB);
1145 }
1146
1147 // Recurse, simplifying any other constants.
1148 return FoldCondBranchOnPHI(BI) | true;
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001149 }
Chris Lattnereaba3a12005-09-19 23:49:37 +00001150
1151 return false;
1152}
1153
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001154/// FoldTwoEntryPHINode - Given a BB that starts with the specified two-entry
1155/// PHI node, see if we can eliminate it.
1156static bool FoldTwoEntryPHINode(PHINode *PN) {
1157 // Ok, this is a two entry PHI node. Check to see if this is a simple "if
1158 // statement", which has a very simple dominance structure. Basically, we
1159 // are trying to find the condition that is being branched on, which
1160 // subsequently causes this merge to happen. We really want control
1161 // dependence information for this check, but simplifycfg can't keep it up
1162 // to date, and this catches most of the cases we care about anyway.
1163 //
1164 BasicBlock *BB = PN->getParent();
1165 BasicBlock *IfTrue, *IfFalse;
1166 Value *IfCond = GetIfCondition(BB, IfTrue, IfFalse);
1167 if (!IfCond) return false;
1168
Chris Lattner822a8792006-11-18 19:19:36 +00001169 // Okay, we found that we can merge this two-entry phi node into a select.
1170 // Doing so would require us to fold *all* two entry phi nodes in this block.
1171 // At some point this becomes non-profitable (particularly if the target
1172 // doesn't support cmov's). Only do this transformation if there are two or
1173 // fewer PHI nodes in this block.
1174 unsigned NumPhis = 0;
1175 for (BasicBlock::iterator I = BB->begin(); isa<PHINode>(I); ++NumPhis, ++I)
1176 if (NumPhis > 2)
1177 return false;
1178
David Greene89d6fd32010-01-05 01:26:52 +00001179 DEBUG(dbgs() << "FOUND IF CONDITION! " << *IfCond << " T: "
Daniel Dunbarce63ffb2009-07-25 00:23:56 +00001180 << IfTrue->getName() << " F: " << IfFalse->getName() << "\n");
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001181
1182 // Loop over the PHI's seeing if we can promote them all to select
1183 // instructions. While we are at it, keep track of the instructions
1184 // that need to be moved to the dominating block.
1185 std::set<Instruction*> AggressiveInsts;
1186
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001187 BasicBlock::iterator AfterPHIIt = BB->begin();
1188 while (isa<PHINode>(AfterPHIIt)) {
1189 PHINode *PN = cast<PHINode>(AfterPHIIt++);
1190 if (PN->getIncomingValue(0) == PN->getIncomingValue(1)) {
1191 if (PN->getIncomingValue(0) != PN)
1192 PN->replaceAllUsesWith(PN->getIncomingValue(0));
1193 else
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001194 PN->replaceAllUsesWith(UndefValue::get(PN->getType()));
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001195 } else if (!DominatesMergePoint(PN->getIncomingValue(0), BB,
1196 &AggressiveInsts) ||
1197 !DominatesMergePoint(PN->getIncomingValue(1), BB,
1198 &AggressiveInsts)) {
Chris Lattner055dc102005-09-23 07:23:18 +00001199 return false;
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001200 }
1201 }
1202
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001203 // If we all PHI nodes are promotable, check to make sure that all
1204 // instructions in the predecessor blocks can be promoted as well. If
1205 // not, we won't be able to get rid of the control flow, so it's not
1206 // worth promoting to select instructions.
1207 BasicBlock *DomBlock = 0, *IfBlock1 = 0, *IfBlock2 = 0;
1208 PN = cast<PHINode>(BB->begin());
1209 BasicBlock *Pred = PN->getIncomingBlock(0);
1210 if (cast<BranchInst>(Pred->getTerminator())->isUnconditional()) {
1211 IfBlock1 = Pred;
1212 DomBlock = *pred_begin(Pred);
1213 for (BasicBlock::iterator I = Pred->begin();
1214 !isa<TerminatorInst>(I); ++I)
Devang Patel383d7ed2009-02-03 22:12:02 +00001215 if (!AggressiveInsts.count(I) && !isa<DbgInfoIntrinsic>(I)) {
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001216 // This is not an aggressive instruction that we can promote.
1217 // Because of this, we won't be able to get rid of the control
1218 // flow, so the xform is not worth it.
1219 return false;
1220 }
1221 }
1222
1223 Pred = PN->getIncomingBlock(1);
1224 if (cast<BranchInst>(Pred->getTerminator())->isUnconditional()) {
1225 IfBlock2 = Pred;
1226 DomBlock = *pred_begin(Pred);
1227 for (BasicBlock::iterator I = Pred->begin();
1228 !isa<TerminatorInst>(I); ++I)
Devang Patel383d7ed2009-02-03 22:12:02 +00001229 if (!AggressiveInsts.count(I) && !isa<DbgInfoIntrinsic>(I)) {
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001230 // This is not an aggressive instruction that we can promote.
1231 // Because of this, we won't be able to get rid of the control
1232 // flow, so the xform is not worth it.
1233 return false;
1234 }
1235 }
1236
1237 // If we can still promote the PHI nodes after this gauntlet of tests,
1238 // do all of the PHI's now.
1239
1240 // Move all 'aggressive' instructions, which are defined in the
1241 // conditional parts of the if's up to the dominating block.
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001242 if (IfBlock1)
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001243 DomBlock->getInstList().splice(DomBlock->getTerminator(),
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001244 IfBlock1->getInstList(), IfBlock1->begin(),
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001245 IfBlock1->getTerminator());
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001246 if (IfBlock2)
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001247 DomBlock->getInstList().splice(DomBlock->getTerminator(),
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001248 IfBlock2->getInstList(), IfBlock2->begin(),
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001249 IfBlock2->getTerminator());
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001250
1251 while (PHINode *PN = dyn_cast<PHINode>(BB->begin())) {
1252 // Change the PHI node into a select instruction.
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001253 Value *TrueVal = PN->getIncomingValue(PN->getIncomingBlock(0) == IfFalse);
1254 Value *FalseVal = PN->getIncomingValue(PN->getIncomingBlock(0) == IfTrue);
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001255
Gabor Greif051a9502008-04-06 20:25:17 +00001256 Value *NV = SelectInst::Create(IfCond, TrueVal, FalseVal, "", AfterPHIIt);
Chris Lattner86cc4232007-02-11 01:37:51 +00001257 PN->replaceAllUsesWith(NV);
1258 NV->takeName(PN);
1259
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001260 BB->getInstList().erase(PN);
1261 }
1262 return true;
1263}
Chris Lattnereaba3a12005-09-19 23:49:37 +00001264
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001265/// SimplifyCondBranchToTwoReturns - If we found a conditional branch that goes
1266/// to two returning blocks, try to merge them together into one return,
1267/// introducing a select if the return values disagree.
1268static bool SimplifyCondBranchToTwoReturns(BranchInst *BI) {
1269 assert(BI->isConditional() && "Must be a conditional branch");
1270 BasicBlock *TrueSucc = BI->getSuccessor(0);
1271 BasicBlock *FalseSucc = BI->getSuccessor(1);
1272 ReturnInst *TrueRet = cast<ReturnInst>(TrueSucc->getTerminator());
1273 ReturnInst *FalseRet = cast<ReturnInst>(FalseSucc->getTerminator());
1274
1275 // Check to ensure both blocks are empty (just a return) or optionally empty
1276 // with PHI nodes. If there are other instructions, merging would cause extra
1277 // computation on one path or the other.
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001278 if (!TrueSucc->getFirstNonPHIOrDbg()->isTerminator())
Devang Patel2cc86a12009-02-05 00:30:42 +00001279 return false;
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001280 if (!FalseSucc->getFirstNonPHIOrDbg()->isTerminator())
Devang Patel2cc86a12009-02-05 00:30:42 +00001281 return false;
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001282
1283 // Okay, we found a branch that is going to two return nodes. If
1284 // there is no return value for this function, just change the
1285 // branch into a return.
1286 if (FalseRet->getNumOperands() == 0) {
1287 TrueSucc->removePredecessor(BI->getParent());
1288 FalseSucc->removePredecessor(BI->getParent());
Owen Anderson1d0be152009-08-13 21:58:54 +00001289 ReturnInst::Create(BI->getContext(), 0, BI);
Eli Friedman080efb82008-12-16 20:54:32 +00001290 EraseTerminatorInstAndDCECond(BI);
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001291 return true;
1292 }
1293
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001294 // Otherwise, figure out what the true and false return values are
1295 // so we can insert a new select instruction.
1296 Value *TrueValue = TrueRet->getReturnValue();
1297 Value *FalseValue = FalseRet->getReturnValue();
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001298
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001299 // Unwrap any PHI nodes in the return blocks.
1300 if (PHINode *TVPN = dyn_cast_or_null<PHINode>(TrueValue))
1301 if (TVPN->getParent() == TrueSucc)
1302 TrueValue = TVPN->getIncomingValueForBlock(BI->getParent());
1303 if (PHINode *FVPN = dyn_cast_or_null<PHINode>(FalseValue))
1304 if (FVPN->getParent() == FalseSucc)
1305 FalseValue = FVPN->getIncomingValueForBlock(BI->getParent());
1306
1307 // In order for this transformation to be safe, we must be able to
1308 // unconditionally execute both operands to the return. This is
1309 // normally the case, but we could have a potentially-trapping
1310 // constant expression that prevents this transformation from being
1311 // safe.
1312 if (ConstantExpr *TCV = dyn_cast_or_null<ConstantExpr>(TrueValue))
1313 if (TCV->canTrap())
1314 return false;
1315 if (ConstantExpr *FCV = dyn_cast_or_null<ConstantExpr>(FalseValue))
1316 if (FCV->canTrap())
1317 return false;
1318
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001319 // Okay, we collected all the mapped values and checked them for sanity, and
1320 // defined to really do this transformation. First, update the CFG.
1321 TrueSucc->removePredecessor(BI->getParent());
1322 FalseSucc->removePredecessor(BI->getParent());
1323
1324 // Insert select instructions where needed.
1325 Value *BrCond = BI->getCondition();
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001326 if (TrueValue) {
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001327 // Insert a select if the results differ.
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001328 if (TrueValue == FalseValue || isa<UndefValue>(FalseValue)) {
1329 } else if (isa<UndefValue>(TrueValue)) {
1330 TrueValue = FalseValue;
1331 } else {
1332 TrueValue = SelectInst::Create(BrCond, TrueValue,
1333 FalseValue, "retval", BI);
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001334 }
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001335 }
1336
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001337 Value *RI = !TrueValue ?
Owen Anderson1d0be152009-08-13 21:58:54 +00001338 ReturnInst::Create(BI->getContext(), BI) :
1339 ReturnInst::Create(BI->getContext(), TrueValue, BI);
Daniel Dunbare317bcc2009-08-23 10:29:55 +00001340 (void) RI;
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001341
David Greene89d6fd32010-01-05 01:26:52 +00001342 DEBUG(dbgs() << "\nCHANGING BRANCH TO TWO RETURNS INTO SELECT:"
Chris Lattnerbdff5482009-08-23 04:37:46 +00001343 << "\n " << *BI << "NewRet = " << *RI
1344 << "TRUEBLOCK: " << *TrueSucc << "FALSEBLOCK: "<< *FalseSucc);
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001345
Eli Friedman080efb82008-12-16 20:54:32 +00001346 EraseTerminatorInstAndDCECond(BI);
1347
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001348 return true;
1349}
1350
Chris Lattner1347e872008-07-13 21:12:01 +00001351/// FoldBranchToCommonDest - If this basic block is ONLY a setcc and a branch,
1352/// and if a predecessor branches to us and one of our successors, fold the
1353/// setcc into the predecessor and use logical operations to pick the right
1354/// destination.
Dan Gohman4b35f832009-06-27 21:30:38 +00001355bool llvm::FoldBranchToCommonDest(BranchInst *BI) {
Chris Lattner093a4382008-07-13 22:23:11 +00001356 BasicBlock *BB = BI->getParent();
Chris Lattner1347e872008-07-13 21:12:01 +00001357 Instruction *Cond = dyn_cast<Instruction>(BI->getCondition());
Owen Andersone84178a2010-07-14 19:52:16 +00001358 if (Cond == 0 || (!isa<CmpInst>(Cond) && !isa<BinaryOperator>(Cond)) ||
1359 Cond->getParent() != BB || !Cond->hasOneUse())
1360 return false;
Chris Lattner093a4382008-07-13 22:23:11 +00001361
Chris Lattner1347e872008-07-13 21:12:01 +00001362 // Only allow this if the condition is a simple instruction that can be
1363 // executed unconditionally. It must be in the same block as the branch, and
1364 // must be at the front of the block.
Devang Pateld0a203d2009-02-04 21:39:48 +00001365 BasicBlock::iterator FrontIt = BB->front();
1366 // Ignore dbg intrinsics.
1367 while(isa<DbgInfoIntrinsic>(FrontIt))
1368 ++FrontIt;
Owen Andersone84178a2010-07-14 19:52:16 +00001369
1370 // Allow a single instruction to be hoisted in addition to the compare
1371 // that feeds the branch. We later ensure that any values that _it_ uses
1372 // were also live in the predecessor, so that we don't unnecessarily create
1373 // register pressure or inhibit out-of-order execution.
1374 Instruction *BonusInst = 0;
1375 if (&*FrontIt != Cond &&
Owen Anderson2722dfa2010-07-15 16:38:22 +00001376 FrontIt->hasOneUse() && *FrontIt->use_begin() == Cond &&
1377 FrontIt->isSafeToSpeculativelyExecute()) {
Owen Andersone84178a2010-07-14 19:52:16 +00001378 BonusInst = &*FrontIt;
1379 ++FrontIt;
Devang Pateld0a203d2009-02-04 21:39:48 +00001380 }
Chris Lattner6ff645b2009-01-19 23:03:13 +00001381
Owen Andersone84178a2010-07-14 19:52:16 +00001382 // Only a single bonus inst is allowed.
1383 if (&*FrontIt != Cond)
1384 return false;
1385
Chris Lattner1347e872008-07-13 21:12:01 +00001386 // Make sure the instruction after the condition is the cond branch.
1387 BasicBlock::iterator CondIt = Cond; ++CondIt;
Devang Pateld0a203d2009-02-04 21:39:48 +00001388 // Ingore dbg intrinsics.
1389 while(isa<DbgInfoIntrinsic>(CondIt))
1390 ++CondIt;
1391 if (&*CondIt != BI) {
1392 assert (!isa<DbgInfoIntrinsic>(CondIt) && "Hey do not forget debug info!");
Chris Lattner1347e872008-07-13 21:12:01 +00001393 return false;
Devang Pateld0a203d2009-02-04 21:39:48 +00001394 }
Chris Lattner6ff645b2009-01-19 23:03:13 +00001395
1396 // Cond is known to be a compare or binary operator. Check to make sure that
1397 // neither operand is a potentially-trapping constant expression.
1398 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Cond->getOperand(0)))
1399 if (CE->canTrap())
1400 return false;
1401 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Cond->getOperand(1)))
1402 if (CE->canTrap())
1403 return false;
1404
Chris Lattner1347e872008-07-13 21:12:01 +00001405
1406 // Finally, don't infinitely unroll conditional loops.
1407 BasicBlock *TrueDest = BI->getSuccessor(0);
1408 BasicBlock *FalseDest = BI->getSuccessor(1);
1409 if (TrueDest == BB || FalseDest == BB)
1410 return false;
1411
1412 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
1413 BasicBlock *PredBlock = *PI;
1414 BranchInst *PBI = dyn_cast<BranchInst>(PredBlock->getTerminator());
Chris Lattner6ff645b2009-01-19 23:03:13 +00001415
Chris Lattner093a4382008-07-13 22:23:11 +00001416 // Check that we have two conditional branches. If there is a PHI node in
1417 // the common successor, verify that the same value flows in from both
1418 // blocks.
Chris Lattner1347e872008-07-13 21:12:01 +00001419 if (PBI == 0 || PBI->isUnconditional() ||
1420 !SafeToMergeTerminators(BI, PBI))
1421 continue;
1422
Owen Andersone84178a2010-07-14 19:52:16 +00001423 // Ensure that any values used in the bonus instruction are also used
1424 // by the terminator of the predecessor. This means that those values
1425 // must already have been resolved, so we won't be inhibiting the
1426 // out-of-order core by speculating them earlier.
1427 if (BonusInst) {
1428 // Collect the values used by the bonus inst
1429 SmallPtrSet<Value*, 4> UsedValues;
1430 for (Instruction::op_iterator OI = BonusInst->op_begin(),
1431 OE = BonusInst->op_end(); OI != OE; ++OI) {
1432 Value* V = *OI;
1433 if (!isa<Constant>(V))
1434 UsedValues.insert(V);
1435 }
1436
1437 SmallVector<std::pair<Value*, unsigned>, 4> Worklist;
1438 Worklist.push_back(std::make_pair(PBI->getOperand(0), 0));
1439
1440 // Walk up to four levels back up the use-def chain of the predecessor's
1441 // terminator to see if all those values were used. The choice of four
1442 // levels is arbitrary, to provide a compile-time-cost bound.
1443 while (!Worklist.empty()) {
1444 std::pair<Value*, unsigned> Pair = Worklist.back();
1445 Worklist.pop_back();
1446
1447 if (Pair.second >= 4) continue;
1448 UsedValues.erase(Pair.first);
1449 if (UsedValues.empty()) break;
1450
1451 if (Instruction* I = dyn_cast<Instruction>(Pair.first)) {
1452 for (Instruction::op_iterator OI = I->op_begin(), OE = I->op_end();
1453 OI != OE; ++OI)
1454 Worklist.push_back(std::make_pair(OI->get(), Pair.second+1));
1455 }
1456 }
1457
1458 if (!UsedValues.empty()) return false;
1459 }
1460
Chris Lattner36989092008-07-13 21:20:19 +00001461 Instruction::BinaryOps Opc;
1462 bool InvertPredCond = false;
1463
1464 if (PBI->getSuccessor(0) == TrueDest)
1465 Opc = Instruction::Or;
1466 else if (PBI->getSuccessor(1) == FalseDest)
1467 Opc = Instruction::And;
1468 else if (PBI->getSuccessor(0) == FalseDest)
1469 Opc = Instruction::And, InvertPredCond = true;
1470 else if (PBI->getSuccessor(1) == TrueDest)
1471 Opc = Instruction::Or, InvertPredCond = true;
1472 else
1473 continue;
1474
David Greene89d6fd32010-01-05 01:26:52 +00001475 DEBUG(dbgs() << "FOLDING BRANCH TO COMMON DEST:\n" << *PBI << *BB);
Chris Lattner6ff645b2009-01-19 23:03:13 +00001476
Chris Lattner36989092008-07-13 21:20:19 +00001477 // If we need to invert the condition in the pred block to match, do so now.
1478 if (InvertPredCond) {
Chris Lattner1347e872008-07-13 21:12:01 +00001479 Value *NewCond =
Dan Gohman4ae51262009-08-12 16:23:25 +00001480 BinaryOperator::CreateNot(PBI->getCondition(),
Chris Lattner36989092008-07-13 21:20:19 +00001481 PBI->getCondition()->getName()+".not", PBI);
Chris Lattner1347e872008-07-13 21:12:01 +00001482 PBI->setCondition(NewCond);
1483 BasicBlock *OldTrue = PBI->getSuccessor(0);
1484 BasicBlock *OldFalse = PBI->getSuccessor(1);
1485 PBI->setSuccessor(0, OldFalse);
1486 PBI->setSuccessor(1, OldTrue);
1487 }
Chris Lattner70087f32008-07-13 21:15:11 +00001488
Owen Andersone84178a2010-07-14 19:52:16 +00001489 // If we have a bonus inst, clone it into the predecessor block.
1490 Instruction *NewBonus = 0;
1491 if (BonusInst) {
1492 NewBonus = BonusInst->clone();
1493 PredBlock->getInstList().insert(PBI, NewBonus);
1494 NewBonus->takeName(BonusInst);
1495 BonusInst->setName(BonusInst->getName()+".old");
1496 }
1497
Chris Lattner36989092008-07-13 21:20:19 +00001498 // Clone Cond into the predecessor basic block, and or/and the
1499 // two conditions together.
Nick Lewycky67760642009-09-27 07:38:41 +00001500 Instruction *New = Cond->clone();
Owen Andersone84178a2010-07-14 19:52:16 +00001501 if (BonusInst) New->replaceUsesOfWith(BonusInst, NewBonus);
Chris Lattner36989092008-07-13 21:20:19 +00001502 PredBlock->getInstList().insert(PBI, New);
1503 New->takeName(Cond);
1504 Cond->setName(New->getName()+".old");
Chris Lattner70087f32008-07-13 21:15:11 +00001505
Chris Lattner36989092008-07-13 21:20:19 +00001506 Value *NewCond = BinaryOperator::Create(Opc, PBI->getCondition(),
1507 New, "or.cond", PBI);
1508 PBI->setCondition(NewCond);
1509 if (PBI->getSuccessor(0) == BB) {
1510 AddPredecessorToBlock(TrueDest, PredBlock, BB);
1511 PBI->setSuccessor(0, TrueDest);
Chris Lattner1347e872008-07-13 21:12:01 +00001512 }
Chris Lattner36989092008-07-13 21:20:19 +00001513 if (PBI->getSuccessor(1) == BB) {
1514 AddPredecessorToBlock(FalseDest, PredBlock, BB);
1515 PBI->setSuccessor(1, FalseDest);
1516 }
1517 return true;
Chris Lattner1347e872008-07-13 21:12:01 +00001518 }
1519 return false;
1520}
1521
Chris Lattner867661a2008-07-13 21:53:26 +00001522/// SimplifyCondBranchToCondBranch - If we have a conditional branch as a
1523/// predecessor of another block, this function tries to simplify it. We know
1524/// that PBI and BI are both conditional branches, and BI is in one of the
1525/// successor blocks of PBI - PBI branches to BI.
1526static bool SimplifyCondBranchToCondBranch(BranchInst *PBI, BranchInst *BI) {
1527 assert(PBI->isConditional() && BI->isConditional());
1528 BasicBlock *BB = BI->getParent();
Dan Gohman4ae51262009-08-12 16:23:25 +00001529
Chris Lattner867661a2008-07-13 21:53:26 +00001530 // If this block ends with a branch instruction, and if there is a
1531 // predecessor that ends on a branch of the same condition, make
1532 // this conditional branch redundant.
1533 if (PBI->getCondition() == BI->getCondition() &&
1534 PBI->getSuccessor(0) != PBI->getSuccessor(1)) {
1535 // Okay, the outcome of this conditional branch is statically
1536 // knowable. If this block had a single pred, handle specially.
1537 if (BB->getSinglePredecessor()) {
1538 // Turn this into a branch on constant.
1539 bool CondIsTrue = PBI->getSuccessor(0) == BB;
Owen Anderson1d0be152009-08-13 21:58:54 +00001540 BI->setCondition(ConstantInt::get(Type::getInt1Ty(BB->getContext()),
1541 CondIsTrue));
Chris Lattner867661a2008-07-13 21:53:26 +00001542 return true; // Nuke the branch on constant.
1543 }
1544
1545 // Otherwise, if there are multiple predecessors, insert a PHI that merges
1546 // in the constant and simplify the block result. Subsequent passes of
1547 // simplifycfg will thread the block.
1548 if (BlockIsSimpleEnoughToThreadThrough(BB)) {
Owen Anderson1d0be152009-08-13 21:58:54 +00001549 PHINode *NewPN = PHINode::Create(Type::getInt1Ty(BB->getContext()),
Chris Lattner867661a2008-07-13 21:53:26 +00001550 BI->getCondition()->getName() + ".pr",
1551 BB->begin());
Chris Lattnereb388af2008-07-13 21:55:46 +00001552 // Okay, we're going to insert the PHI node. Since PBI is not the only
1553 // predecessor, compute the PHI'd conditional value for all of the preds.
1554 // Any predecessor where the condition is not computable we keep symbolic.
Gabor Greif62539832010-07-12 10:59:23 +00001555 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
1556 BasicBlock *P = *PI;
1557 if ((PBI = dyn_cast<BranchInst>(P->getTerminator())) &&
Chris Lattner867661a2008-07-13 21:53:26 +00001558 PBI != BI && PBI->isConditional() &&
1559 PBI->getCondition() == BI->getCondition() &&
1560 PBI->getSuccessor(0) != PBI->getSuccessor(1)) {
1561 bool CondIsTrue = PBI->getSuccessor(0) == BB;
Owen Anderson1d0be152009-08-13 21:58:54 +00001562 NewPN->addIncoming(ConstantInt::get(Type::getInt1Ty(BB->getContext()),
Gabor Greif62539832010-07-12 10:59:23 +00001563 CondIsTrue), P);
Chris Lattner867661a2008-07-13 21:53:26 +00001564 } else {
Gabor Greif62539832010-07-12 10:59:23 +00001565 NewPN->addIncoming(BI->getCondition(), P);
Chris Lattner867661a2008-07-13 21:53:26 +00001566 }
Gabor Greif62539832010-07-12 10:59:23 +00001567 }
Chris Lattner867661a2008-07-13 21:53:26 +00001568
1569 BI->setCondition(NewPN);
Chris Lattner867661a2008-07-13 21:53:26 +00001570 return true;
1571 }
1572 }
1573
1574 // If this is a conditional branch in an empty block, and if any
1575 // predecessors is a conditional branch to one of our destinations,
1576 // fold the conditions into logical ops and one cond br.
Zhou Shenga8d57fe2009-02-26 06:56:37 +00001577 BasicBlock::iterator BBI = BB->begin();
1578 // Ignore dbg intrinsics.
1579 while (isa<DbgInfoIntrinsic>(BBI))
1580 ++BBI;
1581 if (&*BBI != BI)
Chris Lattnerb8245122008-07-13 22:04:41 +00001582 return false;
Chris Lattner63bf29b2009-01-20 01:15:41 +00001583
1584
1585 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(BI->getCondition()))
1586 if (CE->canTrap())
1587 return false;
Chris Lattnerb8245122008-07-13 22:04:41 +00001588
1589 int PBIOp, BIOp;
1590 if (PBI->getSuccessor(0) == BI->getSuccessor(0))
1591 PBIOp = BIOp = 0;
1592 else if (PBI->getSuccessor(0) == BI->getSuccessor(1))
1593 PBIOp = 0, BIOp = 1;
1594 else if (PBI->getSuccessor(1) == BI->getSuccessor(0))
1595 PBIOp = 1, BIOp = 0;
1596 else if (PBI->getSuccessor(1) == BI->getSuccessor(1))
1597 PBIOp = BIOp = 1;
1598 else
1599 return false;
Chris Lattner867661a2008-07-13 21:53:26 +00001600
Chris Lattnerb8245122008-07-13 22:04:41 +00001601 // Check to make sure that the other destination of this branch
1602 // isn't BB itself. If so, this is an infinite loop that will
1603 // keep getting unwound.
1604 if (PBI->getSuccessor(PBIOp) == BB)
1605 return false;
Chris Lattner867661a2008-07-13 21:53:26 +00001606
Chris Lattnerb8245122008-07-13 22:04:41 +00001607 // Do not perform this transformation if it would require
1608 // insertion of a large number of select instructions. For targets
1609 // without predication/cmovs, this is a big pessimization.
1610 BasicBlock *CommonDest = PBI->getSuccessor(PBIOp);
Chris Lattner867661a2008-07-13 21:53:26 +00001611
Chris Lattnerb8245122008-07-13 22:04:41 +00001612 unsigned NumPhis = 0;
1613 for (BasicBlock::iterator II = CommonDest->begin();
1614 isa<PHINode>(II); ++II, ++NumPhis)
1615 if (NumPhis > 2) // Disable this xform.
1616 return false;
Chris Lattner867661a2008-07-13 21:53:26 +00001617
Chris Lattnerb8245122008-07-13 22:04:41 +00001618 // Finally, if everything is ok, fold the branches to logical ops.
1619 BasicBlock *OtherDest = BI->getSuccessor(BIOp ^ 1);
1620
David Greene89d6fd32010-01-05 01:26:52 +00001621 DEBUG(dbgs() << "FOLDING BRs:" << *PBI->getParent()
Chris Lattnerbdff5482009-08-23 04:37:46 +00001622 << "AND: " << *BI->getParent());
Chris Lattnerb8245122008-07-13 22:04:41 +00001623
Chris Lattner093a4382008-07-13 22:23:11 +00001624
1625 // If OtherDest *is* BB, then BB is a basic block with a single conditional
1626 // branch in it, where one edge (OtherDest) goes back to itself but the other
1627 // exits. We don't *know* that the program avoids the infinite loop
1628 // (even though that seems likely). If we do this xform naively, we'll end up
1629 // recursively unpeeling the loop. Since we know that (after the xform is
1630 // done) that the block *is* infinite if reached, we just make it an obviously
1631 // infinite loop with no cond branch.
1632 if (OtherDest == BB) {
1633 // Insert it at the end of the function, because it's either code,
1634 // or it won't matter if it's hot. :)
Owen Anderson1d0be152009-08-13 21:58:54 +00001635 BasicBlock *InfLoopBlock = BasicBlock::Create(BB->getContext(),
1636 "infloop", BB->getParent());
Chris Lattner093a4382008-07-13 22:23:11 +00001637 BranchInst::Create(InfLoopBlock, InfLoopBlock);
1638 OtherDest = InfLoopBlock;
1639 }
1640
David Greene89d6fd32010-01-05 01:26:52 +00001641 DEBUG(dbgs() << *PBI->getParent()->getParent());
Chris Lattnerb8245122008-07-13 22:04:41 +00001642
1643 // BI may have other predecessors. Because of this, we leave
1644 // it alone, but modify PBI.
1645
1646 // Make sure we get to CommonDest on True&True directions.
1647 Value *PBICond = PBI->getCondition();
1648 if (PBIOp)
Dan Gohman4ae51262009-08-12 16:23:25 +00001649 PBICond = BinaryOperator::CreateNot(PBICond,
Chris Lattnerb8245122008-07-13 22:04:41 +00001650 PBICond->getName()+".not",
1651 PBI);
1652 Value *BICond = BI->getCondition();
1653 if (BIOp)
Dan Gohman4ae51262009-08-12 16:23:25 +00001654 BICond = BinaryOperator::CreateNot(BICond,
Chris Lattnerb8245122008-07-13 22:04:41 +00001655 BICond->getName()+".not",
1656 PBI);
1657 // Merge the conditions.
1658 Value *Cond = BinaryOperator::CreateOr(PBICond, BICond, "brmerge", PBI);
1659
1660 // Modify PBI to branch on the new condition to the new dests.
1661 PBI->setCondition(Cond);
1662 PBI->setSuccessor(0, CommonDest);
1663 PBI->setSuccessor(1, OtherDest);
1664
1665 // OtherDest may have phi nodes. If so, add an entry from PBI's
1666 // block that are identical to the entries for BI's block.
1667 PHINode *PN;
1668 for (BasicBlock::iterator II = OtherDest->begin();
1669 (PN = dyn_cast<PHINode>(II)); ++II) {
1670 Value *V = PN->getIncomingValueForBlock(BB);
1671 PN->addIncoming(V, PBI->getParent());
1672 }
1673
1674 // We know that the CommonDest already had an edge from PBI to
1675 // it. If it has PHIs though, the PHIs may have different
1676 // entries for BB and PBI's BB. If so, insert a select to make
1677 // them agree.
1678 for (BasicBlock::iterator II = CommonDest->begin();
1679 (PN = dyn_cast<PHINode>(II)); ++II) {
1680 Value *BIV = PN->getIncomingValueForBlock(BB);
1681 unsigned PBBIdx = PN->getBasicBlockIndex(PBI->getParent());
1682 Value *PBIV = PN->getIncomingValue(PBBIdx);
1683 if (BIV != PBIV) {
1684 // Insert a select in PBI to pick the right value.
1685 Value *NV = SelectInst::Create(PBICond, PBIV, BIV,
1686 PBIV->getName()+".mux", PBI);
1687 PN->setIncomingValue(PBBIdx, NV);
Chris Lattner867661a2008-07-13 21:53:26 +00001688 }
1689 }
Chris Lattnerb8245122008-07-13 22:04:41 +00001690
David Greene89d6fd32010-01-05 01:26:52 +00001691 DEBUG(dbgs() << "INTO: " << *PBI->getParent());
1692 DEBUG(dbgs() << *PBI->getParent()->getParent());
Chris Lattnerb8245122008-07-13 22:04:41 +00001693
1694 // This basic block is probably dead. We know it has at least
1695 // one fewer predecessor.
1696 return true;
Chris Lattner867661a2008-07-13 21:53:26 +00001697}
1698
Frits van Bommel7ac40c32010-12-05 18:29:03 +00001699// SimplifyIndirectBrOnSelect - Replaces
1700// (indirectbr (select cond, blockaddress(@fn, BlockA),
1701// blockaddress(@fn, BlockB)))
1702// with
1703// (br cond, BlockA, BlockB).
1704static bool SimplifyIndirectBrOnSelect(IndirectBrInst *IBI, SelectInst *SI) {
1705 // Check that both operands of the select are block addresses.
1706 BlockAddress *TBA = dyn_cast<BlockAddress>(SI->getTrueValue());
1707 BlockAddress *FBA = dyn_cast<BlockAddress>(SI->getFalseValue());
1708 if (!TBA || !FBA)
1709 return false;
1710
1711 // Extract the actual blocks.
1712 BasicBlock *TrueBB = TBA->getBasicBlock();
1713 BasicBlock *FalseBB = FBA->getBasicBlock();
1714
1715 // Remove any superfluous successor edges from the CFG.
1716 // First, figure out which successors to preserve.
1717 // If TrueBB and FalseBB are equal, only try to preserve one copy of that
1718 // successor.
1719 BasicBlock *KeepEdge1 = TrueBB;
1720 BasicBlock *KeepEdge2 = TrueBB != FalseBB ? FalseBB : 0;
1721
1722 // Then remove the rest.
1723 for (unsigned I = 0, E = IBI->getNumSuccessors(); I != E; ++I) {
1724 BasicBlock *Succ = IBI->getSuccessor(I);
1725 // Make sure only to keep exactly one copy of each edge.
1726 if (Succ == KeepEdge1)
1727 KeepEdge1 = 0;
1728 else if (Succ == KeepEdge2)
1729 KeepEdge2 = 0;
1730 else
1731 Succ->removePredecessor(IBI->getParent());
1732 }
1733
1734 // Insert an appropriate new terminator.
1735 if ((KeepEdge1 == 0) && (KeepEdge2 == 0)) {
1736 if (TrueBB == FalseBB)
1737 // We were only looking for one successor, and it was present.
1738 // Create an unconditional branch to it.
1739 BranchInst::Create(TrueBB, IBI);
1740 else
1741 // We found both of the successors we were looking for.
1742 // Create a conditional branch sharing the condition of the select.
1743 BranchInst::Create(TrueBB, FalseBB, SI->getCondition(), IBI);
1744 } else if (KeepEdge1 && (KeepEdge2 || TrueBB == FalseBB)) {
1745 // Neither of the selected blocks were successors, so this
1746 // indirectbr must be unreachable.
1747 new UnreachableInst(IBI->getContext(), IBI);
1748 } else {
1749 // One of the selected values was a successor, but the other wasn't.
1750 // Insert an unconditional branch to the one that was found;
1751 // the edge to the one that wasn't must be unreachable.
1752 if (KeepEdge1 == 0)
1753 // Only TrueBB was found.
1754 BranchInst::Create(TrueBB, IBI);
1755 else
1756 // Only FalseBB was found.
1757 BranchInst::Create(FalseBB, IBI);
1758 }
1759
1760 EraseTerminatorInstAndDCECond(IBI);
1761 return true;
1762}
1763
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +00001764bool SimplifyCFGOpt::run(BasicBlock *BB) {
Chris Lattnerdc3602b2003-08-24 18:36:16 +00001765 bool Changed = false;
Duncan Sands5f284752010-10-24 12:23:30 +00001766 Function *Fn = BB->getParent();
Chris Lattner01d1ee32002-05-21 20:50:24 +00001767
Duncan Sands5f284752010-10-24 12:23:30 +00001768 assert(BB && Fn && "Block not embedded in function!");
Chris Lattner01d1ee32002-05-21 20:50:24 +00001769 assert(BB->getTerminator() && "Degenerate basic block encountered!");
Chris Lattner01d1ee32002-05-21 20:50:24 +00001770
Dan Gohmane2c6d132010-08-14 00:29:42 +00001771 // Remove basic blocks that have no predecessors (except the entry block)...
1772 // or that just have themself as a predecessor. These are unreachable.
Duncan Sands5f284752010-10-24 12:23:30 +00001773 if ((pred_begin(BB) == pred_end(BB) && BB != &Fn->getEntryBlock()) ||
Dan Gohmane2c6d132010-08-14 00:29:42 +00001774 BB->getSinglePredecessor() == BB) {
David Greene89d6fd32010-01-05 01:26:52 +00001775 DEBUG(dbgs() << "Removing BB: \n" << *BB);
Chris Lattner71af9b02008-12-03 06:40:52 +00001776 DeleteDeadBlock(BB);
Chris Lattner01d1ee32002-05-21 20:50:24 +00001777 return true;
1778 }
1779
Chris Lattner694e37f2003-08-17 19:41:53 +00001780 // Check to see if we can constant propagate this terminator instruction
1781 // away...
Chris Lattnerdc3602b2003-08-24 18:36:16 +00001782 Changed |= ConstantFoldTerminator(BB);
Chris Lattner694e37f2003-08-17 19:41:53 +00001783
Dan Gohman2c635662009-10-30 22:39:04 +00001784 // Check for and eliminate duplicate PHI nodes in this block.
1785 Changed |= EliminateDuplicatePHINodes(BB);
1786
Dan Gohman882d87d2008-03-11 21:53:06 +00001787 // If there is a trivial two-entry PHI node in this basic block, and we can
1788 // eliminate it, do so now.
1789 if (PHINode *PN = dyn_cast<PHINode>(BB->begin()))
1790 if (PN->getNumIncomingValues() == 2)
1791 Changed |= FoldTwoEntryPHINode(PN);
1792
Chris Lattner19831ec2004-02-16 06:35:48 +00001793 // If this is a returning block with only PHI nodes in it, fold the return
1794 // instruction into any unconditional branch predecessors.
Chris Lattner147af6b2004-04-02 18:13:43 +00001795 //
1796 // If any predecessor is a conditional branch that just selects among
1797 // different return values, fold the replace the branch/return with a select
1798 // and return.
Chris Lattner19831ec2004-02-16 06:35:48 +00001799 if (ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator())) {
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001800 if (BB->getFirstNonPHIOrDbg()->isTerminator()) {
Chris Lattner147af6b2004-04-02 18:13:43 +00001801 // Find predecessors that end with branches.
Chris Lattner82442432008-02-18 07:42:56 +00001802 SmallVector<BasicBlock*, 8> UncondBranchPreds;
1803 SmallVector<BranchInst*, 8> CondBranchPreds;
Chris Lattner19831ec2004-02-16 06:35:48 +00001804 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
Gabor Greif58969352010-07-09 15:25:09 +00001805 BasicBlock *P = *PI;
1806 TerminatorInst *PTI = P->getTerminator();
Anton Korobeynikov07e6e562008-02-20 11:26:25 +00001807 if (BranchInst *BI = dyn_cast<BranchInst>(PTI)) {
Chris Lattner19831ec2004-02-16 06:35:48 +00001808 if (BI->isUnconditional())
Gabor Greif58969352010-07-09 15:25:09 +00001809 UncondBranchPreds.push_back(P);
Chris Lattner147af6b2004-04-02 18:13:43 +00001810 else
1811 CondBranchPreds.push_back(BI);
Anton Korobeynikov07e6e562008-02-20 11:26:25 +00001812 }
Chris Lattner19831ec2004-02-16 06:35:48 +00001813 }
Misha Brukmanfd939082005-04-21 23:48:37 +00001814
Chris Lattner19831ec2004-02-16 06:35:48 +00001815 // If we found some, do the transformation!
Bill Wendling1c855032009-03-03 19:25:16 +00001816 if (!UncondBranchPreds.empty()) {
Chris Lattner19831ec2004-02-16 06:35:48 +00001817 while (!UncondBranchPreds.empty()) {
Dan Gohmane9d87f42009-05-06 17:22:41 +00001818 BasicBlock *Pred = UncondBranchPreds.pop_back_val();
David Greene89d6fd32010-01-05 01:26:52 +00001819 DEBUG(dbgs() << "FOLDING: " << *BB
Chris Lattnerbdff5482009-08-23 04:37:46 +00001820 << "INTO UNCOND BRANCH PRED: " << *Pred);
Chris Lattner19831ec2004-02-16 06:35:48 +00001821 Instruction *UncondBranch = Pred->getTerminator();
1822 // Clone the return and add it to the end of the predecessor.
Nick Lewycky67760642009-09-27 07:38:41 +00001823 Instruction *NewRet = RI->clone();
Chris Lattner19831ec2004-02-16 06:35:48 +00001824 Pred->getInstList().push_back(NewRet);
1825
1826 // If the return instruction returns a value, and if the value was a
1827 // PHI node in "BB", propagate the right value into the return.
Gabor Greiff7ea3632008-06-10 22:03:26 +00001828 for (User::op_iterator i = NewRet->op_begin(), e = NewRet->op_end();
1829 i != e; ++i)
1830 if (PHINode *PN = dyn_cast<PHINode>(*i))
Chris Lattner19831ec2004-02-16 06:35:48 +00001831 if (PN->getParent() == BB)
Gabor Greiff7ea3632008-06-10 22:03:26 +00001832 *i = PN->getIncomingValueForBlock(Pred);
Chris Lattnerffba5822008-04-28 00:19:07 +00001833
Chris Lattner19831ec2004-02-16 06:35:48 +00001834 // Update any PHI nodes in the returning block to realize that we no
1835 // longer branch to them.
1836 BB->removePredecessor(Pred);
1837 Pred->getInstList().erase(UncondBranch);
1838 }
1839
1840 // If we eliminated all predecessors of the block, delete the block now.
1841 if (pred_begin(BB) == pred_end(BB))
1842 // We know there are no successors, so just nuke the block.
Duncan Sands5f284752010-10-24 12:23:30 +00001843 Fn->getBasicBlockList().erase(BB);
Chris Lattner19831ec2004-02-16 06:35:48 +00001844
Chris Lattner19831ec2004-02-16 06:35:48 +00001845 return true;
1846 }
Chris Lattner147af6b2004-04-02 18:13:43 +00001847
1848 // Check out all of the conditional branches going to this return
1849 // instruction. If any of them just select between returns, change the
1850 // branch itself into a select/return pair.
1851 while (!CondBranchPreds.empty()) {
Dan Gohmane9d87f42009-05-06 17:22:41 +00001852 BranchInst *BI = CondBranchPreds.pop_back_val();
Chris Lattner147af6b2004-04-02 18:13:43 +00001853
1854 // Check to see if the non-BB successor is also a return block.
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001855 if (isa<ReturnInst>(BI->getSuccessor(0)->getTerminator()) &&
1856 isa<ReturnInst>(BI->getSuccessor(1)->getTerminator()) &&
1857 SimplifyCondBranchToTwoReturns(BI))
1858 return true;
Chris Lattner147af6b2004-04-02 18:13:43 +00001859 }
Chris Lattner19831ec2004-02-16 06:35:48 +00001860 }
Reid Spencer3ed469c2006-11-02 20:25:50 +00001861 } else if (isa<UnwindInst>(BB->begin())) {
Chris Lattnere14ea082004-02-24 05:54:22 +00001862 // Check to see if the first instruction in this block is just an unwind.
1863 // If so, replace any invoke instructions which use this as an exception
Chris Lattner11f15db2009-10-13 18:13:05 +00001864 // destination with call instructions.
Chris Lattnere14ea082004-02-24 05:54:22 +00001865 //
Chris Lattner82442432008-02-18 07:42:56 +00001866 SmallVector<BasicBlock*, 8> Preds(pred_begin(BB), pred_end(BB));
Chris Lattnere14ea082004-02-24 05:54:22 +00001867 while (!Preds.empty()) {
1868 BasicBlock *Pred = Preds.back();
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001869 InvokeInst *II = dyn_cast<InvokeInst>(Pred->getTerminator());
1870 if (II && II->getUnwindDest() == BB) {
1871 // Insert a new branch instruction before the invoke, because this
1872 // is now a fall through.
1873 BranchInst *BI = BranchInst::Create(II->getNormalDest(), II);
1874 Pred->getInstList().remove(II); // Take out of symbol table
Misha Brukmanfd939082005-04-21 23:48:37 +00001875
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001876 // Insert the call now.
1877 SmallVector<Value*,8> Args(II->op_begin(), II->op_end()-3);
1878 CallInst *CI = CallInst::Create(II->getCalledValue(),
1879 Args.begin(), Args.end(),
1880 II->getName(), BI);
1881 CI->setCallingConv(II->getCallingConv());
1882 CI->setAttributes(II->getAttributes());
1883 // If the invoke produced a value, the Call now does instead.
1884 II->replaceAllUsesWith(CI);
1885 delete II;
1886 Changed = true;
1887 }
Misha Brukmanfd939082005-04-21 23:48:37 +00001888
Chris Lattnere14ea082004-02-24 05:54:22 +00001889 Preds.pop_back();
1890 }
Chris Lattner8e509dd2004-02-24 16:09:21 +00001891
Duncan Sands5f284752010-10-24 12:23:30 +00001892 // If this block is now dead (and isn't the entry block), remove it.
1893 if (pred_begin(BB) == pred_end(BB) && BB != &Fn->getEntryBlock()) {
Chris Lattner8e509dd2004-02-24 16:09:21 +00001894 // We know there are no successors, so just nuke the block.
Duncan Sands5f284752010-10-24 12:23:30 +00001895 Fn->getBasicBlockList().erase(BB);
Chris Lattner8e509dd2004-02-24 16:09:21 +00001896 return true;
1897 }
1898
Chris Lattner623369a2005-02-24 06:17:52 +00001899 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(BB->getTerminator())) {
1900 if (isValueEqualityComparison(SI)) {
1901 // If we only have one predecessor, and if it is a branch on this value,
1902 // see if that predecessor totally determines the outcome of this switch.
1903 if (BasicBlock *OnlyPred = BB->getSinglePredecessor())
1904 if (SimplifyEqualityComparisonWithOnlyPredecessor(SI, OnlyPred))
1905 return SimplifyCFG(BB) || 1;
1906
1907 // If the block only contains the switch, see if we can fold the block
1908 // away into any preds.
Zhou Sheng9a7c7432009-02-25 15:34:27 +00001909 BasicBlock::iterator BBI = BB->begin();
1910 // Ignore dbg intrinsics.
1911 while (isa<DbgInfoIntrinsic>(BBI))
1912 ++BBI;
1913 if (SI == &*BBI)
Chris Lattner623369a2005-02-24 06:17:52 +00001914 if (FoldValueComparisonIntoPredecessors(SI))
1915 return SimplifyCFG(BB) || 1;
1916 }
Chris Lattner542f1492004-02-28 21:28:10 +00001917 } else if (BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator())) {
Chris Lattner7e663482005-08-03 00:11:16 +00001918 if (BI->isUnconditional()) {
Chris Lattnerdcb54ce2010-12-13 01:28:06 +00001919 // If the Terminator is the only non-phi instruction, simplify the block.
1920 Instruction *I = BB->getFirstNonPHIOrDbg();
1921 if (I->isTerminator() && BB != &Fn->getEntryBlock() &&
1922 TryToSimplifyUncondBranchFromEmptyBlock(BB))
1923 return true;
Chris Lattner7e663482005-08-03 00:11:16 +00001924
1925 } else { // Conditional branch
Reid Spencer3ed469c2006-11-02 20:25:50 +00001926 if (isValueEqualityComparison(BI)) {
Chris Lattner623369a2005-02-24 06:17:52 +00001927 // If we only have one predecessor, and if it is a branch on this value,
1928 // see if that predecessor totally determines the outcome of this
1929 // switch.
1930 if (BasicBlock *OnlyPred = BB->getSinglePredecessor())
1931 if (SimplifyEqualityComparisonWithOnlyPredecessor(BI, OnlyPred))
Bill Wendlingc69b4a52010-03-14 10:40:28 +00001932 return SimplifyCFG(BB) | true;
Chris Lattner623369a2005-02-24 06:17:52 +00001933
Chris Lattnere67fa052004-05-01 23:35:43 +00001934 // This block must be empty, except for the setcond inst, if it exists.
Devang Patel556b20a2009-02-04 01:06:11 +00001935 // Ignore dbg intrinsics.
Chris Lattnere67fa052004-05-01 23:35:43 +00001936 BasicBlock::iterator I = BB->begin();
Devang Pateld0a203d2009-02-04 21:39:48 +00001937 // Ignore dbg intrinsics.
Devang Patel556b20a2009-02-04 01:06:11 +00001938 while (isa<DbgInfoIntrinsic>(I))
Devang Pateld0a203d2009-02-04 21:39:48 +00001939 ++I;
1940 if (&*I == BI) {
Chris Lattnere67fa052004-05-01 23:35:43 +00001941 if (FoldValueComparisonIntoPredecessors(BI))
1942 return SimplifyCFG(BB) | true;
Devang Pateld0a203d2009-02-04 21:39:48 +00001943 } else if (&*I == cast<Instruction>(BI->getCondition())){
1944 ++I;
1945 // Ignore dbg intrinsics.
1946 while (isa<DbgInfoIntrinsic>(I))
1947 ++I;
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001948 if (&*I == BI && FoldValueComparisonIntoPredecessors(BI))
1949 return SimplifyCFG(BB) | true;
Devang Pateld0a203d2009-02-04 21:39:48 +00001950 }
Chris Lattnere67fa052004-05-01 23:35:43 +00001951 }
Devang Pateld0a203d2009-02-04 21:39:48 +00001952
Chris Lattnereaba3a12005-09-19 23:49:37 +00001953 // If this is a branch on a phi node in the current block, thread control
1954 // through this block if any PHI node entries are constants.
1955 if (PHINode *PN = dyn_cast<PHINode>(BI->getCondition()))
1956 if (PN->getParent() == BI->getParent())
1957 if (FoldCondBranchOnPHI(BI))
1958 return SimplifyCFG(BB) | true;
Chris Lattnere67fa052004-05-01 23:35:43 +00001959
1960 // If this basic block is ONLY a setcc and a branch, and if a predecessor
1961 // branches to us and one of our successors, fold the setcc into the
1962 // predecessor and use logical operations to pick the right destination.
Chris Lattner1347e872008-07-13 21:12:01 +00001963 if (FoldBranchToCommonDest(BI))
Bill Wendlingc69b4a52010-03-14 10:40:28 +00001964 return SimplifyCFG(BB) | true;
Chris Lattnere67fa052004-05-01 23:35:43 +00001965
Chris Lattner867661a2008-07-13 21:53:26 +00001966
1967 // Scan predecessor blocks for conditional branches.
Chris Lattner2e42e362005-09-20 00:43:16 +00001968 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI)
1969 if (BranchInst *PBI = dyn_cast<BranchInst>((*PI)->getTerminator()))
Chris Lattner867661a2008-07-13 21:53:26 +00001970 if (PBI != BI && PBI->isConditional())
1971 if (SimplifyCondBranchToCondBranch(PBI, BI))
1972 return SimplifyCFG(BB) | true;
Chris Lattnerd52c2612004-02-24 07:23:58 +00001973 }
Chris Lattner698f96f2004-10-18 04:07:22 +00001974 } else if (isa<UnreachableInst>(BB->getTerminator())) {
1975 // If there are any instructions immediately before the unreachable that can
1976 // be removed, do so.
1977 Instruction *Unreachable = BB->getTerminator();
1978 while (Unreachable != BB->begin()) {
1979 BasicBlock::iterator BBI = Unreachable;
1980 --BBI;
Chris Lattnerf8131c92008-10-29 17:46:26 +00001981 // Do not delete instructions that can have side effects, like calls
1982 // (which may never return) and volatile loads and stores.
Dale Johannesen80b8a622009-03-12 17:42:45 +00001983 if (isa<CallInst>(BBI) && !isa<DbgInfoIntrinsic>(BBI)) break;
Chris Lattnerf8131c92008-10-29 17:46:26 +00001984
1985 if (StoreInst *SI = dyn_cast<StoreInst>(BBI))
1986 if (SI->isVolatile())
1987 break;
1988
1989 if (LoadInst *LI = dyn_cast<LoadInst>(BBI))
1990 if (LI->isVolatile())
1991 break;
1992
Chris Lattner698f96f2004-10-18 04:07:22 +00001993 // Delete this instruction
1994 BB->getInstList().erase(BBI);
1995 Changed = true;
1996 }
1997
1998 // If the unreachable instruction is the first in the block, take a gander
1999 // at all of the predecessors of this instruction, and simplify them.
2000 if (&BB->front() == Unreachable) {
Chris Lattner82442432008-02-18 07:42:56 +00002001 SmallVector<BasicBlock*, 8> Preds(pred_begin(BB), pred_end(BB));
Chris Lattner698f96f2004-10-18 04:07:22 +00002002 for (unsigned i = 0, e = Preds.size(); i != e; ++i) {
2003 TerminatorInst *TI = Preds[i]->getTerminator();
2004
2005 if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
2006 if (BI->isUnconditional()) {
2007 if (BI->getSuccessor(0) == BB) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002008 new UnreachableInst(TI->getContext(), TI);
Chris Lattner698f96f2004-10-18 04:07:22 +00002009 TI->eraseFromParent();
2010 Changed = true;
2011 }
2012 } else {
2013 if (BI->getSuccessor(0) == BB) {
Gabor Greif051a9502008-04-06 20:25:17 +00002014 BranchInst::Create(BI->getSuccessor(1), BI);
Eli Friedman080efb82008-12-16 20:54:32 +00002015 EraseTerminatorInstAndDCECond(BI);
Chris Lattner698f96f2004-10-18 04:07:22 +00002016 } else if (BI->getSuccessor(1) == BB) {
Gabor Greif051a9502008-04-06 20:25:17 +00002017 BranchInst::Create(BI->getSuccessor(0), BI);
Eli Friedman080efb82008-12-16 20:54:32 +00002018 EraseTerminatorInstAndDCECond(BI);
Chris Lattner698f96f2004-10-18 04:07:22 +00002019 Changed = true;
2020 }
2021 }
2022 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
2023 for (unsigned i = 1, e = SI->getNumCases(); i != e; ++i)
2024 if (SI->getSuccessor(i) == BB) {
Chris Lattner42eb7522005-05-20 22:19:54 +00002025 BB->removePredecessor(SI->getParent());
Chris Lattner698f96f2004-10-18 04:07:22 +00002026 SI->removeCase(i);
2027 --i; --e;
2028 Changed = true;
2029 }
2030 // If the default value is unreachable, figure out the most popular
2031 // destination and make it the default.
2032 if (SI->getSuccessor(0) == BB) {
2033 std::map<BasicBlock*, unsigned> Popularity;
2034 for (unsigned i = 1, e = SI->getNumCases(); i != e; ++i)
2035 Popularity[SI->getSuccessor(i)]++;
2036
2037 // Find the most popular block.
2038 unsigned MaxPop = 0;
2039 BasicBlock *MaxBlock = 0;
2040 for (std::map<BasicBlock*, unsigned>::iterator
2041 I = Popularity.begin(), E = Popularity.end(); I != E; ++I) {
2042 if (I->second > MaxPop) {
2043 MaxPop = I->second;
2044 MaxBlock = I->first;
2045 }
2046 }
2047 if (MaxBlock) {
2048 // Make this the new default, allowing us to delete any explicit
2049 // edges to it.
2050 SI->setSuccessor(0, MaxBlock);
2051 Changed = true;
2052
Chris Lattner42eb7522005-05-20 22:19:54 +00002053 // If MaxBlock has phinodes in it, remove MaxPop-1 entries from
2054 // it.
2055 if (isa<PHINode>(MaxBlock->begin()))
2056 for (unsigned i = 0; i != MaxPop-1; ++i)
2057 MaxBlock->removePredecessor(SI->getParent());
2058
Chris Lattner698f96f2004-10-18 04:07:22 +00002059 for (unsigned i = 1, e = SI->getNumCases(); i != e; ++i)
2060 if (SI->getSuccessor(i) == MaxBlock) {
2061 SI->removeCase(i);
2062 --i; --e;
2063 }
2064 }
2065 }
2066 } else if (InvokeInst *II = dyn_cast<InvokeInst>(TI)) {
2067 if (II->getUnwindDest() == BB) {
2068 // Convert the invoke to a call instruction. This would be a good
2069 // place to note that the call does not throw though.
Gabor Greif051a9502008-04-06 20:25:17 +00002070 BranchInst *BI = BranchInst::Create(II->getNormalDest(), II);
Chris Lattner698f96f2004-10-18 04:07:22 +00002071 II->removeFromParent(); // Take out of symbol table
Misha Brukmanfd939082005-04-21 23:48:37 +00002072
Chris Lattner698f96f2004-10-18 04:07:22 +00002073 // Insert the call now...
Gabor Greifbd443142010-03-30 19:20:53 +00002074 SmallVector<Value*, 8> Args(II->op_begin(), II->op_end()-3);
Gabor Greif051a9502008-04-06 20:25:17 +00002075 CallInst *CI = CallInst::Create(II->getCalledValue(),
2076 Args.begin(), Args.end(),
2077 II->getName(), BI);
Chris Lattner16d0db22005-05-14 12:21:56 +00002078 CI->setCallingConv(II->getCallingConv());
Devang Patel05988662008-09-25 21:00:45 +00002079 CI->setAttributes(II->getAttributes());
Gabor Greifbd443142010-03-30 19:20:53 +00002080 // If the invoke produced a value, the call does now instead.
Chris Lattner698f96f2004-10-18 04:07:22 +00002081 II->replaceAllUsesWith(CI);
2082 delete II;
2083 Changed = true;
2084 }
2085 }
2086 }
2087
2088 // If this block is now dead, remove it.
Duncan Sands5f284752010-10-24 12:23:30 +00002089 if (pred_begin(BB) == pred_end(BB) && BB != &Fn->getEntryBlock()) {
Chris Lattner698f96f2004-10-18 04:07:22 +00002090 // We know there are no successors, so just nuke the block.
Duncan Sands5f284752010-10-24 12:23:30 +00002091 Fn->getBasicBlockList().erase(BB);
Chris Lattner698f96f2004-10-18 04:07:22 +00002092 return true;
2093 }
2094 }
Dan Gohman7a499432010-08-16 14:41:14 +00002095 } else if (IndirectBrInst *IBI =
2096 dyn_cast<IndirectBrInst>(BB->getTerminator())) {
Dan Gohmane2c6d132010-08-14 00:29:42 +00002097 // Eliminate redundant destinations.
2098 SmallPtrSet<Value *, 8> Succs;
2099 for (unsigned i = 0, e = IBI->getNumDestinations(); i != e; ++i) {
2100 BasicBlock *Dest = IBI->getDestination(i);
Dan Gohman7a499432010-08-16 14:41:14 +00002101 if (!Dest->hasAddressTaken() || !Succs.insert(Dest)) {
Dan Gohmane2c6d132010-08-14 00:29:42 +00002102 Dest->removePredecessor(BB);
2103 IBI->removeDestination(i);
2104 --i; --e;
2105 Changed = true;
2106 }
2107 }
2108
2109 if (IBI->getNumDestinations() == 0) {
2110 // If the indirectbr has no successors, change it to unreachable.
2111 new UnreachableInst(IBI->getContext(), IBI);
Frits van Bommel7ac40c32010-12-05 18:29:03 +00002112 EraseTerminatorInstAndDCECond(IBI);
Dan Gohmane2c6d132010-08-14 00:29:42 +00002113 Changed = true;
2114 } else if (IBI->getNumDestinations() == 1) {
2115 // If the indirectbr has one successor, change it to a direct branch.
2116 BranchInst::Create(IBI->getDestination(0), IBI);
Frits van Bommel7ac40c32010-12-05 18:29:03 +00002117 EraseTerminatorInstAndDCECond(IBI);
Dan Gohmane2c6d132010-08-14 00:29:42 +00002118 Changed = true;
Frits van Bommel7ac40c32010-12-05 18:29:03 +00002119 } else if (SelectInst *SI = dyn_cast<SelectInst>(IBI->getAddress())) {
2120 if (SimplifyIndirectBrOnSelect(IBI, SI))
2121 return SimplifyCFG(BB) | true;
Dan Gohmane2c6d132010-08-14 00:29:42 +00002122 }
Chris Lattner19831ec2004-02-16 06:35:48 +00002123 }
2124
Chris Lattner01d1ee32002-05-21 20:50:24 +00002125 // Merge basic blocks into their predecessor if there is only one distinct
2126 // pred, and if there is only one distinct successor of the predecessor, and
2127 // if there are no PHI nodes.
2128 //
Owen Andersoncfa94192008-07-18 17:49:43 +00002129 if (MergeBlockIntoPredecessor(BB))
2130 return true;
2131
2132 // Otherwise, if this block only has a single predecessor, and if that block
2133 // is a conditional branch, see if we can hoist any code from this block up
2134 // into our predecessor.
Chris Lattner2355f942004-02-11 01:17:07 +00002135 pred_iterator PI(pred_begin(BB)), PE(pred_end(BB));
Dan Gohmane2c6d132010-08-14 00:29:42 +00002136 BasicBlock *OnlyPred = 0;
2137 for (; PI != PE; ++PI) { // Search all predecessors, see if they are all same
2138 if (!OnlyPred)
2139 OnlyPred = *PI;
2140 else if (*PI != OnlyPred) {
Chris Lattner2355f942004-02-11 01:17:07 +00002141 OnlyPred = 0; // There are multiple different predecessors...
2142 break;
2143 }
Dan Gohmane2c6d132010-08-14 00:29:42 +00002144 }
Owen Andersoncfa94192008-07-18 17:49:43 +00002145
Chris Lattner9a2b72a2010-12-13 01:47:07 +00002146 if (OnlyPred) {
2147 BranchInst *BI = dyn_cast<BranchInst>(OnlyPred->getTerminator());
2148 if (BI && BI->isConditional()) {
2149 // Get the other block.
2150 BasicBlock *OtherBB = BI->getSuccessor(BI->getSuccessor(0) == BB);
2151 PI = pred_begin(OtherBB);
2152 ++PI;
2153
2154 if (PI == pred_end(OtherBB)) {
2155 // We have a conditional branch to two blocks that are only reachable
2156 // from the condbr. We know that the condbr dominates the two blocks,
2157 // so see if there is any identical code in the "then" and "else"
2158 // blocks. If so, we can hoist it up to the branching block.
2159 Changed |= HoistThenElseCodeToIf(BI);
2160 } else {
2161 BasicBlock* OnlySucc = NULL;
2162 for (succ_iterator SI = succ_begin(BB), SE = succ_end(BB);
2163 SI != SE; ++SI) {
2164 if (!OnlySucc)
2165 OnlySucc = *SI;
2166 else if (*SI != OnlySucc) {
2167 OnlySucc = 0; // There are multiple distinct successors!
2168 break;
Evan Cheng4d09efd2008-06-07 08:52:29 +00002169 }
Chris Lattner76134372004-12-10 17:42:31 +00002170 }
Chris Lattner37dc9382004-11-30 00:29:14 +00002171
Chris Lattner9a2b72a2010-12-13 01:47:07 +00002172 if (OnlySucc == OtherBB) {
2173 // If BB's only successor is the other successor of the predecessor,
2174 // i.e. a triangle, see if we can hoist any code from this block up
2175 // to the "if" block.
2176 Changed |= SpeculativelyExecuteBB(BI, BB);
Chris Lattner0d560082004-02-24 05:38:11 +00002177 }
2178 }
Chris Lattner9a2b72a2010-12-13 01:47:07 +00002179 }
2180 }
2181
2182 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
2183 BranchInst *BI = dyn_cast<BranchInst>((*PI)->getTerminator());
2184 // Change br (X == 0 | X == 1), T, F into a switch instruction.
2185 if (BI && BI->isConditional() && isa<Instruction>(BI->getCondition())) {
2186 Instruction *Cond = cast<Instruction>(BI->getCondition());
2187 // If this is a bunch of seteq's or'd together, or if it's a bunch of
2188 // 'setne's and'ed together, collect them.
2189 Value *CompVal = 0;
2190 std::vector<ConstantInt*> Values;
2191 bool TrueWhenEqual = GatherValueComparisons(Cond, CompVal, Values);
2192 if (CompVal) {
2193 // There might be duplicate constants in the list, which the switch
2194 // instruction can't handle, remove them now.
2195 std::sort(Values.begin(), Values.end(), ConstantIntOrdering());
2196 Values.erase(std::unique(Values.begin(), Values.end()), Values.end());
Chris Lattner0d560082004-02-24 05:38:11 +00002197
Chris Lattner9a2b72a2010-12-13 01:47:07 +00002198 // Figure out which block is which destination.
2199 BasicBlock *DefaultBB = BI->getSuccessor(1);
2200 BasicBlock *EdgeBB = BI->getSuccessor(0);
2201 if (!TrueWhenEqual) std::swap(DefaultBB, EdgeBB);
2202
2203 // Convert pointer to int before we switch.
2204 if (CompVal->getType()->isPointerTy()) {
2205 assert(TD && "Cannot switch on pointer without TargetData");
2206 CompVal = new PtrToIntInst(CompVal,
2207 TD->getIntPtrType(CompVal->getContext()),
2208 "magicptr", BI);
2209 }
2210
2211 // Create the new switch instruction now.
2212 SwitchInst *New = SwitchInst::Create(CompVal, DefaultBB,
2213 Values.size(), BI);
2214
2215 // Add all of the 'cases' to the switch instruction.
2216 for (unsigned i = 0, e = Values.size(); i != e; ++i)
2217 New->addCase(Values[i], EdgeBB);
2218
2219 // We added edges from PI to the EdgeBB. As such, if there were any
2220 // PHI nodes in EdgeBB, they need entries to be added corresponding to
2221 // the number of edges added.
2222 for (BasicBlock::iterator BBI = EdgeBB->begin();
2223 isa<PHINode>(BBI); ++BBI) {
2224 PHINode *PN = cast<PHINode>(BBI);
2225 Value *InVal = PN->getIncomingValueForBlock(*PI);
2226 for (unsigned i = 0, e = Values.size()-1; i != e; ++i)
2227 PN->addIncoming(InVal, *PI);
2228 }
2229
2230 // Erase the old branch instruction.
2231 EraseTerminatorInstAndDCECond(BI);
2232 return true;
2233 }
2234 }
2235 }
2236
Chris Lattner694e37f2003-08-17 19:41:53 +00002237 return Changed;
Chris Lattner01d1ee32002-05-21 20:50:24 +00002238}
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +00002239
2240/// SimplifyCFG - This function is used to do simplification of a CFG. For
2241/// example, it adjusts branches to branches to eliminate the extra hop, it
2242/// eliminates unreachable basic blocks, and does other "peephole" optimization
2243/// of the CFG. It returns true if a modification was made.
2244///
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +00002245bool llvm::SimplifyCFG(BasicBlock *BB, const TargetData *TD) {
2246 return SimplifyCFGOpt(TD).run(BB);
2247}