blob: 5e282279e336abf6f41291d38f5e6bb98a9732b3 [file] [log] [blame]
Chris Lattner466a0492002-05-21 20:50:24 +00001//===- SimplifyCFG.cpp - Code to perform CFG simplification ---------------===//
John Criswell482202a2003-10-20 19:43:21 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
Chris Lattner466a0492002-05-21 20:50:24 +00009//
Chris Lattnera704ac82002-10-08 21:36:33 +000010// Peephole optimize the CFG.
Chris Lattner466a0492002-05-21 20:50:24 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattner9734fd02004-06-20 01:13:18 +000014#define DEBUG_TYPE "simplifycfg"
Chris Lattner466a0492002-05-21 20:50:24 +000015#include "llvm/Transforms/Utils/Local.h"
Chris Lattner18d1f192004-02-11 03:36:04 +000016#include "llvm/Constants.h"
17#include "llvm/Instructions.h"
Chris Lattner6f4b45a2004-02-24 05:38:11 +000018#include "llvm/Type.h"
Chris Lattner466a0492002-05-21 20:50:24 +000019#include "llvm/Support/CFG.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000020#include "llvm/Support/Debug.h"
Chris Lattner466a0492002-05-21 20:50:24 +000021#include <algorithm>
22#include <functional>
Chris Lattnera2ab4892004-02-24 07:23:58 +000023#include <set>
Chris Lattner5edb2f32004-10-18 04:07:22 +000024#include <map>
Chris Lattnerdf3c3422004-01-09 06:12:26 +000025using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000026
Chris Lattner6f4b45a2004-02-24 05:38:11 +000027// PropagatePredecessorsForPHIs - This gets "Succ" ready to have the
28// predecessors from "BB". This is a little tricky because "Succ" has PHI
29// nodes, which need to have extra slots added to them to hold the merge edges
30// from BB's predecessors, and BB itself might have had PHI nodes in it. This
31// function returns true (failure) if the Succ BB already has a predecessor that
32// is a predecessor of BB and incoming PHI arguments would not be discernible.
Chris Lattner466a0492002-05-21 20:50:24 +000033//
34// Assumption: Succ is the single successor for BB.
35//
Misha Brukman632df282002-10-29 23:06:16 +000036static bool PropagatePredecessorsForPHIs(BasicBlock *BB, BasicBlock *Succ) {
Chris Lattner466a0492002-05-21 20:50:24 +000037 assert(*succ_begin(BB) == Succ && "Succ is not successor of BB!");
Chris Lattner5325c5f2002-09-24 00:09:26 +000038
39 if (!isa<PHINode>(Succ->front()))
40 return false; // We can make the transformation, no problem.
Chris Lattner466a0492002-05-21 20:50:24 +000041
42 // If there is more than one predecessor, and there are PHI nodes in
43 // the successor, then we need to add incoming edges for the PHI nodes
44 //
45 const std::vector<BasicBlock*> BBPreds(pred_begin(BB), pred_end(BB));
46
47 // Check to see if one of the predecessors of BB is already a predecessor of
Chris Lattner31116ba2003-03-05 21:01:52 +000048 // Succ. If so, we cannot do the transformation if there are any PHI nodes
49 // with incompatible values coming in from the two edges!
Chris Lattner466a0492002-05-21 20:50:24 +000050 //
Chris Lattner31116ba2003-03-05 21:01:52 +000051 for (pred_iterator PI = pred_begin(Succ), PE = pred_end(Succ); PI != PE; ++PI)
Alkis Evlogimenosa5c04ee2004-09-03 18:19:51 +000052 if (std::find(BBPreds.begin(), BBPreds.end(), *PI) != BBPreds.end()) {
Chris Lattner31116ba2003-03-05 21:01:52 +000053 // Loop over all of the PHI nodes checking to see if there are
54 // incompatible values coming in.
Reid Spencer66149462004-09-15 17:06:42 +000055 for (BasicBlock::iterator I = Succ->begin(); isa<PHINode>(I); ++I) {
56 PHINode *PN = cast<PHINode>(I);
Chris Lattner31116ba2003-03-05 21:01:52 +000057 // Loop up the entries in the PHI node for BB and for *PI if the values
58 // coming in are non-equal, we cannot merge these two blocks (instead we
59 // should insert a conditional move or something, then merge the
60 // blocks).
61 int Idx1 = PN->getBasicBlockIndex(BB);
62 int Idx2 = PN->getBasicBlockIndex(*PI);
63 assert(Idx1 != -1 && Idx2 != -1 &&
64 "Didn't have entries for my predecessors??");
65 if (PN->getIncomingValue(Idx1) != PN->getIncomingValue(Idx2))
66 return true; // Values are not equal...
67 }
68 }
Chris Lattner466a0492002-05-21 20:50:24 +000069
Chris Lattner9734fd02004-06-20 01:13:18 +000070 // Loop over all of the PHI nodes in the successor BB.
Reid Spencer66149462004-09-15 17:06:42 +000071 for (BasicBlock::iterator I = Succ->begin(); isa<PHINode>(I); ++I) {
72 PHINode *PN = cast<PHINode>(I);
Chris Lattnera704ac82002-10-08 21:36:33 +000073 Value *OldVal = PN->removeIncomingValue(BB, false);
Chris Lattner466a0492002-05-21 20:50:24 +000074 assert(OldVal && "No entry in PHI for Pred BB!");
75
Chris Lattner9734fd02004-06-20 01:13:18 +000076 // If this incoming value is one of the PHI nodes in BB, the new entries in
77 // the PHI node are the entries from the old PHI.
Chris Lattnere54d2142003-03-05 21:36:33 +000078 if (isa<PHINode>(OldVal) && cast<PHINode>(OldVal)->getParent() == BB) {
79 PHINode *OldValPN = cast<PHINode>(OldVal);
Chris Lattner9734fd02004-06-20 01:13:18 +000080 for (unsigned i = 0, e = OldValPN->getNumIncomingValues(); i != e; ++i)
81 PN->addIncoming(OldValPN->getIncomingValue(i),
82 OldValPN->getIncomingBlock(i));
Chris Lattnere54d2142003-03-05 21:36:33 +000083 } else {
84 for (std::vector<BasicBlock*>::const_iterator PredI = BBPreds.begin(),
85 End = BBPreds.end(); PredI != End; ++PredI) {
86 // Add an incoming value for each of the new incoming values...
87 PN->addIncoming(OldVal, *PredI);
88 }
Chris Lattner466a0492002-05-21 20:50:24 +000089 }
90 }
91 return false;
92}
93
Chris Lattner18d1f192004-02-11 03:36:04 +000094/// GetIfCondition - Given a basic block (BB) with two predecessors (and
95/// presumably PHI nodes in it), check to see if the merge at this block is due
96/// to an "if condition". If so, return the boolean condition that determines
97/// which entry into BB will be taken. Also, return by references the block
98/// that will be entered from if the condition is true, and the block that will
99/// be entered if the condition is false.
100///
101///
102static Value *GetIfCondition(BasicBlock *BB,
103 BasicBlock *&IfTrue, BasicBlock *&IfFalse) {
104 assert(std::distance(pred_begin(BB), pred_end(BB)) == 2 &&
105 "Function can only handle blocks with 2 predecessors!");
106 BasicBlock *Pred1 = *pred_begin(BB);
107 BasicBlock *Pred2 = *++pred_begin(BB);
108
109 // We can only handle branches. Other control flow will be lowered to
110 // branches if possible anyway.
111 if (!isa<BranchInst>(Pred1->getTerminator()) ||
112 !isa<BranchInst>(Pred2->getTerminator()))
113 return 0;
114 BranchInst *Pred1Br = cast<BranchInst>(Pred1->getTerminator());
115 BranchInst *Pred2Br = cast<BranchInst>(Pred2->getTerminator());
116
117 // Eliminate code duplication by ensuring that Pred1Br is conditional if
118 // either are.
119 if (Pred2Br->isConditional()) {
120 // If both branches are conditional, we don't have an "if statement". In
121 // reality, we could transform this case, but since the condition will be
122 // required anyway, we stand no chance of eliminating it, so the xform is
123 // probably not profitable.
124 if (Pred1Br->isConditional())
125 return 0;
126
127 std::swap(Pred1, Pred2);
128 std::swap(Pred1Br, Pred2Br);
129 }
130
131 if (Pred1Br->isConditional()) {
132 // If we found a conditional branch predecessor, make sure that it branches
133 // to BB and Pred2Br. If it doesn't, this isn't an "if statement".
134 if (Pred1Br->getSuccessor(0) == BB &&
135 Pred1Br->getSuccessor(1) == Pred2) {
136 IfTrue = Pred1;
137 IfFalse = Pred2;
138 } else if (Pred1Br->getSuccessor(0) == Pred2 &&
139 Pred1Br->getSuccessor(1) == BB) {
140 IfTrue = Pred2;
141 IfFalse = Pred1;
142 } else {
143 // We know that one arm of the conditional goes to BB, so the other must
144 // go somewhere unrelated, and this must not be an "if statement".
145 return 0;
146 }
147
148 // The only thing we have to watch out for here is to make sure that Pred2
149 // doesn't have incoming edges from other blocks. If it does, the condition
150 // doesn't dominate BB.
151 if (++pred_begin(Pred2) != pred_end(Pred2))
152 return 0;
153
154 return Pred1Br->getCondition();
155 }
156
157 // Ok, if we got here, both predecessors end with an unconditional branch to
158 // BB. Don't panic! If both blocks only have a single (identical)
159 // predecessor, and THAT is a conditional branch, then we're all ok!
160 if (pred_begin(Pred1) == pred_end(Pred1) ||
161 ++pred_begin(Pred1) != pred_end(Pred1) ||
162 pred_begin(Pred2) == pred_end(Pred2) ||
163 ++pred_begin(Pred2) != pred_end(Pred2) ||
164 *pred_begin(Pred1) != *pred_begin(Pred2))
165 return 0;
166
167 // Otherwise, if this is a conditional branch, then we can use it!
168 BasicBlock *CommonPred = *pred_begin(Pred1);
169 if (BranchInst *BI = dyn_cast<BranchInst>(CommonPred->getTerminator())) {
170 assert(BI->isConditional() && "Two successors but not conditional?");
171 if (BI->getSuccessor(0) == Pred1) {
172 IfTrue = Pred1;
173 IfFalse = Pred2;
174 } else {
175 IfTrue = Pred2;
176 IfFalse = Pred1;
177 }
178 return BI->getCondition();
179 }
180 return 0;
181}
182
183
184// If we have a merge point of an "if condition" as accepted above, return true
185// if the specified value dominates the block. We don't handle the true
186// generality of domination here, just a special case which works well enough
187// for us.
Chris Lattner45c35b12004-10-14 05:13:36 +0000188//
189// If AggressiveInsts is non-null, and if V does not dominate BB, we check to
190// see if V (which must be an instruction) is cheap to compute and is
191// non-trapping. If both are true, the instruction is inserted into the set and
192// true is returned.
193static bool DominatesMergePoint(Value *V, BasicBlock *BB,
194 std::set<Instruction*> *AggressiveInsts) {
Chris Lattner0aa56562004-04-09 22:50:22 +0000195 Instruction *I = dyn_cast<Instruction>(V);
196 if (!I) return true; // Non-instructions all dominate instructions.
197 BasicBlock *PBB = I->getParent();
Chris Lattner18d1f192004-02-11 03:36:04 +0000198
Chris Lattner0aa56562004-04-09 22:50:22 +0000199 // We don't want to allow wierd loops that might have the "if condition" in
200 // the bottom of this block.
201 if (PBB == BB) return false;
Chris Lattner18d1f192004-02-11 03:36:04 +0000202
Chris Lattner0aa56562004-04-09 22:50:22 +0000203 // If this instruction is defined in a block that contains an unconditional
204 // branch to BB, then it must be in the 'conditional' part of the "if
205 // statement".
206 if (BranchInst *BI = dyn_cast<BranchInst>(PBB->getTerminator()))
207 if (BI->isUnconditional() && BI->getSuccessor(0) == BB) {
Chris Lattner45c35b12004-10-14 05:13:36 +0000208 if (!AggressiveInsts) return false;
Chris Lattner0aa56562004-04-09 22:50:22 +0000209 // Okay, it looks like the instruction IS in the "condition". Check to
210 // see if its a cheap instruction to unconditionally compute, and if it
211 // only uses stuff defined outside of the condition. If so, hoist it out.
212 switch (I->getOpcode()) {
213 default: return false; // Cannot hoist this out safely.
214 case Instruction::Load:
215 // We can hoist loads that are non-volatile and obviously cannot trap.
216 if (cast<LoadInst>(I)->isVolatile())
217 return false;
218 if (!isa<AllocaInst>(I->getOperand(0)) &&
Reid Spenceref784f02004-07-18 00:32:14 +0000219 !isa<Constant>(I->getOperand(0)))
Chris Lattner0aa56562004-04-09 22:50:22 +0000220 return false;
221
222 // Finally, we have to check to make sure there are no instructions
223 // before the load in its basic block, as we are going to hoist the loop
224 // out to its predecessor.
225 if (PBB->begin() != BasicBlock::iterator(I))
226 return false;
227 break;
228 case Instruction::Add:
229 case Instruction::Sub:
230 case Instruction::And:
231 case Instruction::Or:
232 case Instruction::Xor:
233 case Instruction::Shl:
234 case Instruction::Shr:
235 break; // These are all cheap and non-trapping instructions.
236 }
237
238 // Okay, we can only really hoist these out if their operands are not
239 // defined in the conditional region.
240 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
Chris Lattner45c35b12004-10-14 05:13:36 +0000241 if (!DominatesMergePoint(I->getOperand(i), BB, 0))
Chris Lattner0aa56562004-04-09 22:50:22 +0000242 return false;
Chris Lattner45c35b12004-10-14 05:13:36 +0000243 // Okay, it's safe to do this! Remember this instruction.
244 AggressiveInsts->insert(I);
Chris Lattner0aa56562004-04-09 22:50:22 +0000245 }
246
Chris Lattner18d1f192004-02-11 03:36:04 +0000247 return true;
248}
Chris Lattner466a0492002-05-21 20:50:24 +0000249
Chris Lattner6f4b45a2004-02-24 05:38:11 +0000250// GatherConstantSetEQs - Given a potentially 'or'd together collection of seteq
251// instructions that compare a value against a constant, return the value being
252// compared, and stick the constant into the Values vector.
Chris Lattnerb2b151d2004-06-19 07:02:14 +0000253static Value *GatherConstantSetEQs(Value *V, std::vector<ConstantInt*> &Values){
Chris Lattner6f4b45a2004-02-24 05:38:11 +0000254 if (Instruction *Inst = dyn_cast<Instruction>(V))
255 if (Inst->getOpcode() == Instruction::SetEQ) {
Chris Lattnerb2b151d2004-06-19 07:02:14 +0000256 if (ConstantInt *C = dyn_cast<ConstantInt>(Inst->getOperand(1))) {
Chris Lattner6f4b45a2004-02-24 05:38:11 +0000257 Values.push_back(C);
258 return Inst->getOperand(0);
Chris Lattnerb2b151d2004-06-19 07:02:14 +0000259 } else if (ConstantInt *C = dyn_cast<ConstantInt>(Inst->getOperand(0))) {
Chris Lattner6f4b45a2004-02-24 05:38:11 +0000260 Values.push_back(C);
261 return Inst->getOperand(1);
262 }
263 } else if (Inst->getOpcode() == Instruction::Or) {
264 if (Value *LHS = GatherConstantSetEQs(Inst->getOperand(0), Values))
265 if (Value *RHS = GatherConstantSetEQs(Inst->getOperand(1), Values))
266 if (LHS == RHS)
267 return LHS;
268 }
269 return 0;
270}
271
272// GatherConstantSetNEs - Given a potentially 'and'd together collection of
273// setne instructions that compare a value against a constant, return the value
274// being compared, and stick the constant into the Values vector.
Chris Lattnerb2b151d2004-06-19 07:02:14 +0000275static Value *GatherConstantSetNEs(Value *V, std::vector<ConstantInt*> &Values){
Chris Lattner6f4b45a2004-02-24 05:38:11 +0000276 if (Instruction *Inst = dyn_cast<Instruction>(V))
277 if (Inst->getOpcode() == Instruction::SetNE) {
Chris Lattnerb2b151d2004-06-19 07:02:14 +0000278 if (ConstantInt *C = dyn_cast<ConstantInt>(Inst->getOperand(1))) {
Chris Lattner6f4b45a2004-02-24 05:38:11 +0000279 Values.push_back(C);
280 return Inst->getOperand(0);
Chris Lattnerb2b151d2004-06-19 07:02:14 +0000281 } else if (ConstantInt *C = dyn_cast<ConstantInt>(Inst->getOperand(0))) {
Chris Lattner6f4b45a2004-02-24 05:38:11 +0000282 Values.push_back(C);
283 return Inst->getOperand(1);
284 }
285 } else if (Inst->getOpcode() == Instruction::Cast) {
286 // Cast of X to bool is really a comparison against zero.
287 assert(Inst->getType() == Type::BoolTy && "Can only handle bool values!");
Chris Lattnerb2b151d2004-06-19 07:02:14 +0000288 Values.push_back(ConstantInt::get(Inst->getOperand(0)->getType(), 0));
Chris Lattner6f4b45a2004-02-24 05:38:11 +0000289 return Inst->getOperand(0);
290 } else if (Inst->getOpcode() == Instruction::And) {
291 if (Value *LHS = GatherConstantSetNEs(Inst->getOperand(0), Values))
292 if (Value *RHS = GatherConstantSetNEs(Inst->getOperand(1), Values))
293 if (LHS == RHS)
294 return LHS;
295 }
296 return 0;
297}
298
299
300
301/// GatherValueComparisons - If the specified Cond is an 'and' or 'or' of a
302/// bunch of comparisons of one value against constants, return the value and
303/// the constants being compared.
304static bool GatherValueComparisons(Instruction *Cond, Value *&CompVal,
Chris Lattnerb2b151d2004-06-19 07:02:14 +0000305 std::vector<ConstantInt*> &Values) {
Chris Lattner6f4b45a2004-02-24 05:38:11 +0000306 if (Cond->getOpcode() == Instruction::Or) {
307 CompVal = GatherConstantSetEQs(Cond, Values);
308
309 // Return true to indicate that the condition is true if the CompVal is
310 // equal to one of the constants.
311 return true;
312 } else if (Cond->getOpcode() == Instruction::And) {
313 CompVal = GatherConstantSetNEs(Cond, Values);
314
315 // Return false to indicate that the condition is false if the CompVal is
316 // equal to one of the constants.
317 return false;
318 }
319 return false;
320}
321
322/// ErasePossiblyDeadInstructionTree - If the specified instruction is dead and
323/// has no side effects, nuke it. If it uses any instructions that become dead
324/// because the instruction is now gone, nuke them too.
325static void ErasePossiblyDeadInstructionTree(Instruction *I) {
326 if (isInstructionTriviallyDead(I)) {
327 std::vector<Value*> Operands(I->op_begin(), I->op_end());
328 I->getParent()->getInstList().erase(I);
329 for (unsigned i = 0, e = Operands.size(); i != e; ++i)
330 if (Instruction *OpI = dyn_cast<Instruction>(Operands[i]))
331 ErasePossiblyDeadInstructionTree(OpI);
332 }
333}
334
Chris Lattnera2ab4892004-02-24 07:23:58 +0000335/// SafeToMergeTerminators - Return true if it is safe to merge these two
336/// terminator instructions together.
337///
338static bool SafeToMergeTerminators(TerminatorInst *SI1, TerminatorInst *SI2) {
339 if (SI1 == SI2) return false; // Can't merge with self!
340
341 // It is not safe to merge these two switch instructions if they have a common
Chris Lattnerf12c4a32004-06-21 07:19:01 +0000342 // successor, and if that successor has a PHI node, and if *that* PHI node has
Chris Lattnera2ab4892004-02-24 07:23:58 +0000343 // conflicting incoming values from the two switch blocks.
344 BasicBlock *SI1BB = SI1->getParent();
345 BasicBlock *SI2BB = SI2->getParent();
346 std::set<BasicBlock*> SI1Succs(succ_begin(SI1BB), succ_end(SI1BB));
347
348 for (succ_iterator I = succ_begin(SI2BB), E = succ_end(SI2BB); I != E; ++I)
349 if (SI1Succs.count(*I))
350 for (BasicBlock::iterator BBI = (*I)->begin();
Reid Spencer66149462004-09-15 17:06:42 +0000351 isa<PHINode>(BBI); ++BBI) {
352 PHINode *PN = cast<PHINode>(BBI);
Chris Lattnera2ab4892004-02-24 07:23:58 +0000353 if (PN->getIncomingValueForBlock(SI1BB) !=
354 PN->getIncomingValueForBlock(SI2BB))
355 return false;
Reid Spencer66149462004-09-15 17:06:42 +0000356 }
Chris Lattnera2ab4892004-02-24 07:23:58 +0000357
358 return true;
359}
360
361/// AddPredecessorToBlock - Update PHI nodes in Succ to indicate that there will
362/// now be entries in it from the 'NewPred' block. The values that will be
363/// flowing into the PHI nodes will be the same as those coming in from
Chris Lattnerf12c4a32004-06-21 07:19:01 +0000364/// ExistPred, an existing predecessor of Succ.
Chris Lattnera2ab4892004-02-24 07:23:58 +0000365static void AddPredecessorToBlock(BasicBlock *Succ, BasicBlock *NewPred,
366 BasicBlock *ExistPred) {
367 assert(std::find(succ_begin(ExistPred), succ_end(ExistPred), Succ) !=
368 succ_end(ExistPred) && "ExistPred is not a predecessor of Succ!");
369 if (!isa<PHINode>(Succ->begin())) return; // Quick exit if nothing to do
370
Reid Spencer66149462004-09-15 17:06:42 +0000371 for (BasicBlock::iterator I = Succ->begin(); isa<PHINode>(I); ++I) {
372 PHINode *PN = cast<PHINode>(I);
Chris Lattnera2ab4892004-02-24 07:23:58 +0000373 Value *V = PN->getIncomingValueForBlock(ExistPred);
374 PN->addIncoming(V, NewPred);
375 }
376}
377
Chris Lattnerd3e6ae22004-02-28 21:28:10 +0000378// isValueEqualityComparison - Return true if the specified terminator checks to
379// see if a value is equal to constant integer value.
380static Value *isValueEqualityComparison(TerminatorInst *TI) {
Chris Lattnera64923a2004-03-16 19:45:22 +0000381 if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
382 // Do not permit merging of large switch instructions into their
383 // predecessors unless there is only one predecessor.
384 if (SI->getNumSuccessors() * std::distance(pred_begin(SI->getParent()),
385 pred_end(SI->getParent())) > 128)
386 return 0;
387
Chris Lattnerd3e6ae22004-02-28 21:28:10 +0000388 return SI->getCondition();
Chris Lattnera64923a2004-03-16 19:45:22 +0000389 }
Chris Lattnerd3e6ae22004-02-28 21:28:10 +0000390 if (BranchInst *BI = dyn_cast<BranchInst>(TI))
391 if (BI->isConditional() && BI->getCondition()->hasOneUse())
392 if (SetCondInst *SCI = dyn_cast<SetCondInst>(BI->getCondition()))
393 if ((SCI->getOpcode() == Instruction::SetEQ ||
394 SCI->getOpcode() == Instruction::SetNE) &&
395 isa<ConstantInt>(SCI->getOperand(1)))
396 return SCI->getOperand(0);
397 return 0;
398}
399
400// Given a value comparison instruction, decode all of the 'cases' that it
401// represents and return the 'default' block.
402static BasicBlock *
403GetValueEqualityComparisonCases(TerminatorInst *TI,
404 std::vector<std::pair<ConstantInt*,
405 BasicBlock*> > &Cases) {
406 if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
407 Cases.reserve(SI->getNumCases());
408 for (unsigned i = 1, e = SI->getNumCases(); i != e; ++i)
409 Cases.push_back(std::make_pair(cast<ConstantInt>(SI->getCaseValue(i)),
410 SI->getSuccessor(i)));
411 return SI->getDefaultDest();
412 }
413
414 BranchInst *BI = cast<BranchInst>(TI);
415 SetCondInst *SCI = cast<SetCondInst>(BI->getCondition());
416 Cases.push_back(std::make_pair(cast<ConstantInt>(SCI->getOperand(1)),
417 BI->getSuccessor(SCI->getOpcode() ==
418 Instruction::SetNE)));
419 return BI->getSuccessor(SCI->getOpcode() == Instruction::SetEQ);
420}
421
422
423// FoldValueComparisonIntoPredecessors - The specified terminator is a value
424// equality comparison instruction (either a switch or a branch on "X == c").
425// See if any of the predecessors of the terminator block are value comparisons
426// on the same value. If so, and if safe to do so, fold them together.
427static bool FoldValueComparisonIntoPredecessors(TerminatorInst *TI) {
428 BasicBlock *BB = TI->getParent();
429 Value *CV = isValueEqualityComparison(TI); // CondVal
430 assert(CV && "Not a comparison?");
431 bool Changed = false;
432
433 std::vector<BasicBlock*> Preds(pred_begin(BB), pred_end(BB));
434 while (!Preds.empty()) {
435 BasicBlock *Pred = Preds.back();
436 Preds.pop_back();
437
438 // See if the predecessor is a comparison with the same value.
439 TerminatorInst *PTI = Pred->getTerminator();
440 Value *PCV = isValueEqualityComparison(PTI); // PredCondVal
441
442 if (PCV == CV && SafeToMergeTerminators(TI, PTI)) {
443 // Figure out which 'cases' to copy from SI to PSI.
444 std::vector<std::pair<ConstantInt*, BasicBlock*> > BBCases;
445 BasicBlock *BBDefault = GetValueEqualityComparisonCases(TI, BBCases);
446
447 std::vector<std::pair<ConstantInt*, BasicBlock*> > PredCases;
448 BasicBlock *PredDefault = GetValueEqualityComparisonCases(PTI, PredCases);
449
450 // Based on whether the default edge from PTI goes to BB or not, fill in
451 // PredCases and PredDefault with the new switch cases we would like to
452 // build.
453 std::vector<BasicBlock*> NewSuccessors;
454
455 if (PredDefault == BB) {
456 // If this is the default destination from PTI, only the edges in TI
457 // that don't occur in PTI, or that branch to BB will be activated.
458 std::set<ConstantInt*> PTIHandled;
459 for (unsigned i = 0, e = PredCases.size(); i != e; ++i)
460 if (PredCases[i].second != BB)
461 PTIHandled.insert(PredCases[i].first);
462 else {
463 // The default destination is BB, we don't need explicit targets.
464 std::swap(PredCases[i], PredCases.back());
465 PredCases.pop_back();
466 --i; --e;
467 }
468
469 // Reconstruct the new switch statement we will be building.
470 if (PredDefault != BBDefault) {
471 PredDefault->removePredecessor(Pred);
472 PredDefault = BBDefault;
473 NewSuccessors.push_back(BBDefault);
474 }
475 for (unsigned i = 0, e = BBCases.size(); i != e; ++i)
476 if (!PTIHandled.count(BBCases[i].first) &&
477 BBCases[i].second != BBDefault) {
478 PredCases.push_back(BBCases[i]);
479 NewSuccessors.push_back(BBCases[i].second);
480 }
481
482 } else {
483 // If this is not the default destination from PSI, only the edges
484 // in SI that occur in PSI with a destination of BB will be
485 // activated.
486 std::set<ConstantInt*> PTIHandled;
487 for (unsigned i = 0, e = PredCases.size(); i != e; ++i)
488 if (PredCases[i].second == BB) {
489 PTIHandled.insert(PredCases[i].first);
490 std::swap(PredCases[i], PredCases.back());
491 PredCases.pop_back();
492 --i; --e;
493 }
494
495 // Okay, now we know which constants were sent to BB from the
496 // predecessor. Figure out where they will all go now.
497 for (unsigned i = 0, e = BBCases.size(); i != e; ++i)
498 if (PTIHandled.count(BBCases[i].first)) {
499 // If this is one we are capable of getting...
500 PredCases.push_back(BBCases[i]);
501 NewSuccessors.push_back(BBCases[i].second);
502 PTIHandled.erase(BBCases[i].first);// This constant is taken care of
503 }
504
505 // If there are any constants vectored to BB that TI doesn't handle,
506 // they must go to the default destination of TI.
507 for (std::set<ConstantInt*>::iterator I = PTIHandled.begin(),
508 E = PTIHandled.end(); I != E; ++I) {
509 PredCases.push_back(std::make_pair(*I, BBDefault));
510 NewSuccessors.push_back(BBDefault);
511 }
512 }
513
514 // Okay, at this point, we know which new successor Pred will get. Make
515 // sure we update the number of entries in the PHI nodes for these
516 // successors.
517 for (unsigned i = 0, e = NewSuccessors.size(); i != e; ++i)
518 AddPredecessorToBlock(NewSuccessors[i], Pred, BB);
519
520 // Now that the successors are updated, create the new Switch instruction.
Chris Lattnera35dfce2005-01-29 00:38:26 +0000521 SwitchInst *NewSI = new SwitchInst(CV, PredDefault, PredCases.size(),PTI);
Chris Lattnerd3e6ae22004-02-28 21:28:10 +0000522 for (unsigned i = 0, e = PredCases.size(); i != e; ++i)
523 NewSI->addCase(PredCases[i].first, PredCases[i].second);
Chris Lattner3215bb62005-01-01 16:02:12 +0000524
525 Instruction *DeadCond = 0;
526 if (BranchInst *BI = dyn_cast<BranchInst>(PTI))
527 // If PTI is a branch, remember the condition.
528 DeadCond = dyn_cast<Instruction>(BI->getCondition());
Chris Lattnerd3e6ae22004-02-28 21:28:10 +0000529 Pred->getInstList().erase(PTI);
530
Chris Lattner3215bb62005-01-01 16:02:12 +0000531 // If the condition is dead now, remove the instruction tree.
532 if (DeadCond) ErasePossiblyDeadInstructionTree(DeadCond);
533
Chris Lattnerd3e6ae22004-02-28 21:28:10 +0000534 // Okay, last check. If BB is still a successor of PSI, then we must
535 // have an infinite loop case. If so, add an infinitely looping block
536 // to handle the case to preserve the behavior of the code.
537 BasicBlock *InfLoopBlock = 0;
538 for (unsigned i = 0, e = NewSI->getNumSuccessors(); i != e; ++i)
539 if (NewSI->getSuccessor(i) == BB) {
540 if (InfLoopBlock == 0) {
541 // Insert it at the end of the loop, because it's either code,
542 // or it won't matter if it's hot. :)
543 InfLoopBlock = new BasicBlock("infloop", BB->getParent());
544 new BranchInst(InfLoopBlock, InfLoopBlock);
545 }
546 NewSI->setSuccessor(i, InfLoopBlock);
547 }
548
549 Changed = true;
550 }
551 }
552 return Changed;
553}
554
Chris Lattner389cfac2004-11-30 00:29:14 +0000555/// HoistThenElseCodeToIf - Given a conditional branch that codes to BB1 and
556/// BB2, hoist any common code in the two blocks up into the branch block. The
557/// caller of this function guarantees that BI's block dominates BB1 and BB2.
558static bool HoistThenElseCodeToIf(BranchInst *BI) {
559 // This does very trivial matching, with limited scanning, to find identical
560 // instructions in the two blocks. In particular, we don't want to get into
561 // O(M*N) situations here where M and N are the sizes of BB1 and BB2. As
562 // such, we currently just scan for obviously identical instructions in an
563 // identical order.
564 BasicBlock *BB1 = BI->getSuccessor(0); // The true destination.
565 BasicBlock *BB2 = BI->getSuccessor(1); // The false destination
566
567 Instruction *I1 = BB1->begin(), *I2 = BB2->begin();
568 if (I1->getOpcode() != I2->getOpcode() || !I1->isIdenticalTo(I2))
569 return false;
570
571 // If we get here, we can hoist at least one instruction.
572 BasicBlock *BIParent = BI->getParent();
Chris Lattner389cfac2004-11-30 00:29:14 +0000573
574 do {
575 // If we are hoisting the terminator instruction, don't move one (making a
576 // broken BB), instead clone it, and remove BI.
577 if (isa<TerminatorInst>(I1))
578 goto HoistTerminator;
579
580 // For a normal instruction, we just move one to right before the branch,
581 // then replace all uses of the other with the first. Finally, we remove
582 // the now redundant second instruction.
583 BIParent->getInstList().splice(BI, BB1->getInstList(), I1);
584 if (!I2->use_empty())
585 I2->replaceAllUsesWith(I1);
586 BB2->getInstList().erase(I2);
587
588 I1 = BB1->begin();
589 I2 = BB2->begin();
Chris Lattner389cfac2004-11-30 00:29:14 +0000590 } while (I1->getOpcode() == I2->getOpcode() && I1->isIdenticalTo(I2));
591
592 return true;
593
594HoistTerminator:
595 // Okay, it is safe to hoist the terminator.
596 Instruction *NT = I1->clone();
597 BIParent->getInstList().insert(BI, NT);
598 if (NT->getType() != Type::VoidTy) {
599 I1->replaceAllUsesWith(NT);
600 I2->replaceAllUsesWith(NT);
601 NT->setName(I1->getName());
602 }
603
604 // Hoisting one of the terminators from our successor is a great thing.
605 // Unfortunately, the successors of the if/else blocks may have PHI nodes in
606 // them. If they do, all PHI entries for BB1/BB2 must agree for all PHI
607 // nodes, so we insert select instruction to compute the final result.
608 std::map<std::pair<Value*,Value*>, SelectInst*> InsertedSelects;
609 for (succ_iterator SI = succ_begin(BB1), E = succ_end(BB1); SI != E; ++SI) {
610 PHINode *PN;
611 for (BasicBlock::iterator BBI = SI->begin();
Chris Lattner01944572004-11-30 07:47:34 +0000612 (PN = dyn_cast<PHINode>(BBI)); ++BBI) {
Chris Lattner389cfac2004-11-30 00:29:14 +0000613 Value *BB1V = PN->getIncomingValueForBlock(BB1);
614 Value *BB2V = PN->getIncomingValueForBlock(BB2);
615 if (BB1V != BB2V) {
616 // These values do not agree. Insert a select instruction before NT
617 // that determines the right value.
618 SelectInst *&SI = InsertedSelects[std::make_pair(BB1V, BB2V)];
619 if (SI == 0)
620 SI = new SelectInst(BI->getCondition(), BB1V, BB2V,
621 BB1V->getName()+"."+BB2V->getName(), NT);
622 // Make the PHI node use the select for all incoming values for BB1/BB2
623 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
624 if (PN->getIncomingBlock(i) == BB1 || PN->getIncomingBlock(i) == BB2)
625 PN->setIncomingValue(i, SI);
626 }
627 }
628 }
629
630 // Update any PHI nodes in our new successors.
631 for (succ_iterator SI = succ_begin(BB1), E = succ_end(BB1); SI != E; ++SI)
632 AddPredecessorToBlock(*SI, BIParent, BB1);
633
634 BI->eraseFromParent();
635 return true;
636}
637
Chris Lattnerb2b151d2004-06-19 07:02:14 +0000638namespace {
639 /// ConstantIntOrdering - This class implements a stable ordering of constant
640 /// integers that does not depend on their address. This is important for
641 /// applications that sort ConstantInt's to ensure uniqueness.
642 struct ConstantIntOrdering {
643 bool operator()(const ConstantInt *LHS, const ConstantInt *RHS) const {
644 return LHS->getRawValue() < RHS->getRawValue();
645 }
646 };
647}
648
Chris Lattnerd3e6ae22004-02-28 21:28:10 +0000649
Chris Lattner466a0492002-05-21 20:50:24 +0000650// SimplifyCFG - This function is used to do simplification of a CFG. For
651// example, it adjusts branches to branches to eliminate the extra hop, it
652// eliminates unreachable basic blocks, and does other "peephole" optimization
Chris Lattner31116ba2003-03-05 21:01:52 +0000653// of the CFG. It returns true if a modification was made.
Chris Lattner466a0492002-05-21 20:50:24 +0000654//
655// WARNING: The entry node of a function may not be simplified.
656//
Chris Lattnerdf3c3422004-01-09 06:12:26 +0000657bool llvm::SimplifyCFG(BasicBlock *BB) {
Chris Lattner3f5823f2003-08-24 18:36:16 +0000658 bool Changed = false;
Chris Lattner466a0492002-05-21 20:50:24 +0000659 Function *M = BB->getParent();
660
661 assert(BB && BB->getParent() && "Block not embedded in function!");
662 assert(BB->getTerminator() && "Degenerate basic block encountered!");
Chris Lattnerfda72b12002-06-25 16:12:52 +0000663 assert(&BB->getParent()->front() != BB && "Can't Simplify entry block!");
Chris Lattner466a0492002-05-21 20:50:24 +0000664
Chris Lattner466a0492002-05-21 20:50:24 +0000665 // Remove basic blocks that have no predecessors... which are unreachable.
Chris Lattnera2ab4892004-02-24 07:23:58 +0000666 if (pred_begin(BB) == pred_end(BB) ||
667 *pred_begin(BB) == BB && ++pred_begin(BB) == pred_end(BB)) {
Chris Lattner32c518e2004-07-15 02:06:12 +0000668 DEBUG(std::cerr << "Removing BB: \n" << *BB);
Chris Lattner466a0492002-05-21 20:50:24 +0000669
670 // Loop through all of our successors and make sure they know that one
671 // of their predecessors is going away.
672 for_each(succ_begin(BB), succ_end(BB),
673 std::bind2nd(std::mem_fun(&BasicBlock::removePredecessor), BB));
674
675 while (!BB->empty()) {
Chris Lattnerfda72b12002-06-25 16:12:52 +0000676 Instruction &I = BB->back();
Chris Lattner466a0492002-05-21 20:50:24 +0000677 // If this instruction is used, replace uses with an arbitrary
678 // constant value. Because control flow can't get here, we don't care
679 // what we replace the value with. Note that since this block is
680 // unreachable, and all values contained within it must dominate their
681 // uses, that all uses will eventually be removed.
Chris Lattnerfda72b12002-06-25 16:12:52 +0000682 if (!I.use_empty())
Chris Lattner466a0492002-05-21 20:50:24 +0000683 // Make all users of this instruction reference the constant instead
Chris Lattnerfda72b12002-06-25 16:12:52 +0000684 I.replaceAllUsesWith(Constant::getNullValue(I.getType()));
Chris Lattner466a0492002-05-21 20:50:24 +0000685
686 // Remove the instruction from the basic block
Chris Lattnerfda72b12002-06-25 16:12:52 +0000687 BB->getInstList().pop_back();
Chris Lattner466a0492002-05-21 20:50:24 +0000688 }
Chris Lattnerfda72b12002-06-25 16:12:52 +0000689 M->getBasicBlockList().erase(BB);
Chris Lattner466a0492002-05-21 20:50:24 +0000690 return true;
691 }
692
Chris Lattner031340a2003-08-17 19:41:53 +0000693 // Check to see if we can constant propagate this terminator instruction
694 // away...
Chris Lattner3f5823f2003-08-24 18:36:16 +0000695 Changed |= ConstantFoldTerminator(BB);
Chris Lattner031340a2003-08-17 19:41:53 +0000696
Chris Lattnere54d2142003-03-05 21:36:33 +0000697 // Check to see if this block has no non-phi instructions and only a single
698 // successor. If so, replace references to this basic block with references
699 // to the successor.
Chris Lattner466a0492002-05-21 20:50:24 +0000700 succ_iterator SI(succ_begin(BB));
701 if (SI != succ_end(BB) && ++SI == succ_end(BB)) { // One succ?
Chris Lattnere54d2142003-03-05 21:36:33 +0000702 BasicBlock::iterator BBI = BB->begin(); // Skip over phi nodes...
703 while (isa<PHINode>(*BBI)) ++BBI;
704
Chris Lattner93d1e392004-11-01 06:53:58 +0000705 BasicBlock *Succ = *succ_begin(BB); // There is exactly one successor.
706 if (BBI->isTerminator() && // Terminator is the only non-phi instruction!
707 Succ != BB) { // Don't hurt infinite loops!
708 // If our successor has PHI nodes, then we need to update them to include
709 // entries for BB's predecessors, not for BB itself. Be careful though,
710 // if this transformation fails (returns true) then we cannot do this
711 // transformation!
712 //
713 if (!PropagatePredecessorsForPHIs(BB, Succ)) {
714 DEBUG(std::cerr << "Killing Trivial BB: \n" << *BB);
715
716 if (isa<PHINode>(&BB->front())) {
Chris Lattner569a57f2003-03-07 18:13:41 +0000717 std::vector<BasicBlock*>
718 OldSuccPreds(pred_begin(Succ), pred_end(Succ));
Chris Lattner93d1e392004-11-01 06:53:58 +0000719
Chris Lattnere54d2142003-03-05 21:36:33 +0000720 // Move all PHI nodes in BB to Succ if they are alive, otherwise
721 // delete them.
722 while (PHINode *PN = dyn_cast<PHINode>(&BB->front()))
723 if (PN->use_empty())
Chris Lattner93d1e392004-11-01 06:53:58 +0000724 BB->getInstList().erase(BB->begin()); // Nuke instruction.
Chris Lattnere54d2142003-03-05 21:36:33 +0000725 else {
726 // The instruction is alive, so this means that Succ must have
727 // *ONLY* had BB as a predecessor, and the PHI node is still valid
Chris Lattner569a57f2003-03-07 18:13:41 +0000728 // now. Simply move it into Succ, because we know that BB
729 // strictly dominated Succ.
Chris Lattnere54d2142003-03-05 21:36:33 +0000730 BB->getInstList().remove(BB->begin());
731 Succ->getInstList().push_front(PN);
Chris Lattner93d1e392004-11-01 06:53:58 +0000732
Chris Lattner569a57f2003-03-07 18:13:41 +0000733 // We need to add new entries for the PHI node to account for
734 // predecessors of Succ that the PHI node does not take into
735 // account. At this point, since we know that BB dominated succ,
736 // this means that we should any newly added incoming edges should
737 // use the PHI node as the value for these edges, because they are
738 // loop back edges.
Chris Lattner569a57f2003-03-07 18:13:41 +0000739 for (unsigned i = 0, e = OldSuccPreds.size(); i != e; ++i)
740 if (OldSuccPreds[i] != BB)
741 PN->addIncoming(PN, OldSuccPreds[i]);
Chris Lattnere54d2142003-03-05 21:36:33 +0000742 }
Chris Lattner93d1e392004-11-01 06:53:58 +0000743 }
744
745 // Everything that jumped to BB now goes to Succ.
746 std::string OldName = BB->getName();
747 BB->replaceAllUsesWith(Succ);
748 BB->eraseFromParent(); // Delete the old basic block.
Chris Lattnere54d2142003-03-05 21:36:33 +0000749
Chris Lattner93d1e392004-11-01 06:53:58 +0000750 if (!OldName.empty() && !Succ->hasName()) // Transfer name if we can
751 Succ->setName(OldName);
752 return true;
Chris Lattner466a0492002-05-21 20:50:24 +0000753 }
754 }
755 }
756
Chris Lattnere42732e2004-02-16 06:35:48 +0000757 // If this is a returning block with only PHI nodes in it, fold the return
758 // instruction into any unconditional branch predecessors.
Chris Lattner9f0db322004-04-02 18:13:43 +0000759 //
760 // If any predecessor is a conditional branch that just selects among
761 // different return values, fold the replace the branch/return with a select
762 // and return.
Chris Lattnere42732e2004-02-16 06:35:48 +0000763 if (ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator())) {
764 BasicBlock::iterator BBI = BB->getTerminator();
765 if (BBI == BB->begin() || isa<PHINode>(--BBI)) {
Chris Lattner9f0db322004-04-02 18:13:43 +0000766 // Find predecessors that end with branches.
Chris Lattnere42732e2004-02-16 06:35:48 +0000767 std::vector<BasicBlock*> UncondBranchPreds;
Chris Lattner9f0db322004-04-02 18:13:43 +0000768 std::vector<BranchInst*> CondBranchPreds;
Chris Lattnere42732e2004-02-16 06:35:48 +0000769 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
770 TerminatorInst *PTI = (*PI)->getTerminator();
771 if (BranchInst *BI = dyn_cast<BranchInst>(PTI))
772 if (BI->isUnconditional())
773 UncondBranchPreds.push_back(*PI);
Chris Lattner9f0db322004-04-02 18:13:43 +0000774 else
775 CondBranchPreds.push_back(BI);
Chris Lattnere42732e2004-02-16 06:35:48 +0000776 }
777
778 // If we found some, do the transformation!
779 if (!UncondBranchPreds.empty()) {
780 while (!UncondBranchPreds.empty()) {
781 BasicBlock *Pred = UncondBranchPreds.back();
782 UncondBranchPreds.pop_back();
783 Instruction *UncondBranch = Pred->getTerminator();
784 // Clone the return and add it to the end of the predecessor.
785 Instruction *NewRet = RI->clone();
786 Pred->getInstList().push_back(NewRet);
787
788 // If the return instruction returns a value, and if the value was a
789 // PHI node in "BB", propagate the right value into the return.
790 if (NewRet->getNumOperands() == 1)
791 if (PHINode *PN = dyn_cast<PHINode>(NewRet->getOperand(0)))
792 if (PN->getParent() == BB)
793 NewRet->setOperand(0, PN->getIncomingValueForBlock(Pred));
794 // Update any PHI nodes in the returning block to realize that we no
795 // longer branch to them.
796 BB->removePredecessor(Pred);
797 Pred->getInstList().erase(UncondBranch);
798 }
799
800 // If we eliminated all predecessors of the block, delete the block now.
801 if (pred_begin(BB) == pred_end(BB))
802 // We know there are no successors, so just nuke the block.
803 M->getBasicBlockList().erase(BB);
804
Chris Lattnere42732e2004-02-16 06:35:48 +0000805 return true;
806 }
Chris Lattner9f0db322004-04-02 18:13:43 +0000807
808 // Check out all of the conditional branches going to this return
809 // instruction. If any of them just select between returns, change the
810 // branch itself into a select/return pair.
811 while (!CondBranchPreds.empty()) {
812 BranchInst *BI = CondBranchPreds.back();
813 CondBranchPreds.pop_back();
814 BasicBlock *TrueSucc = BI->getSuccessor(0);
815 BasicBlock *FalseSucc = BI->getSuccessor(1);
816 BasicBlock *OtherSucc = TrueSucc == BB ? FalseSucc : TrueSucc;
817
818 // Check to see if the non-BB successor is also a return block.
819 if (isa<ReturnInst>(OtherSucc->getTerminator())) {
820 // Check to see if there are only PHI instructions in this block.
821 BasicBlock::iterator OSI = OtherSucc->getTerminator();
822 if (OSI == OtherSucc->begin() || isa<PHINode>(--OSI)) {
823 // Okay, we found a branch that is going to two return nodes. If
824 // there is no return value for this function, just change the
825 // branch into a return.
826 if (RI->getNumOperands() == 0) {
827 TrueSucc->removePredecessor(BI->getParent());
828 FalseSucc->removePredecessor(BI->getParent());
829 new ReturnInst(0, BI);
830 BI->getParent()->getInstList().erase(BI);
831 return true;
832 }
833
834 // Otherwise, figure out what the true and false return values are
835 // so we can insert a new select instruction.
836 Value *TrueValue = TrueSucc->getTerminator()->getOperand(0);
837 Value *FalseValue = FalseSucc->getTerminator()->getOperand(0);
838
839 // Unwrap any PHI nodes in the return blocks.
840 if (PHINode *TVPN = dyn_cast<PHINode>(TrueValue))
841 if (TVPN->getParent() == TrueSucc)
842 TrueValue = TVPN->getIncomingValueForBlock(BI->getParent());
843 if (PHINode *FVPN = dyn_cast<PHINode>(FalseValue))
844 if (FVPN->getParent() == FalseSucc)
845 FalseValue = FVPN->getIncomingValueForBlock(BI->getParent());
846
Chris Lattnereed034b2004-04-02 18:15:10 +0000847 TrueSucc->removePredecessor(BI->getParent());
848 FalseSucc->removePredecessor(BI->getParent());
849
Chris Lattner9f0db322004-04-02 18:13:43 +0000850 // Insert a new select instruction.
Chris Lattner879ce782004-09-29 05:43:32 +0000851 Value *NewRetVal;
852 Value *BrCond = BI->getCondition();
853 if (TrueValue != FalseValue)
854 NewRetVal = new SelectInst(BrCond, TrueValue,
855 FalseValue, "retval", BI);
856 else
857 NewRetVal = TrueValue;
858
Chris Lattner9f0db322004-04-02 18:13:43 +0000859 new ReturnInst(NewRetVal, BI);
860 BI->getParent()->getInstList().erase(BI);
Chris Lattner879ce782004-09-29 05:43:32 +0000861 if (BrCond->use_empty())
862 if (Instruction *BrCondI = dyn_cast<Instruction>(BrCond))
863 BrCondI->getParent()->getInstList().erase(BrCondI);
Chris Lattner9f0db322004-04-02 18:13:43 +0000864 return true;
865 }
866 }
867 }
Chris Lattnere42732e2004-02-16 06:35:48 +0000868 }
Chris Lattner3cd98f02004-02-24 05:54:22 +0000869 } else if (UnwindInst *UI = dyn_cast<UnwindInst>(BB->begin())) {
870 // Check to see if the first instruction in this block is just an unwind.
871 // If so, replace any invoke instructions which use this as an exception
Chris Lattner5823ac12004-07-20 01:17:38 +0000872 // destination with call instructions, and any unconditional branch
873 // predecessor with an unwind.
Chris Lattner3cd98f02004-02-24 05:54:22 +0000874 //
875 std::vector<BasicBlock*> Preds(pred_begin(BB), pred_end(BB));
876 while (!Preds.empty()) {
877 BasicBlock *Pred = Preds.back();
Chris Lattner5823ac12004-07-20 01:17:38 +0000878 if (BranchInst *BI = dyn_cast<BranchInst>(Pred->getTerminator())) {
879 if (BI->isUnconditional()) {
880 Pred->getInstList().pop_back(); // nuke uncond branch
881 new UnwindInst(Pred); // Use unwind.
882 Changed = true;
883 }
884 } else if (InvokeInst *II = dyn_cast<InvokeInst>(Pred->getTerminator()))
Chris Lattner3cd98f02004-02-24 05:54:22 +0000885 if (II->getUnwindDest() == BB) {
886 // Insert a new branch instruction before the invoke, because this
887 // is now a fall through...
888 BranchInst *BI = new BranchInst(II->getNormalDest(), II);
889 Pred->getInstList().remove(II); // Take out of symbol table
890
891 // Insert the call now...
892 std::vector<Value*> Args(II->op_begin()+3, II->op_end());
893 CallInst *CI = new CallInst(II->getCalledValue(), Args,
894 II->getName(), BI);
895 // If the invoke produced a value, the Call now does instead
896 II->replaceAllUsesWith(CI);
897 delete II;
898 Changed = true;
899 }
900
901 Preds.pop_back();
902 }
Chris Lattner90ea78e2004-02-24 16:09:21 +0000903
904 // If this block is now dead, remove it.
905 if (pred_begin(BB) == pred_end(BB)) {
906 // We know there are no successors, so just nuke the block.
907 M->getBasicBlockList().erase(BB);
908 return true;
909 }
910
Chris Lattnera2ab4892004-02-24 07:23:58 +0000911 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(BB->begin())) {
Chris Lattnera078f472004-03-17 02:02:47 +0000912 if (isValueEqualityComparison(SI))
913 if (FoldValueComparisonIntoPredecessors(SI))
914 return SimplifyCFG(BB) || 1;
Chris Lattnerd3e6ae22004-02-28 21:28:10 +0000915 } else if (BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator())) {
Chris Lattner88da6f72004-05-01 22:36:37 +0000916 if (BI->isConditional()) {
Chris Lattner2e93c422004-05-01 23:35:43 +0000917 if (Value *CompVal = isValueEqualityComparison(BI)) {
918 // This block must be empty, except for the setcond inst, if it exists.
919 BasicBlock::iterator I = BB->begin();
920 if (&*I == BI ||
921 (&*I == cast<Instruction>(BI->getCondition()) &&
922 &*++I == BI))
923 if (FoldValueComparisonIntoPredecessors(BI))
924 return SimplifyCFG(BB) | true;
925 }
926
927 // If this basic block is ONLY a setcc and a branch, and if a predecessor
928 // branches to us and one of our successors, fold the setcc into the
929 // predecessor and use logical operations to pick the right destination.
Chris Lattner51a6dbc2004-05-02 05:02:03 +0000930 BasicBlock *TrueDest = BI->getSuccessor(0);
931 BasicBlock *FalseDest = BI->getSuccessor(1);
Chris Lattnerbe6f0682004-05-02 05:19:36 +0000932 if (BinaryOperator *Cond = dyn_cast<BinaryOperator>(BI->getCondition()))
Chris Lattner2e93c422004-05-01 23:35:43 +0000933 if (Cond->getParent() == BB && &BB->front() == Cond &&
Chris Lattner51a6dbc2004-05-02 05:02:03 +0000934 Cond->getNext() == BI && Cond->hasOneUse() &&
935 TrueDest != BB && FalseDest != BB)
Chris Lattner2e93c422004-05-01 23:35:43 +0000936 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI!=E; ++PI)
937 if (BranchInst *PBI = dyn_cast<BranchInst>((*PI)->getTerminator()))
Chris Lattner1e94ed62004-05-02 01:00:44 +0000938 if (PBI->isConditional() && SafeToMergeTerminators(BI, PBI)) {
Chris Lattnerf12c4a32004-06-21 07:19:01 +0000939 BasicBlock *PredBlock = *PI;
Chris Lattner2e93c422004-05-01 23:35:43 +0000940 if (PBI->getSuccessor(0) == FalseDest ||
941 PBI->getSuccessor(1) == TrueDest) {
942 // Invert the predecessors condition test (xor it with true),
943 // which allows us to write this code once.
944 Value *NewCond =
945 BinaryOperator::createNot(PBI->getCondition(),
946 PBI->getCondition()->getName()+".not", PBI);
947 PBI->setCondition(NewCond);
948 BasicBlock *OldTrue = PBI->getSuccessor(0);
949 BasicBlock *OldFalse = PBI->getSuccessor(1);
950 PBI->setSuccessor(0, OldFalse);
951 PBI->setSuccessor(1, OldTrue);
952 }
953
954 if (PBI->getSuccessor(0) == TrueDest ||
955 PBI->getSuccessor(1) == FalseDest) {
Chris Lattnerf12c4a32004-06-21 07:19:01 +0000956 // Clone Cond into the predecessor basic block, and or/and the
Chris Lattner2e93c422004-05-01 23:35:43 +0000957 // two conditions together.
958 Instruction *New = Cond->clone();
959 New->setName(Cond->getName());
960 Cond->setName(Cond->getName()+".old");
Chris Lattnerf12c4a32004-06-21 07:19:01 +0000961 PredBlock->getInstList().insert(PBI, New);
Chris Lattner2e93c422004-05-01 23:35:43 +0000962 Instruction::BinaryOps Opcode =
963 PBI->getSuccessor(0) == TrueDest ?
964 Instruction::Or : Instruction::And;
965 Value *NewCond =
966 BinaryOperator::create(Opcode, PBI->getCondition(),
967 New, "bothcond", PBI);
968 PBI->setCondition(NewCond);
969 if (PBI->getSuccessor(0) == BB) {
Chris Lattnerf12c4a32004-06-21 07:19:01 +0000970 AddPredecessorToBlock(TrueDest, PredBlock, BB);
Chris Lattner2e93c422004-05-01 23:35:43 +0000971 PBI->setSuccessor(0, TrueDest);
972 }
973 if (PBI->getSuccessor(1) == BB) {
Chris Lattnerf12c4a32004-06-21 07:19:01 +0000974 AddPredecessorToBlock(FalseDest, PredBlock, BB);
Chris Lattner2e93c422004-05-01 23:35:43 +0000975 PBI->setSuccessor(1, FalseDest);
976 }
977 return SimplifyCFG(BB) | 1;
978 }
979 }
Chris Lattner2e93c422004-05-01 23:35:43 +0000980
Chris Lattner88da6f72004-05-01 22:36:37 +0000981 // If this block ends with a branch instruction, and if there is one
982 // predecessor, see if the previous block ended with a branch on the same
983 // condition, which makes this conditional branch redundant.
984 pred_iterator PI(pred_begin(BB)), PE(pred_end(BB));
985 BasicBlock *OnlyPred = *PI++;
986 for (; PI != PE; ++PI)// Search all predecessors, see if they are all same
987 if (*PI != OnlyPred) {
988 OnlyPred = 0; // There are multiple different predecessors...
989 break;
990 }
991
992 if (OnlyPred)
993 if (BranchInst *PBI = dyn_cast<BranchInst>(OnlyPred->getTerminator()))
994 if (PBI->isConditional() &&
995 PBI->getCondition() == BI->getCondition() &&
Chris Lattner4cbd1602004-05-01 22:41:51 +0000996 (PBI->getSuccessor(0) != BB || PBI->getSuccessor(1) != BB)) {
Chris Lattner88da6f72004-05-01 22:36:37 +0000997 // Okay, the outcome of this conditional branch is statically
998 // knowable. Delete the outgoing CFG edge that is impossible to
999 // execute.
1000 bool CondIsTrue = PBI->getSuccessor(0) == BB;
1001 BI->getSuccessor(CondIsTrue)->removePredecessor(BB);
1002 new BranchInst(BI->getSuccessor(!CondIsTrue), BB);
1003 BB->getInstList().erase(BI);
1004 return SimplifyCFG(BB) | true;
1005 }
Chris Lattnera2ab4892004-02-24 07:23:58 +00001006 }
Chris Lattner5edb2f32004-10-18 04:07:22 +00001007 } else if (isa<UnreachableInst>(BB->getTerminator())) {
1008 // If there are any instructions immediately before the unreachable that can
1009 // be removed, do so.
1010 Instruction *Unreachable = BB->getTerminator();
1011 while (Unreachable != BB->begin()) {
1012 BasicBlock::iterator BBI = Unreachable;
1013 --BBI;
1014 if (isa<CallInst>(BBI)) break;
1015 // Delete this instruction
1016 BB->getInstList().erase(BBI);
1017 Changed = true;
1018 }
1019
1020 // If the unreachable instruction is the first in the block, take a gander
1021 // at all of the predecessors of this instruction, and simplify them.
1022 if (&BB->front() == Unreachable) {
1023 std::vector<BasicBlock*> Preds(pred_begin(BB), pred_end(BB));
1024 for (unsigned i = 0, e = Preds.size(); i != e; ++i) {
1025 TerminatorInst *TI = Preds[i]->getTerminator();
1026
1027 if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
1028 if (BI->isUnconditional()) {
1029 if (BI->getSuccessor(0) == BB) {
1030 new UnreachableInst(TI);
1031 TI->eraseFromParent();
1032 Changed = true;
1033 }
1034 } else {
1035 if (BI->getSuccessor(0) == BB) {
1036 new BranchInst(BI->getSuccessor(1), BI);
1037 BI->eraseFromParent();
1038 } else if (BI->getSuccessor(1) == BB) {
1039 new BranchInst(BI->getSuccessor(0), BI);
1040 BI->eraseFromParent();
1041 Changed = true;
1042 }
1043 }
1044 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
1045 for (unsigned i = 1, e = SI->getNumCases(); i != e; ++i)
1046 if (SI->getSuccessor(i) == BB) {
1047 SI->removeCase(i);
1048 --i; --e;
1049 Changed = true;
1050 }
1051 // If the default value is unreachable, figure out the most popular
1052 // destination and make it the default.
1053 if (SI->getSuccessor(0) == BB) {
1054 std::map<BasicBlock*, unsigned> Popularity;
1055 for (unsigned i = 1, e = SI->getNumCases(); i != e; ++i)
1056 Popularity[SI->getSuccessor(i)]++;
1057
1058 // Find the most popular block.
1059 unsigned MaxPop = 0;
1060 BasicBlock *MaxBlock = 0;
1061 for (std::map<BasicBlock*, unsigned>::iterator
1062 I = Popularity.begin(), E = Popularity.end(); I != E; ++I) {
1063 if (I->second > MaxPop) {
1064 MaxPop = I->second;
1065 MaxBlock = I->first;
1066 }
1067 }
1068 if (MaxBlock) {
1069 // Make this the new default, allowing us to delete any explicit
1070 // edges to it.
1071 SI->setSuccessor(0, MaxBlock);
1072 Changed = true;
1073
1074 for (unsigned i = 1, e = SI->getNumCases(); i != e; ++i)
1075 if (SI->getSuccessor(i) == MaxBlock) {
1076 SI->removeCase(i);
1077 --i; --e;
1078 }
1079 }
1080 }
1081 } else if (InvokeInst *II = dyn_cast<InvokeInst>(TI)) {
1082 if (II->getUnwindDest() == BB) {
1083 // Convert the invoke to a call instruction. This would be a good
1084 // place to note that the call does not throw though.
1085 BranchInst *BI = new BranchInst(II->getNormalDest(), II);
1086 II->removeFromParent(); // Take out of symbol table
1087
1088 // Insert the call now...
1089 std::vector<Value*> Args(II->op_begin()+3, II->op_end());
1090 CallInst *CI = new CallInst(II->getCalledValue(), Args,
1091 II->getName(), BI);
1092 // If the invoke produced a value, the Call does now instead.
1093 II->replaceAllUsesWith(CI);
1094 delete II;
1095 Changed = true;
1096 }
1097 }
1098 }
1099
1100 // If this block is now dead, remove it.
1101 if (pred_begin(BB) == pred_end(BB)) {
1102 // We know there are no successors, so just nuke the block.
1103 M->getBasicBlockList().erase(BB);
1104 return true;
1105 }
1106 }
Chris Lattnere42732e2004-02-16 06:35:48 +00001107 }
1108
Chris Lattner466a0492002-05-21 20:50:24 +00001109 // Merge basic blocks into their predecessor if there is only one distinct
1110 // pred, and if there is only one distinct successor of the predecessor, and
1111 // if there are no PHI nodes.
1112 //
Chris Lattner838b8452004-02-11 01:17:07 +00001113 pred_iterator PI(pred_begin(BB)), PE(pred_end(BB));
1114 BasicBlock *OnlyPred = *PI++;
1115 for (; PI != PE; ++PI) // Search all predecessors, see if they are all same
1116 if (*PI != OnlyPred) {
1117 OnlyPred = 0; // There are multiple different predecessors...
1118 break;
1119 }
Chris Lattner88da6f72004-05-01 22:36:37 +00001120
Chris Lattner838b8452004-02-11 01:17:07 +00001121 BasicBlock *OnlySucc = 0;
1122 if (OnlyPred && OnlyPred != BB && // Don't break self loops
1123 OnlyPred->getTerminator()->getOpcode() != Instruction::Invoke) {
1124 // Check to see if there is only one distinct successor...
1125 succ_iterator SI(succ_begin(OnlyPred)), SE(succ_end(OnlyPred));
1126 OnlySucc = BB;
1127 for (; SI != SE; ++SI)
1128 if (*SI != OnlySucc) {
1129 OnlySucc = 0; // There are multiple distinct successors!
Chris Lattner466a0492002-05-21 20:50:24 +00001130 break;
1131 }
Chris Lattner838b8452004-02-11 01:17:07 +00001132 }
1133
1134 if (OnlySucc) {
Chris Lattner32c518e2004-07-15 02:06:12 +00001135 DEBUG(std::cerr << "Merging: " << *BB << "into: " << *OnlyPred);
Chris Lattner838b8452004-02-11 01:17:07 +00001136 TerminatorInst *Term = OnlyPred->getTerminator();
1137
1138 // Resolve any PHI nodes at the start of the block. They are all
1139 // guaranteed to have exactly one entry if they exist, unless there are
1140 // multiple duplicate (but guaranteed to be equal) entries for the
1141 // incoming edges. This occurs when there are multiple edges from
1142 // OnlyPred to OnlySucc.
1143 //
1144 while (PHINode *PN = dyn_cast<PHINode>(&BB->front())) {
1145 PN->replaceAllUsesWith(PN->getIncomingValue(0));
1146 BB->getInstList().pop_front(); // Delete the phi node...
Chris Lattner466a0492002-05-21 20:50:24 +00001147 }
1148
Chris Lattner838b8452004-02-11 01:17:07 +00001149 // Delete the unconditional branch from the predecessor...
1150 OnlyPred->getInstList().pop_back();
Chris Lattner466a0492002-05-21 20:50:24 +00001151
Chris Lattner838b8452004-02-11 01:17:07 +00001152 // Move all definitions in the successor to the predecessor...
1153 OnlyPred->getInstList().splice(OnlyPred->end(), BB->getInstList());
Chris Lattnerfda72b12002-06-25 16:12:52 +00001154
Chris Lattner838b8452004-02-11 01:17:07 +00001155 // Make all PHI nodes that referred to BB now refer to Pred as their
1156 // source...
1157 BB->replaceAllUsesWith(OnlyPred);
Chris Lattnerfda72b12002-06-25 16:12:52 +00001158
Chris Lattner838b8452004-02-11 01:17:07 +00001159 std::string OldName = BB->getName();
Chris Lattnerfda72b12002-06-25 16:12:52 +00001160
Chris Lattner838b8452004-02-11 01:17:07 +00001161 // Erase basic block from the function...
1162 M->getBasicBlockList().erase(BB);
Chris Lattnerfda72b12002-06-25 16:12:52 +00001163
Chris Lattner838b8452004-02-11 01:17:07 +00001164 // Inherit predecessors name if it exists...
1165 if (!OldName.empty() && !OnlyPred->hasName())
1166 OnlyPred->setName(OldName);
Chris Lattner466a0492002-05-21 20:50:24 +00001167
Chris Lattner838b8452004-02-11 01:17:07 +00001168 return true;
Chris Lattner466a0492002-05-21 20:50:24 +00001169 }
Chris Lattner18d1f192004-02-11 03:36:04 +00001170
Chris Lattner389cfac2004-11-30 00:29:14 +00001171 // Otherwise, if this block only has a single predecessor, and if that block
1172 // is a conditional branch, see if we can hoist any code from this block up
1173 // into our predecessor.
1174 if (OnlyPred)
Chris Lattner4fc998d2004-12-10 17:42:31 +00001175 if (BranchInst *BI = dyn_cast<BranchInst>(OnlyPred->getTerminator()))
1176 if (BI->isConditional()) {
1177 // Get the other block.
1178 BasicBlock *OtherBB = BI->getSuccessor(BI->getSuccessor(0) == BB);
1179 PI = pred_begin(OtherBB);
1180 ++PI;
1181 if (PI == pred_end(OtherBB)) {
1182 // We have a conditional branch to two blocks that are only reachable
1183 // from the condbr. We know that the condbr dominates the two blocks,
1184 // so see if there is any identical code in the "then" and "else"
1185 // blocks. If so, we can hoist it up to the branching block.
1186 Changed |= HoistThenElseCodeToIf(BI);
1187 }
Chris Lattner389cfac2004-11-30 00:29:14 +00001188 }
Chris Lattner389cfac2004-11-30 00:29:14 +00001189
Chris Lattner6f4b45a2004-02-24 05:38:11 +00001190 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI)
1191 if (BranchInst *BI = dyn_cast<BranchInst>((*PI)->getTerminator()))
1192 // Change br (X == 0 | X == 1), T, F into a switch instruction.
1193 if (BI->isConditional() && isa<Instruction>(BI->getCondition())) {
1194 Instruction *Cond = cast<Instruction>(BI->getCondition());
1195 // If this is a bunch of seteq's or'd together, or if it's a bunch of
1196 // 'setne's and'ed together, collect them.
1197 Value *CompVal = 0;
Chris Lattnerb2b151d2004-06-19 07:02:14 +00001198 std::vector<ConstantInt*> Values;
Chris Lattner6f4b45a2004-02-24 05:38:11 +00001199 bool TrueWhenEqual = GatherValueComparisons(Cond, CompVal, Values);
1200 if (CompVal && CompVal->getType()->isInteger()) {
1201 // There might be duplicate constants in the list, which the switch
1202 // instruction can't handle, remove them now.
Chris Lattnerb2b151d2004-06-19 07:02:14 +00001203 std::sort(Values.begin(), Values.end(), ConstantIntOrdering());
Chris Lattner6f4b45a2004-02-24 05:38:11 +00001204 Values.erase(std::unique(Values.begin(), Values.end()), Values.end());
1205
1206 // Figure out which block is which destination.
1207 BasicBlock *DefaultBB = BI->getSuccessor(1);
1208 BasicBlock *EdgeBB = BI->getSuccessor(0);
1209 if (!TrueWhenEqual) std::swap(DefaultBB, EdgeBB);
1210
1211 // Create the new switch instruction now.
Chris Lattnera35dfce2005-01-29 00:38:26 +00001212 SwitchInst *New = new SwitchInst(CompVal, DefaultBB,Values.size(),BI);
Chris Lattner6f4b45a2004-02-24 05:38:11 +00001213
1214 // Add all of the 'cases' to the switch instruction.
1215 for (unsigned i = 0, e = Values.size(); i != e; ++i)
1216 New->addCase(Values[i], EdgeBB);
1217
1218 // We added edges from PI to the EdgeBB. As such, if there were any
1219 // PHI nodes in EdgeBB, they need entries to be added corresponding to
1220 // the number of edges added.
1221 for (BasicBlock::iterator BBI = EdgeBB->begin();
Reid Spencer66149462004-09-15 17:06:42 +00001222 isa<PHINode>(BBI); ++BBI) {
1223 PHINode *PN = cast<PHINode>(BBI);
Chris Lattner6f4b45a2004-02-24 05:38:11 +00001224 Value *InVal = PN->getIncomingValueForBlock(*PI);
1225 for (unsigned i = 0, e = Values.size()-1; i != e; ++i)
1226 PN->addIncoming(InVal, *PI);
1227 }
1228
1229 // Erase the old branch instruction.
1230 (*PI)->getInstList().erase(BI);
1231
1232 // Erase the potentially condition tree that was used to computed the
1233 // branch condition.
1234 ErasePossiblyDeadInstructionTree(Cond);
1235 return true;
1236 }
1237 }
1238
Chris Lattner18d1f192004-02-11 03:36:04 +00001239 // If there is a trivial two-entry PHI node in this basic block, and we can
1240 // eliminate it, do so now.
1241 if (PHINode *PN = dyn_cast<PHINode>(BB->begin()))
1242 if (PN->getNumIncomingValues() == 2) {
1243 // Ok, this is a two entry PHI node. Check to see if this is a simple "if
1244 // statement", which has a very simple dominance structure. Basically, we
1245 // are trying to find the condition that is being branched on, which
1246 // subsequently causes this merge to happen. We really want control
1247 // dependence information for this check, but simplifycfg can't keep it up
1248 // to date, and this catches most of the cases we care about anyway.
1249 //
1250 BasicBlock *IfTrue, *IfFalse;
1251 if (Value *IfCond = GetIfCondition(BB, IfTrue, IfFalse)) {
Chris Lattner9734fd02004-06-20 01:13:18 +00001252 DEBUG(std::cerr << "FOUND IF CONDITION! " << *IfCond << " T: "
1253 << IfTrue->getName() << " F: " << IfFalse->getName() << "\n");
Chris Lattner18d1f192004-02-11 03:36:04 +00001254
Chris Lattner45c35b12004-10-14 05:13:36 +00001255 // Loop over the PHI's seeing if we can promote them all to select
1256 // instructions. While we are at it, keep track of the instructions
1257 // that need to be moved to the dominating block.
1258 std::set<Instruction*> AggressiveInsts;
1259 bool CanPromote = true;
1260
Chris Lattner18d1f192004-02-11 03:36:04 +00001261 BasicBlock::iterator AfterPHIIt = BB->begin();
Chris Lattner45c35b12004-10-14 05:13:36 +00001262 while (isa<PHINode>(AfterPHIIt)) {
1263 PHINode *PN = cast<PHINode>(AfterPHIIt++);
1264 if (PN->getIncomingValue(0) == PN->getIncomingValue(1))
1265 PN->replaceAllUsesWith(PN->getIncomingValue(0));
1266 else if (!DominatesMergePoint(PN->getIncomingValue(0), BB,
1267 &AggressiveInsts) ||
1268 !DominatesMergePoint(PN->getIncomingValue(1), BB,
1269 &AggressiveInsts)) {
1270 CanPromote = false;
1271 break;
1272 }
1273 }
Chris Lattner18d1f192004-02-11 03:36:04 +00001274
Chris Lattner45c35b12004-10-14 05:13:36 +00001275 // Did we eliminate all PHI's?
1276 CanPromote |= AfterPHIIt == BB->begin();
Chris Lattner18d1f192004-02-11 03:36:04 +00001277
Chris Lattner45c35b12004-10-14 05:13:36 +00001278 // If we all PHI nodes are promotable, check to make sure that all
1279 // instructions in the predecessor blocks can be promoted as well. If
1280 // not, we won't be able to get rid of the control flow, so it's not
1281 // worth promoting to select instructions.
Reid Spencerfad217c2004-10-22 16:10:39 +00001282 BasicBlock *DomBlock = 0, *IfBlock1 = 0, *IfBlock2 = 0;
Chris Lattner45c35b12004-10-14 05:13:36 +00001283 if (CanPromote) {
1284 PN = cast<PHINode>(BB->begin());
1285 BasicBlock *Pred = PN->getIncomingBlock(0);
1286 if (cast<BranchInst>(Pred->getTerminator())->isUnconditional()) {
1287 IfBlock1 = Pred;
1288 DomBlock = *pred_begin(Pred);
1289 for (BasicBlock::iterator I = Pred->begin();
1290 !isa<TerminatorInst>(I); ++I)
1291 if (!AggressiveInsts.count(I)) {
1292 // This is not an aggressive instruction that we can promote.
1293 // Because of this, we won't be able to get rid of the control
1294 // flow, so the xform is not worth it.
1295 CanPromote = false;
1296 break;
1297 }
1298 }
1299
1300 Pred = PN->getIncomingBlock(1);
1301 if (CanPromote &&
1302 cast<BranchInst>(Pred->getTerminator())->isUnconditional()) {
1303 IfBlock2 = Pred;
1304 DomBlock = *pred_begin(Pred);
1305 for (BasicBlock::iterator I = Pred->begin();
1306 !isa<TerminatorInst>(I); ++I)
1307 if (!AggressiveInsts.count(I)) {
1308 // This is not an aggressive instruction that we can promote.
1309 // Because of this, we won't be able to get rid of the control
1310 // flow, so the xform is not worth it.
1311 CanPromote = false;
1312 break;
1313 }
1314 }
1315 }
1316
1317 // If we can still promote the PHI nodes after this gauntlet of tests,
1318 // do all of the PHI's now.
1319 if (CanPromote) {
1320 // Move all 'aggressive' instructions, which are defined in the
1321 // conditional parts of the if's up to the dominating block.
1322 if (IfBlock1) {
1323 DomBlock->getInstList().splice(DomBlock->getTerminator(),
1324 IfBlock1->getInstList(),
1325 IfBlock1->begin(),
1326 IfBlock1->getTerminator());
1327 }
1328 if (IfBlock2) {
1329 DomBlock->getInstList().splice(DomBlock->getTerminator(),
1330 IfBlock2->getInstList(),
1331 IfBlock2->begin(),
1332 IfBlock2->getTerminator());
1333 }
1334
1335 while (PHINode *PN = dyn_cast<PHINode>(BB->begin())) {
1336 // Change the PHI node into a select instruction.
Chris Lattner18d1f192004-02-11 03:36:04 +00001337 Value *TrueVal =
1338 PN->getIncomingValue(PN->getIncomingBlock(0) == IfFalse);
1339 Value *FalseVal =
1340 PN->getIncomingValue(PN->getIncomingBlock(0) == IfTrue);
1341
Chris Lattner81bdcb92004-03-30 19:44:05 +00001342 std::string Name = PN->getName(); PN->setName("");
1343 PN->replaceAllUsesWith(new SelectInst(IfCond, TrueVal, FalseVal,
Chris Lattner45c35b12004-10-14 05:13:36 +00001344 Name, AfterPHIIt));
Chris Lattner81bdcb92004-03-30 19:44:05 +00001345 BB->getInstList().erase(PN);
Chris Lattner18d1f192004-02-11 03:36:04 +00001346 }
Chris Lattner45c35b12004-10-14 05:13:36 +00001347 Changed = true;
Chris Lattner18d1f192004-02-11 03:36:04 +00001348 }
1349 }
1350 }
Chris Lattner466a0492002-05-21 20:50:24 +00001351
Chris Lattner031340a2003-08-17 19:41:53 +00001352 return Changed;
Chris Lattner466a0492002-05-21 20:50:24 +00001353}