blob: afb483cc5f6df4f9756058125121db5d7ddebd8b [file] [log] [blame]
Chris Lattner466a0492002-05-21 20:50:24 +00001//===- SimplifyCFG.cpp - Code to perform CFG simplification ---------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// 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.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
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 Lattner748f9032005-09-19 23:49:37 +000021#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Chris Lattner466a0492002-05-21 20:50:24 +000022#include <algorithm>
23#include <functional>
Chris Lattnera2ab4892004-02-24 07:23:58 +000024#include <set>
Chris Lattner5edb2f32004-10-18 04:07:22 +000025#include <map>
Chris Lattner469640e2006-01-22 22:53:01 +000026#include <iostream>
Chris Lattnerdf3c3422004-01-09 06:12:26 +000027using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000028
Chris Lattner76dc2042005-08-03 00:19:45 +000029/// SafeToMergeTerminators - Return true if it is safe to merge these two
30/// terminator instructions together.
31///
32static bool SafeToMergeTerminators(TerminatorInst *SI1, TerminatorInst *SI2) {
33 if (SI1 == SI2) return false; // Can't merge with self!
34
35 // It is not safe to merge these two switch instructions if they have a common
36 // successor, and if that successor has a PHI node, and if *that* PHI node has
37 // conflicting incoming values from the two switch blocks.
38 BasicBlock *SI1BB = SI1->getParent();
39 BasicBlock *SI2BB = SI2->getParent();
40 std::set<BasicBlock*> SI1Succs(succ_begin(SI1BB), succ_end(SI1BB));
41
42 for (succ_iterator I = succ_begin(SI2BB), E = succ_end(SI2BB); I != E; ++I)
43 if (SI1Succs.count(*I))
44 for (BasicBlock::iterator BBI = (*I)->begin();
45 isa<PHINode>(BBI); ++BBI) {
46 PHINode *PN = cast<PHINode>(BBI);
47 if (PN->getIncomingValueForBlock(SI1BB) !=
48 PN->getIncomingValueForBlock(SI2BB))
49 return false;
50 }
51
52 return true;
53}
54
55/// AddPredecessorToBlock - Update PHI nodes in Succ to indicate that there will
56/// now be entries in it from the 'NewPred' block. The values that will be
57/// flowing into the PHI nodes will be the same as those coming in from
58/// ExistPred, an existing predecessor of Succ.
59static void AddPredecessorToBlock(BasicBlock *Succ, BasicBlock *NewPred,
60 BasicBlock *ExistPred) {
61 assert(std::find(succ_begin(ExistPred), succ_end(ExistPred), Succ) !=
62 succ_end(ExistPred) && "ExistPred is not a predecessor of Succ!");
63 if (!isa<PHINode>(Succ->begin())) return; // Quick exit if nothing to do
64
65 for (BasicBlock::iterator I = Succ->begin(); isa<PHINode>(I); ++I) {
66 PHINode *PN = cast<PHINode>(I);
67 Value *V = PN->getIncomingValueForBlock(ExistPred);
68 PN->addIncoming(V, NewPred);
69 }
70}
71
Chris Lattner982b75c2005-08-03 00:29:26 +000072// CanPropagatePredecessorsForPHIs - Return true if we can fold BB, an
73// almost-empty BB ending in an unconditional branch to Succ, into succ.
Chris Lattner466a0492002-05-21 20:50:24 +000074//
75// Assumption: Succ is the single successor for BB.
76//
Chris Lattner982b75c2005-08-03 00:29:26 +000077static bool CanPropagatePredecessorsForPHIs(BasicBlock *BB, BasicBlock *Succ) {
Chris Lattner466a0492002-05-21 20:50:24 +000078 assert(*succ_begin(BB) == Succ && "Succ is not successor of BB!");
Chris Lattner5325c5f2002-09-24 00:09:26 +000079
Chris Lattner466a0492002-05-21 20:50:24 +000080 // Check to see if one of the predecessors of BB is already a predecessor of
Chris Lattner31116ba2003-03-05 21:01:52 +000081 // Succ. If so, we cannot do the transformation if there are any PHI nodes
82 // with incompatible values coming in from the two edges!
Chris Lattner466a0492002-05-21 20:50:24 +000083 //
Chris Lattner90803692005-08-03 00:38:27 +000084 if (isa<PHINode>(Succ->front())) {
85 std::set<BasicBlock*> BBPreds(pred_begin(BB), pred_end(BB));
Chris Lattner2820b8c2005-12-03 18:25:58 +000086 for (pred_iterator PI = pred_begin(Succ), PE = pred_end(Succ);
Chris Lattner90803692005-08-03 00:38:27 +000087 PI != PE; ++PI)
88 if (std::find(BBPreds.begin(), BBPreds.end(), *PI) != BBPreds.end()) {
89 // Loop over all of the PHI nodes checking to see if there are
90 // incompatible values coming in.
91 for (BasicBlock::iterator I = Succ->begin(); isa<PHINode>(I); ++I) {
92 PHINode *PN = cast<PHINode>(I);
93 // Loop up the entries in the PHI node for BB and for *PI if the
94 // values coming in are non-equal, we cannot merge these two blocks
95 // (instead we should insert a conditional move or something, then
96 // merge the blocks).
97 if (PN->getIncomingValueForBlock(BB) !=
98 PN->getIncomingValueForBlock(*PI))
99 return false; // Values are not equal...
100 }
101 }
102 }
Chris Lattner2dbf1962005-08-03 00:59:12 +0000103
104 // Finally, if BB has PHI nodes that are used by things other than the PHIs in
105 // Succ and Succ has predecessors that are not Succ and not Pred, we cannot
106 // fold these blocks, as we don't know whether BB dominates Succ or not to
107 // update the PHI nodes correctly.
108 if (!isa<PHINode>(BB->begin()) || Succ->getSinglePredecessor()) return true;
Chris Lattner466a0492002-05-21 20:50:24 +0000109
Chris Lattner2dbf1962005-08-03 00:59:12 +0000110 // If the predecessors of Succ are only BB and Succ itself, we can handle this.
111 bool IsSafe = true;
112 for (pred_iterator PI = pred_begin(Succ), E = pred_end(Succ); PI != E; ++PI)
113 if (*PI != Succ && *PI != BB) {
114 IsSafe = false;
115 break;
116 }
117 if (IsSafe) return true;
118
Chris Lattner2820b8c2005-12-03 18:25:58 +0000119 // If the PHI nodes in BB are only used by instructions in Succ, we are ok if
120 // BB and Succ have no common predecessors.
Chris Lattner35515552006-05-14 18:45:44 +0000121 for (BasicBlock::iterator I = BB->begin(); isa<PHINode>(I); ++I) {
Chris Lattner2dbf1962005-08-03 00:59:12 +0000122 PHINode *PN = cast<PHINode>(I);
123 for (Value::use_iterator UI = PN->use_begin(), E = PN->use_end(); UI != E;
124 ++UI)
Chris Lattner2820b8c2005-12-03 18:25:58 +0000125 if (cast<Instruction>(*UI)->getParent() != Succ)
126 return false;
Chris Lattner2dbf1962005-08-03 00:59:12 +0000127 }
128
Chris Lattner2820b8c2005-12-03 18:25:58 +0000129 // Scan the predecessor sets of BB and Succ, making sure there are no common
130 // predecessors. Common predecessors would cause us to build a phi node with
131 // differing incoming values, which is not legal.
132 std::set<BasicBlock*> BBPreds(pred_begin(BB), pred_end(BB));
133 for (pred_iterator PI = pred_begin(Succ), E = pred_end(Succ); PI != E; ++PI)
134 if (BBPreds.count(*PI))
135 return false;
136
137 return true;
Chris Lattner466a0492002-05-21 20:50:24 +0000138}
139
Chris Lattner733d6702005-08-03 00:11:16 +0000140/// TryToSimplifyUncondBranchFromEmptyBlock - BB contains an unconditional
141/// branch to Succ, and contains no instructions other than PHI nodes and the
142/// branch. If possible, eliminate BB.
143static bool TryToSimplifyUncondBranchFromEmptyBlock(BasicBlock *BB,
144 BasicBlock *Succ) {
145 // If our successor has PHI nodes, then we need to update them to include
146 // entries for BB's predecessors, not for BB itself. Be careful though,
147 // if this transformation fails (returns true) then we cannot do this
148 // transformation!
149 //
Chris Lattner982b75c2005-08-03 00:29:26 +0000150 if (!CanPropagatePredecessorsForPHIs(BB, Succ)) return false;
Chris Lattner733d6702005-08-03 00:11:16 +0000151
152 DEBUG(std::cerr << "Killing Trivial BB: \n" << *BB);
153
Chris Lattner982b75c2005-08-03 00:29:26 +0000154 if (isa<PHINode>(Succ->begin())) {
155 // If there is more than one pred of succ, and there are PHI nodes in
156 // the successor, then we need to add incoming edges for the PHI nodes
157 //
158 const std::vector<BasicBlock*> BBPreds(pred_begin(BB), pred_end(BB));
159
160 // Loop over all of the PHI nodes in the successor of BB.
161 for (BasicBlock::iterator I = Succ->begin(); isa<PHINode>(I); ++I) {
162 PHINode *PN = cast<PHINode>(I);
163 Value *OldVal = PN->removeIncomingValue(BB, false);
164 assert(OldVal && "No entry in PHI for Pred BB!");
165
Chris Lattner90803692005-08-03 00:38:27 +0000166 // If this incoming value is one of the PHI nodes in BB, the new entries
167 // in the PHI node are the entries from the old PHI.
Chris Lattner982b75c2005-08-03 00:29:26 +0000168 if (isa<PHINode>(OldVal) && cast<PHINode>(OldVal)->getParent() == BB) {
169 PHINode *OldValPN = cast<PHINode>(OldVal);
170 for (unsigned i = 0, e = OldValPN->getNumIncomingValues(); i != e; ++i)
171 PN->addIncoming(OldValPN->getIncomingValue(i),
172 OldValPN->getIncomingBlock(i));
173 } else {
174 for (std::vector<BasicBlock*>::const_iterator PredI = BBPreds.begin(),
175 End = BBPreds.end(); PredI != End; ++PredI) {
176 // Add an incoming value for each of the new incoming values...
177 PN->addIncoming(OldVal, *PredI);
178 }
179 }
180 }
181 }
182
Chris Lattner733d6702005-08-03 00:11:16 +0000183 if (isa<PHINode>(&BB->front())) {
184 std::vector<BasicBlock*>
185 OldSuccPreds(pred_begin(Succ), pred_end(Succ));
186
187 // Move all PHI nodes in BB to Succ if they are alive, otherwise
188 // delete them.
189 while (PHINode *PN = dyn_cast<PHINode>(&BB->front()))
Chris Lattner90803692005-08-03 00:38:27 +0000190 if (PN->use_empty()) {
191 // Just remove the dead phi. This happens if Succ's PHIs were the only
192 // users of the PHI nodes.
193 PN->eraseFromParent();
Chris Lattner733d6702005-08-03 00:11:16 +0000194 } else {
195 // The instruction is alive, so this means that Succ must have
196 // *ONLY* had BB as a predecessor, and the PHI node is still valid
197 // now. Simply move it into Succ, because we know that BB
198 // strictly dominated Succ.
Chris Lattner1f047fd2005-08-03 00:23:42 +0000199 Succ->getInstList().splice(Succ->begin(),
200 BB->getInstList(), BB->begin());
Chris Lattner733d6702005-08-03 00:11:16 +0000201
202 // We need to add new entries for the PHI node to account for
203 // predecessors of Succ that the PHI node does not take into
204 // account. At this point, since we know that BB dominated succ,
205 // this means that we should any newly added incoming edges should
206 // use the PHI node as the value for these edges, because they are
207 // loop back edges.
208 for (unsigned i = 0, e = OldSuccPreds.size(); i != e; ++i)
209 if (OldSuccPreds[i] != BB)
210 PN->addIncoming(PN, OldSuccPreds[i]);
211 }
212 }
213
214 // Everything that jumped to BB now goes to Succ.
215 std::string OldName = BB->getName();
216 BB->replaceAllUsesWith(Succ);
217 BB->eraseFromParent(); // Delete the old basic block.
218
219 if (!OldName.empty() && !Succ->hasName()) // Transfer name if we can
220 Succ->setName(OldName);
221 return true;
222}
223
Chris Lattner18d1f192004-02-11 03:36:04 +0000224/// GetIfCondition - Given a basic block (BB) with two predecessors (and
225/// presumably PHI nodes in it), check to see if the merge at this block is due
226/// to an "if condition". If so, return the boolean condition that determines
227/// which entry into BB will be taken. Also, return by references the block
228/// that will be entered from if the condition is true, and the block that will
229/// be entered if the condition is false.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000230///
Chris Lattner18d1f192004-02-11 03:36:04 +0000231///
232static Value *GetIfCondition(BasicBlock *BB,
233 BasicBlock *&IfTrue, BasicBlock *&IfFalse) {
234 assert(std::distance(pred_begin(BB), pred_end(BB)) == 2 &&
235 "Function can only handle blocks with 2 predecessors!");
236 BasicBlock *Pred1 = *pred_begin(BB);
237 BasicBlock *Pred2 = *++pred_begin(BB);
238
239 // We can only handle branches. Other control flow will be lowered to
240 // branches if possible anyway.
241 if (!isa<BranchInst>(Pred1->getTerminator()) ||
242 !isa<BranchInst>(Pred2->getTerminator()))
243 return 0;
244 BranchInst *Pred1Br = cast<BranchInst>(Pred1->getTerminator());
245 BranchInst *Pred2Br = cast<BranchInst>(Pred2->getTerminator());
246
247 // Eliminate code duplication by ensuring that Pred1Br is conditional if
248 // either are.
249 if (Pred2Br->isConditional()) {
250 // If both branches are conditional, we don't have an "if statement". In
251 // reality, we could transform this case, but since the condition will be
252 // required anyway, we stand no chance of eliminating it, so the xform is
253 // probably not profitable.
254 if (Pred1Br->isConditional())
255 return 0;
256
257 std::swap(Pred1, Pred2);
258 std::swap(Pred1Br, Pred2Br);
259 }
260
261 if (Pred1Br->isConditional()) {
262 // If we found a conditional branch predecessor, make sure that it branches
263 // to BB and Pred2Br. If it doesn't, this isn't an "if statement".
264 if (Pred1Br->getSuccessor(0) == BB &&
265 Pred1Br->getSuccessor(1) == Pred2) {
266 IfTrue = Pred1;
267 IfFalse = Pred2;
268 } else if (Pred1Br->getSuccessor(0) == Pred2 &&
269 Pred1Br->getSuccessor(1) == BB) {
270 IfTrue = Pred2;
271 IfFalse = Pred1;
272 } else {
273 // We know that one arm of the conditional goes to BB, so the other must
274 // go somewhere unrelated, and this must not be an "if statement".
275 return 0;
276 }
277
278 // The only thing we have to watch out for here is to make sure that Pred2
279 // doesn't have incoming edges from other blocks. If it does, the condition
280 // doesn't dominate BB.
281 if (++pred_begin(Pred2) != pred_end(Pred2))
282 return 0;
283
284 return Pred1Br->getCondition();
285 }
286
287 // Ok, if we got here, both predecessors end with an unconditional branch to
288 // BB. Don't panic! If both blocks only have a single (identical)
289 // predecessor, and THAT is a conditional branch, then we're all ok!
290 if (pred_begin(Pred1) == pred_end(Pred1) ||
291 ++pred_begin(Pred1) != pred_end(Pred1) ||
292 pred_begin(Pred2) == pred_end(Pred2) ||
293 ++pred_begin(Pred2) != pred_end(Pred2) ||
294 *pred_begin(Pred1) != *pred_begin(Pred2))
295 return 0;
296
297 // Otherwise, if this is a conditional branch, then we can use it!
298 BasicBlock *CommonPred = *pred_begin(Pred1);
299 if (BranchInst *BI = dyn_cast<BranchInst>(CommonPred->getTerminator())) {
300 assert(BI->isConditional() && "Two successors but not conditional?");
301 if (BI->getSuccessor(0) == Pred1) {
302 IfTrue = Pred1;
303 IfFalse = Pred2;
304 } else {
305 IfTrue = Pred2;
306 IfFalse = Pred1;
307 }
308 return BI->getCondition();
309 }
310 return 0;
311}
312
313
314// If we have a merge point of an "if condition" as accepted above, return true
315// if the specified value dominates the block. We don't handle the true
316// generality of domination here, just a special case which works well enough
317// for us.
Chris Lattner45c35b12004-10-14 05:13:36 +0000318//
319// If AggressiveInsts is non-null, and if V does not dominate BB, we check to
320// see if V (which must be an instruction) is cheap to compute and is
321// non-trapping. If both are true, the instruction is inserted into the set and
322// true is returned.
323static bool DominatesMergePoint(Value *V, BasicBlock *BB,
324 std::set<Instruction*> *AggressiveInsts) {
Chris Lattner0aa56562004-04-09 22:50:22 +0000325 Instruction *I = dyn_cast<Instruction>(V);
Chris Lattnerb8b11592006-10-20 00:42:07 +0000326 if (!I) {
327 // Non-instructions all dominate instructions, but not all constantexprs
328 // can be executed unconditionally.
329 if (ConstantExpr *C = dyn_cast<ConstantExpr>(V))
330 if (C->canTrap())
331 return false;
332 return true;
333 }
Chris Lattner0aa56562004-04-09 22:50:22 +0000334 BasicBlock *PBB = I->getParent();
Chris Lattner18d1f192004-02-11 03:36:04 +0000335
Chris Lattner0ce80cd2005-02-27 06:18:25 +0000336 // We don't want to allow weird loops that might have the "if condition" in
Chris Lattner0aa56562004-04-09 22:50:22 +0000337 // the bottom of this block.
338 if (PBB == BB) return false;
Chris Lattner18d1f192004-02-11 03:36:04 +0000339
Chris Lattner0aa56562004-04-09 22:50:22 +0000340 // If this instruction is defined in a block that contains an unconditional
341 // branch to BB, then it must be in the 'conditional' part of the "if
342 // statement".
343 if (BranchInst *BI = dyn_cast<BranchInst>(PBB->getTerminator()))
344 if (BI->isUnconditional() && BI->getSuccessor(0) == BB) {
Chris Lattner45c35b12004-10-14 05:13:36 +0000345 if (!AggressiveInsts) return false;
Chris Lattner0aa56562004-04-09 22:50:22 +0000346 // Okay, it looks like the instruction IS in the "condition". Check to
347 // see if its a cheap instruction to unconditionally compute, and if it
348 // only uses stuff defined outside of the condition. If so, hoist it out.
349 switch (I->getOpcode()) {
350 default: return false; // Cannot hoist this out safely.
351 case Instruction::Load:
352 // We can hoist loads that are non-volatile and obviously cannot trap.
353 if (cast<LoadInst>(I)->isVolatile())
354 return false;
355 if (!isa<AllocaInst>(I->getOperand(0)) &&
Reid Spenceref784f02004-07-18 00:32:14 +0000356 !isa<Constant>(I->getOperand(0)))
Chris Lattner0aa56562004-04-09 22:50:22 +0000357 return false;
358
359 // Finally, we have to check to make sure there are no instructions
360 // before the load in its basic block, as we are going to hoist the loop
361 // out to its predecessor.
362 if (PBB->begin() != BasicBlock::iterator(I))
363 return false;
364 break;
365 case Instruction::Add:
366 case Instruction::Sub:
367 case Instruction::And:
368 case Instruction::Or:
369 case Instruction::Xor:
370 case Instruction::Shl:
Reid Spencerfdff9382006-11-08 06:47:33 +0000371 case Instruction::LShr:
372 case Instruction::AShr:
Chris Lattnerb38b4432005-04-21 05:31:13 +0000373 case Instruction::SetEQ:
374 case Instruction::SetNE:
375 case Instruction::SetLT:
376 case Instruction::SetGT:
377 case Instruction::SetLE:
378 case Instruction::SetGE:
Chris Lattner0aa56562004-04-09 22:50:22 +0000379 break; // These are all cheap and non-trapping instructions.
380 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000381
Chris Lattner0aa56562004-04-09 22:50:22 +0000382 // Okay, we can only really hoist these out if their operands are not
383 // defined in the conditional region.
384 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
Chris Lattner45c35b12004-10-14 05:13:36 +0000385 if (!DominatesMergePoint(I->getOperand(i), BB, 0))
Chris Lattner0aa56562004-04-09 22:50:22 +0000386 return false;
Chris Lattner45c35b12004-10-14 05:13:36 +0000387 // Okay, it's safe to do this! Remember this instruction.
388 AggressiveInsts->insert(I);
Chris Lattner0aa56562004-04-09 22:50:22 +0000389 }
390
Chris Lattner18d1f192004-02-11 03:36:04 +0000391 return true;
392}
Chris Lattner466a0492002-05-21 20:50:24 +0000393
Chris Lattner6f4b45a2004-02-24 05:38:11 +0000394// GatherConstantSetEQs - Given a potentially 'or'd together collection of seteq
395// instructions that compare a value against a constant, return the value being
396// compared, and stick the constant into the Values vector.
Chris Lattnerb2b151d2004-06-19 07:02:14 +0000397static Value *GatherConstantSetEQs(Value *V, std::vector<ConstantInt*> &Values){
Chris Lattner6f4b45a2004-02-24 05:38:11 +0000398 if (Instruction *Inst = dyn_cast<Instruction>(V))
399 if (Inst->getOpcode() == Instruction::SetEQ) {
Chris Lattnerb2b151d2004-06-19 07:02:14 +0000400 if (ConstantInt *C = dyn_cast<ConstantInt>(Inst->getOperand(1))) {
Chris Lattner6f4b45a2004-02-24 05:38:11 +0000401 Values.push_back(C);
402 return Inst->getOperand(0);
Chris Lattnerb2b151d2004-06-19 07:02:14 +0000403 } else if (ConstantInt *C = dyn_cast<ConstantInt>(Inst->getOperand(0))) {
Chris Lattner6f4b45a2004-02-24 05:38:11 +0000404 Values.push_back(C);
405 return Inst->getOperand(1);
406 }
407 } else if (Inst->getOpcode() == Instruction::Or) {
408 if (Value *LHS = GatherConstantSetEQs(Inst->getOperand(0), Values))
409 if (Value *RHS = GatherConstantSetEQs(Inst->getOperand(1), Values))
410 if (LHS == RHS)
411 return LHS;
412 }
413 return 0;
414}
415
416// GatherConstantSetNEs - Given a potentially 'and'd together collection of
417// setne instructions that compare a value against a constant, return the value
418// being compared, and stick the constant into the Values vector.
Chris Lattnerb2b151d2004-06-19 07:02:14 +0000419static Value *GatherConstantSetNEs(Value *V, std::vector<ConstantInt*> &Values){
Chris Lattner6f4b45a2004-02-24 05:38:11 +0000420 if (Instruction *Inst = dyn_cast<Instruction>(V))
421 if (Inst->getOpcode() == Instruction::SetNE) {
Chris Lattnerb2b151d2004-06-19 07:02:14 +0000422 if (ConstantInt *C = dyn_cast<ConstantInt>(Inst->getOperand(1))) {
Chris Lattner6f4b45a2004-02-24 05:38:11 +0000423 Values.push_back(C);
424 return Inst->getOperand(0);
Chris Lattnerb2b151d2004-06-19 07:02:14 +0000425 } else if (ConstantInt *C = dyn_cast<ConstantInt>(Inst->getOperand(0))) {
Chris Lattner6f4b45a2004-02-24 05:38:11 +0000426 Values.push_back(C);
427 return Inst->getOperand(1);
428 }
429 } else if (Inst->getOpcode() == Instruction::Cast) {
430 // Cast of X to bool is really a comparison against zero.
431 assert(Inst->getType() == Type::BoolTy && "Can only handle bool values!");
Chris Lattnerb2b151d2004-06-19 07:02:14 +0000432 Values.push_back(ConstantInt::get(Inst->getOperand(0)->getType(), 0));
Chris Lattner6f4b45a2004-02-24 05:38:11 +0000433 return Inst->getOperand(0);
434 } else if (Inst->getOpcode() == Instruction::And) {
435 if (Value *LHS = GatherConstantSetNEs(Inst->getOperand(0), Values))
436 if (Value *RHS = GatherConstantSetNEs(Inst->getOperand(1), Values))
437 if (LHS == RHS)
438 return LHS;
439 }
440 return 0;
441}
442
443
444
445/// GatherValueComparisons - If the specified Cond is an 'and' or 'or' of a
446/// bunch of comparisons of one value against constants, return the value and
447/// the constants being compared.
448static bool GatherValueComparisons(Instruction *Cond, Value *&CompVal,
Chris Lattnerb2b151d2004-06-19 07:02:14 +0000449 std::vector<ConstantInt*> &Values) {
Chris Lattner6f4b45a2004-02-24 05:38:11 +0000450 if (Cond->getOpcode() == Instruction::Or) {
451 CompVal = GatherConstantSetEQs(Cond, Values);
452
453 // Return true to indicate that the condition is true if the CompVal is
454 // equal to one of the constants.
455 return true;
456 } else if (Cond->getOpcode() == Instruction::And) {
457 CompVal = GatherConstantSetNEs(Cond, Values);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000458
Chris Lattner6f4b45a2004-02-24 05:38:11 +0000459 // Return false to indicate that the condition is false if the CompVal is
460 // equal to one of the constants.
461 return false;
462 }
463 return false;
464}
465
466/// ErasePossiblyDeadInstructionTree - If the specified instruction is dead and
467/// has no side effects, nuke it. If it uses any instructions that become dead
468/// because the instruction is now gone, nuke them too.
469static void ErasePossiblyDeadInstructionTree(Instruction *I) {
Chris Lattnerc9009d92006-08-03 21:40:24 +0000470 if (!isInstructionTriviallyDead(I)) return;
471
472 std::vector<Instruction*> InstrsToInspect;
473 InstrsToInspect.push_back(I);
474
475 while (!InstrsToInspect.empty()) {
476 I = InstrsToInspect.back();
477 InstrsToInspect.pop_back();
478
479 if (!isInstructionTriviallyDead(I)) continue;
480
481 // If I is in the work list multiple times, remove previous instances.
482 for (unsigned i = 0, e = InstrsToInspect.size(); i != e; ++i)
483 if (InstrsToInspect[i] == I) {
484 InstrsToInspect.erase(InstrsToInspect.begin()+i);
485 --i, --e;
486 }
487
488 // Add operands of dead instruction to worklist.
489 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
490 if (Instruction *OpI = dyn_cast<Instruction>(I->getOperand(i)))
491 InstrsToInspect.push_back(OpI);
492
493 // Remove dead instruction.
494 I->eraseFromParent();
Chris Lattner6f4b45a2004-02-24 05:38:11 +0000495 }
496}
497
Chris Lattnerd3e6ae22004-02-28 21:28:10 +0000498// isValueEqualityComparison - Return true if the specified terminator checks to
499// see if a value is equal to constant integer value.
500static Value *isValueEqualityComparison(TerminatorInst *TI) {
Chris Lattnera64923a2004-03-16 19:45:22 +0000501 if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
502 // Do not permit merging of large switch instructions into their
503 // predecessors unless there is only one predecessor.
504 if (SI->getNumSuccessors() * std::distance(pred_begin(SI->getParent()),
505 pred_end(SI->getParent())) > 128)
506 return 0;
507
Chris Lattnerd3e6ae22004-02-28 21:28:10 +0000508 return SI->getCondition();
Chris Lattnera64923a2004-03-16 19:45:22 +0000509 }
Chris Lattnerd3e6ae22004-02-28 21:28:10 +0000510 if (BranchInst *BI = dyn_cast<BranchInst>(TI))
511 if (BI->isConditional() && BI->getCondition()->hasOneUse())
512 if (SetCondInst *SCI = dyn_cast<SetCondInst>(BI->getCondition()))
513 if ((SCI->getOpcode() == Instruction::SetEQ ||
Misha Brukmanb1c93172005-04-21 23:48:37 +0000514 SCI->getOpcode() == Instruction::SetNE) &&
Chris Lattnerd3e6ae22004-02-28 21:28:10 +0000515 isa<ConstantInt>(SCI->getOperand(1)))
516 return SCI->getOperand(0);
517 return 0;
518}
519
520// Given a value comparison instruction, decode all of the 'cases' that it
521// represents and return the 'default' block.
522static BasicBlock *
Misha Brukmanb1c93172005-04-21 23:48:37 +0000523GetValueEqualityComparisonCases(TerminatorInst *TI,
Chris Lattnerd3e6ae22004-02-28 21:28:10 +0000524 std::vector<std::pair<ConstantInt*,
525 BasicBlock*> > &Cases) {
526 if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
527 Cases.reserve(SI->getNumCases());
528 for (unsigned i = 1, e = SI->getNumCases(); i != e; ++i)
Chris Lattnercc6d75f2005-02-26 18:33:28 +0000529 Cases.push_back(std::make_pair(SI->getCaseValue(i), SI->getSuccessor(i)));
Chris Lattnerd3e6ae22004-02-28 21:28:10 +0000530 return SI->getDefaultDest();
531 }
532
533 BranchInst *BI = cast<BranchInst>(TI);
534 SetCondInst *SCI = cast<SetCondInst>(BI->getCondition());
535 Cases.push_back(std::make_pair(cast<ConstantInt>(SCI->getOperand(1)),
536 BI->getSuccessor(SCI->getOpcode() ==
537 Instruction::SetNE)));
538 return BI->getSuccessor(SCI->getOpcode() == Instruction::SetEQ);
539}
540
541
Chris Lattner1cca9592005-02-24 06:17:52 +0000542// EliminateBlockCases - Given an vector of bb/value pairs, remove any entries
543// in the list that match the specified block.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000544static void EliminateBlockCases(BasicBlock *BB,
Chris Lattner1cca9592005-02-24 06:17:52 +0000545 std::vector<std::pair<ConstantInt*, BasicBlock*> > &Cases) {
546 for (unsigned i = 0, e = Cases.size(); i != e; ++i)
547 if (Cases[i].second == BB) {
548 Cases.erase(Cases.begin()+i);
549 --i; --e;
550 }
551}
552
553// ValuesOverlap - Return true if there are any keys in C1 that exist in C2 as
554// well.
555static bool
556ValuesOverlap(std::vector<std::pair<ConstantInt*, BasicBlock*> > &C1,
557 std::vector<std::pair<ConstantInt*, BasicBlock*> > &C2) {
558 std::vector<std::pair<ConstantInt*, BasicBlock*> > *V1 = &C1, *V2 = &C2;
559
560 // Make V1 be smaller than V2.
561 if (V1->size() > V2->size())
562 std::swap(V1, V2);
563
564 if (V1->size() == 0) return false;
565 if (V1->size() == 1) {
566 // Just scan V2.
567 ConstantInt *TheVal = (*V1)[0].first;
568 for (unsigned i = 0, e = V2->size(); i != e; ++i)
569 if (TheVal == (*V2)[i].first)
570 return true;
571 }
572
573 // Otherwise, just sort both lists and compare element by element.
574 std::sort(V1->begin(), V1->end());
575 std::sort(V2->begin(), V2->end());
576 unsigned i1 = 0, i2 = 0, e1 = V1->size(), e2 = V2->size();
577 while (i1 != e1 && i2 != e2) {
578 if ((*V1)[i1].first == (*V2)[i2].first)
579 return true;
580 if ((*V1)[i1].first < (*V2)[i2].first)
581 ++i1;
582 else
583 ++i2;
584 }
585 return false;
586}
587
588// SimplifyEqualityComparisonWithOnlyPredecessor - If TI is known to be a
589// terminator instruction and its block is known to only have a single
590// predecessor block, check to see if that predecessor is also a value
591// comparison with the same value, and if that comparison determines the outcome
592// of this comparison. If so, simplify TI. This does a very limited form of
593// jump threading.
594static bool SimplifyEqualityComparisonWithOnlyPredecessor(TerminatorInst *TI,
595 BasicBlock *Pred) {
596 Value *PredVal = isValueEqualityComparison(Pred->getTerminator());
597 if (!PredVal) return false; // Not a value comparison in predecessor.
598
599 Value *ThisVal = isValueEqualityComparison(TI);
600 assert(ThisVal && "This isn't a value comparison!!");
601 if (ThisVal != PredVal) return false; // Different predicates.
602
603 // Find out information about when control will move from Pred to TI's block.
604 std::vector<std::pair<ConstantInt*, BasicBlock*> > PredCases;
605 BasicBlock *PredDef = GetValueEqualityComparisonCases(Pred->getTerminator(),
606 PredCases);
607 EliminateBlockCases(PredDef, PredCases); // Remove default from cases.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000608
Chris Lattner1cca9592005-02-24 06:17:52 +0000609 // Find information about how control leaves this block.
610 std::vector<std::pair<ConstantInt*, BasicBlock*> > ThisCases;
611 BasicBlock *ThisDef = GetValueEqualityComparisonCases(TI, ThisCases);
612 EliminateBlockCases(ThisDef, ThisCases); // Remove default from cases.
613
614 // If TI's block is the default block from Pred's comparison, potentially
615 // simplify TI based on this knowledge.
616 if (PredDef == TI->getParent()) {
617 // If we are here, we know that the value is none of those cases listed in
618 // PredCases. If there are any cases in ThisCases that are in PredCases, we
619 // can simplify TI.
620 if (ValuesOverlap(PredCases, ThisCases)) {
621 if (BranchInst *BTI = dyn_cast<BranchInst>(TI)) {
622 // Okay, one of the successors of this condbr is dead. Convert it to a
623 // uncond br.
624 assert(ThisCases.size() == 1 && "Branch can only have one case!");
625 Value *Cond = BTI->getCondition();
626 // Insert the new branch.
627 Instruction *NI = new BranchInst(ThisDef, TI);
628
629 // Remove PHI node entries for the dead edge.
630 ThisCases[0].second->removePredecessor(TI->getParent());
631
632 DEBUG(std::cerr << "Threading pred instr: " << *Pred->getTerminator()
633 << "Through successor TI: " << *TI << "Leaving: " << *NI << "\n");
634
635 TI->eraseFromParent(); // Nuke the old one.
636 // If condition is now dead, nuke it.
637 if (Instruction *CondI = dyn_cast<Instruction>(Cond))
638 ErasePossiblyDeadInstructionTree(CondI);
639 return true;
640
641 } else {
642 SwitchInst *SI = cast<SwitchInst>(TI);
643 // Okay, TI has cases that are statically dead, prune them away.
644 std::set<Constant*> DeadCases;
645 for (unsigned i = 0, e = PredCases.size(); i != e; ++i)
646 DeadCases.insert(PredCases[i].first);
647
648 DEBUG(std::cerr << "Threading pred instr: " << *Pred->getTerminator()
649 << "Through successor TI: " << *TI);
650
651 for (unsigned i = SI->getNumCases()-1; i != 0; --i)
652 if (DeadCases.count(SI->getCaseValue(i))) {
653 SI->getSuccessor(i)->removePredecessor(TI->getParent());
654 SI->removeCase(i);
655 }
656
657 DEBUG(std::cerr << "Leaving: " << *TI << "\n");
658 return true;
659 }
660 }
661
662 } else {
663 // Otherwise, TI's block must correspond to some matched value. Find out
664 // which value (or set of values) this is.
665 ConstantInt *TIV = 0;
666 BasicBlock *TIBB = TI->getParent();
667 for (unsigned i = 0, e = PredCases.size(); i != e; ++i)
668 if (PredCases[i].second == TIBB)
669 if (TIV == 0)
670 TIV = PredCases[i].first;
671 else
672 return false; // Cannot handle multiple values coming to this block.
673 assert(TIV && "No edge from pred to succ?");
674
675 // Okay, we found the one constant that our value can be if we get into TI's
676 // BB. Find out which successor will unconditionally be branched to.
677 BasicBlock *TheRealDest = 0;
678 for (unsigned i = 0, e = ThisCases.size(); i != e; ++i)
679 if (ThisCases[i].first == TIV) {
680 TheRealDest = ThisCases[i].second;
681 break;
682 }
683
684 // If not handled by any explicit cases, it is handled by the default case.
685 if (TheRealDest == 0) TheRealDest = ThisDef;
686
687 // Remove PHI node entries for dead edges.
688 BasicBlock *CheckEdge = TheRealDest;
689 for (succ_iterator SI = succ_begin(TIBB), e = succ_end(TIBB); SI != e; ++SI)
690 if (*SI != CheckEdge)
691 (*SI)->removePredecessor(TIBB);
692 else
693 CheckEdge = 0;
694
695 // Insert the new branch.
696 Instruction *NI = new BranchInst(TheRealDest, TI);
697
698 DEBUG(std::cerr << "Threading pred instr: " << *Pred->getTerminator()
699 << "Through successor TI: " << *TI << "Leaving: " << *NI << "\n");
700 Instruction *Cond = 0;
701 if (BranchInst *BI = dyn_cast<BranchInst>(TI))
702 Cond = dyn_cast<Instruction>(BI->getCondition());
703 TI->eraseFromParent(); // Nuke the old one.
704
705 if (Cond) ErasePossiblyDeadInstructionTree(Cond);
706 return true;
707 }
708 return false;
709}
710
Chris Lattnerd3e6ae22004-02-28 21:28:10 +0000711// FoldValueComparisonIntoPredecessors - The specified terminator is a value
712// equality comparison instruction (either a switch or a branch on "X == c").
713// See if any of the predecessors of the terminator block are value comparisons
714// on the same value. If so, and if safe to do so, fold them together.
715static bool FoldValueComparisonIntoPredecessors(TerminatorInst *TI) {
716 BasicBlock *BB = TI->getParent();
717 Value *CV = isValueEqualityComparison(TI); // CondVal
718 assert(CV && "Not a comparison?");
719 bool Changed = false;
720
721 std::vector<BasicBlock*> Preds(pred_begin(BB), pred_end(BB));
722 while (!Preds.empty()) {
723 BasicBlock *Pred = Preds.back();
724 Preds.pop_back();
Misha Brukmanb1c93172005-04-21 23:48:37 +0000725
Chris Lattnerd3e6ae22004-02-28 21:28:10 +0000726 // See if the predecessor is a comparison with the same value.
727 TerminatorInst *PTI = Pred->getTerminator();
728 Value *PCV = isValueEqualityComparison(PTI); // PredCondVal
729
730 if (PCV == CV && SafeToMergeTerminators(TI, PTI)) {
731 // Figure out which 'cases' to copy from SI to PSI.
732 std::vector<std::pair<ConstantInt*, BasicBlock*> > BBCases;
733 BasicBlock *BBDefault = GetValueEqualityComparisonCases(TI, BBCases);
734
735 std::vector<std::pair<ConstantInt*, BasicBlock*> > PredCases;
736 BasicBlock *PredDefault = GetValueEqualityComparisonCases(PTI, PredCases);
737
738 // Based on whether the default edge from PTI goes to BB or not, fill in
739 // PredCases and PredDefault with the new switch cases we would like to
740 // build.
741 std::vector<BasicBlock*> NewSuccessors;
742
743 if (PredDefault == BB) {
744 // If this is the default destination from PTI, only the edges in TI
745 // that don't occur in PTI, or that branch to BB will be activated.
746 std::set<ConstantInt*> PTIHandled;
747 for (unsigned i = 0, e = PredCases.size(); i != e; ++i)
748 if (PredCases[i].second != BB)
749 PTIHandled.insert(PredCases[i].first);
750 else {
751 // The default destination is BB, we don't need explicit targets.
752 std::swap(PredCases[i], PredCases.back());
753 PredCases.pop_back();
754 --i; --e;
755 }
756
757 // Reconstruct the new switch statement we will be building.
758 if (PredDefault != BBDefault) {
759 PredDefault->removePredecessor(Pred);
760 PredDefault = BBDefault;
761 NewSuccessors.push_back(BBDefault);
762 }
763 for (unsigned i = 0, e = BBCases.size(); i != e; ++i)
764 if (!PTIHandled.count(BBCases[i].first) &&
765 BBCases[i].second != BBDefault) {
766 PredCases.push_back(BBCases[i]);
767 NewSuccessors.push_back(BBCases[i].second);
768 }
769
770 } else {
771 // If this is not the default destination from PSI, only the edges
772 // in SI that occur in PSI with a destination of BB will be
773 // activated.
774 std::set<ConstantInt*> PTIHandled;
775 for (unsigned i = 0, e = PredCases.size(); i != e; ++i)
776 if (PredCases[i].second == BB) {
777 PTIHandled.insert(PredCases[i].first);
778 std::swap(PredCases[i], PredCases.back());
779 PredCases.pop_back();
780 --i; --e;
781 }
782
783 // Okay, now we know which constants were sent to BB from the
784 // predecessor. Figure out where they will all go now.
785 for (unsigned i = 0, e = BBCases.size(); i != e; ++i)
786 if (PTIHandled.count(BBCases[i].first)) {
787 // If this is one we are capable of getting...
788 PredCases.push_back(BBCases[i]);
789 NewSuccessors.push_back(BBCases[i].second);
790 PTIHandled.erase(BBCases[i].first);// This constant is taken care of
791 }
792
793 // If there are any constants vectored to BB that TI doesn't handle,
794 // they must go to the default destination of TI.
795 for (std::set<ConstantInt*>::iterator I = PTIHandled.begin(),
796 E = PTIHandled.end(); I != E; ++I) {
797 PredCases.push_back(std::make_pair(*I, BBDefault));
798 NewSuccessors.push_back(BBDefault);
799 }
800 }
801
802 // Okay, at this point, we know which new successor Pred will get. Make
803 // sure we update the number of entries in the PHI nodes for these
804 // successors.
805 for (unsigned i = 0, e = NewSuccessors.size(); i != e; ++i)
806 AddPredecessorToBlock(NewSuccessors[i], Pred, BB);
807
808 // Now that the successors are updated, create the new Switch instruction.
Chris Lattnera35dfce2005-01-29 00:38:26 +0000809 SwitchInst *NewSI = new SwitchInst(CV, PredDefault, PredCases.size(),PTI);
Chris Lattnerd3e6ae22004-02-28 21:28:10 +0000810 for (unsigned i = 0, e = PredCases.size(); i != e; ++i)
811 NewSI->addCase(PredCases[i].first, PredCases[i].second);
Chris Lattner3215bb62005-01-01 16:02:12 +0000812
813 Instruction *DeadCond = 0;
814 if (BranchInst *BI = dyn_cast<BranchInst>(PTI))
815 // If PTI is a branch, remember the condition.
816 DeadCond = dyn_cast<Instruction>(BI->getCondition());
Chris Lattnerd3e6ae22004-02-28 21:28:10 +0000817 Pred->getInstList().erase(PTI);
818
Chris Lattner3215bb62005-01-01 16:02:12 +0000819 // If the condition is dead now, remove the instruction tree.
820 if (DeadCond) ErasePossiblyDeadInstructionTree(DeadCond);
821
Chris Lattnerd3e6ae22004-02-28 21:28:10 +0000822 // Okay, last check. If BB is still a successor of PSI, then we must
823 // have an infinite loop case. If so, add an infinitely looping block
824 // to handle the case to preserve the behavior of the code.
825 BasicBlock *InfLoopBlock = 0;
826 for (unsigned i = 0, e = NewSI->getNumSuccessors(); i != e; ++i)
827 if (NewSI->getSuccessor(i) == BB) {
828 if (InfLoopBlock == 0) {
829 // Insert it at the end of the loop, because it's either code,
830 // or it won't matter if it's hot. :)
831 InfLoopBlock = new BasicBlock("infloop", BB->getParent());
832 new BranchInst(InfLoopBlock, InfLoopBlock);
833 }
834 NewSI->setSuccessor(i, InfLoopBlock);
835 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000836
Chris Lattnerd3e6ae22004-02-28 21:28:10 +0000837 Changed = true;
838 }
839 }
840 return Changed;
841}
842
Chris Lattnerd683bdd2005-08-03 17:59:45 +0000843/// HoistThenElseCodeToIf - Given a conditional branch that goes to BB1 and
Chris Lattner389cfac2004-11-30 00:29:14 +0000844/// BB2, hoist any common code in the two blocks up into the branch block. The
845/// caller of this function guarantees that BI's block dominates BB1 and BB2.
846static bool HoistThenElseCodeToIf(BranchInst *BI) {
847 // This does very trivial matching, with limited scanning, to find identical
848 // instructions in the two blocks. In particular, we don't want to get into
849 // O(M*N) situations here where M and N are the sizes of BB1 and BB2. As
850 // such, we currently just scan for obviously identical instructions in an
851 // identical order.
852 BasicBlock *BB1 = BI->getSuccessor(0); // The true destination.
853 BasicBlock *BB2 = BI->getSuccessor(1); // The false destination
854
855 Instruction *I1 = BB1->begin(), *I2 = BB2->begin();
Chris Lattnerd683bdd2005-08-03 17:59:45 +0000856 if (I1->getOpcode() != I2->getOpcode() || !I1->isIdenticalTo(I2) ||
Chris Lattnerfc519cd2006-10-29 21:21:20 +0000857 isa<PHINode>(I1) || isa<InvokeInst>(I1))
Chris Lattner389cfac2004-11-30 00:29:14 +0000858 return false;
859
860 // If we get here, we can hoist at least one instruction.
861 BasicBlock *BIParent = BI->getParent();
Chris Lattner389cfac2004-11-30 00:29:14 +0000862
863 do {
864 // If we are hoisting the terminator instruction, don't move one (making a
865 // broken BB), instead clone it, and remove BI.
866 if (isa<TerminatorInst>(I1))
867 goto HoistTerminator;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000868
Chris Lattner389cfac2004-11-30 00:29:14 +0000869 // For a normal instruction, we just move one to right before the branch,
870 // then replace all uses of the other with the first. Finally, we remove
871 // the now redundant second instruction.
872 BIParent->getInstList().splice(BI, BB1->getInstList(), I1);
873 if (!I2->use_empty())
874 I2->replaceAllUsesWith(I1);
875 BB2->getInstList().erase(I2);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000876
Chris Lattner389cfac2004-11-30 00:29:14 +0000877 I1 = BB1->begin();
878 I2 = BB2->begin();
Chris Lattner389cfac2004-11-30 00:29:14 +0000879 } while (I1->getOpcode() == I2->getOpcode() && I1->isIdenticalTo(I2));
880
881 return true;
882
883HoistTerminator:
884 // Okay, it is safe to hoist the terminator.
885 Instruction *NT = I1->clone();
886 BIParent->getInstList().insert(BI, NT);
887 if (NT->getType() != Type::VoidTy) {
888 I1->replaceAllUsesWith(NT);
889 I2->replaceAllUsesWith(NT);
890 NT->setName(I1->getName());
891 }
892
893 // Hoisting one of the terminators from our successor is a great thing.
894 // Unfortunately, the successors of the if/else blocks may have PHI nodes in
895 // them. If they do, all PHI entries for BB1/BB2 must agree for all PHI
896 // nodes, so we insert select instruction to compute the final result.
897 std::map<std::pair<Value*,Value*>, SelectInst*> InsertedSelects;
898 for (succ_iterator SI = succ_begin(BB1), E = succ_end(BB1); SI != E; ++SI) {
899 PHINode *PN;
900 for (BasicBlock::iterator BBI = SI->begin();
Chris Lattner01944572004-11-30 07:47:34 +0000901 (PN = dyn_cast<PHINode>(BBI)); ++BBI) {
Chris Lattner389cfac2004-11-30 00:29:14 +0000902 Value *BB1V = PN->getIncomingValueForBlock(BB1);
903 Value *BB2V = PN->getIncomingValueForBlock(BB2);
904 if (BB1V != BB2V) {
905 // These values do not agree. Insert a select instruction before NT
906 // that determines the right value.
907 SelectInst *&SI = InsertedSelects[std::make_pair(BB1V, BB2V)];
908 if (SI == 0)
909 SI = new SelectInst(BI->getCondition(), BB1V, BB2V,
910 BB1V->getName()+"."+BB2V->getName(), NT);
911 // Make the PHI node use the select for all incoming values for BB1/BB2
912 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
913 if (PN->getIncomingBlock(i) == BB1 || PN->getIncomingBlock(i) == BB2)
914 PN->setIncomingValue(i, SI);
915 }
916 }
917 }
918
919 // Update any PHI nodes in our new successors.
920 for (succ_iterator SI = succ_begin(BB1), E = succ_end(BB1); SI != E; ++SI)
921 AddPredecessorToBlock(*SI, BIParent, BB1);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000922
Chris Lattner389cfac2004-11-30 00:29:14 +0000923 BI->eraseFromParent();
924 return true;
925}
926
Chris Lattnerf0bd8d02005-09-20 00:43:16 +0000927/// BlockIsSimpleEnoughToThreadThrough - Return true if we can thread a branch
928/// across this block.
929static bool BlockIsSimpleEnoughToThreadThrough(BasicBlock *BB) {
930 BranchInst *BI = cast<BranchInst>(BB->getTerminator());
Chris Lattner6c701062005-09-20 01:48:40 +0000931 unsigned Size = 0;
932
Chris Lattnerf0bd8d02005-09-20 00:43:16 +0000933 // If this basic block contains anything other than a PHI (which controls the
934 // branch) and branch itself, bail out. FIXME: improve this in the future.
Chris Lattner6c701062005-09-20 01:48:40 +0000935 for (BasicBlock::iterator BBI = BB->begin(); &*BBI != BI; ++BBI, ++Size) {
936 if (Size > 10) return false; // Don't clone large BB's.
Chris Lattnerf0bd8d02005-09-20 00:43:16 +0000937
Chris Lattner6c701062005-09-20 01:48:40 +0000938 // We can only support instructions that are do not define values that are
939 // live outside of the current basic block.
940 for (Value::use_iterator UI = BBI->use_begin(), E = BBI->use_end();
941 UI != E; ++UI) {
942 Instruction *U = cast<Instruction>(*UI);
943 if (U->getParent() != BB || isa<PHINode>(U)) return false;
944 }
Chris Lattnerf0bd8d02005-09-20 00:43:16 +0000945
946 // Looks ok, continue checking.
947 }
Chris Lattner6c701062005-09-20 01:48:40 +0000948
Chris Lattnerf0bd8d02005-09-20 00:43:16 +0000949 return true;
950}
951
Chris Lattner748f9032005-09-19 23:49:37 +0000952/// FoldCondBranchOnPHI - If we have a conditional branch on a PHI node value
953/// that is defined in the same block as the branch and if any PHI entries are
954/// constants, thread edges corresponding to that entry to be branches to their
955/// ultimate destination.
956static bool FoldCondBranchOnPHI(BranchInst *BI) {
957 BasicBlock *BB = BI->getParent();
958 PHINode *PN = dyn_cast<PHINode>(BI->getCondition());
Chris Lattner049cb442005-09-19 23:57:04 +0000959 // NOTE: we currently cannot transform this case if the PHI node is used
960 // outside of the block.
Chris Lattnerf0bd8d02005-09-20 00:43:16 +0000961 if (!PN || PN->getParent() != BB || !PN->hasOneUse())
962 return false;
Chris Lattner748f9032005-09-19 23:49:37 +0000963
964 // Degenerate case of a single entry PHI.
965 if (PN->getNumIncomingValues() == 1) {
966 if (PN->getIncomingValue(0) != PN)
967 PN->replaceAllUsesWith(PN->getIncomingValue(0));
968 else
969 PN->replaceAllUsesWith(UndefValue::get(PN->getType()));
970 PN->eraseFromParent();
971 return true;
972 }
973
974 // Now we know that this block has multiple preds and two succs.
Chris Lattnerf0bd8d02005-09-20 00:43:16 +0000975 if (!BlockIsSimpleEnoughToThreadThrough(BB)) return false;
Chris Lattner748f9032005-09-19 23:49:37 +0000976
977 // Okay, this is a simple enough basic block. See if any phi values are
978 // constants.
979 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
980 if (ConstantBool *CB = dyn_cast<ConstantBool>(PN->getIncomingValue(i))) {
981 // Okay, we now know that all edges from PredBB should be revectored to
982 // branch to RealDest.
983 BasicBlock *PredBB = PN->getIncomingBlock(i);
984 BasicBlock *RealDest = BI->getSuccessor(!CB->getValue());
985
Chris Lattner6c701062005-09-20 01:48:40 +0000986 if (RealDest == BB) continue; // Skip self loops.
Chris Lattner748f9032005-09-19 23:49:37 +0000987
Chris Lattner6c701062005-09-20 01:48:40 +0000988 // The dest block might have PHI nodes, other predecessors and other
989 // difficult cases. Instead of being smart about this, just insert a new
990 // block that jumps to the destination block, effectively splitting
991 // the edge we are about to create.
992 BasicBlock *EdgeBB = new BasicBlock(RealDest->getName()+".critedge",
993 RealDest->getParent(), RealDest);
994 new BranchInst(RealDest, EdgeBB);
995 PHINode *PN;
996 for (BasicBlock::iterator BBI = RealDest->begin();
997 (PN = dyn_cast<PHINode>(BBI)); ++BBI) {
998 Value *V = PN->getIncomingValueForBlock(BB);
999 PN->addIncoming(V, EdgeBB);
1000 }
1001
1002 // BB may have instructions that are being threaded over. Clone these
1003 // instructions into EdgeBB. We know that there will be no uses of the
1004 // cloned instructions outside of EdgeBB.
1005 BasicBlock::iterator InsertPt = EdgeBB->begin();
1006 std::map<Value*, Value*> TranslateMap; // Track translated values.
1007 for (BasicBlock::iterator BBI = BB->begin(); &*BBI != BI; ++BBI) {
1008 if (PHINode *PN = dyn_cast<PHINode>(BBI)) {
1009 TranslateMap[PN] = PN->getIncomingValueForBlock(PredBB);
1010 } else {
1011 // Clone the instruction.
1012 Instruction *N = BBI->clone();
1013 if (BBI->hasName()) N->setName(BBI->getName()+".c");
1014
1015 // Update operands due to translation.
1016 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
1017 std::map<Value*, Value*>::iterator PI =
1018 TranslateMap.find(N->getOperand(i));
1019 if (PI != TranslateMap.end())
1020 N->setOperand(i, PI->second);
1021 }
1022
1023 // Check for trivial simplification.
1024 if (Constant *C = ConstantFoldInstruction(N)) {
Chris Lattner6c701062005-09-20 01:48:40 +00001025 TranslateMap[BBI] = C;
1026 delete N; // Constant folded away, don't need actual inst
1027 } else {
1028 // Insert the new instruction into its new home.
1029 EdgeBB->getInstList().insert(InsertPt, N);
1030 if (!BBI->use_empty())
1031 TranslateMap[BBI] = N;
1032 }
1033 }
1034 }
1035
Chris Lattner748f9032005-09-19 23:49:37 +00001036 // Loop over all of the edges from PredBB to BB, changing them to branch
Chris Lattner6c701062005-09-20 01:48:40 +00001037 // to EdgeBB instead.
Chris Lattner748f9032005-09-19 23:49:37 +00001038 TerminatorInst *PredBBTI = PredBB->getTerminator();
1039 for (unsigned i = 0, e = PredBBTI->getNumSuccessors(); i != e; ++i)
1040 if (PredBBTI->getSuccessor(i) == BB) {
1041 BB->removePredecessor(PredBB);
Chris Lattner6c701062005-09-20 01:48:40 +00001042 PredBBTI->setSuccessor(i, EdgeBB);
Chris Lattner748f9032005-09-19 23:49:37 +00001043 }
1044
Chris Lattner748f9032005-09-19 23:49:37 +00001045 // Recurse, simplifying any other constants.
1046 return FoldCondBranchOnPHI(BI) | true;
1047 }
1048
1049 return false;
1050}
1051
Chris Lattnercc14ebc2005-09-23 06:39:30 +00001052/// FoldTwoEntryPHINode - Given a BB that starts with the specified two-entry
1053/// PHI node, see if we can eliminate it.
1054static bool FoldTwoEntryPHINode(PHINode *PN) {
1055 // Ok, this is a two entry PHI node. Check to see if this is a simple "if
1056 // statement", which has a very simple dominance structure. Basically, we
1057 // are trying to find the condition that is being branched on, which
1058 // subsequently causes this merge to happen. We really want control
1059 // dependence information for this check, but simplifycfg can't keep it up
1060 // to date, and this catches most of the cases we care about anyway.
1061 //
1062 BasicBlock *BB = PN->getParent();
1063 BasicBlock *IfTrue, *IfFalse;
1064 Value *IfCond = GetIfCondition(BB, IfTrue, IfFalse);
1065 if (!IfCond) return false;
1066
Chris Lattner95adf8f12006-11-18 19:19:36 +00001067 // Okay, we found that we can merge this two-entry phi node into a select.
1068 // Doing so would require us to fold *all* two entry phi nodes in this block.
1069 // At some point this becomes non-profitable (particularly if the target
1070 // doesn't support cmov's). Only do this transformation if there are two or
1071 // fewer PHI nodes in this block.
1072 unsigned NumPhis = 0;
1073 for (BasicBlock::iterator I = BB->begin(); isa<PHINode>(I); ++NumPhis, ++I)
1074 if (NumPhis > 2)
1075 return false;
1076
Chris Lattnercc14ebc2005-09-23 06:39:30 +00001077 DEBUG(std::cerr << "FOUND IF CONDITION! " << *IfCond << " T: "
1078 << IfTrue->getName() << " F: " << IfFalse->getName() << "\n");
1079
1080 // Loop over the PHI's seeing if we can promote them all to select
1081 // instructions. While we are at it, keep track of the instructions
1082 // that need to be moved to the dominating block.
1083 std::set<Instruction*> AggressiveInsts;
1084
Chris Lattnercc14ebc2005-09-23 06:39:30 +00001085 BasicBlock::iterator AfterPHIIt = BB->begin();
1086 while (isa<PHINode>(AfterPHIIt)) {
1087 PHINode *PN = cast<PHINode>(AfterPHIIt++);
1088 if (PN->getIncomingValue(0) == PN->getIncomingValue(1)) {
1089 if (PN->getIncomingValue(0) != PN)
1090 PN->replaceAllUsesWith(PN->getIncomingValue(0));
1091 else
1092 PN->replaceAllUsesWith(UndefValue::get(PN->getType()));
1093 } else if (!DominatesMergePoint(PN->getIncomingValue(0), BB,
1094 &AggressiveInsts) ||
1095 !DominatesMergePoint(PN->getIncomingValue(1), BB,
1096 &AggressiveInsts)) {
Chris Lattner3a978bf2005-09-23 07:23:18 +00001097 return false;
Chris Lattnercc14ebc2005-09-23 06:39:30 +00001098 }
1099 }
1100
Chris Lattnercc14ebc2005-09-23 06:39:30 +00001101 // If we all PHI nodes are promotable, check to make sure that all
1102 // instructions in the predecessor blocks can be promoted as well. If
1103 // not, we won't be able to get rid of the control flow, so it's not
1104 // worth promoting to select instructions.
1105 BasicBlock *DomBlock = 0, *IfBlock1 = 0, *IfBlock2 = 0;
1106 PN = cast<PHINode>(BB->begin());
1107 BasicBlock *Pred = PN->getIncomingBlock(0);
1108 if (cast<BranchInst>(Pred->getTerminator())->isUnconditional()) {
1109 IfBlock1 = Pred;
1110 DomBlock = *pred_begin(Pred);
1111 for (BasicBlock::iterator I = Pred->begin();
1112 !isa<TerminatorInst>(I); ++I)
1113 if (!AggressiveInsts.count(I)) {
1114 // This is not an aggressive instruction that we can promote.
1115 // Because of this, we won't be able to get rid of the control
1116 // flow, so the xform is not worth it.
1117 return false;
1118 }
1119 }
1120
1121 Pred = PN->getIncomingBlock(1);
1122 if (cast<BranchInst>(Pred->getTerminator())->isUnconditional()) {
1123 IfBlock2 = Pred;
1124 DomBlock = *pred_begin(Pred);
1125 for (BasicBlock::iterator I = Pred->begin();
1126 !isa<TerminatorInst>(I); ++I)
1127 if (!AggressiveInsts.count(I)) {
1128 // This is not an aggressive instruction that we can promote.
1129 // Because of this, we won't be able to get rid of the control
1130 // flow, so the xform is not worth it.
1131 return false;
1132 }
1133 }
1134
1135 // If we can still promote the PHI nodes after this gauntlet of tests,
1136 // do all of the PHI's now.
1137
1138 // Move all 'aggressive' instructions, which are defined in the
1139 // conditional parts of the if's up to the dominating block.
1140 if (IfBlock1) {
1141 DomBlock->getInstList().splice(DomBlock->getTerminator(),
1142 IfBlock1->getInstList(),
1143 IfBlock1->begin(),
1144 IfBlock1->getTerminator());
1145 }
1146 if (IfBlock2) {
1147 DomBlock->getInstList().splice(DomBlock->getTerminator(),
1148 IfBlock2->getInstList(),
1149 IfBlock2->begin(),
1150 IfBlock2->getTerminator());
1151 }
1152
1153 while (PHINode *PN = dyn_cast<PHINode>(BB->begin())) {
1154 // Change the PHI node into a select instruction.
1155 Value *TrueVal =
1156 PN->getIncomingValue(PN->getIncomingBlock(0) == IfFalse);
1157 Value *FalseVal =
1158 PN->getIncomingValue(PN->getIncomingBlock(0) == IfTrue);
1159
1160 std::string Name = PN->getName(); PN->setName("");
1161 PN->replaceAllUsesWith(new SelectInst(IfCond, TrueVal, FalseVal,
1162 Name, AfterPHIIt));
1163 BB->getInstList().erase(PN);
1164 }
1165 return true;
1166}
Chris Lattner748f9032005-09-19 23:49:37 +00001167
Chris Lattnerb2b151d2004-06-19 07:02:14 +00001168namespace {
1169 /// ConstantIntOrdering - This class implements a stable ordering of constant
1170 /// integers that does not depend on their address. This is important for
1171 /// applications that sort ConstantInt's to ensure uniqueness.
1172 struct ConstantIntOrdering {
1173 bool operator()(const ConstantInt *LHS, const ConstantInt *RHS) const {
Reid Spencere0fc4df2006-10-20 07:07:24 +00001174 return LHS->getZExtValue() < RHS->getZExtValue();
Chris Lattnerb2b151d2004-06-19 07:02:14 +00001175 }
1176 };
1177}
1178
Chris Lattner466a0492002-05-21 20:50:24 +00001179// SimplifyCFG - This function is used to do simplification of a CFG. For
1180// example, it adjusts branches to branches to eliminate the extra hop, it
1181// eliminates unreachable basic blocks, and does other "peephole" optimization
Chris Lattner31116ba2003-03-05 21:01:52 +00001182// of the CFG. It returns true if a modification was made.
Chris Lattner466a0492002-05-21 20:50:24 +00001183//
1184// WARNING: The entry node of a function may not be simplified.
1185//
Chris Lattnerdf3c3422004-01-09 06:12:26 +00001186bool llvm::SimplifyCFG(BasicBlock *BB) {
Chris Lattner3f5823f2003-08-24 18:36:16 +00001187 bool Changed = false;
Chris Lattner466a0492002-05-21 20:50:24 +00001188 Function *M = BB->getParent();
1189
1190 assert(BB && BB->getParent() && "Block not embedded in function!");
1191 assert(BB->getTerminator() && "Degenerate basic block encountered!");
Chris Lattnerfda72b12002-06-25 16:12:52 +00001192 assert(&BB->getParent()->front() != BB && "Can't Simplify entry block!");
Chris Lattner466a0492002-05-21 20:50:24 +00001193
Chris Lattner466a0492002-05-21 20:50:24 +00001194 // Remove basic blocks that have no predecessors... which are unreachable.
Chris Lattnera2ab4892004-02-24 07:23:58 +00001195 if (pred_begin(BB) == pred_end(BB) ||
1196 *pred_begin(BB) == BB && ++pred_begin(BB) == pred_end(BB)) {
Chris Lattner32c518e2004-07-15 02:06:12 +00001197 DEBUG(std::cerr << "Removing BB: \n" << *BB);
Chris Lattner466a0492002-05-21 20:50:24 +00001198
1199 // Loop through all of our successors and make sure they know that one
1200 // of their predecessors is going away.
Chris Lattner95f16a32005-04-12 18:51:33 +00001201 for (succ_iterator SI = succ_begin(BB), E = succ_end(BB); SI != E; ++SI)
1202 SI->removePredecessor(BB);
Chris Lattner466a0492002-05-21 20:50:24 +00001203
1204 while (!BB->empty()) {
Chris Lattnerfda72b12002-06-25 16:12:52 +00001205 Instruction &I = BB->back();
Chris Lattner466a0492002-05-21 20:50:24 +00001206 // If this instruction is used, replace uses with an arbitrary
Chris Lattnereee90f72005-08-02 23:29:23 +00001207 // value. Because control flow can't get here, we don't care
Misha Brukmanb1c93172005-04-21 23:48:37 +00001208 // what we replace the value with. Note that since this block is
Chris Lattner466a0492002-05-21 20:50:24 +00001209 // unreachable, and all values contained within it must dominate their
1210 // uses, that all uses will eventually be removed.
Misha Brukmanb1c93172005-04-21 23:48:37 +00001211 if (!I.use_empty())
Chris Lattnereee90f72005-08-02 23:29:23 +00001212 // Make all users of this instruction use undef instead
1213 I.replaceAllUsesWith(UndefValue::get(I.getType()));
Misha Brukmanb1c93172005-04-21 23:48:37 +00001214
Chris Lattner466a0492002-05-21 20:50:24 +00001215 // Remove the instruction from the basic block
Chris Lattnerfda72b12002-06-25 16:12:52 +00001216 BB->getInstList().pop_back();
Chris Lattner466a0492002-05-21 20:50:24 +00001217 }
Chris Lattnerfda72b12002-06-25 16:12:52 +00001218 M->getBasicBlockList().erase(BB);
Chris Lattner466a0492002-05-21 20:50:24 +00001219 return true;
1220 }
1221
Chris Lattner031340a2003-08-17 19:41:53 +00001222 // Check to see if we can constant propagate this terminator instruction
1223 // away...
Chris Lattner3f5823f2003-08-24 18:36:16 +00001224 Changed |= ConstantFoldTerminator(BB);
Chris Lattner031340a2003-08-17 19:41:53 +00001225
Chris Lattnere42732e2004-02-16 06:35:48 +00001226 // If this is a returning block with only PHI nodes in it, fold the return
1227 // instruction into any unconditional branch predecessors.
Chris Lattner9f0db322004-04-02 18:13:43 +00001228 //
1229 // If any predecessor is a conditional branch that just selects among
1230 // different return values, fold the replace the branch/return with a select
1231 // and return.
Chris Lattnere42732e2004-02-16 06:35:48 +00001232 if (ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator())) {
1233 BasicBlock::iterator BBI = BB->getTerminator();
1234 if (BBI == BB->begin() || isa<PHINode>(--BBI)) {
Chris Lattner9f0db322004-04-02 18:13:43 +00001235 // Find predecessors that end with branches.
Chris Lattnere42732e2004-02-16 06:35:48 +00001236 std::vector<BasicBlock*> UncondBranchPreds;
Chris Lattner9f0db322004-04-02 18:13:43 +00001237 std::vector<BranchInst*> CondBranchPreds;
Chris Lattnere42732e2004-02-16 06:35:48 +00001238 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
1239 TerminatorInst *PTI = (*PI)->getTerminator();
1240 if (BranchInst *BI = dyn_cast<BranchInst>(PTI))
1241 if (BI->isUnconditional())
1242 UncondBranchPreds.push_back(*PI);
Chris Lattner9f0db322004-04-02 18:13:43 +00001243 else
1244 CondBranchPreds.push_back(BI);
Chris Lattnere42732e2004-02-16 06:35:48 +00001245 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001246
Chris Lattnere42732e2004-02-16 06:35:48 +00001247 // If we found some, do the transformation!
1248 if (!UncondBranchPreds.empty()) {
1249 while (!UncondBranchPreds.empty()) {
1250 BasicBlock *Pred = UncondBranchPreds.back();
Chris Lattnerc59a3712005-09-23 18:47:20 +00001251 DEBUG(std::cerr << "FOLDING: " << *BB
1252 << "INTO UNCOND BRANCH PRED: " << *Pred);
Chris Lattnere42732e2004-02-16 06:35:48 +00001253 UncondBranchPreds.pop_back();
1254 Instruction *UncondBranch = Pred->getTerminator();
1255 // Clone the return and add it to the end of the predecessor.
1256 Instruction *NewRet = RI->clone();
1257 Pred->getInstList().push_back(NewRet);
1258
1259 // If the return instruction returns a value, and if the value was a
1260 // PHI node in "BB", propagate the right value into the return.
1261 if (NewRet->getNumOperands() == 1)
1262 if (PHINode *PN = dyn_cast<PHINode>(NewRet->getOperand(0)))
1263 if (PN->getParent() == BB)
1264 NewRet->setOperand(0, PN->getIncomingValueForBlock(Pred));
1265 // Update any PHI nodes in the returning block to realize that we no
1266 // longer branch to them.
1267 BB->removePredecessor(Pred);
1268 Pred->getInstList().erase(UncondBranch);
1269 }
1270
1271 // If we eliminated all predecessors of the block, delete the block now.
1272 if (pred_begin(BB) == pred_end(BB))
1273 // We know there are no successors, so just nuke the block.
1274 M->getBasicBlockList().erase(BB);
1275
Chris Lattnere42732e2004-02-16 06:35:48 +00001276 return true;
1277 }
Chris Lattner9f0db322004-04-02 18:13:43 +00001278
1279 // Check out all of the conditional branches going to this return
1280 // instruction. If any of them just select between returns, change the
1281 // branch itself into a select/return pair.
1282 while (!CondBranchPreds.empty()) {
1283 BranchInst *BI = CondBranchPreds.back();
1284 CondBranchPreds.pop_back();
1285 BasicBlock *TrueSucc = BI->getSuccessor(0);
1286 BasicBlock *FalseSucc = BI->getSuccessor(1);
1287 BasicBlock *OtherSucc = TrueSucc == BB ? FalseSucc : TrueSucc;
1288
1289 // Check to see if the non-BB successor is also a return block.
1290 if (isa<ReturnInst>(OtherSucc->getTerminator())) {
1291 // Check to see if there are only PHI instructions in this block.
1292 BasicBlock::iterator OSI = OtherSucc->getTerminator();
1293 if (OSI == OtherSucc->begin() || isa<PHINode>(--OSI)) {
1294 // Okay, we found a branch that is going to two return nodes. If
1295 // there is no return value for this function, just change the
1296 // branch into a return.
1297 if (RI->getNumOperands() == 0) {
1298 TrueSucc->removePredecessor(BI->getParent());
1299 FalseSucc->removePredecessor(BI->getParent());
1300 new ReturnInst(0, BI);
1301 BI->getParent()->getInstList().erase(BI);
1302 return true;
1303 }
1304
1305 // Otherwise, figure out what the true and false return values are
1306 // so we can insert a new select instruction.
1307 Value *TrueValue = TrueSucc->getTerminator()->getOperand(0);
1308 Value *FalseValue = FalseSucc->getTerminator()->getOperand(0);
1309
1310 // Unwrap any PHI nodes in the return blocks.
1311 if (PHINode *TVPN = dyn_cast<PHINode>(TrueValue))
1312 if (TVPN->getParent() == TrueSucc)
1313 TrueValue = TVPN->getIncomingValueForBlock(BI->getParent());
1314 if (PHINode *FVPN = dyn_cast<PHINode>(FalseValue))
1315 if (FVPN->getParent() == FalseSucc)
1316 FalseValue = FVPN->getIncomingValueForBlock(BI->getParent());
1317
Chris Lattnerb8b11592006-10-20 00:42:07 +00001318 // In order for this transformation to be safe, we must be able to
1319 // unconditionally execute both operands to the return. This is
1320 // normally the case, but we could have a potentially-trapping
1321 // constant expression that prevents this transformation from being
1322 // safe.
1323 if ((!isa<ConstantExpr>(TrueValue) ||
1324 !cast<ConstantExpr>(TrueValue)->canTrap()) &&
1325 (!isa<ConstantExpr>(TrueValue) ||
1326 !cast<ConstantExpr>(TrueValue)->canTrap())) {
1327 TrueSucc->removePredecessor(BI->getParent());
1328 FalseSucc->removePredecessor(BI->getParent());
Chris Lattnereed034b2004-04-02 18:15:10 +00001329
Chris Lattnerb8b11592006-10-20 00:42:07 +00001330 // Insert a new select instruction.
1331 Value *NewRetVal;
1332 Value *BrCond = BI->getCondition();
1333 if (TrueValue != FalseValue)
1334 NewRetVal = new SelectInst(BrCond, TrueValue,
1335 FalseValue, "retval", BI);
1336 else
1337 NewRetVal = TrueValue;
1338
1339 DEBUG(std::cerr << "\nCHANGING BRANCH TO TWO RETURNS INTO SELECT:"
1340 << "\n " << *BI << "Select = " << *NewRetVal
1341 << "TRUEBLOCK: " << *TrueSucc << "FALSEBLOCK: "<< *FalseSucc);
Chris Lattner879ce782004-09-29 05:43:32 +00001342
Chris Lattnerb8b11592006-10-20 00:42:07 +00001343 new ReturnInst(NewRetVal, BI);
1344 BI->eraseFromParent();
1345 if (Instruction *BrCondI = dyn_cast<Instruction>(BrCond))
1346 if (isInstructionTriviallyDead(BrCondI))
1347 BrCondI->eraseFromParent();
1348 return true;
1349 }
Chris Lattner9f0db322004-04-02 18:13:43 +00001350 }
1351 }
1352 }
Chris Lattnere42732e2004-02-16 06:35:48 +00001353 }
Reid Spencerde46e482006-11-02 20:25:50 +00001354 } else if (isa<UnwindInst>(BB->begin())) {
Chris Lattner3cd98f02004-02-24 05:54:22 +00001355 // Check to see if the first instruction in this block is just an unwind.
1356 // If so, replace any invoke instructions which use this as an exception
Chris Lattner5823ac12004-07-20 01:17:38 +00001357 // destination with call instructions, and any unconditional branch
1358 // predecessor with an unwind.
Chris Lattner3cd98f02004-02-24 05:54:22 +00001359 //
1360 std::vector<BasicBlock*> Preds(pred_begin(BB), pred_end(BB));
1361 while (!Preds.empty()) {
1362 BasicBlock *Pred = Preds.back();
Chris Lattner5823ac12004-07-20 01:17:38 +00001363 if (BranchInst *BI = dyn_cast<BranchInst>(Pred->getTerminator())) {
1364 if (BI->isUnconditional()) {
1365 Pred->getInstList().pop_back(); // nuke uncond branch
1366 new UnwindInst(Pred); // Use unwind.
1367 Changed = true;
1368 }
1369 } else if (InvokeInst *II = dyn_cast<InvokeInst>(Pred->getTerminator()))
Chris Lattner3cd98f02004-02-24 05:54:22 +00001370 if (II->getUnwindDest() == BB) {
1371 // Insert a new branch instruction before the invoke, because this
1372 // is now a fall through...
1373 BranchInst *BI = new BranchInst(II->getNormalDest(), II);
1374 Pred->getInstList().remove(II); // Take out of symbol table
Misha Brukmanb1c93172005-04-21 23:48:37 +00001375
Chris Lattner3cd98f02004-02-24 05:54:22 +00001376 // Insert the call now...
1377 std::vector<Value*> Args(II->op_begin()+3, II->op_end());
1378 CallInst *CI = new CallInst(II->getCalledValue(), Args,
1379 II->getName(), BI);
Chris Lattnerbcefcf82005-05-14 12:21:56 +00001380 CI->setCallingConv(II->getCallingConv());
Chris Lattner3cd98f02004-02-24 05:54:22 +00001381 // If the invoke produced a value, the Call now does instead
1382 II->replaceAllUsesWith(CI);
1383 delete II;
1384 Changed = true;
1385 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001386
Chris Lattner3cd98f02004-02-24 05:54:22 +00001387 Preds.pop_back();
1388 }
Chris Lattner90ea78e2004-02-24 16:09:21 +00001389
1390 // If this block is now dead, remove it.
1391 if (pred_begin(BB) == pred_end(BB)) {
1392 // We know there are no successors, so just nuke the block.
1393 M->getBasicBlockList().erase(BB);
1394 return true;
1395 }
1396
Chris Lattner1cca9592005-02-24 06:17:52 +00001397 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(BB->getTerminator())) {
1398 if (isValueEqualityComparison(SI)) {
1399 // If we only have one predecessor, and if it is a branch on this value,
1400 // see if that predecessor totally determines the outcome of this switch.
1401 if (BasicBlock *OnlyPred = BB->getSinglePredecessor())
1402 if (SimplifyEqualityComparisonWithOnlyPredecessor(SI, OnlyPred))
1403 return SimplifyCFG(BB) || 1;
1404
1405 // If the block only contains the switch, see if we can fold the block
1406 // away into any preds.
1407 if (SI == &BB->front())
1408 if (FoldValueComparisonIntoPredecessors(SI))
1409 return SimplifyCFG(BB) || 1;
1410 }
Chris Lattnerd3e6ae22004-02-28 21:28:10 +00001411 } else if (BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator())) {
Chris Lattner733d6702005-08-03 00:11:16 +00001412 if (BI->isUnconditional()) {
1413 BasicBlock::iterator BBI = BB->begin(); // Skip over phi nodes...
1414 while (isa<PHINode>(*BBI)) ++BBI;
1415
1416 BasicBlock *Succ = BI->getSuccessor(0);
1417 if (BBI->isTerminator() && // Terminator is the only non-phi instruction!
1418 Succ != BB) // Don't hurt infinite loops!
1419 if (TryToSimplifyUncondBranchFromEmptyBlock(BB, Succ))
1420 return 1;
1421
1422 } else { // Conditional branch
Reid Spencerde46e482006-11-02 20:25:50 +00001423 if (isValueEqualityComparison(BI)) {
Chris Lattner1cca9592005-02-24 06:17:52 +00001424 // If we only have one predecessor, and if it is a branch on this value,
1425 // see if that predecessor totally determines the outcome of this
1426 // switch.
1427 if (BasicBlock *OnlyPred = BB->getSinglePredecessor())
1428 if (SimplifyEqualityComparisonWithOnlyPredecessor(BI, OnlyPred))
1429 return SimplifyCFG(BB) || 1;
1430
Chris Lattner2e93c422004-05-01 23:35:43 +00001431 // This block must be empty, except for the setcond inst, if it exists.
1432 BasicBlock::iterator I = BB->begin();
1433 if (&*I == BI ||
1434 (&*I == cast<Instruction>(BI->getCondition()) &&
1435 &*++I == BI))
1436 if (FoldValueComparisonIntoPredecessors(BI))
1437 return SimplifyCFG(BB) | true;
1438 }
Chris Lattner748f9032005-09-19 23:49:37 +00001439
1440 // If this is a branch on a phi node in the current block, thread control
1441 // through this block if any PHI node entries are constants.
1442 if (PHINode *PN = dyn_cast<PHINode>(BI->getCondition()))
1443 if (PN->getParent() == BI->getParent())
1444 if (FoldCondBranchOnPHI(BI))
1445 return SimplifyCFG(BB) | true;
Chris Lattner2e93c422004-05-01 23:35:43 +00001446
1447 // If this basic block is ONLY a setcc and a branch, and if a predecessor
1448 // branches to us and one of our successors, fold the setcc into the
1449 // predecessor and use logical operations to pick the right destination.
Chris Lattner51a6dbc2004-05-02 05:02:03 +00001450 BasicBlock *TrueDest = BI->getSuccessor(0);
1451 BasicBlock *FalseDest = BI->getSuccessor(1);
Chris Lattnerbe6f0682004-05-02 05:19:36 +00001452 if (BinaryOperator *Cond = dyn_cast<BinaryOperator>(BI->getCondition()))
Chris Lattner2e93c422004-05-01 23:35:43 +00001453 if (Cond->getParent() == BB && &BB->front() == Cond &&
Chris Lattner51a6dbc2004-05-02 05:02:03 +00001454 Cond->getNext() == BI && Cond->hasOneUse() &&
1455 TrueDest != BB && FalseDest != BB)
Chris Lattner2e93c422004-05-01 23:35:43 +00001456 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI!=E; ++PI)
1457 if (BranchInst *PBI = dyn_cast<BranchInst>((*PI)->getTerminator()))
Chris Lattner1e94ed62004-05-02 01:00:44 +00001458 if (PBI->isConditional() && SafeToMergeTerminators(BI, PBI)) {
Chris Lattnerf12c4a32004-06-21 07:19:01 +00001459 BasicBlock *PredBlock = *PI;
Chris Lattner2e93c422004-05-01 23:35:43 +00001460 if (PBI->getSuccessor(0) == FalseDest ||
1461 PBI->getSuccessor(1) == TrueDest) {
1462 // Invert the predecessors condition test (xor it with true),
1463 // which allows us to write this code once.
1464 Value *NewCond =
1465 BinaryOperator::createNot(PBI->getCondition(),
1466 PBI->getCondition()->getName()+".not", PBI);
1467 PBI->setCondition(NewCond);
1468 BasicBlock *OldTrue = PBI->getSuccessor(0);
1469 BasicBlock *OldFalse = PBI->getSuccessor(1);
1470 PBI->setSuccessor(0, OldFalse);
1471 PBI->setSuccessor(1, OldTrue);
1472 }
1473
Chris Lattnerd9566512006-02-18 00:33:17 +00001474 if ((PBI->getSuccessor(0) == TrueDest && FalseDest != BB) ||
1475 (PBI->getSuccessor(1) == FalseDest && TrueDest != BB)) {
Chris Lattnerf12c4a32004-06-21 07:19:01 +00001476 // Clone Cond into the predecessor basic block, and or/and the
Chris Lattner2e93c422004-05-01 23:35:43 +00001477 // two conditions together.
1478 Instruction *New = Cond->clone();
1479 New->setName(Cond->getName());
1480 Cond->setName(Cond->getName()+".old");
Chris Lattnerf12c4a32004-06-21 07:19:01 +00001481 PredBlock->getInstList().insert(PBI, New);
Chris Lattner2e93c422004-05-01 23:35:43 +00001482 Instruction::BinaryOps Opcode =
1483 PBI->getSuccessor(0) == TrueDest ?
1484 Instruction::Or : Instruction::And;
Misha Brukmanb1c93172005-04-21 23:48:37 +00001485 Value *NewCond =
Chris Lattner2e93c422004-05-01 23:35:43 +00001486 BinaryOperator::create(Opcode, PBI->getCondition(),
1487 New, "bothcond", PBI);
1488 PBI->setCondition(NewCond);
1489 if (PBI->getSuccessor(0) == BB) {
Chris Lattnerf12c4a32004-06-21 07:19:01 +00001490 AddPredecessorToBlock(TrueDest, PredBlock, BB);
Chris Lattner2e93c422004-05-01 23:35:43 +00001491 PBI->setSuccessor(0, TrueDest);
1492 }
1493 if (PBI->getSuccessor(1) == BB) {
Chris Lattnerf12c4a32004-06-21 07:19:01 +00001494 AddPredecessorToBlock(FalseDest, PredBlock, BB);
Chris Lattner2e93c422004-05-01 23:35:43 +00001495 PBI->setSuccessor(1, FalseDest);
1496 }
1497 return SimplifyCFG(BB) | 1;
1498 }
1499 }
Chris Lattner2e93c422004-05-01 23:35:43 +00001500
Chris Lattnerc59a3712005-09-23 18:47:20 +00001501 // Scan predessor blocks for conditional branchs.
Chris Lattnerf0bd8d02005-09-20 00:43:16 +00001502 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI)
1503 if (BranchInst *PBI = dyn_cast<BranchInst>((*PI)->getTerminator()))
Chris Lattnerc59a3712005-09-23 18:47:20 +00001504 if (PBI != BI && PBI->isConditional()) {
1505
1506 // If this block ends with a branch instruction, and if there is a
1507 // predecessor that ends on a branch of the same condition, make this
1508 // conditional branch redundant.
1509 if (PBI->getCondition() == BI->getCondition() &&
1510 PBI->getSuccessor(0) != PBI->getSuccessor(1)) {
1511 // Okay, the outcome of this conditional branch is statically
1512 // knowable. If this block had a single pred, handle specially.
1513 if (BB->getSinglePredecessor()) {
1514 // Turn this into a branch on constant.
1515 bool CondIsTrue = PBI->getSuccessor(0) == BB;
1516 BI->setCondition(ConstantBool::get(CondIsTrue));
1517 return SimplifyCFG(BB); // Nuke the branch on constant.
1518 }
1519
1520 // Otherwise, if there are multiple predecessors, insert a PHI that
1521 // merges in the constant and simplify the block result.
1522 if (BlockIsSimpleEnoughToThreadThrough(BB)) {
1523 PHINode *NewPN = new PHINode(Type::BoolTy,
1524 BI->getCondition()->getName()+".pr",
1525 BB->begin());
1526 for (PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI)
1527 if ((PBI = dyn_cast<BranchInst>((*PI)->getTerminator())) &&
1528 PBI != BI && PBI->isConditional() &&
1529 PBI->getCondition() == BI->getCondition() &&
1530 PBI->getSuccessor(0) != PBI->getSuccessor(1)) {
1531 bool CondIsTrue = PBI->getSuccessor(0) == BB;
1532 NewPN->addIncoming(ConstantBool::get(CondIsTrue), *PI);
1533 } else {
1534 NewPN->addIncoming(BI->getCondition(), *PI);
1535 }
1536
1537 BI->setCondition(NewPN);
1538 // This will thread the branch.
1539 return SimplifyCFG(BB) | true;
1540 }
Chris Lattnerf0bd8d02005-09-20 00:43:16 +00001541 }
1542
Chris Lattnerc59a3712005-09-23 18:47:20 +00001543 // If this is a conditional branch in an empty block, and if any
1544 // predecessors is a conditional branch to one of our destinations,
1545 // fold the conditions into logical ops and one cond br.
1546 if (&BB->front() == BI) {
1547 int PBIOp, BIOp;
1548 if (PBI->getSuccessor(0) == BI->getSuccessor(0)) {
1549 PBIOp = BIOp = 0;
1550 } else if (PBI->getSuccessor(0) == BI->getSuccessor(1)) {
1551 PBIOp = 0; BIOp = 1;
1552 } else if (PBI->getSuccessor(1) == BI->getSuccessor(0)) {
1553 PBIOp = 1; BIOp = 0;
1554 } else if (PBI->getSuccessor(1) == BI->getSuccessor(1)) {
1555 PBIOp = BIOp = 1;
1556 } else {
1557 PBIOp = BIOp = -1;
1558 }
Chris Lattnerf0bd8d02005-09-20 00:43:16 +00001559
Chris Lattnerd9566512006-02-18 00:33:17 +00001560 // Check to make sure that the other destination of this branch
1561 // isn't BB itself. If so, this is an infinite loop that will
1562 // keep getting unwound.
1563 if (PBIOp != -1 && PBI->getSuccessor(PBIOp) == BB)
1564 PBIOp = BIOp = -1;
Chris Lattner95adf8f12006-11-18 19:19:36 +00001565
1566 // Do not perform this transformation if it would require
1567 // insertion of a large number of select instructions. For targets
1568 // without predication/cmovs, this is a big pessimization.
1569 if (PBIOp != -1) {
1570 BasicBlock *CommonDest = PBI->getSuccessor(PBIOp);
1571
1572 unsigned NumPhis = 0;
1573 for (BasicBlock::iterator II = CommonDest->begin();
1574 isa<PHINode>(II); ++II, ++NumPhis) {
1575 if (NumPhis > 2) {
1576 // Disable this xform.
1577 PBIOp = -1;
1578 break;
1579 }
1580 }
1581 }
Chris Lattnerb5c9d7a2006-06-12 20:18:01 +00001582
Chris Lattnerc59a3712005-09-23 18:47:20 +00001583 // Finally, if everything is ok, fold the branches to logical ops.
1584 if (PBIOp != -1) {
1585 BasicBlock *CommonDest = PBI->getSuccessor(PBIOp);
1586 BasicBlock *OtherDest = BI->getSuccessor(BIOp ^ 1);
1587
Chris Lattnerb5c9d7a2006-06-12 20:18:01 +00001588 // If OtherDest *is* BB, then this is a basic block with just
1589 // a conditional branch in it, where one edge (OtherDesg) goes
1590 // back to the block. We know that the program doesn't get
1591 // stuck in the infinite loop, so the condition must be such
1592 // that OtherDest isn't branched through. Forward to CommonDest,
1593 // and avoid an infinite loop at optimizer time.
1594 if (OtherDest == BB)
1595 OtherDest = CommonDest;
1596
Chris Lattnerc59a3712005-09-23 18:47:20 +00001597 DEBUG(std::cerr << "FOLDING BRs:" << *PBI->getParent()
1598 << "AND: " << *BI->getParent());
1599
1600 // BI may have other predecessors. Because of this, we leave
1601 // it alone, but modify PBI.
1602
1603 // Make sure we get to CommonDest on True&True directions.
1604 Value *PBICond = PBI->getCondition();
1605 if (PBIOp)
1606 PBICond = BinaryOperator::createNot(PBICond,
1607 PBICond->getName()+".not",
1608 PBI);
1609 Value *BICond = BI->getCondition();
1610 if (BIOp)
1611 BICond = BinaryOperator::createNot(BICond,
1612 BICond->getName()+".not",
1613 PBI);
1614 // Merge the conditions.
1615 Value *Cond =
1616 BinaryOperator::createOr(PBICond, BICond, "brmerge", PBI);
1617
1618 // Modify PBI to branch on the new condition to the new dests.
1619 PBI->setCondition(Cond);
1620 PBI->setSuccessor(0, CommonDest);
1621 PBI->setSuccessor(1, OtherDest);
1622
1623 // OtherDest may have phi nodes. If so, add an entry from PBI's
1624 // block that are identical to the entries for BI's block.
1625 PHINode *PN;
1626 for (BasicBlock::iterator II = OtherDest->begin();
1627 (PN = dyn_cast<PHINode>(II)); ++II) {
1628 Value *V = PN->getIncomingValueForBlock(BB);
1629 PN->addIncoming(V, PBI->getParent());
1630 }
1631
1632 // We know that the CommonDest already had an edge from PBI to
1633 // it. If it has PHIs though, the PHIs may have different
1634 // entries for BB and PBI's BB. If so, insert a select to make
1635 // them agree.
1636 for (BasicBlock::iterator II = CommonDest->begin();
1637 (PN = dyn_cast<PHINode>(II)); ++II) {
1638 Value * BIV = PN->getIncomingValueForBlock(BB);
1639 unsigned PBBIdx = PN->getBasicBlockIndex(PBI->getParent());
1640 Value *PBIV = PN->getIncomingValue(PBBIdx);
1641 if (BIV != PBIV) {
1642 // Insert a select in PBI to pick the right value.
1643 Value *NV = new SelectInst(PBICond, PBIV, BIV,
1644 PBIV->getName()+".mux", PBI);
1645 PN->setIncomingValue(PBBIdx, NV);
1646 }
1647 }
1648
1649 DEBUG(std::cerr << "INTO: " << *PBI->getParent());
1650
1651 // This basic block is probably dead. We know it has at least
1652 // one fewer predecessor.
1653 return SimplifyCFG(BB) | true;
1654 }
Chris Lattnerf0bd8d02005-09-20 00:43:16 +00001655 }
Chris Lattner88da6f72004-05-01 22:36:37 +00001656 }
Chris Lattnera2ab4892004-02-24 07:23:58 +00001657 }
Chris Lattner5edb2f32004-10-18 04:07:22 +00001658 } else if (isa<UnreachableInst>(BB->getTerminator())) {
1659 // If there are any instructions immediately before the unreachable that can
1660 // be removed, do so.
1661 Instruction *Unreachable = BB->getTerminator();
1662 while (Unreachable != BB->begin()) {
1663 BasicBlock::iterator BBI = Unreachable;
1664 --BBI;
1665 if (isa<CallInst>(BBI)) break;
1666 // Delete this instruction
1667 BB->getInstList().erase(BBI);
1668 Changed = true;
1669 }
1670
1671 // If the unreachable instruction is the first in the block, take a gander
1672 // at all of the predecessors of this instruction, and simplify them.
1673 if (&BB->front() == Unreachable) {
1674 std::vector<BasicBlock*> Preds(pred_begin(BB), pred_end(BB));
1675 for (unsigned i = 0, e = Preds.size(); i != e; ++i) {
1676 TerminatorInst *TI = Preds[i]->getTerminator();
1677
1678 if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
1679 if (BI->isUnconditional()) {
1680 if (BI->getSuccessor(0) == BB) {
1681 new UnreachableInst(TI);
1682 TI->eraseFromParent();
1683 Changed = true;
1684 }
1685 } else {
1686 if (BI->getSuccessor(0) == BB) {
1687 new BranchInst(BI->getSuccessor(1), BI);
1688 BI->eraseFromParent();
1689 } else if (BI->getSuccessor(1) == BB) {
1690 new BranchInst(BI->getSuccessor(0), BI);
1691 BI->eraseFromParent();
1692 Changed = true;
1693 }
1694 }
1695 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
1696 for (unsigned i = 1, e = SI->getNumCases(); i != e; ++i)
1697 if (SI->getSuccessor(i) == BB) {
Chris Lattner19f9f322005-05-20 22:19:54 +00001698 BB->removePredecessor(SI->getParent());
Chris Lattner5edb2f32004-10-18 04:07:22 +00001699 SI->removeCase(i);
1700 --i; --e;
1701 Changed = true;
1702 }
1703 // If the default value is unreachable, figure out the most popular
1704 // destination and make it the default.
1705 if (SI->getSuccessor(0) == BB) {
1706 std::map<BasicBlock*, unsigned> Popularity;
1707 for (unsigned i = 1, e = SI->getNumCases(); i != e; ++i)
1708 Popularity[SI->getSuccessor(i)]++;
1709
1710 // Find the most popular block.
1711 unsigned MaxPop = 0;
1712 BasicBlock *MaxBlock = 0;
1713 for (std::map<BasicBlock*, unsigned>::iterator
1714 I = Popularity.begin(), E = Popularity.end(); I != E; ++I) {
1715 if (I->second > MaxPop) {
1716 MaxPop = I->second;
1717 MaxBlock = I->first;
1718 }
1719 }
1720 if (MaxBlock) {
1721 // Make this the new default, allowing us to delete any explicit
1722 // edges to it.
1723 SI->setSuccessor(0, MaxBlock);
1724 Changed = true;
1725
Chris Lattner19f9f322005-05-20 22:19:54 +00001726 // If MaxBlock has phinodes in it, remove MaxPop-1 entries from
1727 // it.
1728 if (isa<PHINode>(MaxBlock->begin()))
1729 for (unsigned i = 0; i != MaxPop-1; ++i)
1730 MaxBlock->removePredecessor(SI->getParent());
1731
Chris Lattner5edb2f32004-10-18 04:07:22 +00001732 for (unsigned i = 1, e = SI->getNumCases(); i != e; ++i)
1733 if (SI->getSuccessor(i) == MaxBlock) {
1734 SI->removeCase(i);
1735 --i; --e;
1736 }
1737 }
1738 }
1739 } else if (InvokeInst *II = dyn_cast<InvokeInst>(TI)) {
1740 if (II->getUnwindDest() == BB) {
1741 // Convert the invoke to a call instruction. This would be a good
1742 // place to note that the call does not throw though.
1743 BranchInst *BI = new BranchInst(II->getNormalDest(), II);
1744 II->removeFromParent(); // Take out of symbol table
Misha Brukmanb1c93172005-04-21 23:48:37 +00001745
Chris Lattner5edb2f32004-10-18 04:07:22 +00001746 // Insert the call now...
1747 std::vector<Value*> Args(II->op_begin()+3, II->op_end());
1748 CallInst *CI = new CallInst(II->getCalledValue(), Args,
1749 II->getName(), BI);
Chris Lattnerbcefcf82005-05-14 12:21:56 +00001750 CI->setCallingConv(II->getCallingConv());
Chris Lattner5edb2f32004-10-18 04:07:22 +00001751 // If the invoke produced a value, the Call does now instead.
1752 II->replaceAllUsesWith(CI);
1753 delete II;
1754 Changed = true;
1755 }
1756 }
1757 }
1758
1759 // If this block is now dead, remove it.
1760 if (pred_begin(BB) == pred_end(BB)) {
1761 // We know there are no successors, so just nuke the block.
1762 M->getBasicBlockList().erase(BB);
1763 return true;
1764 }
1765 }
Chris Lattnere42732e2004-02-16 06:35:48 +00001766 }
1767
Chris Lattner466a0492002-05-21 20:50:24 +00001768 // Merge basic blocks into their predecessor if there is only one distinct
1769 // pred, and if there is only one distinct successor of the predecessor, and
1770 // if there are no PHI nodes.
1771 //
Chris Lattner838b8452004-02-11 01:17:07 +00001772 pred_iterator PI(pred_begin(BB)), PE(pred_end(BB));
1773 BasicBlock *OnlyPred = *PI++;
1774 for (; PI != PE; ++PI) // Search all predecessors, see if they are all same
1775 if (*PI != OnlyPred) {
1776 OnlyPred = 0; // There are multiple different predecessors...
1777 break;
1778 }
Chris Lattner88da6f72004-05-01 22:36:37 +00001779
Chris Lattner838b8452004-02-11 01:17:07 +00001780 BasicBlock *OnlySucc = 0;
1781 if (OnlyPred && OnlyPred != BB && // Don't break self loops
1782 OnlyPred->getTerminator()->getOpcode() != Instruction::Invoke) {
1783 // Check to see if there is only one distinct successor...
1784 succ_iterator SI(succ_begin(OnlyPred)), SE(succ_end(OnlyPred));
1785 OnlySucc = BB;
1786 for (; SI != SE; ++SI)
1787 if (*SI != OnlySucc) {
1788 OnlySucc = 0; // There are multiple distinct successors!
Chris Lattner466a0492002-05-21 20:50:24 +00001789 break;
1790 }
Chris Lattner838b8452004-02-11 01:17:07 +00001791 }
1792
1793 if (OnlySucc) {
Chris Lattner32c518e2004-07-15 02:06:12 +00001794 DEBUG(std::cerr << "Merging: " << *BB << "into: " << *OnlyPred);
Chris Lattner838b8452004-02-11 01:17:07 +00001795
1796 // Resolve any PHI nodes at the start of the block. They are all
1797 // guaranteed to have exactly one entry if they exist, unless there are
1798 // multiple duplicate (but guaranteed to be equal) entries for the
1799 // incoming edges. This occurs when there are multiple edges from
1800 // OnlyPred to OnlySucc.
1801 //
1802 while (PHINode *PN = dyn_cast<PHINode>(&BB->front())) {
1803 PN->replaceAllUsesWith(PN->getIncomingValue(0));
1804 BB->getInstList().pop_front(); // Delete the phi node...
Chris Lattner466a0492002-05-21 20:50:24 +00001805 }
1806
Chris Lattner838b8452004-02-11 01:17:07 +00001807 // Delete the unconditional branch from the predecessor...
1808 OnlyPred->getInstList().pop_back();
Misha Brukmanb1c93172005-04-21 23:48:37 +00001809
Chris Lattner838b8452004-02-11 01:17:07 +00001810 // Move all definitions in the successor to the predecessor...
1811 OnlyPred->getInstList().splice(OnlyPred->end(), BB->getInstList());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001812
Chris Lattner838b8452004-02-11 01:17:07 +00001813 // Make all PHI nodes that referred to BB now refer to Pred as their
1814 // source...
1815 BB->replaceAllUsesWith(OnlyPred);
Chris Lattnerfda72b12002-06-25 16:12:52 +00001816
Chris Lattner838b8452004-02-11 01:17:07 +00001817 std::string OldName = BB->getName();
Chris Lattnerfda72b12002-06-25 16:12:52 +00001818
Misha Brukmanb1c93172005-04-21 23:48:37 +00001819 // Erase basic block from the function...
Chris Lattner838b8452004-02-11 01:17:07 +00001820 M->getBasicBlockList().erase(BB);
Chris Lattnerfda72b12002-06-25 16:12:52 +00001821
Chris Lattner838b8452004-02-11 01:17:07 +00001822 // Inherit predecessors name if it exists...
1823 if (!OldName.empty() && !OnlyPred->hasName())
1824 OnlyPred->setName(OldName);
Misha Brukmanb1c93172005-04-21 23:48:37 +00001825
Chris Lattner838b8452004-02-11 01:17:07 +00001826 return true;
Chris Lattner466a0492002-05-21 20:50:24 +00001827 }
Chris Lattner18d1f192004-02-11 03:36:04 +00001828
Chris Lattner389cfac2004-11-30 00:29:14 +00001829 // Otherwise, if this block only has a single predecessor, and if that block
1830 // is a conditional branch, see if we can hoist any code from this block up
1831 // into our predecessor.
1832 if (OnlyPred)
Chris Lattner4fc998d2004-12-10 17:42:31 +00001833 if (BranchInst *BI = dyn_cast<BranchInst>(OnlyPred->getTerminator()))
1834 if (BI->isConditional()) {
1835 // Get the other block.
1836 BasicBlock *OtherBB = BI->getSuccessor(BI->getSuccessor(0) == BB);
1837 PI = pred_begin(OtherBB);
1838 ++PI;
1839 if (PI == pred_end(OtherBB)) {
1840 // We have a conditional branch to two blocks that are only reachable
1841 // from the condbr. We know that the condbr dominates the two blocks,
1842 // so see if there is any identical code in the "then" and "else"
1843 // blocks. If so, we can hoist it up to the branching block.
1844 Changed |= HoistThenElseCodeToIf(BI);
1845 }
Chris Lattner389cfac2004-11-30 00:29:14 +00001846 }
Chris Lattner389cfac2004-11-30 00:29:14 +00001847
Chris Lattner6f4b45a2004-02-24 05:38:11 +00001848 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI)
1849 if (BranchInst *BI = dyn_cast<BranchInst>((*PI)->getTerminator()))
1850 // Change br (X == 0 | X == 1), T, F into a switch instruction.
1851 if (BI->isConditional() && isa<Instruction>(BI->getCondition())) {
1852 Instruction *Cond = cast<Instruction>(BI->getCondition());
1853 // If this is a bunch of seteq's or'd together, or if it's a bunch of
1854 // 'setne's and'ed together, collect them.
1855 Value *CompVal = 0;
Chris Lattnerb2b151d2004-06-19 07:02:14 +00001856 std::vector<ConstantInt*> Values;
Chris Lattner6f4b45a2004-02-24 05:38:11 +00001857 bool TrueWhenEqual = GatherValueComparisons(Cond, CompVal, Values);
1858 if (CompVal && CompVal->getType()->isInteger()) {
1859 // There might be duplicate constants in the list, which the switch
1860 // instruction can't handle, remove them now.
Chris Lattnerb2b151d2004-06-19 07:02:14 +00001861 std::sort(Values.begin(), Values.end(), ConstantIntOrdering());
Chris Lattner6f4b45a2004-02-24 05:38:11 +00001862 Values.erase(std::unique(Values.begin(), Values.end()), Values.end());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001863
Chris Lattner6f4b45a2004-02-24 05:38:11 +00001864 // Figure out which block is which destination.
1865 BasicBlock *DefaultBB = BI->getSuccessor(1);
1866 BasicBlock *EdgeBB = BI->getSuccessor(0);
1867 if (!TrueWhenEqual) std::swap(DefaultBB, EdgeBB);
Misha Brukmanb1c93172005-04-21 23:48:37 +00001868
Chris Lattner6f4b45a2004-02-24 05:38:11 +00001869 // Create the new switch instruction now.
Chris Lattnera35dfce2005-01-29 00:38:26 +00001870 SwitchInst *New = new SwitchInst(CompVal, DefaultBB,Values.size(),BI);
Misha Brukmanb1c93172005-04-21 23:48:37 +00001871
Chris Lattner6f4b45a2004-02-24 05:38:11 +00001872 // Add all of the 'cases' to the switch instruction.
1873 for (unsigned i = 0, e = Values.size(); i != e; ++i)
1874 New->addCase(Values[i], EdgeBB);
Misha Brukmanb1c93172005-04-21 23:48:37 +00001875
Chris Lattner6f4b45a2004-02-24 05:38:11 +00001876 // We added edges from PI to the EdgeBB. As such, if there were any
1877 // PHI nodes in EdgeBB, they need entries to be added corresponding to
1878 // the number of edges added.
1879 for (BasicBlock::iterator BBI = EdgeBB->begin();
Reid Spencer66149462004-09-15 17:06:42 +00001880 isa<PHINode>(BBI); ++BBI) {
1881 PHINode *PN = cast<PHINode>(BBI);
Chris Lattner6f4b45a2004-02-24 05:38:11 +00001882 Value *InVal = PN->getIncomingValueForBlock(*PI);
1883 for (unsigned i = 0, e = Values.size()-1; i != e; ++i)
1884 PN->addIncoming(InVal, *PI);
1885 }
1886
1887 // Erase the old branch instruction.
1888 (*PI)->getInstList().erase(BI);
1889
1890 // Erase the potentially condition tree that was used to computed the
1891 // branch condition.
1892 ErasePossiblyDeadInstructionTree(Cond);
1893 return true;
1894 }
1895 }
1896
Chris Lattner18d1f192004-02-11 03:36:04 +00001897 // If there is a trivial two-entry PHI node in this basic block, and we can
1898 // eliminate it, do so now.
1899 if (PHINode *PN = dyn_cast<PHINode>(BB->begin()))
Chris Lattnercc14ebc2005-09-23 06:39:30 +00001900 if (PN->getNumIncomingValues() == 2)
1901 Changed |= FoldTwoEntryPHINode(PN);
Misha Brukmanb1c93172005-04-21 23:48:37 +00001902
Chris Lattner031340a2003-08-17 19:41:53 +00001903 return Changed;
Chris Lattner466a0492002-05-21 20:50:24 +00001904}