blob: a008da67e92645a8769f5a7d714ef4ed2c1b8291 [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"
Nick Lewycky9d523102011-12-26 20:37:40 +000017#include "llvm/DerivedTypes.h"
18#include "llvm/GlobalVariable.h"
Chandler Carruth06cb8ed2012-06-29 12:38:19 +000019#include "llvm/IRBuilder.h"
Chris Lattner723c66d2004-02-11 03:36:04 +000020#include "llvm/Instructions.h"
Devang Patel383d7ed2009-02-03 22:12:02 +000021#include "llvm/IntrinsicInst.h"
Nick Lewycky06cc66f2011-12-27 04:31:52 +000022#include "llvm/LLVMContext.h"
Chandler Carruth0baa4802012-07-15 23:26:50 +000023#include "llvm/MDBuilder.h"
Nick Lewycky06cc66f2011-12-27 04:31:52 +000024#include "llvm/Metadata.h"
Hans Wennborg486270a2012-09-06 09:43:28 +000025#include "llvm/Module.h"
Dan Gohman3b205172012-01-05 23:58:56 +000026#include "llvm/Operator.h"
Chris Lattner0d560082004-02-24 05:38:11 +000027#include "llvm/Type.h"
Chandler Carruth06cb8ed2012-06-29 12:38:19 +000028#include "llvm/ADT/DenseMap.h"
29#include "llvm/ADT/STLExtras.h"
30#include "llvm/ADT/SetVector.h"
31#include "llvm/ADT/SmallPtrSet.h"
32#include "llvm/ADT/SmallVector.h"
33#include "llvm/ADT/Statistic.h"
Chris Lattner302ba6f2010-12-14 06:17:25 +000034#include "llvm/Analysis/InstructionSimplify.h"
Benjamin Kramer10fcfb52011-05-14 15:57:25 +000035#include "llvm/Analysis/ValueTracking.h"
Chris Lattner302ba6f2010-12-14 06:17:25 +000036#include "llvm/Support/CFG.h"
Evan Chengc3f507f2011-01-29 04:46:23 +000037#include "llvm/Support/CommandLine.h"
Chris Lattnere27db742010-12-17 06:20:15 +000038#include "llvm/Support/ConstantRange.h"
Chris Lattner302ba6f2010-12-14 06:17:25 +000039#include "llvm/Support/Debug.h"
Devang Pateld3a17882011-05-19 20:52:46 +000040#include "llvm/Support/NoFolder.h"
Chris Lattner302ba6f2010-12-14 06:17:25 +000041#include "llvm/Support/raw_ostream.h"
Micah Villmow3574eca2012-10-08 16:38:25 +000042#include "llvm/DataLayout.h"
Chandler Carruth06cb8ed2012-06-29 12:38:19 +000043#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Chris Lattner01d1ee32002-05-21 20:50:24 +000044#include <algorithm>
Chris Lattnerd52c2612004-02-24 07:23:58 +000045#include <set>
Chris Lattner698f96f2004-10-18 04:07:22 +000046#include <map>
Chris Lattnerf7703df2004-01-09 06:12:26 +000047using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000048
Peter Collingbourne57808b32011-04-29 18:47:38 +000049static cl::opt<unsigned>
50PHINodeFoldingThreshold("phi-node-folding-threshold", cl::Hidden, cl::init(1),
51 cl::desc("Control the amount of phi node folding to perform (default = 1)"));
52
Evan Chengc3f507f2011-01-29 04:46:23 +000053static cl::opt<bool>
54DupRet("simplifycfg-dup-ret", cl::Hidden, cl::init(false),
55 cl::desc("Duplicate return instructions into unconditional branches"));
56
Manman Ren554da1a2012-09-20 22:37:36 +000057static cl::opt<bool>
58SinkCommon("simplifycfg-sink-common", cl::Hidden, cl::init(true),
59 cl::desc("Sink common instructions down to the end block"));
60
Hans Wennborgd72271c2012-09-26 09:44:49 +000061STATISTIC(NumBitMaps, "Number of switch instructions turned into bitmaps");
Hans Wennborg50b7d702012-09-26 14:01:53 +000062STATISTIC(NumLookupTables, "Number of switch instructions turned into lookup tables");
Manman Ren554da1a2012-09-20 22:37:36 +000063STATISTIC(NumSinkCommons, "Number of common instructions sunk down to the end block");
Hans Wennborg50b7d702012-09-26 14:01:53 +000064STATISTIC(NumSpeculations, "Number of speculative executed instructions");
Evan Cheng502a4f52008-06-12 21:15:59 +000065
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +000066namespace {
Eric Christopherc723eb12012-07-02 23:22:21 +000067 /// ValueEqualityComparisonCase - Represents a case of a switch.
68 struct ValueEqualityComparisonCase {
69 ConstantInt *Value;
70 BasicBlock *Dest;
71
72 ValueEqualityComparisonCase(ConstantInt *Value, BasicBlock *Dest)
73 : Value(Value), Dest(Dest) {}
74
75 bool operator<(ValueEqualityComparisonCase RHS) const {
76 // Comparing pointers is ok as we only rely on the order for uniquing.
77 return Value < RHS.Value;
78 }
Benjamin Kramer8e13ded2012-10-14 11:15:42 +000079
80 bool operator==(BasicBlock *RHSDest) const { return Dest == RHSDest; }
Eric Christopherc723eb12012-07-02 23:22:21 +000081 };
82
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +000083class SimplifyCFGOpt {
Micah Villmow3574eca2012-10-08 16:38:25 +000084 const DataLayout *const TD;
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +000085
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +000086 Value *isValueEqualityComparison(TerminatorInst *TI);
87 BasicBlock *GetValueEqualityComparisonCases(TerminatorInst *TI,
Eric Christopherc723eb12012-07-02 23:22:21 +000088 std::vector<ValueEqualityComparisonCase> &Cases);
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +000089 bool SimplifyEqualityComparisonWithOnlyPredecessor(TerminatorInst *TI,
Devang Patel007349d2011-05-18 20:35:38 +000090 BasicBlock *Pred,
91 IRBuilder<> &Builder);
Devang Patelb55d9242011-05-18 20:53:17 +000092 bool FoldValueComparisonIntoPredecessors(TerminatorInst *TI,
93 IRBuilder<> &Builder);
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +000094
Devang Patel176ec402011-05-18 21:33:11 +000095 bool SimplifyReturn(ReturnInst *RI, IRBuilder<> &Builder);
Bill Wendlingaa5abe82012-02-06 21:16:41 +000096 bool SimplifyResume(ResumeInst *RI, IRBuilder<> &Builder);
Chris Lattner3d512132010-12-13 06:25:44 +000097 bool SimplifyUnreachable(UnreachableInst *UI);
Devang Patel007349d2011-05-18 20:35:38 +000098 bool SimplifySwitch(SwitchInst *SI, IRBuilder<> &Builder);
Chris Lattner3d512132010-12-13 06:25:44 +000099 bool SimplifyIndirectBr(IndirectBrInst *IBI);
Devang Patela23812c2011-05-18 18:28:48 +0000100 bool SimplifyUncondBranch(BranchInst *BI, IRBuilder <> &Builder);
Devang Patel007349d2011-05-18 20:35:38 +0000101 bool SimplifyCondBranch(BranchInst *BI, IRBuilder <>&Builder);
Chris Lattner3d512132010-12-13 06:25:44 +0000102
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000103public:
Micah Villmow3574eca2012-10-08 16:38:25 +0000104 explicit SimplifyCFGOpt(const DataLayout *td) : TD(td) {}
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000105 bool run(BasicBlock *BB);
106};
107}
108
Chris Lattner2bdcb562005-08-03 00:19:45 +0000109/// SafeToMergeTerminators - Return true if it is safe to merge these two
110/// terminator instructions together.
111///
112static bool SafeToMergeTerminators(TerminatorInst *SI1, TerminatorInst *SI2) {
113 if (SI1 == SI2) return false; // Can't merge with self!
Andrew Trick6b014382012-08-29 21:46:36 +0000114
Chris Lattner2bdcb562005-08-03 00:19:45 +0000115 // It is not safe to merge these two switch instructions if they have a common
116 // successor, and if that successor has a PHI node, and if *that* PHI node has
117 // conflicting incoming values from the two switch blocks.
118 BasicBlock *SI1BB = SI1->getParent();
119 BasicBlock *SI2BB = SI2->getParent();
Chris Lattnerc9951232007-04-02 01:44:59 +0000120 SmallPtrSet<BasicBlock*, 16> SI1Succs(succ_begin(SI1BB), succ_end(SI1BB));
Andrew Trick6b014382012-08-29 21:46:36 +0000121
Chris Lattner2bdcb562005-08-03 00:19:45 +0000122 for (succ_iterator I = succ_begin(SI2BB), E = succ_end(SI2BB); I != E; ++I)
123 if (SI1Succs.count(*I))
124 for (BasicBlock::iterator BBI = (*I)->begin();
125 isa<PHINode>(BBI); ++BBI) {
126 PHINode *PN = cast<PHINode>(BBI);
127 if (PN->getIncomingValueForBlock(SI1BB) !=
128 PN->getIncomingValueForBlock(SI2BB))
129 return false;
130 }
Andrew Trick6b014382012-08-29 21:46:36 +0000131
Chris Lattner2bdcb562005-08-03 00:19:45 +0000132 return true;
133}
134
Manman Renee28e0f2012-06-13 05:43:29 +0000135/// isProfitableToFoldUnconditional - Return true if it is safe and profitable
136/// to merge these two terminator instructions together, where SI1 is an
137/// unconditional branch. PhiNodes will store all PHI nodes in common
138/// successors.
139///
140static bool isProfitableToFoldUnconditional(BranchInst *SI1,
141 BranchInst *SI2,
Nick Lewyckyedb58422012-06-24 10:15:42 +0000142 Instruction *Cond,
Manman Renee28e0f2012-06-13 05:43:29 +0000143 SmallVectorImpl<PHINode*> &PhiNodes) {
144 if (SI1 == SI2) return false; // Can't merge with self!
145 assert(SI1->isUnconditional() && SI2->isConditional());
146
147 // We fold the unconditional branch if we can easily update all PHI nodes in
Andrew Trick6b014382012-08-29 21:46:36 +0000148 // common successors:
Manman Renee28e0f2012-06-13 05:43:29 +0000149 // 1> We have a constant incoming value for the conditional branch;
150 // 2> We have "Cond" as the incoming value for the unconditional branch;
151 // 3> SI2->getCondition() and Cond have same operands.
152 CmpInst *Ci2 = dyn_cast<CmpInst>(SI2->getCondition());
153 if (!Ci2) return false;
154 if (!(Cond->getOperand(0) == Ci2->getOperand(0) &&
155 Cond->getOperand(1) == Ci2->getOperand(1)) &&
156 !(Cond->getOperand(0) == Ci2->getOperand(1) &&
157 Cond->getOperand(1) == Ci2->getOperand(0)))
158 return false;
159
160 BasicBlock *SI1BB = SI1->getParent();
161 BasicBlock *SI2BB = SI2->getParent();
162 SmallPtrSet<BasicBlock*, 16> SI1Succs(succ_begin(SI1BB), succ_end(SI1BB));
163 for (succ_iterator I = succ_begin(SI2BB), E = succ_end(SI2BB); I != E; ++I)
164 if (SI1Succs.count(*I))
165 for (BasicBlock::iterator BBI = (*I)->begin();
166 isa<PHINode>(BBI); ++BBI) {
167 PHINode *PN = cast<PHINode>(BBI);
168 if (PN->getIncomingValueForBlock(SI1BB) != Cond ||
Nick Lewyckyedb58422012-06-24 10:15:42 +0000169 !isa<ConstantInt>(PN->getIncomingValueForBlock(SI2BB)))
Manman Renee28e0f2012-06-13 05:43:29 +0000170 return false;
171 PhiNodes.push_back(PN);
172 }
173 return true;
174}
175
Chris Lattner2bdcb562005-08-03 00:19:45 +0000176/// AddPredecessorToBlock - Update PHI nodes in Succ to indicate that there will
177/// now be entries in it from the 'NewPred' block. The values that will be
178/// flowing into the PHI nodes will be the same as those coming in from
179/// ExistPred, an existing predecessor of Succ.
180static void AddPredecessorToBlock(BasicBlock *Succ, BasicBlock *NewPred,
181 BasicBlock *ExistPred) {
Chris Lattner2bdcb562005-08-03 00:19:45 +0000182 if (!isa<PHINode>(Succ->begin())) return; // Quick exit if nothing to do
Andrew Trick6b014382012-08-29 21:46:36 +0000183
Chris Lattner093a4382008-07-13 22:23:11 +0000184 PHINode *PN;
185 for (BasicBlock::iterator I = Succ->begin();
186 (PN = dyn_cast<PHINode>(I)); ++I)
187 PN->addIncoming(PN->getIncomingValueForBlock(ExistPred), NewPred);
Chris Lattner2bdcb562005-08-03 00:19:45 +0000188}
189
Chris Lattner7e663482005-08-03 00:11:16 +0000190
Chris Lattner73c50a62010-12-14 07:00:00 +0000191/// GetIfCondition - Given a basic block (BB) with two predecessors (and at
192/// least one PHI node in it), check to see if the merge at this block is due
Chris Lattner723c66d2004-02-11 03:36:04 +0000193/// to an "if condition". If so, return the boolean condition that determines
194/// which entry into BB will be taken. Also, return by references the block
195/// that will be entered from if the condition is true, and the block that will
196/// be entered if the condition is false.
Misha Brukmanfd939082005-04-21 23:48:37 +0000197///
Chris Lattner995ba1b2010-12-14 07:15:21 +0000198/// This does no checking to see if the true/false blocks have large or unsavory
199/// instructions in them.
Chris Lattner73c50a62010-12-14 07:00:00 +0000200static Value *GetIfCondition(BasicBlock *BB, BasicBlock *&IfTrue,
201 BasicBlock *&IfFalse) {
202 PHINode *SomePHI = cast<PHINode>(BB->begin());
203 assert(SomePHI->getNumIncomingValues() == 2 &&
Chris Lattner723c66d2004-02-11 03:36:04 +0000204 "Function can only handle blocks with 2 predecessors!");
Chris Lattner73c50a62010-12-14 07:00:00 +0000205 BasicBlock *Pred1 = SomePHI->getIncomingBlock(0);
206 BasicBlock *Pred2 = SomePHI->getIncomingBlock(1);
Chris Lattner723c66d2004-02-11 03:36:04 +0000207
208 // We can only handle branches. Other control flow will be lowered to
209 // branches if possible anyway.
Chris Lattner995ba1b2010-12-14 07:15:21 +0000210 BranchInst *Pred1Br = dyn_cast<BranchInst>(Pred1->getTerminator());
211 BranchInst *Pred2Br = dyn_cast<BranchInst>(Pred2->getTerminator());
212 if (Pred1Br == 0 || Pred2Br == 0)
Chris Lattner723c66d2004-02-11 03:36:04 +0000213 return 0;
Chris Lattner723c66d2004-02-11 03:36:04 +0000214
215 // Eliminate code duplication by ensuring that Pred1Br is conditional if
216 // either are.
217 if (Pred2Br->isConditional()) {
218 // If both branches are conditional, we don't have an "if statement". In
219 // reality, we could transform this case, but since the condition will be
220 // required anyway, we stand no chance of eliminating it, so the xform is
221 // probably not profitable.
222 if (Pred1Br->isConditional())
223 return 0;
224
225 std::swap(Pred1, Pred2);
226 std::swap(Pred1Br, Pred2Br);
227 }
228
229 if (Pred1Br->isConditional()) {
Chris Lattner995ba1b2010-12-14 07:15:21 +0000230 // The only thing we have to watch out for here is to make sure that Pred2
231 // doesn't have incoming edges from other blocks. If it does, the condition
232 // doesn't dominate BB.
233 if (Pred2->getSinglePredecessor() == 0)
234 return 0;
Andrew Trick6b014382012-08-29 21:46:36 +0000235
Chris Lattner723c66d2004-02-11 03:36:04 +0000236 // If we found a conditional branch predecessor, make sure that it branches
237 // to BB and Pred2Br. If it doesn't, this isn't an "if statement".
238 if (Pred1Br->getSuccessor(0) == BB &&
239 Pred1Br->getSuccessor(1) == Pred2) {
240 IfTrue = Pred1;
241 IfFalse = Pred2;
242 } else if (Pred1Br->getSuccessor(0) == Pred2 &&
243 Pred1Br->getSuccessor(1) == BB) {
244 IfTrue = Pred2;
245 IfFalse = Pred1;
246 } else {
247 // We know that one arm of the conditional goes to BB, so the other must
248 // go somewhere unrelated, and this must not be an "if statement".
249 return 0;
250 }
251
Chris Lattner723c66d2004-02-11 03:36:04 +0000252 return Pred1Br->getCondition();
253 }
254
255 // Ok, if we got here, both predecessors end with an unconditional branch to
256 // BB. Don't panic! If both blocks only have a single (identical)
257 // predecessor, and THAT is a conditional branch, then we're all ok!
Chris Lattner995ba1b2010-12-14 07:15:21 +0000258 BasicBlock *CommonPred = Pred1->getSinglePredecessor();
259 if (CommonPred == 0 || CommonPred != Pred2->getSinglePredecessor())
Chris Lattner723c66d2004-02-11 03:36:04 +0000260 return 0;
261
262 // Otherwise, if this is a conditional branch, then we can use it!
Chris Lattner995ba1b2010-12-14 07:15:21 +0000263 BranchInst *BI = dyn_cast<BranchInst>(CommonPred->getTerminator());
264 if (BI == 0) return 0;
Andrew Trick6b014382012-08-29 21:46:36 +0000265
Chris Lattner995ba1b2010-12-14 07:15:21 +0000266 assert(BI->isConditional() && "Two successors but not conditional?");
267 if (BI->getSuccessor(0) == Pred1) {
268 IfTrue = Pred1;
269 IfFalse = Pred2;
270 } else {
271 IfTrue = Pred2;
272 IfFalse = Pred1;
Chris Lattner723c66d2004-02-11 03:36:04 +0000273 }
Chris Lattner995ba1b2010-12-14 07:15:21 +0000274 return BI->getCondition();
Chris Lattner723c66d2004-02-11 03:36:04 +0000275}
276
Dan Gohman3b205172012-01-05 23:58:56 +0000277/// ComputeSpeculuationCost - Compute an abstract "cost" of speculating the
278/// given instruction, which is assumed to be safe to speculate. 1 means
279/// cheap, 2 means less cheap, and UINT_MAX means prohibitively expensive.
280static unsigned ComputeSpeculationCost(const User *I) {
281 assert(isSafeToSpeculativelyExecute(I) &&
282 "Instruction is not safe to speculatively execute!");
283 switch (Operator::getOpcode(I)) {
284 default:
285 // In doubt, be conservative.
286 return UINT_MAX;
287 case Instruction::GetElementPtr:
288 // GEPs are cheap if all indices are constant.
289 if (!cast<GEPOperator>(I)->hasAllConstantIndices())
290 return UINT_MAX;
291 return 1;
292 case Instruction::Load:
293 case Instruction::Add:
294 case Instruction::Sub:
295 case Instruction::And:
296 case Instruction::Or:
297 case Instruction::Xor:
298 case Instruction::Shl:
299 case Instruction::LShr:
300 case Instruction::AShr:
301 case Instruction::ICmp:
302 case Instruction::Trunc:
303 case Instruction::ZExt:
304 case Instruction::SExt:
305 return 1; // These are all cheap.
306
307 case Instruction::Call:
308 case Instruction::Select:
309 return 2;
310 }
311}
312
Bill Wendling5049fa62009-01-19 23:43:56 +0000313/// DominatesMergePoint - If we have a merge point of an "if condition" as
314/// accepted above, return true if the specified value dominates the block. We
315/// don't handle the true generality of domination here, just a special case
316/// which works well enough for us.
317///
318/// If AggressiveInsts is non-null, and if V does not dominate BB, we check to
Peter Collingbournef15907f2011-04-29 18:47:31 +0000319/// see if V (which must be an instruction) and its recursive operands
320/// that do not dominate BB have a combined cost lower than CostRemaining and
321/// are non-trapping. If both are true, the instruction is inserted into the
322/// set and true is returned.
323///
324/// The cost for most non-trapping instructions is defined as 1 except for
325/// Select whose cost is 2.
326///
327/// After this function returns, CostRemaining is decreased by the cost of
328/// V plus its non-dominating operands. If that cost is greater than
329/// CostRemaining, false is returned and CostRemaining is undefined.
Chris Lattner9c078662004-10-14 05:13:36 +0000330static bool DominatesMergePoint(Value *V, BasicBlock *BB,
Peter Collingbournef15907f2011-04-29 18:47:31 +0000331 SmallPtrSet<Instruction*, 4> *AggressiveInsts,
332 unsigned &CostRemaining) {
Chris Lattner570751c2004-04-09 22:50:22 +0000333 Instruction *I = dyn_cast<Instruction>(V);
Chris Lattnerb74b1812006-10-20 00:42:07 +0000334 if (!I) {
335 // Non-instructions all dominate instructions, but not all constantexprs
336 // can be executed unconditionally.
337 if (ConstantExpr *C = dyn_cast<ConstantExpr>(V))
338 if (C->canTrap())
339 return false;
340 return true;
341 }
Chris Lattner570751c2004-04-09 22:50:22 +0000342 BasicBlock *PBB = I->getParent();
Chris Lattner723c66d2004-02-11 03:36:04 +0000343
Chris Lattnerda895d62005-02-27 06:18:25 +0000344 // We don't want to allow weird loops that might have the "if condition" in
Chris Lattner570751c2004-04-09 22:50:22 +0000345 // the bottom of this block.
346 if (PBB == BB) return false;
Chris Lattner723c66d2004-02-11 03:36:04 +0000347
Chris Lattner570751c2004-04-09 22:50:22 +0000348 // If this instruction is defined in a block that contains an unconditional
349 // branch to BB, then it must be in the 'conditional' part of the "if
Chris Lattner44da7ca2010-12-14 07:41:39 +0000350 // statement". If not, it definitely dominates the region.
351 BranchInst *BI = dyn_cast<BranchInst>(PBB->getTerminator());
352 if (BI == 0 || BI->isConditional() || BI->getSuccessor(0) != BB)
353 return true;
Eli Friedman0b79a772009-07-17 04:28:42 +0000354
Chris Lattner44da7ca2010-12-14 07:41:39 +0000355 // If we aren't allowing aggressive promotion anymore, then don't consider
356 // instructions in the 'if region'.
357 if (AggressiveInsts == 0) return false;
Andrew Trick6b014382012-08-29 21:46:36 +0000358
Peter Collingbournef15907f2011-04-29 18:47:31 +0000359 // If we have seen this instruction before, don't count it again.
360 if (AggressiveInsts->count(I)) return true;
361
Chris Lattner44da7ca2010-12-14 07:41:39 +0000362 // Okay, it looks like the instruction IS in the "condition". Check to
363 // see if it's a cheap instruction to unconditionally compute, and if it
364 // only uses stuff defined outside of the condition. If so, hoist it out.
Dan Gohmanf0426602011-12-14 23:49:11 +0000365 if (!isSafeToSpeculativelyExecute(I))
Chris Lattner44da7ca2010-12-14 07:41:39 +0000366 return false;
Misha Brukmanfd939082005-04-21 23:48:37 +0000367
Dan Gohman3b205172012-01-05 23:58:56 +0000368 unsigned Cost = ComputeSpeculationCost(I);
Chris Lattner570751c2004-04-09 22:50:22 +0000369
Peter Collingbournef15907f2011-04-29 18:47:31 +0000370 if (Cost > CostRemaining)
371 return false;
372
373 CostRemaining -= Cost;
374
375 // Okay, we can only really hoist these out if their operands do
376 // not take us over the cost threshold.
Chris Lattner44da7ca2010-12-14 07:41:39 +0000377 for (User::op_iterator i = I->op_begin(), e = I->op_end(); i != e; ++i)
Peter Collingbournef15907f2011-04-29 18:47:31 +0000378 if (!DominatesMergePoint(*i, BB, AggressiveInsts, CostRemaining))
Chris Lattner44da7ca2010-12-14 07:41:39 +0000379 return false;
380 // Okay, it's safe to do this! Remember this instruction.
381 AggressiveInsts->insert(I);
Chris Lattner723c66d2004-02-11 03:36:04 +0000382 return true;
383}
Chris Lattner01d1ee32002-05-21 20:50:24 +0000384
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000385/// GetConstantInt - Extract ConstantInt from value, looking through IntToPtr
386/// and PointerNullValue. Return NULL if value is not a constant int.
Micah Villmow3574eca2012-10-08 16:38:25 +0000387static ConstantInt *GetConstantInt(Value *V, const DataLayout *TD) {
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000388 // Normal constant int.
389 ConstantInt *CI = dyn_cast<ConstantInt>(V);
Duncan Sands1df98592010-02-16 11:11:14 +0000390 if (CI || !TD || !isa<Constant>(V) || !V->getType()->isPointerTy())
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000391 return CI;
392
393 // This is some kind of pointer constant. Turn it into a pointer-sized
394 // ConstantInt if possible.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000395 IntegerType *PtrTy = TD->getIntPtrType(V->getContext());
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000396
397 // Null pointer means 0, see SelectionDAGBuilder::getValue(const Value*).
398 if (isa<ConstantPointerNull>(V))
399 return ConstantInt::get(PtrTy, 0);
400
401 // IntToPtr const int.
402 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V))
403 if (CE->getOpcode() == Instruction::IntToPtr)
404 if (ConstantInt *CI = dyn_cast<ConstantInt>(CE->getOperand(0))) {
405 // The constant is very likely to have the right type already.
406 if (CI->getType() == PtrTy)
407 return CI;
408 else
409 return cast<ConstantInt>
410 (ConstantExpr::getIntegerCast(CI, PtrTy, /*isSigned=*/false));
411 }
412 return 0;
413}
414
Chris Lattner0aa749b2010-12-13 04:26:26 +0000415/// GatherConstantCompares - Given a potentially 'or'd or 'and'd together
416/// collection of icmp eq/ne instructions that compare a value against a
417/// constant, return the value being compared, and stick the constant into the
418/// Values vector.
Chris Lattner28acc132010-12-13 03:30:12 +0000419static Value *
Chris Lattner0aa749b2010-12-13 04:26:26 +0000420GatherConstantCompares(Value *V, std::vector<ConstantInt*> &Vals, Value *&Extra,
Micah Villmow3574eca2012-10-08 16:38:25 +0000421 const DataLayout *TD, bool isEQ, unsigned &UsedICmps) {
Chris Lattner0aa749b2010-12-13 04:26:26 +0000422 Instruction *I = dyn_cast<Instruction>(V);
423 if (I == 0) return 0;
Andrew Trick6b014382012-08-29 21:46:36 +0000424
Chris Lattner7312a222010-12-13 04:50:38 +0000425 // If this is an icmp against a constant, handle this as one of the cases.
Chris Lattner0aa749b2010-12-13 04:26:26 +0000426 if (ICmpInst *ICI = dyn_cast<ICmpInst>(I)) {
Chris Lattnere27db742010-12-17 06:20:15 +0000427 if (ConstantInt *C = GetConstantInt(I->getOperand(1), TD)) {
428 if (ICI->getPredicate() == (isEQ ? ICmpInst::ICMP_EQ:ICmpInst::ICMP_NE)) {
Benjamin Kramer33828bc2011-02-07 22:37:28 +0000429 UsedICmps++;
Chris Lattner0aa749b2010-12-13 04:26:26 +0000430 Vals.push_back(C);
431 return I->getOperand(0);
432 }
Andrew Trick6b014382012-08-29 21:46:36 +0000433
Chris Lattnere27db742010-12-17 06:20:15 +0000434 // If we have "x ult 3" comparison, for example, then we can add 0,1,2 to
435 // the set.
436 ConstantRange Span =
Chris Lattnera37029c2010-12-18 20:22:49 +0000437 ConstantRange::makeICmpRegion(ICI->getPredicate(), C->getValue());
Andrew Trick6b014382012-08-29 21:46:36 +0000438
Chris Lattnere27db742010-12-17 06:20:15 +0000439 // If this is an and/!= check then we want to optimize "x ugt 2" into
440 // x != 0 && x != 1.
441 if (!isEQ)
442 Span = Span.inverse();
Andrew Trick6b014382012-08-29 21:46:36 +0000443
Chris Lattnere27db742010-12-17 06:20:15 +0000444 // If there are a ton of values, we don't want to make a ginormous switch.
Nick Lewyckyf460bf82012-01-19 18:19:42 +0000445 if (Span.getSetSize().ugt(8) || Span.isEmptySet())
Chris Lattnere27db742010-12-17 06:20:15 +0000446 return 0;
Andrew Trick6b014382012-08-29 21:46:36 +0000447
Chris Lattnere27db742010-12-17 06:20:15 +0000448 for (APInt Tmp = Span.getLower(); Tmp != Span.getUpper(); ++Tmp)
449 Vals.push_back(ConstantInt::get(V->getContext(), Tmp));
Benjamin Kramer33828bc2011-02-07 22:37:28 +0000450 UsedICmps++;
Chris Lattnere27db742010-12-17 06:20:15 +0000451 return I->getOperand(0);
452 }
Chris Lattner662269d2010-12-13 04:18:32 +0000453 return 0;
454 }
Andrew Trick6b014382012-08-29 21:46:36 +0000455
Chris Lattner7312a222010-12-13 04:50:38 +0000456 // Otherwise, we can only handle an | or &, depending on isEQ.
Chris Lattner0aa749b2010-12-13 04:26:26 +0000457 if (I->getOpcode() != (isEQ ? Instruction::Or : Instruction::And))
Chris Lattner662269d2010-12-13 04:18:32 +0000458 return 0;
Andrew Trick6b014382012-08-29 21:46:36 +0000459
Chris Lattner7312a222010-12-13 04:50:38 +0000460 unsigned NumValsBeforeLHS = Vals.size();
Benjamin Kramer33828bc2011-02-07 22:37:28 +0000461 unsigned UsedICmpsBeforeLHS = UsedICmps;
Chris Lattner0aa749b2010-12-13 04:26:26 +0000462 if (Value *LHS = GatherConstantCompares(I->getOperand(0), Vals, Extra, TD,
Benjamin Kramer33828bc2011-02-07 22:37:28 +0000463 isEQ, UsedICmps)) {
Chris Lattner7312a222010-12-13 04:50:38 +0000464 unsigned NumVals = Vals.size();
Benjamin Kramer33828bc2011-02-07 22:37:28 +0000465 unsigned UsedICmpsBeforeRHS = UsedICmps;
Chris Lattner0aa749b2010-12-13 04:26:26 +0000466 if (Value *RHS = GatherConstantCompares(I->getOperand(1), Vals, Extra, TD,
Benjamin Kramer33828bc2011-02-07 22:37:28 +0000467 isEQ, UsedICmps)) {
Chris Lattner0aa749b2010-12-13 04:26:26 +0000468 if (LHS == RHS)
469 return LHS;
Chris Lattner92407e52010-12-13 07:41:29 +0000470 Vals.resize(NumVals);
Benjamin Kramer33828bc2011-02-07 22:37:28 +0000471 UsedICmps = UsedICmpsBeforeRHS;
Chris Lattner0aa749b2010-12-13 04:26:26 +0000472 }
Chris Lattner7312a222010-12-13 04:50:38 +0000473
474 // The RHS of the or/and can't be folded in and we haven't used "Extra" yet,
475 // set it and return success.
476 if (Extra == 0 || Extra == I->getOperand(1)) {
477 Extra = I->getOperand(1);
478 return LHS;
479 }
Andrew Trick6b014382012-08-29 21:46:36 +0000480
Chris Lattner7312a222010-12-13 04:50:38 +0000481 Vals.resize(NumValsBeforeLHS);
Benjamin Kramer33828bc2011-02-07 22:37:28 +0000482 UsedICmps = UsedICmpsBeforeLHS;
Chris Lattner7312a222010-12-13 04:50:38 +0000483 return 0;
Anton Korobeynikov07e6e562008-02-20 11:26:25 +0000484 }
Andrew Trick6b014382012-08-29 21:46:36 +0000485
Chris Lattner7312a222010-12-13 04:50:38 +0000486 // If the LHS can't be folded in, but Extra is available and RHS can, try to
487 // use LHS as Extra.
488 if (Extra == 0 || Extra == I->getOperand(0)) {
Chris Lattner92407e52010-12-13 07:41:29 +0000489 Value *OldExtra = Extra;
Chris Lattner7312a222010-12-13 04:50:38 +0000490 Extra = I->getOperand(0);
491 if (Value *RHS = GatherConstantCompares(I->getOperand(1), Vals, Extra, TD,
Benjamin Kramer33828bc2011-02-07 22:37:28 +0000492 isEQ, UsedICmps))
Chris Lattner7312a222010-12-13 04:50:38 +0000493 return RHS;
Chris Lattner92407e52010-12-13 07:41:29 +0000494 assert(Vals.size() == NumValsBeforeLHS);
495 Extra = OldExtra;
Chris Lattner7312a222010-12-13 04:50:38 +0000496 }
Andrew Trick6b014382012-08-29 21:46:36 +0000497
Chris Lattner0d560082004-02-24 05:38:11 +0000498 return 0;
499}
Nick Lewycky9d523102011-12-26 20:37:40 +0000500
Eli Friedman080efb82008-12-16 20:54:32 +0000501static void EraseTerminatorInstAndDCECond(TerminatorInst *TI) {
Nick Lewycky9d523102011-12-26 20:37:40 +0000502 Instruction *Cond = 0;
Eli Friedman080efb82008-12-16 20:54:32 +0000503 if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
504 Cond = dyn_cast<Instruction>(SI->getCondition());
505 } else if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
506 if (BI->isConditional())
507 Cond = dyn_cast<Instruction>(BI->getCondition());
Frits van Bommel7ac40c32010-12-05 18:29:03 +0000508 } else if (IndirectBrInst *IBI = dyn_cast<IndirectBrInst>(TI)) {
509 Cond = dyn_cast<Instruction>(IBI->getAddress());
Eli Friedman080efb82008-12-16 20:54:32 +0000510 }
511
512 TI->eraseFromParent();
513 if (Cond) RecursivelyDeleteTriviallyDeadInstructions(Cond);
514}
515
Chris Lattner9fd49552008-11-27 23:25:44 +0000516/// isValueEqualityComparison - Return true if the specified terminator checks
517/// to see if a value is equal to constant integer value.
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000518Value *SimplifyCFGOpt::isValueEqualityComparison(TerminatorInst *TI) {
519 Value *CV = 0;
Chris Lattner4bebf082004-03-16 19:45:22 +0000520 if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
521 // Do not permit merging of large switch instructions into their
522 // predecessors unless there is only one predecessor.
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000523 if (SI->getNumSuccessors()*std::distance(pred_begin(SI->getParent()),
524 pred_end(SI->getParent())) <= 128)
525 CV = SI->getCondition();
526 } else if (BranchInst *BI = dyn_cast<BranchInst>(TI))
Chris Lattner542f1492004-02-28 21:28:10 +0000527 if (BI->isConditional() && BI->getCondition()->hasOneUse())
Reid Spencere4d87aa2006-12-23 06:05:41 +0000528 if (ICmpInst *ICI = dyn_cast<ICmpInst>(BI->getCondition()))
529 if ((ICI->getPredicate() == ICmpInst::ICMP_EQ ||
530 ICI->getPredicate() == ICmpInst::ICMP_NE) &&
Chris Lattner28acc132010-12-13 03:30:12 +0000531 GetConstantInt(ICI->getOperand(1), TD))
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000532 CV = ICI->getOperand(0);
533
534 // Unwrap any lossless ptrtoint cast.
535 if (TD && CV && CV->getType() == TD->getIntPtrType(CV->getContext()))
536 if (PtrToIntInst *PTII = dyn_cast<PtrToIntInst>(CV))
537 CV = PTII->getOperand(0);
538 return CV;
Chris Lattner542f1492004-02-28 21:28:10 +0000539}
540
Bill Wendling5049fa62009-01-19 23:43:56 +0000541/// GetValueEqualityComparisonCases - Given a value comparison instruction,
542/// decode all of the 'cases' that it represents and return the 'default' block.
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000543BasicBlock *SimplifyCFGOpt::
Misha Brukmanfd939082005-04-21 23:48:37 +0000544GetValueEqualityComparisonCases(TerminatorInst *TI,
Eric Christopherc723eb12012-07-02 23:22:21 +0000545 std::vector<ValueEqualityComparisonCase>
546 &Cases) {
Chris Lattner542f1492004-02-28 21:28:10 +0000547 if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
Eric Christopherc723eb12012-07-02 23:22:21 +0000548 Cases.reserve(SI->getNumCases());
549 for (SwitchInst::CaseIt i = SI->case_begin(), e = SI->case_end(); i != e; ++i)
550 Cases.push_back(ValueEqualityComparisonCase(i.getCaseValue(),
551 i.getCaseSuccessor()));
Chris Lattner542f1492004-02-28 21:28:10 +0000552 return SI->getDefaultDest();
553 }
Eric Christopherc723eb12012-07-02 23:22:21 +0000554
Chris Lattner542f1492004-02-28 21:28:10 +0000555 BranchInst *BI = cast<BranchInst>(TI);
Reid Spencere4d87aa2006-12-23 06:05:41 +0000556 ICmpInst *ICI = cast<ICmpInst>(BI->getCondition());
Eric Christopherc723eb12012-07-02 23:22:21 +0000557 BasicBlock *Succ = BI->getSuccessor(ICI->getPredicate() == ICmpInst::ICMP_NE);
558 Cases.push_back(ValueEqualityComparisonCase(GetConstantInt(ICI->getOperand(1),
559 TD),
560 Succ));
Reid Spencere4d87aa2006-12-23 06:05:41 +0000561 return BI->getSuccessor(ICI->getPredicate() == ICmpInst::ICMP_EQ);
Chris Lattner542f1492004-02-28 21:28:10 +0000562}
563
Eric Christopherc723eb12012-07-02 23:22:21 +0000564
565/// EliminateBlockCases - Given a vector of bb/value pairs, remove any entries
566/// in the list that match the specified block.
567static void EliminateBlockCases(BasicBlock *BB,
568 std::vector<ValueEqualityComparisonCase> &Cases) {
Benjamin Kramer8e13ded2012-10-14 11:15:42 +0000569 Cases.erase(std::remove(Cases.begin(), Cases.end(), BB), Cases.end());
Eric Christopherc723eb12012-07-02 23:22:21 +0000570}
571
572/// ValuesOverlap - Return true if there are any keys in C1 that exist in C2 as
573/// well.
574static bool
575ValuesOverlap(std::vector<ValueEqualityComparisonCase> &C1,
576 std::vector<ValueEqualityComparisonCase > &C2) {
577 std::vector<ValueEqualityComparisonCase> *V1 = &C1, *V2 = &C2;
578
579 // Make V1 be smaller than V2.
580 if (V1->size() > V2->size())
581 std::swap(V1, V2);
582
583 if (V1->size() == 0) return false;
584 if (V1->size() == 1) {
585 // Just scan V2.
586 ConstantInt *TheVal = (*V1)[0].Value;
587 for (unsigned i = 0, e = V2->size(); i != e; ++i)
588 if (TheVal == (*V2)[i].Value)
589 return true;
590 }
591
592 // Otherwise, just sort both lists and compare element by element.
593 array_pod_sort(V1->begin(), V1->end());
594 array_pod_sort(V2->begin(), V2->end());
595 unsigned i1 = 0, i2 = 0, e1 = V1->size(), e2 = V2->size();
596 while (i1 != e1 && i2 != e2) {
597 if ((*V1)[i1].Value == (*V2)[i2].Value)
598 return true;
599 if ((*V1)[i1].Value < (*V2)[i2].Value)
600 ++i1;
601 else
602 ++i2;
603 }
604 return false;
605}
606
Bill Wendling5049fa62009-01-19 23:43:56 +0000607/// SimplifyEqualityComparisonWithOnlyPredecessor - If TI is known to be a
608/// terminator instruction and its block is known to only have a single
609/// predecessor block, check to see if that predecessor is also a value
610/// comparison with the same value, and if that comparison determines the
611/// outcome of this comparison. If so, simplify TI. This does a very limited
612/// form of jump threading.
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000613bool SimplifyCFGOpt::
614SimplifyEqualityComparisonWithOnlyPredecessor(TerminatorInst *TI,
Devang Patel007349d2011-05-18 20:35:38 +0000615 BasicBlock *Pred,
616 IRBuilder<> &Builder) {
Chris Lattner623369a2005-02-24 06:17:52 +0000617 Value *PredVal = isValueEqualityComparison(Pred->getTerminator());
618 if (!PredVal) return false; // Not a value comparison in predecessor.
619
620 Value *ThisVal = isValueEqualityComparison(TI);
621 assert(ThisVal && "This isn't a value comparison!!");
622 if (ThisVal != PredVal) return false; // Different predicates.
623
Andrew Trickb1b97832012-08-29 21:46:38 +0000624 // TODO: Preserve branch weight metadata, similarly to how
625 // FoldValueComparisonIntoPredecessors preserves it.
626
Chris Lattner623369a2005-02-24 06:17:52 +0000627 // Find out information about when control will move from Pred to TI's block.
Eric Christopherc723eb12012-07-02 23:22:21 +0000628 std::vector<ValueEqualityComparisonCase> PredCases;
Chris Lattner623369a2005-02-24 06:17:52 +0000629 BasicBlock *PredDef = GetValueEqualityComparisonCases(Pred->getTerminator(),
630 PredCases);
Eric Christopherc723eb12012-07-02 23:22:21 +0000631 EliminateBlockCases(PredDef, PredCases); // Remove default from cases.
Misha Brukmanfd939082005-04-21 23:48:37 +0000632
Chris Lattner623369a2005-02-24 06:17:52 +0000633 // Find information about how control leaves this block.
Eric Christopherc723eb12012-07-02 23:22:21 +0000634 std::vector<ValueEqualityComparisonCase> ThisCases;
Chris Lattner623369a2005-02-24 06:17:52 +0000635 BasicBlock *ThisDef = GetValueEqualityComparisonCases(TI, ThisCases);
Eric Christopherc723eb12012-07-02 23:22:21 +0000636 EliminateBlockCases(ThisDef, ThisCases); // Remove default from cases.
Chris Lattner623369a2005-02-24 06:17:52 +0000637
638 // If TI's block is the default block from Pred's comparison, potentially
639 // simplify TI based on this knowledge.
640 if (PredDef == TI->getParent()) {
641 // If we are here, we know that the value is none of those cases listed in
642 // PredCases. If there are any cases in ThisCases that are in PredCases, we
643 // can simplify TI.
Eric Christopherc723eb12012-07-02 23:22:21 +0000644 if (!ValuesOverlap(PredCases, ThisCases))
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000645 return false;
Andrew Trick6b014382012-08-29 21:46:36 +0000646
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000647 if (isa<BranchInst>(TI)) {
648 // Okay, one of the successors of this condbr is dead. Convert it to a
649 // uncond br.
650 assert(ThisCases.size() == 1 && "Branch can only have one case!");
651 // Insert the new branch.
Devang Patel007349d2011-05-18 20:35:38 +0000652 Instruction *NI = Builder.CreateBr(ThisDef);
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000653 (void) NI;
Chris Lattner623369a2005-02-24 06:17:52 +0000654
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000655 // Remove PHI node entries for the dead edge.
Eric Christopherc723eb12012-07-02 23:22:21 +0000656 ThisCases[0].Dest->removePredecessor(TI->getParent());
Chris Lattner623369a2005-02-24 06:17:52 +0000657
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000658 DEBUG(dbgs() << "Threading pred instr: " << *Pred->getTerminator()
659 << "Through successor TI: " << *TI << "Leaving: " << *NI << "\n");
Chris Lattner623369a2005-02-24 06:17:52 +0000660
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000661 EraseTerminatorInstAndDCECond(TI);
662 return true;
Chris Lattner623369a2005-02-24 06:17:52 +0000663 }
Andrew Trick6b014382012-08-29 21:46:36 +0000664
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000665 SwitchInst *SI = cast<SwitchInst>(TI);
666 // Okay, TI has cases that are statically dead, prune them away.
Eric Christopherc723eb12012-07-02 23:22:21 +0000667 SmallPtrSet<Constant*, 16> DeadCases;
668 for (unsigned i = 0, e = PredCases.size(); i != e; ++i)
669 DeadCases.insert(PredCases[i].Value);
Chris Lattner623369a2005-02-24 06:17:52 +0000670
David Greene89d6fd32010-01-05 01:26:52 +0000671 DEBUG(dbgs() << "Threading pred instr: " << *Pred->getTerminator()
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000672 << "Through successor TI: " << *TI);
Chris Lattner623369a2005-02-24 06:17:52 +0000673
Manman Renad289072012-09-14 21:53:06 +0000674 // Collect branch weights into a vector.
675 SmallVector<uint32_t, 8> Weights;
676 MDNode* MD = SI->getMetadata(LLVMContext::MD_prof);
677 bool HasWeight = MD && (MD->getNumOperands() == 2 + SI->getNumCases());
678 if (HasWeight)
679 for (unsigned MD_i = 1, MD_e = MD->getNumOperands(); MD_i < MD_e;
680 ++MD_i) {
681 ConstantInt* CI = dyn_cast<ConstantInt>(MD->getOperand(MD_i));
682 assert(CI);
683 Weights.push_back(CI->getValue().getZExtValue());
684 }
Eric Christopherc723eb12012-07-02 23:22:21 +0000685 for (SwitchInst::CaseIt i = SI->case_end(), e = SI->case_begin(); i != e;) {
686 --i;
687 if (DeadCases.count(i.getCaseValue())) {
Manman Renad289072012-09-14 21:53:06 +0000688 if (HasWeight) {
689 std::swap(Weights[i.getCaseIndex()+1], Weights.back());
690 Weights.pop_back();
691 }
Eric Christopherc723eb12012-07-02 23:22:21 +0000692 i.getCaseSuccessor()->removePredecessor(TI->getParent());
693 SI->removeCase(i);
694 }
695 }
Manman Rend61d1eb2012-10-11 22:28:34 +0000696 if (HasWeight && Weights.size() >= 2)
Manman Renad289072012-09-14 21:53:06 +0000697 SI->setMetadata(LLVMContext::MD_prof,
698 MDBuilder(SI->getParent()->getContext()).
699 createBranchWeights(Weights));
Eric Christopherc723eb12012-07-02 23:22:21 +0000700
701 DEBUG(dbgs() << "Leaving: " << *TI << "\n");
Chris Lattner623369a2005-02-24 06:17:52 +0000702 return true;
703 }
Andrew Trick6b014382012-08-29 21:46:36 +0000704
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000705 // Otherwise, TI's block must correspond to some matched value. Find out
706 // which value (or set of values) this is.
Eric Christopherc723eb12012-07-02 23:22:21 +0000707 ConstantInt *TIV = 0;
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000708 BasicBlock *TIBB = TI->getParent();
Eric Christopherc723eb12012-07-02 23:22:21 +0000709 for (unsigned i = 0, e = PredCases.size(); i != e; ++i)
710 if (PredCases[i].Dest == TIBB) {
711 if (TIV != 0)
712 return false; // Cannot handle multiple values coming to this block.
713 TIV = PredCases[i].Value;
714 }
715 assert(TIV && "No edge from pred to succ?");
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000716
717 // Okay, we found the one constant that our value can be if we get into TI's
718 // BB. Find out which successor will unconditionally be branched to.
Eric Christopherc723eb12012-07-02 23:22:21 +0000719 BasicBlock *TheRealDest = 0;
720 for (unsigned i = 0, e = ThisCases.size(); i != e; ++i)
721 if (ThisCases[i].Value == TIV) {
722 TheRealDest = ThisCases[i].Dest;
723 break;
724 }
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000725
726 // If not handled by any explicit cases, it is handled by the default case.
727 if (TheRealDest == 0) TheRealDest = ThisDef;
728
729 // Remove PHI node entries for dead edges.
730 BasicBlock *CheckEdge = TheRealDest;
731 for (succ_iterator SI = succ_begin(TIBB), e = succ_end(TIBB); SI != e; ++SI)
732 if (*SI != CheckEdge)
733 (*SI)->removePredecessor(TIBB);
734 else
735 CheckEdge = 0;
736
737 // Insert the new branch.
Devang Patel007349d2011-05-18 20:35:38 +0000738 Instruction *NI = Builder.CreateBr(TheRealDest);
Chris Lattner9a2b72a2010-12-13 01:47:07 +0000739 (void) NI;
740
741 DEBUG(dbgs() << "Threading pred instr: " << *Pred->getTerminator()
742 << "Through successor TI: " << *TI << "Leaving: " << *NI << "\n");
743
744 EraseTerminatorInstAndDCECond(TI);
745 return true;
Chris Lattner623369a2005-02-24 06:17:52 +0000746}
747
Dale Johannesenc81f5442009-03-12 21:01:11 +0000748namespace {
749 /// ConstantIntOrdering - This class implements a stable ordering of constant
750 /// integers that does not depend on their address. This is important for
751 /// applications that sort ConstantInt's to ensure uniqueness.
752 struct ConstantIntOrdering {
753 bool operator()(const ConstantInt *LHS, const ConstantInt *RHS) const {
754 return LHS->getValue().ult(RHS->getValue());
755 }
756 };
757}
Dale Johannesena9537cf2009-03-12 01:00:26 +0000758
Chris Lattner6d4d21e2010-12-13 02:00:58 +0000759static int ConstantIntSortPredicate(const void *P1, const void *P2) {
Roman Divacky59324292012-09-05 22:26:57 +0000760 const ConstantInt *LHS = *(const ConstantInt*const*)P1;
761 const ConstantInt *RHS = *(const ConstantInt*const*)P2;
Chris Lattnerba3c8152010-12-15 04:52:41 +0000762 if (LHS->getValue().ult(RHS->getValue()))
763 return 1;
764 if (LHS->getValue() == RHS->getValue())
765 return 0;
766 return -1;
Chris Lattner6d4d21e2010-12-13 02:00:58 +0000767}
768
Andrew Trickb1b97832012-08-29 21:46:38 +0000769static inline bool HasBranchWeights(const Instruction* I) {
770 MDNode* ProfMD = I->getMetadata(LLVMContext::MD_prof);
771 if (ProfMD && ProfMD->getOperand(0))
772 if (MDString* MDS = dyn_cast<MDString>(ProfMD->getOperand(0)))
773 return MDS->getString().equals("branch_weights");
774
775 return false;
776}
777
Manman Ren020aba02012-09-11 17:43:35 +0000778/// Get Weights of a given TerminatorInst, the default weight is at the front
779/// of the vector. If TI is a conditional eq, we need to swap the branch-weight
780/// metadata.
781static void GetBranchWeights(TerminatorInst *TI,
782 SmallVectorImpl<uint64_t> &Weights) {
783 MDNode* MD = TI->getMetadata(LLVMContext::MD_prof);
784 assert(MD);
785 for (unsigned i = 1, e = MD->getNumOperands(); i < e; ++i) {
786 ConstantInt* CI = dyn_cast<ConstantInt>(MD->getOperand(i));
Andrew Trickb1b97832012-08-29 21:46:38 +0000787 assert(CI);
Manman Ren020aba02012-09-11 17:43:35 +0000788 Weights.push_back(CI->getValue().getZExtValue());
Andrew Trickb1b97832012-08-29 21:46:38 +0000789 }
790
Manman Ren020aba02012-09-11 17:43:35 +0000791 // If TI is a conditional eq, the default case is the false case,
792 // and the corresponding branch-weight data is at index 2. We swap the
793 // default weight to be the first entry.
794 if (BranchInst* BI = dyn_cast<BranchInst>(TI)) {
795 assert(Weights.size() == 2);
796 ICmpInst *ICI = cast<ICmpInst>(BI->getCondition());
797 if (ICI->getPredicate() == ICmpInst::ICMP_EQ)
798 std::swap(Weights.front(), Weights.back());
Andrew Trickb1b97832012-08-29 21:46:38 +0000799 }
800}
801
802/// Sees if any of the weights are too big for a uint32_t, and halves all the
803/// weights if any are.
804static void FitWeights(MutableArrayRef<uint64_t> Weights) {
805 bool Halve = false;
806 for (unsigned i = 0; i < Weights.size(); ++i)
807 if (Weights[i] > UINT_MAX) {
808 Halve = true;
809 break;
810 }
811
812 if (! Halve)
813 return;
814
815 for (unsigned i = 0; i < Weights.size(); ++i)
816 Weights[i] /= 2;
817}
818
Bill Wendling5049fa62009-01-19 23:43:56 +0000819/// FoldValueComparisonIntoPredecessors - The specified terminator is a value
820/// equality comparison instruction (either a switch or a branch on "X == c").
821/// See if any of the predecessors of the terminator block are value comparisons
822/// on the same value. If so, and if safe to do so, fold them together.
Devang Patelb55d9242011-05-18 20:53:17 +0000823bool SimplifyCFGOpt::FoldValueComparisonIntoPredecessors(TerminatorInst *TI,
824 IRBuilder<> &Builder) {
Chris Lattner542f1492004-02-28 21:28:10 +0000825 BasicBlock *BB = TI->getParent();
826 Value *CV = isValueEqualityComparison(TI); // CondVal
827 assert(CV && "Not a comparison?");
828 bool Changed = false;
829
Chris Lattner82442432008-02-18 07:42:56 +0000830 SmallVector<BasicBlock*, 16> Preds(pred_begin(BB), pred_end(BB));
Chris Lattner542f1492004-02-28 21:28:10 +0000831 while (!Preds.empty()) {
Dan Gohmane9d87f42009-05-06 17:22:41 +0000832 BasicBlock *Pred = Preds.pop_back_val();
Misha Brukmanfd939082005-04-21 23:48:37 +0000833
Chris Lattner542f1492004-02-28 21:28:10 +0000834 // See if the predecessor is a comparison with the same value.
835 TerminatorInst *PTI = Pred->getTerminator();
836 Value *PCV = isValueEqualityComparison(PTI); // PredCondVal
837
838 if (PCV == CV && SafeToMergeTerminators(TI, PTI)) {
839 // Figure out which 'cases' to copy from SI to PSI.
Eric Christopherc723eb12012-07-02 23:22:21 +0000840 std::vector<ValueEqualityComparisonCase> BBCases;
Chris Lattner542f1492004-02-28 21:28:10 +0000841 BasicBlock *BBDefault = GetValueEqualityComparisonCases(TI, BBCases);
842
Eric Christopherc723eb12012-07-02 23:22:21 +0000843 std::vector<ValueEqualityComparisonCase> PredCases;
Chris Lattner542f1492004-02-28 21:28:10 +0000844 BasicBlock *PredDefault = GetValueEqualityComparisonCases(PTI, PredCases);
845
846 // Based on whether the default edge from PTI goes to BB or not, fill in
847 // PredCases and PredDefault with the new switch cases we would like to
848 // build.
Chris Lattner82442432008-02-18 07:42:56 +0000849 SmallVector<BasicBlock*, 8> NewSuccessors;
Chris Lattner542f1492004-02-28 21:28:10 +0000850
Andrew Trickb1b97832012-08-29 21:46:38 +0000851 // Update the branch weight metadata along the way
852 SmallVector<uint64_t, 8> Weights;
Andrew Trickb1b97832012-08-29 21:46:38 +0000853 bool PredHasWeights = HasBranchWeights(PTI);
854 bool SuccHasWeights = HasBranchWeights(TI);
855
Manman Ren796d9452012-09-14 19:05:19 +0000856 if (PredHasWeights) {
Manman Ren020aba02012-09-11 17:43:35 +0000857 GetBranchWeights(PTI, Weights);
Manman Ren796d9452012-09-14 19:05:19 +0000858 // branch-weight metadata is inconsistant here.
859 if (Weights.size() != 1 + PredCases.size())
860 PredHasWeights = SuccHasWeights = false;
861 } else if (SuccHasWeights)
Andrew Trickb1b97832012-08-29 21:46:38 +0000862 // If there are no predecessor weights but there are successor weights,
863 // populate Weights with 1, which will later be scaled to the sum of
864 // successor's weights
865 Weights.assign(1 + PredCases.size(), 1);
Andrew Trickb1b97832012-08-29 21:46:38 +0000866
Manman Ren020aba02012-09-11 17:43:35 +0000867 SmallVector<uint64_t, 8> SuccWeights;
Manman Ren796d9452012-09-14 19:05:19 +0000868 if (SuccHasWeights) {
Manman Ren020aba02012-09-11 17:43:35 +0000869 GetBranchWeights(TI, SuccWeights);
Manman Ren796d9452012-09-14 19:05:19 +0000870 // branch-weight metadata is inconsistant here.
871 if (SuccWeights.size() != 1 + BBCases.size())
872 PredHasWeights = SuccHasWeights = false;
873 } else if (PredHasWeights)
Manman Ren020aba02012-09-11 17:43:35 +0000874 SuccWeights.assign(1 + BBCases.size(), 1);
Andrew Trickb1b97832012-08-29 21:46:38 +0000875
Chris Lattner542f1492004-02-28 21:28:10 +0000876 if (PredDefault == BB) {
877 // If this is the default destination from PTI, only the edges in TI
878 // that don't occur in PTI, or that branch to BB will be activated.
Eric Christopherc723eb12012-07-02 23:22:21 +0000879 std::set<ConstantInt*, ConstantIntOrdering> PTIHandled;
880 for (unsigned i = 0, e = PredCases.size(); i != e; ++i)
881 if (PredCases[i].Dest != BB)
882 PTIHandled.insert(PredCases[i].Value);
883 else {
884 // The default destination is BB, we don't need explicit targets.
885 std::swap(PredCases[i], PredCases.back());
Andrew Trickb1b97832012-08-29 21:46:38 +0000886
Manman Ren020aba02012-09-11 17:43:35 +0000887 if (PredHasWeights || SuccHasWeights) {
888 // Increase weight for the default case.
889 Weights[0] += Weights[i+1];
Andrew Trickb1b97832012-08-29 21:46:38 +0000890 std::swap(Weights[i+1], Weights.back());
891 Weights.pop_back();
892 }
893
Eric Christopherc723eb12012-07-02 23:22:21 +0000894 PredCases.pop_back();
895 --i; --e;
896 }
Chris Lattner542f1492004-02-28 21:28:10 +0000897
Eric Christopherc723eb12012-07-02 23:22:21 +0000898 // Reconstruct the new switch statement we will be building.
Chris Lattner542f1492004-02-28 21:28:10 +0000899 if (PredDefault != BBDefault) {
900 PredDefault->removePredecessor(Pred);
901 PredDefault = BBDefault;
902 NewSuccessors.push_back(BBDefault);
903 }
Andrew Trickb1b97832012-08-29 21:46:38 +0000904
Manman Ren020aba02012-09-11 17:43:35 +0000905 unsigned CasesFromPred = Weights.size();
906 uint64_t ValidTotalSuccWeight = 0;
Eric Christopherc723eb12012-07-02 23:22:21 +0000907 for (unsigned i = 0, e = BBCases.size(); i != e; ++i)
908 if (!PTIHandled.count(BBCases[i].Value) &&
909 BBCases[i].Dest != BBDefault) {
910 PredCases.push_back(BBCases[i]);
911 NewSuccessors.push_back(BBCases[i].Dest);
Manman Ren020aba02012-09-11 17:43:35 +0000912 if (SuccHasWeights || PredHasWeights) {
913 // The default weight is at index 0, so weight for the ith case
914 // should be at index i+1. Scale the cases from successor by
915 // PredDefaultWeight (Weights[0]).
916 Weights.push_back(Weights[0] * SuccWeights[i+1]);
917 ValidTotalSuccWeight += SuccWeights[i+1];
Andrew Trickb1b97832012-08-29 21:46:38 +0000918 }
Eric Christopherc723eb12012-07-02 23:22:21 +0000919 }
Chris Lattner542f1492004-02-28 21:28:10 +0000920
Manman Ren020aba02012-09-11 17:43:35 +0000921 if (SuccHasWeights || PredHasWeights) {
922 ValidTotalSuccWeight += SuccWeights[0];
923 // Scale the cases from predecessor by ValidTotalSuccWeight.
924 for (unsigned i = 1; i < CasesFromPred; ++i)
925 Weights[i] *= ValidTotalSuccWeight;
926 // Scale the default weight by SuccDefaultWeight (SuccWeights[0]).
927 Weights[0] *= SuccWeights[0];
928 }
Chris Lattner542f1492004-02-28 21:28:10 +0000929 } else {
930 // If this is not the default destination from PSI, only the edges
931 // in SI that occur in PSI with a destination of BB will be
932 // activated.
Eric Christopherc723eb12012-07-02 23:22:21 +0000933 std::set<ConstantInt*, ConstantIntOrdering> PTIHandled;
Manman Rena8a2b992012-09-14 17:29:56 +0000934 std::map<ConstantInt*, uint64_t> WeightsForHandled;
Eric Christopherc723eb12012-07-02 23:22:21 +0000935 for (unsigned i = 0, e = PredCases.size(); i != e; ++i)
936 if (PredCases[i].Dest == BB) {
937 PTIHandled.insert(PredCases[i].Value);
Manman Rena8a2b992012-09-14 17:29:56 +0000938
939 if (PredHasWeights || SuccHasWeights) {
940 WeightsForHandled[PredCases[i].Value] = Weights[i+1];
941 std::swap(Weights[i+1], Weights.back());
942 Weights.pop_back();
943 }
944
Eric Christopherc723eb12012-07-02 23:22:21 +0000945 std::swap(PredCases[i], PredCases.back());
946 PredCases.pop_back();
947 --i; --e;
948 }
Chris Lattner542f1492004-02-28 21:28:10 +0000949
950 // Okay, now we know which constants were sent to BB from the
951 // predecessor. Figure out where they will all go now.
Eric Christopherc723eb12012-07-02 23:22:21 +0000952 for (unsigned i = 0, e = BBCases.size(); i != e; ++i)
953 if (PTIHandled.count(BBCases[i].Value)) {
954 // If this is one we are capable of getting...
Manman Rena8a2b992012-09-14 17:29:56 +0000955 if (PredHasWeights || SuccHasWeights)
956 Weights.push_back(WeightsForHandled[BBCases[i].Value]);
Eric Christopherc723eb12012-07-02 23:22:21 +0000957 PredCases.push_back(BBCases[i]);
958 NewSuccessors.push_back(BBCases[i].Dest);
959 PTIHandled.erase(BBCases[i].Value);// This constant is taken care of
960 }
961
Chris Lattner542f1492004-02-28 21:28:10 +0000962 // If there are any constants vectored to BB that TI doesn't handle,
963 // they must go to the default destination of TI.
Andrew Trick6b014382012-08-29 21:46:36 +0000964 for (std::set<ConstantInt*, ConstantIntOrdering>::iterator I =
Eric Christopherc723eb12012-07-02 23:22:21 +0000965 PTIHandled.begin(),
966 E = PTIHandled.end(); I != E; ++I) {
Manman Rena8a2b992012-09-14 17:29:56 +0000967 if (PredHasWeights || SuccHasWeights)
968 Weights.push_back(WeightsForHandled[*I]);
Eric Christopherc723eb12012-07-02 23:22:21 +0000969 PredCases.push_back(ValueEqualityComparisonCase(*I, BBDefault));
Chris Lattner542f1492004-02-28 21:28:10 +0000970 NewSuccessors.push_back(BBDefault);
Eric Christopherc723eb12012-07-02 23:22:21 +0000971 }
Chris Lattner542f1492004-02-28 21:28:10 +0000972 }
973
974 // Okay, at this point, we know which new successor Pred will get. Make
975 // sure we update the number of entries in the PHI nodes for these
976 // successors.
977 for (unsigned i = 0, e = NewSuccessors.size(); i != e; ++i)
978 AddPredecessorToBlock(NewSuccessors[i], Pred, BB);
979
Devang Patelb55d9242011-05-18 20:53:17 +0000980 Builder.SetInsertPoint(PTI);
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000981 // Convert pointer to int before we switch.
Duncan Sands1df98592010-02-16 11:11:14 +0000982 if (CV->getType()->isPointerTy()) {
Micah Villmow3574eca2012-10-08 16:38:25 +0000983 assert(TD && "Cannot switch on pointer without DataLayout");
Devang Patelb55d9242011-05-18 20:53:17 +0000984 CV = Builder.CreatePtrToInt(CV, TD->getIntPtrType(CV->getContext()),
985 "magicptr");
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +0000986 }
987
Chris Lattner542f1492004-02-28 21:28:10 +0000988 // Now that the successors are updated, create the new Switch instruction.
Devang Patelb55d9242011-05-18 20:53:17 +0000989 SwitchInst *NewSI = Builder.CreateSwitch(CV, PredDefault,
990 PredCases.size());
Devang Pateld80e8ed2011-05-17 23:29:05 +0000991 NewSI->setDebugLoc(PTI->getDebugLoc());
Eric Christopherc723eb12012-07-02 23:22:21 +0000992 for (unsigned i = 0, e = PredCases.size(); i != e; ++i)
993 NewSI->addCase(PredCases[i].Value, PredCases[i].Dest);
Chris Lattner13b2f762005-01-01 16:02:12 +0000994
Andrew Trickb1b97832012-08-29 21:46:38 +0000995 if (PredHasWeights || SuccHasWeights) {
996 // Halve the weights if any of them cannot fit in an uint32_t
997 FitWeights(Weights);
998
999 SmallVector<uint32_t, 8> MDWeights(Weights.begin(), Weights.end());
1000
1001 NewSI->setMetadata(LLVMContext::MD_prof,
1002 MDBuilder(BB->getContext()).
1003 createBranchWeights(MDWeights));
1004 }
1005
Eli Friedman080efb82008-12-16 20:54:32 +00001006 EraseTerminatorInstAndDCECond(PTI);
Chris Lattner13b2f762005-01-01 16:02:12 +00001007
Chris Lattner542f1492004-02-28 21:28:10 +00001008 // Okay, last check. If BB is still a successor of PSI, then we must
1009 // have an infinite loop case. If so, add an infinitely looping block
1010 // to handle the case to preserve the behavior of the code.
1011 BasicBlock *InfLoopBlock = 0;
1012 for (unsigned i = 0, e = NewSI->getNumSuccessors(); i != e; ++i)
1013 if (NewSI->getSuccessor(i) == BB) {
1014 if (InfLoopBlock == 0) {
Chris Lattner093a4382008-07-13 22:23:11 +00001015 // Insert it at the end of the function, because it's either code,
Chris Lattner542f1492004-02-28 21:28:10 +00001016 // or it won't matter if it's hot. :)
Owen Anderson1d0be152009-08-13 21:58:54 +00001017 InfLoopBlock = BasicBlock::Create(BB->getContext(),
1018 "infloop", BB->getParent());
Gabor Greif051a9502008-04-06 20:25:17 +00001019 BranchInst::Create(InfLoopBlock, InfLoopBlock);
Chris Lattner542f1492004-02-28 21:28:10 +00001020 }
1021 NewSI->setSuccessor(i, InfLoopBlock);
1022 }
Misha Brukmanfd939082005-04-21 23:48:37 +00001023
Chris Lattner542f1492004-02-28 21:28:10 +00001024 Changed = true;
1025 }
1026 }
1027 return Changed;
1028}
1029
Dale Johannesenc1f10402009-06-15 20:59:27 +00001030// isSafeToHoistInvoke - If we would need to insert a select that uses the
1031// value of this invoke (comments in HoistThenElseCodeToIf explain why we
1032// would need to do this), we can't hoist the invoke, as there is nowhere
1033// to put the select in this case.
1034static bool isSafeToHoistInvoke(BasicBlock *BB1, BasicBlock *BB2,
1035 Instruction *I1, Instruction *I2) {
1036 for (succ_iterator SI = succ_begin(BB1), E = succ_end(BB1); SI != E; ++SI) {
1037 PHINode *PN;
1038 for (BasicBlock::iterator BBI = SI->begin();
1039 (PN = dyn_cast<PHINode>(BBI)); ++BBI) {
1040 Value *BB1V = PN->getIncomingValueForBlock(BB1);
1041 Value *BB2V = PN->getIncomingValueForBlock(BB2);
1042 if (BB1V != BB2V && (BB1V==I1 || BB2V==I2)) {
1043 return false;
1044 }
1045 }
1046 }
1047 return true;
1048}
1049
Chris Lattner6306d072005-08-03 17:59:45 +00001050/// HoistThenElseCodeToIf - Given a conditional branch that goes to BB1 and
Chris Lattner37dc9382004-11-30 00:29:14 +00001051/// BB2, hoist any common code in the two blocks up into the branch block. The
1052/// caller of this function guarantees that BI's block dominates BB1 and BB2.
Rafael Espindola216dde92011-05-19 02:26:30 +00001053static bool HoistThenElseCodeToIf(BranchInst *BI) {
Chris Lattner37dc9382004-11-30 00:29:14 +00001054 // This does very trivial matching, with limited scanning, to find identical
1055 // instructions in the two blocks. In particular, we don't want to get into
1056 // O(M*N) situations here where M and N are the sizes of BB1 and BB2. As
1057 // such, we currently just scan for obviously identical instructions in an
1058 // identical order.
1059 BasicBlock *BB1 = BI->getSuccessor(0); // The true destination.
1060 BasicBlock *BB2 = BI->getSuccessor(1); // The false destination
1061
Devang Patel65085cf2009-02-04 00:03:08 +00001062 BasicBlock::iterator BB1_Itr = BB1->begin();
1063 BasicBlock::iterator BB2_Itr = BB2->begin();
1064
1065 Instruction *I1 = BB1_Itr++, *I2 = BB2_Itr++;
Devang Patel949666e2011-04-07 17:27:36 +00001066 // Skip debug info if it is not identical.
1067 DbgInfoIntrinsic *DBI1 = dyn_cast<DbgInfoIntrinsic>(I1);
1068 DbgInfoIntrinsic *DBI2 = dyn_cast<DbgInfoIntrinsic>(I2);
1069 if (!DBI1 || !DBI2 || !DBI1->isIdenticalToWhenDefined(DBI2)) {
1070 while (isa<DbgInfoIntrinsic>(I1))
1071 I1 = BB1_Itr++;
1072 while (isa<DbgInfoIntrinsic>(I2))
1073 I2 = BB2_Itr++;
1074 }
Devang Patelae6c95b2011-04-07 00:30:15 +00001075 if (isa<PHINode>(I1) || !I1->isIdenticalToWhenDefined(I2) ||
Dale Johannesenc1f10402009-06-15 20:59:27 +00001076 (isa<InvokeInst>(I1) && !isSafeToHoistInvoke(BB1, BB2, I1, I2)))
Chris Lattner37dc9382004-11-30 00:29:14 +00001077 return false;
1078
1079 // If we get here, we can hoist at least one instruction.
1080 BasicBlock *BIParent = BI->getParent();
Chris Lattner37dc9382004-11-30 00:29:14 +00001081
1082 do {
1083 // If we are hoisting the terminator instruction, don't move one (making a
1084 // broken BB), instead clone it, and remove BI.
1085 if (isa<TerminatorInst>(I1))
1086 goto HoistTerminator;
Misha Brukmanfd939082005-04-21 23:48:37 +00001087
Chris Lattner37dc9382004-11-30 00:29:14 +00001088 // For a normal instruction, we just move one to right before the branch,
1089 // then replace all uses of the other with the first. Finally, we remove
1090 // the now redundant second instruction.
1091 BIParent->getInstList().splice(BI, BB1->getInstList(), I1);
1092 if (!I2->use_empty())
1093 I2->replaceAllUsesWith(I1);
Dan Gohman58cfa3b2009-08-25 22:11:20 +00001094 I1->intersectOptionalDataWith(I2);
Chris Lattner302ba6f2010-12-14 06:17:25 +00001095 I2->eraseFromParent();
Misha Brukmanfd939082005-04-21 23:48:37 +00001096
Devang Patel65085cf2009-02-04 00:03:08 +00001097 I1 = BB1_Itr++;
Devang Patel65085cf2009-02-04 00:03:08 +00001098 I2 = BB2_Itr++;
Devang Patel949666e2011-04-07 17:27:36 +00001099 // Skip debug info if it is not identical.
1100 DbgInfoIntrinsic *DBI1 = dyn_cast<DbgInfoIntrinsic>(I1);
1101 DbgInfoIntrinsic *DBI2 = dyn_cast<DbgInfoIntrinsic>(I2);
1102 if (!DBI1 || !DBI2 || !DBI1->isIdenticalToWhenDefined(DBI2)) {
1103 while (isa<DbgInfoIntrinsic>(I1))
1104 I1 = BB1_Itr++;
1105 while (isa<DbgInfoIntrinsic>(I2))
1106 I2 = BB2_Itr++;
1107 }
Devang Patelae6c95b2011-04-07 00:30:15 +00001108 } while (I1->isIdenticalToWhenDefined(I2));
Chris Lattner37dc9382004-11-30 00:29:14 +00001109
1110 return true;
1111
1112HoistTerminator:
Dale Johannesenc1f10402009-06-15 20:59:27 +00001113 // It may not be possible to hoist an invoke.
1114 if (isa<InvokeInst>(I1) && !isSafeToHoistInvoke(BB1, BB2, I1, I2))
1115 return true;
1116
Chris Lattner37dc9382004-11-30 00:29:14 +00001117 // Okay, it is safe to hoist the terminator.
Nick Lewycky67760642009-09-27 07:38:41 +00001118 Instruction *NT = I1->clone();
Chris Lattner37dc9382004-11-30 00:29:14 +00001119 BIParent->getInstList().insert(BI, NT);
Benjamin Kramerf0127052010-01-05 13:12:22 +00001120 if (!NT->getType()->isVoidTy()) {
Chris Lattner37dc9382004-11-30 00:29:14 +00001121 I1->replaceAllUsesWith(NT);
1122 I2->replaceAllUsesWith(NT);
Chris Lattner86cc4232007-02-11 01:37:51 +00001123 NT->takeName(I1);
Chris Lattner37dc9382004-11-30 00:29:14 +00001124 }
1125
Devang Pateld3a17882011-05-19 20:52:46 +00001126 IRBuilder<true, NoFolder> Builder(NT);
Chris Lattner37dc9382004-11-30 00:29:14 +00001127 // Hoisting one of the terminators from our successor is a great thing.
1128 // Unfortunately, the successors of the if/else blocks may have PHI nodes in
1129 // them. If they do, all PHI entries for BB1/BB2 must agree for all PHI
1130 // nodes, so we insert select instruction to compute the final result.
1131 std::map<std::pair<Value*,Value*>, SelectInst*> InsertedSelects;
1132 for (succ_iterator SI = succ_begin(BB1), E = succ_end(BB1); SI != E; ++SI) {
1133 PHINode *PN;
1134 for (BasicBlock::iterator BBI = SI->begin();
Chris Lattner0f535c62004-11-30 07:47:34 +00001135 (PN = dyn_cast<PHINode>(BBI)); ++BBI) {
Chris Lattner37dc9382004-11-30 00:29:14 +00001136 Value *BB1V = PN->getIncomingValueForBlock(BB1);
1137 Value *BB2V = PN->getIncomingValueForBlock(BB2);
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001138 if (BB1V == BB2V) continue;
Andrew Trick6b014382012-08-29 21:46:36 +00001139
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001140 // These values do not agree. Insert a select instruction before NT
1141 // that determines the right value.
1142 SelectInst *&SI = InsertedSelects[std::make_pair(BB1V, BB2V)];
Andrew Trick6b014382012-08-29 21:46:36 +00001143 if (SI == 0)
Devang Pateld3a17882011-05-19 20:52:46 +00001144 SI = cast<SelectInst>
1145 (Builder.CreateSelect(BI->getCondition(), BB1V, BB2V,
1146 BB1V->getName()+"."+BB2V->getName()));
1147
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001148 // Make the PHI node use the select for all incoming values for BB1/BB2
1149 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
1150 if (PN->getIncomingBlock(i) == BB1 || PN->getIncomingBlock(i) == BB2)
1151 PN->setIncomingValue(i, SI);
Chris Lattner37dc9382004-11-30 00:29:14 +00001152 }
1153 }
1154
1155 // Update any PHI nodes in our new successors.
1156 for (succ_iterator SI = succ_begin(BB1), E = succ_end(BB1); SI != E; ++SI)
1157 AddPredecessorToBlock(*SI, BIParent, BB1);
Misha Brukmanfd939082005-04-21 23:48:37 +00001158
Eli Friedman080efb82008-12-16 20:54:32 +00001159 EraseTerminatorInstAndDCECond(BI);
Chris Lattner37dc9382004-11-30 00:29:14 +00001160 return true;
1161}
1162
Manman Ren554da1a2012-09-20 22:37:36 +00001163/// SinkThenElseCodeToEnd - Given an unconditional branch that goes to BBEnd,
1164/// check whether BBEnd has only two predecessors and the other predecessor
1165/// ends with an unconditional branch. If it is true, sink any common code
1166/// in the two predecessors to BBEnd.
1167static bool SinkThenElseCodeToEnd(BranchInst *BI1) {
1168 assert(BI1->isUnconditional());
1169 BasicBlock *BB1 = BI1->getParent();
1170 BasicBlock *BBEnd = BI1->getSuccessor(0);
1171
1172 // Check that BBEnd has two predecessors and the other predecessor ends with
1173 // an unconditional branch.
Benjamin Kramerfdb96062012-09-30 21:03:56 +00001174 pred_iterator PI = pred_begin(BBEnd), PE = pred_end(BBEnd);
1175 BasicBlock *Pred0 = *PI++;
1176 if (PI == PE) // Only one predecessor.
Manman Ren554da1a2012-09-20 22:37:36 +00001177 return false;
Benjamin Kramerfdb96062012-09-30 21:03:56 +00001178 BasicBlock *Pred1 = *PI++;
1179 if (PI != PE) // More than two predecessors.
1180 return false;
1181 BasicBlock *BB2 = (Pred0 == BB1) ? Pred1 : Pred0;
Manman Ren554da1a2012-09-20 22:37:36 +00001182 BranchInst *BI2 = dyn_cast<BranchInst>(BB2->getTerminator());
1183 if (!BI2 || !BI2->isUnconditional())
1184 return false;
1185
1186 // Gather the PHI nodes in BBEnd.
1187 std::map<Value*, std::pair<Value*, PHINode*> > MapValueFromBB1ToBB2;
1188 Instruction *FirstNonPhiInBBEnd = 0;
1189 for (BasicBlock::iterator I = BBEnd->begin(), E = BBEnd->end();
1190 I != E; ++I) {
1191 if (PHINode *PN = dyn_cast<PHINode>(I)) {
1192 Value *BB1V = PN->getIncomingValueForBlock(BB1);
1193 Value *BB2V = PN->getIncomingValueForBlock(BB2);
1194 MapValueFromBB1ToBB2[BB1V] = std::make_pair(BB2V, PN);
1195 } else {
1196 FirstNonPhiInBBEnd = &*I;
1197 break;
1198 }
1199 }
1200 if (!FirstNonPhiInBBEnd)
1201 return false;
1202
1203
1204 // This does very trivial matching, with limited scanning, to find identical
1205 // instructions in the two blocks. We scan backward for obviously identical
1206 // instructions in an identical order.
1207 BasicBlock::InstListType::reverse_iterator RI1 = BB1->getInstList().rbegin(),
1208 RE1 = BB1->getInstList().rend(), RI2 = BB2->getInstList().rbegin(),
1209 RE2 = BB2->getInstList().rend();
1210 // Skip debug info.
1211 while (RI1 != RE1 && isa<DbgInfoIntrinsic>(&*RI1)) ++RI1;
1212 if (RI1 == RE1)
1213 return false;
1214 while (RI2 != RE2 && isa<DbgInfoIntrinsic>(&*RI2)) ++RI2;
1215 if (RI2 == RE2)
1216 return false;
1217 // Skip the unconditional branches.
1218 ++RI1;
1219 ++RI2;
1220
1221 bool Changed = false;
1222 while (RI1 != RE1 && RI2 != RE2) {
1223 // Skip debug info.
1224 while (RI1 != RE1 && isa<DbgInfoIntrinsic>(&*RI1)) ++RI1;
1225 if (RI1 == RE1)
1226 return Changed;
1227 while (RI2 != RE2 && isa<DbgInfoIntrinsic>(&*RI2)) ++RI2;
1228 if (RI2 == RE2)
1229 return Changed;
1230
1231 Instruction *I1 = &*RI1, *I2 = &*RI2;
1232 // I1 and I2 should have a single use in the same PHI node, and they
1233 // perform the same operation.
1234 // Cannot move control-flow-involving, volatile loads, vaarg, etc.
1235 if (isa<PHINode>(I1) || isa<PHINode>(I2) ||
1236 isa<TerminatorInst>(I1) || isa<TerminatorInst>(I2) ||
1237 isa<LandingPadInst>(I1) || isa<LandingPadInst>(I2) ||
1238 isa<AllocaInst>(I1) || isa<AllocaInst>(I2) ||
1239 I1->mayHaveSideEffects() || I2->mayHaveSideEffects() ||
1240 I1->mayReadOrWriteMemory() || I2->mayReadOrWriteMemory() ||
1241 !I1->hasOneUse() || !I2->hasOneUse() ||
1242 MapValueFromBB1ToBB2.find(I1) == MapValueFromBB1ToBB2.end() ||
1243 MapValueFromBB1ToBB2[I1].first != I2)
1244 return Changed;
1245
1246 // Check whether we should swap the operands of ICmpInst.
1247 ICmpInst *ICmp1 = dyn_cast<ICmpInst>(I1), *ICmp2 = dyn_cast<ICmpInst>(I2);
1248 bool SwapOpnds = false;
1249 if (ICmp1 && ICmp2 &&
1250 ICmp1->getOperand(0) != ICmp2->getOperand(0) &&
1251 ICmp1->getOperand(1) != ICmp2->getOperand(1) &&
1252 (ICmp1->getOperand(0) == ICmp2->getOperand(1) ||
1253 ICmp1->getOperand(1) == ICmp2->getOperand(0))) {
1254 ICmp2->swapOperands();
1255 SwapOpnds = true;
1256 }
1257 if (!I1->isSameOperationAs(I2)) {
1258 if (SwapOpnds)
1259 ICmp2->swapOperands();
1260 return Changed;
1261 }
1262
1263 // The operands should be either the same or they need to be generated
1264 // with a PHI node after sinking. We only handle the case where there is
1265 // a single pair of different operands.
1266 Value *DifferentOp1 = 0, *DifferentOp2 = 0;
1267 unsigned Op1Idx = 0;
1268 for (unsigned I = 0, E = I1->getNumOperands(); I != E; ++I) {
1269 if (I1->getOperand(I) == I2->getOperand(I))
1270 continue;
1271 // Early exit if we have more-than one pair of different operands or
1272 // the different operand is already in MapValueFromBB1ToBB2.
1273 // Early exit if we need a PHI node to replace a constant.
1274 if (DifferentOp1 ||
1275 MapValueFromBB1ToBB2.find(I1->getOperand(I)) !=
1276 MapValueFromBB1ToBB2.end() ||
1277 isa<Constant>(I1->getOperand(I)) ||
1278 isa<Constant>(I2->getOperand(I))) {
1279 // If we can't sink the instructions, undo the swapping.
1280 if (SwapOpnds)
1281 ICmp2->swapOperands();
1282 return Changed;
1283 }
1284 DifferentOp1 = I1->getOperand(I);
1285 Op1Idx = I;
1286 DifferentOp2 = I2->getOperand(I);
1287 }
1288
1289 // We insert the pair of different operands to MapValueFromBB1ToBB2 and
1290 // remove (I1, I2) from MapValueFromBB1ToBB2.
1291 if (DifferentOp1) {
1292 PHINode *NewPN = PHINode::Create(DifferentOp1->getType(), 2,
1293 DifferentOp1->getName() + ".sink",
1294 BBEnd->begin());
1295 MapValueFromBB1ToBB2[DifferentOp1] = std::make_pair(DifferentOp2, NewPN);
1296 // I1 should use NewPN instead of DifferentOp1.
1297 I1->setOperand(Op1Idx, NewPN);
1298 NewPN->addIncoming(DifferentOp1, BB1);
1299 NewPN->addIncoming(DifferentOp2, BB2);
1300 DEBUG(dbgs() << "Create PHI node " << *NewPN << "\n";);
1301 }
1302 PHINode *OldPN = MapValueFromBB1ToBB2[I1].second;
1303 MapValueFromBB1ToBB2.erase(I1);
1304
1305 DEBUG(dbgs() << "SINK common instructions " << *I1 << "\n";);
1306 DEBUG(dbgs() << " " << *I2 << "\n";);
1307 // We need to update RE1 and RE2 if we are going to sink the first
1308 // instruction in the basic block down.
1309 bool UpdateRE1 = (I1 == BB1->begin()), UpdateRE2 = (I2 == BB2->begin());
1310 // Sink the instruction.
1311 BBEnd->getInstList().splice(FirstNonPhiInBBEnd, BB1->getInstList(), I1);
1312 if (!OldPN->use_empty())
1313 OldPN->replaceAllUsesWith(I1);
1314 OldPN->eraseFromParent();
1315
1316 if (!I2->use_empty())
1317 I2->replaceAllUsesWith(I1);
1318 I1->intersectOptionalDataWith(I2);
1319 I2->eraseFromParent();
1320
1321 if (UpdateRE1)
1322 RE1 = BB1->getInstList().rend();
1323 if (UpdateRE2)
1324 RE2 = BB2->getInstList().rend();
1325 FirstNonPhiInBBEnd = I1;
1326 NumSinkCommons++;
1327 Changed = true;
1328 }
1329 return Changed;
1330}
1331
Evan Cheng4d09efd2008-06-07 08:52:29 +00001332/// SpeculativelyExecuteBB - Given a conditional branch that goes to BB1
1333/// and an BB2 and the only successor of BB1 is BB2, hoist simple code
1334/// (for now, restricted to a single instruction that's side effect free) from
1335/// the BB1 into the branch block to speculatively execute it.
Dan Gohman3b205172012-01-05 23:58:56 +00001336///
1337/// Turn
1338/// BB:
1339/// %t1 = icmp
1340/// br i1 %t1, label %BB1, label %BB2
1341/// BB1:
1342/// %t3 = add %t2, c
1343/// br label BB2
1344/// BB2:
1345/// =>
1346/// BB:
1347/// %t1 = icmp
1348/// %t4 = add %t2, c
1349/// %t3 = select i1 %t1, %t2, %t3
Rafael Espindola216dde92011-05-19 02:26:30 +00001350static bool SpeculativelyExecuteBB(BranchInst *BI, BasicBlock *BB1) {
Evan Cheng4d09efd2008-06-07 08:52:29 +00001351 // Only speculatively execution a single instruction (not counting the
1352 // terminator) for now.
Devang Patel06b1e672009-03-06 06:00:17 +00001353 Instruction *HInst = NULL;
1354 Instruction *Term = BB1->getTerminator();
1355 for (BasicBlock::iterator BBI = BB1->begin(), BBE = BB1->end();
1356 BBI != BBE; ++BBI) {
1357 Instruction *I = BBI;
1358 // Skip debug info.
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001359 if (isa<DbgInfoIntrinsic>(I)) continue;
1360 if (I == Term) break;
Devang Patel06b1e672009-03-06 06:00:17 +00001361
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001362 if (HInst)
Devang Patel06b1e672009-03-06 06:00:17 +00001363 return false;
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001364 HInst = I;
Devang Patel06b1e672009-03-06 06:00:17 +00001365 }
Dan Gohman3b205172012-01-05 23:58:56 +00001366
1367 BasicBlock *BIParent = BI->getParent();
1368
1369 // Check the instruction to be hoisted, if there is one.
1370 if (HInst) {
1371 // Don't hoist the instruction if it's unsafe or expensive.
1372 if (!isSafeToSpeculativelyExecute(HInst))
1373 return false;
1374 if (ComputeSpeculationCost(HInst) > PHINodeFoldingThreshold)
1375 return false;
1376
1377 // Do not hoist the instruction if any of its operands are defined but not
1378 // used in this BB. The transformation will prevent the operand from
1379 // being sunk into the use block.
Andrew Trick6b014382012-08-29 21:46:36 +00001380 for (User::op_iterator i = HInst->op_begin(), e = HInst->op_end();
Dan Gohman3b205172012-01-05 23:58:56 +00001381 i != e; ++i) {
1382 Instruction *OpI = dyn_cast<Instruction>(*i);
1383 if (OpI && OpI->getParent() == BIParent &&
1384 !OpI->mayHaveSideEffects() &&
1385 !OpI->isUsedInBasicBlock(BIParent))
1386 return false;
1387 }
1388 }
Evan Cheng4d09efd2008-06-07 08:52:29 +00001389
Evan Cheng797d9512008-06-11 19:18:20 +00001390 // Be conservative for now. FP select instruction can often be expensive.
1391 Value *BrCond = BI->getCondition();
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001392 if (isa<FCmpInst>(BrCond))
Evan Cheng797d9512008-06-11 19:18:20 +00001393 return false;
1394
Evan Cheng4d09efd2008-06-07 08:52:29 +00001395 // If BB1 is actually on the false edge of the conditional branch, remember
1396 // to swap the select operands later.
1397 bool Invert = false;
1398 if (BB1 != BI->getSuccessor(0)) {
1399 assert(BB1 == BI->getSuccessor(1) && "No edge from 'if' block?");
1400 Invert = true;
1401 }
1402
Dan Gohman3b205172012-01-05 23:58:56 +00001403 // Collect interesting PHIs, and scan for hazards.
1404 SmallSetVector<std::pair<Value *, Value *>, 4> PHIs;
Chris Lattner6fe73bb2009-01-19 00:36:37 +00001405 BasicBlock *BB2 = BB1->getTerminator()->getSuccessor(0);
Dan Gohman3b205172012-01-05 23:58:56 +00001406 for (BasicBlock::iterator I = BB2->begin();
1407 PHINode *PN = dyn_cast<PHINode>(I); ++I) {
1408 Value *BB1V = PN->getIncomingValueForBlock(BB1);
1409 Value *BIParentV = PN->getIncomingValueForBlock(BIParent);
1410
1411 // Skip PHIs which are trivial.
1412 if (BB1V == BIParentV)
1413 continue;
1414
1415 // Check for saftey.
1416 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(BB1V)) {
1417 // An unfolded ConstantExpr could end up getting expanded into
1418 // Instructions. Don't speculate this and another instruction at
1419 // the same time.
1420 if (HInst)
1421 return false;
1422 if (!isSafeToSpeculativelyExecute(CE))
1423 return false;
1424 if (ComputeSpeculationCost(CE) > PHINodeFoldingThreshold)
1425 return false;
1426 }
1427
1428 // Ok, we may insert a select for this PHI.
1429 PHIs.insert(std::make_pair(BB1V, BIParentV));
Evan Cheng4d09efd2008-06-07 08:52:29 +00001430 }
Dan Gohman3b205172012-01-05 23:58:56 +00001431
1432 // If there are no PHIs to process, bail early. This helps ensure idempotence
1433 // as well.
1434 if (PHIs.empty())
1435 return false;
Andrew Trick6b014382012-08-29 21:46:36 +00001436
Dan Gohman3b205172012-01-05 23:58:56 +00001437 // If we get here, we can hoist the instruction and if-convert.
1438 DEBUG(dbgs() << "SPECULATIVELY EXECUTING BB" << *BB1 << "\n";);
Evan Cheng4d09efd2008-06-07 08:52:29 +00001439
Dan Gohman3b205172012-01-05 23:58:56 +00001440 // Hoist the instruction.
1441 if (HInst)
1442 BIParent->getInstList().splice(BI, BB1->getInstList(), HInst);
Evan Cheng502a4f52008-06-12 21:15:59 +00001443
Dan Gohman3b205172012-01-05 23:58:56 +00001444 // Insert selects and rewrite the PHI operands.
Devang Pateld3a17882011-05-19 20:52:46 +00001445 IRBuilder<true, NoFolder> Builder(BI);
Dan Gohman3b205172012-01-05 23:58:56 +00001446 for (unsigned i = 0, e = PHIs.size(); i != e; ++i) {
1447 Value *TrueV = PHIs[i].first;
1448 Value *FalseV = PHIs[i].second;
Evan Cheng4d09efd2008-06-07 08:52:29 +00001449
Dan Gohman3b205172012-01-05 23:58:56 +00001450 // Create a select whose true value is the speculatively executed value and
1451 // false value is the previously determined FalseV.
1452 SelectInst *SI;
1453 if (Invert)
1454 SI = cast<SelectInst>
1455 (Builder.CreateSelect(BrCond, FalseV, TrueV,
1456 FalseV->getName() + "." + TrueV->getName()));
1457 else
1458 SI = cast<SelectInst>
1459 (Builder.CreateSelect(BrCond, TrueV, FalseV,
1460 TrueV->getName() + "." + FalseV->getName()));
1461
1462 // Make the PHI node use the select for all incoming values for "then" and
1463 // "if" blocks.
1464 for (BasicBlock::iterator I = BB2->begin();
1465 PHINode *PN = dyn_cast<PHINode>(I); ++I) {
1466 unsigned BB1I = PN->getBasicBlockIndex(BB1);
1467 unsigned BIParentI = PN->getBasicBlockIndex(BIParent);
1468 Value *BB1V = PN->getIncomingValue(BB1I);
1469 Value *BIParentV = PN->getIncomingValue(BIParentI);
1470 if (TrueV == BB1V && FalseV == BIParentV) {
1471 PN->setIncomingValue(BB1I, SI);
1472 PN->setIncomingValue(BIParentI, SI);
1473 }
1474 }
Evan Cheng4d09efd2008-06-07 08:52:29 +00001475 }
1476
Evan Cheng502a4f52008-06-12 21:15:59 +00001477 ++NumSpeculations;
Evan Cheng4d09efd2008-06-07 08:52:29 +00001478 return true;
1479}
1480
Chris Lattner2e42e362005-09-20 00:43:16 +00001481/// BlockIsSimpleEnoughToThreadThrough - Return true if we can thread a branch
1482/// across this block.
1483static bool BlockIsSimpleEnoughToThreadThrough(BasicBlock *BB) {
1484 BranchInst *BI = cast<BranchInst>(BB->getTerminator());
Chris Lattnere9487f02005-09-20 01:48:40 +00001485 unsigned Size = 0;
Andrew Trick6b014382012-08-29 21:46:36 +00001486
Devang Patel9200c892009-03-10 18:00:05 +00001487 for (BasicBlock::iterator BBI = BB->begin(); &*BBI != BI; ++BBI) {
Dale Johannesen8483e542009-03-12 23:18:09 +00001488 if (isa<DbgInfoIntrinsic>(BBI))
1489 continue;
Chris Lattnere9487f02005-09-20 01:48:40 +00001490 if (Size > 10) return false; // Don't clone large BB's.
Dale Johannesen8483e542009-03-12 23:18:09 +00001491 ++Size;
Andrew Trick6b014382012-08-29 21:46:36 +00001492
Dale Johannesen8483e542009-03-12 23:18:09 +00001493 // We can only support instructions that do not define values that are
Chris Lattnere9487f02005-09-20 01:48:40 +00001494 // live outside of the current basic block.
1495 for (Value::use_iterator UI = BBI->use_begin(), E = BBI->use_end();
1496 UI != E; ++UI) {
1497 Instruction *U = cast<Instruction>(*UI);
1498 if (U->getParent() != BB || isa<PHINode>(U)) return false;
1499 }
Andrew Trick6b014382012-08-29 21:46:36 +00001500
Chris Lattner2e42e362005-09-20 00:43:16 +00001501 // Looks ok, continue checking.
1502 }
Chris Lattnere9487f02005-09-20 01:48:40 +00001503
Chris Lattner2e42e362005-09-20 00:43:16 +00001504 return true;
1505}
1506
Chris Lattnereaba3a12005-09-19 23:49:37 +00001507/// FoldCondBranchOnPHI - If we have a conditional branch on a PHI node value
1508/// that is defined in the same block as the branch and if any PHI entries are
1509/// constants, thread edges corresponding to that entry to be branches to their
1510/// ultimate destination.
Micah Villmow3574eca2012-10-08 16:38:25 +00001511static bool FoldCondBranchOnPHI(BranchInst *BI, const DataLayout *TD) {
Chris Lattnereaba3a12005-09-19 23:49:37 +00001512 BasicBlock *BB = BI->getParent();
1513 PHINode *PN = dyn_cast<PHINode>(BI->getCondition());
Chris Lattner9c88d982005-09-19 23:57:04 +00001514 // NOTE: we currently cannot transform this case if the PHI node is used
1515 // outside of the block.
Chris Lattner2e42e362005-09-20 00:43:16 +00001516 if (!PN || PN->getParent() != BB || !PN->hasOneUse())
1517 return false;
Andrew Trick6b014382012-08-29 21:46:36 +00001518
Chris Lattnereaba3a12005-09-19 23:49:37 +00001519 // Degenerate case of a single entry PHI.
1520 if (PN->getNumIncomingValues() == 1) {
Chris Lattner29874e02008-12-03 19:44:02 +00001521 FoldSingleEntryPHINodes(PN->getParent());
Andrew Trick6b014382012-08-29 21:46:36 +00001522 return true;
Chris Lattnereaba3a12005-09-19 23:49:37 +00001523 }
1524
1525 // Now we know that this block has multiple preds and two succs.
Chris Lattner2e42e362005-09-20 00:43:16 +00001526 if (!BlockIsSimpleEnoughToThreadThrough(BB)) return false;
Andrew Trick6b014382012-08-29 21:46:36 +00001527
Chris Lattnereaba3a12005-09-19 23:49:37 +00001528 // Okay, this is a simple enough basic block. See if any phi values are
1529 // constants.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001530 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001531 ConstantInt *CB = dyn_cast<ConstantInt>(PN->getIncomingValue(i));
1532 if (CB == 0 || !CB->getType()->isIntegerTy(1)) continue;
Andrew Trick6b014382012-08-29 21:46:36 +00001533
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001534 // Okay, we now know that all edges from PredBB should be revectored to
1535 // branch to RealDest.
1536 BasicBlock *PredBB = PN->getIncomingBlock(i);
1537 BasicBlock *RealDest = BI->getSuccessor(!CB->getZExtValue());
Andrew Trick6b014382012-08-29 21:46:36 +00001538
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001539 if (RealDest == BB) continue; // Skip self loops.
Bill Wendling6a648b82011-06-04 09:42:04 +00001540 // Skip if the predecessor's terminator is an indirect branch.
1541 if (isa<IndirectBrInst>(PredBB->getTerminator())) continue;
Andrew Trick6b014382012-08-29 21:46:36 +00001542
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001543 // The dest block might have PHI nodes, other predecessors and other
1544 // difficult cases. Instead of being smart about this, just insert a new
1545 // block that jumps to the destination block, effectively splitting
1546 // the edge we are about to create.
1547 BasicBlock *EdgeBB = BasicBlock::Create(BB->getContext(),
1548 RealDest->getName()+".critedge",
1549 RealDest->getParent(), RealDest);
1550 BranchInst::Create(RealDest, EdgeBB);
Andrew Trick6b014382012-08-29 21:46:36 +00001551
Chris Lattner6de0a282010-12-14 07:09:42 +00001552 // Update PHI nodes.
1553 AddPredecessorToBlock(RealDest, EdgeBB, BB);
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001554
1555 // BB may have instructions that are being threaded over. Clone these
1556 // instructions into EdgeBB. We know that there will be no uses of the
1557 // cloned instructions outside of EdgeBB.
1558 BasicBlock::iterator InsertPt = EdgeBB->begin();
1559 DenseMap<Value*, Value*> TranslateMap; // Track translated values.
1560 for (BasicBlock::iterator BBI = BB->begin(); &*BBI != BI; ++BBI) {
1561 if (PHINode *PN = dyn_cast<PHINode>(BBI)) {
1562 TranslateMap[PN] = PN->getIncomingValueForBlock(PredBB);
1563 continue;
1564 }
1565 // Clone the instruction.
1566 Instruction *N = BBI->clone();
1567 if (BBI->hasName()) N->setName(BBI->getName()+".c");
Andrew Trick6b014382012-08-29 21:46:36 +00001568
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001569 // Update operands due to translation.
1570 for (User::op_iterator i = N->op_begin(), e = N->op_end();
1571 i != e; ++i) {
1572 DenseMap<Value*, Value*>::iterator PI = TranslateMap.find(*i);
1573 if (PI != TranslateMap.end())
1574 *i = PI->second;
1575 }
Andrew Trick6b014382012-08-29 21:46:36 +00001576
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001577 // Check for trivial simplification.
Chris Lattner302ba6f2010-12-14 06:17:25 +00001578 if (Value *V = SimplifyInstruction(N, TD)) {
1579 TranslateMap[BBI] = V;
1580 delete N; // Instruction folded away, don't need actual inst
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001581 } else {
1582 // Insert the new instruction into its new home.
1583 EdgeBB->getInstList().insert(InsertPt, N);
1584 if (!BBI->use_empty())
1585 TranslateMap[BBI] = N;
1586 }
1587 }
1588
1589 // Loop over all of the edges from PredBB to BB, changing them to branch
1590 // to EdgeBB instead.
1591 TerminatorInst *PredBBTI = PredBB->getTerminator();
1592 for (unsigned i = 0, e = PredBBTI->getNumSuccessors(); i != e; ++i)
1593 if (PredBBTI->getSuccessor(i) == BB) {
1594 BB->removePredecessor(PredBB);
1595 PredBBTI->setSuccessor(i, EdgeBB);
1596 }
Bill Wendling6a648b82011-06-04 09:42:04 +00001597
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001598 // Recurse, simplifying any other constants.
Chris Lattner302ba6f2010-12-14 06:17:25 +00001599 return FoldCondBranchOnPHI(BI, TD) | true;
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001600 }
Chris Lattnereaba3a12005-09-19 23:49:37 +00001601
1602 return false;
1603}
1604
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001605/// FoldTwoEntryPHINode - Given a BB that starts with the specified two-entry
1606/// PHI node, see if we can eliminate it.
Micah Villmow3574eca2012-10-08 16:38:25 +00001607static bool FoldTwoEntryPHINode(PHINode *PN, const DataLayout *TD) {
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001608 // Ok, this is a two entry PHI node. Check to see if this is a simple "if
1609 // statement", which has a very simple dominance structure. Basically, we
1610 // are trying to find the condition that is being branched on, which
1611 // subsequently causes this merge to happen. We really want control
1612 // dependence information for this check, but simplifycfg can't keep it up
1613 // to date, and this catches most of the cases we care about anyway.
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001614 BasicBlock *BB = PN->getParent();
1615 BasicBlock *IfTrue, *IfFalse;
1616 Value *IfCond = GetIfCondition(BB, IfTrue, IfFalse);
Chris Lattner60d410d2010-12-14 08:01:53 +00001617 if (!IfCond ||
1618 // Don't bother if the branch will be constant folded trivially.
1619 isa<ConstantInt>(IfCond))
1620 return false;
Andrew Trick6b014382012-08-29 21:46:36 +00001621
Chris Lattner822a8792006-11-18 19:19:36 +00001622 // Okay, we found that we can merge this two-entry phi node into a select.
1623 // Doing so would require us to fold *all* two entry phi nodes in this block.
1624 // At some point this becomes non-profitable (particularly if the target
1625 // doesn't support cmov's). Only do this transformation if there are two or
1626 // fewer PHI nodes in this block.
1627 unsigned NumPhis = 0;
1628 for (BasicBlock::iterator I = BB->begin(); isa<PHINode>(I); ++NumPhis, ++I)
1629 if (NumPhis > 2)
1630 return false;
Andrew Trick6b014382012-08-29 21:46:36 +00001631
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001632 // Loop over the PHI's seeing if we can promote them all to select
1633 // instructions. While we are at it, keep track of the instructions
1634 // that need to be moved to the dominating block.
Chris Lattner44da7ca2010-12-14 07:41:39 +00001635 SmallPtrSet<Instruction*, 4> AggressiveInsts;
Peter Collingbourne57808b32011-04-29 18:47:38 +00001636 unsigned MaxCostVal0 = PHINodeFoldingThreshold,
1637 MaxCostVal1 = PHINodeFoldingThreshold;
Andrew Trick6b014382012-08-29 21:46:36 +00001638
Chris Lattner3aff13b2010-12-14 08:46:09 +00001639 for (BasicBlock::iterator II = BB->begin(); isa<PHINode>(II);) {
1640 PHINode *PN = cast<PHINode>(II++);
Chris Lattner07ff3532010-12-14 07:20:29 +00001641 if (Value *V = SimplifyInstruction(PN, TD)) {
1642 PN->replaceAllUsesWith(V);
Chris Lattner3aff13b2010-12-14 08:46:09 +00001643 PN->eraseFromParent();
Chris Lattner07ff3532010-12-14 07:20:29 +00001644 continue;
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001645 }
Andrew Trick6b014382012-08-29 21:46:36 +00001646
Peter Collingbournef15907f2011-04-29 18:47:31 +00001647 if (!DominatesMergePoint(PN->getIncomingValue(0), BB, &AggressiveInsts,
1648 MaxCostVal0) ||
1649 !DominatesMergePoint(PN->getIncomingValue(1), BB, &AggressiveInsts,
1650 MaxCostVal1))
Chris Lattner07ff3532010-12-14 07:20:29 +00001651 return false;
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001652 }
Andrew Trick6b014382012-08-29 21:46:36 +00001653
Sylvestre Ledruc8e41c52012-07-23 08:51:15 +00001654 // If we folded the first phi, PN dangles at this point. Refresh it. If
Chris Lattner44da7ca2010-12-14 07:41:39 +00001655 // we ran out of PHIs then we simplified them all.
1656 PN = dyn_cast<PHINode>(BB->begin());
1657 if (PN == 0) return true;
Andrew Trick6b014382012-08-29 21:46:36 +00001658
Chris Lattner3aff13b2010-12-14 08:46:09 +00001659 // Don't fold i1 branches on PHIs which contain binary operators. These can
1660 // often be turned into switches and other things.
1661 if (PN->getType()->isIntegerTy(1) &&
1662 (isa<BinaryOperator>(PN->getIncomingValue(0)) ||
1663 isa<BinaryOperator>(PN->getIncomingValue(1)) ||
1664 isa<BinaryOperator>(IfCond)))
1665 return false;
Andrew Trick6b014382012-08-29 21:46:36 +00001666
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001667 // If we all PHI nodes are promotable, check to make sure that all
1668 // instructions in the predecessor blocks can be promoted as well. If
1669 // not, we won't be able to get rid of the control flow, so it's not
1670 // worth promoting to select instructions.
Chris Lattner44da7ca2010-12-14 07:41:39 +00001671 BasicBlock *DomBlock = 0;
1672 BasicBlock *IfBlock1 = PN->getIncomingBlock(0);
1673 BasicBlock *IfBlock2 = PN->getIncomingBlock(1);
1674 if (cast<BranchInst>(IfBlock1->getTerminator())->isConditional()) {
1675 IfBlock1 = 0;
1676 } else {
1677 DomBlock = *pred_begin(IfBlock1);
1678 for (BasicBlock::iterator I = IfBlock1->begin();!isa<TerminatorInst>(I);++I)
Devang Patel383d7ed2009-02-03 22:12:02 +00001679 if (!AggressiveInsts.count(I) && !isa<DbgInfoIntrinsic>(I)) {
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001680 // This is not an aggressive instruction that we can promote.
1681 // Because of this, we won't be able to get rid of the control
1682 // flow, so the xform is not worth it.
1683 return false;
1684 }
1685 }
Andrew Trick6b014382012-08-29 21:46:36 +00001686
Chris Lattner44da7ca2010-12-14 07:41:39 +00001687 if (cast<BranchInst>(IfBlock2->getTerminator())->isConditional()) {
1688 IfBlock2 = 0;
1689 } else {
1690 DomBlock = *pred_begin(IfBlock2);
1691 for (BasicBlock::iterator I = IfBlock2->begin();!isa<TerminatorInst>(I);++I)
Devang Patel383d7ed2009-02-03 22:12:02 +00001692 if (!AggressiveInsts.count(I) && !isa<DbgInfoIntrinsic>(I)) {
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001693 // This is not an aggressive instruction that we can promote.
1694 // Because of this, we won't be able to get rid of the control
1695 // flow, so the xform is not worth it.
1696 return false;
1697 }
1698 }
Andrew Trick6b014382012-08-29 21:46:36 +00001699
Chris Lattnere0b18e52010-12-14 07:23:10 +00001700 DEBUG(dbgs() << "FOUND IF CONDITION! " << *IfCond << " T: "
Chris Lattner44da7ca2010-12-14 07:41:39 +00001701 << IfTrue->getName() << " F: " << IfFalse->getName() << "\n");
Andrew Trick6b014382012-08-29 21:46:36 +00001702
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001703 // If we can still promote the PHI nodes after this gauntlet of tests,
1704 // do all of the PHI's now.
Chris Lattner3aff13b2010-12-14 08:46:09 +00001705 Instruction *InsertPt = DomBlock->getTerminator();
Devang Pateld3a17882011-05-19 20:52:46 +00001706 IRBuilder<true, NoFolder> Builder(InsertPt);
Andrew Trick6b014382012-08-29 21:46:36 +00001707
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001708 // Move all 'aggressive' instructions, which are defined in the
1709 // conditional parts of the if's up to the dominating block.
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001710 if (IfBlock1)
Chris Lattner3aff13b2010-12-14 08:46:09 +00001711 DomBlock->getInstList().splice(InsertPt,
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001712 IfBlock1->getInstList(), IfBlock1->begin(),
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001713 IfBlock1->getTerminator());
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001714 if (IfBlock2)
Chris Lattner3aff13b2010-12-14 08:46:09 +00001715 DomBlock->getInstList().splice(InsertPt,
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001716 IfBlock2->getInstList(), IfBlock2->begin(),
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001717 IfBlock2->getTerminator());
Andrew Trick6b014382012-08-29 21:46:36 +00001718
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001719 while (PHINode *PN = dyn_cast<PHINode>(BB->begin())) {
1720 // Change the PHI node into a select instruction.
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001721 Value *TrueVal = PN->getIncomingValue(PN->getIncomingBlock(0) == IfFalse);
1722 Value *FalseVal = PN->getIncomingValue(PN->getIncomingBlock(0) == IfTrue);
Andrew Trick6b014382012-08-29 21:46:36 +00001723
1724 SelectInst *NV =
Devang Patelf60364d2011-05-18 18:16:44 +00001725 cast<SelectInst>(Builder.CreateSelect(IfCond, TrueVal, FalseVal, ""));
Chris Lattner86cc4232007-02-11 01:37:51 +00001726 PN->replaceAllUsesWith(NV);
1727 NV->takeName(PN);
Chris Lattner302ba6f2010-12-14 06:17:25 +00001728 PN->eraseFromParent();
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001729 }
Andrew Trick6b014382012-08-29 21:46:36 +00001730
Chris Lattner60d410d2010-12-14 08:01:53 +00001731 // At this point, IfBlock1 and IfBlock2 are both empty, so our if statement
1732 // has been flattened. Change DomBlock to jump directly to our new block to
1733 // avoid other simplifycfg's kicking in on the diamond.
1734 TerminatorInst *OldTI = DomBlock->getTerminator();
Devang Patelf60364d2011-05-18 18:16:44 +00001735 Builder.SetInsertPoint(OldTI);
1736 Builder.CreateBr(BB);
Chris Lattner60d410d2010-12-14 08:01:53 +00001737 OldTI->eraseFromParent();
Chris Lattnerf58c1a52005-09-23 06:39:30 +00001738 return true;
1739}
Chris Lattnereaba3a12005-09-19 23:49:37 +00001740
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001741/// SimplifyCondBranchToTwoReturns - If we found a conditional branch that goes
1742/// to two returning blocks, try to merge them together into one return,
1743/// introducing a select if the return values disagree.
Andrew Trick6b014382012-08-29 21:46:36 +00001744static bool SimplifyCondBranchToTwoReturns(BranchInst *BI,
Devang Patel176ec402011-05-18 21:33:11 +00001745 IRBuilder<> &Builder) {
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001746 assert(BI->isConditional() && "Must be a conditional branch");
1747 BasicBlock *TrueSucc = BI->getSuccessor(0);
1748 BasicBlock *FalseSucc = BI->getSuccessor(1);
1749 ReturnInst *TrueRet = cast<ReturnInst>(TrueSucc->getTerminator());
1750 ReturnInst *FalseRet = cast<ReturnInst>(FalseSucc->getTerminator());
Andrew Trick6b014382012-08-29 21:46:36 +00001751
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001752 // Check to ensure both blocks are empty (just a return) or optionally empty
1753 // with PHI nodes. If there are other instructions, merging would cause extra
1754 // computation on one path or the other.
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001755 if (!TrueSucc->getFirstNonPHIOrDbg()->isTerminator())
Devang Patel2cc86a12009-02-05 00:30:42 +00001756 return false;
Chris Lattner9a2b72a2010-12-13 01:47:07 +00001757 if (!FalseSucc->getFirstNonPHIOrDbg()->isTerminator())
Devang Patel2cc86a12009-02-05 00:30:42 +00001758 return false;
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001759
Devang Patel176ec402011-05-18 21:33:11 +00001760 Builder.SetInsertPoint(BI);
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001761 // Okay, we found a branch that is going to two return nodes. If
1762 // there is no return value for this function, just change the
1763 // branch into a return.
1764 if (FalseRet->getNumOperands() == 0) {
1765 TrueSucc->removePredecessor(BI->getParent());
1766 FalseSucc->removePredecessor(BI->getParent());
Devang Patel176ec402011-05-18 21:33:11 +00001767 Builder.CreateRetVoid();
Eli Friedman080efb82008-12-16 20:54:32 +00001768 EraseTerminatorInstAndDCECond(BI);
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001769 return true;
1770 }
Andrew Trick6b014382012-08-29 21:46:36 +00001771
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001772 // Otherwise, figure out what the true and false return values are
1773 // so we can insert a new select instruction.
1774 Value *TrueValue = TrueRet->getReturnValue();
1775 Value *FalseValue = FalseRet->getReturnValue();
Andrew Trick6b014382012-08-29 21:46:36 +00001776
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001777 // Unwrap any PHI nodes in the return blocks.
1778 if (PHINode *TVPN = dyn_cast_or_null<PHINode>(TrueValue))
1779 if (TVPN->getParent() == TrueSucc)
1780 TrueValue = TVPN->getIncomingValueForBlock(BI->getParent());
1781 if (PHINode *FVPN = dyn_cast_or_null<PHINode>(FalseValue))
1782 if (FVPN->getParent() == FalseSucc)
1783 FalseValue = FVPN->getIncomingValueForBlock(BI->getParent());
Andrew Trick6b014382012-08-29 21:46:36 +00001784
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001785 // In order for this transformation to be safe, we must be able to
1786 // unconditionally execute both operands to the return. This is
1787 // normally the case, but we could have a potentially-trapping
1788 // constant expression that prevents this transformation from being
1789 // safe.
1790 if (ConstantExpr *TCV = dyn_cast_or_null<ConstantExpr>(TrueValue))
1791 if (TCV->canTrap())
1792 return false;
1793 if (ConstantExpr *FCV = dyn_cast_or_null<ConstantExpr>(FalseValue))
1794 if (FCV->canTrap())
1795 return false;
Andrew Trick6b014382012-08-29 21:46:36 +00001796
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001797 // Okay, we collected all the mapped values and checked them for sanity, and
1798 // defined to really do this transformation. First, update the CFG.
1799 TrueSucc->removePredecessor(BI->getParent());
1800 FalseSucc->removePredecessor(BI->getParent());
Andrew Trick6b014382012-08-29 21:46:36 +00001801
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001802 // Insert select instructions where needed.
1803 Value *BrCond = BI->getCondition();
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001804 if (TrueValue) {
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001805 // Insert a select if the results differ.
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001806 if (TrueValue == FalseValue || isa<UndefValue>(FalseValue)) {
1807 } else if (isa<UndefValue>(TrueValue)) {
1808 TrueValue = FalseValue;
1809 } else {
Devang Patel176ec402011-05-18 21:33:11 +00001810 TrueValue = Builder.CreateSelect(BrCond, TrueValue,
1811 FalseValue, "retval");
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001812 }
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001813 }
1814
Andrew Trick6b014382012-08-29 21:46:36 +00001815 Value *RI = !TrueValue ?
Devang Patel176ec402011-05-18 21:33:11 +00001816 Builder.CreateRetVoid() : Builder.CreateRet(TrueValue);
1817
Daniel Dunbare317bcc2009-08-23 10:29:55 +00001818 (void) RI;
Andrew Trick6b014382012-08-29 21:46:36 +00001819
David Greene89d6fd32010-01-05 01:26:52 +00001820 DEBUG(dbgs() << "\nCHANGING BRANCH TO TWO RETURNS INTO SELECT:"
Chris Lattnerbdff5482009-08-23 04:37:46 +00001821 << "\n " << *BI << "NewRet = " << *RI
1822 << "TRUEBLOCK: " << *TrueSucc << "FALSEBLOCK: "<< *FalseSucc);
Andrew Trick6b014382012-08-29 21:46:36 +00001823
Eli Friedman080efb82008-12-16 20:54:32 +00001824 EraseTerminatorInstAndDCECond(BI);
1825
Chris Lattnerc9e495c2008-04-24 00:01:19 +00001826 return true;
1827}
1828
Nick Lewycky06cc66f2011-12-27 04:31:52 +00001829/// ExtractBranchMetadata - Given a conditional BranchInstruction, retrieve the
1830/// probabilities of the branch taking each edge. Fills in the two APInt
1831/// parameters and return true, or returns false if no or invalid metadata was
1832/// found.
1833static bool ExtractBranchMetadata(BranchInst *BI,
Manman Ren062986c2012-09-15 00:39:57 +00001834 uint64_t &ProbTrue, uint64_t &ProbFalse) {
Nick Lewycky06cc66f2011-12-27 04:31:52 +00001835 assert(BI->isConditional() &&
1836 "Looking for probabilities on unconditional branch?");
1837 MDNode *ProfileData = BI->getMetadata(LLVMContext::MD_prof);
Nick Lewycky91968482011-12-27 18:27:22 +00001838 if (!ProfileData || ProfileData->getNumOperands() != 3) return false;
Nick Lewycky06cc66f2011-12-27 04:31:52 +00001839 ConstantInt *CITrue = dyn_cast<ConstantInt>(ProfileData->getOperand(1));
1840 ConstantInt *CIFalse = dyn_cast<ConstantInt>(ProfileData->getOperand(2));
Nick Lewycky91968482011-12-27 18:27:22 +00001841 if (!CITrue || !CIFalse) return false;
Manman Ren062986c2012-09-15 00:39:57 +00001842 ProbTrue = CITrue->getValue().getZExtValue();
1843 ProbFalse = CIFalse->getValue().getZExtValue();
Nick Lewycky06cc66f2011-12-27 04:31:52 +00001844 return true;
1845}
1846
Manman Renee28e0f2012-06-13 05:43:29 +00001847/// checkCSEInPredecessor - Return true if the given instruction is available
1848/// in its predecessor block. If yes, the instruction will be removed.
1849///
Benjamin Kramer23d36222012-07-13 13:25:15 +00001850static bool checkCSEInPredecessor(Instruction *Inst, BasicBlock *PB) {
Manman Renee28e0f2012-06-13 05:43:29 +00001851 if (!isa<BinaryOperator>(Inst) && !isa<CmpInst>(Inst))
1852 return false;
1853 for (BasicBlock::iterator I = PB->begin(), E = PB->end(); I != E; I++) {
1854 Instruction *PBI = &*I;
1855 // Check whether Inst and PBI generate the same value.
1856 if (Inst->isIdenticalTo(PBI)) {
1857 Inst->replaceAllUsesWith(PBI);
1858 Inst->eraseFromParent();
1859 return true;
1860 }
1861 }
1862 return false;
1863}
Nick Lewycky6c00c6a2012-01-25 09:43:14 +00001864
Chris Lattnerc8fbc342011-04-11 23:24:57 +00001865/// FoldBranchToCommonDest - If this basic block is simple enough, and if a
1866/// predecessor branches to us and one of our successors, fold the block into
1867/// the predecessor and use logical operations to pick the right destination.
Dan Gohman4b35f832009-06-27 21:30:38 +00001868bool llvm::FoldBranchToCommonDest(BranchInst *BI) {
Chris Lattner093a4382008-07-13 22:23:11 +00001869 BasicBlock *BB = BI->getParent();
Devang Pateld3a17882011-05-19 20:52:46 +00001870
Manman Renee28e0f2012-06-13 05:43:29 +00001871 Instruction *Cond = 0;
1872 if (BI->isConditional())
1873 Cond = dyn_cast<Instruction>(BI->getCondition());
1874 else {
1875 // For unconditional branch, check for a simple CFG pattern, where
1876 // BB has a single predecessor and BB's successor is also its predecessor's
1877 // successor. If such pattern exisits, check for CSE between BB and its
1878 // predecessor.
1879 if (BasicBlock *PB = BB->getSinglePredecessor())
1880 if (BranchInst *PBI = dyn_cast<BranchInst>(PB->getTerminator()))
1881 if (PBI->isConditional() &&
1882 (BI->getSuccessor(0) == PBI->getSuccessor(0) ||
1883 BI->getSuccessor(0) == PBI->getSuccessor(1))) {
1884 for (BasicBlock::iterator I = BB->begin(), E = BB->end();
1885 I != E; ) {
1886 Instruction *Curr = I++;
1887 if (isa<CmpInst>(Curr)) {
1888 Cond = Curr;
1889 break;
1890 }
1891 // Quit if we can't remove this instruction.
1892 if (!checkCSEInPredecessor(Curr, PB))
1893 return false;
1894 }
1895 }
1896
1897 if (Cond == 0)
1898 return false;
1899 }
Andrew Trick6b014382012-08-29 21:46:36 +00001900
Owen Andersone84178a2010-07-14 19:52:16 +00001901 if (Cond == 0 || (!isa<CmpInst>(Cond) && !isa<BinaryOperator>(Cond)) ||
1902 Cond->getParent() != BB || !Cond->hasOneUse())
1903 return false;
Devang Pateld4181942011-04-06 22:37:20 +00001904
Chris Lattner1347e872008-07-13 21:12:01 +00001905 // Only allow this if the condition is a simple instruction that can be
1906 // executed unconditionally. It must be in the same block as the branch, and
1907 // must be at the front of the block.
Devang Pateld0a203d2009-02-04 21:39:48 +00001908 BasicBlock::iterator FrontIt = BB->front();
Chris Lattner3c6e7462011-04-14 02:44:53 +00001909
Devang Pateld0a203d2009-02-04 21:39:48 +00001910 // Ignore dbg intrinsics.
Chris Lattner3c6e7462011-04-14 02:44:53 +00001911 while (isa<DbgInfoIntrinsic>(FrontIt)) ++FrontIt;
Nick Lewycky9d523102011-12-26 20:37:40 +00001912
Owen Andersone84178a2010-07-14 19:52:16 +00001913 // Allow a single instruction to be hoisted in addition to the compare
1914 // that feeds the branch. We later ensure that any values that _it_ uses
1915 // were also live in the predecessor, so that we don't unnecessarily create
1916 // register pressure or inhibit out-of-order execution.
1917 Instruction *BonusInst = 0;
1918 if (&*FrontIt != Cond &&
Owen Anderson2722dfa2010-07-15 16:38:22 +00001919 FrontIt->hasOneUse() && *FrontIt->use_begin() == Cond &&
Dan Gohmanf0426602011-12-14 23:49:11 +00001920 isSafeToSpeculativelyExecute(FrontIt)) {
Owen Andersone84178a2010-07-14 19:52:16 +00001921 BonusInst = &*FrontIt;
1922 ++FrontIt;
Andrew Trick6b014382012-08-29 21:46:36 +00001923
Chris Lattner3c6e7462011-04-14 02:44:53 +00001924 // Ignore dbg intrinsics.
1925 while (isa<DbgInfoIntrinsic>(FrontIt)) ++FrontIt;
Devang Patel60d490c2011-04-07 23:11:25 +00001926 }
1927
Owen Andersone84178a2010-07-14 19:52:16 +00001928 // Only a single bonus inst is allowed.
1929 if (&*FrontIt != Cond)
1930 return false;
Andrew Trick6b014382012-08-29 21:46:36 +00001931
Chris Lattner1347e872008-07-13 21:12:01 +00001932 // Make sure the instruction after the condition is the cond branch.
1933 BasicBlock::iterator CondIt = Cond; ++CondIt;
Chris Lattner3c6e7462011-04-14 02:44:53 +00001934
Devang Pateld0a203d2009-02-04 21:39:48 +00001935 // Ingore dbg intrinsics.
Chris Lattner3c6e7462011-04-14 02:44:53 +00001936 while (isa<DbgInfoIntrinsic>(CondIt)) ++CondIt;
Andrew Trick6b014382012-08-29 21:46:36 +00001937
Chris Lattner3c6e7462011-04-14 02:44:53 +00001938 if (&*CondIt != BI)
Chris Lattner1347e872008-07-13 21:12:01 +00001939 return false;
Chris Lattner6ff645b2009-01-19 23:03:13 +00001940
1941 // Cond is known to be a compare or binary operator. Check to make sure that
1942 // neither operand is a potentially-trapping constant expression.
1943 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Cond->getOperand(0)))
1944 if (CE->canTrap())
1945 return false;
1946 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Cond->getOperand(1)))
1947 if (CE->canTrap())
1948 return false;
Andrew Trick6b014382012-08-29 21:46:36 +00001949
Chris Lattner1347e872008-07-13 21:12:01 +00001950 // Finally, don't infinitely unroll conditional loops.
1951 BasicBlock *TrueDest = BI->getSuccessor(0);
Manman Renee28e0f2012-06-13 05:43:29 +00001952 BasicBlock *FalseDest = (BI->isConditional()) ? BI->getSuccessor(1) : 0;
Chris Lattner1347e872008-07-13 21:12:01 +00001953 if (TrueDest == BB || FalseDest == BB)
1954 return false;
Devang Pateld4181942011-04-06 22:37:20 +00001955
Chris Lattner1347e872008-07-13 21:12:01 +00001956 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
1957 BasicBlock *PredBlock = *PI;
1958 BranchInst *PBI = dyn_cast<BranchInst>(PredBlock->getTerminator());
Andrew Trick6b014382012-08-29 21:46:36 +00001959
Chris Lattner093a4382008-07-13 22:23:11 +00001960 // Check that we have two conditional branches. If there is a PHI node in
1961 // the common successor, verify that the same value flows in from both
1962 // blocks.
Manman Renee28e0f2012-06-13 05:43:29 +00001963 SmallVector<PHINode*, 4> PHIs;
1964 if (PBI == 0 || PBI->isUnconditional() ||
Andrew Trick6b014382012-08-29 21:46:36 +00001965 (BI->isConditional() &&
Manman Renee28e0f2012-06-13 05:43:29 +00001966 !SafeToMergeTerminators(BI, PBI)) ||
1967 (!BI->isConditional() &&
1968 !isProfitableToFoldUnconditional(BI, PBI, Cond, PHIs)))
Chris Lattner1347e872008-07-13 21:12:01 +00001969 continue;
Andrew Trick6b014382012-08-29 21:46:36 +00001970
Chris Lattner3c6e7462011-04-14 02:44:53 +00001971 // Determine if the two branches share a common destination.
Axel Naumann3780ad82012-09-17 14:20:57 +00001972 Instruction::BinaryOps Opc = Instruction::BinaryOpsEnd;
Chris Lattner3c6e7462011-04-14 02:44:53 +00001973 bool InvertPredCond = false;
Andrew Trick6b014382012-08-29 21:46:36 +00001974
Manman Renee28e0f2012-06-13 05:43:29 +00001975 if (BI->isConditional()) {
1976 if (PBI->getSuccessor(0) == TrueDest)
1977 Opc = Instruction::Or;
1978 else if (PBI->getSuccessor(1) == FalseDest)
1979 Opc = Instruction::And;
1980 else if (PBI->getSuccessor(0) == FalseDest)
1981 Opc = Instruction::And, InvertPredCond = true;
1982 else if (PBI->getSuccessor(1) == TrueDest)
1983 Opc = Instruction::Or, InvertPredCond = true;
1984 else
1985 continue;
1986 } else {
1987 if (PBI->getSuccessor(0) != TrueDest && PBI->getSuccessor(1) != TrueDest)
1988 continue;
1989 }
Chris Lattner3c6e7462011-04-14 02:44:53 +00001990
Owen Andersone84178a2010-07-14 19:52:16 +00001991 // Ensure that any values used in the bonus instruction are also used
1992 // by the terminator of the predecessor. This means that those values
Andrew Trick6b014382012-08-29 21:46:36 +00001993 // must already have been resolved, so we won't be inhibiting the
Owen Andersone84178a2010-07-14 19:52:16 +00001994 // out-of-order core by speculating them earlier.
1995 if (BonusInst) {
1996 // Collect the values used by the bonus inst
1997 SmallPtrSet<Value*, 4> UsedValues;
1998 for (Instruction::op_iterator OI = BonusInst->op_begin(),
1999 OE = BonusInst->op_end(); OI != OE; ++OI) {
Nick Lewycky9d523102011-12-26 20:37:40 +00002000 Value *V = *OI;
Owen Andersone84178a2010-07-14 19:52:16 +00002001 if (!isa<Constant>(V))
2002 UsedValues.insert(V);
2003 }
2004
2005 SmallVector<std::pair<Value*, unsigned>, 4> Worklist;
2006 Worklist.push_back(std::make_pair(PBI->getOperand(0), 0));
Andrew Trick6b014382012-08-29 21:46:36 +00002007
Owen Andersone84178a2010-07-14 19:52:16 +00002008 // Walk up to four levels back up the use-def chain of the predecessor's
2009 // terminator to see if all those values were used. The choice of four
2010 // levels is arbitrary, to provide a compile-time-cost bound.
2011 while (!Worklist.empty()) {
2012 std::pair<Value*, unsigned> Pair = Worklist.back();
2013 Worklist.pop_back();
Andrew Trick6b014382012-08-29 21:46:36 +00002014
Owen Andersone84178a2010-07-14 19:52:16 +00002015 if (Pair.second >= 4) continue;
2016 UsedValues.erase(Pair.first);
2017 if (UsedValues.empty()) break;
Andrew Trick6b014382012-08-29 21:46:36 +00002018
Chris Lattnerdaa02ab2010-12-13 07:00:06 +00002019 if (Instruction *I = dyn_cast<Instruction>(Pair.first)) {
Owen Andersone84178a2010-07-14 19:52:16 +00002020 for (Instruction::op_iterator OI = I->op_begin(), OE = I->op_end();
2021 OI != OE; ++OI)
2022 Worklist.push_back(std::make_pair(OI->get(), Pair.second+1));
Andrew Trick6b014382012-08-29 21:46:36 +00002023 }
Owen Andersone84178a2010-07-14 19:52:16 +00002024 }
Andrew Trick6b014382012-08-29 21:46:36 +00002025
Owen Andersone84178a2010-07-14 19:52:16 +00002026 if (!UsedValues.empty()) return false;
2027 }
Chris Lattner36989092008-07-13 21:20:19 +00002028
David Greene89d6fd32010-01-05 01:26:52 +00002029 DEBUG(dbgs() << "FOLDING BRANCH TO COMMON DEST:\n" << *PBI << *BB);
Andrew Trick6b014382012-08-29 21:46:36 +00002030 IRBuilder<> Builder(PBI);
Devang Pateld3a17882011-05-19 20:52:46 +00002031
Chris Lattner36989092008-07-13 21:20:19 +00002032 // If we need to invert the condition in the pred block to match, do so now.
2033 if (InvertPredCond) {
Chris Lattnerdaa02ab2010-12-13 07:00:06 +00002034 Value *NewCond = PBI->getCondition();
Andrew Trick6b014382012-08-29 21:46:36 +00002035
Chris Lattnerdaa02ab2010-12-13 07:00:06 +00002036 if (NewCond->hasOneUse() && isa<CmpInst>(NewCond)) {
2037 CmpInst *CI = cast<CmpInst>(NewCond);
2038 CI->setPredicate(CI->getInversePredicate());
2039 } else {
Andrew Trick6b014382012-08-29 21:46:36 +00002040 NewCond = Builder.CreateNot(NewCond,
Devang Pateld3a17882011-05-19 20:52:46 +00002041 PBI->getCondition()->getName()+".not");
Chris Lattnerdaa02ab2010-12-13 07:00:06 +00002042 }
Andrew Trick6b014382012-08-29 21:46:36 +00002043
Chris Lattner1347e872008-07-13 21:12:01 +00002044 PBI->setCondition(NewCond);
Nick Lewyckyc9a1aed2011-12-26 20:54:14 +00002045 PBI->swapSuccessors();
Chris Lattner1347e872008-07-13 21:12:01 +00002046 }
Andrew Trick6b014382012-08-29 21:46:36 +00002047
Owen Andersone84178a2010-07-14 19:52:16 +00002048 // If we have a bonus inst, clone it into the predecessor block.
2049 Instruction *NewBonus = 0;
2050 if (BonusInst) {
2051 NewBonus = BonusInst->clone();
2052 PredBlock->getInstList().insert(PBI, NewBonus);
2053 NewBonus->takeName(BonusInst);
2054 BonusInst->setName(BonusInst->getName()+".old");
2055 }
Andrew Trick6b014382012-08-29 21:46:36 +00002056
Chris Lattner36989092008-07-13 21:20:19 +00002057 // Clone Cond into the predecessor basic block, and or/and the
2058 // two conditions together.
Nick Lewycky67760642009-09-27 07:38:41 +00002059 Instruction *New = Cond->clone();
Owen Andersone84178a2010-07-14 19:52:16 +00002060 if (BonusInst) New->replaceUsesOfWith(BonusInst, NewBonus);
Chris Lattner36989092008-07-13 21:20:19 +00002061 PredBlock->getInstList().insert(PBI, New);
2062 New->takeName(Cond);
2063 Cond->setName(New->getName()+".old");
Andrew Trick6b014382012-08-29 21:46:36 +00002064
Manman Renee28e0f2012-06-13 05:43:29 +00002065 if (BI->isConditional()) {
Andrew Trick6b014382012-08-29 21:46:36 +00002066 Instruction *NewCond =
Manman Renee28e0f2012-06-13 05:43:29 +00002067 cast<Instruction>(Builder.CreateBinOp(Opc, PBI->getCondition(),
Devang Pateld3a17882011-05-19 20:52:46 +00002068 New, "or.cond"));
Manman Renee28e0f2012-06-13 05:43:29 +00002069 PBI->setCondition(NewCond);
2070
Manman Ren062986c2012-09-15 00:39:57 +00002071 uint64_t PredTrueWeight, PredFalseWeight, SuccTrueWeight, SuccFalseWeight;
2072 bool PredHasWeights = ExtractBranchMetadata(PBI, PredTrueWeight,
2073 PredFalseWeight);
2074 bool SuccHasWeights = ExtractBranchMetadata(BI, SuccTrueWeight,
2075 SuccFalseWeight);
2076 SmallVector<uint64_t, 8> NewWeights;
2077
Manman Renee28e0f2012-06-13 05:43:29 +00002078 if (PBI->getSuccessor(0) == BB) {
Manman Ren062986c2012-09-15 00:39:57 +00002079 if (PredHasWeights && SuccHasWeights) {
2080 // PBI: br i1 %x, BB, FalseDest
2081 // BI: br i1 %y, TrueDest, FalseDest
2082 //TrueWeight is TrueWeight for PBI * TrueWeight for BI.
2083 NewWeights.push_back(PredTrueWeight * SuccTrueWeight);
2084 //FalseWeight is FalseWeight for PBI * TotalWeight for BI +
2085 // TrueWeight for PBI * FalseWeight for BI.
2086 // We assume that total weights of a BranchInst can fit into 32 bits.
2087 // Therefore, we will not have overflow using 64-bit arithmetic.
2088 NewWeights.push_back(PredFalseWeight * (SuccFalseWeight +
2089 SuccTrueWeight) + PredTrueWeight * SuccFalseWeight);
2090 }
Manman Renee28e0f2012-06-13 05:43:29 +00002091 AddPredecessorToBlock(TrueDest, PredBlock, BB);
2092 PBI->setSuccessor(0, TrueDest);
2093 }
2094 if (PBI->getSuccessor(1) == BB) {
Manman Ren062986c2012-09-15 00:39:57 +00002095 if (PredHasWeights && SuccHasWeights) {
2096 // PBI: br i1 %x, TrueDest, BB
2097 // BI: br i1 %y, TrueDest, FalseDest
2098 //TrueWeight is TrueWeight for PBI * TotalWeight for BI +
2099 // FalseWeight for PBI * TrueWeight for BI.
2100 NewWeights.push_back(PredTrueWeight * (SuccFalseWeight +
2101 SuccTrueWeight) + PredFalseWeight * SuccTrueWeight);
2102 //FalseWeight is FalseWeight for PBI * FalseWeight for BI.
2103 NewWeights.push_back(PredFalseWeight * SuccFalseWeight);
2104 }
Manman Renee28e0f2012-06-13 05:43:29 +00002105 AddPredecessorToBlock(FalseDest, PredBlock, BB);
2106 PBI->setSuccessor(1, FalseDest);
2107 }
Manman Ren062986c2012-09-15 00:39:57 +00002108 if (NewWeights.size() == 2) {
2109 // Halve the weights if any of them cannot fit in an uint32_t
2110 FitWeights(NewWeights);
2111
2112 SmallVector<uint32_t, 8> MDWeights(NewWeights.begin(),NewWeights.end());
2113 PBI->setMetadata(LLVMContext::MD_prof,
2114 MDBuilder(BI->getContext()).
2115 createBranchWeights(MDWeights));
2116 } else
2117 PBI->setMetadata(LLVMContext::MD_prof, NULL);
Manman Renee28e0f2012-06-13 05:43:29 +00002118 } else {
2119 // Update PHI nodes in the common successors.
2120 for (unsigned i = 0, e = PHIs.size(); i != e; ++i) {
Nick Lewyckyedb58422012-06-24 10:15:42 +00002121 ConstantInt *PBI_C = cast<ConstantInt>(
Manman Renee28e0f2012-06-13 05:43:29 +00002122 PHIs[i]->getIncomingValueForBlock(PBI->getParent()));
2123 assert(PBI_C->getType()->isIntegerTy(1));
2124 Instruction *MergedCond = 0;
2125 if (PBI->getSuccessor(0) == TrueDest) {
2126 // Create (PBI_Cond and PBI_C) or (!PBI_Cond and BI_Value)
2127 // PBI_C is true: PBI_Cond or (!PBI_Cond and BI_Value)
2128 // is false: !PBI_Cond and BI_Value
2129 Instruction *NotCond =
2130 cast<Instruction>(Builder.CreateNot(PBI->getCondition(),
2131 "not.cond"));
2132 MergedCond =
2133 cast<Instruction>(Builder.CreateBinOp(Instruction::And,
2134 NotCond, New,
2135 "and.cond"));
2136 if (PBI_C->isOne())
2137 MergedCond =
2138 cast<Instruction>(Builder.CreateBinOp(Instruction::Or,
2139 PBI->getCondition(), MergedCond,
2140 "or.cond"));
2141 } else {
2142 // Create (PBI_Cond and BI_Value) or (!PBI_Cond and PBI_C)
2143 // PBI_C is true: (PBI_Cond and BI_Value) or (!PBI_Cond)
2144 // is false: PBI_Cond and BI_Value
Andrew Trick6b014382012-08-29 21:46:36 +00002145 MergedCond =
Manman Renee28e0f2012-06-13 05:43:29 +00002146 cast<Instruction>(Builder.CreateBinOp(Instruction::And,
2147 PBI->getCondition(), New,
2148 "and.cond"));
2149 if (PBI_C->isOne()) {
2150 Instruction *NotCond =
2151 cast<Instruction>(Builder.CreateNot(PBI->getCondition(),
2152 "not.cond"));
Andrew Trick6b014382012-08-29 21:46:36 +00002153 MergedCond =
Manman Renee28e0f2012-06-13 05:43:29 +00002154 cast<Instruction>(Builder.CreateBinOp(Instruction::Or,
2155 NotCond, MergedCond,
2156 "or.cond"));
2157 }
2158 }
2159 // Update PHI Node.
2160 PHIs[i]->setIncomingValue(PHIs[i]->getBasicBlockIndex(PBI->getParent()),
2161 MergedCond);
2162 }
2163 // Change PBI from Conditional to Unconditional.
2164 BranchInst *New_PBI = BranchInst::Create(TrueDest, PBI);
2165 EraseTerminatorInstAndDCECond(PBI);
2166 PBI = New_PBI;
Chris Lattner36989092008-07-13 21:20:19 +00002167 }
Devang Pateld4181942011-04-06 22:37:20 +00002168
Nick Lewycky06cc66f2011-12-27 04:31:52 +00002169 // TODO: If BB is reachable from all paths through PredBlock, then we
2170 // could replace PBI's branch probabilities with BI's.
2171
Chris Lattner3c6e7462011-04-14 02:44:53 +00002172 // Copy any debug value intrinsics into the end of PredBlock.
2173 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
2174 if (isa<DbgInfoIntrinsic>(*I))
2175 I->clone()->insertBefore(PBI);
Andrew Trick6b014382012-08-29 21:46:36 +00002176
Chris Lattner117f8cf2010-12-14 05:57:30 +00002177 return true;
Chris Lattner1347e872008-07-13 21:12:01 +00002178 }
2179 return false;
2180}
2181
Chris Lattner867661a2008-07-13 21:53:26 +00002182/// SimplifyCondBranchToCondBranch - If we have a conditional branch as a
2183/// predecessor of another block, this function tries to simplify it. We know
2184/// that PBI and BI are both conditional branches, and BI is in one of the
2185/// successor blocks of PBI - PBI branches to BI.
2186static bool SimplifyCondBranchToCondBranch(BranchInst *PBI, BranchInst *BI) {
2187 assert(PBI->isConditional() && BI->isConditional());
2188 BasicBlock *BB = BI->getParent();
Dan Gohman4ae51262009-08-12 16:23:25 +00002189
Chris Lattner867661a2008-07-13 21:53:26 +00002190 // If this block ends with a branch instruction, and if there is a
Andrew Trick6b014382012-08-29 21:46:36 +00002191 // predecessor that ends on a branch of the same condition, make
Chris Lattner867661a2008-07-13 21:53:26 +00002192 // this conditional branch redundant.
2193 if (PBI->getCondition() == BI->getCondition() &&
2194 PBI->getSuccessor(0) != PBI->getSuccessor(1)) {
2195 // Okay, the outcome of this conditional branch is statically
2196 // knowable. If this block had a single pred, handle specially.
2197 if (BB->getSinglePredecessor()) {
2198 // Turn this into a branch on constant.
2199 bool CondIsTrue = PBI->getSuccessor(0) == BB;
Andrew Trick6b014382012-08-29 21:46:36 +00002200 BI->setCondition(ConstantInt::get(Type::getInt1Ty(BB->getContext()),
Owen Anderson1d0be152009-08-13 21:58:54 +00002201 CondIsTrue));
Chris Lattner867661a2008-07-13 21:53:26 +00002202 return true; // Nuke the branch on constant.
2203 }
Andrew Trick6b014382012-08-29 21:46:36 +00002204
Chris Lattner867661a2008-07-13 21:53:26 +00002205 // Otherwise, if there are multiple predecessors, insert a PHI that merges
2206 // in the constant and simplify the block result. Subsequent passes of
2207 // simplifycfg will thread the block.
2208 if (BlockIsSimpleEnoughToThreadThrough(BB)) {
Jay Foadd8b4fb42011-03-30 11:19:20 +00002209 pred_iterator PB = pred_begin(BB), PE = pred_end(BB);
Owen Anderson1d0be152009-08-13 21:58:54 +00002210 PHINode *NewPN = PHINode::Create(Type::getInt1Ty(BB->getContext()),
Jay Foad3ecfc862011-03-30 11:28:46 +00002211 std::distance(PB, PE),
Chris Lattner867661a2008-07-13 21:53:26 +00002212 BI->getCondition()->getName() + ".pr",
2213 BB->begin());
Chris Lattnereb388af2008-07-13 21:55:46 +00002214 // Okay, we're going to insert the PHI node. Since PBI is not the only
2215 // predecessor, compute the PHI'd conditional value for all of the preds.
2216 // Any predecessor where the condition is not computable we keep symbolic.
Jay Foadd8b4fb42011-03-30 11:19:20 +00002217 for (pred_iterator PI = PB; PI != PE; ++PI) {
Gabor Greif62539832010-07-12 10:59:23 +00002218 BasicBlock *P = *PI;
2219 if ((PBI = dyn_cast<BranchInst>(P->getTerminator())) &&
Chris Lattner867661a2008-07-13 21:53:26 +00002220 PBI != BI && PBI->isConditional() &&
2221 PBI->getCondition() == BI->getCondition() &&
2222 PBI->getSuccessor(0) != PBI->getSuccessor(1)) {
2223 bool CondIsTrue = PBI->getSuccessor(0) == BB;
Andrew Trick6b014382012-08-29 21:46:36 +00002224 NewPN->addIncoming(ConstantInt::get(Type::getInt1Ty(BB->getContext()),
Gabor Greif62539832010-07-12 10:59:23 +00002225 CondIsTrue), P);
Chris Lattner867661a2008-07-13 21:53:26 +00002226 } else {
Gabor Greif62539832010-07-12 10:59:23 +00002227 NewPN->addIncoming(BI->getCondition(), P);
Chris Lattner867661a2008-07-13 21:53:26 +00002228 }
Gabor Greif62539832010-07-12 10:59:23 +00002229 }
Andrew Trick6b014382012-08-29 21:46:36 +00002230
Chris Lattner867661a2008-07-13 21:53:26 +00002231 BI->setCondition(NewPN);
Chris Lattner867661a2008-07-13 21:53:26 +00002232 return true;
2233 }
2234 }
Andrew Trick6b014382012-08-29 21:46:36 +00002235
Chris Lattner867661a2008-07-13 21:53:26 +00002236 // If this is a conditional branch in an empty block, and if any
2237 // predecessors is a conditional branch to one of our destinations,
2238 // fold the conditions into logical ops and one cond br.
Zhou Shenga8d57fe2009-02-26 06:56:37 +00002239 BasicBlock::iterator BBI = BB->begin();
2240 // Ignore dbg intrinsics.
2241 while (isa<DbgInfoIntrinsic>(BBI))
2242 ++BBI;
2243 if (&*BBI != BI)
Chris Lattnerb8245122008-07-13 22:04:41 +00002244 return false;
Chris Lattner63bf29b2009-01-20 01:15:41 +00002245
Andrew Trick6b014382012-08-29 21:46:36 +00002246
Chris Lattner63bf29b2009-01-20 01:15:41 +00002247 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(BI->getCondition()))
2248 if (CE->canTrap())
2249 return false;
Andrew Trick6b014382012-08-29 21:46:36 +00002250
Chris Lattnerb8245122008-07-13 22:04:41 +00002251 int PBIOp, BIOp;
2252 if (PBI->getSuccessor(0) == BI->getSuccessor(0))
2253 PBIOp = BIOp = 0;
2254 else if (PBI->getSuccessor(0) == BI->getSuccessor(1))
2255 PBIOp = 0, BIOp = 1;
2256 else if (PBI->getSuccessor(1) == BI->getSuccessor(0))
2257 PBIOp = 1, BIOp = 0;
2258 else if (PBI->getSuccessor(1) == BI->getSuccessor(1))
2259 PBIOp = BIOp = 1;
2260 else
2261 return false;
Andrew Trick6b014382012-08-29 21:46:36 +00002262
Chris Lattnerb8245122008-07-13 22:04:41 +00002263 // Check to make sure that the other destination of this branch
2264 // isn't BB itself. If so, this is an infinite loop that will
2265 // keep getting unwound.
2266 if (PBI->getSuccessor(PBIOp) == BB)
2267 return false;
Andrew Trick6b014382012-08-29 21:46:36 +00002268
2269 // Do not perform this transformation if it would require
Chris Lattnerb8245122008-07-13 22:04:41 +00002270 // insertion of a large number of select instructions. For targets
2271 // without predication/cmovs, this is a big pessimization.
2272 BasicBlock *CommonDest = PBI->getSuccessor(PBIOp);
Andrew Trick6b014382012-08-29 21:46:36 +00002273
Chris Lattnerb8245122008-07-13 22:04:41 +00002274 unsigned NumPhis = 0;
2275 for (BasicBlock::iterator II = CommonDest->begin();
2276 isa<PHINode>(II); ++II, ++NumPhis)
2277 if (NumPhis > 2) // Disable this xform.
2278 return false;
Andrew Trick6b014382012-08-29 21:46:36 +00002279
Chris Lattnerb8245122008-07-13 22:04:41 +00002280 // Finally, if everything is ok, fold the branches to logical ops.
2281 BasicBlock *OtherDest = BI->getSuccessor(BIOp ^ 1);
Andrew Trick6b014382012-08-29 21:46:36 +00002282
David Greene89d6fd32010-01-05 01:26:52 +00002283 DEBUG(dbgs() << "FOLDING BRs:" << *PBI->getParent()
Chris Lattnerbdff5482009-08-23 04:37:46 +00002284 << "AND: " << *BI->getParent());
Andrew Trick6b014382012-08-29 21:46:36 +00002285
2286
Chris Lattner093a4382008-07-13 22:23:11 +00002287 // If OtherDest *is* BB, then BB is a basic block with a single conditional
2288 // branch in it, where one edge (OtherDest) goes back to itself but the other
2289 // exits. We don't *know* that the program avoids the infinite loop
2290 // (even though that seems likely). If we do this xform naively, we'll end up
2291 // recursively unpeeling the loop. Since we know that (after the xform is
2292 // done) that the block *is* infinite if reached, we just make it an obviously
2293 // infinite loop with no cond branch.
2294 if (OtherDest == BB) {
2295 // Insert it at the end of the function, because it's either code,
2296 // or it won't matter if it's hot. :)
Owen Anderson1d0be152009-08-13 21:58:54 +00002297 BasicBlock *InfLoopBlock = BasicBlock::Create(BB->getContext(),
2298 "infloop", BB->getParent());
Chris Lattner093a4382008-07-13 22:23:11 +00002299 BranchInst::Create(InfLoopBlock, InfLoopBlock);
2300 OtherDest = InfLoopBlock;
Andrew Trick6b014382012-08-29 21:46:36 +00002301 }
2302
David Greene89d6fd32010-01-05 01:26:52 +00002303 DEBUG(dbgs() << *PBI->getParent()->getParent());
Devang Pateld3a17882011-05-19 20:52:46 +00002304
Chris Lattnerb8245122008-07-13 22:04:41 +00002305 // BI may have other predecessors. Because of this, we leave
2306 // it alone, but modify PBI.
Andrew Trick6b014382012-08-29 21:46:36 +00002307
Chris Lattnerb8245122008-07-13 22:04:41 +00002308 // Make sure we get to CommonDest on True&True directions.
2309 Value *PBICond = PBI->getCondition();
Devang Pateld3a17882011-05-19 20:52:46 +00002310 IRBuilder<true, NoFolder> Builder(PBI);
Chris Lattnerb8245122008-07-13 22:04:41 +00002311 if (PBIOp)
Devang Pateld3a17882011-05-19 20:52:46 +00002312 PBICond = Builder.CreateNot(PBICond, PBICond->getName()+".not");
2313
Chris Lattnerb8245122008-07-13 22:04:41 +00002314 Value *BICond = BI->getCondition();
2315 if (BIOp)
Devang Pateld3a17882011-05-19 20:52:46 +00002316 BICond = Builder.CreateNot(BICond, BICond->getName()+".not");
2317
Chris Lattnerb8245122008-07-13 22:04:41 +00002318 // Merge the conditions.
Devang Pateld3a17882011-05-19 20:52:46 +00002319 Value *Cond = Builder.CreateOr(PBICond, BICond, "brmerge");
Andrew Trick6b014382012-08-29 21:46:36 +00002320
Chris Lattnerb8245122008-07-13 22:04:41 +00002321 // Modify PBI to branch on the new condition to the new dests.
2322 PBI->setCondition(Cond);
2323 PBI->setSuccessor(0, CommonDest);
2324 PBI->setSuccessor(1, OtherDest);
Andrew Trick6b014382012-08-29 21:46:36 +00002325
Manman Ren56654032012-09-17 21:30:40 +00002326 // Update branch weight for PBI.
2327 uint64_t PredTrueWeight, PredFalseWeight, SuccTrueWeight, SuccFalseWeight;
2328 bool PredHasWeights = ExtractBranchMetadata(PBI, PredTrueWeight,
2329 PredFalseWeight);
2330 bool SuccHasWeights = ExtractBranchMetadata(BI, SuccTrueWeight,
2331 SuccFalseWeight);
2332 if (PredHasWeights && SuccHasWeights) {
2333 uint64_t PredCommon = PBIOp ? PredFalseWeight : PredTrueWeight;
2334 uint64_t PredOther = PBIOp ?PredTrueWeight : PredFalseWeight;
2335 uint64_t SuccCommon = BIOp ? SuccFalseWeight : SuccTrueWeight;
2336 uint64_t SuccOther = BIOp ? SuccTrueWeight : SuccFalseWeight;
2337 // The weight to CommonDest should be PredCommon * SuccTotal +
2338 // PredOther * SuccCommon.
2339 // The weight to OtherDest should be PredOther * SuccOther.
2340 SmallVector<uint64_t, 2> NewWeights;
2341 NewWeights.push_back(PredCommon * (SuccCommon + SuccOther) +
2342 PredOther * SuccCommon);
2343 NewWeights.push_back(PredOther * SuccOther);
2344 // Halve the weights if any of them cannot fit in an uint32_t
2345 FitWeights(NewWeights);
2346
2347 SmallVector<uint32_t, 2> MDWeights(NewWeights.begin(),NewWeights.end());
2348 PBI->setMetadata(LLVMContext::MD_prof,
2349 MDBuilder(BI->getContext()).
2350 createBranchWeights(MDWeights));
2351 }
2352
Chris Lattnerb8245122008-07-13 22:04:41 +00002353 // OtherDest may have phi nodes. If so, add an entry from PBI's
2354 // block that are identical to the entries for BI's block.
Chris Lattner6de0a282010-12-14 07:09:42 +00002355 AddPredecessorToBlock(OtherDest, PBI->getParent(), BB);
Andrew Trick6b014382012-08-29 21:46:36 +00002356
Chris Lattnerb8245122008-07-13 22:04:41 +00002357 // We know that the CommonDest already had an edge from PBI to
2358 // it. If it has PHIs though, the PHIs may have different
2359 // entries for BB and PBI's BB. If so, insert a select to make
2360 // them agree.
Chris Lattner6de0a282010-12-14 07:09:42 +00002361 PHINode *PN;
Chris Lattnerb8245122008-07-13 22:04:41 +00002362 for (BasicBlock::iterator II = CommonDest->begin();
2363 (PN = dyn_cast<PHINode>(II)); ++II) {
2364 Value *BIV = PN->getIncomingValueForBlock(BB);
2365 unsigned PBBIdx = PN->getBasicBlockIndex(PBI->getParent());
2366 Value *PBIV = PN->getIncomingValue(PBBIdx);
2367 if (BIV != PBIV) {
2368 // Insert a select in PBI to pick the right value.
Devang Pateld3a17882011-05-19 20:52:46 +00002369 Value *NV = cast<SelectInst>
2370 (Builder.CreateSelect(PBICond, PBIV, BIV, PBIV->getName()+".mux"));
Chris Lattnerb8245122008-07-13 22:04:41 +00002371 PN->setIncomingValue(PBBIdx, NV);
Chris Lattner867661a2008-07-13 21:53:26 +00002372 }
2373 }
Andrew Trick6b014382012-08-29 21:46:36 +00002374
David Greene89d6fd32010-01-05 01:26:52 +00002375 DEBUG(dbgs() << "INTO: " << *PBI->getParent());
2376 DEBUG(dbgs() << *PBI->getParent()->getParent());
Andrew Trick6b014382012-08-29 21:46:36 +00002377
Chris Lattnerb8245122008-07-13 22:04:41 +00002378 // This basic block is probably dead. We know it has at least
2379 // one fewer predecessor.
2380 return true;
Chris Lattner867661a2008-07-13 21:53:26 +00002381}
2382
Frits van Bommel65fdded2011-01-11 12:52:11 +00002383// SimplifyTerminatorOnSelect - Simplifies a terminator by replacing it with a
2384// branch to TrueBB if Cond is true or to FalseBB if Cond is false.
2385// Takes care of updating the successors and removing the old terminator.
2386// Also makes sure not to introduce new successors by assuming that edges to
2387// non-successor TrueBBs and FalseBBs aren't reachable.
2388static bool SimplifyTerminatorOnSelect(TerminatorInst *OldTerm, Value *Cond,
Manman Renb11cbe62012-09-17 22:28:55 +00002389 BasicBlock *TrueBB, BasicBlock *FalseBB,
2390 uint32_t TrueWeight,
2391 uint32_t FalseWeight){
Frits van Bommel65fdded2011-01-11 12:52:11 +00002392 // Remove any superfluous successor edges from the CFG.
2393 // First, figure out which successors to preserve.
2394 // If TrueBB and FalseBB are equal, only try to preserve one copy of that
2395 // successor.
2396 BasicBlock *KeepEdge1 = TrueBB;
2397 BasicBlock *KeepEdge2 = TrueBB != FalseBB ? FalseBB : 0;
2398
2399 // Then remove the rest.
2400 for (unsigned I = 0, E = OldTerm->getNumSuccessors(); I != E; ++I) {
2401 BasicBlock *Succ = OldTerm->getSuccessor(I);
2402 // Make sure only to keep exactly one copy of each edge.
2403 if (Succ == KeepEdge1)
2404 KeepEdge1 = 0;
2405 else if (Succ == KeepEdge2)
2406 KeepEdge2 = 0;
2407 else
2408 Succ->removePredecessor(OldTerm->getParent());
2409 }
2410
Devang Pateld3372b82011-05-18 18:43:31 +00002411 IRBuilder<> Builder(OldTerm);
2412 Builder.SetCurrentDebugLocation(OldTerm->getDebugLoc());
2413
Frits van Bommel65fdded2011-01-11 12:52:11 +00002414 // Insert an appropriate new terminator.
2415 if ((KeepEdge1 == 0) && (KeepEdge2 == 0)) {
2416 if (TrueBB == FalseBB)
2417 // We were only looking for one successor, and it was present.
2418 // Create an unconditional branch to it.
Devang Pateld3372b82011-05-18 18:43:31 +00002419 Builder.CreateBr(TrueBB);
Manman Renb11cbe62012-09-17 22:28:55 +00002420 else {
Frits van Bommel65fdded2011-01-11 12:52:11 +00002421 // We found both of the successors we were looking for.
2422 // Create a conditional branch sharing the condition of the select.
Manman Renb11cbe62012-09-17 22:28:55 +00002423 BranchInst *NewBI = Builder.CreateCondBr(Cond, TrueBB, FalseBB);
2424 if (TrueWeight != FalseWeight)
2425 NewBI->setMetadata(LLVMContext::MD_prof,
2426 MDBuilder(OldTerm->getContext()).
2427 createBranchWeights(TrueWeight, FalseWeight));
2428 }
Frits van Bommel65fdded2011-01-11 12:52:11 +00002429 } else if (KeepEdge1 && (KeepEdge2 || TrueBB == FalseBB)) {
2430 // Neither of the selected blocks were successors, so this
2431 // terminator must be unreachable.
2432 new UnreachableInst(OldTerm->getContext(), OldTerm);
2433 } else {
2434 // One of the selected values was a successor, but the other wasn't.
2435 // Insert an unconditional branch to the one that was found;
2436 // the edge to the one that wasn't must be unreachable.
2437 if (KeepEdge1 == 0)
2438 // Only TrueBB was found.
Devang Pateld3372b82011-05-18 18:43:31 +00002439 Builder.CreateBr(TrueBB);
Frits van Bommel65fdded2011-01-11 12:52:11 +00002440 else
2441 // Only FalseBB was found.
Devang Pateld3372b82011-05-18 18:43:31 +00002442 Builder.CreateBr(FalseBB);
Frits van Bommel65fdded2011-01-11 12:52:11 +00002443 }
2444
2445 EraseTerminatorInstAndDCECond(OldTerm);
2446 return true;
2447}
2448
Frits van Bommelf7b2a9d2011-02-28 09:44:07 +00002449// SimplifySwitchOnSelect - Replaces
2450// (switch (select cond, X, Y)) on constant X, Y
2451// with a branch - conditional if X and Y lead to distinct BBs,
2452// unconditional otherwise.
2453static bool SimplifySwitchOnSelect(SwitchInst *SI, SelectInst *Select) {
2454 // Check for constant integer values in the select.
2455 ConstantInt *TrueVal = dyn_cast<ConstantInt>(Select->getTrueValue());
2456 ConstantInt *FalseVal = dyn_cast<ConstantInt>(Select->getFalseValue());
2457 if (!TrueVal || !FalseVal)
2458 return false;
2459
2460 // Find the relevant condition and destinations.
2461 Value *Condition = Select->getCondition();
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002462 BasicBlock *TrueBB = SI->findCaseValue(TrueVal).getCaseSuccessor();
2463 BasicBlock *FalseBB = SI->findCaseValue(FalseVal).getCaseSuccessor();
Frits van Bommelf7b2a9d2011-02-28 09:44:07 +00002464
Manman Renb11cbe62012-09-17 22:28:55 +00002465 // Get weight for TrueBB and FalseBB.
2466 uint32_t TrueWeight = 0, FalseWeight = 0;
2467 SmallVector<uint64_t, 8> Weights;
2468 bool HasWeights = HasBranchWeights(SI);
2469 if (HasWeights) {
2470 GetBranchWeights(SI, Weights);
2471 if (Weights.size() == 1 + SI->getNumCases()) {
2472 TrueWeight = (uint32_t)Weights[SI->findCaseValue(TrueVal).
2473 getSuccessorIndex()];
2474 FalseWeight = (uint32_t)Weights[SI->findCaseValue(FalseVal).
2475 getSuccessorIndex()];
2476 }
2477 }
2478
Frits van Bommelf7b2a9d2011-02-28 09:44:07 +00002479 // Perform the actual simplification.
Manman Renb11cbe62012-09-17 22:28:55 +00002480 return SimplifyTerminatorOnSelect(SI, Condition, TrueBB, FalseBB,
2481 TrueWeight, FalseWeight);
Frits van Bommelf7b2a9d2011-02-28 09:44:07 +00002482}
2483
Frits van Bommel7ac40c32010-12-05 18:29:03 +00002484// SimplifyIndirectBrOnSelect - Replaces
2485// (indirectbr (select cond, blockaddress(@fn, BlockA),
2486// blockaddress(@fn, BlockB)))
2487// with
2488// (br cond, BlockA, BlockB).
2489static bool SimplifyIndirectBrOnSelect(IndirectBrInst *IBI, SelectInst *SI) {
2490 // Check that both operands of the select are block addresses.
2491 BlockAddress *TBA = dyn_cast<BlockAddress>(SI->getTrueValue());
2492 BlockAddress *FBA = dyn_cast<BlockAddress>(SI->getFalseValue());
2493 if (!TBA || !FBA)
2494 return false;
2495
2496 // Extract the actual blocks.
2497 BasicBlock *TrueBB = TBA->getBasicBlock();
2498 BasicBlock *FalseBB = FBA->getBasicBlock();
2499
Frits van Bommel65fdded2011-01-11 12:52:11 +00002500 // Perform the actual simplification.
Manman Renb11cbe62012-09-17 22:28:55 +00002501 return SimplifyTerminatorOnSelect(IBI, SI->getCondition(), TrueBB, FalseBB,
2502 0, 0);
Frits van Bommel7ac40c32010-12-05 18:29:03 +00002503}
2504
Chris Lattner61c77442010-12-13 03:18:54 +00002505/// TryToSimplifyUncondBranchWithICmpInIt - This is called when we find an icmp
2506/// instruction (a seteq/setne with a constant) as the only instruction in a
2507/// block that ends with an uncond branch. We are looking for a very specific
2508/// pattern that occurs when "A == 1 || A == 2 || A == 3" gets simplified. In
2509/// this case, we merge the first two "or's of icmp" into a switch, but then the
2510/// default value goes to an uncond block with a seteq in it, we get something
2511/// like:
2512///
2513/// switch i8 %A, label %DEFAULT [ i8 1, label %end i8 2, label %end ]
2514/// DEFAULT:
2515/// %tmp = icmp eq i8 %A, 92
2516/// br label %end
2517/// end:
2518/// ... = phi i1 [ true, %entry ], [ %tmp, %DEFAULT ], [ true, %entry ]
Andrew Trick6b014382012-08-29 21:46:36 +00002519///
Chris Lattner61c77442010-12-13 03:18:54 +00002520/// We prefer to split the edge to 'end' so that there is a true/false entry to
2521/// the PHI, merging the third icmp into the switch.
Chris Lattner302ba6f2010-12-14 06:17:25 +00002522static bool TryToSimplifyUncondBranchWithICmpInIt(ICmpInst *ICI,
Micah Villmow3574eca2012-10-08 16:38:25 +00002523 const DataLayout *TD,
Devang Patela23812c2011-05-18 18:28:48 +00002524 IRBuilder<> &Builder) {
Chris Lattner61c77442010-12-13 03:18:54 +00002525 BasicBlock *BB = ICI->getParent();
Devang Patela23812c2011-05-18 18:28:48 +00002526
Chris Lattner61c77442010-12-13 03:18:54 +00002527 // If the block has any PHIs in it or the icmp has multiple uses, it is too
2528 // complex.
2529 if (isa<PHINode>(BB->begin()) || !ICI->hasOneUse()) return false;
2530
2531 Value *V = ICI->getOperand(0);
2532 ConstantInt *Cst = cast<ConstantInt>(ICI->getOperand(1));
Andrew Trick6b014382012-08-29 21:46:36 +00002533
Chris Lattner61c77442010-12-13 03:18:54 +00002534 // The pattern we're looking for is where our only predecessor is a switch on
2535 // 'V' and this block is the default case for the switch. In this case we can
2536 // fold the compared value into the switch to simplify things.
2537 BasicBlock *Pred = BB->getSinglePredecessor();
2538 if (Pred == 0 || !isa<SwitchInst>(Pred->getTerminator())) return false;
Andrew Trick6b014382012-08-29 21:46:36 +00002539
Chris Lattner61c77442010-12-13 03:18:54 +00002540 SwitchInst *SI = cast<SwitchInst>(Pred->getTerminator());
2541 if (SI->getCondition() != V)
2542 return false;
Andrew Trick6b014382012-08-29 21:46:36 +00002543
Chris Lattner61c77442010-12-13 03:18:54 +00002544 // If BB is reachable on a non-default case, then we simply know the value of
2545 // V in this block. Substitute it and constant fold the icmp instruction
2546 // away.
2547 if (SI->getDefaultDest() != BB) {
2548 ConstantInt *VVal = SI->findCaseDest(BB);
2549 assert(VVal && "Should have a unique destination value");
2550 ICI->setOperand(0, VVal);
Andrew Trick6b014382012-08-29 21:46:36 +00002551
Chris Lattner302ba6f2010-12-14 06:17:25 +00002552 if (Value *V = SimplifyInstruction(ICI, TD)) {
2553 ICI->replaceAllUsesWith(V);
Chris Lattner61c77442010-12-13 03:18:54 +00002554 ICI->eraseFromParent();
2555 }
2556 // BB is now empty, so it is likely to simplify away.
2557 return SimplifyCFG(BB) | true;
2558 }
Andrew Trick6b014382012-08-29 21:46:36 +00002559
Chris Lattnerabf70672010-12-13 03:43:57 +00002560 // Ok, the block is reachable from the default dest. If the constant we're
2561 // comparing exists in one of the other edges, then we can constant fold ICI
2562 // and zap it.
Stepan Dyatkovskiy3d3abe02012-03-11 06:09:17 +00002563 if (SI->findCaseValue(Cst) != SI->case_default()) {
Chris Lattnerabf70672010-12-13 03:43:57 +00002564 Value *V;
2565 if (ICI->getPredicate() == ICmpInst::ICMP_EQ)
2566 V = ConstantInt::getFalse(BB->getContext());
2567 else
2568 V = ConstantInt::getTrue(BB->getContext());
Andrew Trick6b014382012-08-29 21:46:36 +00002569
Chris Lattnerabf70672010-12-13 03:43:57 +00002570 ICI->replaceAllUsesWith(V);
2571 ICI->eraseFromParent();
2572 // BB is now empty, so it is likely to simplify away.
2573 return SimplifyCFG(BB) | true;
2574 }
Andrew Trick6b014382012-08-29 21:46:36 +00002575
Chris Lattner61c77442010-12-13 03:18:54 +00002576 // The use of the icmp has to be in the 'end' block, by the only PHI node in
2577 // the block.
2578 BasicBlock *SuccBlock = BB->getTerminator()->getSuccessor(0);
2579 PHINode *PHIUse = dyn_cast<PHINode>(ICI->use_back());
2580 if (PHIUse == 0 || PHIUse != &SuccBlock->front() ||
2581 isa<PHINode>(++BasicBlock::iterator(PHIUse)))
2582 return false;
2583
2584 // If the icmp is a SETEQ, then the default dest gets false, the new edge gets
2585 // true in the PHI.
2586 Constant *DefaultCst = ConstantInt::getTrue(BB->getContext());
2587 Constant *NewCst = ConstantInt::getFalse(BB->getContext());
2588
2589 if (ICI->getPredicate() == ICmpInst::ICMP_EQ)
2590 std::swap(DefaultCst, NewCst);
2591
2592 // Replace ICI (which is used by the PHI for the default value) with true or
2593 // false depending on if it is EQ or NE.
2594 ICI->replaceAllUsesWith(DefaultCst);
2595 ICI->eraseFromParent();
2596
2597 // Okay, the switch goes to this block on a default value. Add an edge from
2598 // the switch to the merge point on the compared value.
2599 BasicBlock *NewBB = BasicBlock::Create(BB->getContext(), "switch.edge",
2600 BB->getParent(), BB);
Manman Renb0102772012-09-17 23:07:43 +00002601 SmallVector<uint64_t, 8> Weights;
2602 bool HasWeights = HasBranchWeights(SI);
2603 if (HasWeights) {
2604 GetBranchWeights(SI, Weights);
2605 if (Weights.size() == 1 + SI->getNumCases()) {
2606 // Split weight for default case to case for "Cst".
2607 Weights[0] = (Weights[0]+1) >> 1;
2608 Weights.push_back(Weights[0]);
2609
2610 SmallVector<uint32_t, 8> MDWeights(Weights.begin(), Weights.end());
2611 SI->setMetadata(LLVMContext::MD_prof,
2612 MDBuilder(SI->getContext()).
2613 createBranchWeights(MDWeights));
2614 }
2615 }
Chris Lattner61c77442010-12-13 03:18:54 +00002616 SI->addCase(Cst, NewBB);
Andrew Trick6b014382012-08-29 21:46:36 +00002617
Chris Lattner61c77442010-12-13 03:18:54 +00002618 // NewBB branches to the phi block, add the uncond branch and the phi entry.
Devang Patela23812c2011-05-18 18:28:48 +00002619 Builder.SetInsertPoint(NewBB);
2620 Builder.SetCurrentDebugLocation(SI->getDebugLoc());
2621 Builder.CreateBr(SuccBlock);
Chris Lattner61c77442010-12-13 03:18:54 +00002622 PHIUse->addIncoming(NewCst, NewBB);
2623 return true;
2624}
2625
Chris Lattner97fdb892010-12-13 05:03:41 +00002626/// SimplifyBranchOnICmpChain - The specified branch is a conditional branch.
2627/// Check to see if it is branching on an or/and chain of icmp instructions, and
2628/// fold it into a switch instruction if so.
Micah Villmow3574eca2012-10-08 16:38:25 +00002629static bool SimplifyBranchOnICmpChain(BranchInst *BI, const DataLayout *TD,
Devang Patel02dd5412011-05-18 23:18:47 +00002630 IRBuilder<> &Builder) {
Chris Lattner97fdb892010-12-13 05:03:41 +00002631 Instruction *Cond = dyn_cast<Instruction>(BI->getCondition());
2632 if (Cond == 0) return false;
Andrew Trick6b014382012-08-29 21:46:36 +00002633
2634
Chris Lattner97fdb892010-12-13 05:03:41 +00002635 // Change br (X == 0 | X == 1), T, F into a switch instruction.
2636 // If this is a bunch of seteq's or'd together, or if it's a bunch of
2637 // 'setne's and'ed together, collect them.
2638 Value *CompVal = 0;
2639 std::vector<ConstantInt*> Values;
2640 bool TrueWhenEqual = true;
2641 Value *ExtraCase = 0;
Benjamin Kramer33828bc2011-02-07 22:37:28 +00002642 unsigned UsedICmps = 0;
Andrew Trick6b014382012-08-29 21:46:36 +00002643
Chris Lattner97fdb892010-12-13 05:03:41 +00002644 if (Cond->getOpcode() == Instruction::Or) {
Benjamin Kramer33828bc2011-02-07 22:37:28 +00002645 CompVal = GatherConstantCompares(Cond, Values, ExtraCase, TD, true,
2646 UsedICmps);
Chris Lattner97fdb892010-12-13 05:03:41 +00002647 } else if (Cond->getOpcode() == Instruction::And) {
Benjamin Kramer33828bc2011-02-07 22:37:28 +00002648 CompVal = GatherConstantCompares(Cond, Values, ExtraCase, TD, false,
2649 UsedICmps);
Chris Lattner97fdb892010-12-13 05:03:41 +00002650 TrueWhenEqual = false;
2651 }
Andrew Trick6b014382012-08-29 21:46:36 +00002652
Chris Lattner97fdb892010-12-13 05:03:41 +00002653 // If we didn't have a multiply compared value, fail.
2654 if (CompVal == 0) return false;
2655
Benjamin Kramer33828bc2011-02-07 22:37:28 +00002656 // Avoid turning single icmps into a switch.
2657 if (UsedICmps <= 1)
2658 return false;
2659
Chris Lattner97fdb892010-12-13 05:03:41 +00002660 // There might be duplicate constants in the list, which the switch
2661 // instruction can't handle, remove them now.
2662 array_pod_sort(Values.begin(), Values.end(), ConstantIntSortPredicate);
2663 Values.erase(std::unique(Values.begin(), Values.end()), Values.end());
Andrew Trick6b014382012-08-29 21:46:36 +00002664
Chris Lattner97fdb892010-12-13 05:03:41 +00002665 // If Extra was used, we require at least two switch values to do the
2666 // transformation. A switch with one value is just an cond branch.
2667 if (ExtraCase && Values.size() < 2) return false;
Andrew Trick6b014382012-08-29 21:46:36 +00002668
Andrew Trickb1b97832012-08-29 21:46:38 +00002669 // TODO: Preserve branch weight metadata, similarly to how
2670 // FoldValueComparisonIntoPredecessors preserves it.
2671
Chris Lattner97fdb892010-12-13 05:03:41 +00002672 // Figure out which block is which destination.
2673 BasicBlock *DefaultBB = BI->getSuccessor(1);
2674 BasicBlock *EdgeBB = BI->getSuccessor(0);
2675 if (!TrueWhenEqual) std::swap(DefaultBB, EdgeBB);
Andrew Trick6b014382012-08-29 21:46:36 +00002676
Chris Lattner97fdb892010-12-13 05:03:41 +00002677 BasicBlock *BB = BI->getParent();
Andrew Trick6b014382012-08-29 21:46:36 +00002678
Chris Lattner302ba6f2010-12-14 06:17:25 +00002679 DEBUG(dbgs() << "Converting 'icmp' chain with " << Values.size()
Chris Lattner117f8cf2010-12-14 05:57:30 +00002680 << " cases into SWITCH. BB is:\n" << *BB);
Andrew Trick6b014382012-08-29 21:46:36 +00002681
Chris Lattner97fdb892010-12-13 05:03:41 +00002682 // If there are any extra values that couldn't be folded into the switch
2683 // then we evaluate them with an explicit branch first. Split the block
2684 // right before the condbr to handle it.
2685 if (ExtraCase) {
2686 BasicBlock *NewBB = BB->splitBasicBlock(BI, "switch.early.test");
2687 // Remove the uncond branch added to the old block.
2688 TerminatorInst *OldTI = BB->getTerminator();
Devang Patel02dd5412011-05-18 23:18:47 +00002689 Builder.SetInsertPoint(OldTI);
2690
Chris Lattner117f8cf2010-12-14 05:57:30 +00002691 if (TrueWhenEqual)
Devang Patel02dd5412011-05-18 23:18:47 +00002692 Builder.CreateCondBr(ExtraCase, EdgeBB, NewBB);
Chris Lattner117f8cf2010-12-14 05:57:30 +00002693 else
Devang Patel02dd5412011-05-18 23:18:47 +00002694 Builder.CreateCondBr(ExtraCase, NewBB, EdgeBB);
Andrew Trick6b014382012-08-29 21:46:36 +00002695
Chris Lattner97fdb892010-12-13 05:03:41 +00002696 OldTI->eraseFromParent();
Andrew Trick6b014382012-08-29 21:46:36 +00002697
Chris Lattner97bd89e2010-12-13 05:34:18 +00002698 // If there are PHI nodes in EdgeBB, then we need to add a new entry to them
2699 // for the edge we just added.
Chris Lattner6de0a282010-12-14 07:09:42 +00002700 AddPredecessorToBlock(EdgeBB, BB, NewBB);
Andrew Trick6b014382012-08-29 21:46:36 +00002701
Chris Lattner302ba6f2010-12-14 06:17:25 +00002702 DEBUG(dbgs() << " ** 'icmp' chain unhandled condition: " << *ExtraCase
2703 << "\nEXTRABB = " << *BB);
Chris Lattner97fdb892010-12-13 05:03:41 +00002704 BB = NewBB;
2705 }
Devang Patel02dd5412011-05-18 23:18:47 +00002706
2707 Builder.SetInsertPoint(BI);
Chris Lattner97fdb892010-12-13 05:03:41 +00002708 // Convert pointer to int before we switch.
2709 if (CompVal->getType()->isPointerTy()) {
Micah Villmow3574eca2012-10-08 16:38:25 +00002710 assert(TD && "Cannot switch on pointer without DataLayout");
Devang Patel02dd5412011-05-18 23:18:47 +00002711 CompVal = Builder.CreatePtrToInt(CompVal,
2712 TD->getIntPtrType(CompVal->getContext()),
2713 "magicptr");
Chris Lattner97fdb892010-12-13 05:03:41 +00002714 }
Andrew Trick6b014382012-08-29 21:46:36 +00002715
Chris Lattner97fdb892010-12-13 05:03:41 +00002716 // Create the new switch instruction now.
Devang Patel02dd5412011-05-18 23:18:47 +00002717 SwitchInst *New = Builder.CreateSwitch(CompVal, DefaultBB, Values.size());
Devang Pateld80e8ed2011-05-17 23:29:05 +00002718
Chris Lattner97fdb892010-12-13 05:03:41 +00002719 // Add all of the 'cases' to the switch instruction.
2720 for (unsigned i = 0, e = Values.size(); i != e; ++i)
2721 New->addCase(Values[i], EdgeBB);
Andrew Trick6b014382012-08-29 21:46:36 +00002722
Chris Lattner97fdb892010-12-13 05:03:41 +00002723 // We added edges from PI to the EdgeBB. As such, if there were any
2724 // PHI nodes in EdgeBB, they need entries to be added corresponding to
2725 // the number of edges added.
2726 for (BasicBlock::iterator BBI = EdgeBB->begin();
2727 isa<PHINode>(BBI); ++BBI) {
2728 PHINode *PN = cast<PHINode>(BBI);
2729 Value *InVal = PN->getIncomingValueForBlock(BB);
2730 for (unsigned i = 0, e = Values.size()-1; i != e; ++i)
2731 PN->addIncoming(InVal, BB);
2732 }
Andrew Trick6b014382012-08-29 21:46:36 +00002733
Chris Lattner97fdb892010-12-13 05:03:41 +00002734 // Erase the old branch instruction.
2735 EraseTerminatorInstAndDCECond(BI);
Andrew Trick6b014382012-08-29 21:46:36 +00002736
Chris Lattner302ba6f2010-12-14 06:17:25 +00002737 DEBUG(dbgs() << " ** 'icmp' chain result is:\n" << *BB << '\n');
Chris Lattner97fdb892010-12-13 05:03:41 +00002738 return true;
2739}
2740
Duncan Sandsad99ef82011-09-05 12:57:57 +00002741bool SimplifyCFGOpt::SimplifyResume(ResumeInst *RI, IRBuilder<> &Builder) {
2742 // If this is a trivial landing pad that just continues unwinding the caught
2743 // exception then zap the landing pad, turning its invokes into calls.
2744 BasicBlock *BB = RI->getParent();
2745 LandingPadInst *LPInst = dyn_cast<LandingPadInst>(BB->getFirstNonPHI());
2746 if (RI->getValue() != LPInst)
2747 // Not a landing pad, or the resume is not unwinding the exception that
2748 // caused control to branch here.
2749 return false;
2750
2751 // Check that there are no other instructions except for debug intrinsics.
2752 BasicBlock::iterator I = LPInst, E = RI;
2753 while (++I != E)
2754 if (!isa<DbgInfoIntrinsic>(I))
2755 return false;
2756
2757 // Turn all invokes that unwind here into calls and delete the basic block.
2758 for (pred_iterator PI = pred_begin(BB), PE = pred_end(BB); PI != PE;) {
2759 InvokeInst *II = cast<InvokeInst>((*PI++)->getTerminator());
2760 SmallVector<Value*, 8> Args(II->op_begin(), II->op_end() - 3);
2761 // Insert a call instruction before the invoke.
2762 CallInst *Call = CallInst::Create(II->getCalledValue(), Args, "", II);
2763 Call->takeName(II);
2764 Call->setCallingConv(II->getCallingConv());
2765 Call->setAttributes(II->getAttributes());
2766 Call->setDebugLoc(II->getDebugLoc());
2767
2768 // Anything that used the value produced by the invoke instruction now uses
2769 // the value produced by the call instruction. Note that we do this even
2770 // for void functions and calls with no uses so that the callgraph edge is
2771 // updated.
2772 II->replaceAllUsesWith(Call);
2773 BB->removePredecessor(II->getParent());
2774
2775 // Insert a branch to the normal destination right before the invoke.
2776 BranchInst::Create(II->getNormalDest(), II);
2777
2778 // Finally, delete the invoke instruction!
2779 II->eraseFromParent();
2780 }
2781
2782 // The landingpad is now unreachable. Zap it.
2783 BB->eraseFromParent();
2784 return true;
2785}
2786
Devang Patel176ec402011-05-18 21:33:11 +00002787bool SimplifyCFGOpt::SimplifyReturn(ReturnInst *RI, IRBuilder<> &Builder) {
Chris Lattner3d512132010-12-13 06:25:44 +00002788 BasicBlock *BB = RI->getParent();
2789 if (!BB->getFirstNonPHIOrDbg()->isTerminator()) return false;
Andrew Trick6b014382012-08-29 21:46:36 +00002790
Chris Lattner3d512132010-12-13 06:25:44 +00002791 // Find predecessors that end with branches.
2792 SmallVector<BasicBlock*, 8> UncondBranchPreds;
2793 SmallVector<BranchInst*, 8> CondBranchPreds;
2794 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
2795 BasicBlock *P = *PI;
2796 TerminatorInst *PTI = P->getTerminator();
2797 if (BranchInst *BI = dyn_cast<BranchInst>(PTI)) {
2798 if (BI->isUnconditional())
2799 UncondBranchPreds.push_back(P);
2800 else
2801 CondBranchPreds.push_back(BI);
2802 }
2803 }
Andrew Trick6b014382012-08-29 21:46:36 +00002804
Chris Lattner3d512132010-12-13 06:25:44 +00002805 // If we found some, do the transformation!
Evan Chengc3f507f2011-01-29 04:46:23 +00002806 if (!UncondBranchPreds.empty() && DupRet) {
Chris Lattner3d512132010-12-13 06:25:44 +00002807 while (!UncondBranchPreds.empty()) {
2808 BasicBlock *Pred = UncondBranchPreds.pop_back_val();
2809 DEBUG(dbgs() << "FOLDING: " << *BB
2810 << "INTO UNCOND BRANCH PRED: " << *Pred);
Evan Chengc3f507f2011-01-29 04:46:23 +00002811 (void)FoldReturnIntoUncondBranch(RI, BB, Pred);
Chris Lattner3d512132010-12-13 06:25:44 +00002812 }
Andrew Trick6b014382012-08-29 21:46:36 +00002813
Chris Lattner3d512132010-12-13 06:25:44 +00002814 // If we eliminated all predecessors of the block, delete the block now.
2815 if (pred_begin(BB) == pred_end(BB))
2816 // We know there are no successors, so just nuke the block.
2817 BB->eraseFromParent();
Andrew Trick6b014382012-08-29 21:46:36 +00002818
Chris Lattner3d512132010-12-13 06:25:44 +00002819 return true;
2820 }
Andrew Trick6b014382012-08-29 21:46:36 +00002821
Chris Lattner3d512132010-12-13 06:25:44 +00002822 // Check out all of the conditional branches going to this return
2823 // instruction. If any of them just select between returns, change the
2824 // branch itself into a select/return pair.
2825 while (!CondBranchPreds.empty()) {
2826 BranchInst *BI = CondBranchPreds.pop_back_val();
Andrew Trick6b014382012-08-29 21:46:36 +00002827
Chris Lattner3d512132010-12-13 06:25:44 +00002828 // Check to see if the non-BB successor is also a return block.
2829 if (isa<ReturnInst>(BI->getSuccessor(0)->getTerminator()) &&
2830 isa<ReturnInst>(BI->getSuccessor(1)->getTerminator()) &&
Devang Patel176ec402011-05-18 21:33:11 +00002831 SimplifyCondBranchToTwoReturns(BI, Builder))
Chris Lattner3d512132010-12-13 06:25:44 +00002832 return true;
2833 }
2834 return false;
2835}
2836
Chris Lattner3d512132010-12-13 06:25:44 +00002837bool SimplifyCFGOpt::SimplifyUnreachable(UnreachableInst *UI) {
2838 BasicBlock *BB = UI->getParent();
Andrew Trick6b014382012-08-29 21:46:36 +00002839
Chris Lattner3d512132010-12-13 06:25:44 +00002840 bool Changed = false;
Andrew Trick6b014382012-08-29 21:46:36 +00002841
Chris Lattner3d512132010-12-13 06:25:44 +00002842 // If there are any instructions immediately before the unreachable that can
2843 // be removed, do so.
2844 while (UI != BB->begin()) {
2845 BasicBlock::iterator BBI = UI;
2846 --BBI;
Eli Friedman81763882011-08-15 23:59:28 +00002847 // Do not delete instructions that can have side effects which might cause
2848 // the unreachable to not be reachable; specifically, calls and volatile
2849 // operations may have this effect.
Chris Lattner3d512132010-12-13 06:25:44 +00002850 if (isa<CallInst>(BBI) && !isa<DbgInfoIntrinsic>(BBI)) break;
Eli Friedman81763882011-08-15 23:59:28 +00002851
2852 if (BBI->mayHaveSideEffects()) {
2853 if (StoreInst *SI = dyn_cast<StoreInst>(BBI)) {
2854 if (SI->isVolatile())
2855 break;
2856 } else if (LoadInst *LI = dyn_cast<LoadInst>(BBI)) {
2857 if (LI->isVolatile())
2858 break;
2859 } else if (AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(BBI)) {
2860 if (RMWI->isVolatile())
2861 break;
2862 } else if (AtomicCmpXchgInst *CXI = dyn_cast<AtomicCmpXchgInst>(BBI)) {
2863 if (CXI->isVolatile())
2864 break;
2865 } else if (!isa<FenceInst>(BBI) && !isa<VAArgInst>(BBI) &&
2866 !isa<LandingPadInst>(BBI)) {
Chris Lattner3d512132010-12-13 06:25:44 +00002867 break;
Eli Friedman81763882011-08-15 23:59:28 +00002868 }
Bill Wendling23b49ba2011-08-16 20:41:17 +00002869 // Note that deleting LandingPad's here is in fact okay, although it
2870 // involves a bit of subtle reasoning. If this inst is a LandingPad,
2871 // all the predecessors of this block will be the unwind edges of Invokes,
2872 // and we can therefore guarantee this block will be erased.
Eli Friedman81763882011-08-15 23:59:28 +00002873 }
2874
Eli Friedman2adc5b62011-03-09 00:48:33 +00002875 // Delete this instruction (any uses are guaranteed to be dead)
2876 if (!BBI->use_empty())
2877 BBI->replaceAllUsesWith(UndefValue::get(BBI->getType()));
Chris Lattner302ba6f2010-12-14 06:17:25 +00002878 BBI->eraseFromParent();
Chris Lattner3d512132010-12-13 06:25:44 +00002879 Changed = true;
2880 }
Andrew Trick6b014382012-08-29 21:46:36 +00002881
Chris Lattner3d512132010-12-13 06:25:44 +00002882 // If the unreachable instruction is the first in the block, take a gander
2883 // at all of the predecessors of this instruction, and simplify them.
2884 if (&BB->front() != UI) return Changed;
Andrew Trick6b014382012-08-29 21:46:36 +00002885
Chris Lattner3d512132010-12-13 06:25:44 +00002886 SmallVector<BasicBlock*, 8> Preds(pred_begin(BB), pred_end(BB));
2887 for (unsigned i = 0, e = Preds.size(); i != e; ++i) {
2888 TerminatorInst *TI = Preds[i]->getTerminator();
Devang Patel1aa89a22011-05-19 00:09:21 +00002889 IRBuilder<> Builder(TI);
Chris Lattner3d512132010-12-13 06:25:44 +00002890 if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
2891 if (BI->isUnconditional()) {
2892 if (BI->getSuccessor(0) == BB) {
2893 new UnreachableInst(TI->getContext(), TI);
2894 TI->eraseFromParent();
2895 Changed = true;
2896 }
2897 } else {
2898 if (BI->getSuccessor(0) == BB) {
Devang Patel1aa89a22011-05-19 00:09:21 +00002899 Builder.CreateBr(BI->getSuccessor(1));
Chris Lattner3d512132010-12-13 06:25:44 +00002900 EraseTerminatorInstAndDCECond(BI);
2901 } else if (BI->getSuccessor(1) == BB) {
Devang Patel1aa89a22011-05-19 00:09:21 +00002902 Builder.CreateBr(BI->getSuccessor(0));
Chris Lattner3d512132010-12-13 06:25:44 +00002903 EraseTerminatorInstAndDCECond(BI);
2904 Changed = true;
2905 }
2906 }
2907 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
Stepan Dyatkovskiy3d3abe02012-03-11 06:09:17 +00002908 for (SwitchInst::CaseIt i = SI->case_begin(), e = SI->case_end();
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002909 i != e; ++i)
2910 if (i.getCaseSuccessor() == BB) {
Chris Lattner3d512132010-12-13 06:25:44 +00002911 BB->removePredecessor(SI->getParent());
2912 SI->removeCase(i);
2913 --i; --e;
2914 Changed = true;
2915 }
2916 // If the default value is unreachable, figure out the most popular
2917 // destination and make it the default.
Stepan Dyatkovskiy24473122012-02-01 07:49:51 +00002918 if (SI->getDefaultDest() == BB) {
Eli Friedmanb1a6eab2011-03-15 02:23:35 +00002919 std::map<BasicBlock*, std::pair<unsigned, unsigned> > Popularity;
Stepan Dyatkovskiy3d3abe02012-03-11 06:09:17 +00002920 for (SwitchInst::CaseIt i = SI->case_begin(), e = SI->case_end();
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002921 i != e; ++i) {
Nick Lewycky9d523102011-12-26 20:37:40 +00002922 std::pair<unsigned, unsigned> &entry =
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002923 Popularity[i.getCaseSuccessor()];
Eli Friedmanb1a6eab2011-03-15 02:23:35 +00002924 if (entry.first == 0) {
2925 entry.first = 1;
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002926 entry.second = i.getCaseIndex();
Eli Friedmanb1a6eab2011-03-15 02:23:35 +00002927 } else {
2928 entry.first++;
2929 }
2930 }
2931
Chris Lattner3d512132010-12-13 06:25:44 +00002932 // Find the most popular block.
2933 unsigned MaxPop = 0;
Eli Friedmanb1a6eab2011-03-15 02:23:35 +00002934 unsigned MaxIndex = 0;
Chris Lattner3d512132010-12-13 06:25:44 +00002935 BasicBlock *MaxBlock = 0;
Eli Friedmanb1a6eab2011-03-15 02:23:35 +00002936 for (std::map<BasicBlock*, std::pair<unsigned, unsigned> >::iterator
Chris Lattner3d512132010-12-13 06:25:44 +00002937 I = Popularity.begin(), E = Popularity.end(); I != E; ++I) {
Andrew Trick6b014382012-08-29 21:46:36 +00002938 if (I->second.first > MaxPop ||
Eli Friedmanb1a6eab2011-03-15 02:23:35 +00002939 (I->second.first == MaxPop && MaxIndex > I->second.second)) {
2940 MaxPop = I->second.first;
2941 MaxIndex = I->second.second;
Chris Lattner3d512132010-12-13 06:25:44 +00002942 MaxBlock = I->first;
2943 }
2944 }
2945 if (MaxBlock) {
2946 // Make this the new default, allowing us to delete any explicit
2947 // edges to it.
Stepan Dyatkovskiy24473122012-02-01 07:49:51 +00002948 SI->setDefaultDest(MaxBlock);
Chris Lattner3d512132010-12-13 06:25:44 +00002949 Changed = true;
Andrew Trick6b014382012-08-29 21:46:36 +00002950
Chris Lattner3d512132010-12-13 06:25:44 +00002951 // If MaxBlock has phinodes in it, remove MaxPop-1 entries from
2952 // it.
2953 if (isa<PHINode>(MaxBlock->begin()))
2954 for (unsigned i = 0; i != MaxPop-1; ++i)
2955 MaxBlock->removePredecessor(SI->getParent());
Andrew Trick6b014382012-08-29 21:46:36 +00002956
Stepan Dyatkovskiy3d3abe02012-03-11 06:09:17 +00002957 for (SwitchInst::CaseIt i = SI->case_begin(), e = SI->case_end();
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002958 i != e; ++i)
2959 if (i.getCaseSuccessor() == MaxBlock) {
Chris Lattner3d512132010-12-13 06:25:44 +00002960 SI->removeCase(i);
2961 --i; --e;
2962 }
2963 }
2964 }
2965 } else if (InvokeInst *II = dyn_cast<InvokeInst>(TI)) {
2966 if (II->getUnwindDest() == BB) {
2967 // Convert the invoke to a call instruction. This would be a good
2968 // place to note that the call does not throw though.
Devang Patel1aa89a22011-05-19 00:09:21 +00002969 BranchInst *BI = Builder.CreateBr(II->getNormalDest());
Chris Lattner3d512132010-12-13 06:25:44 +00002970 II->removeFromParent(); // Take out of symbol table
Andrew Trick6b014382012-08-29 21:46:36 +00002971
Chris Lattner3d512132010-12-13 06:25:44 +00002972 // Insert the call now...
2973 SmallVector<Value*, 8> Args(II->op_begin(), II->op_end()-3);
Devang Patel1aa89a22011-05-19 00:09:21 +00002974 Builder.SetInsertPoint(BI);
2975 CallInst *CI = Builder.CreateCall(II->getCalledValue(),
Jay Foada3efbb12011-07-15 08:37:34 +00002976 Args, II->getName());
Chris Lattner3d512132010-12-13 06:25:44 +00002977 CI->setCallingConv(II->getCallingConv());
2978 CI->setAttributes(II->getAttributes());
2979 // If the invoke produced a value, the call does now instead.
2980 II->replaceAllUsesWith(CI);
2981 delete II;
2982 Changed = true;
2983 }
2984 }
2985 }
Andrew Trick6b014382012-08-29 21:46:36 +00002986
Chris Lattner3d512132010-12-13 06:25:44 +00002987 // If this block is now dead, remove it.
2988 if (pred_begin(BB) == pred_end(BB) &&
2989 BB != &BB->getParent()->getEntryBlock()) {
2990 // We know there are no successors, so just nuke the block.
2991 BB->eraseFromParent();
2992 return true;
2993 }
2994
2995 return Changed;
2996}
2997
Benjamin Kramer56442df2011-02-02 15:56:22 +00002998/// TurnSwitchRangeIntoICmp - Turns a switch with that contains only a
2999/// integer range comparison into a sub, an icmp and a branch.
Devang Patel007349d2011-05-18 20:35:38 +00003000static bool TurnSwitchRangeIntoICmp(SwitchInst *SI, IRBuilder<> &Builder) {
Stepan Dyatkovskiy24473122012-02-01 07:49:51 +00003001 assert(SI->getNumCases() > 1 && "Degenerate switch?");
Benjamin Kramer56442df2011-02-02 15:56:22 +00003002
Benjamin Kramer042b27f2011-02-03 22:51:41 +00003003 // Make sure all cases point to the same destination and gather the values.
3004 SmallVector<ConstantInt *, 16> Cases;
Stepan Dyatkovskiy3d3abe02012-03-11 06:09:17 +00003005 SwitchInst::CaseIt I = SI->case_begin();
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00003006 Cases.push_back(I.getCaseValue());
3007 SwitchInst::CaseIt PrevI = I++;
Stepan Dyatkovskiy3d3abe02012-03-11 06:09:17 +00003008 for (SwitchInst::CaseIt E = SI->case_end(); I != E; PrevI = I++) {
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00003009 if (PrevI.getCaseSuccessor() != I.getCaseSuccessor())
Benjamin Kramer042b27f2011-02-03 22:51:41 +00003010 return false;
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00003011 Cases.push_back(I.getCaseValue());
Benjamin Kramer042b27f2011-02-03 22:51:41 +00003012 }
Stepan Dyatkovskiy24473122012-02-01 07:49:51 +00003013 assert(Cases.size() == SI->getNumCases() && "Not all cases gathered");
Benjamin Kramer042b27f2011-02-03 22:51:41 +00003014
3015 // Sort the case values, then check if they form a range we can transform.
3016 array_pod_sort(Cases.begin(), Cases.end(), ConstantIntSortPredicate);
3017 for (unsigned I = 1, E = Cases.size(); I != E; ++I) {
3018 if (Cases[I-1]->getValue() != Cases[I]->getValue()+1)
3019 return false;
3020 }
3021
3022 Constant *Offset = ConstantExpr::getNeg(Cases.back());
Stepan Dyatkovskiy24473122012-02-01 07:49:51 +00003023 Constant *NumCases = ConstantInt::get(Offset->getType(), SI->getNumCases());
Benjamin Kramer56442df2011-02-02 15:56:22 +00003024
Benjamin Kramer33828bc2011-02-07 22:37:28 +00003025 Value *Sub = SI->getCondition();
3026 if (!Offset->isNullValue())
Devang Patel1f5812b2011-05-19 00:13:33 +00003027 Sub = Builder.CreateAdd(Sub, Offset, Sub->getName()+".off");
3028 Value *Cmp = Builder.CreateICmpULT(Sub, NumCases, "switch");
Manman Ren222d6192012-09-18 00:47:33 +00003029 BranchInst *NewBI = Builder.CreateCondBr(
Stepan Dyatkovskiy3d3abe02012-03-11 06:09:17 +00003030 Cmp, SI->case_begin().getCaseSuccessor(), SI->getDefaultDest());
Benjamin Kramer56442df2011-02-02 15:56:22 +00003031
Manman Ren222d6192012-09-18 00:47:33 +00003032 // Update weight for the newly-created conditional branch.
3033 SmallVector<uint64_t, 8> Weights;
3034 bool HasWeights = HasBranchWeights(SI);
3035 if (HasWeights) {
3036 GetBranchWeights(SI, Weights);
3037 if (Weights.size() == 1 + SI->getNumCases()) {
3038 // Combine all weights for the cases to be the true weight of NewBI.
3039 // We assume that the sum of all weights for a Terminator can fit into 32
3040 // bits.
3041 uint32_t NewTrueWeight = 0;
3042 for (unsigned I = 1, E = Weights.size(); I != E; ++I)
3043 NewTrueWeight += (uint32_t)Weights[I];
3044 NewBI->setMetadata(LLVMContext::MD_prof,
3045 MDBuilder(SI->getContext()).
3046 createBranchWeights(NewTrueWeight,
3047 (uint32_t)Weights[0]));
3048 }
3049 }
3050
Benjamin Kramer56442df2011-02-02 15:56:22 +00003051 // Prune obsolete incoming values off the successor's PHI nodes.
Stepan Dyatkovskiy3d3abe02012-03-11 06:09:17 +00003052 for (BasicBlock::iterator BBI = SI->case_begin().getCaseSuccessor()->begin();
Benjamin Kramer56442df2011-02-02 15:56:22 +00003053 isa<PHINode>(BBI); ++BBI) {
Stepan Dyatkovskiy24473122012-02-01 07:49:51 +00003054 for (unsigned I = 0, E = SI->getNumCases()-1; I != E; ++I)
Benjamin Kramer56442df2011-02-02 15:56:22 +00003055 cast<PHINode>(BBI)->removeIncomingValue(SI->getParent());
3056 }
3057 SI->eraseFromParent();
3058
3059 return true;
3060}
Chris Lattner3d512132010-12-13 06:25:44 +00003061
Benjamin Kramer10fcfb52011-05-14 15:57:25 +00003062/// EliminateDeadSwitchCases - Compute masked bits for the condition of a switch
3063/// and use it to remove dead cases.
3064static bool EliminateDeadSwitchCases(SwitchInst *SI) {
3065 Value *Cond = SI->getCondition();
3066 unsigned Bits = cast<IntegerType>(Cond->getType())->getBitWidth();
3067 APInt KnownZero(Bits, 0), KnownOne(Bits, 0);
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00003068 ComputeMaskedBits(Cond, KnownZero, KnownOne);
Benjamin Kramer10fcfb52011-05-14 15:57:25 +00003069
3070 // Gather dead cases.
3071 SmallVector<ConstantInt*, 8> DeadCases;
Stepan Dyatkovskiy3d3abe02012-03-11 06:09:17 +00003072 for (SwitchInst::CaseIt I = SI->case_begin(), E = SI->case_end(); I != E; ++I) {
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00003073 if ((I.getCaseValue()->getValue() & KnownZero) != 0 ||
3074 (I.getCaseValue()->getValue() & KnownOne) != KnownOne) {
3075 DeadCases.push_back(I.getCaseValue());
Benjamin Kramer10fcfb52011-05-14 15:57:25 +00003076 DEBUG(dbgs() << "SimplifyCFG: switch case '"
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00003077 << I.getCaseValue() << "' is dead.\n");
Benjamin Kramer10fcfb52011-05-14 15:57:25 +00003078 }
3079 }
3080
Manman Ren222d6192012-09-18 00:47:33 +00003081 SmallVector<uint64_t, 8> Weights;
3082 bool HasWeight = HasBranchWeights(SI);
3083 if (HasWeight) {
3084 GetBranchWeights(SI, Weights);
3085 HasWeight = (Weights.size() == 1 + SI->getNumCases());
3086 }
3087
Benjamin Kramer10fcfb52011-05-14 15:57:25 +00003088 // Remove dead cases from the switch.
3089 for (unsigned I = 0, E = DeadCases.size(); I != E; ++I) {
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00003090 SwitchInst::CaseIt Case = SI->findCaseValue(DeadCases[I]);
Stepan Dyatkovskiy3d3abe02012-03-11 06:09:17 +00003091 assert(Case != SI->case_default() &&
Stepan Dyatkovskiy24473122012-02-01 07:49:51 +00003092 "Case was not found. Probably mistake in DeadCases forming.");
Manman Ren222d6192012-09-18 00:47:33 +00003093 if (HasWeight) {
3094 std::swap(Weights[Case.getCaseIndex()+1], Weights.back());
3095 Weights.pop_back();
3096 }
3097
Benjamin Kramer10fcfb52011-05-14 15:57:25 +00003098 // Prune unused values from PHI nodes.
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00003099 Case.getCaseSuccessor()->removePredecessor(SI->getParent());
Benjamin Kramer10fcfb52011-05-14 15:57:25 +00003100 SI->removeCase(Case);
3101 }
Manman Ren222d6192012-09-18 00:47:33 +00003102 if (HasWeight) {
3103 SmallVector<uint32_t, 8> MDWeights(Weights.begin(), Weights.end());
3104 SI->setMetadata(LLVMContext::MD_prof,
3105 MDBuilder(SI->getParent()->getContext()).
3106 createBranchWeights(MDWeights));
3107 }
Benjamin Kramer10fcfb52011-05-14 15:57:25 +00003108
3109 return !DeadCases.empty();
3110}
3111
Hans Wennborg448da512011-06-18 10:28:47 +00003112/// FindPHIForConditionForwarding - If BB would be eligible for simplification
3113/// by TryToSimplifyUncondBranchFromEmptyBlock (i.e. it is empty and terminated
3114/// by an unconditional branch), look at the phi node for BB in the successor
3115/// block and see if the incoming value is equal to CaseValue. If so, return
3116/// the phi node, and set PhiIndex to BB's index in the phi node.
3117static PHINode *FindPHIForConditionForwarding(ConstantInt *CaseValue,
3118 BasicBlock *BB,
3119 int *PhiIndex) {
3120 if (BB->getFirstNonPHIOrDbg() != BB->getTerminator())
3121 return NULL; // BB must be empty to be a candidate for simplification.
3122 if (!BB->getSinglePredecessor())
3123 return NULL; // BB must be dominated by the switch.
3124
3125 BranchInst *Branch = dyn_cast<BranchInst>(BB->getTerminator());
3126 if (!Branch || !Branch->isUnconditional())
3127 return NULL; // Terminator must be unconditional branch.
3128
3129 BasicBlock *Succ = Branch->getSuccessor(0);
3130
3131 BasicBlock::iterator I = Succ->begin();
3132 while (PHINode *PHI = dyn_cast<PHINode>(I++)) {
3133 int Idx = PHI->getBasicBlockIndex(BB);
3134 assert(Idx >= 0 && "PHI has no entry for predecessor?");
3135
3136 Value *InValue = PHI->getIncomingValue(Idx);
3137 if (InValue != CaseValue) continue;
3138
3139 *PhiIndex = Idx;
3140 return PHI;
3141 }
3142
3143 return NULL;
3144}
3145
3146/// ForwardSwitchConditionToPHI - Try to forward the condition of a switch
3147/// instruction to a phi node dominated by the switch, if that would mean that
3148/// some of the destination blocks of the switch can be folded away.
3149/// Returns true if a change is made.
3150static bool ForwardSwitchConditionToPHI(SwitchInst *SI) {
3151 typedef DenseMap<PHINode*, SmallVector<int,4> > ForwardingNodesMap;
3152 ForwardingNodesMap ForwardingNodes;
3153
Stepan Dyatkovskiy3d3abe02012-03-11 06:09:17 +00003154 for (SwitchInst::CaseIt I = SI->case_begin(), E = SI->case_end(); I != E; ++I) {
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00003155 ConstantInt *CaseValue = I.getCaseValue();
3156 BasicBlock *CaseDest = I.getCaseSuccessor();
Hans Wennborg448da512011-06-18 10:28:47 +00003157
3158 int PhiIndex;
3159 PHINode *PHI = FindPHIForConditionForwarding(CaseValue, CaseDest,
3160 &PhiIndex);
3161 if (!PHI) continue;
3162
3163 ForwardingNodes[PHI].push_back(PhiIndex);
3164 }
3165
3166 bool Changed = false;
3167
3168 for (ForwardingNodesMap::iterator I = ForwardingNodes.begin(),
3169 E = ForwardingNodes.end(); I != E; ++I) {
3170 PHINode *Phi = I->first;
3171 SmallVector<int,4> &Indexes = I->second;
3172
3173 if (Indexes.size() < 2) continue;
3174
3175 for (size_t I = 0, E = Indexes.size(); I != E; ++I)
3176 Phi->setIncomingValue(Indexes[I], SI->getCondition());
3177 Changed = true;
3178 }
3179
3180 return Changed;
3181}
3182
Hans Wennborg486270a2012-09-06 09:43:28 +00003183/// ValidLookupTableConstant - Return true if the backend will be able to handle
3184/// initializing an array of constants like C.
Hans Wennborgbf015822012-09-07 08:22:57 +00003185static bool ValidLookupTableConstant(Constant *C) {
Hans Wennborg486270a2012-09-06 09:43:28 +00003186 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C))
3187 return CE->isGEPWithNoNotionalOverIndexing();
3188
3189 return isa<ConstantFP>(C) ||
3190 isa<ConstantInt>(C) ||
3191 isa<ConstantPointerNull>(C) ||
3192 isa<GlobalValue>(C) ||
3193 isa<UndefValue>(C);
3194}
3195
3196/// GetCaseResulsts - Try to determine the resulting constant values in phi
3197/// nodes at the common destination basic block for one of the case
3198/// destinations of a switch instruction.
3199static bool GetCaseResults(SwitchInst *SI,
3200 BasicBlock *CaseDest,
3201 BasicBlock **CommonDest,
3202 SmallVector<std::pair<PHINode*,Constant*>, 4> &Res) {
3203 // The block from which we enter the common destination.
3204 BasicBlock *Pred = SI->getParent();
3205
3206 // If CaseDest is empty, continue to its successor.
3207 if (CaseDest->getFirstNonPHIOrDbg() == CaseDest->getTerminator() &&
3208 !isa<PHINode>(CaseDest->begin())) {
3209
3210 TerminatorInst *Terminator = CaseDest->getTerminator();
3211 if (Terminator->getNumSuccessors() != 1)
3212 return false;
3213
3214 Pred = CaseDest;
3215 CaseDest = Terminator->getSuccessor(0);
3216 }
3217
3218 // If we did not have a CommonDest before, use the current one.
3219 if (!*CommonDest)
3220 *CommonDest = CaseDest;
3221 // If the destination isn't the common one, abort.
3222 if (CaseDest != *CommonDest)
3223 return false;
3224
3225 // Get the values for this case from phi nodes in the destination block.
3226 BasicBlock::iterator I = (*CommonDest)->begin();
3227 while (PHINode *PHI = dyn_cast<PHINode>(I++)) {
3228 int Idx = PHI->getBasicBlockIndex(Pred);
3229 if (Idx == -1)
3230 continue;
3231
3232 Constant *ConstVal = dyn_cast<Constant>(PHI->getIncomingValue(Idx));
3233 if (!ConstVal)
3234 return false;
3235
3236 // Be conservative about which kinds of constants we support.
3237 if (!ValidLookupTableConstant(ConstVal))
3238 return false;
3239
3240 Res.push_back(std::make_pair(PHI, ConstVal));
3241 }
3242
3243 return true;
3244}
3245
Hans Wennborgdb5dbf02012-09-26 09:34:53 +00003246namespace {
3247 /// SwitchLookupTable - This class represents a lookup table that can be used
3248 /// to replace a switch.
3249 class SwitchLookupTable {
3250 public:
3251 /// SwitchLookupTable - Create a lookup table to use as a switch replacement
3252 /// with the contents of Values, using DefaultValue to fill any holes in the
3253 /// table.
3254 SwitchLookupTable(Module &M,
3255 uint64_t TableSize,
3256 ConstantInt *Offset,
3257 const SmallVector<std::pair<ConstantInt*, Constant*>, 4>& Values,
Hans Wennborgd72271c2012-09-26 09:44:49 +00003258 Constant *DefaultValue,
Micah Villmow3574eca2012-10-08 16:38:25 +00003259 const DataLayout *TD);
Hans Wennborgdb5dbf02012-09-26 09:34:53 +00003260
3261 /// BuildLookup - Build instructions with Builder to retrieve the value at
3262 /// the position given by Index in the lookup table.
3263 Value *BuildLookup(Value *Index, IRBuilder<> &Builder);
3264
Hans Wennborgd72271c2012-09-26 09:44:49 +00003265 /// WouldFitInRegister - Return true if a table with TableSize elements of
3266 /// type ElementType would fit in a target-legal register.
Micah Villmow3574eca2012-10-08 16:38:25 +00003267 static bool WouldFitInRegister(const DataLayout *TD,
Hans Wennborgd72271c2012-09-26 09:44:49 +00003268 uint64_t TableSize,
3269 const Type *ElementType);
3270
Hans Wennborgdb5dbf02012-09-26 09:34:53 +00003271 private:
3272 // Depending on the contents of the table, it can be represented in
3273 // different ways.
3274 enum {
3275 // For tables where each element contains the same value, we just have to
3276 // store that single value and return it for each lookup.
3277 SingleValueKind,
3278
Hans Wennborgd72271c2012-09-26 09:44:49 +00003279 // For small tables with integer elements, we can pack them into a bitmap
3280 // that fits into a target-legal register. Values are retrieved by
3281 // shift and mask operations.
3282 BitMapKind,
3283
Hans Wennborgdb5dbf02012-09-26 09:34:53 +00003284 // The table is stored as an array of values. Values are retrieved by load
3285 // instructions from the table.
3286 ArrayKind
3287 } Kind;
3288
3289 // For SingleValueKind, this is the single value.
3290 Constant *SingleValue;
3291
Hans Wennborgd72271c2012-09-26 09:44:49 +00003292 // For BitMapKind, this is the bitmap.
3293 ConstantInt *BitMap;
3294 IntegerType *BitMapElementTy;
3295
Hans Wennborgdb5dbf02012-09-26 09:34:53 +00003296 // For ArrayKind, this is the array.
3297 GlobalVariable *Array;
3298 };
3299}
3300
3301SwitchLookupTable::SwitchLookupTable(Module &M,
3302 uint64_t TableSize,
3303 ConstantInt *Offset,
3304 const SmallVector<std::pair<ConstantInt*, Constant*>, 4>& Values,
Hans Wennborgd72271c2012-09-26 09:44:49 +00003305 Constant *DefaultValue,
Micah Villmow3574eca2012-10-08 16:38:25 +00003306 const DataLayout *TD) {
Hans Wennborg565df792012-09-26 11:07:37 +00003307 assert(Values.size() && "Can't build lookup table without values!");
3308 assert(TableSize >= Values.size() && "Can't fit values in table!");
Hans Wennborg486270a2012-09-06 09:43:28 +00003309
3310 // If all values in the table are equal, this is that value.
Hans Wennborgdb5dbf02012-09-26 09:34:53 +00003311 SingleValue = Values.begin()->second;
Hans Wennborg486270a2012-09-06 09:43:28 +00003312
3313 // Build up the table contents.
Hans Wennborgdb5dbf02012-09-26 09:34:53 +00003314 SmallVector<Constant*, 64> TableContents(TableSize);
3315 for (size_t I = 0, E = Values.size(); I != E; ++I) {
3316 ConstantInt *CaseVal = Values[I].first;
3317 Constant *CaseRes = Values[I].second;
3318 assert(CaseRes->getType() == DefaultValue->getType());
Hans Wennborg486270a2012-09-06 09:43:28 +00003319
Hans Wennborgdb5dbf02012-09-26 09:34:53 +00003320 uint64_t Idx = (CaseVal->getValue() - Offset->getValue())
3321 .getLimitedValue();
Hans Wennborg486270a2012-09-06 09:43:28 +00003322 TableContents[Idx] = CaseRes;
3323
Hans Wennborgdb5dbf02012-09-26 09:34:53 +00003324 if (CaseRes != SingleValue)
3325 SingleValue = NULL;
Hans Wennborg486270a2012-09-06 09:43:28 +00003326 }
3327
3328 // Fill in any holes in the table with the default result.
Hans Wennborgdb5dbf02012-09-26 09:34:53 +00003329 if (Values.size() < TableSize) {
3330 for (uint64_t I = 0; I < TableSize; ++I) {
3331 if (!TableContents[I])
3332 TableContents[I] = DefaultValue;
Hans Wennborg486270a2012-09-06 09:43:28 +00003333 }
3334
Hans Wennborgdb5dbf02012-09-26 09:34:53 +00003335 if (DefaultValue != SingleValue)
3336 SingleValue = NULL;
Hans Wennborg486270a2012-09-06 09:43:28 +00003337 }
3338
Hans Wennborgdb5dbf02012-09-26 09:34:53 +00003339 // If each element in the table contains the same value, we only need to store
3340 // that single value.
3341 if (SingleValue) {
3342 Kind = SingleValueKind;
3343 return;
Hans Wennborg486270a2012-09-06 09:43:28 +00003344 }
3345
Hans Wennborgd72271c2012-09-26 09:44:49 +00003346 // If the type is integer and the table fits in a register, build a bitmap.
3347 if (WouldFitInRegister(TD, TableSize, DefaultValue->getType())) {
3348 IntegerType *IT = cast<IntegerType>(DefaultValue->getType());
3349 APInt TableInt(TableSize * IT->getBitWidth(), 0);
3350 for (uint64_t I = TableSize; I > 0; --I) {
3351 TableInt <<= IT->getBitWidth();
Benjamin Kramer64f27e72012-10-01 11:31:48 +00003352 // Insert values into the bitmap. Undef values are set to zero.
3353 if (!isa<UndefValue>(TableContents[I - 1])) {
3354 ConstantInt *Val = cast<ConstantInt>(TableContents[I - 1]);
3355 TableInt |= Val->getValue().zext(TableInt.getBitWidth());
3356 }
Hans Wennborgd72271c2012-09-26 09:44:49 +00003357 }
3358 BitMap = ConstantInt::get(M.getContext(), TableInt);
3359 BitMapElementTy = IT;
3360 Kind = BitMapKind;
3361 ++NumBitMaps;
3362 return;
3363 }
3364
Hans Wennborgdb5dbf02012-09-26 09:34:53 +00003365 // Store the table in an array.
3366 ArrayType *ArrayTy = ArrayType::get(DefaultValue->getType(), TableSize);
Hans Wennborg486270a2012-09-06 09:43:28 +00003367 Constant *Initializer = ConstantArray::get(ArrayTy, TableContents);
3368
Hans Wennborgdb5dbf02012-09-26 09:34:53 +00003369 Array = new GlobalVariable(M, ArrayTy, /*constant=*/ true,
3370 GlobalVariable::PrivateLinkage,
3371 Initializer,
3372 "switch.table");
3373 Array->setUnnamedAddr(true);
3374 Kind = ArrayKind;
3375}
3376
3377Value *SwitchLookupTable::BuildLookup(Value *Index, IRBuilder<> &Builder) {
3378 switch (Kind) {
3379 case SingleValueKind:
3380 return SingleValue;
Hans Wennborgd72271c2012-09-26 09:44:49 +00003381 case BitMapKind: {
3382 // Type of the bitmap (e.g. i59).
3383 IntegerType *MapTy = BitMap->getType();
3384
3385 // Cast Index to the same type as the bitmap.
3386 // Note: The Index is <= the number of elements in the table, so
3387 // truncating it to the width of the bitmask is safe.
Hans Wennborg50b7d702012-09-26 14:01:53 +00003388 Value *ShiftAmt = Builder.CreateZExtOrTrunc(Index, MapTy, "switch.cast");
Hans Wennborgd72271c2012-09-26 09:44:49 +00003389
3390 // Multiply the shift amount by the element width.
3391 ShiftAmt = Builder.CreateMul(ShiftAmt,
3392 ConstantInt::get(MapTy, BitMapElementTy->getBitWidth()),
3393 "switch.shiftamt");
3394
3395 // Shift down.
3396 Value *DownShifted = Builder.CreateLShr(BitMap, ShiftAmt,
3397 "switch.downshift");
3398 // Mask off.
3399 return Builder.CreateTrunc(DownShifted, BitMapElementTy,
3400 "switch.masked");
3401 }
Hans Wennborgdb5dbf02012-09-26 09:34:53 +00003402 case ArrayKind: {
3403 Value *GEPIndices[] = { Builder.getInt32(0), Index };
3404 Value *GEP = Builder.CreateInBoundsGEP(Array, GEPIndices,
3405 "switch.gep");
3406 return Builder.CreateLoad(GEP, "switch.load");
3407 }
3408 }
3409 llvm_unreachable("Unknown lookup table kind!");
3410}
3411
Micah Villmow3574eca2012-10-08 16:38:25 +00003412bool SwitchLookupTable::WouldFitInRegister(const DataLayout *TD,
Hans Wennborgd72271c2012-09-26 09:44:49 +00003413 uint64_t TableSize,
3414 const Type *ElementType) {
3415 if (!TD)
3416 return false;
3417 const IntegerType *IT = dyn_cast<IntegerType>(ElementType);
3418 if (!IT)
3419 return false;
3420 // FIXME: If the type is wider than it needs to be, e.g. i8 but all values
3421 // are <= 15, we could try to narrow the type.
Benjamin Kramer465251a2012-09-27 18:29:58 +00003422
3423 // Avoid overflow, fitsInLegalInteger uses unsigned int for the width.
3424 if (TableSize >= UINT_MAX/IT->getBitWidth())
3425 return false;
Hans Wennborgd72271c2012-09-26 09:44:49 +00003426 return TD->fitsInLegalInteger(TableSize * IT->getBitWidth());
3427}
3428
Hans Wennborgdb5dbf02012-09-26 09:34:53 +00003429/// ShouldBuildLookupTable - Determine whether a lookup table should be built
3430/// for this switch, based on the number of caes, size of the table and the
3431/// types of the results.
3432static bool ShouldBuildLookupTable(SwitchInst *SI,
Hans Wennborgd72271c2012-09-26 09:44:49 +00003433 uint64_t TableSize,
Micah Villmow3574eca2012-10-08 16:38:25 +00003434 const DataLayout *TD,
Hans Wennborgd72271c2012-09-26 09:44:49 +00003435 const SmallDenseMap<PHINode*, Type*>& ResultTypes) {
Hans Wennborgdb5dbf02012-09-26 09:34:53 +00003436 // The table density should be at least 40%. This is the same criterion as for
3437 // jump tables, see SelectionDAGBuilder::handleJTSwitchCase.
3438 // FIXME: Find the best cut-off.
Hans Wennborg565df792012-09-26 11:07:37 +00003439 if (SI->getNumCases() > TableSize || TableSize >= UINT64_MAX / 10)
3440 return false; // TableSize overflowed, or mul below might overflow.
Hans Wennborgdb5dbf02012-09-26 09:34:53 +00003441 if (SI->getNumCases() * 10 >= TableSize * 4)
3442 return true;
3443
Hans Wennborgd72271c2012-09-26 09:44:49 +00003444 // If each table would fit in a register, we should build it anyway.
3445 for (SmallDenseMap<PHINode*, Type*>::const_iterator I = ResultTypes.begin(),
3446 E = ResultTypes.end(); I != E; ++I) {
3447 if (!SwitchLookupTable::WouldFitInRegister(TD, TableSize, I->second))
3448 return false;
3449 }
3450 return true;
Hans Wennborg486270a2012-09-06 09:43:28 +00003451}
3452
3453/// SwitchToLookupTable - If the switch is only used to initialize one or more
3454/// phi nodes in a common successor block with different constant values,
3455/// replace the switch with lookup tables.
3456static bool SwitchToLookupTable(SwitchInst *SI,
Hans Wennborgd72271c2012-09-26 09:44:49 +00003457 IRBuilder<> &Builder,
Micah Villmow3574eca2012-10-08 16:38:25 +00003458 const DataLayout* TD) {
Hans Wennborg486270a2012-09-06 09:43:28 +00003459 assert(SI->getNumCases() > 1 && "Degenerate switch?");
3460 // FIXME: Handle unreachable cases.
3461
3462 // FIXME: If the switch is too sparse for a lookup table, perhaps we could
3463 // split off a dense part and build a lookup table for that.
3464
Hans Wennborg486270a2012-09-06 09:43:28 +00003465 // FIXME: This creates arrays of GEPs to constant strings, which means each
3466 // GEP needs a runtime relocation in PIC code. We should just build one big
3467 // string and lookup indices into that.
3468
Hans Wennborgdb5dbf02012-09-26 09:34:53 +00003469 // Ignore the switch if the number of cases is too small.
Hans Wennborg486270a2012-09-06 09:43:28 +00003470 // This is similar to the check when building jump tables in
3471 // SelectionDAGBuilder::handleJTSwitchCase.
3472 // FIXME: Determine the best cut-off.
3473 if (SI->getNumCases() < 4)
3474 return false;
3475
3476 // Figure out the corresponding result for each case value and phi node in the
3477 // common destination, as well as the the min and max case values.
3478 assert(SI->case_begin() != SI->case_end());
3479 SwitchInst::CaseIt CI = SI->case_begin();
3480 ConstantInt *MinCaseVal = CI.getCaseValue();
3481 ConstantInt *MaxCaseVal = CI.getCaseValue();
3482
3483 BasicBlock *CommonDest = NULL;
Hans Wennborg2f9fc762012-09-10 07:44:22 +00003484 typedef SmallVector<std::pair<ConstantInt*, Constant*>, 4> ResultListTy;
Hans Wennborg486270a2012-09-06 09:43:28 +00003485 SmallDenseMap<PHINode*, ResultListTy> ResultLists;
3486 SmallDenseMap<PHINode*, Constant*> DefaultResults;
3487 SmallDenseMap<PHINode*, Type*> ResultTypes;
3488 SmallVector<PHINode*, 4> PHIs;
3489
3490 for (SwitchInst::CaseIt E = SI->case_end(); CI != E; ++CI) {
3491 ConstantInt *CaseVal = CI.getCaseValue();
3492 if (CaseVal->getValue().slt(MinCaseVal->getValue()))
3493 MinCaseVal = CaseVal;
3494 if (CaseVal->getValue().sgt(MaxCaseVal->getValue()))
3495 MaxCaseVal = CaseVal;
3496
3497 // Resulting value at phi nodes for this case value.
3498 typedef SmallVector<std::pair<PHINode*, Constant*>, 4> ResultsTy;
3499 ResultsTy Results;
3500 if (!GetCaseResults(SI, CI.getCaseSuccessor(), &CommonDest, Results))
3501 return false;
3502
3503 // Append the result from this case to the list for each phi.
3504 for (ResultsTy::iterator I = Results.begin(), E = Results.end(); I!=E; ++I) {
3505 if (!ResultLists.count(I->first))
3506 PHIs.push_back(I->first);
3507 ResultLists[I->first].push_back(std::make_pair(CaseVal, I->second));
3508 }
3509 }
3510
3511 // Get the resulting values for the default case.
Hans Wennborg2f9fc762012-09-10 07:44:22 +00003512 SmallVector<std::pair<PHINode*, Constant*>, 4> DefaultResultsList;
3513 if (!GetCaseResults(SI, SI->getDefaultDest(), &CommonDest, DefaultResultsList))
3514 return false;
3515 for (size_t I = 0, E = DefaultResultsList.size(); I != E; ++I) {
3516 PHINode *PHI = DefaultResultsList[I].first;
3517 Constant *Result = DefaultResultsList[I].second;
3518 DefaultResults[PHI] = Result;
3519 ResultTypes[PHI] = Result->getType();
Hans Wennborg486270a2012-09-06 09:43:28 +00003520 }
3521
3522 APInt RangeSpread = MaxCaseVal->getValue() - MinCaseVal->getValue();
Hans Wennborg486270a2012-09-06 09:43:28 +00003523 uint64_t TableSize = RangeSpread.getLimitedValue() + 1;
Hans Wennborgd72271c2012-09-26 09:44:49 +00003524 if (!ShouldBuildLookupTable(SI, TableSize, TD, ResultTypes))
Hans Wennborg486270a2012-09-06 09:43:28 +00003525 return false;
3526
Hans Wennborg486270a2012-09-06 09:43:28 +00003527 // Create the BB that does the lookups.
Hans Wennborgdb5dbf02012-09-26 09:34:53 +00003528 Module &Mod = *CommonDest->getParent()->getParent();
Hans Wennborg486270a2012-09-06 09:43:28 +00003529 BasicBlock *LookupBB = BasicBlock::Create(Mod.getContext(),
3530 "switch.lookup",
3531 CommonDest->getParent(),
3532 CommonDest);
3533
3534 // Check whether the condition value is within the case range, and branch to
3535 // the new BB.
3536 Builder.SetInsertPoint(SI);
3537 Value *TableIndex = Builder.CreateSub(SI->getCondition(), MinCaseVal,
3538 "switch.tableidx");
3539 Value *Cmp = Builder.CreateICmpULT(TableIndex, ConstantInt::get(
3540 MinCaseVal->getType(), TableSize));
3541 Builder.CreateCondBr(Cmp, LookupBB, SI->getDefaultDest());
3542
3543 // Populate the BB that does the lookups.
3544 Builder.SetInsertPoint(LookupBB);
3545 bool ReturnedEarly = false;
Hans Wennborgdb5dbf02012-09-26 09:34:53 +00003546 for (size_t I = 0, E = PHIs.size(); I != E; ++I) {
3547 PHINode *PHI = PHIs[I];
Hans Wennborg486270a2012-09-06 09:43:28 +00003548
Hans Wennborgdb5dbf02012-09-26 09:34:53 +00003549 SwitchLookupTable Table(Mod, TableSize, MinCaseVal, ResultLists[PHI],
Hans Wennborgd72271c2012-09-26 09:44:49 +00003550 DefaultResults[PHI], TD);
Hans Wennborgdb5dbf02012-09-26 09:34:53 +00003551
3552 Value *Result = Table.BuildLookup(TableIndex, Builder);
Hans Wennborg486270a2012-09-06 09:43:28 +00003553
Hans Wennborg57933e32012-09-19 14:24:21 +00003554 // If the result is used to return immediately from the function, we want to
3555 // do that right here.
3556 if (PHI->hasOneUse() && isa<ReturnInst>(*PHI->use_begin()) &&
3557 *PHI->use_begin() == CommonDest->getFirstNonPHIOrDbg()) {
3558 Builder.CreateRet(Result);
3559 ReturnedEarly = true;
3560 break;
Hans Wennborg486270a2012-09-06 09:43:28 +00003561 }
3562
Hans Wennborg57933e32012-09-19 14:24:21 +00003563 PHI->addIncoming(Result, LookupBB);
Hans Wennborg486270a2012-09-06 09:43:28 +00003564 }
3565
3566 if (!ReturnedEarly)
3567 Builder.CreateBr(CommonDest);
3568
3569 // Remove the switch.
3570 for (unsigned i = 0; i < SI->getNumSuccessors(); ++i) {
3571 BasicBlock *Succ = SI->getSuccessor(i);
3572 if (Succ == SI->getDefaultDest()) continue;
3573 Succ->removePredecessor(SI->getParent());
3574 }
3575 SI->eraseFromParent();
3576
3577 ++NumLookupTables;
3578 return true;
3579}
3580
Devang Patel007349d2011-05-18 20:35:38 +00003581bool SimplifyCFGOpt::SimplifySwitch(SwitchInst *SI, IRBuilder<> &Builder) {
Chris Lattner3d512132010-12-13 06:25:44 +00003582 // If this switch is too complex to want to look at, ignore it.
3583 if (!isValueEqualityComparison(SI))
3584 return false;
3585
3586 BasicBlock *BB = SI->getParent();
3587
3588 // If we only have one predecessor, and if it is a branch on this value,
3589 // see if that predecessor totally determines the outcome of this switch.
3590 if (BasicBlock *OnlyPred = BB->getSinglePredecessor())
Devang Patel007349d2011-05-18 20:35:38 +00003591 if (SimplifyEqualityComparisonWithOnlyPredecessor(SI, OnlyPred, Builder))
Chris Lattner021c9d32010-12-13 06:36:51 +00003592 return SimplifyCFG(BB) | true;
Frits van Bommelf7b2a9d2011-02-28 09:44:07 +00003593
3594 Value *Cond = SI->getCondition();
3595 if (SelectInst *Select = dyn_cast<SelectInst>(Cond))
3596 if (SimplifySwitchOnSelect(SI, Select))
3597 return SimplifyCFG(BB) | true;
3598
Chris Lattner3d512132010-12-13 06:25:44 +00003599 // If the block only contains the switch, see if we can fold the block
3600 // away into any preds.
3601 BasicBlock::iterator BBI = BB->begin();
3602 // Ignore dbg intrinsics.
3603 while (isa<DbgInfoIntrinsic>(BBI))
3604 ++BBI;
3605 if (SI == &*BBI)
Devang Patelb55d9242011-05-18 20:53:17 +00003606 if (FoldValueComparisonIntoPredecessors(SI, Builder))
Chris Lattner021c9d32010-12-13 06:36:51 +00003607 return SimplifyCFG(BB) | true;
Benjamin Kramer56442df2011-02-02 15:56:22 +00003608
3609 // Try to transform the switch into an icmp and a branch.
Devang Patel007349d2011-05-18 20:35:38 +00003610 if (TurnSwitchRangeIntoICmp(SI, Builder))
Benjamin Kramer56442df2011-02-02 15:56:22 +00003611 return SimplifyCFG(BB) | true;
Benjamin Kramer10fcfb52011-05-14 15:57:25 +00003612
3613 // Remove unreachable cases.
3614 if (EliminateDeadSwitchCases(SI))
3615 return SimplifyCFG(BB) | true;
3616
Hans Wennborg448da512011-06-18 10:28:47 +00003617 if (ForwardSwitchConditionToPHI(SI))
3618 return SimplifyCFG(BB) | true;
3619
Hans Wennborgd72271c2012-09-26 09:44:49 +00003620 if (SwitchToLookupTable(SI, Builder, TD))
Hans Wennborg486270a2012-09-06 09:43:28 +00003621 return SimplifyCFG(BB) | true;
3622
Chris Lattner3d512132010-12-13 06:25:44 +00003623 return false;
3624}
3625
3626bool SimplifyCFGOpt::SimplifyIndirectBr(IndirectBrInst *IBI) {
3627 BasicBlock *BB = IBI->getParent();
3628 bool Changed = false;
Andrew Trick6b014382012-08-29 21:46:36 +00003629
Chris Lattner3d512132010-12-13 06:25:44 +00003630 // Eliminate redundant destinations.
3631 SmallPtrSet<Value *, 8> Succs;
3632 for (unsigned i = 0, e = IBI->getNumDestinations(); i != e; ++i) {
3633 BasicBlock *Dest = IBI->getDestination(i);
3634 if (!Dest->hasAddressTaken() || !Succs.insert(Dest)) {
3635 Dest->removePredecessor(BB);
3636 IBI->removeDestination(i);
3637 --i; --e;
3638 Changed = true;
3639 }
Andrew Trick6b014382012-08-29 21:46:36 +00003640 }
Chris Lattner3d512132010-12-13 06:25:44 +00003641
3642 if (IBI->getNumDestinations() == 0) {
3643 // If the indirectbr has no successors, change it to unreachable.
3644 new UnreachableInst(IBI->getContext(), IBI);
3645 EraseTerminatorInstAndDCECond(IBI);
3646 return true;
3647 }
Andrew Trick6b014382012-08-29 21:46:36 +00003648
Chris Lattner3d512132010-12-13 06:25:44 +00003649 if (IBI->getNumDestinations() == 1) {
3650 // If the indirectbr has one successor, change it to a direct branch.
3651 BranchInst::Create(IBI->getDestination(0), IBI);
3652 EraseTerminatorInstAndDCECond(IBI);
3653 return true;
3654 }
Andrew Trick6b014382012-08-29 21:46:36 +00003655
Chris Lattner3d512132010-12-13 06:25:44 +00003656 if (SelectInst *SI = dyn_cast<SelectInst>(IBI->getAddress())) {
3657 if (SimplifyIndirectBrOnSelect(IBI, SI))
3658 return SimplifyCFG(BB) | true;
3659 }
3660 return Changed;
3661}
3662
Devang Patela23812c2011-05-18 18:28:48 +00003663bool SimplifyCFGOpt::SimplifyUncondBranch(BranchInst *BI, IRBuilder<> &Builder){
Chris Lattner3d512132010-12-13 06:25:44 +00003664 BasicBlock *BB = BI->getParent();
Andrew Trick6b014382012-08-29 21:46:36 +00003665
Manman Ren554da1a2012-09-20 22:37:36 +00003666 if (SinkCommon && SinkThenElseCodeToEnd(BI))
3667 return true;
3668
Chris Lattner3d512132010-12-13 06:25:44 +00003669 // If the Terminator is the only non-phi instruction, simplify the block.
Rafael Espindola77a2c372011-06-30 20:14:24 +00003670 BasicBlock::iterator I = BB->getFirstNonPHIOrDbgOrLifetime();
Chris Lattner3d512132010-12-13 06:25:44 +00003671 if (I->isTerminator() && BB != &BB->getParent()->getEntryBlock() &&
3672 TryToSimplifyUncondBranchFromEmptyBlock(BB))
3673 return true;
Andrew Trick6b014382012-08-29 21:46:36 +00003674
Chris Lattner3d512132010-12-13 06:25:44 +00003675 // If the only instruction in the block is a seteq/setne comparison
3676 // against a constant, try to simplify the block.
3677 if (ICmpInst *ICI = dyn_cast<ICmpInst>(I))
3678 if (ICI->isEquality() && isa<ConstantInt>(ICI->getOperand(1))) {
3679 for (++I; isa<DbgInfoIntrinsic>(I); ++I)
3680 ;
Nick Lewycky9d523102011-12-26 20:37:40 +00003681 if (I->isTerminator() &&
3682 TryToSimplifyUncondBranchWithICmpInIt(ICI, TD, Builder))
Chris Lattner3d512132010-12-13 06:25:44 +00003683 return true;
3684 }
Andrew Trick6b014382012-08-29 21:46:36 +00003685
Manman Renee28e0f2012-06-13 05:43:29 +00003686 // If this basic block is ONLY a compare and a branch, and if a predecessor
3687 // branches to us and our successor, fold the comparison into the
3688 // predecessor and use logical operations to update the incoming value
3689 // for PHI nodes in common successor.
3690 if (FoldBranchToCommonDest(BI))
3691 return SimplifyCFG(BB) | true;
Chris Lattner3d512132010-12-13 06:25:44 +00003692 return false;
3693}
3694
3695
Devang Patel007349d2011-05-18 20:35:38 +00003696bool SimplifyCFGOpt::SimplifyCondBranch(BranchInst *BI, IRBuilder<> &Builder) {
Chris Lattner3d512132010-12-13 06:25:44 +00003697 BasicBlock *BB = BI->getParent();
Andrew Trick6b014382012-08-29 21:46:36 +00003698
Chris Lattner3d512132010-12-13 06:25:44 +00003699 // Conditional branch
3700 if (isValueEqualityComparison(BI)) {
3701 // If we only have one predecessor, and if it is a branch on this value,
3702 // see if that predecessor totally determines the outcome of this
3703 // switch.
3704 if (BasicBlock *OnlyPred = BB->getSinglePredecessor())
Devang Patel007349d2011-05-18 20:35:38 +00003705 if (SimplifyEqualityComparisonWithOnlyPredecessor(BI, OnlyPred, Builder))
Chris Lattner3d512132010-12-13 06:25:44 +00003706 return SimplifyCFG(BB) | true;
Andrew Trick6b014382012-08-29 21:46:36 +00003707
Chris Lattner3d512132010-12-13 06:25:44 +00003708 // This block must be empty, except for the setcond inst, if it exists.
3709 // Ignore dbg intrinsics.
3710 BasicBlock::iterator I = BB->begin();
3711 // Ignore dbg intrinsics.
3712 while (isa<DbgInfoIntrinsic>(I))
3713 ++I;
3714 if (&*I == BI) {
Devang Patelb55d9242011-05-18 20:53:17 +00003715 if (FoldValueComparisonIntoPredecessors(BI, Builder))
Chris Lattner3d512132010-12-13 06:25:44 +00003716 return SimplifyCFG(BB) | true;
3717 } else if (&*I == cast<Instruction>(BI->getCondition())){
3718 ++I;
3719 // Ignore dbg intrinsics.
3720 while (isa<DbgInfoIntrinsic>(I))
3721 ++I;
Devang Patelb55d9242011-05-18 20:53:17 +00003722 if (&*I == BI && FoldValueComparisonIntoPredecessors(BI, Builder))
Chris Lattner3d512132010-12-13 06:25:44 +00003723 return SimplifyCFG(BB) | true;
3724 }
3725 }
Andrew Trick6b014382012-08-29 21:46:36 +00003726
Chris Lattner3d512132010-12-13 06:25:44 +00003727 // Try to turn "br (X == 0 | X == 1), T, F" into a switch instruction.
Devang Patel02dd5412011-05-18 23:18:47 +00003728 if (SimplifyBranchOnICmpChain(BI, TD, Builder))
Chris Lattner3d512132010-12-13 06:25:44 +00003729 return true;
Andrew Trick6b014382012-08-29 21:46:36 +00003730
Dan Gohman3b205172012-01-05 23:58:56 +00003731 // If this basic block is ONLY a compare and a branch, and if a predecessor
3732 // branches to us and one of our successors, fold the comparison into the
3733 // predecessor and use logical operations to pick the right destination.
3734 if (FoldBranchToCommonDest(BI))
3735 return SimplifyCFG(BB) | true;
Andrew Trick6b014382012-08-29 21:46:36 +00003736
Chris Lattner3d512132010-12-13 06:25:44 +00003737 // We have a conditional branch to two blocks that are only reachable
3738 // from BI. We know that the condbr dominates the two blocks, so see if
3739 // there is any identical code in the "then" and "else" blocks. If so, we
3740 // can hoist it up to the branching block.
3741 if (BI->getSuccessor(0)->getSinglePredecessor() != 0) {
3742 if (BI->getSuccessor(1)->getSinglePredecessor() != 0) {
Rafael Espindola216dde92011-05-19 02:26:30 +00003743 if (HoistThenElseCodeToIf(BI))
Chris Lattner3d512132010-12-13 06:25:44 +00003744 return SimplifyCFG(BB) | true;
3745 } else {
3746 // If Successor #1 has multiple preds, we may be able to conditionally
3747 // execute Successor #0 if it branches to successor #1.
3748 TerminatorInst *Succ0TI = BI->getSuccessor(0)->getTerminator();
3749 if (Succ0TI->getNumSuccessors() == 1 &&
3750 Succ0TI->getSuccessor(0) == BI->getSuccessor(1))
Rafael Espindola216dde92011-05-19 02:26:30 +00003751 if (SpeculativelyExecuteBB(BI, BI->getSuccessor(0)))
Chris Lattner3d512132010-12-13 06:25:44 +00003752 return SimplifyCFG(BB) | true;
3753 }
3754 } else if (BI->getSuccessor(1)->getSinglePredecessor() != 0) {
3755 // If Successor #0 has multiple preds, we may be able to conditionally
3756 // execute Successor #1 if it branches to successor #0.
3757 TerminatorInst *Succ1TI = BI->getSuccessor(1)->getTerminator();
3758 if (Succ1TI->getNumSuccessors() == 1 &&
3759 Succ1TI->getSuccessor(0) == BI->getSuccessor(0))
Rafael Espindola216dde92011-05-19 02:26:30 +00003760 if (SpeculativelyExecuteBB(BI, BI->getSuccessor(1)))
Chris Lattner3d512132010-12-13 06:25:44 +00003761 return SimplifyCFG(BB) | true;
3762 }
Andrew Trick6b014382012-08-29 21:46:36 +00003763
Chris Lattner3d512132010-12-13 06:25:44 +00003764 // If this is a branch on a phi node in the current block, thread control
3765 // through this block if any PHI node entries are constants.
3766 if (PHINode *PN = dyn_cast<PHINode>(BI->getCondition()))
3767 if (PN->getParent() == BI->getParent())
Chris Lattner302ba6f2010-12-14 06:17:25 +00003768 if (FoldCondBranchOnPHI(BI, TD))
Chris Lattner3d512132010-12-13 06:25:44 +00003769 return SimplifyCFG(BB) | true;
Andrew Trick6b014382012-08-29 21:46:36 +00003770
Chris Lattner3d512132010-12-13 06:25:44 +00003771 // Scan predecessor blocks for conditional branches.
3772 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI)
3773 if (BranchInst *PBI = dyn_cast<BranchInst>((*PI)->getTerminator()))
3774 if (PBI != BI && PBI->isConditional())
3775 if (SimplifyCondBranchToCondBranch(PBI, BI))
3776 return SimplifyCFG(BB) | true;
3777
3778 return false;
3779}
3780
Benjamin Kramer98d6d232011-08-26 01:22:29 +00003781/// Check if passing a value to an instruction will cause undefined behavior.
3782static bool passingValueIsAlwaysUndefined(Value *V, Instruction *I) {
3783 Constant *C = dyn_cast<Constant>(V);
3784 if (!C)
3785 return false;
3786
Benjamin Kramer1e21db62012-10-04 16:11:49 +00003787 if (I->use_empty())
Benjamin Kramer98d6d232011-08-26 01:22:29 +00003788 return false;
3789
3790 if (C->isNullValue()) {
Benjamin Kramer1e21db62012-10-04 16:11:49 +00003791 // Only look at the first use, avoid hurting compile time with long uselists
3792 User *Use = *I->use_begin();
Benjamin Kramer98d6d232011-08-26 01:22:29 +00003793
3794 // Now make sure that there are no instructions in between that can alter
3795 // control flow (eg. calls)
3796 for (BasicBlock::iterator i = ++BasicBlock::iterator(I); &*i != Use; ++i)
Benjamin Kramer9bb54882011-08-26 02:25:55 +00003797 if (i == I->getParent()->end() || i->mayHaveSideEffects())
Benjamin Kramer98d6d232011-08-26 01:22:29 +00003798 return false;
3799
3800 // Look through GEPs. A load from a GEP derived from NULL is still undefined
3801 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Use))
3802 if (GEP->getPointerOperand() == I)
3803 return passingValueIsAlwaysUndefined(V, GEP);
3804
3805 // Look through bitcasts.
3806 if (BitCastInst *BC = dyn_cast<BitCastInst>(Use))
3807 return passingValueIsAlwaysUndefined(V, BC);
3808
Benjamin Kramer9bb54882011-08-26 02:25:55 +00003809 // Load from null is undefined.
3810 if (LoadInst *LI = dyn_cast<LoadInst>(Use))
3811 return LI->getPointerAddressSpace() == 0;
Benjamin Kramer98d6d232011-08-26 01:22:29 +00003812
Benjamin Kramer9bb54882011-08-26 02:25:55 +00003813 // Store to null is undefined.
3814 if (StoreInst *SI = dyn_cast<StoreInst>(Use))
3815 return SI->getPointerAddressSpace() == 0 && SI->getPointerOperand() == I;
Benjamin Kramer98d6d232011-08-26 01:22:29 +00003816 }
3817 return false;
3818}
3819
3820/// If BB has an incoming value that will always trigger undefined behavior
Nick Lewycky9d523102011-12-26 20:37:40 +00003821/// (eg. null pointer dereference), remove the branch leading here.
Benjamin Kramer98d6d232011-08-26 01:22:29 +00003822static bool removeUndefIntroducingPredecessor(BasicBlock *BB) {
3823 for (BasicBlock::iterator i = BB->begin();
3824 PHINode *PHI = dyn_cast<PHINode>(i); ++i)
3825 for (unsigned i = 0, e = PHI->getNumIncomingValues(); i != e; ++i)
3826 if (passingValueIsAlwaysUndefined(PHI->getIncomingValue(i), PHI)) {
3827 TerminatorInst *T = PHI->getIncomingBlock(i)->getTerminator();
3828 IRBuilder<> Builder(T);
3829 if (BranchInst *BI = dyn_cast<BranchInst>(T)) {
3830 BB->removePredecessor(PHI->getIncomingBlock(i));
3831 // Turn uncoditional branches into unreachables and remove the dead
3832 // destination from conditional branches.
3833 if (BI->isUnconditional())
3834 Builder.CreateUnreachable();
3835 else
3836 Builder.CreateBr(BI->getSuccessor(0) == BB ? BI->getSuccessor(1) :
3837 BI->getSuccessor(0));
3838 BI->eraseFromParent();
3839 return true;
3840 }
3841 // TODO: SwitchInst.
3842 }
3843
3844 return false;
3845}
3846
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +00003847bool SimplifyCFGOpt::run(BasicBlock *BB) {
Chris Lattnerdc3602b2003-08-24 18:36:16 +00003848 bool Changed = false;
Chris Lattner01d1ee32002-05-21 20:50:24 +00003849
Chris Lattner302ba6f2010-12-14 06:17:25 +00003850 assert(BB && BB->getParent() && "Block not embedded in function!");
Chris Lattner01d1ee32002-05-21 20:50:24 +00003851 assert(BB->getTerminator() && "Degenerate basic block encountered!");
Chris Lattner01d1ee32002-05-21 20:50:24 +00003852
Dan Gohmane2c6d132010-08-14 00:29:42 +00003853 // Remove basic blocks that have no predecessors (except the entry block)...
3854 // or that just have themself as a predecessor. These are unreachable.
Chris Lattner302ba6f2010-12-14 06:17:25 +00003855 if ((pred_begin(BB) == pred_end(BB) &&
3856 BB != &BB->getParent()->getEntryBlock()) ||
Dan Gohmane2c6d132010-08-14 00:29:42 +00003857 BB->getSinglePredecessor() == BB) {
David Greene89d6fd32010-01-05 01:26:52 +00003858 DEBUG(dbgs() << "Removing BB: \n" << *BB);
Chris Lattner71af9b02008-12-03 06:40:52 +00003859 DeleteDeadBlock(BB);
Chris Lattner01d1ee32002-05-21 20:50:24 +00003860 return true;
3861 }
3862
Chris Lattner694e37f2003-08-17 19:41:53 +00003863 // Check to see if we can constant propagate this terminator instruction
3864 // away...
Frits van Bommel5649ba72011-05-22 16:24:18 +00003865 Changed |= ConstantFoldTerminator(BB, true);
Chris Lattner694e37f2003-08-17 19:41:53 +00003866
Dan Gohman2c635662009-10-30 22:39:04 +00003867 // Check for and eliminate duplicate PHI nodes in this block.
3868 Changed |= EliminateDuplicatePHINodes(BB);
3869
Benjamin Kramer98d6d232011-08-26 01:22:29 +00003870 // Check for and remove branches that will always cause undefined behavior.
3871 Changed |= removeUndefIntroducingPredecessor(BB);
3872
Chris Lattnerddb97a22010-12-13 05:10:48 +00003873 // Merge basic blocks into their predecessor if there is only one distinct
3874 // pred, and if there is only one distinct successor of the predecessor, and
3875 // if there are no PHI nodes.
3876 //
3877 if (MergeBlockIntoPredecessor(BB))
3878 return true;
Andrew Trick6b014382012-08-29 21:46:36 +00003879
Devang Patel3e410c62011-05-18 18:01:27 +00003880 IRBuilder<> Builder(BB);
3881
Dan Gohman882d87d2008-03-11 21:53:06 +00003882 // If there is a trivial two-entry PHI node in this basic block, and we can
3883 // eliminate it, do so now.
3884 if (PHINode *PN = dyn_cast<PHINode>(BB->begin()))
3885 if (PN->getNumIncomingValues() == 2)
Devang Pateld3a17882011-05-19 20:52:46 +00003886 Changed |= FoldTwoEntryPHINode(PN, TD);
Dan Gohman882d87d2008-03-11 21:53:06 +00003887
Devang Patel007349d2011-05-18 20:35:38 +00003888 Builder.SetInsertPoint(BB->getTerminator());
Chris Lattner3d512132010-12-13 06:25:44 +00003889 if (BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator())) {
Chris Lattner021c9d32010-12-13 06:36:51 +00003890 if (BI->isUnconditional()) {
Devang Patela23812c2011-05-18 18:28:48 +00003891 if (SimplifyUncondBranch(BI, Builder)) return true;
Chris Lattner021c9d32010-12-13 06:36:51 +00003892 } else {
Devang Patel007349d2011-05-18 20:35:38 +00003893 if (SimplifyCondBranch(BI, Builder)) return true;
Chris Lattner021c9d32010-12-13 06:36:51 +00003894 }
3895 } else if (ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator())) {
Devang Patel176ec402011-05-18 21:33:11 +00003896 if (SimplifyReturn(RI, Builder)) return true;
Bill Wendlingaa5abe82012-02-06 21:16:41 +00003897 } else if (ResumeInst *RI = dyn_cast<ResumeInst>(BB->getTerminator())) {
3898 if (SimplifyResume(RI, Builder)) return true;
Chris Lattner021c9d32010-12-13 06:36:51 +00003899 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(BB->getTerminator())) {
Devang Patel007349d2011-05-18 20:35:38 +00003900 if (SimplifySwitch(SI, Builder)) return true;
Chris Lattner021c9d32010-12-13 06:36:51 +00003901 } else if (UnreachableInst *UI =
3902 dyn_cast<UnreachableInst>(BB->getTerminator())) {
3903 if (SimplifyUnreachable(UI)) return true;
Chris Lattner021c9d32010-12-13 06:36:51 +00003904 } else if (IndirectBrInst *IBI =
3905 dyn_cast<IndirectBrInst>(BB->getTerminator())) {
3906 if (SimplifyIndirectBr(IBI)) return true;
Chris Lattner19831ec2004-02-16 06:35:48 +00003907 }
3908
Chris Lattner694e37f2003-08-17 19:41:53 +00003909 return Changed;
Chris Lattner01d1ee32002-05-21 20:50:24 +00003910}
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +00003911
3912/// SimplifyCFG - This function is used to do simplification of a CFG. For
3913/// example, it adjusts branches to branches to eliminate the extra hop, it
3914/// eliminates unreachable basic blocks, and does other "peephole" optimization
3915/// of the CFG. It returns true if a modification was made.
3916///
Micah Villmow3574eca2012-10-08 16:38:25 +00003917bool llvm::SimplifyCFG(BasicBlock *BB, const DataLayout *TD) {
Jakob Stoklund Olesen58e9ee82010-02-05 22:03:18 +00003918 return SimplifyCFGOpt(TD).run(BB);
3919}