blob: 8cc63e603ad3b018518c8583ec37a89296ae6d31 [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);
Chris Lattnercd4b7092010-12-13 01:57:34 +000047 bool GatherValueComparisons(Value *Cond, Value *&CompVal,
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +000048 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.
Chris Lattnercd4b7092010-12-13 01:57:34 +0000356bool SimplifyCFGOpt::GatherValueComparisons(Value *CondV, Value *&CompVal,
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000357 std::vector<ConstantInt*> &Values) {
Chris Lattnercd4b7092010-12-13 01:57:34 +0000358 Instruction *Cond = dyn_cast<Instruction>(CondV);
359 if (Cond == 0) return false;
360
Chris Lattner0d560082004-02-24 05:38:11 +0000361 if (Cond->getOpcode() == Instruction::Or) {
362 CompVal = GatherConstantSetEQs(Cond, Values);
363
364 // Return true to indicate that the condition is true if the CompVal is
365 // equal to one of the constants.
366 return true;
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000367 }
368 if (Cond->getOpcode() == Instruction::And) {
Chris Lattner0d560082004-02-24 05:38:11 +0000369 CompVal = GatherConstantSetNEs(Cond, Values);
Misha Brukmanfd939082005-04-21 23:48:37 +0000370
Chris Lattner0d560082004-02-24 05:38:11 +0000371 // Return false to indicate that the condition is false if the CompVal is
372 // equal to one of the constants.
373 return false;
374 }
375 return false;
376}
377
Eli Friedman080efb82008-12-16 20:54:32 +0000378static void EraseTerminatorInstAndDCECond(TerminatorInst *TI) {
379 Instruction* Cond = 0;
380 if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
381 Cond = dyn_cast<Instruction>(SI->getCondition());
382 } else if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
383 if (BI->isConditional())
384 Cond = dyn_cast<Instruction>(BI->getCondition());
Frits van Bommel7ac40c32010-12-05 18:29:03 +0000385 } else if (IndirectBrInst *IBI = dyn_cast<IndirectBrInst>(TI)) {
386 Cond = dyn_cast<Instruction>(IBI->getAddress());
Eli Friedman080efb82008-12-16 20:54:32 +0000387 }
388
389 TI->eraseFromParent();
390 if (Cond) RecursivelyDeleteTriviallyDeadInstructions(Cond);
391}
392
Chris Lattner9fd49552008-11-27 23:25:44 +0000393/// isValueEqualityComparison - Return true if the specified terminator checks
394/// to see if a value is equal to constant integer value.
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000395Value *SimplifyCFGOpt::isValueEqualityComparison(TerminatorInst *TI) {
396 Value *CV = 0;
Chris Lattner4bebf082004-03-16 19:45:22 +0000397 if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
398 // Do not permit merging of large switch instructions into their
399 // predecessors unless there is only one predecessor.
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000400 if (SI->getNumSuccessors()*std::distance(pred_begin(SI->getParent()),
401 pred_end(SI->getParent())) <= 128)
402 CV = SI->getCondition();
403 } else if (BranchInst *BI = dyn_cast<BranchInst>(TI))
Chris Lattner542f1492004-02-28 21:28:10 +0000404 if (BI->isConditional() && BI->getCondition()->hasOneUse())
Reid Spencere4d87aa2006-12-23 06:05:41 +0000405 if (ICmpInst *ICI = dyn_cast<ICmpInst>(BI->getCondition()))
406 if ((ICI->getPredicate() == ICmpInst::ICMP_EQ ||
407 ICI->getPredicate() == ICmpInst::ICMP_NE) &&
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000408 GetConstantInt(ICI->getOperand(1)))
409 CV = ICI->getOperand(0);
410
411 // Unwrap any lossless ptrtoint cast.
412 if (TD && CV && CV->getType() == TD->getIntPtrType(CV->getContext()))
413 if (PtrToIntInst *PTII = dyn_cast<PtrToIntInst>(CV))
414 CV = PTII->getOperand(0);
415 return CV;
Chris Lattner542f1492004-02-28 21:28:10 +0000416}
417
Bill Wendling5049fa62009-01-19 23:43:56 +0000418/// GetValueEqualityComparisonCases - Given a value comparison instruction,
419/// decode all of the 'cases' that it represents and return the 'default' block.
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000420BasicBlock *SimplifyCFGOpt::
Misha Brukmanfd939082005-04-21 23:48:37 +0000421GetValueEqualityComparisonCases(TerminatorInst *TI,
Chris Lattner542f1492004-02-28 21:28:10 +0000422 std::vector<std::pair<ConstantInt*,
423 BasicBlock*> > &Cases) {
424 if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
425 Cases.reserve(SI->getNumCases());
426 for (unsigned i = 1, e = SI->getNumCases(); i != e; ++i)
Chris Lattnerbe54dcc2005-02-26 18:33:28 +0000427 Cases.push_back(std::make_pair(SI->getCaseValue(i), SI->getSuccessor(i)));
Chris Lattner542f1492004-02-28 21:28:10 +0000428 return SI->getDefaultDest();
429 }
430
431 BranchInst *BI = cast<BranchInst>(TI);
Reid Spencere4d87aa2006-12-23 06:05:41 +0000432 ICmpInst *ICI = cast<ICmpInst>(BI->getCondition());
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000433 Cases.push_back(std::make_pair(GetConstantInt(ICI->getOperand(1)),
Reid Spencere4d87aa2006-12-23 06:05:41 +0000434 BI->getSuccessor(ICI->getPredicate() ==
435 ICmpInst::ICMP_NE)));
436 return BI->getSuccessor(ICI->getPredicate() == ICmpInst::ICMP_EQ);
Chris Lattner542f1492004-02-28 21:28:10 +0000437}
438
439
Bill Wendling5049fa62009-01-19 23:43:56 +0000440/// EliminateBlockCases - Given a vector of bb/value pairs, remove any entries
441/// in the list that match the specified block.
Misha Brukmanfd939082005-04-21 23:48:37 +0000442static void EliminateBlockCases(BasicBlock *BB,
Chris Lattner623369a2005-02-24 06:17:52 +0000443 std::vector<std::pair<ConstantInt*, BasicBlock*> > &Cases) {
444 for (unsigned i = 0, e = Cases.size(); i != e; ++i)
445 if (Cases[i].second == BB) {
446 Cases.erase(Cases.begin()+i);
447 --i; --e;
448 }
449}
450
Bill Wendling5049fa62009-01-19 23:43:56 +0000451/// ValuesOverlap - Return true if there are any keys in C1 that exist in C2 as
452/// well.
Chris Lattner623369a2005-02-24 06:17:52 +0000453static bool
454ValuesOverlap(std::vector<std::pair<ConstantInt*, BasicBlock*> > &C1,
455 std::vector<std::pair<ConstantInt*, BasicBlock*> > &C2) {
456 std::vector<std::pair<ConstantInt*, BasicBlock*> > *V1 = &C1, *V2 = &C2;
457
458 // Make V1 be smaller than V2.
459 if (V1->size() > V2->size())
460 std::swap(V1, V2);
461
462 if (V1->size() == 0) return false;
463 if (V1->size() == 1) {
464 // Just scan V2.
465 ConstantInt *TheVal = (*V1)[0].first;
466 for (unsigned i = 0, e = V2->size(); i != e; ++i)
467 if (TheVal == (*V2)[i].first)
468 return true;
469 }
470
471 // Otherwise, just sort both lists and compare element by element.
472 std::sort(V1->begin(), V1->end());
473 std::sort(V2->begin(), V2->end());
474 unsigned i1 = 0, i2 = 0, e1 = V1->size(), e2 = V2->size();
475 while (i1 != e1 && i2 != e2) {
476 if ((*V1)[i1].first == (*V2)[i2].first)
477 return true;
478 if ((*V1)[i1].first < (*V2)[i2].first)
479 ++i1;
480 else
481 ++i2;
482 }
483 return false;
484}
485
Bill Wendling5049fa62009-01-19 23:43:56 +0000486/// SimplifyEqualityComparisonWithOnlyPredecessor - If TI is known to be a
487/// terminator instruction and its block is known to only have a single
488/// predecessor block, check to see if that predecessor is also a value
489/// comparison with the same value, and if that comparison determines the
490/// outcome of this comparison. If so, simplify TI. This does a very limited
491/// form of jump threading.
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000492bool SimplifyCFGOpt::
493SimplifyEqualityComparisonWithOnlyPredecessor(TerminatorInst *TI,
494 BasicBlock *Pred) {
Chris Lattner623369a2005-02-24 06:17:52 +0000495 Value *PredVal = isValueEqualityComparison(Pred->getTerminator());
496 if (!PredVal) return false; // Not a value comparison in predecessor.
497
498 Value *ThisVal = isValueEqualityComparison(TI);
499 assert(ThisVal && "This isn't a value comparison!!");
500 if (ThisVal != PredVal) return false; // Different predicates.
501
502 // Find out information about when control will move from Pred to TI's block.
503 std::vector<std::pair<ConstantInt*, BasicBlock*> > PredCases;
504 BasicBlock *PredDef = GetValueEqualityComparisonCases(Pred->getTerminator(),
505 PredCases);
506 EliminateBlockCases(PredDef, PredCases); // Remove default from cases.
Misha Brukmanfd939082005-04-21 23:48:37 +0000507
Chris Lattner623369a2005-02-24 06:17:52 +0000508 // Find information about how control leaves this block.
509 std::vector<std::pair<ConstantInt*, BasicBlock*> > ThisCases;
510 BasicBlock *ThisDef = GetValueEqualityComparisonCases(TI, ThisCases);
511 EliminateBlockCases(ThisDef, ThisCases); // Remove default from cases.
512
513 // If TI's block is the default block from Pred's comparison, potentially
514 // simplify TI based on this knowledge.
515 if (PredDef == TI->getParent()) {
516 // If we are here, we know that the value is none of those cases listed in
517 // PredCases. If there are any cases in ThisCases that are in PredCases, we
518 // can simplify TI.
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000519 if (!ValuesOverlap(PredCases, ThisCases))
520 return false;
521
522 if (isa<BranchInst>(TI)) {
523 // Okay, one of the successors of this condbr is dead. Convert it to a
524 // uncond br.
525 assert(ThisCases.size() == 1 && "Branch can only have one case!");
526 // Insert the new branch.
527 Instruction *NI = BranchInst::Create(ThisDef, TI);
528 (void) NI;
Chris Lattner623369a2005-02-24 06:17:52 +0000529
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000530 // Remove PHI node entries for the dead edge.
531 ThisCases[0].second->removePredecessor(TI->getParent());
Chris Lattner623369a2005-02-24 06:17:52 +0000532
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000533 DEBUG(dbgs() << "Threading pred instr: " << *Pred->getTerminator()
534 << "Through successor TI: " << *TI << "Leaving: " << *NI << "\n");
Chris Lattner623369a2005-02-24 06:17:52 +0000535
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000536 EraseTerminatorInstAndDCECond(TI);
537 return true;
Chris Lattner623369a2005-02-24 06:17:52 +0000538 }
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000539
540 SwitchInst *SI = cast<SwitchInst>(TI);
541 // Okay, TI has cases that are statically dead, prune them away.
542 SmallPtrSet<Constant*, 16> DeadCases;
Chris Lattner623369a2005-02-24 06:17:52 +0000543 for (unsigned i = 0, e = PredCases.size(); i != e; ++i)
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000544 DeadCases.insert(PredCases[i].first);
Chris Lattner623369a2005-02-24 06:17:52 +0000545
David Greene89d6fd32010-01-05 01:26:52 +0000546 DEBUG(dbgs() << "Threading pred instr: " << *Pred->getTerminator()
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000547 << "Through successor TI: " << *TI);
Chris Lattner623369a2005-02-24 06:17:52 +0000548
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000549 for (unsigned i = SI->getNumCases()-1; i != 0; --i)
550 if (DeadCases.count(SI->getCaseValue(i))) {
551 SI->getSuccessor(i)->removePredecessor(TI->getParent());
552 SI->removeCase(i);
553 }
554
555 DEBUG(dbgs() << "Leaving: " << *TI << "\n");
Chris Lattner623369a2005-02-24 06:17:52 +0000556 return true;
557 }
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000558
559 // Otherwise, TI's block must correspond to some matched value. Find out
560 // which value (or set of values) this is.
561 ConstantInt *TIV = 0;
562 BasicBlock *TIBB = TI->getParent();
563 for (unsigned i = 0, e = PredCases.size(); i != e; ++i)
564 if (PredCases[i].second == TIBB) {
565 if (TIV != 0)
566 return false; // Cannot handle multiple values coming to this block.
567 TIV = PredCases[i].first;
568 }
569 assert(TIV && "No edge from pred to succ?");
570
571 // Okay, we found the one constant that our value can be if we get into TI's
572 // BB. Find out which successor will unconditionally be branched to.
573 BasicBlock *TheRealDest = 0;
574 for (unsigned i = 0, e = ThisCases.size(); i != e; ++i)
575 if (ThisCases[i].first == TIV) {
576 TheRealDest = ThisCases[i].second;
577 break;
578 }
579
580 // If not handled by any explicit cases, it is handled by the default case.
581 if (TheRealDest == 0) TheRealDest = ThisDef;
582
583 // Remove PHI node entries for dead edges.
584 BasicBlock *CheckEdge = TheRealDest;
585 for (succ_iterator SI = succ_begin(TIBB), e = succ_end(TIBB); SI != e; ++SI)
586 if (*SI != CheckEdge)
587 (*SI)->removePredecessor(TIBB);
588 else
589 CheckEdge = 0;
590
591 // Insert the new branch.
592 Instruction *NI = BranchInst::Create(TheRealDest, TI);
593 (void) NI;
594
595 DEBUG(dbgs() << "Threading pred instr: " << *Pred->getTerminator()
596 << "Through successor TI: " << *TI << "Leaving: " << *NI << "\n");
597
598 EraseTerminatorInstAndDCECond(TI);
599 return true;
Chris Lattner623369a2005-02-24 06:17:52 +0000600}
601
Dale Johannesenc81f5442009-03-12 21:01:11 +0000602namespace {
603 /// ConstantIntOrdering - This class implements a stable ordering of constant
604 /// integers that does not depend on their address. This is important for
605 /// applications that sort ConstantInt's to ensure uniqueness.
606 struct ConstantIntOrdering {
607 bool operator()(const ConstantInt *LHS, const ConstantInt *RHS) const {
608 return LHS->getValue().ult(RHS->getValue());
609 }
610 };
611}
Dale Johannesena9537cf2009-03-12 01:00:26 +0000612
Bill Wendling5049fa62009-01-19 23:43:56 +0000613/// FoldValueComparisonIntoPredecessors - The specified terminator is a value
614/// equality comparison instruction (either a switch or a branch on "X == c").
615/// See if any of the predecessors of the terminator block are value comparisons
616/// on the same value. If so, and if safe to do so, fold them together.
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000617bool SimplifyCFGOpt::FoldValueComparisonIntoPredecessors(TerminatorInst *TI) {
Chris Lattner542f1492004-02-28 21:28:10 +0000618 BasicBlock *BB = TI->getParent();
619 Value *CV = isValueEqualityComparison(TI); // CondVal
620 assert(CV && "Not a comparison?");
621 bool Changed = false;
622
Chris Lattner82442432008-02-18 07:42:56 +0000623 SmallVector<BasicBlock*, 16> Preds(pred_begin(BB), pred_end(BB));
Chris Lattner542f1492004-02-28 21:28:10 +0000624 while (!Preds.empty()) {
Dan Gohmane9d87f42009-05-06 17:22:41 +0000625 BasicBlock *Pred = Preds.pop_back_val();
Misha Brukmanfd939082005-04-21 23:48:37 +0000626
Chris Lattner542f1492004-02-28 21:28:10 +0000627 // See if the predecessor is a comparison with the same value.
628 TerminatorInst *PTI = Pred->getTerminator();
629 Value *PCV = isValueEqualityComparison(PTI); // PredCondVal
630
631 if (PCV == CV && SafeToMergeTerminators(TI, PTI)) {
632 // Figure out which 'cases' to copy from SI to PSI.
633 std::vector<std::pair<ConstantInt*, BasicBlock*> > BBCases;
634 BasicBlock *BBDefault = GetValueEqualityComparisonCases(TI, BBCases);
635
636 std::vector<std::pair<ConstantInt*, BasicBlock*> > PredCases;
637 BasicBlock *PredDefault = GetValueEqualityComparisonCases(PTI, PredCases);
638
639 // Based on whether the default edge from PTI goes to BB or not, fill in
640 // PredCases and PredDefault with the new switch cases we would like to
641 // build.
Chris Lattner82442432008-02-18 07:42:56 +0000642 SmallVector<BasicBlock*, 8> NewSuccessors;
Chris Lattner542f1492004-02-28 21:28:10 +0000643
644 if (PredDefault == BB) {
645 // If this is the default destination from PTI, only the edges in TI
646 // that don't occur in PTI, or that branch to BB will be activated.
Dale Johannesenc81f5442009-03-12 21:01:11 +0000647 std::set<ConstantInt*, ConstantIntOrdering> PTIHandled;
Chris Lattner542f1492004-02-28 21:28:10 +0000648 for (unsigned i = 0, e = PredCases.size(); i != e; ++i)
649 if (PredCases[i].second != BB)
650 PTIHandled.insert(PredCases[i].first);
651 else {
652 // The default destination is BB, we don't need explicit targets.
653 std::swap(PredCases[i], PredCases.back());
654 PredCases.pop_back();
655 --i; --e;
656 }
657
658 // Reconstruct the new switch statement we will be building.
659 if (PredDefault != BBDefault) {
660 PredDefault->removePredecessor(Pred);
661 PredDefault = BBDefault;
662 NewSuccessors.push_back(BBDefault);
663 }
664 for (unsigned i = 0, e = BBCases.size(); i != e; ++i)
665 if (!PTIHandled.count(BBCases[i].first) &&
666 BBCases[i].second != BBDefault) {
667 PredCases.push_back(BBCases[i]);
668 NewSuccessors.push_back(BBCases[i].second);
669 }
670
671 } else {
672 // If this is not the default destination from PSI, only the edges
673 // in SI that occur in PSI with a destination of BB will be
674 // activated.
Dale Johannesenc81f5442009-03-12 21:01:11 +0000675 std::set<ConstantInt*, ConstantIntOrdering> PTIHandled;
Chris Lattner542f1492004-02-28 21:28:10 +0000676 for (unsigned i = 0, e = PredCases.size(); i != e; ++i)
677 if (PredCases[i].second == BB) {
678 PTIHandled.insert(PredCases[i].first);
679 std::swap(PredCases[i], PredCases.back());
680 PredCases.pop_back();
681 --i; --e;
682 }
683
684 // Okay, now we know which constants were sent to BB from the
685 // predecessor. Figure out where they will all go now.
686 for (unsigned i = 0, e = BBCases.size(); i != e; ++i)
687 if (PTIHandled.count(BBCases[i].first)) {
688 // If this is one we are capable of getting...
689 PredCases.push_back(BBCases[i]);
690 NewSuccessors.push_back(BBCases[i].second);
691 PTIHandled.erase(BBCases[i].first);// This constant is taken care of
692 }
693
694 // If there are any constants vectored to BB that TI doesn't handle,
695 // they must go to the default destination of TI.
Dale Johannesenc81f5442009-03-12 21:01:11 +0000696 for (std::set<ConstantInt*, ConstantIntOrdering>::iterator I =
697 PTIHandled.begin(),
Chris Lattner542f1492004-02-28 21:28:10 +0000698 E = PTIHandled.end(); I != E; ++I) {
699 PredCases.push_back(std::make_pair(*I, BBDefault));
700 NewSuccessors.push_back(BBDefault);
701 }
702 }
703
704 // Okay, at this point, we know which new successor Pred will get. Make
705 // sure we update the number of entries in the PHI nodes for these
706 // successors.
707 for (unsigned i = 0, e = NewSuccessors.size(); i != e; ++i)
708 AddPredecessorToBlock(NewSuccessors[i], Pred, BB);
709
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000710 // Convert pointer to int before we switch.
Duncan Sands1df98592010-02-16 11:11:14 +0000711 if (CV->getType()->isPointerTy()) {
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000712 assert(TD && "Cannot switch on pointer without TargetData");
713 CV = new PtrToIntInst(CV, TD->getIntPtrType(CV->getContext()),
714 "magicptr", PTI);
715 }
716
Chris Lattner542f1492004-02-28 21:28:10 +0000717 // Now that the successors are updated, create the new Switch instruction.
Gabor Greifb1dbcd82008-05-15 10:04:30 +0000718 SwitchInst *NewSI = SwitchInst::Create(CV, PredDefault,
719 PredCases.size(), PTI);
Chris Lattner542f1492004-02-28 21:28:10 +0000720 for (unsigned i = 0, e = PredCases.size(); i != e; ++i)
721 NewSI->addCase(PredCases[i].first, PredCases[i].second);
Chris Lattner13b2f762005-01-01 16:02:12 +0000722
Eli Friedman080efb82008-12-16 20:54:32 +0000723 EraseTerminatorInstAndDCECond(PTI);
Chris Lattner13b2f762005-01-01 16:02:12 +0000724
Chris Lattner542f1492004-02-28 21:28:10 +0000725 // Okay, last check. If BB is still a successor of PSI, then we must
726 // have an infinite loop case. If so, add an infinitely looping block
727 // to handle the case to preserve the behavior of the code.
728 BasicBlock *InfLoopBlock = 0;
729 for (unsigned i = 0, e = NewSI->getNumSuccessors(); i != e; ++i)
730 if (NewSI->getSuccessor(i) == BB) {
731 if (InfLoopBlock == 0) {
Chris Lattner093a4382008-07-13 22:23:11 +0000732 // Insert it at the end of the function, because it's either code,
Chris Lattner542f1492004-02-28 21:28:10 +0000733 // or it won't matter if it's hot. :)
Owen Anderson1d0be152009-08-13 21:58:54 +0000734 InfLoopBlock = BasicBlock::Create(BB->getContext(),
735 "infloop", BB->getParent());
Gabor Greif051a9502008-04-06 20:25:17 +0000736 BranchInst::Create(InfLoopBlock, InfLoopBlock);
Chris Lattner542f1492004-02-28 21:28:10 +0000737 }
738 NewSI->setSuccessor(i, InfLoopBlock);
739 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000740
Chris Lattner542f1492004-02-28 21:28:10 +0000741 Changed = true;
742 }
743 }
744 return Changed;
745}
746
Dale Johannesenc1f10402009-06-15 20:59:27 +0000747// isSafeToHoistInvoke - If we would need to insert a select that uses the
748// value of this invoke (comments in HoistThenElseCodeToIf explain why we
749// would need to do this), we can't hoist the invoke, as there is nowhere
750// to put the select in this case.
751static bool isSafeToHoistInvoke(BasicBlock *BB1, BasicBlock *BB2,
752 Instruction *I1, Instruction *I2) {
753 for (succ_iterator SI = succ_begin(BB1), E = succ_end(BB1); SI != E; ++SI) {
754 PHINode *PN;
755 for (BasicBlock::iterator BBI = SI->begin();
756 (PN = dyn_cast<PHINode>(BBI)); ++BBI) {
757 Value *BB1V = PN->getIncomingValueForBlock(BB1);
758 Value *BB2V = PN->getIncomingValueForBlock(BB2);
759 if (BB1V != BB2V && (BB1V==I1 || BB2V==I2)) {
760 return false;
761 }
762 }
763 }
764 return true;
765}
766
Chris Lattner6306d072005-08-03 17:59:45 +0000767/// HoistThenElseCodeToIf - Given a conditional branch that goes to BB1 and
Chris Lattner37dc9382004-11-30 00:29:14 +0000768/// BB2, hoist any common code in the two blocks up into the branch block. The
769/// caller of this function guarantees that BI's block dominates BB1 and BB2.
770static bool HoistThenElseCodeToIf(BranchInst *BI) {
771 // This does very trivial matching, with limited scanning, to find identical
772 // instructions in the two blocks. In particular, we don't want to get into
773 // O(M*N) situations here where M and N are the sizes of BB1 and BB2. As
774 // such, we currently just scan for obviously identical instructions in an
775 // identical order.
776 BasicBlock *BB1 = BI->getSuccessor(0); // The true destination.
777 BasicBlock *BB2 = BI->getSuccessor(1); // The false destination
778
Devang Patel65085cf2009-02-04 00:03:08 +0000779 BasicBlock::iterator BB1_Itr = BB1->begin();
780 BasicBlock::iterator BB2_Itr = BB2->begin();
781
782 Instruction *I1 = BB1_Itr++, *I2 = BB2_Itr++;
783 while (isa<DbgInfoIntrinsic>(I1))
784 I1 = BB1_Itr++;
785 while (isa<DbgInfoIntrinsic>(I2))
786 I2 = BB2_Itr++;
Dale Johannesenc1f10402009-06-15 20:59:27 +0000787 if (I1->getOpcode() != I2->getOpcode() || isa<PHINode>(I1) ||
Dan Gohman58cfa3b2009-08-25 22:11:20 +0000788 !I1->isIdenticalToWhenDefined(I2) ||
Dale Johannesenc1f10402009-06-15 20:59:27 +0000789 (isa<InvokeInst>(I1) && !isSafeToHoistInvoke(BB1, BB2, I1, I2)))
Chris Lattner37dc9382004-11-30 00:29:14 +0000790 return false;
791
792 // If we get here, we can hoist at least one instruction.
793 BasicBlock *BIParent = BI->getParent();
Chris Lattner37dc9382004-11-30 00:29:14 +0000794
795 do {
796 // If we are hoisting the terminator instruction, don't move one (making a
797 // broken BB), instead clone it, and remove BI.
798 if (isa<TerminatorInst>(I1))
799 goto HoistTerminator;
Misha Brukmanfd939082005-04-21 23:48:37 +0000800
Chris Lattner37dc9382004-11-30 00:29:14 +0000801 // For a normal instruction, we just move one to right before the branch,
802 // then replace all uses of the other with the first. Finally, we remove
803 // the now redundant second instruction.
804 BIParent->getInstList().splice(BI, BB1->getInstList(), I1);
805 if (!I2->use_empty())
806 I2->replaceAllUsesWith(I1);
Dan Gohman58cfa3b2009-08-25 22:11:20 +0000807 I1->intersectOptionalDataWith(I2);
Chris Lattner37dc9382004-11-30 00:29:14 +0000808 BB2->getInstList().erase(I2);
Misha Brukmanfd939082005-04-21 23:48:37 +0000809
Devang Patel65085cf2009-02-04 00:03:08 +0000810 I1 = BB1_Itr++;
811 while (isa<DbgInfoIntrinsic>(I1))
812 I1 = BB1_Itr++;
813 I2 = BB2_Itr++;
814 while (isa<DbgInfoIntrinsic>(I2))
815 I2 = BB2_Itr++;
Dan Gohman58cfa3b2009-08-25 22:11:20 +0000816 } while (I1->getOpcode() == I2->getOpcode() &&
817 I1->isIdenticalToWhenDefined(I2));
Chris Lattner37dc9382004-11-30 00:29:14 +0000818
819 return true;
820
821HoistTerminator:
Dale Johannesenc1f10402009-06-15 20:59:27 +0000822 // It may not be possible to hoist an invoke.
823 if (isa<InvokeInst>(I1) && !isSafeToHoistInvoke(BB1, BB2, I1, I2))
824 return true;
825
Chris Lattner37dc9382004-11-30 00:29:14 +0000826 // Okay, it is safe to hoist the terminator.
Nick Lewycky67760642009-09-27 07:38:41 +0000827 Instruction *NT = I1->clone();
Chris Lattner37dc9382004-11-30 00:29:14 +0000828 BIParent->getInstList().insert(BI, NT);
Benjamin Kramerf0127052010-01-05 13:12:22 +0000829 if (!NT->getType()->isVoidTy()) {
Chris Lattner37dc9382004-11-30 00:29:14 +0000830 I1->replaceAllUsesWith(NT);
831 I2->replaceAllUsesWith(NT);
Chris Lattner86cc4232007-02-11 01:37:51 +0000832 NT->takeName(I1);
Chris Lattner37dc9382004-11-30 00:29:14 +0000833 }
834
835 // Hoisting one of the terminators from our successor is a great thing.
836 // Unfortunately, the successors of the if/else blocks may have PHI nodes in
837 // them. If they do, all PHI entries for BB1/BB2 must agree for all PHI
838 // nodes, so we insert select instruction to compute the final result.
839 std::map<std::pair<Value*,Value*>, SelectInst*> InsertedSelects;
840 for (succ_iterator SI = succ_begin(BB1), E = succ_end(BB1); SI != E; ++SI) {
841 PHINode *PN;
842 for (BasicBlock::iterator BBI = SI->begin();
Chris Lattner0f535c62004-11-30 07:47:34 +0000843 (PN = dyn_cast<PHINode>(BBI)); ++BBI) {
Chris Lattner37dc9382004-11-30 00:29:14 +0000844 Value *BB1V = PN->getIncomingValueForBlock(BB1);
845 Value *BB2V = PN->getIncomingValueForBlock(BB2);
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000846 if (BB1V == BB2V) continue;
847
848 // These values do not agree. Insert a select instruction before NT
849 // that determines the right value.
850 SelectInst *&SI = InsertedSelects[std::make_pair(BB1V, BB2V)];
851 if (SI == 0)
852 SI = SelectInst::Create(BI->getCondition(), BB1V, BB2V,
853 BB1V->getName()+"."+BB2V->getName(), NT);
854 // Make the PHI node use the select for all incoming values for BB1/BB2
855 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
856 if (PN->getIncomingBlock(i) == BB1 || PN->getIncomingBlock(i) == BB2)
857 PN->setIncomingValue(i, SI);
Chris Lattner37dc9382004-11-30 00:29:14 +0000858 }
859 }
860
861 // Update any PHI nodes in our new successors.
862 for (succ_iterator SI = succ_begin(BB1), E = succ_end(BB1); SI != E; ++SI)
863 AddPredecessorToBlock(*SI, BIParent, BB1);
Misha Brukmanfd939082005-04-21 23:48:37 +0000864
Eli Friedman080efb82008-12-16 20:54:32 +0000865 EraseTerminatorInstAndDCECond(BI);
Chris Lattner37dc9382004-11-30 00:29:14 +0000866 return true;
867}
868
Evan Cheng4d09efd2008-06-07 08:52:29 +0000869/// SpeculativelyExecuteBB - Given a conditional branch that goes to BB1
870/// and an BB2 and the only successor of BB1 is BB2, hoist simple code
871/// (for now, restricted to a single instruction that's side effect free) from
872/// the BB1 into the branch block to speculatively execute it.
873static bool SpeculativelyExecuteBB(BranchInst *BI, BasicBlock *BB1) {
874 // Only speculatively execution a single instruction (not counting the
875 // terminator) for now.
Devang Patel06b1e672009-03-06 06:00:17 +0000876 Instruction *HInst = NULL;
877 Instruction *Term = BB1->getTerminator();
878 for (BasicBlock::iterator BBI = BB1->begin(), BBE = BB1->end();
879 BBI != BBE; ++BBI) {
880 Instruction *I = BBI;
881 // Skip debug info.
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000882 if (isa<DbgInfoIntrinsic>(I)) continue;
883 if (I == Term) break;
Devang Patel06b1e672009-03-06 06:00:17 +0000884
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000885 if (HInst)
Devang Patel06b1e672009-03-06 06:00:17 +0000886 return false;
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000887 HInst = I;
Devang Patel06b1e672009-03-06 06:00:17 +0000888 }
889 if (!HInst)
890 return false;
Evan Cheng4d09efd2008-06-07 08:52:29 +0000891
Evan Cheng797d9512008-06-11 19:18:20 +0000892 // Be conservative for now. FP select instruction can often be expensive.
893 Value *BrCond = BI->getCondition();
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000894 if (isa<FCmpInst>(BrCond))
Evan Cheng797d9512008-06-11 19:18:20 +0000895 return false;
896
Evan Cheng4d09efd2008-06-07 08:52:29 +0000897 // If BB1 is actually on the false edge of the conditional branch, remember
898 // to swap the select operands later.
899 bool Invert = false;
900 if (BB1 != BI->getSuccessor(0)) {
901 assert(BB1 == BI->getSuccessor(1) && "No edge from 'if' block?");
902 Invert = true;
903 }
904
905 // Turn
906 // BB:
907 // %t1 = icmp
908 // br i1 %t1, label %BB1, label %BB2
909 // BB1:
910 // %t3 = add %t2, c
911 // br label BB2
912 // BB2:
913 // =>
914 // BB:
915 // %t1 = icmp
916 // %t4 = add %t2, c
917 // %t3 = select i1 %t1, %t2, %t3
Devang Patel06b1e672009-03-06 06:00:17 +0000918 switch (HInst->getOpcode()) {
Evan Cheng4d09efd2008-06-07 08:52:29 +0000919 default: return false; // Not safe / profitable to hoist.
920 case Instruction::Add:
921 case Instruction::Sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000922 // Not worth doing for vector ops.
Duncan Sands1df98592010-02-16 11:11:14 +0000923 if (HInst->getType()->isVectorTy())
Chris Lattner9dd3b612009-01-18 23:22:07 +0000924 return false;
925 break;
Evan Cheng4d09efd2008-06-07 08:52:29 +0000926 case Instruction::And:
927 case Instruction::Or:
928 case Instruction::Xor:
929 case Instruction::Shl:
930 case Instruction::LShr:
931 case Instruction::AShr:
Chris Lattner9dd3b612009-01-18 23:22:07 +0000932 // Don't mess with vector operations.
Duncan Sands1df98592010-02-16 11:11:14 +0000933 if (HInst->getType()->isVectorTy())
Evan Chenge5334ea2008-06-25 07:50:12 +0000934 return false;
Evan Cheng4d09efd2008-06-07 08:52:29 +0000935 break; // These are all cheap and non-trapping instructions.
936 }
Chris Lattner6fe73bb2009-01-19 00:36:37 +0000937
938 // If the instruction is obviously dead, don't try to predicate it.
Devang Patel06b1e672009-03-06 06:00:17 +0000939 if (HInst->use_empty()) {
940 HInst->eraseFromParent();
Chris Lattner6fe73bb2009-01-19 00:36:37 +0000941 return true;
942 }
Evan Cheng4d09efd2008-06-07 08:52:29 +0000943
944 // Can we speculatively execute the instruction? And what is the value
945 // if the condition is false? Consider the phi uses, if the incoming value
946 // from the "if" block are all the same V, then V is the value of the
947 // select if the condition is false.
948 BasicBlock *BIParent = BI->getParent();
949 SmallVector<PHINode*, 4> PHIUses;
950 Value *FalseV = NULL;
Chris Lattner6fe73bb2009-01-19 00:36:37 +0000951
952 BasicBlock *BB2 = BB1->getTerminator()->getSuccessor(0);
Devang Patel06b1e672009-03-06 06:00:17 +0000953 for (Value::use_iterator UI = HInst->use_begin(), E = HInst->use_end();
Evan Cheng4d09efd2008-06-07 08:52:29 +0000954 UI != E; ++UI) {
Chris Lattner6fe73bb2009-01-19 00:36:37 +0000955 // Ignore any user that is not a PHI node in BB2. These can only occur in
956 // unreachable blocks, because they would not be dominated by the instr.
Gabor Greif20361b92010-07-22 11:43:44 +0000957 PHINode *PN = dyn_cast<PHINode>(*UI);
Chris Lattner6fe73bb2009-01-19 00:36:37 +0000958 if (!PN || PN->getParent() != BB2)
959 return false;
Evan Cheng4d09efd2008-06-07 08:52:29 +0000960 PHIUses.push_back(PN);
Chris Lattner6fe73bb2009-01-19 00:36:37 +0000961
Evan Cheng4d09efd2008-06-07 08:52:29 +0000962 Value *PHIV = PN->getIncomingValueForBlock(BIParent);
963 if (!FalseV)
964 FalseV = PHIV;
965 else if (FalseV != PHIV)
Chris Lattner6fe73bb2009-01-19 00:36:37 +0000966 return false; // Inconsistent value when condition is false.
Evan Cheng4d09efd2008-06-07 08:52:29 +0000967 }
Chris Lattner6fe73bb2009-01-19 00:36:37 +0000968
969 assert(FalseV && "Must have at least one user, and it must be a PHI");
Evan Cheng4d09efd2008-06-07 08:52:29 +0000970
Evan Cheng502a4f52008-06-12 21:15:59 +0000971 // Do not hoist the instruction if any of its operands are defined but not
972 // used in this BB. The transformation will prevent the operand from
973 // being sunk into the use block.
Devang Patel06b1e672009-03-06 06:00:17 +0000974 for (User::op_iterator i = HInst->op_begin(), e = HInst->op_end();
975 i != e; ++i) {
Evan Cheng502a4f52008-06-12 21:15:59 +0000976 Instruction *OpI = dyn_cast<Instruction>(*i);
977 if (OpI && OpI->getParent() == BIParent &&
978 !OpI->isUsedInBasicBlock(BIParent))
979 return false;
980 }
981
Devang Patel3d0a9a32008-09-18 22:50:42 +0000982 // If we get here, we can hoist the instruction. Try to place it
Dale Johannesen990afed2009-03-13 01:05:24 +0000983 // before the icmp instruction preceding the conditional branch.
Devang Patel3d0a9a32008-09-18 22:50:42 +0000984 BasicBlock::iterator InsertPos = BI;
Dale Johannesen990afed2009-03-13 01:05:24 +0000985 if (InsertPos != BIParent->begin())
986 --InsertPos;
987 // Skip debug info between condition and branch.
988 while (InsertPos != BIParent->begin() && isa<DbgInfoIntrinsic>(InsertPos))
Devang Patel3d0a9a32008-09-18 22:50:42 +0000989 --InsertPos;
Devang Patel20da1f02008-10-03 18:57:37 +0000990 if (InsertPos == BrCond && !isa<PHINode>(BrCond)) {
Devang Patel3d0a9a32008-09-18 22:50:42 +0000991 SmallPtrSet<Instruction *, 4> BB1Insns;
992 for(BasicBlock::iterator BB1I = BB1->begin(), BB1E = BB1->end();
993 BB1I != BB1E; ++BB1I)
994 BB1Insns.insert(BB1I);
995 for(Value::use_iterator UI = BrCond->use_begin(), UE = BrCond->use_end();
996 UI != UE; ++UI) {
997 Instruction *Use = cast<Instruction>(*UI);
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000998 if (!BB1Insns.count(Use)) continue;
999
1000 // If BrCond uses the instruction that place it just before
1001 // branch instruction.
1002 InsertPos = BI;
1003 break;
Devang Patel3d0a9a32008-09-18 22:50:42 +00001004 }
1005 } else
1006 InsertPos = BI;
Devang Patel06b1e672009-03-06 06:00:17 +00001007 BIParent->getInstList().splice(InsertPos, BB1->getInstList(), HInst);
Evan Cheng4d09efd2008-06-07 08:52:29 +00001008
1009 // Create a select whose true value is the speculatively executed value and
1010 // false value is the previously determined FalseV.
1011 SelectInst *SI;
1012 if (Invert)
Devang Patel06b1e672009-03-06 06:00:17 +00001013 SI = SelectInst::Create(BrCond, FalseV, HInst,
1014 FalseV->getName() + "." + HInst->getName(), BI);
Evan Cheng4d09efd2008-06-07 08:52:29 +00001015 else
Devang Patel06b1e672009-03-06 06:00:17 +00001016 SI = SelectInst::Create(BrCond, HInst, FalseV,
1017 HInst->getName() + "." + FalseV->getName(), BI);
Evan Cheng4d09efd2008-06-07 08:52:29 +00001018
1019 // Make the PHI node use the select for all incoming values for "then" and
1020 // "if" blocks.
1021 for (unsigned i = 0, e = PHIUses.size(); i != e; ++i) {
1022 PHINode *PN = PHIUses[i];
1023 for (unsigned j = 0, ee = PN->getNumIncomingValues(); j != ee; ++j)
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001024 if (PN->getIncomingBlock(j) == BB1 || PN->getIncomingBlock(j) == BIParent)
Evan Cheng4d09efd2008-06-07 08:52:29 +00001025 PN->setIncomingValue(j, SI);
1026 }
1027
Evan Cheng502a4f52008-06-12 21:15:59 +00001028 ++NumSpeculations;
Evan Cheng4d09efd2008-06-07 08:52:29 +00001029 return true;
1030}
1031
Chris Lattner2e42e362005-09-20 00:43:16 +00001032/// BlockIsSimpleEnoughToThreadThrough - Return true if we can thread a branch
1033/// across this block.
1034static bool BlockIsSimpleEnoughToThreadThrough(BasicBlock *BB) {
1035 BranchInst *BI = cast<BranchInst>(BB->getTerminator());
Chris Lattnere9487f02005-09-20 01:48:40 +00001036 unsigned Size = 0;
1037
Devang Patel9200c892009-03-10 18:00:05 +00001038 for (BasicBlock::iterator BBI = BB->begin(); &*BBI != BI; ++BBI) {
Dale Johannesen8483e542009-03-12 23:18:09 +00001039 if (isa<DbgInfoIntrinsic>(BBI))
1040 continue;
Chris Lattnere9487f02005-09-20 01:48:40 +00001041 if (Size > 10) return false; // Don't clone large BB's.
Dale Johannesen8483e542009-03-12 23:18:09 +00001042 ++Size;
Chris Lattner2e42e362005-09-20 00:43:16 +00001043
Dale Johannesen8483e542009-03-12 23:18:09 +00001044 // We can only support instructions that do not define values that are
Chris Lattnere9487f02005-09-20 01:48:40 +00001045 // live outside of the current basic block.
1046 for (Value::use_iterator UI = BBI->use_begin(), E = BBI->use_end();
1047 UI != E; ++UI) {
1048 Instruction *U = cast<Instruction>(*UI);
1049 if (U->getParent() != BB || isa<PHINode>(U)) return false;
1050 }
Chris Lattner2e42e362005-09-20 00:43:16 +00001051
1052 // Looks ok, continue checking.
1053 }
Chris Lattnere9487f02005-09-20 01:48:40 +00001054
Chris Lattner2e42e362005-09-20 00:43:16 +00001055 return true;
1056}
1057
Chris Lattnereaba3a12005-09-19 23:49:37 +00001058/// FoldCondBranchOnPHI - If we have a conditional branch on a PHI node value
1059/// that is defined in the same block as the branch and if any PHI entries are
1060/// constants, thread edges corresponding to that entry to be branches to their
1061/// ultimate destination.
1062static bool FoldCondBranchOnPHI(BranchInst *BI) {
1063 BasicBlock *BB = BI->getParent();
1064 PHINode *PN = dyn_cast<PHINode>(BI->getCondition());
Chris Lattner9c88d982005-09-19 23:57:04 +00001065 // NOTE: we currently cannot transform this case if the PHI node is used
1066 // outside of the block.
Chris Lattner2e42e362005-09-20 00:43:16 +00001067 if (!PN || PN->getParent() != BB || !PN->hasOneUse())
1068 return false;
Chris Lattnereaba3a12005-09-19 23:49:37 +00001069
1070 // Degenerate case of a single entry PHI.
1071 if (PN->getNumIncomingValues() == 1) {
Chris Lattner29874e02008-12-03 19:44:02 +00001072 FoldSingleEntryPHINodes(PN->getParent());
Chris Lattnereaba3a12005-09-19 23:49:37 +00001073 return true;
1074 }
1075
1076 // Now we know that this block has multiple preds and two succs.
Chris Lattner2e42e362005-09-20 00:43:16 +00001077 if (!BlockIsSimpleEnoughToThreadThrough(BB)) return false;
Chris Lattnereaba3a12005-09-19 23:49:37 +00001078
1079 // Okay, this is a simple enough basic block. See if any phi values are
1080 // constants.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001081 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001082 ConstantInt *CB = dyn_cast<ConstantInt>(PN->getIncomingValue(i));
1083 if (CB == 0 || !CB->getType()->isIntegerTy(1)) continue;
1084
1085 // Okay, we now know that all edges from PredBB should be revectored to
1086 // branch to RealDest.
1087 BasicBlock *PredBB = PN->getIncomingBlock(i);
1088 BasicBlock *RealDest = BI->getSuccessor(!CB->getZExtValue());
1089
1090 if (RealDest == BB) continue; // Skip self loops.
1091
1092 // The dest block might have PHI nodes, other predecessors and other
1093 // difficult cases. Instead of being smart about this, just insert a new
1094 // block that jumps to the destination block, effectively splitting
1095 // the edge we are about to create.
1096 BasicBlock *EdgeBB = BasicBlock::Create(BB->getContext(),
1097 RealDest->getName()+".critedge",
1098 RealDest->getParent(), RealDest);
1099 BranchInst::Create(RealDest, EdgeBB);
1100 PHINode *PN;
1101 for (BasicBlock::iterator BBI = RealDest->begin();
1102 (PN = dyn_cast<PHINode>(BBI)); ++BBI) {
1103 Value *V = PN->getIncomingValueForBlock(BB);
1104 PN->addIncoming(V, EdgeBB);
Chris Lattnereaba3a12005-09-19 23:49:37 +00001105 }
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001106
1107 // BB may have instructions that are being threaded over. Clone these
1108 // instructions into EdgeBB. We know that there will be no uses of the
1109 // cloned instructions outside of EdgeBB.
1110 BasicBlock::iterator InsertPt = EdgeBB->begin();
1111 DenseMap<Value*, Value*> TranslateMap; // Track translated values.
1112 for (BasicBlock::iterator BBI = BB->begin(); &*BBI != BI; ++BBI) {
1113 if (PHINode *PN = dyn_cast<PHINode>(BBI)) {
1114 TranslateMap[PN] = PN->getIncomingValueForBlock(PredBB);
1115 continue;
1116 }
1117 // Clone the instruction.
1118 Instruction *N = BBI->clone();
1119 if (BBI->hasName()) N->setName(BBI->getName()+".c");
1120
1121 // Update operands due to translation.
1122 for (User::op_iterator i = N->op_begin(), e = N->op_end();
1123 i != e; ++i) {
1124 DenseMap<Value*, Value*>::iterator PI = TranslateMap.find(*i);
1125 if (PI != TranslateMap.end())
1126 *i = PI->second;
1127 }
1128
1129 // Check for trivial simplification.
1130 if (Constant *C = ConstantFoldInstruction(N)) {
1131 TranslateMap[BBI] = C;
1132 delete N; // Constant folded away, don't need actual inst
1133 } else {
1134 // Insert the new instruction into its new home.
1135 EdgeBB->getInstList().insert(InsertPt, N);
1136 if (!BBI->use_empty())
1137 TranslateMap[BBI] = N;
1138 }
1139 }
1140
1141 // Loop over all of the edges from PredBB to BB, changing them to branch
1142 // to EdgeBB instead.
1143 TerminatorInst *PredBBTI = PredBB->getTerminator();
1144 for (unsigned i = 0, e = PredBBTI->getNumSuccessors(); i != e; ++i)
1145 if (PredBBTI->getSuccessor(i) == BB) {
1146 BB->removePredecessor(PredBB);
1147 PredBBTI->setSuccessor(i, EdgeBB);
1148 }
1149
1150 // Recurse, simplifying any other constants.
1151 return FoldCondBranchOnPHI(BI) | true;
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001152 }
Chris Lattnereaba3a12005-09-19 23:49:37 +00001153
1154 return false;
1155}
1156
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001157/// FoldTwoEntryPHINode - Given a BB that starts with the specified two-entry
1158/// PHI node, see if we can eliminate it.
1159static bool FoldTwoEntryPHINode(PHINode *PN) {
1160 // Ok, this is a two entry PHI node. Check to see if this is a simple "if
1161 // statement", which has a very simple dominance structure. Basically, we
1162 // are trying to find the condition that is being branched on, which
1163 // subsequently causes this merge to happen. We really want control
1164 // dependence information for this check, but simplifycfg can't keep it up
1165 // to date, and this catches most of the cases we care about anyway.
1166 //
1167 BasicBlock *BB = PN->getParent();
1168 BasicBlock *IfTrue, *IfFalse;
1169 Value *IfCond = GetIfCondition(BB, IfTrue, IfFalse);
1170 if (!IfCond) return false;
1171
Chris Lattner822a8792006-11-18 19:19:36 +00001172 // Okay, we found that we can merge this two-entry phi node into a select.
1173 // Doing so would require us to fold *all* two entry phi nodes in this block.
1174 // At some point this becomes non-profitable (particularly if the target
1175 // doesn't support cmov's). Only do this transformation if there are two or
1176 // fewer PHI nodes in this block.
1177 unsigned NumPhis = 0;
1178 for (BasicBlock::iterator I = BB->begin(); isa<PHINode>(I); ++NumPhis, ++I)
1179 if (NumPhis > 2)
1180 return false;
1181
David Greene89d6fd32010-01-05 01:26:52 +00001182 DEBUG(dbgs() << "FOUND IF CONDITION! " << *IfCond << " T: "
Daniel Dunbarce63ffb2009-07-25 00:23:56 +00001183 << IfTrue->getName() << " F: " << IfFalse->getName() << "\n");
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001184
1185 // Loop over the PHI's seeing if we can promote them all to select
1186 // instructions. While we are at it, keep track of the instructions
1187 // that need to be moved to the dominating block.
1188 std::set<Instruction*> AggressiveInsts;
1189
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001190 BasicBlock::iterator AfterPHIIt = BB->begin();
1191 while (isa<PHINode>(AfterPHIIt)) {
1192 PHINode *PN = cast<PHINode>(AfterPHIIt++);
1193 if (PN->getIncomingValue(0) == PN->getIncomingValue(1)) {
1194 if (PN->getIncomingValue(0) != PN)
1195 PN->replaceAllUsesWith(PN->getIncomingValue(0));
1196 else
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001197 PN->replaceAllUsesWith(UndefValue::get(PN->getType()));
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001198 } else if (!DominatesMergePoint(PN->getIncomingValue(0), BB,
1199 &AggressiveInsts) ||
1200 !DominatesMergePoint(PN->getIncomingValue(1), BB,
1201 &AggressiveInsts)) {
Chris Lattner055dc102005-09-23 07:23:18 +00001202 return false;
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001203 }
1204 }
1205
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001206 // If we all PHI nodes are promotable, check to make sure that all
1207 // instructions in the predecessor blocks can be promoted as well. If
1208 // not, we won't be able to get rid of the control flow, so it's not
1209 // worth promoting to select instructions.
1210 BasicBlock *DomBlock = 0, *IfBlock1 = 0, *IfBlock2 = 0;
1211 PN = cast<PHINode>(BB->begin());
1212 BasicBlock *Pred = PN->getIncomingBlock(0);
1213 if (cast<BranchInst>(Pred->getTerminator())->isUnconditional()) {
1214 IfBlock1 = Pred;
1215 DomBlock = *pred_begin(Pred);
1216 for (BasicBlock::iterator I = Pred->begin();
1217 !isa<TerminatorInst>(I); ++I)
Devang Patel383d7ed2009-02-03 22:12:02 +00001218 if (!AggressiveInsts.count(I) && !isa<DbgInfoIntrinsic>(I)) {
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001219 // This is not an aggressive instruction that we can promote.
1220 // Because of this, we won't be able to get rid of the control
1221 // flow, so the xform is not worth it.
1222 return false;
1223 }
1224 }
1225
1226 Pred = PN->getIncomingBlock(1);
1227 if (cast<BranchInst>(Pred->getTerminator())->isUnconditional()) {
1228 IfBlock2 = Pred;
1229 DomBlock = *pred_begin(Pred);
1230 for (BasicBlock::iterator I = Pred->begin();
1231 !isa<TerminatorInst>(I); ++I)
Devang Patel383d7ed2009-02-03 22:12:02 +00001232 if (!AggressiveInsts.count(I) && !isa<DbgInfoIntrinsic>(I)) {
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001233 // This is not an aggressive instruction that we can promote.
1234 // Because of this, we won't be able to get rid of the control
1235 // flow, so the xform is not worth it.
1236 return false;
1237 }
1238 }
1239
1240 // If we can still promote the PHI nodes after this gauntlet of tests,
1241 // do all of the PHI's now.
1242
1243 // Move all 'aggressive' instructions, which are defined in the
1244 // conditional parts of the if's up to the dominating block.
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001245 if (IfBlock1)
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001246 DomBlock->getInstList().splice(DomBlock->getTerminator(),
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001247 IfBlock1->getInstList(), IfBlock1->begin(),
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001248 IfBlock1->getTerminator());
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001249 if (IfBlock2)
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001250 DomBlock->getInstList().splice(DomBlock->getTerminator(),
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001251 IfBlock2->getInstList(), IfBlock2->begin(),
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001252 IfBlock2->getTerminator());
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001253
1254 while (PHINode *PN = dyn_cast<PHINode>(BB->begin())) {
1255 // Change the PHI node into a select instruction.
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001256 Value *TrueVal = PN->getIncomingValue(PN->getIncomingBlock(0) == IfFalse);
1257 Value *FalseVal = PN->getIncomingValue(PN->getIncomingBlock(0) == IfTrue);
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001258
Gabor Greif051a9502008-04-06 20:25:17 +00001259 Value *NV = SelectInst::Create(IfCond, TrueVal, FalseVal, "", AfterPHIIt);
Chris Lattner86cc4232007-02-11 01:37:51 +00001260 PN->replaceAllUsesWith(NV);
1261 NV->takeName(PN);
1262
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001263 BB->getInstList().erase(PN);
1264 }
1265 return true;
1266}
Chris Lattnereaba3a12005-09-19 23:49:37 +00001267
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001268/// SimplifyCondBranchToTwoReturns - If we found a conditional branch that goes
1269/// to two returning blocks, try to merge them together into one return,
1270/// introducing a select if the return values disagree.
1271static bool SimplifyCondBranchToTwoReturns(BranchInst *BI) {
1272 assert(BI->isConditional() && "Must be a conditional branch");
1273 BasicBlock *TrueSucc = BI->getSuccessor(0);
1274 BasicBlock *FalseSucc = BI->getSuccessor(1);
1275 ReturnInst *TrueRet = cast<ReturnInst>(TrueSucc->getTerminator());
1276 ReturnInst *FalseRet = cast<ReturnInst>(FalseSucc->getTerminator());
1277
1278 // Check to ensure both blocks are empty (just a return) or optionally empty
1279 // with PHI nodes. If there are other instructions, merging would cause extra
1280 // computation on one path or the other.
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001281 if (!TrueSucc->getFirstNonPHIOrDbg()->isTerminator())
Devang Patel2cc86a12009-02-05 00:30:42 +00001282 return false;
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001283 if (!FalseSucc->getFirstNonPHIOrDbg()->isTerminator())
Devang Patel2cc86a12009-02-05 00:30:42 +00001284 return false;
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001285
1286 // Okay, we found a branch that is going to two return nodes. If
1287 // there is no return value for this function, just change the
1288 // branch into a return.
1289 if (FalseRet->getNumOperands() == 0) {
1290 TrueSucc->removePredecessor(BI->getParent());
1291 FalseSucc->removePredecessor(BI->getParent());
Owen Anderson1d0be152009-08-13 21:58:54 +00001292 ReturnInst::Create(BI->getContext(), 0, BI);
Eli Friedman080efb82008-12-16 20:54:32 +00001293 EraseTerminatorInstAndDCECond(BI);
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001294 return true;
1295 }
1296
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001297 // Otherwise, figure out what the true and false return values are
1298 // so we can insert a new select instruction.
1299 Value *TrueValue = TrueRet->getReturnValue();
1300 Value *FalseValue = FalseRet->getReturnValue();
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001301
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001302 // Unwrap any PHI nodes in the return blocks.
1303 if (PHINode *TVPN = dyn_cast_or_null<PHINode>(TrueValue))
1304 if (TVPN->getParent() == TrueSucc)
1305 TrueValue = TVPN->getIncomingValueForBlock(BI->getParent());
1306 if (PHINode *FVPN = dyn_cast_or_null<PHINode>(FalseValue))
1307 if (FVPN->getParent() == FalseSucc)
1308 FalseValue = FVPN->getIncomingValueForBlock(BI->getParent());
1309
1310 // In order for this transformation to be safe, we must be able to
1311 // unconditionally execute both operands to the return. This is
1312 // normally the case, but we could have a potentially-trapping
1313 // constant expression that prevents this transformation from being
1314 // safe.
1315 if (ConstantExpr *TCV = dyn_cast_or_null<ConstantExpr>(TrueValue))
1316 if (TCV->canTrap())
1317 return false;
1318 if (ConstantExpr *FCV = dyn_cast_or_null<ConstantExpr>(FalseValue))
1319 if (FCV->canTrap())
1320 return false;
1321
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001322 // Okay, we collected all the mapped values and checked them for sanity, and
1323 // defined to really do this transformation. First, update the CFG.
1324 TrueSucc->removePredecessor(BI->getParent());
1325 FalseSucc->removePredecessor(BI->getParent());
1326
1327 // Insert select instructions where needed.
1328 Value *BrCond = BI->getCondition();
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001329 if (TrueValue) {
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001330 // Insert a select if the results differ.
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001331 if (TrueValue == FalseValue || isa<UndefValue>(FalseValue)) {
1332 } else if (isa<UndefValue>(TrueValue)) {
1333 TrueValue = FalseValue;
1334 } else {
1335 TrueValue = SelectInst::Create(BrCond, TrueValue,
1336 FalseValue, "retval", BI);
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001337 }
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001338 }
1339
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001340 Value *RI = !TrueValue ?
Owen Anderson1d0be152009-08-13 21:58:54 +00001341 ReturnInst::Create(BI->getContext(), BI) :
1342 ReturnInst::Create(BI->getContext(), TrueValue, BI);
Daniel Dunbare317bcc2009-08-23 10:29:55 +00001343 (void) RI;
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001344
David Greene89d6fd32010-01-05 01:26:52 +00001345 DEBUG(dbgs() << "\nCHANGING BRANCH TO TWO RETURNS INTO SELECT:"
Chris Lattnerbdff5482009-08-23 04:37:46 +00001346 << "\n " << *BI << "NewRet = " << *RI
1347 << "TRUEBLOCK: " << *TrueSucc << "FALSEBLOCK: "<< *FalseSucc);
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001348
Eli Friedman080efb82008-12-16 20:54:32 +00001349 EraseTerminatorInstAndDCECond(BI);
1350
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001351 return true;
1352}
1353
Chris Lattner1347e872008-07-13 21:12:01 +00001354/// FoldBranchToCommonDest - If this basic block is ONLY a setcc and a branch,
1355/// and if a predecessor branches to us and one of our successors, fold the
1356/// setcc into the predecessor and use logical operations to pick the right
1357/// destination.
Dan Gohman4b35f832009-06-27 21:30:38 +00001358bool llvm::FoldBranchToCommonDest(BranchInst *BI) {
Chris Lattner093a4382008-07-13 22:23:11 +00001359 BasicBlock *BB = BI->getParent();
Chris Lattner1347e872008-07-13 21:12:01 +00001360 Instruction *Cond = dyn_cast<Instruction>(BI->getCondition());
Owen Andersone84178a2010-07-14 19:52:16 +00001361 if (Cond == 0 || (!isa<CmpInst>(Cond) && !isa<BinaryOperator>(Cond)) ||
1362 Cond->getParent() != BB || !Cond->hasOneUse())
1363 return false;
Chris Lattner093a4382008-07-13 22:23:11 +00001364
Chris Lattner1347e872008-07-13 21:12:01 +00001365 // Only allow this if the condition is a simple instruction that can be
1366 // executed unconditionally. It must be in the same block as the branch, and
1367 // must be at the front of the block.
Devang Pateld0a203d2009-02-04 21:39:48 +00001368 BasicBlock::iterator FrontIt = BB->front();
1369 // Ignore dbg intrinsics.
1370 while(isa<DbgInfoIntrinsic>(FrontIt))
1371 ++FrontIt;
Owen Andersone84178a2010-07-14 19:52:16 +00001372
1373 // Allow a single instruction to be hoisted in addition to the compare
1374 // that feeds the branch. We later ensure that any values that _it_ uses
1375 // were also live in the predecessor, so that we don't unnecessarily create
1376 // register pressure or inhibit out-of-order execution.
1377 Instruction *BonusInst = 0;
1378 if (&*FrontIt != Cond &&
Owen Anderson2722dfa2010-07-15 16:38:22 +00001379 FrontIt->hasOneUse() && *FrontIt->use_begin() == Cond &&
1380 FrontIt->isSafeToSpeculativelyExecute()) {
Owen Andersone84178a2010-07-14 19:52:16 +00001381 BonusInst = &*FrontIt;
1382 ++FrontIt;
Devang Pateld0a203d2009-02-04 21:39:48 +00001383 }
Chris Lattner6ff645b2009-01-19 23:03:13 +00001384
Owen Andersone84178a2010-07-14 19:52:16 +00001385 // Only a single bonus inst is allowed.
1386 if (&*FrontIt != Cond)
1387 return false;
1388
Chris Lattner1347e872008-07-13 21:12:01 +00001389 // Make sure the instruction after the condition is the cond branch.
1390 BasicBlock::iterator CondIt = Cond; ++CondIt;
Devang Pateld0a203d2009-02-04 21:39:48 +00001391 // Ingore dbg intrinsics.
1392 while(isa<DbgInfoIntrinsic>(CondIt))
1393 ++CondIt;
1394 if (&*CondIt != BI) {
1395 assert (!isa<DbgInfoIntrinsic>(CondIt) && "Hey do not forget debug info!");
Chris Lattner1347e872008-07-13 21:12:01 +00001396 return false;
Devang Pateld0a203d2009-02-04 21:39:48 +00001397 }
Chris Lattner6ff645b2009-01-19 23:03:13 +00001398
1399 // Cond is known to be a compare or binary operator. Check to make sure that
1400 // neither operand is a potentially-trapping constant expression.
1401 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Cond->getOperand(0)))
1402 if (CE->canTrap())
1403 return false;
1404 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Cond->getOperand(1)))
1405 if (CE->canTrap())
1406 return false;
1407
Chris Lattner1347e872008-07-13 21:12:01 +00001408
1409 // Finally, don't infinitely unroll conditional loops.
1410 BasicBlock *TrueDest = BI->getSuccessor(0);
1411 BasicBlock *FalseDest = BI->getSuccessor(1);
1412 if (TrueDest == BB || FalseDest == BB)
1413 return false;
1414
1415 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
1416 BasicBlock *PredBlock = *PI;
1417 BranchInst *PBI = dyn_cast<BranchInst>(PredBlock->getTerminator());
Chris Lattner6ff645b2009-01-19 23:03:13 +00001418
Chris Lattner093a4382008-07-13 22:23:11 +00001419 // Check that we have two conditional branches. If there is a PHI node in
1420 // the common successor, verify that the same value flows in from both
1421 // blocks.
Chris Lattner1347e872008-07-13 21:12:01 +00001422 if (PBI == 0 || PBI->isUnconditional() ||
1423 !SafeToMergeTerminators(BI, PBI))
1424 continue;
1425
Owen Andersone84178a2010-07-14 19:52:16 +00001426 // Ensure that any values used in the bonus instruction are also used
1427 // by the terminator of the predecessor. This means that those values
1428 // must already have been resolved, so we won't be inhibiting the
1429 // out-of-order core by speculating them earlier.
1430 if (BonusInst) {
1431 // Collect the values used by the bonus inst
1432 SmallPtrSet<Value*, 4> UsedValues;
1433 for (Instruction::op_iterator OI = BonusInst->op_begin(),
1434 OE = BonusInst->op_end(); OI != OE; ++OI) {
1435 Value* V = *OI;
1436 if (!isa<Constant>(V))
1437 UsedValues.insert(V);
1438 }
1439
1440 SmallVector<std::pair<Value*, unsigned>, 4> Worklist;
1441 Worklist.push_back(std::make_pair(PBI->getOperand(0), 0));
1442
1443 // Walk up to four levels back up the use-def chain of the predecessor's
1444 // terminator to see if all those values were used. The choice of four
1445 // levels is arbitrary, to provide a compile-time-cost bound.
1446 while (!Worklist.empty()) {
1447 std::pair<Value*, unsigned> Pair = Worklist.back();
1448 Worklist.pop_back();
1449
1450 if (Pair.second >= 4) continue;
1451 UsedValues.erase(Pair.first);
1452 if (UsedValues.empty()) break;
1453
1454 if (Instruction* I = dyn_cast<Instruction>(Pair.first)) {
1455 for (Instruction::op_iterator OI = I->op_begin(), OE = I->op_end();
1456 OI != OE; ++OI)
1457 Worklist.push_back(std::make_pair(OI->get(), Pair.second+1));
1458 }
1459 }
1460
1461 if (!UsedValues.empty()) return false;
1462 }
1463
Chris Lattner36989092008-07-13 21:20:19 +00001464 Instruction::BinaryOps Opc;
1465 bool InvertPredCond = false;
1466
1467 if (PBI->getSuccessor(0) == TrueDest)
1468 Opc = Instruction::Or;
1469 else if (PBI->getSuccessor(1) == FalseDest)
1470 Opc = Instruction::And;
1471 else if (PBI->getSuccessor(0) == FalseDest)
1472 Opc = Instruction::And, InvertPredCond = true;
1473 else if (PBI->getSuccessor(1) == TrueDest)
1474 Opc = Instruction::Or, InvertPredCond = true;
1475 else
1476 continue;
1477
David Greene89d6fd32010-01-05 01:26:52 +00001478 DEBUG(dbgs() << "FOLDING BRANCH TO COMMON DEST:\n" << *PBI << *BB);
Chris Lattner6ff645b2009-01-19 23:03:13 +00001479
Chris Lattner36989092008-07-13 21:20:19 +00001480 // If we need to invert the condition in the pred block to match, do so now.
1481 if (InvertPredCond) {
Chris Lattner1347e872008-07-13 21:12:01 +00001482 Value *NewCond =
Dan Gohman4ae51262009-08-12 16:23:25 +00001483 BinaryOperator::CreateNot(PBI->getCondition(),
Chris Lattner36989092008-07-13 21:20:19 +00001484 PBI->getCondition()->getName()+".not", PBI);
Chris Lattner1347e872008-07-13 21:12:01 +00001485 PBI->setCondition(NewCond);
1486 BasicBlock *OldTrue = PBI->getSuccessor(0);
1487 BasicBlock *OldFalse = PBI->getSuccessor(1);
1488 PBI->setSuccessor(0, OldFalse);
1489 PBI->setSuccessor(1, OldTrue);
1490 }
Chris Lattner70087f32008-07-13 21:15:11 +00001491
Owen Andersone84178a2010-07-14 19:52:16 +00001492 // If we have a bonus inst, clone it into the predecessor block.
1493 Instruction *NewBonus = 0;
1494 if (BonusInst) {
1495 NewBonus = BonusInst->clone();
1496 PredBlock->getInstList().insert(PBI, NewBonus);
1497 NewBonus->takeName(BonusInst);
1498 BonusInst->setName(BonusInst->getName()+".old");
1499 }
1500
Chris Lattner36989092008-07-13 21:20:19 +00001501 // Clone Cond into the predecessor basic block, and or/and the
1502 // two conditions together.
Nick Lewycky67760642009-09-27 07:38:41 +00001503 Instruction *New = Cond->clone();
Owen Andersone84178a2010-07-14 19:52:16 +00001504 if (BonusInst) New->replaceUsesOfWith(BonusInst, NewBonus);
Chris Lattner36989092008-07-13 21:20:19 +00001505 PredBlock->getInstList().insert(PBI, New);
1506 New->takeName(Cond);
1507 Cond->setName(New->getName()+".old");
Chris Lattner70087f32008-07-13 21:15:11 +00001508
Chris Lattner36989092008-07-13 21:20:19 +00001509 Value *NewCond = BinaryOperator::Create(Opc, PBI->getCondition(),
1510 New, "or.cond", PBI);
1511 PBI->setCondition(NewCond);
1512 if (PBI->getSuccessor(0) == BB) {
1513 AddPredecessorToBlock(TrueDest, PredBlock, BB);
1514 PBI->setSuccessor(0, TrueDest);
Chris Lattner1347e872008-07-13 21:12:01 +00001515 }
Chris Lattner36989092008-07-13 21:20:19 +00001516 if (PBI->getSuccessor(1) == BB) {
1517 AddPredecessorToBlock(FalseDest, PredBlock, BB);
1518 PBI->setSuccessor(1, FalseDest);
1519 }
1520 return true;
Chris Lattner1347e872008-07-13 21:12:01 +00001521 }
1522 return false;
1523}
1524
Chris Lattner867661a2008-07-13 21:53:26 +00001525/// SimplifyCondBranchToCondBranch - If we have a conditional branch as a
1526/// predecessor of another block, this function tries to simplify it. We know
1527/// that PBI and BI are both conditional branches, and BI is in one of the
1528/// successor blocks of PBI - PBI branches to BI.
1529static bool SimplifyCondBranchToCondBranch(BranchInst *PBI, BranchInst *BI) {
1530 assert(PBI->isConditional() && BI->isConditional());
1531 BasicBlock *BB = BI->getParent();
Dan Gohman4ae51262009-08-12 16:23:25 +00001532
Chris Lattner867661a2008-07-13 21:53:26 +00001533 // If this block ends with a branch instruction, and if there is a
1534 // predecessor that ends on a branch of the same condition, make
1535 // this conditional branch redundant.
1536 if (PBI->getCondition() == BI->getCondition() &&
1537 PBI->getSuccessor(0) != PBI->getSuccessor(1)) {
1538 // Okay, the outcome of this conditional branch is statically
1539 // knowable. If this block had a single pred, handle specially.
1540 if (BB->getSinglePredecessor()) {
1541 // Turn this into a branch on constant.
1542 bool CondIsTrue = PBI->getSuccessor(0) == BB;
Owen Anderson1d0be152009-08-13 21:58:54 +00001543 BI->setCondition(ConstantInt::get(Type::getInt1Ty(BB->getContext()),
1544 CondIsTrue));
Chris Lattner867661a2008-07-13 21:53:26 +00001545 return true; // Nuke the branch on constant.
1546 }
1547
1548 // Otherwise, if there are multiple predecessors, insert a PHI that merges
1549 // in the constant and simplify the block result. Subsequent passes of
1550 // simplifycfg will thread the block.
1551 if (BlockIsSimpleEnoughToThreadThrough(BB)) {
Owen Anderson1d0be152009-08-13 21:58:54 +00001552 PHINode *NewPN = PHINode::Create(Type::getInt1Ty(BB->getContext()),
Chris Lattner867661a2008-07-13 21:53:26 +00001553 BI->getCondition()->getName() + ".pr",
1554 BB->begin());
Chris Lattnereb388af2008-07-13 21:55:46 +00001555 // Okay, we're going to insert the PHI node. Since PBI is not the only
1556 // predecessor, compute the PHI'd conditional value for all of the preds.
1557 // Any predecessor where the condition is not computable we keep symbolic.
Gabor Greif62539832010-07-12 10:59:23 +00001558 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
1559 BasicBlock *P = *PI;
1560 if ((PBI = dyn_cast<BranchInst>(P->getTerminator())) &&
Chris Lattner867661a2008-07-13 21:53:26 +00001561 PBI != BI && PBI->isConditional() &&
1562 PBI->getCondition() == BI->getCondition() &&
1563 PBI->getSuccessor(0) != PBI->getSuccessor(1)) {
1564 bool CondIsTrue = PBI->getSuccessor(0) == BB;
Owen Anderson1d0be152009-08-13 21:58:54 +00001565 NewPN->addIncoming(ConstantInt::get(Type::getInt1Ty(BB->getContext()),
Gabor Greif62539832010-07-12 10:59:23 +00001566 CondIsTrue), P);
Chris Lattner867661a2008-07-13 21:53:26 +00001567 } else {
Gabor Greif62539832010-07-12 10:59:23 +00001568 NewPN->addIncoming(BI->getCondition(), P);
Chris Lattner867661a2008-07-13 21:53:26 +00001569 }
Gabor Greif62539832010-07-12 10:59:23 +00001570 }
Chris Lattner867661a2008-07-13 21:53:26 +00001571
1572 BI->setCondition(NewPN);
Chris Lattner867661a2008-07-13 21:53:26 +00001573 return true;
1574 }
1575 }
1576
1577 // If this is a conditional branch in an empty block, and if any
1578 // predecessors is a conditional branch to one of our destinations,
1579 // fold the conditions into logical ops and one cond br.
Zhou Shenga8d57fe2009-02-26 06:56:37 +00001580 BasicBlock::iterator BBI = BB->begin();
1581 // Ignore dbg intrinsics.
1582 while (isa<DbgInfoIntrinsic>(BBI))
1583 ++BBI;
1584 if (&*BBI != BI)
Chris Lattnerb8245122008-07-13 22:04:41 +00001585 return false;
Chris Lattner63bf29b2009-01-20 01:15:41 +00001586
1587
1588 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(BI->getCondition()))
1589 if (CE->canTrap())
1590 return false;
Chris Lattnerb8245122008-07-13 22:04:41 +00001591
1592 int PBIOp, BIOp;
1593 if (PBI->getSuccessor(0) == BI->getSuccessor(0))
1594 PBIOp = BIOp = 0;
1595 else if (PBI->getSuccessor(0) == BI->getSuccessor(1))
1596 PBIOp = 0, BIOp = 1;
1597 else if (PBI->getSuccessor(1) == BI->getSuccessor(0))
1598 PBIOp = 1, BIOp = 0;
1599 else if (PBI->getSuccessor(1) == BI->getSuccessor(1))
1600 PBIOp = BIOp = 1;
1601 else
1602 return false;
Chris Lattner867661a2008-07-13 21:53:26 +00001603
Chris Lattnerb8245122008-07-13 22:04:41 +00001604 // Check to make sure that the other destination of this branch
1605 // isn't BB itself. If so, this is an infinite loop that will
1606 // keep getting unwound.
1607 if (PBI->getSuccessor(PBIOp) == BB)
1608 return false;
Chris Lattner867661a2008-07-13 21:53:26 +00001609
Chris Lattnerb8245122008-07-13 22:04:41 +00001610 // Do not perform this transformation if it would require
1611 // insertion of a large number of select instructions. For targets
1612 // without predication/cmovs, this is a big pessimization.
1613 BasicBlock *CommonDest = PBI->getSuccessor(PBIOp);
Chris Lattner867661a2008-07-13 21:53:26 +00001614
Chris Lattnerb8245122008-07-13 22:04:41 +00001615 unsigned NumPhis = 0;
1616 for (BasicBlock::iterator II = CommonDest->begin();
1617 isa<PHINode>(II); ++II, ++NumPhis)
1618 if (NumPhis > 2) // Disable this xform.
1619 return false;
Chris Lattner867661a2008-07-13 21:53:26 +00001620
Chris Lattnerb8245122008-07-13 22:04:41 +00001621 // Finally, if everything is ok, fold the branches to logical ops.
1622 BasicBlock *OtherDest = BI->getSuccessor(BIOp ^ 1);
1623
David Greene89d6fd32010-01-05 01:26:52 +00001624 DEBUG(dbgs() << "FOLDING BRs:" << *PBI->getParent()
Chris Lattnerbdff5482009-08-23 04:37:46 +00001625 << "AND: " << *BI->getParent());
Chris Lattnerb8245122008-07-13 22:04:41 +00001626
Chris Lattner093a4382008-07-13 22:23:11 +00001627
1628 // If OtherDest *is* BB, then BB is a basic block with a single conditional
1629 // branch in it, where one edge (OtherDest) goes back to itself but the other
1630 // exits. We don't *know* that the program avoids the infinite loop
1631 // (even though that seems likely). If we do this xform naively, we'll end up
1632 // recursively unpeeling the loop. Since we know that (after the xform is
1633 // done) that the block *is* infinite if reached, we just make it an obviously
1634 // infinite loop with no cond branch.
1635 if (OtherDest == BB) {
1636 // Insert it at the end of the function, because it's either code,
1637 // or it won't matter if it's hot. :)
Owen Anderson1d0be152009-08-13 21:58:54 +00001638 BasicBlock *InfLoopBlock = BasicBlock::Create(BB->getContext(),
1639 "infloop", BB->getParent());
Chris Lattner093a4382008-07-13 22:23:11 +00001640 BranchInst::Create(InfLoopBlock, InfLoopBlock);
1641 OtherDest = InfLoopBlock;
1642 }
1643
David Greene89d6fd32010-01-05 01:26:52 +00001644 DEBUG(dbgs() << *PBI->getParent()->getParent());
Chris Lattnerb8245122008-07-13 22:04:41 +00001645
1646 // BI may have other predecessors. Because of this, we leave
1647 // it alone, but modify PBI.
1648
1649 // Make sure we get to CommonDest on True&True directions.
1650 Value *PBICond = PBI->getCondition();
1651 if (PBIOp)
Dan Gohman4ae51262009-08-12 16:23:25 +00001652 PBICond = BinaryOperator::CreateNot(PBICond,
Chris Lattnerb8245122008-07-13 22:04:41 +00001653 PBICond->getName()+".not",
1654 PBI);
1655 Value *BICond = BI->getCondition();
1656 if (BIOp)
Dan Gohman4ae51262009-08-12 16:23:25 +00001657 BICond = BinaryOperator::CreateNot(BICond,
Chris Lattnerb8245122008-07-13 22:04:41 +00001658 BICond->getName()+".not",
1659 PBI);
1660 // Merge the conditions.
1661 Value *Cond = BinaryOperator::CreateOr(PBICond, BICond, "brmerge", PBI);
1662
1663 // Modify PBI to branch on the new condition to the new dests.
1664 PBI->setCondition(Cond);
1665 PBI->setSuccessor(0, CommonDest);
1666 PBI->setSuccessor(1, OtherDest);
1667
1668 // OtherDest may have phi nodes. If so, add an entry from PBI's
1669 // block that are identical to the entries for BI's block.
1670 PHINode *PN;
1671 for (BasicBlock::iterator II = OtherDest->begin();
1672 (PN = dyn_cast<PHINode>(II)); ++II) {
1673 Value *V = PN->getIncomingValueForBlock(BB);
1674 PN->addIncoming(V, PBI->getParent());
1675 }
1676
1677 // We know that the CommonDest already had an edge from PBI to
1678 // it. If it has PHIs though, the PHIs may have different
1679 // entries for BB and PBI's BB. If so, insert a select to make
1680 // them agree.
1681 for (BasicBlock::iterator II = CommonDest->begin();
1682 (PN = dyn_cast<PHINode>(II)); ++II) {
1683 Value *BIV = PN->getIncomingValueForBlock(BB);
1684 unsigned PBBIdx = PN->getBasicBlockIndex(PBI->getParent());
1685 Value *PBIV = PN->getIncomingValue(PBBIdx);
1686 if (BIV != PBIV) {
1687 // Insert a select in PBI to pick the right value.
1688 Value *NV = SelectInst::Create(PBICond, PBIV, BIV,
1689 PBIV->getName()+".mux", PBI);
1690 PN->setIncomingValue(PBBIdx, NV);
Chris Lattner867661a2008-07-13 21:53:26 +00001691 }
1692 }
Chris Lattnerb8245122008-07-13 22:04:41 +00001693
David Greene89d6fd32010-01-05 01:26:52 +00001694 DEBUG(dbgs() << "INTO: " << *PBI->getParent());
1695 DEBUG(dbgs() << *PBI->getParent()->getParent());
Chris Lattnerb8245122008-07-13 22:04:41 +00001696
1697 // This basic block is probably dead. We know it has at least
1698 // one fewer predecessor.
1699 return true;
Chris Lattner867661a2008-07-13 21:53:26 +00001700}
1701
Frits van Bommel7ac40c32010-12-05 18:29:03 +00001702// SimplifyIndirectBrOnSelect - Replaces
1703// (indirectbr (select cond, blockaddress(@fn, BlockA),
1704// blockaddress(@fn, BlockB)))
1705// with
1706// (br cond, BlockA, BlockB).
1707static bool SimplifyIndirectBrOnSelect(IndirectBrInst *IBI, SelectInst *SI) {
1708 // Check that both operands of the select are block addresses.
1709 BlockAddress *TBA = dyn_cast<BlockAddress>(SI->getTrueValue());
1710 BlockAddress *FBA = dyn_cast<BlockAddress>(SI->getFalseValue());
1711 if (!TBA || !FBA)
1712 return false;
1713
1714 // Extract the actual blocks.
1715 BasicBlock *TrueBB = TBA->getBasicBlock();
1716 BasicBlock *FalseBB = FBA->getBasicBlock();
1717
1718 // Remove any superfluous successor edges from the CFG.
1719 // First, figure out which successors to preserve.
1720 // If TrueBB and FalseBB are equal, only try to preserve one copy of that
1721 // successor.
1722 BasicBlock *KeepEdge1 = TrueBB;
1723 BasicBlock *KeepEdge2 = TrueBB != FalseBB ? FalseBB : 0;
1724
1725 // Then remove the rest.
1726 for (unsigned I = 0, E = IBI->getNumSuccessors(); I != E; ++I) {
1727 BasicBlock *Succ = IBI->getSuccessor(I);
1728 // Make sure only to keep exactly one copy of each edge.
1729 if (Succ == KeepEdge1)
1730 KeepEdge1 = 0;
1731 else if (Succ == KeepEdge2)
1732 KeepEdge2 = 0;
1733 else
1734 Succ->removePredecessor(IBI->getParent());
1735 }
1736
1737 // Insert an appropriate new terminator.
1738 if ((KeepEdge1 == 0) && (KeepEdge2 == 0)) {
1739 if (TrueBB == FalseBB)
1740 // We were only looking for one successor, and it was present.
1741 // Create an unconditional branch to it.
1742 BranchInst::Create(TrueBB, IBI);
1743 else
1744 // We found both of the successors we were looking for.
1745 // Create a conditional branch sharing the condition of the select.
1746 BranchInst::Create(TrueBB, FalseBB, SI->getCondition(), IBI);
1747 } else if (KeepEdge1 && (KeepEdge2 || TrueBB == FalseBB)) {
1748 // Neither of the selected blocks were successors, so this
1749 // indirectbr must be unreachable.
1750 new UnreachableInst(IBI->getContext(), IBI);
1751 } else {
1752 // One of the selected values was a successor, but the other wasn't.
1753 // Insert an unconditional branch to the one that was found;
1754 // the edge to the one that wasn't must be unreachable.
1755 if (KeepEdge1 == 0)
1756 // Only TrueBB was found.
1757 BranchInst::Create(TrueBB, IBI);
1758 else
1759 // Only FalseBB was found.
1760 BranchInst::Create(FalseBB, IBI);
1761 }
1762
1763 EraseTerminatorInstAndDCECond(IBI);
1764 return true;
1765}
1766
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +00001767bool SimplifyCFGOpt::run(BasicBlock *BB) {
Chris Lattnerdc3602b2003-08-24 18:36:16 +00001768 bool Changed = false;
Duncan Sands5f284752010-10-24 12:23:30 +00001769 Function *Fn = BB->getParent();
Chris Lattner01d1ee32002-05-21 20:50:24 +00001770
Duncan Sands5f284752010-10-24 12:23:30 +00001771 assert(BB && Fn && "Block not embedded in function!");
Chris Lattner01d1ee32002-05-21 20:50:24 +00001772 assert(BB->getTerminator() && "Degenerate basic block encountered!");
Chris Lattner01d1ee32002-05-21 20:50:24 +00001773
Dan Gohmane2c6d132010-08-14 00:29:42 +00001774 // Remove basic blocks that have no predecessors (except the entry block)...
1775 // or that just have themself as a predecessor. These are unreachable.
Duncan Sands5f284752010-10-24 12:23:30 +00001776 if ((pred_begin(BB) == pred_end(BB) && BB != &Fn->getEntryBlock()) ||
Dan Gohmane2c6d132010-08-14 00:29:42 +00001777 BB->getSinglePredecessor() == BB) {
David Greene89d6fd32010-01-05 01:26:52 +00001778 DEBUG(dbgs() << "Removing BB: \n" << *BB);
Chris Lattner71af9b02008-12-03 06:40:52 +00001779 DeleteDeadBlock(BB);
Chris Lattner01d1ee32002-05-21 20:50:24 +00001780 return true;
1781 }
1782
Chris Lattner694e37f2003-08-17 19:41:53 +00001783 // Check to see if we can constant propagate this terminator instruction
1784 // away...
Chris Lattnerdc3602b2003-08-24 18:36:16 +00001785 Changed |= ConstantFoldTerminator(BB);
Chris Lattner694e37f2003-08-17 19:41:53 +00001786
Dan Gohman2c635662009-10-30 22:39:04 +00001787 // Check for and eliminate duplicate PHI nodes in this block.
1788 Changed |= EliminateDuplicatePHINodes(BB);
1789
Dan Gohman882d87d2008-03-11 21:53:06 +00001790 // If there is a trivial two-entry PHI node in this basic block, and we can
1791 // eliminate it, do so now.
1792 if (PHINode *PN = dyn_cast<PHINode>(BB->begin()))
1793 if (PN->getNumIncomingValues() == 2)
1794 Changed |= FoldTwoEntryPHINode(PN);
1795
Chris Lattner19831ec2004-02-16 06:35:48 +00001796 // If this is a returning block with only PHI nodes in it, fold the return
1797 // instruction into any unconditional branch predecessors.
Chris Lattner147af6b2004-04-02 18:13:43 +00001798 //
1799 // If any predecessor is a conditional branch that just selects among
1800 // different return values, fold the replace the branch/return with a select
1801 // and return.
Chris Lattner19831ec2004-02-16 06:35:48 +00001802 if (ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator())) {
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001803 if (BB->getFirstNonPHIOrDbg()->isTerminator()) {
Chris Lattner147af6b2004-04-02 18:13:43 +00001804 // Find predecessors that end with branches.
Chris Lattner82442432008-02-18 07:42:56 +00001805 SmallVector<BasicBlock*, 8> UncondBranchPreds;
1806 SmallVector<BranchInst*, 8> CondBranchPreds;
Chris Lattner19831ec2004-02-16 06:35:48 +00001807 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
Gabor Greif58969352010-07-09 15:25:09 +00001808 BasicBlock *P = *PI;
1809 TerminatorInst *PTI = P->getTerminator();
Anton Korobeynikov07e6e562008-02-20 11:26:25 +00001810 if (BranchInst *BI = dyn_cast<BranchInst>(PTI)) {
Chris Lattner19831ec2004-02-16 06:35:48 +00001811 if (BI->isUnconditional())
Gabor Greif58969352010-07-09 15:25:09 +00001812 UncondBranchPreds.push_back(P);
Chris Lattner147af6b2004-04-02 18:13:43 +00001813 else
1814 CondBranchPreds.push_back(BI);
Anton Korobeynikov07e6e562008-02-20 11:26:25 +00001815 }
Chris Lattner19831ec2004-02-16 06:35:48 +00001816 }
Misha Brukmanfd939082005-04-21 23:48:37 +00001817
Chris Lattner19831ec2004-02-16 06:35:48 +00001818 // If we found some, do the transformation!
Bill Wendling1c855032009-03-03 19:25:16 +00001819 if (!UncondBranchPreds.empty()) {
Chris Lattner19831ec2004-02-16 06:35:48 +00001820 while (!UncondBranchPreds.empty()) {
Dan Gohmane9d87f42009-05-06 17:22:41 +00001821 BasicBlock *Pred = UncondBranchPreds.pop_back_val();
David Greene89d6fd32010-01-05 01:26:52 +00001822 DEBUG(dbgs() << "FOLDING: " << *BB
Chris Lattnerbdff5482009-08-23 04:37:46 +00001823 << "INTO UNCOND BRANCH PRED: " << *Pred);
Chris Lattner19831ec2004-02-16 06:35:48 +00001824 Instruction *UncondBranch = Pred->getTerminator();
1825 // Clone the return and add it to the end of the predecessor.
Nick Lewycky67760642009-09-27 07:38:41 +00001826 Instruction *NewRet = RI->clone();
Chris Lattner19831ec2004-02-16 06:35:48 +00001827 Pred->getInstList().push_back(NewRet);
1828
1829 // If the return instruction returns a value, and if the value was a
1830 // PHI node in "BB", propagate the right value into the return.
Gabor Greiff7ea3632008-06-10 22:03:26 +00001831 for (User::op_iterator i = NewRet->op_begin(), e = NewRet->op_end();
1832 i != e; ++i)
1833 if (PHINode *PN = dyn_cast<PHINode>(*i))
Chris Lattner19831ec2004-02-16 06:35:48 +00001834 if (PN->getParent() == BB)
Gabor Greiff7ea3632008-06-10 22:03:26 +00001835 *i = PN->getIncomingValueForBlock(Pred);
Chris Lattnerffba5822008-04-28 00:19:07 +00001836
Chris Lattner19831ec2004-02-16 06:35:48 +00001837 // Update any PHI nodes in the returning block to realize that we no
1838 // longer branch to them.
1839 BB->removePredecessor(Pred);
1840 Pred->getInstList().erase(UncondBranch);
1841 }
1842
1843 // If we eliminated all predecessors of the block, delete the block now.
1844 if (pred_begin(BB) == pred_end(BB))
1845 // We know there are no successors, so just nuke the block.
Duncan Sands5f284752010-10-24 12:23:30 +00001846 Fn->getBasicBlockList().erase(BB);
Chris Lattner19831ec2004-02-16 06:35:48 +00001847
Chris Lattner19831ec2004-02-16 06:35:48 +00001848 return true;
1849 }
Chris Lattner147af6b2004-04-02 18:13:43 +00001850
1851 // Check out all of the conditional branches going to this return
1852 // instruction. If any of them just select between returns, change the
1853 // branch itself into a select/return pair.
1854 while (!CondBranchPreds.empty()) {
Dan Gohmane9d87f42009-05-06 17:22:41 +00001855 BranchInst *BI = CondBranchPreds.pop_back_val();
Chris Lattner147af6b2004-04-02 18:13:43 +00001856
1857 // Check to see if the non-BB successor is also a return block.
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001858 if (isa<ReturnInst>(BI->getSuccessor(0)->getTerminator()) &&
1859 isa<ReturnInst>(BI->getSuccessor(1)->getTerminator()) &&
1860 SimplifyCondBranchToTwoReturns(BI))
1861 return true;
Chris Lattner147af6b2004-04-02 18:13:43 +00001862 }
Chris Lattner19831ec2004-02-16 06:35:48 +00001863 }
Reid Spencer3ed469c2006-11-02 20:25:50 +00001864 } else if (isa<UnwindInst>(BB->begin())) {
Chris Lattnere14ea082004-02-24 05:54:22 +00001865 // Check to see if the first instruction in this block is just an unwind.
1866 // If so, replace any invoke instructions which use this as an exception
Chris Lattner11f15db2009-10-13 18:13:05 +00001867 // destination with call instructions.
Chris Lattnere14ea082004-02-24 05:54:22 +00001868 //
Chris Lattner82442432008-02-18 07:42:56 +00001869 SmallVector<BasicBlock*, 8> Preds(pred_begin(BB), pred_end(BB));
Chris Lattnere14ea082004-02-24 05:54:22 +00001870 while (!Preds.empty()) {
1871 BasicBlock *Pred = Preds.back();
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001872 InvokeInst *II = dyn_cast<InvokeInst>(Pred->getTerminator());
1873 if (II && II->getUnwindDest() == BB) {
1874 // Insert a new branch instruction before the invoke, because this
1875 // is now a fall through.
1876 BranchInst *BI = BranchInst::Create(II->getNormalDest(), II);
1877 Pred->getInstList().remove(II); // Take out of symbol table
Misha Brukmanfd939082005-04-21 23:48:37 +00001878
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001879 // Insert the call now.
1880 SmallVector<Value*,8> Args(II->op_begin(), II->op_end()-3);
1881 CallInst *CI = CallInst::Create(II->getCalledValue(),
1882 Args.begin(), Args.end(),
1883 II->getName(), BI);
1884 CI->setCallingConv(II->getCallingConv());
1885 CI->setAttributes(II->getAttributes());
1886 // If the invoke produced a value, the Call now does instead.
1887 II->replaceAllUsesWith(CI);
1888 delete II;
1889 Changed = true;
1890 }
Misha Brukmanfd939082005-04-21 23:48:37 +00001891
Chris Lattnere14ea082004-02-24 05:54:22 +00001892 Preds.pop_back();
1893 }
Chris Lattner8e509dd2004-02-24 16:09:21 +00001894
Duncan Sands5f284752010-10-24 12:23:30 +00001895 // If this block is now dead (and isn't the entry block), remove it.
1896 if (pred_begin(BB) == pred_end(BB) && BB != &Fn->getEntryBlock()) {
Chris Lattner8e509dd2004-02-24 16:09:21 +00001897 // We know there are no successors, so just nuke the block.
Duncan Sands5f284752010-10-24 12:23:30 +00001898 Fn->getBasicBlockList().erase(BB);
Chris Lattner8e509dd2004-02-24 16:09:21 +00001899 return true;
1900 }
1901
Chris Lattner623369a2005-02-24 06:17:52 +00001902 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(BB->getTerminator())) {
1903 if (isValueEqualityComparison(SI)) {
1904 // If we only have one predecessor, and if it is a branch on this value,
1905 // see if that predecessor totally determines the outcome of this switch.
1906 if (BasicBlock *OnlyPred = BB->getSinglePredecessor())
1907 if (SimplifyEqualityComparisonWithOnlyPredecessor(SI, OnlyPred))
1908 return SimplifyCFG(BB) || 1;
1909
1910 // If the block only contains the switch, see if we can fold the block
1911 // away into any preds.
Zhou Sheng9a7c7432009-02-25 15:34:27 +00001912 BasicBlock::iterator BBI = BB->begin();
1913 // Ignore dbg intrinsics.
1914 while (isa<DbgInfoIntrinsic>(BBI))
1915 ++BBI;
1916 if (SI == &*BBI)
Chris Lattner623369a2005-02-24 06:17:52 +00001917 if (FoldValueComparisonIntoPredecessors(SI))
1918 return SimplifyCFG(BB) || 1;
1919 }
Chris Lattner542f1492004-02-28 21:28:10 +00001920 } else if (BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator())) {
Chris Lattner7e663482005-08-03 00:11:16 +00001921 if (BI->isUnconditional()) {
Chris Lattnerdcb54ce2010-12-13 01:28:06 +00001922 // If the Terminator is the only non-phi instruction, simplify the block.
1923 Instruction *I = BB->getFirstNonPHIOrDbg();
1924 if (I->isTerminator() && BB != &Fn->getEntryBlock() &&
1925 TryToSimplifyUncondBranchFromEmptyBlock(BB))
1926 return true;
Chris Lattner7e663482005-08-03 00:11:16 +00001927
1928 } else { // Conditional branch
Reid Spencer3ed469c2006-11-02 20:25:50 +00001929 if (isValueEqualityComparison(BI)) {
Chris Lattner623369a2005-02-24 06:17:52 +00001930 // If we only have one predecessor, and if it is a branch on this value,
1931 // see if that predecessor totally determines the outcome of this
1932 // switch.
1933 if (BasicBlock *OnlyPred = BB->getSinglePredecessor())
1934 if (SimplifyEqualityComparisonWithOnlyPredecessor(BI, OnlyPred))
Bill Wendlingc69b4a52010-03-14 10:40:28 +00001935 return SimplifyCFG(BB) | true;
Chris Lattner623369a2005-02-24 06:17:52 +00001936
Chris Lattnere67fa052004-05-01 23:35:43 +00001937 // This block must be empty, except for the setcond inst, if it exists.
Devang Patel556b20a2009-02-04 01:06:11 +00001938 // Ignore dbg intrinsics.
Chris Lattnere67fa052004-05-01 23:35:43 +00001939 BasicBlock::iterator I = BB->begin();
Devang Pateld0a203d2009-02-04 21:39:48 +00001940 // Ignore dbg intrinsics.
Devang Patel556b20a2009-02-04 01:06:11 +00001941 while (isa<DbgInfoIntrinsic>(I))
Devang Pateld0a203d2009-02-04 21:39:48 +00001942 ++I;
1943 if (&*I == BI) {
Chris Lattnere67fa052004-05-01 23:35:43 +00001944 if (FoldValueComparisonIntoPredecessors(BI))
1945 return SimplifyCFG(BB) | true;
Devang Pateld0a203d2009-02-04 21:39:48 +00001946 } else if (&*I == cast<Instruction>(BI->getCondition())){
1947 ++I;
1948 // Ignore dbg intrinsics.
1949 while (isa<DbgInfoIntrinsic>(I))
1950 ++I;
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001951 if (&*I == BI && FoldValueComparisonIntoPredecessors(BI))
1952 return SimplifyCFG(BB) | true;
Devang Pateld0a203d2009-02-04 21:39:48 +00001953 }
Chris Lattnere67fa052004-05-01 23:35:43 +00001954 }
Devang Pateld0a203d2009-02-04 21:39:48 +00001955
Chris Lattnereaba3a12005-09-19 23:49:37 +00001956 // If this is a branch on a phi node in the current block, thread control
1957 // through this block if any PHI node entries are constants.
1958 if (PHINode *PN = dyn_cast<PHINode>(BI->getCondition()))
1959 if (PN->getParent() == BI->getParent())
1960 if (FoldCondBranchOnPHI(BI))
1961 return SimplifyCFG(BB) | true;
Chris Lattnere67fa052004-05-01 23:35:43 +00001962
1963 // If this basic block is ONLY a setcc and a branch, and if a predecessor
1964 // branches to us and one of our successors, fold the setcc into the
1965 // predecessor and use logical operations to pick the right destination.
Chris Lattner1347e872008-07-13 21:12:01 +00001966 if (FoldBranchToCommonDest(BI))
Bill Wendlingc69b4a52010-03-14 10:40:28 +00001967 return SimplifyCFG(BB) | true;
Chris Lattnere67fa052004-05-01 23:35:43 +00001968
Chris Lattner867661a2008-07-13 21:53:26 +00001969
1970 // Scan predecessor blocks for conditional branches.
Chris Lattner2e42e362005-09-20 00:43:16 +00001971 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI)
1972 if (BranchInst *PBI = dyn_cast<BranchInst>((*PI)->getTerminator()))
Chris Lattner867661a2008-07-13 21:53:26 +00001973 if (PBI != BI && PBI->isConditional())
1974 if (SimplifyCondBranchToCondBranch(PBI, BI))
1975 return SimplifyCFG(BB) | true;
Chris Lattnercd4b7092010-12-13 01:57:34 +00001976
1977
1978 // Change br (X == 0 | X == 1), T, F into a switch instruction.
1979 // If this is a bunch of seteq's or'd together, or if it's a bunch of
1980 // 'setne's and'ed together, collect them.
1981 Value *CompVal = 0;
1982 std::vector<ConstantInt*> Values;
1983 bool TrueWhenEqual = GatherValueComparisons(BI->getCondition(), CompVal,
1984 Values);
1985 if (CompVal) {
1986 // There might be duplicate constants in the list, which the switch
1987 // instruction can't handle, remove them now.
1988 std::sort(Values.begin(), Values.end(), ConstantIntOrdering());
1989 Values.erase(std::unique(Values.begin(), Values.end()), Values.end());
1990
1991 // Figure out which block is which destination.
1992 BasicBlock *DefaultBB = BI->getSuccessor(1);
1993 BasicBlock *EdgeBB = BI->getSuccessor(0);
1994 if (!TrueWhenEqual) std::swap(DefaultBB, EdgeBB);
1995
1996 // Convert pointer to int before we switch.
1997 if (CompVal->getType()->isPointerTy()) {
1998 assert(TD && "Cannot switch on pointer without TargetData");
1999 CompVal = new PtrToIntInst(CompVal,
2000 TD->getIntPtrType(CompVal->getContext()),
2001 "magicptr", BI);
2002 }
2003
2004 // Create the new switch instruction now.
2005 SwitchInst *New = SwitchInst::Create(CompVal, DefaultBB,
2006 Values.size(), BI);
2007
2008 // Add all of the 'cases' to the switch instruction.
2009 for (unsigned i = 0, e = Values.size(); i != e; ++i)
2010 New->addCase(Values[i], EdgeBB);
2011
2012 // We added edges from PI to the EdgeBB. As such, if there were any
2013 // PHI nodes in EdgeBB, they need entries to be added corresponding to
2014 // the number of edges added.
2015 for (BasicBlock::iterator BBI = EdgeBB->begin();
2016 isa<PHINode>(BBI); ++BBI) {
2017 PHINode *PN = cast<PHINode>(BBI);
2018 Value *InVal = PN->getIncomingValueForBlock(BB);
2019 for (unsigned i = 0, e = Values.size()-1; i != e; ++i)
2020 PN->addIncoming(InVal, BB);
2021 }
2022
2023 // Erase the old branch instruction.
2024 EraseTerminatorInstAndDCECond(BI);
2025 return true;
2026 }
Chris Lattnerd52c2612004-02-24 07:23:58 +00002027 }
Chris Lattner698f96f2004-10-18 04:07:22 +00002028 } else if (isa<UnreachableInst>(BB->getTerminator())) {
2029 // If there are any instructions immediately before the unreachable that can
2030 // be removed, do so.
2031 Instruction *Unreachable = BB->getTerminator();
2032 while (Unreachable != BB->begin()) {
2033 BasicBlock::iterator BBI = Unreachable;
2034 --BBI;
Chris Lattnerf8131c92008-10-29 17:46:26 +00002035 // Do not delete instructions that can have side effects, like calls
2036 // (which may never return) and volatile loads and stores.
Dale Johannesen80b8a622009-03-12 17:42:45 +00002037 if (isa<CallInst>(BBI) && !isa<DbgInfoIntrinsic>(BBI)) break;
Chris Lattnerf8131c92008-10-29 17:46:26 +00002038
2039 if (StoreInst *SI = dyn_cast<StoreInst>(BBI))
2040 if (SI->isVolatile())
2041 break;
2042
2043 if (LoadInst *LI = dyn_cast<LoadInst>(BBI))
2044 if (LI->isVolatile())
2045 break;
2046
Chris Lattner698f96f2004-10-18 04:07:22 +00002047 // Delete this instruction
2048 BB->getInstList().erase(BBI);
2049 Changed = true;
2050 }
2051
2052 // If the unreachable instruction is the first in the block, take a gander
2053 // at all of the predecessors of this instruction, and simplify them.
2054 if (&BB->front() == Unreachable) {
Chris Lattner82442432008-02-18 07:42:56 +00002055 SmallVector<BasicBlock*, 8> Preds(pred_begin(BB), pred_end(BB));
Chris Lattner698f96f2004-10-18 04:07:22 +00002056 for (unsigned i = 0, e = Preds.size(); i != e; ++i) {
2057 TerminatorInst *TI = Preds[i]->getTerminator();
2058
2059 if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
2060 if (BI->isUnconditional()) {
2061 if (BI->getSuccessor(0) == BB) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002062 new UnreachableInst(TI->getContext(), TI);
Chris Lattner698f96f2004-10-18 04:07:22 +00002063 TI->eraseFromParent();
2064 Changed = true;
2065 }
2066 } else {
2067 if (BI->getSuccessor(0) == BB) {
Gabor Greif051a9502008-04-06 20:25:17 +00002068 BranchInst::Create(BI->getSuccessor(1), BI);
Eli Friedman080efb82008-12-16 20:54:32 +00002069 EraseTerminatorInstAndDCECond(BI);
Chris Lattner698f96f2004-10-18 04:07:22 +00002070 } else if (BI->getSuccessor(1) == BB) {
Gabor Greif051a9502008-04-06 20:25:17 +00002071 BranchInst::Create(BI->getSuccessor(0), BI);
Eli Friedman080efb82008-12-16 20:54:32 +00002072 EraseTerminatorInstAndDCECond(BI);
Chris Lattner698f96f2004-10-18 04:07:22 +00002073 Changed = true;
2074 }
2075 }
2076 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
2077 for (unsigned i = 1, e = SI->getNumCases(); i != e; ++i)
2078 if (SI->getSuccessor(i) == BB) {
Chris Lattner42eb7522005-05-20 22:19:54 +00002079 BB->removePredecessor(SI->getParent());
Chris Lattner698f96f2004-10-18 04:07:22 +00002080 SI->removeCase(i);
2081 --i; --e;
2082 Changed = true;
2083 }
2084 // If the default value is unreachable, figure out the most popular
2085 // destination and make it the default.
2086 if (SI->getSuccessor(0) == BB) {
2087 std::map<BasicBlock*, unsigned> Popularity;
2088 for (unsigned i = 1, e = SI->getNumCases(); i != e; ++i)
2089 Popularity[SI->getSuccessor(i)]++;
2090
2091 // Find the most popular block.
2092 unsigned MaxPop = 0;
2093 BasicBlock *MaxBlock = 0;
2094 for (std::map<BasicBlock*, unsigned>::iterator
2095 I = Popularity.begin(), E = Popularity.end(); I != E; ++I) {
2096 if (I->second > MaxPop) {
2097 MaxPop = I->second;
2098 MaxBlock = I->first;
2099 }
2100 }
2101 if (MaxBlock) {
2102 // Make this the new default, allowing us to delete any explicit
2103 // edges to it.
2104 SI->setSuccessor(0, MaxBlock);
2105 Changed = true;
2106
Chris Lattner42eb7522005-05-20 22:19:54 +00002107 // If MaxBlock has phinodes in it, remove MaxPop-1 entries from
2108 // it.
2109 if (isa<PHINode>(MaxBlock->begin()))
2110 for (unsigned i = 0; i != MaxPop-1; ++i)
2111 MaxBlock->removePredecessor(SI->getParent());
2112
Chris Lattner698f96f2004-10-18 04:07:22 +00002113 for (unsigned i = 1, e = SI->getNumCases(); i != e; ++i)
2114 if (SI->getSuccessor(i) == MaxBlock) {
2115 SI->removeCase(i);
2116 --i; --e;
2117 }
2118 }
2119 }
2120 } else if (InvokeInst *II = dyn_cast<InvokeInst>(TI)) {
2121 if (II->getUnwindDest() == BB) {
2122 // Convert the invoke to a call instruction. This would be a good
2123 // place to note that the call does not throw though.
Gabor Greif051a9502008-04-06 20:25:17 +00002124 BranchInst *BI = BranchInst::Create(II->getNormalDest(), II);
Chris Lattner698f96f2004-10-18 04:07:22 +00002125 II->removeFromParent(); // Take out of symbol table
Misha Brukmanfd939082005-04-21 23:48:37 +00002126
Chris Lattner698f96f2004-10-18 04:07:22 +00002127 // Insert the call now...
Gabor Greifbd443142010-03-30 19:20:53 +00002128 SmallVector<Value*, 8> Args(II->op_begin(), II->op_end()-3);
Gabor Greif051a9502008-04-06 20:25:17 +00002129 CallInst *CI = CallInst::Create(II->getCalledValue(),
2130 Args.begin(), Args.end(),
2131 II->getName(), BI);
Chris Lattner16d0db22005-05-14 12:21:56 +00002132 CI->setCallingConv(II->getCallingConv());
Devang Patel05988662008-09-25 21:00:45 +00002133 CI->setAttributes(II->getAttributes());
Gabor Greifbd443142010-03-30 19:20:53 +00002134 // If the invoke produced a value, the call does now instead.
Chris Lattner698f96f2004-10-18 04:07:22 +00002135 II->replaceAllUsesWith(CI);
2136 delete II;
2137 Changed = true;
2138 }
2139 }
2140 }
2141
2142 // If this block is now dead, remove it.
Duncan Sands5f284752010-10-24 12:23:30 +00002143 if (pred_begin(BB) == pred_end(BB) && BB != &Fn->getEntryBlock()) {
Chris Lattner698f96f2004-10-18 04:07:22 +00002144 // We know there are no successors, so just nuke the block.
Duncan Sands5f284752010-10-24 12:23:30 +00002145 Fn->getBasicBlockList().erase(BB);
Chris Lattner698f96f2004-10-18 04:07:22 +00002146 return true;
2147 }
2148 }
Dan Gohman7a499432010-08-16 14:41:14 +00002149 } else if (IndirectBrInst *IBI =
2150 dyn_cast<IndirectBrInst>(BB->getTerminator())) {
Dan Gohmane2c6d132010-08-14 00:29:42 +00002151 // Eliminate redundant destinations.
2152 SmallPtrSet<Value *, 8> Succs;
2153 for (unsigned i = 0, e = IBI->getNumDestinations(); i != e; ++i) {
2154 BasicBlock *Dest = IBI->getDestination(i);
Dan Gohman7a499432010-08-16 14:41:14 +00002155 if (!Dest->hasAddressTaken() || !Succs.insert(Dest)) {
Dan Gohmane2c6d132010-08-14 00:29:42 +00002156 Dest->removePredecessor(BB);
2157 IBI->removeDestination(i);
2158 --i; --e;
2159 Changed = true;
2160 }
2161 }
2162
2163 if (IBI->getNumDestinations() == 0) {
2164 // If the indirectbr has no successors, change it to unreachable.
2165 new UnreachableInst(IBI->getContext(), IBI);
Frits van Bommel7ac40c32010-12-05 18:29:03 +00002166 EraseTerminatorInstAndDCECond(IBI);
Dan Gohmane2c6d132010-08-14 00:29:42 +00002167 Changed = true;
2168 } else if (IBI->getNumDestinations() == 1) {
2169 // If the indirectbr has one successor, change it to a direct branch.
2170 BranchInst::Create(IBI->getDestination(0), IBI);
Frits van Bommel7ac40c32010-12-05 18:29:03 +00002171 EraseTerminatorInstAndDCECond(IBI);
Dan Gohmane2c6d132010-08-14 00:29:42 +00002172 Changed = true;
Frits van Bommel7ac40c32010-12-05 18:29:03 +00002173 } else if (SelectInst *SI = dyn_cast<SelectInst>(IBI->getAddress())) {
2174 if (SimplifyIndirectBrOnSelect(IBI, SI))
2175 return SimplifyCFG(BB) | true;
Dan Gohmane2c6d132010-08-14 00:29:42 +00002176 }
Chris Lattner19831ec2004-02-16 06:35:48 +00002177 }
2178
Chris Lattner01d1ee32002-05-21 20:50:24 +00002179 // Merge basic blocks into their predecessor if there is only one distinct
2180 // pred, and if there is only one distinct successor of the predecessor, and
2181 // if there are no PHI nodes.
2182 //
Owen Andersoncfa94192008-07-18 17:49:43 +00002183 if (MergeBlockIntoPredecessor(BB))
2184 return true;
2185
2186 // Otherwise, if this block only has a single predecessor, and if that block
2187 // is a conditional branch, see if we can hoist any code from this block up
2188 // into our predecessor.
Chris Lattner2355f942004-02-11 01:17:07 +00002189 pred_iterator PI(pred_begin(BB)), PE(pred_end(BB));
Dan Gohmane2c6d132010-08-14 00:29:42 +00002190 BasicBlock *OnlyPred = 0;
2191 for (; PI != PE; ++PI) { // Search all predecessors, see if they are all same
2192 if (!OnlyPred)
2193 OnlyPred = *PI;
2194 else if (*PI != OnlyPred) {
Chris Lattner2355f942004-02-11 01:17:07 +00002195 OnlyPred = 0; // There are multiple different predecessors...
2196 break;
2197 }
Dan Gohmane2c6d132010-08-14 00:29:42 +00002198 }
Owen Andersoncfa94192008-07-18 17:49:43 +00002199
Chris Lattner9a2b72a2010-12-13 01:47:07 +00002200 if (OnlyPred) {
2201 BranchInst *BI = dyn_cast<BranchInst>(OnlyPred->getTerminator());
2202 if (BI && BI->isConditional()) {
2203 // Get the other block.
2204 BasicBlock *OtherBB = BI->getSuccessor(BI->getSuccessor(0) == BB);
2205 PI = pred_begin(OtherBB);
2206 ++PI;
2207
2208 if (PI == pred_end(OtherBB)) {
2209 // We have a conditional branch to two blocks that are only reachable
2210 // from the condbr. We know that the condbr dominates the two blocks,
2211 // so see if there is any identical code in the "then" and "else"
2212 // blocks. If so, we can hoist it up to the branching block.
2213 Changed |= HoistThenElseCodeToIf(BI);
2214 } else {
2215 BasicBlock* OnlySucc = NULL;
2216 for (succ_iterator SI = succ_begin(BB), SE = succ_end(BB);
2217 SI != SE; ++SI) {
2218 if (!OnlySucc)
2219 OnlySucc = *SI;
2220 else if (*SI != OnlySucc) {
2221 OnlySucc = 0; // There are multiple distinct successors!
2222 break;
Evan Cheng4d09efd2008-06-07 08:52:29 +00002223 }
Chris Lattner76134372004-12-10 17:42:31 +00002224 }
Chris Lattner37dc9382004-11-30 00:29:14 +00002225
Chris Lattner9a2b72a2010-12-13 01:47:07 +00002226 if (OnlySucc == OtherBB) {
2227 // If BB's only successor is the other successor of the predecessor,
2228 // i.e. a triangle, see if we can hoist any code from this block up
2229 // to the "if" block.
2230 Changed |= SpeculativelyExecuteBB(BI, BB);
Chris Lattner0d560082004-02-24 05:38:11 +00002231 }
2232 }
Chris Lattner9a2b72a2010-12-13 01:47:07 +00002233 }
2234 }
2235
Chris Lattner694e37f2003-08-17 19:41:53 +00002236 return Changed;
Chris Lattner01d1ee32002-05-21 20:50:24 +00002237}
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +00002238
2239/// SimplifyCFG - This function is used to do simplification of a CFG. For
2240/// example, it adjusts branches to branches to eliminate the extra hop, it
2241/// eliminates unreachable basic blocks, and does other "peephole" optimization
2242/// of the CFG. It returns true if a modification was made.
2243///
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +00002244bool llvm::SimplifyCFG(BasicBlock *BB, const TargetData *TD) {
2245 return SimplifyCFGOpt(TD).run(BB);
2246}