Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 1 | //===- SimplifyCFG.cpp - Code to perform CFG simplification ---------------===// |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 7 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 9 | // |
Chris Lattner | bb190ac | 2002-10-08 21:36:33 +0000 | [diff] [blame] | 10 | // Peephole optimize the CFG. |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Chris Lattner | 218a822 | 2004-06-20 01:13:18 +0000 | [diff] [blame] | 14 | #define DEBUG_TYPE "simplifycfg" |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 15 | #include "llvm/Transforms/Utils/Local.h" |
Chris Lattner | 723c66d | 2004-02-11 03:36:04 +0000 | [diff] [blame] | 16 | #include "llvm/Constants.h" |
| 17 | #include "llvm/Instructions.h" |
Devang Patel | 383d7ed | 2009-02-03 22:12:02 +0000 | [diff] [blame] | 18 | #include "llvm/IntrinsicInst.h" |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 19 | #include "llvm/Type.h" |
Reid Spencer | c103057 | 2007-01-19 21:13:56 +0000 | [diff] [blame] | 20 | #include "llvm/DerivedTypes.h" |
Dale Johannesen | f8bc300 | 2009-05-13 18:25:07 +0000 | [diff] [blame] | 21 | #include "llvm/GlobalVariable.h" |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 22 | #include "llvm/Support/CFG.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 23 | #include "llvm/Support/Debug.h" |
Daniel Dunbar | ce63ffb | 2009-07-25 00:23:56 +0000 | [diff] [blame] | 24 | #include "llvm/Support/raw_ostream.h" |
Chris Lattner | 79066fa | 2007-01-30 23:46:24 +0000 | [diff] [blame] | 25 | #include "llvm/Analysis/ConstantFolding.h" |
Jakob Stoklund Olesen | 58e9ee8 | 2010-02-05 22:03:18 +0000 | [diff] [blame] | 26 | #include "llvm/Target/TargetData.h" |
Chris Lattner | eaba3a1 | 2005-09-19 23:49:37 +0000 | [diff] [blame] | 27 | #include "llvm/Transforms/Utils/BasicBlockUtils.h" |
Dan Gohman | 2c63566 | 2009-10-30 22:39:04 +0000 | [diff] [blame] | 28 | #include "llvm/ADT/DenseMap.h" |
Chris Lattner | 93e985f | 2007-02-13 02:10:56 +0000 | [diff] [blame] | 29 | #include "llvm/ADT/SmallVector.h" |
Chris Lattner | c995123 | 2007-04-02 01:44:59 +0000 | [diff] [blame] | 30 | #include "llvm/ADT/SmallPtrSet.h" |
Evan Cheng | 502a4f5 | 2008-06-12 21:15:59 +0000 | [diff] [blame] | 31 | #include "llvm/ADT/Statistic.h" |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 32 | #include <algorithm> |
| 33 | #include <functional> |
Chris Lattner | d52c261 | 2004-02-24 07:23:58 +0000 | [diff] [blame] | 34 | #include <set> |
Chris Lattner | 698f96f | 2004-10-18 04:07:22 +0000 | [diff] [blame] | 35 | #include <map> |
Chris Lattner | f7703df | 2004-01-09 06:12:26 +0000 | [diff] [blame] | 36 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 37 | |
Evan Cheng | 502a4f5 | 2008-06-12 21:15:59 +0000 | [diff] [blame] | 38 | STATISTIC(NumSpeculations, "Number of speculative executed instructions"); |
| 39 | |
Jakob Stoklund Olesen | 58e9ee8 | 2010-02-05 22:03:18 +0000 | [diff] [blame] | 40 | namespace { |
| 41 | class SimplifyCFGOpt { |
| 42 | const TargetData *const TD; |
| 43 | |
| 44 | ConstantInt *GetConstantInt(Value *V); |
| 45 | Value *GatherConstantSetEQs(Value *V, std::vector<ConstantInt*> &Values); |
| 46 | Value *GatherConstantSetNEs(Value *V, std::vector<ConstantInt*> &Values); |
| 47 | bool GatherValueComparisons(Instruction *Cond, Value *&CompVal, |
| 48 | std::vector<ConstantInt*> &Values); |
| 49 | Value *isValueEqualityComparison(TerminatorInst *TI); |
| 50 | BasicBlock *GetValueEqualityComparisonCases(TerminatorInst *TI, |
| 51 | std::vector<std::pair<ConstantInt*, BasicBlock*> > &Cases); |
| 52 | bool SimplifyEqualityComparisonWithOnlyPredecessor(TerminatorInst *TI, |
| 53 | BasicBlock *Pred); |
| 54 | bool FoldValueComparisonIntoPredecessors(TerminatorInst *TI); |
| 55 | |
| 56 | public: |
| 57 | explicit SimplifyCFGOpt(const TargetData *td) : TD(td) {} |
| 58 | bool run(BasicBlock *BB); |
| 59 | }; |
| 60 | } |
| 61 | |
Chris Lattner | 2bdcb56 | 2005-08-03 00:19:45 +0000 | [diff] [blame] | 62 | /// SafeToMergeTerminators - Return true if it is safe to merge these two |
| 63 | /// terminator instructions together. |
| 64 | /// |
| 65 | static bool SafeToMergeTerminators(TerminatorInst *SI1, TerminatorInst *SI2) { |
| 66 | if (SI1 == SI2) return false; // Can't merge with self! |
| 67 | |
| 68 | // It is not safe to merge these two switch instructions if they have a common |
| 69 | // successor, and if that successor has a PHI node, and if *that* PHI node has |
| 70 | // conflicting incoming values from the two switch blocks. |
| 71 | BasicBlock *SI1BB = SI1->getParent(); |
| 72 | BasicBlock *SI2BB = SI2->getParent(); |
Chris Lattner | c995123 | 2007-04-02 01:44:59 +0000 | [diff] [blame] | 73 | SmallPtrSet<BasicBlock*, 16> SI1Succs(succ_begin(SI1BB), succ_end(SI1BB)); |
Chris Lattner | 2bdcb56 | 2005-08-03 00:19:45 +0000 | [diff] [blame] | 74 | |
| 75 | for (succ_iterator I = succ_begin(SI2BB), E = succ_end(SI2BB); I != E; ++I) |
| 76 | if (SI1Succs.count(*I)) |
| 77 | for (BasicBlock::iterator BBI = (*I)->begin(); |
| 78 | isa<PHINode>(BBI); ++BBI) { |
| 79 | PHINode *PN = cast<PHINode>(BBI); |
| 80 | if (PN->getIncomingValueForBlock(SI1BB) != |
| 81 | PN->getIncomingValueForBlock(SI2BB)) |
| 82 | return false; |
| 83 | } |
| 84 | |
| 85 | return true; |
| 86 | } |
| 87 | |
| 88 | /// AddPredecessorToBlock - Update PHI nodes in Succ to indicate that there will |
| 89 | /// now be entries in it from the 'NewPred' block. The values that will be |
| 90 | /// flowing into the PHI nodes will be the same as those coming in from |
| 91 | /// ExistPred, an existing predecessor of Succ. |
| 92 | static void AddPredecessorToBlock(BasicBlock *Succ, BasicBlock *NewPred, |
| 93 | BasicBlock *ExistPred) { |
| 94 | assert(std::find(succ_begin(ExistPred), succ_end(ExistPred), Succ) != |
| 95 | succ_end(ExistPred) && "ExistPred is not a predecessor of Succ!"); |
| 96 | if (!isa<PHINode>(Succ->begin())) return; // Quick exit if nothing to do |
| 97 | |
Chris Lattner | 093a438 | 2008-07-13 22:23:11 +0000 | [diff] [blame] | 98 | PHINode *PN; |
| 99 | for (BasicBlock::iterator I = Succ->begin(); |
| 100 | (PN = dyn_cast<PHINode>(I)); ++I) |
| 101 | PN->addIncoming(PN->getIncomingValueForBlock(ExistPred), NewPred); |
Chris Lattner | 2bdcb56 | 2005-08-03 00:19:45 +0000 | [diff] [blame] | 102 | } |
| 103 | |
Chris Lattner | 7e66348 | 2005-08-03 00:11:16 +0000 | [diff] [blame] | 104 | |
Chris Lattner | 723c66d | 2004-02-11 03:36:04 +0000 | [diff] [blame] | 105 | /// GetIfCondition - Given a basic block (BB) with two predecessors (and |
| 106 | /// presumably PHI nodes in it), check to see if the merge at this block is due |
| 107 | /// to an "if condition". If so, return the boolean condition that determines |
| 108 | /// which entry into BB will be taken. Also, return by references the block |
| 109 | /// that will be entered from if the condition is true, and the block that will |
| 110 | /// be entered if the condition is false. |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 111 | /// |
Chris Lattner | 723c66d | 2004-02-11 03:36:04 +0000 | [diff] [blame] | 112 | /// |
| 113 | static Value *GetIfCondition(BasicBlock *BB, |
| 114 | BasicBlock *&IfTrue, BasicBlock *&IfFalse) { |
| 115 | assert(std::distance(pred_begin(BB), pred_end(BB)) == 2 && |
| 116 | "Function can only handle blocks with 2 predecessors!"); |
| 117 | BasicBlock *Pred1 = *pred_begin(BB); |
| 118 | BasicBlock *Pred2 = *++pred_begin(BB); |
| 119 | |
| 120 | // We can only handle branches. Other control flow will be lowered to |
| 121 | // branches if possible anyway. |
| 122 | if (!isa<BranchInst>(Pred1->getTerminator()) || |
| 123 | !isa<BranchInst>(Pred2->getTerminator())) |
| 124 | return 0; |
| 125 | BranchInst *Pred1Br = cast<BranchInst>(Pred1->getTerminator()); |
| 126 | BranchInst *Pred2Br = cast<BranchInst>(Pred2->getTerminator()); |
| 127 | |
| 128 | // Eliminate code duplication by ensuring that Pred1Br is conditional if |
| 129 | // either are. |
| 130 | if (Pred2Br->isConditional()) { |
| 131 | // If both branches are conditional, we don't have an "if statement". In |
| 132 | // reality, we could transform this case, but since the condition will be |
| 133 | // required anyway, we stand no chance of eliminating it, so the xform is |
| 134 | // probably not profitable. |
| 135 | if (Pred1Br->isConditional()) |
| 136 | return 0; |
| 137 | |
| 138 | std::swap(Pred1, Pred2); |
| 139 | std::swap(Pred1Br, Pred2Br); |
| 140 | } |
| 141 | |
| 142 | if (Pred1Br->isConditional()) { |
| 143 | // If we found a conditional branch predecessor, make sure that it branches |
| 144 | // to BB and Pred2Br. If it doesn't, this isn't an "if statement". |
| 145 | if (Pred1Br->getSuccessor(0) == BB && |
| 146 | Pred1Br->getSuccessor(1) == Pred2) { |
| 147 | IfTrue = Pred1; |
| 148 | IfFalse = Pred2; |
| 149 | } else if (Pred1Br->getSuccessor(0) == Pred2 && |
| 150 | Pred1Br->getSuccessor(1) == BB) { |
| 151 | IfTrue = Pred2; |
| 152 | IfFalse = Pred1; |
| 153 | } else { |
| 154 | // We know that one arm of the conditional goes to BB, so the other must |
| 155 | // go somewhere unrelated, and this must not be an "if statement". |
| 156 | return 0; |
| 157 | } |
| 158 | |
| 159 | // The only thing we have to watch out for here is to make sure that Pred2 |
| 160 | // doesn't have incoming edges from other blocks. If it does, the condition |
| 161 | // doesn't dominate BB. |
| 162 | if (++pred_begin(Pred2) != pred_end(Pred2)) |
| 163 | return 0; |
| 164 | |
| 165 | return Pred1Br->getCondition(); |
| 166 | } |
| 167 | |
| 168 | // Ok, if we got here, both predecessors end with an unconditional branch to |
| 169 | // BB. Don't panic! If both blocks only have a single (identical) |
| 170 | // predecessor, and THAT is a conditional branch, then we're all ok! |
| 171 | if (pred_begin(Pred1) == pred_end(Pred1) || |
| 172 | ++pred_begin(Pred1) != pred_end(Pred1) || |
| 173 | pred_begin(Pred2) == pred_end(Pred2) || |
| 174 | ++pred_begin(Pred2) != pred_end(Pred2) || |
| 175 | *pred_begin(Pred1) != *pred_begin(Pred2)) |
| 176 | return 0; |
| 177 | |
| 178 | // Otherwise, if this is a conditional branch, then we can use it! |
| 179 | BasicBlock *CommonPred = *pred_begin(Pred1); |
| 180 | if (BranchInst *BI = dyn_cast<BranchInst>(CommonPred->getTerminator())) { |
| 181 | assert(BI->isConditional() && "Two successors but not conditional?"); |
| 182 | if (BI->getSuccessor(0) == Pred1) { |
| 183 | IfTrue = Pred1; |
| 184 | IfFalse = Pred2; |
| 185 | } else { |
| 186 | IfTrue = Pred2; |
| 187 | IfFalse = Pred1; |
| 188 | } |
| 189 | return BI->getCondition(); |
| 190 | } |
| 191 | return 0; |
| 192 | } |
| 193 | |
Bill Wendling | 5049fa6 | 2009-01-19 23:43:56 +0000 | [diff] [blame] | 194 | /// DominatesMergePoint - If we have a merge point of an "if condition" as |
| 195 | /// accepted above, return true if the specified value dominates the block. We |
| 196 | /// don't handle the true generality of domination here, just a special case |
| 197 | /// which works well enough for us. |
| 198 | /// |
| 199 | /// If AggressiveInsts is non-null, and if V does not dominate BB, we check to |
| 200 | /// see if V (which must be an instruction) is cheap to compute and is |
| 201 | /// non-trapping. If both are true, the instruction is inserted into the set |
| 202 | /// and true is returned. |
Chris Lattner | 9c07866 | 2004-10-14 05:13:36 +0000 | [diff] [blame] | 203 | static bool DominatesMergePoint(Value *V, BasicBlock *BB, |
| 204 | std::set<Instruction*> *AggressiveInsts) { |
Chris Lattner | 570751c | 2004-04-09 22:50:22 +0000 | [diff] [blame] | 205 | Instruction *I = dyn_cast<Instruction>(V); |
Chris Lattner | b74b181 | 2006-10-20 00:42:07 +0000 | [diff] [blame] | 206 | if (!I) { |
| 207 | // Non-instructions all dominate instructions, but not all constantexprs |
| 208 | // can be executed unconditionally. |
| 209 | if (ConstantExpr *C = dyn_cast<ConstantExpr>(V)) |
| 210 | if (C->canTrap()) |
| 211 | return false; |
| 212 | return true; |
| 213 | } |
Chris Lattner | 570751c | 2004-04-09 22:50:22 +0000 | [diff] [blame] | 214 | BasicBlock *PBB = I->getParent(); |
Chris Lattner | 723c66d | 2004-02-11 03:36:04 +0000 | [diff] [blame] | 215 | |
Chris Lattner | da895d6 | 2005-02-27 06:18:25 +0000 | [diff] [blame] | 216 | // We don't want to allow weird loops that might have the "if condition" in |
Chris Lattner | 570751c | 2004-04-09 22:50:22 +0000 | [diff] [blame] | 217 | // the bottom of this block. |
| 218 | if (PBB == BB) return false; |
Chris Lattner | 723c66d | 2004-02-11 03:36:04 +0000 | [diff] [blame] | 219 | |
Chris Lattner | 570751c | 2004-04-09 22:50:22 +0000 | [diff] [blame] | 220 | // If this instruction is defined in a block that contains an unconditional |
| 221 | // branch to BB, then it must be in the 'conditional' part of the "if |
| 222 | // statement". |
| 223 | if (BranchInst *BI = dyn_cast<BranchInst>(PBB->getTerminator())) |
| 224 | if (BI->isUnconditional() && BI->getSuccessor(0) == BB) { |
Chris Lattner | 9c07866 | 2004-10-14 05:13:36 +0000 | [diff] [blame] | 225 | if (!AggressiveInsts) return false; |
Chris Lattner | 570751c | 2004-04-09 22:50:22 +0000 | [diff] [blame] | 226 | // Okay, it looks like the instruction IS in the "condition". Check to |
Dan Gohman | 4bb31bf | 2010-03-30 20:04:57 +0000 | [diff] [blame] | 227 | // see if it's a cheap instruction to unconditionally compute, and if it |
Chris Lattner | 570751c | 2004-04-09 22:50:22 +0000 | [diff] [blame] | 228 | // only uses stuff defined outside of the condition. If so, hoist it out. |
Eli Friedman | 0b79a77 | 2009-07-17 04:28:42 +0000 | [diff] [blame] | 229 | if (!I->isSafeToSpeculativelyExecute()) |
| 230 | return false; |
| 231 | |
Chris Lattner | 570751c | 2004-04-09 22:50:22 +0000 | [diff] [blame] | 232 | switch (I->getOpcode()) { |
| 233 | default: return false; // Cannot hoist this out safely. |
Dale Johannesen | 3a56d14 | 2009-03-06 21:08:33 +0000 | [diff] [blame] | 234 | case Instruction::Load: { |
Eli Friedman | 0b79a77 | 2009-07-17 04:28:42 +0000 | [diff] [blame] | 235 | // We have to check to make sure there are no instructions before the |
| 236 | // load in its basic block, as we are going to hoist the loop out to |
| 237 | // its predecessor. |
Dale Johannesen | 3a56d14 | 2009-03-06 21:08:33 +0000 | [diff] [blame] | 238 | BasicBlock::iterator IP = PBB->begin(); |
| 239 | while (isa<DbgInfoIntrinsic>(IP)) |
| 240 | IP++; |
| 241 | if (IP != BasicBlock::iterator(I)) |
Chris Lattner | 570751c | 2004-04-09 22:50:22 +0000 | [diff] [blame] | 242 | return false; |
| 243 | break; |
Dale Johannesen | 3a56d14 | 2009-03-06 21:08:33 +0000 | [diff] [blame] | 244 | } |
Chris Lattner | 570751c | 2004-04-09 22:50:22 +0000 | [diff] [blame] | 245 | case Instruction::Add: |
| 246 | case Instruction::Sub: |
| 247 | case Instruction::And: |
| 248 | case Instruction::Or: |
| 249 | case Instruction::Xor: |
| 250 | case Instruction::Shl: |
Reid Spencer | 3822ff5 | 2006-11-08 06:47:33 +0000 | [diff] [blame] | 251 | case Instruction::LShr: |
| 252 | case Instruction::AShr: |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 253 | case Instruction::ICmp: |
Chris Lattner | 570751c | 2004-04-09 22:50:22 +0000 | [diff] [blame] | 254 | break; // These are all cheap and non-trapping instructions. |
| 255 | } |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 256 | |
Chris Lattner | 570751c | 2004-04-09 22:50:22 +0000 | [diff] [blame] | 257 | // Okay, we can only really hoist these out if their operands are not |
| 258 | // defined in the conditional region. |
Gabor Greif | f7ea363 | 2008-06-10 22:03:26 +0000 | [diff] [blame] | 259 | for (User::op_iterator i = I->op_begin(), e = I->op_end(); i != e; ++i) |
| 260 | if (!DominatesMergePoint(*i, BB, 0)) |
Chris Lattner | 570751c | 2004-04-09 22:50:22 +0000 | [diff] [blame] | 261 | return false; |
Chris Lattner | 9c07866 | 2004-10-14 05:13:36 +0000 | [diff] [blame] | 262 | // Okay, it's safe to do this! Remember this instruction. |
| 263 | AggressiveInsts->insert(I); |
Chris Lattner | 570751c | 2004-04-09 22:50:22 +0000 | [diff] [blame] | 264 | } |
| 265 | |
Chris Lattner | 723c66d | 2004-02-11 03:36:04 +0000 | [diff] [blame] | 266 | return true; |
| 267 | } |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 268 | |
Jakob Stoklund Olesen | 58e9ee8 | 2010-02-05 22:03:18 +0000 | [diff] [blame] | 269 | /// GetConstantInt - Extract ConstantInt from value, looking through IntToPtr |
| 270 | /// and PointerNullValue. Return NULL if value is not a constant int. |
| 271 | ConstantInt *SimplifyCFGOpt::GetConstantInt(Value *V) { |
| 272 | // Normal constant int. |
| 273 | ConstantInt *CI = dyn_cast<ConstantInt>(V); |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 274 | if (CI || !TD || !isa<Constant>(V) || !V->getType()->isPointerTy()) |
Jakob Stoklund Olesen | 58e9ee8 | 2010-02-05 22:03:18 +0000 | [diff] [blame] | 275 | return CI; |
| 276 | |
| 277 | // This is some kind of pointer constant. Turn it into a pointer-sized |
| 278 | // ConstantInt if possible. |
| 279 | const IntegerType *PtrTy = TD->getIntPtrType(V->getContext()); |
| 280 | |
| 281 | // Null pointer means 0, see SelectionDAGBuilder::getValue(const Value*). |
| 282 | if (isa<ConstantPointerNull>(V)) |
| 283 | return ConstantInt::get(PtrTy, 0); |
| 284 | |
| 285 | // IntToPtr const int. |
| 286 | if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V)) |
| 287 | if (CE->getOpcode() == Instruction::IntToPtr) |
| 288 | if (ConstantInt *CI = dyn_cast<ConstantInt>(CE->getOperand(0))) { |
| 289 | // The constant is very likely to have the right type already. |
| 290 | if (CI->getType() == PtrTy) |
| 291 | return CI; |
| 292 | else |
| 293 | return cast<ConstantInt> |
| 294 | (ConstantExpr::getIntegerCast(CI, PtrTy, /*isSigned=*/false)); |
| 295 | } |
| 296 | return 0; |
| 297 | } |
| 298 | |
Bill Wendling | 5049fa6 | 2009-01-19 23:43:56 +0000 | [diff] [blame] | 299 | /// GatherConstantSetEQs - Given a potentially 'or'd together collection of |
| 300 | /// icmp_eq instructions that compare a value against a constant, return the |
| 301 | /// value being compared, and stick the constant into the Values vector. |
Jakob Stoklund Olesen | 58e9ee8 | 2010-02-05 22:03:18 +0000 | [diff] [blame] | 302 | Value *SimplifyCFGOpt:: |
| 303 | GatherConstantSetEQs(Value *V, std::vector<ConstantInt*> &Values) { |
Anton Korobeynikov | 07e6e56 | 2008-02-20 11:26:25 +0000 | [diff] [blame] | 304 | if (Instruction *Inst = dyn_cast<Instruction>(V)) { |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 305 | if (Inst->getOpcode() == Instruction::ICmp && |
| 306 | cast<ICmpInst>(Inst)->getPredicate() == ICmpInst::ICMP_EQ) { |
Jakob Stoklund Olesen | 58e9ee8 | 2010-02-05 22:03:18 +0000 | [diff] [blame] | 307 | if (ConstantInt *C = GetConstantInt(Inst->getOperand(1))) { |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 308 | Values.push_back(C); |
| 309 | return Inst->getOperand(0); |
Jakob Stoklund Olesen | 58e9ee8 | 2010-02-05 22:03:18 +0000 | [diff] [blame] | 310 | } else if (ConstantInt *C = GetConstantInt(Inst->getOperand(0))) { |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 311 | Values.push_back(C); |
| 312 | return Inst->getOperand(1); |
| 313 | } |
| 314 | } else if (Inst->getOpcode() == Instruction::Or) { |
| 315 | if (Value *LHS = GatherConstantSetEQs(Inst->getOperand(0), Values)) |
| 316 | if (Value *RHS = GatherConstantSetEQs(Inst->getOperand(1), Values)) |
| 317 | if (LHS == RHS) |
| 318 | return LHS; |
| 319 | } |
Anton Korobeynikov | 07e6e56 | 2008-02-20 11:26:25 +0000 | [diff] [blame] | 320 | } |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 321 | return 0; |
| 322 | } |
| 323 | |
Bill Wendling | 5049fa6 | 2009-01-19 23:43:56 +0000 | [diff] [blame] | 324 | /// GatherConstantSetNEs - Given a potentially 'and'd together collection of |
| 325 | /// setne instructions that compare a value against a constant, return the value |
| 326 | /// being compared, and stick the constant into the Values vector. |
Jakob Stoklund Olesen | 58e9ee8 | 2010-02-05 22:03:18 +0000 | [diff] [blame] | 327 | Value *SimplifyCFGOpt:: |
| 328 | GatherConstantSetNEs(Value *V, std::vector<ConstantInt*> &Values) { |
Anton Korobeynikov | 07e6e56 | 2008-02-20 11:26:25 +0000 | [diff] [blame] | 329 | if (Instruction *Inst = dyn_cast<Instruction>(V)) { |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 330 | if (Inst->getOpcode() == Instruction::ICmp && |
| 331 | cast<ICmpInst>(Inst)->getPredicate() == ICmpInst::ICMP_NE) { |
Jakob Stoklund Olesen | 58e9ee8 | 2010-02-05 22:03:18 +0000 | [diff] [blame] | 332 | if (ConstantInt *C = GetConstantInt(Inst->getOperand(1))) { |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 333 | Values.push_back(C); |
| 334 | return Inst->getOperand(0); |
Jakob Stoklund Olesen | 58e9ee8 | 2010-02-05 22:03:18 +0000 | [diff] [blame] | 335 | } else if (ConstantInt *C = GetConstantInt(Inst->getOperand(0))) { |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 336 | Values.push_back(C); |
| 337 | return Inst->getOperand(1); |
| 338 | } |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 339 | } else if (Inst->getOpcode() == Instruction::And) { |
| 340 | if (Value *LHS = GatherConstantSetNEs(Inst->getOperand(0), Values)) |
| 341 | if (Value *RHS = GatherConstantSetNEs(Inst->getOperand(1), Values)) |
| 342 | if (LHS == RHS) |
| 343 | return LHS; |
| 344 | } |
Anton Korobeynikov | 07e6e56 | 2008-02-20 11:26:25 +0000 | [diff] [blame] | 345 | } |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 346 | return 0; |
| 347 | } |
| 348 | |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 349 | /// GatherValueComparisons - If the specified Cond is an 'and' or 'or' of a |
| 350 | /// bunch of comparisons of one value against constants, return the value and |
| 351 | /// the constants being compared. |
Jakob Stoklund Olesen | 58e9ee8 | 2010-02-05 22:03:18 +0000 | [diff] [blame] | 352 | bool SimplifyCFGOpt::GatherValueComparisons(Instruction *Cond, Value *&CompVal, |
| 353 | std::vector<ConstantInt*> &Values) { |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 354 | if (Cond->getOpcode() == Instruction::Or) { |
| 355 | CompVal = GatherConstantSetEQs(Cond, Values); |
| 356 | |
| 357 | // Return true to indicate that the condition is true if the CompVal is |
| 358 | // equal to one of the constants. |
| 359 | return true; |
| 360 | } else if (Cond->getOpcode() == Instruction::And) { |
| 361 | CompVal = GatherConstantSetNEs(Cond, Values); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 362 | |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 363 | // Return false to indicate that the condition is false if the CompVal is |
| 364 | // equal to one of the constants. |
| 365 | return false; |
| 366 | } |
| 367 | return false; |
| 368 | } |
| 369 | |
Eli Friedman | 080efb8 | 2008-12-16 20:54:32 +0000 | [diff] [blame] | 370 | static void EraseTerminatorInstAndDCECond(TerminatorInst *TI) { |
| 371 | Instruction* Cond = 0; |
| 372 | if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) { |
| 373 | Cond = dyn_cast<Instruction>(SI->getCondition()); |
| 374 | } else if (BranchInst *BI = dyn_cast<BranchInst>(TI)) { |
| 375 | if (BI->isConditional()) |
| 376 | Cond = dyn_cast<Instruction>(BI->getCondition()); |
| 377 | } |
| 378 | |
| 379 | TI->eraseFromParent(); |
| 380 | if (Cond) RecursivelyDeleteTriviallyDeadInstructions(Cond); |
| 381 | } |
| 382 | |
Chris Lattner | 9fd4955 | 2008-11-27 23:25:44 +0000 | [diff] [blame] | 383 | /// isValueEqualityComparison - Return true if the specified terminator checks |
| 384 | /// to see if a value is equal to constant integer value. |
Jakob Stoklund Olesen | 58e9ee8 | 2010-02-05 22:03:18 +0000 | [diff] [blame] | 385 | Value *SimplifyCFGOpt::isValueEqualityComparison(TerminatorInst *TI) { |
| 386 | Value *CV = 0; |
Chris Lattner | 4bebf08 | 2004-03-16 19:45:22 +0000 | [diff] [blame] | 387 | if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) { |
| 388 | // Do not permit merging of large switch instructions into their |
| 389 | // predecessors unless there is only one predecessor. |
Jakob Stoklund Olesen | 58e9ee8 | 2010-02-05 22:03:18 +0000 | [diff] [blame] | 390 | if (SI->getNumSuccessors()*std::distance(pred_begin(SI->getParent()), |
| 391 | pred_end(SI->getParent())) <= 128) |
| 392 | CV = SI->getCondition(); |
| 393 | } else if (BranchInst *BI = dyn_cast<BranchInst>(TI)) |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 394 | if (BI->isConditional() && BI->getCondition()->hasOneUse()) |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 395 | if (ICmpInst *ICI = dyn_cast<ICmpInst>(BI->getCondition())) |
| 396 | if ((ICI->getPredicate() == ICmpInst::ICMP_EQ || |
| 397 | ICI->getPredicate() == ICmpInst::ICMP_NE) && |
Jakob Stoklund Olesen | 58e9ee8 | 2010-02-05 22:03:18 +0000 | [diff] [blame] | 398 | GetConstantInt(ICI->getOperand(1))) |
| 399 | CV = ICI->getOperand(0); |
| 400 | |
| 401 | // Unwrap any lossless ptrtoint cast. |
| 402 | if (TD && CV && CV->getType() == TD->getIntPtrType(CV->getContext())) |
| 403 | if (PtrToIntInst *PTII = dyn_cast<PtrToIntInst>(CV)) |
| 404 | CV = PTII->getOperand(0); |
| 405 | return CV; |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 406 | } |
| 407 | |
Bill Wendling | 5049fa6 | 2009-01-19 23:43:56 +0000 | [diff] [blame] | 408 | /// GetValueEqualityComparisonCases - Given a value comparison instruction, |
| 409 | /// decode all of the 'cases' that it represents and return the 'default' block. |
Jakob Stoklund Olesen | 58e9ee8 | 2010-02-05 22:03:18 +0000 | [diff] [blame] | 410 | BasicBlock *SimplifyCFGOpt:: |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 411 | GetValueEqualityComparisonCases(TerminatorInst *TI, |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 412 | std::vector<std::pair<ConstantInt*, |
| 413 | BasicBlock*> > &Cases) { |
| 414 | if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) { |
| 415 | Cases.reserve(SI->getNumCases()); |
| 416 | for (unsigned i = 1, e = SI->getNumCases(); i != e; ++i) |
Chris Lattner | be54dcc | 2005-02-26 18:33:28 +0000 | [diff] [blame] | 417 | Cases.push_back(std::make_pair(SI->getCaseValue(i), SI->getSuccessor(i))); |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 418 | return SI->getDefaultDest(); |
| 419 | } |
| 420 | |
| 421 | BranchInst *BI = cast<BranchInst>(TI); |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 422 | ICmpInst *ICI = cast<ICmpInst>(BI->getCondition()); |
Jakob Stoklund Olesen | 58e9ee8 | 2010-02-05 22:03:18 +0000 | [diff] [blame] | 423 | Cases.push_back(std::make_pair(GetConstantInt(ICI->getOperand(1)), |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 424 | BI->getSuccessor(ICI->getPredicate() == |
| 425 | ICmpInst::ICMP_NE))); |
| 426 | return BI->getSuccessor(ICI->getPredicate() == ICmpInst::ICMP_EQ); |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 427 | } |
| 428 | |
| 429 | |
Bill Wendling | 5049fa6 | 2009-01-19 23:43:56 +0000 | [diff] [blame] | 430 | /// EliminateBlockCases - Given a vector of bb/value pairs, remove any entries |
| 431 | /// in the list that match the specified block. |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 432 | static void EliminateBlockCases(BasicBlock *BB, |
Chris Lattner | 623369a | 2005-02-24 06:17:52 +0000 | [diff] [blame] | 433 | std::vector<std::pair<ConstantInt*, BasicBlock*> > &Cases) { |
| 434 | for (unsigned i = 0, e = Cases.size(); i != e; ++i) |
| 435 | if (Cases[i].second == BB) { |
| 436 | Cases.erase(Cases.begin()+i); |
| 437 | --i; --e; |
| 438 | } |
| 439 | } |
| 440 | |
Bill Wendling | 5049fa6 | 2009-01-19 23:43:56 +0000 | [diff] [blame] | 441 | /// ValuesOverlap - Return true if there are any keys in C1 that exist in C2 as |
| 442 | /// well. |
Chris Lattner | 623369a | 2005-02-24 06:17:52 +0000 | [diff] [blame] | 443 | static bool |
| 444 | ValuesOverlap(std::vector<std::pair<ConstantInt*, BasicBlock*> > &C1, |
| 445 | std::vector<std::pair<ConstantInt*, BasicBlock*> > &C2) { |
| 446 | std::vector<std::pair<ConstantInt*, BasicBlock*> > *V1 = &C1, *V2 = &C2; |
| 447 | |
| 448 | // Make V1 be smaller than V2. |
| 449 | if (V1->size() > V2->size()) |
| 450 | std::swap(V1, V2); |
| 451 | |
| 452 | if (V1->size() == 0) return false; |
| 453 | if (V1->size() == 1) { |
| 454 | // Just scan V2. |
| 455 | ConstantInt *TheVal = (*V1)[0].first; |
| 456 | for (unsigned i = 0, e = V2->size(); i != e; ++i) |
| 457 | if (TheVal == (*V2)[i].first) |
| 458 | return true; |
| 459 | } |
| 460 | |
| 461 | // Otherwise, just sort both lists and compare element by element. |
| 462 | std::sort(V1->begin(), V1->end()); |
| 463 | std::sort(V2->begin(), V2->end()); |
| 464 | unsigned i1 = 0, i2 = 0, e1 = V1->size(), e2 = V2->size(); |
| 465 | while (i1 != e1 && i2 != e2) { |
| 466 | if ((*V1)[i1].first == (*V2)[i2].first) |
| 467 | return true; |
| 468 | if ((*V1)[i1].first < (*V2)[i2].first) |
| 469 | ++i1; |
| 470 | else |
| 471 | ++i2; |
| 472 | } |
| 473 | return false; |
| 474 | } |
| 475 | |
Bill Wendling | 5049fa6 | 2009-01-19 23:43:56 +0000 | [diff] [blame] | 476 | /// SimplifyEqualityComparisonWithOnlyPredecessor - If TI is known to be a |
| 477 | /// terminator instruction and its block is known to only have a single |
| 478 | /// predecessor block, check to see if that predecessor is also a value |
| 479 | /// comparison with the same value, and if that comparison determines the |
| 480 | /// outcome of this comparison. If so, simplify TI. This does a very limited |
| 481 | /// form of jump threading. |
Jakob Stoklund Olesen | 58e9ee8 | 2010-02-05 22:03:18 +0000 | [diff] [blame] | 482 | bool SimplifyCFGOpt:: |
| 483 | SimplifyEqualityComparisonWithOnlyPredecessor(TerminatorInst *TI, |
| 484 | BasicBlock *Pred) { |
Chris Lattner | 623369a | 2005-02-24 06:17:52 +0000 | [diff] [blame] | 485 | Value *PredVal = isValueEqualityComparison(Pred->getTerminator()); |
| 486 | if (!PredVal) return false; // Not a value comparison in predecessor. |
| 487 | |
| 488 | Value *ThisVal = isValueEqualityComparison(TI); |
| 489 | assert(ThisVal && "This isn't a value comparison!!"); |
| 490 | if (ThisVal != PredVal) return false; // Different predicates. |
| 491 | |
| 492 | // Find out information about when control will move from Pred to TI's block. |
| 493 | std::vector<std::pair<ConstantInt*, BasicBlock*> > PredCases; |
| 494 | BasicBlock *PredDef = GetValueEqualityComparisonCases(Pred->getTerminator(), |
| 495 | PredCases); |
| 496 | EliminateBlockCases(PredDef, PredCases); // Remove default from cases. |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 497 | |
Chris Lattner | 623369a | 2005-02-24 06:17:52 +0000 | [diff] [blame] | 498 | // Find information about how control leaves this block. |
| 499 | std::vector<std::pair<ConstantInt*, BasicBlock*> > ThisCases; |
| 500 | BasicBlock *ThisDef = GetValueEqualityComparisonCases(TI, ThisCases); |
| 501 | EliminateBlockCases(ThisDef, ThisCases); // Remove default from cases. |
| 502 | |
| 503 | // If TI's block is the default block from Pred's comparison, potentially |
| 504 | // simplify TI based on this knowledge. |
| 505 | if (PredDef == TI->getParent()) { |
| 506 | // If we are here, we know that the value is none of those cases listed in |
| 507 | // PredCases. If there are any cases in ThisCases that are in PredCases, we |
| 508 | // can simplify TI. |
| 509 | if (ValuesOverlap(PredCases, ThisCases)) { |
Eli Friedman | 080efb8 | 2008-12-16 20:54:32 +0000 | [diff] [blame] | 510 | if (isa<BranchInst>(TI)) { |
Chris Lattner | 623369a | 2005-02-24 06:17:52 +0000 | [diff] [blame] | 511 | // Okay, one of the successors of this condbr is dead. Convert it to a |
| 512 | // uncond br. |
| 513 | assert(ThisCases.size() == 1 && "Branch can only have one case!"); |
Chris Lattner | 623369a | 2005-02-24 06:17:52 +0000 | [diff] [blame] | 514 | // Insert the new branch. |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 515 | Instruction *NI = BranchInst::Create(ThisDef, TI); |
Daniel Dunbar | e317bcc | 2009-08-23 10:29:55 +0000 | [diff] [blame] | 516 | (void) NI; |
Chris Lattner | 623369a | 2005-02-24 06:17:52 +0000 | [diff] [blame] | 517 | |
| 518 | // Remove PHI node entries for the dead edge. |
| 519 | ThisCases[0].second->removePredecessor(TI->getParent()); |
| 520 | |
David Greene | 89d6fd3 | 2010-01-05 01:26:52 +0000 | [diff] [blame] | 521 | DEBUG(dbgs() << "Threading pred instr: " << *Pred->getTerminator() |
Chris Lattner | bdff548 | 2009-08-23 04:37:46 +0000 | [diff] [blame] | 522 | << "Through successor TI: " << *TI << "Leaving: " << *NI << "\n"); |
Chris Lattner | 623369a | 2005-02-24 06:17:52 +0000 | [diff] [blame] | 523 | |
Eli Friedman | 080efb8 | 2008-12-16 20:54:32 +0000 | [diff] [blame] | 524 | EraseTerminatorInstAndDCECond(TI); |
Chris Lattner | 623369a | 2005-02-24 06:17:52 +0000 | [diff] [blame] | 525 | return true; |
| 526 | |
| 527 | } else { |
| 528 | SwitchInst *SI = cast<SwitchInst>(TI); |
| 529 | // Okay, TI has cases that are statically dead, prune them away. |
Chris Lattner | c995123 | 2007-04-02 01:44:59 +0000 | [diff] [blame] | 530 | SmallPtrSet<Constant*, 16> DeadCases; |
Chris Lattner | 623369a | 2005-02-24 06:17:52 +0000 | [diff] [blame] | 531 | for (unsigned i = 0, e = PredCases.size(); i != e; ++i) |
| 532 | DeadCases.insert(PredCases[i].first); |
| 533 | |
David Greene | 89d6fd3 | 2010-01-05 01:26:52 +0000 | [diff] [blame] | 534 | DEBUG(dbgs() << "Threading pred instr: " << *Pred->getTerminator() |
Chris Lattner | bdff548 | 2009-08-23 04:37:46 +0000 | [diff] [blame] | 535 | << "Through successor TI: " << *TI); |
Chris Lattner | 623369a | 2005-02-24 06:17:52 +0000 | [diff] [blame] | 536 | |
| 537 | for (unsigned i = SI->getNumCases()-1; i != 0; --i) |
| 538 | if (DeadCases.count(SI->getCaseValue(i))) { |
| 539 | SI->getSuccessor(i)->removePredecessor(TI->getParent()); |
| 540 | SI->removeCase(i); |
| 541 | } |
| 542 | |
David Greene | 89d6fd3 | 2010-01-05 01:26:52 +0000 | [diff] [blame] | 543 | DEBUG(dbgs() << "Leaving: " << *TI << "\n"); |
Chris Lattner | 623369a | 2005-02-24 06:17:52 +0000 | [diff] [blame] | 544 | return true; |
| 545 | } |
| 546 | } |
| 547 | |
| 548 | } else { |
| 549 | // Otherwise, TI's block must correspond to some matched value. Find out |
| 550 | // which value (or set of values) this is. |
| 551 | ConstantInt *TIV = 0; |
| 552 | BasicBlock *TIBB = TI->getParent(); |
| 553 | for (unsigned i = 0, e = PredCases.size(); i != e; ++i) |
Anton Korobeynikov | 07e6e56 | 2008-02-20 11:26:25 +0000 | [diff] [blame] | 554 | if (PredCases[i].second == TIBB) { |
Chris Lattner | 623369a | 2005-02-24 06:17:52 +0000 | [diff] [blame] | 555 | if (TIV == 0) |
| 556 | TIV = PredCases[i].first; |
| 557 | else |
| 558 | return false; // Cannot handle multiple values coming to this block. |
Anton Korobeynikov | 07e6e56 | 2008-02-20 11:26:25 +0000 | [diff] [blame] | 559 | } |
Chris Lattner | 623369a | 2005-02-24 06:17:52 +0000 | [diff] [blame] | 560 | assert(TIV && "No edge from pred to succ?"); |
| 561 | |
| 562 | // Okay, we found the one constant that our value can be if we get into TI's |
| 563 | // BB. Find out which successor will unconditionally be branched to. |
| 564 | BasicBlock *TheRealDest = 0; |
| 565 | for (unsigned i = 0, e = ThisCases.size(); i != e; ++i) |
| 566 | if (ThisCases[i].first == TIV) { |
| 567 | TheRealDest = ThisCases[i].second; |
| 568 | break; |
| 569 | } |
| 570 | |
| 571 | // If not handled by any explicit cases, it is handled by the default case. |
| 572 | if (TheRealDest == 0) TheRealDest = ThisDef; |
| 573 | |
| 574 | // Remove PHI node entries for dead edges. |
| 575 | BasicBlock *CheckEdge = TheRealDest; |
| 576 | for (succ_iterator SI = succ_begin(TIBB), e = succ_end(TIBB); SI != e; ++SI) |
| 577 | if (*SI != CheckEdge) |
| 578 | (*SI)->removePredecessor(TIBB); |
| 579 | else |
| 580 | CheckEdge = 0; |
| 581 | |
| 582 | // Insert the new branch. |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 583 | Instruction *NI = BranchInst::Create(TheRealDest, TI); |
Daniel Dunbar | e317bcc | 2009-08-23 10:29:55 +0000 | [diff] [blame] | 584 | (void) NI; |
Chris Lattner | 623369a | 2005-02-24 06:17:52 +0000 | [diff] [blame] | 585 | |
David Greene | 89d6fd3 | 2010-01-05 01:26:52 +0000 | [diff] [blame] | 586 | DEBUG(dbgs() << "Threading pred instr: " << *Pred->getTerminator() |
Chris Lattner | bdff548 | 2009-08-23 04:37:46 +0000 | [diff] [blame] | 587 | << "Through successor TI: " << *TI << "Leaving: " << *NI << "\n"); |
Chris Lattner | 623369a | 2005-02-24 06:17:52 +0000 | [diff] [blame] | 588 | |
Eli Friedman | 080efb8 | 2008-12-16 20:54:32 +0000 | [diff] [blame] | 589 | EraseTerminatorInstAndDCECond(TI); |
Chris Lattner | 623369a | 2005-02-24 06:17:52 +0000 | [diff] [blame] | 590 | return true; |
| 591 | } |
| 592 | return false; |
| 593 | } |
| 594 | |
Dale Johannesen | c81f544 | 2009-03-12 21:01:11 +0000 | [diff] [blame] | 595 | namespace { |
| 596 | /// ConstantIntOrdering - This class implements a stable ordering of constant |
| 597 | /// integers that does not depend on their address. This is important for |
| 598 | /// applications that sort ConstantInt's to ensure uniqueness. |
| 599 | struct ConstantIntOrdering { |
| 600 | bool operator()(const ConstantInt *LHS, const ConstantInt *RHS) const { |
| 601 | return LHS->getValue().ult(RHS->getValue()); |
| 602 | } |
| 603 | }; |
| 604 | } |
Dale Johannesen | a9537cf | 2009-03-12 01:00:26 +0000 | [diff] [blame] | 605 | |
Bill Wendling | 5049fa6 | 2009-01-19 23:43:56 +0000 | [diff] [blame] | 606 | /// FoldValueComparisonIntoPredecessors - The specified terminator is a value |
| 607 | /// equality comparison instruction (either a switch or a branch on "X == c"). |
| 608 | /// See if any of the predecessors of the terminator block are value comparisons |
| 609 | /// on the same value. If so, and if safe to do so, fold them together. |
Jakob Stoklund Olesen | 58e9ee8 | 2010-02-05 22:03:18 +0000 | [diff] [blame] | 610 | bool SimplifyCFGOpt::FoldValueComparisonIntoPredecessors(TerminatorInst *TI) { |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 611 | BasicBlock *BB = TI->getParent(); |
| 612 | Value *CV = isValueEqualityComparison(TI); // CondVal |
| 613 | assert(CV && "Not a comparison?"); |
| 614 | bool Changed = false; |
| 615 | |
Chris Lattner | 8244243 | 2008-02-18 07:42:56 +0000 | [diff] [blame] | 616 | SmallVector<BasicBlock*, 16> Preds(pred_begin(BB), pred_end(BB)); |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 617 | while (!Preds.empty()) { |
Dan Gohman | e9d87f4 | 2009-05-06 17:22:41 +0000 | [diff] [blame] | 618 | BasicBlock *Pred = Preds.pop_back_val(); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 619 | |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 620 | // See if the predecessor is a comparison with the same value. |
| 621 | TerminatorInst *PTI = Pred->getTerminator(); |
| 622 | Value *PCV = isValueEqualityComparison(PTI); // PredCondVal |
| 623 | |
| 624 | if (PCV == CV && SafeToMergeTerminators(TI, PTI)) { |
| 625 | // Figure out which 'cases' to copy from SI to PSI. |
| 626 | std::vector<std::pair<ConstantInt*, BasicBlock*> > BBCases; |
| 627 | BasicBlock *BBDefault = GetValueEqualityComparisonCases(TI, BBCases); |
| 628 | |
| 629 | std::vector<std::pair<ConstantInt*, BasicBlock*> > PredCases; |
| 630 | BasicBlock *PredDefault = GetValueEqualityComparisonCases(PTI, PredCases); |
| 631 | |
| 632 | // Based on whether the default edge from PTI goes to BB or not, fill in |
| 633 | // PredCases and PredDefault with the new switch cases we would like to |
| 634 | // build. |
Chris Lattner | 8244243 | 2008-02-18 07:42:56 +0000 | [diff] [blame] | 635 | SmallVector<BasicBlock*, 8> NewSuccessors; |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 636 | |
| 637 | if (PredDefault == BB) { |
| 638 | // If this is the default destination from PTI, only the edges in TI |
| 639 | // that don't occur in PTI, or that branch to BB will be activated. |
Dale Johannesen | c81f544 | 2009-03-12 21:01:11 +0000 | [diff] [blame] | 640 | std::set<ConstantInt*, ConstantIntOrdering> PTIHandled; |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 641 | for (unsigned i = 0, e = PredCases.size(); i != e; ++i) |
| 642 | if (PredCases[i].second != BB) |
| 643 | PTIHandled.insert(PredCases[i].first); |
| 644 | else { |
| 645 | // The default destination is BB, we don't need explicit targets. |
| 646 | std::swap(PredCases[i], PredCases.back()); |
| 647 | PredCases.pop_back(); |
| 648 | --i; --e; |
| 649 | } |
| 650 | |
| 651 | // Reconstruct the new switch statement we will be building. |
| 652 | if (PredDefault != BBDefault) { |
| 653 | PredDefault->removePredecessor(Pred); |
| 654 | PredDefault = BBDefault; |
| 655 | NewSuccessors.push_back(BBDefault); |
| 656 | } |
| 657 | for (unsigned i = 0, e = BBCases.size(); i != e; ++i) |
| 658 | if (!PTIHandled.count(BBCases[i].first) && |
| 659 | BBCases[i].second != BBDefault) { |
| 660 | PredCases.push_back(BBCases[i]); |
| 661 | NewSuccessors.push_back(BBCases[i].second); |
| 662 | } |
| 663 | |
| 664 | } else { |
| 665 | // If this is not the default destination from PSI, only the edges |
| 666 | // in SI that occur in PSI with a destination of BB will be |
| 667 | // activated. |
Dale Johannesen | c81f544 | 2009-03-12 21:01:11 +0000 | [diff] [blame] | 668 | std::set<ConstantInt*, ConstantIntOrdering> PTIHandled; |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 669 | for (unsigned i = 0, e = PredCases.size(); i != e; ++i) |
| 670 | if (PredCases[i].second == BB) { |
| 671 | PTIHandled.insert(PredCases[i].first); |
| 672 | std::swap(PredCases[i], PredCases.back()); |
| 673 | PredCases.pop_back(); |
| 674 | --i; --e; |
| 675 | } |
| 676 | |
| 677 | // Okay, now we know which constants were sent to BB from the |
| 678 | // predecessor. Figure out where they will all go now. |
| 679 | for (unsigned i = 0, e = BBCases.size(); i != e; ++i) |
| 680 | if (PTIHandled.count(BBCases[i].first)) { |
| 681 | // If this is one we are capable of getting... |
| 682 | PredCases.push_back(BBCases[i]); |
| 683 | NewSuccessors.push_back(BBCases[i].second); |
| 684 | PTIHandled.erase(BBCases[i].first);// This constant is taken care of |
| 685 | } |
| 686 | |
| 687 | // If there are any constants vectored to BB that TI doesn't handle, |
| 688 | // they must go to the default destination of TI. |
Dale Johannesen | c81f544 | 2009-03-12 21:01:11 +0000 | [diff] [blame] | 689 | for (std::set<ConstantInt*, ConstantIntOrdering>::iterator I = |
| 690 | PTIHandled.begin(), |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 691 | E = PTIHandled.end(); I != E; ++I) { |
| 692 | PredCases.push_back(std::make_pair(*I, BBDefault)); |
| 693 | NewSuccessors.push_back(BBDefault); |
| 694 | } |
| 695 | } |
| 696 | |
| 697 | // Okay, at this point, we know which new successor Pred will get. Make |
| 698 | // sure we update the number of entries in the PHI nodes for these |
| 699 | // successors. |
| 700 | for (unsigned i = 0, e = NewSuccessors.size(); i != e; ++i) |
| 701 | AddPredecessorToBlock(NewSuccessors[i], Pred, BB); |
| 702 | |
Jakob Stoklund Olesen | 58e9ee8 | 2010-02-05 22:03:18 +0000 | [diff] [blame] | 703 | // Convert pointer to int before we switch. |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 704 | if (CV->getType()->isPointerTy()) { |
Jakob Stoklund Olesen | 58e9ee8 | 2010-02-05 22:03:18 +0000 | [diff] [blame] | 705 | assert(TD && "Cannot switch on pointer without TargetData"); |
| 706 | CV = new PtrToIntInst(CV, TD->getIntPtrType(CV->getContext()), |
| 707 | "magicptr", PTI); |
| 708 | } |
| 709 | |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 710 | // Now that the successors are updated, create the new Switch instruction. |
Gabor Greif | b1dbcd8 | 2008-05-15 10:04:30 +0000 | [diff] [blame] | 711 | SwitchInst *NewSI = SwitchInst::Create(CV, PredDefault, |
| 712 | PredCases.size(), PTI); |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 713 | for (unsigned i = 0, e = PredCases.size(); i != e; ++i) |
| 714 | NewSI->addCase(PredCases[i].first, PredCases[i].second); |
Chris Lattner | 13b2f76 | 2005-01-01 16:02:12 +0000 | [diff] [blame] | 715 | |
Eli Friedman | 080efb8 | 2008-12-16 20:54:32 +0000 | [diff] [blame] | 716 | EraseTerminatorInstAndDCECond(PTI); |
Chris Lattner | 13b2f76 | 2005-01-01 16:02:12 +0000 | [diff] [blame] | 717 | |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 718 | // Okay, last check. If BB is still a successor of PSI, then we must |
| 719 | // have an infinite loop case. If so, add an infinitely looping block |
| 720 | // to handle the case to preserve the behavior of the code. |
| 721 | BasicBlock *InfLoopBlock = 0; |
| 722 | for (unsigned i = 0, e = NewSI->getNumSuccessors(); i != e; ++i) |
| 723 | if (NewSI->getSuccessor(i) == BB) { |
| 724 | if (InfLoopBlock == 0) { |
Chris Lattner | 093a438 | 2008-07-13 22:23:11 +0000 | [diff] [blame] | 725 | // Insert it at the end of the function, because it's either code, |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 726 | // or it won't matter if it's hot. :) |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 727 | InfLoopBlock = BasicBlock::Create(BB->getContext(), |
| 728 | "infloop", BB->getParent()); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 729 | BranchInst::Create(InfLoopBlock, InfLoopBlock); |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 730 | } |
| 731 | NewSI->setSuccessor(i, InfLoopBlock); |
| 732 | } |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 733 | |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 734 | Changed = true; |
| 735 | } |
| 736 | } |
| 737 | return Changed; |
| 738 | } |
| 739 | |
Dale Johannesen | c1f1040 | 2009-06-15 20:59:27 +0000 | [diff] [blame] | 740 | // isSafeToHoistInvoke - If we would need to insert a select that uses the |
| 741 | // value of this invoke (comments in HoistThenElseCodeToIf explain why we |
| 742 | // would need to do this), we can't hoist the invoke, as there is nowhere |
| 743 | // to put the select in this case. |
| 744 | static bool isSafeToHoistInvoke(BasicBlock *BB1, BasicBlock *BB2, |
| 745 | Instruction *I1, Instruction *I2) { |
| 746 | for (succ_iterator SI = succ_begin(BB1), E = succ_end(BB1); SI != E; ++SI) { |
| 747 | PHINode *PN; |
| 748 | for (BasicBlock::iterator BBI = SI->begin(); |
| 749 | (PN = dyn_cast<PHINode>(BBI)); ++BBI) { |
| 750 | Value *BB1V = PN->getIncomingValueForBlock(BB1); |
| 751 | Value *BB2V = PN->getIncomingValueForBlock(BB2); |
| 752 | if (BB1V != BB2V && (BB1V==I1 || BB2V==I2)) { |
| 753 | return false; |
| 754 | } |
| 755 | } |
| 756 | } |
| 757 | return true; |
| 758 | } |
| 759 | |
Chris Lattner | 6306d07 | 2005-08-03 17:59:45 +0000 | [diff] [blame] | 760 | /// HoistThenElseCodeToIf - Given a conditional branch that goes to BB1 and |
Chris Lattner | 37dc938 | 2004-11-30 00:29:14 +0000 | [diff] [blame] | 761 | /// BB2, hoist any common code in the two blocks up into the branch block. The |
| 762 | /// caller of this function guarantees that BI's block dominates BB1 and BB2. |
| 763 | static bool HoistThenElseCodeToIf(BranchInst *BI) { |
| 764 | // This does very trivial matching, with limited scanning, to find identical |
| 765 | // instructions in the two blocks. In particular, we don't want to get into |
| 766 | // O(M*N) situations here where M and N are the sizes of BB1 and BB2. As |
| 767 | // such, we currently just scan for obviously identical instructions in an |
| 768 | // identical order. |
| 769 | BasicBlock *BB1 = BI->getSuccessor(0); // The true destination. |
| 770 | BasicBlock *BB2 = BI->getSuccessor(1); // The false destination |
| 771 | |
Devang Patel | 65085cf | 2009-02-04 00:03:08 +0000 | [diff] [blame] | 772 | BasicBlock::iterator BB1_Itr = BB1->begin(); |
| 773 | BasicBlock::iterator BB2_Itr = BB2->begin(); |
| 774 | |
| 775 | Instruction *I1 = BB1_Itr++, *I2 = BB2_Itr++; |
| 776 | while (isa<DbgInfoIntrinsic>(I1)) |
| 777 | I1 = BB1_Itr++; |
| 778 | while (isa<DbgInfoIntrinsic>(I2)) |
| 779 | I2 = BB2_Itr++; |
Dale Johannesen | c1f1040 | 2009-06-15 20:59:27 +0000 | [diff] [blame] | 780 | if (I1->getOpcode() != I2->getOpcode() || isa<PHINode>(I1) || |
Dan Gohman | 58cfa3b | 2009-08-25 22:11:20 +0000 | [diff] [blame] | 781 | !I1->isIdenticalToWhenDefined(I2) || |
Dale Johannesen | c1f1040 | 2009-06-15 20:59:27 +0000 | [diff] [blame] | 782 | (isa<InvokeInst>(I1) && !isSafeToHoistInvoke(BB1, BB2, I1, I2))) |
Chris Lattner | 37dc938 | 2004-11-30 00:29:14 +0000 | [diff] [blame] | 783 | return false; |
| 784 | |
| 785 | // If we get here, we can hoist at least one instruction. |
| 786 | BasicBlock *BIParent = BI->getParent(); |
Chris Lattner | 37dc938 | 2004-11-30 00:29:14 +0000 | [diff] [blame] | 787 | |
| 788 | do { |
| 789 | // If we are hoisting the terminator instruction, don't move one (making a |
| 790 | // broken BB), instead clone it, and remove BI. |
| 791 | if (isa<TerminatorInst>(I1)) |
| 792 | goto HoistTerminator; |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 793 | |
Chris Lattner | 37dc938 | 2004-11-30 00:29:14 +0000 | [diff] [blame] | 794 | // For a normal instruction, we just move one to right before the branch, |
| 795 | // then replace all uses of the other with the first. Finally, we remove |
| 796 | // the now redundant second instruction. |
| 797 | BIParent->getInstList().splice(BI, BB1->getInstList(), I1); |
| 798 | if (!I2->use_empty()) |
| 799 | I2->replaceAllUsesWith(I1); |
Dan Gohman | 58cfa3b | 2009-08-25 22:11:20 +0000 | [diff] [blame] | 800 | I1->intersectOptionalDataWith(I2); |
Chris Lattner | 37dc938 | 2004-11-30 00:29:14 +0000 | [diff] [blame] | 801 | BB2->getInstList().erase(I2); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 802 | |
Devang Patel | 65085cf | 2009-02-04 00:03:08 +0000 | [diff] [blame] | 803 | I1 = BB1_Itr++; |
| 804 | while (isa<DbgInfoIntrinsic>(I1)) |
| 805 | I1 = BB1_Itr++; |
| 806 | I2 = BB2_Itr++; |
| 807 | while (isa<DbgInfoIntrinsic>(I2)) |
| 808 | I2 = BB2_Itr++; |
Dan Gohman | 58cfa3b | 2009-08-25 22:11:20 +0000 | [diff] [blame] | 809 | } while (I1->getOpcode() == I2->getOpcode() && |
| 810 | I1->isIdenticalToWhenDefined(I2)); |
Chris Lattner | 37dc938 | 2004-11-30 00:29:14 +0000 | [diff] [blame] | 811 | |
| 812 | return true; |
| 813 | |
| 814 | HoistTerminator: |
Dale Johannesen | c1f1040 | 2009-06-15 20:59:27 +0000 | [diff] [blame] | 815 | // It may not be possible to hoist an invoke. |
| 816 | if (isa<InvokeInst>(I1) && !isSafeToHoistInvoke(BB1, BB2, I1, I2)) |
| 817 | return true; |
| 818 | |
Chris Lattner | 37dc938 | 2004-11-30 00:29:14 +0000 | [diff] [blame] | 819 | // Okay, it is safe to hoist the terminator. |
Nick Lewycky | 6776064 | 2009-09-27 07:38:41 +0000 | [diff] [blame] | 820 | Instruction *NT = I1->clone(); |
Chris Lattner | 37dc938 | 2004-11-30 00:29:14 +0000 | [diff] [blame] | 821 | BIParent->getInstList().insert(BI, NT); |
Benjamin Kramer | f012705 | 2010-01-05 13:12:22 +0000 | [diff] [blame] | 822 | if (!NT->getType()->isVoidTy()) { |
Chris Lattner | 37dc938 | 2004-11-30 00:29:14 +0000 | [diff] [blame] | 823 | I1->replaceAllUsesWith(NT); |
| 824 | I2->replaceAllUsesWith(NT); |
Chris Lattner | 86cc423 | 2007-02-11 01:37:51 +0000 | [diff] [blame] | 825 | NT->takeName(I1); |
Chris Lattner | 37dc938 | 2004-11-30 00:29:14 +0000 | [diff] [blame] | 826 | } |
| 827 | |
| 828 | // Hoisting one of the terminators from our successor is a great thing. |
| 829 | // Unfortunately, the successors of the if/else blocks may have PHI nodes in |
| 830 | // them. If they do, all PHI entries for BB1/BB2 must agree for all PHI |
| 831 | // nodes, so we insert select instruction to compute the final result. |
| 832 | std::map<std::pair<Value*,Value*>, SelectInst*> InsertedSelects; |
| 833 | for (succ_iterator SI = succ_begin(BB1), E = succ_end(BB1); SI != E; ++SI) { |
| 834 | PHINode *PN; |
| 835 | for (BasicBlock::iterator BBI = SI->begin(); |
Chris Lattner | 0f535c6 | 2004-11-30 07:47:34 +0000 | [diff] [blame] | 836 | (PN = dyn_cast<PHINode>(BBI)); ++BBI) { |
Chris Lattner | 37dc938 | 2004-11-30 00:29:14 +0000 | [diff] [blame] | 837 | Value *BB1V = PN->getIncomingValueForBlock(BB1); |
| 838 | Value *BB2V = PN->getIncomingValueForBlock(BB2); |
| 839 | if (BB1V != BB2V) { |
| 840 | // These values do not agree. Insert a select instruction before NT |
| 841 | // that determines the right value. |
| 842 | SelectInst *&SI = InsertedSelects[std::make_pair(BB1V, BB2V)]; |
| 843 | if (SI == 0) |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 844 | SI = SelectInst::Create(BI->getCondition(), BB1V, BB2V, |
| 845 | BB1V->getName()+"."+BB2V->getName(), NT); |
Chris Lattner | 37dc938 | 2004-11-30 00:29:14 +0000 | [diff] [blame] | 846 | // Make the PHI node use the select for all incoming values for BB1/BB2 |
| 847 | for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) |
| 848 | if (PN->getIncomingBlock(i) == BB1 || PN->getIncomingBlock(i) == BB2) |
| 849 | PN->setIncomingValue(i, SI); |
| 850 | } |
| 851 | } |
| 852 | } |
| 853 | |
| 854 | // Update any PHI nodes in our new successors. |
| 855 | for (succ_iterator SI = succ_begin(BB1), E = succ_end(BB1); SI != E; ++SI) |
| 856 | AddPredecessorToBlock(*SI, BIParent, BB1); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 857 | |
Eli Friedman | 080efb8 | 2008-12-16 20:54:32 +0000 | [diff] [blame] | 858 | EraseTerminatorInstAndDCECond(BI); |
Chris Lattner | 37dc938 | 2004-11-30 00:29:14 +0000 | [diff] [blame] | 859 | return true; |
| 860 | } |
| 861 | |
Evan Cheng | 4d09efd | 2008-06-07 08:52:29 +0000 | [diff] [blame] | 862 | /// SpeculativelyExecuteBB - Given a conditional branch that goes to BB1 |
| 863 | /// and an BB2 and the only successor of BB1 is BB2, hoist simple code |
| 864 | /// (for now, restricted to a single instruction that's side effect free) from |
| 865 | /// the BB1 into the branch block to speculatively execute it. |
| 866 | static bool SpeculativelyExecuteBB(BranchInst *BI, BasicBlock *BB1) { |
| 867 | // Only speculatively execution a single instruction (not counting the |
| 868 | // terminator) for now. |
Devang Patel | 06b1e67 | 2009-03-06 06:00:17 +0000 | [diff] [blame] | 869 | Instruction *HInst = NULL; |
| 870 | Instruction *Term = BB1->getTerminator(); |
| 871 | for (BasicBlock::iterator BBI = BB1->begin(), BBE = BB1->end(); |
| 872 | BBI != BBE; ++BBI) { |
| 873 | Instruction *I = BBI; |
| 874 | // Skip debug info. |
| 875 | if (isa<DbgInfoIntrinsic>(I)) continue; |
| 876 | if (I == Term) break; |
| 877 | |
| 878 | if (!HInst) |
| 879 | HInst = I; |
| 880 | else |
| 881 | return false; |
| 882 | } |
| 883 | if (!HInst) |
| 884 | return false; |
Evan Cheng | 4d09efd | 2008-06-07 08:52:29 +0000 | [diff] [blame] | 885 | |
Evan Cheng | 797d951 | 2008-06-11 19:18:20 +0000 | [diff] [blame] | 886 | // Be conservative for now. FP select instruction can often be expensive. |
| 887 | Value *BrCond = BI->getCondition(); |
| 888 | if (isa<Instruction>(BrCond) && |
| 889 | cast<Instruction>(BrCond)->getOpcode() == Instruction::FCmp) |
| 890 | return false; |
| 891 | |
Evan Cheng | 4d09efd | 2008-06-07 08:52:29 +0000 | [diff] [blame] | 892 | // If BB1 is actually on the false edge of the conditional branch, remember |
| 893 | // to swap the select operands later. |
| 894 | bool Invert = false; |
| 895 | if (BB1 != BI->getSuccessor(0)) { |
| 896 | assert(BB1 == BI->getSuccessor(1) && "No edge from 'if' block?"); |
| 897 | Invert = true; |
| 898 | } |
| 899 | |
| 900 | // Turn |
| 901 | // BB: |
| 902 | // %t1 = icmp |
| 903 | // br i1 %t1, label %BB1, label %BB2 |
| 904 | // BB1: |
| 905 | // %t3 = add %t2, c |
| 906 | // br label BB2 |
| 907 | // BB2: |
| 908 | // => |
| 909 | // BB: |
| 910 | // %t1 = icmp |
| 911 | // %t4 = add %t2, c |
| 912 | // %t3 = select i1 %t1, %t2, %t3 |
Devang Patel | 06b1e67 | 2009-03-06 06:00:17 +0000 | [diff] [blame] | 913 | switch (HInst->getOpcode()) { |
Evan Cheng | 4d09efd | 2008-06-07 08:52:29 +0000 | [diff] [blame] | 914 | default: return false; // Not safe / profitable to hoist. |
| 915 | case Instruction::Add: |
| 916 | case Instruction::Sub: |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 917 | // Not worth doing for vector ops. |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 918 | if (HInst->getType()->isVectorTy()) |
Chris Lattner | 9dd3b61 | 2009-01-18 23:22:07 +0000 | [diff] [blame] | 919 | return false; |
| 920 | break; |
Evan Cheng | 4d09efd | 2008-06-07 08:52:29 +0000 | [diff] [blame] | 921 | case Instruction::And: |
| 922 | case Instruction::Or: |
| 923 | case Instruction::Xor: |
| 924 | case Instruction::Shl: |
| 925 | case Instruction::LShr: |
| 926 | case Instruction::AShr: |
Chris Lattner | 9dd3b61 | 2009-01-18 23:22:07 +0000 | [diff] [blame] | 927 | // Don't mess with vector operations. |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 928 | if (HInst->getType()->isVectorTy()) |
Evan Cheng | e5334ea | 2008-06-25 07:50:12 +0000 | [diff] [blame] | 929 | return false; |
Evan Cheng | 4d09efd | 2008-06-07 08:52:29 +0000 | [diff] [blame] | 930 | break; // These are all cheap and non-trapping instructions. |
| 931 | } |
Chris Lattner | 6fe73bb | 2009-01-19 00:36:37 +0000 | [diff] [blame] | 932 | |
| 933 | // If the instruction is obviously dead, don't try to predicate it. |
Devang Patel | 06b1e67 | 2009-03-06 06:00:17 +0000 | [diff] [blame] | 934 | if (HInst->use_empty()) { |
| 935 | HInst->eraseFromParent(); |
Chris Lattner | 6fe73bb | 2009-01-19 00:36:37 +0000 | [diff] [blame] | 936 | return true; |
| 937 | } |
Evan Cheng | 4d09efd | 2008-06-07 08:52:29 +0000 | [diff] [blame] | 938 | |
| 939 | // Can we speculatively execute the instruction? And what is the value |
| 940 | // if the condition is false? Consider the phi uses, if the incoming value |
| 941 | // from the "if" block are all the same V, then V is the value of the |
| 942 | // select if the condition is false. |
| 943 | BasicBlock *BIParent = BI->getParent(); |
| 944 | SmallVector<PHINode*, 4> PHIUses; |
| 945 | Value *FalseV = NULL; |
Chris Lattner | 6fe73bb | 2009-01-19 00:36:37 +0000 | [diff] [blame] | 946 | |
| 947 | BasicBlock *BB2 = BB1->getTerminator()->getSuccessor(0); |
Devang Patel | 06b1e67 | 2009-03-06 06:00:17 +0000 | [diff] [blame] | 948 | for (Value::use_iterator UI = HInst->use_begin(), E = HInst->use_end(); |
Evan Cheng | 4d09efd | 2008-06-07 08:52:29 +0000 | [diff] [blame] | 949 | UI != E; ++UI) { |
Chris Lattner | 6fe73bb | 2009-01-19 00:36:37 +0000 | [diff] [blame] | 950 | // Ignore any user that is not a PHI node in BB2. These can only occur in |
| 951 | // unreachable blocks, because they would not be dominated by the instr. |
Evan Cheng | 4d09efd | 2008-06-07 08:52:29 +0000 | [diff] [blame] | 952 | PHINode *PN = dyn_cast<PHINode>(UI); |
Chris Lattner | 6fe73bb | 2009-01-19 00:36:37 +0000 | [diff] [blame] | 953 | if (!PN || PN->getParent() != BB2) |
| 954 | return false; |
Evan Cheng | 4d09efd | 2008-06-07 08:52:29 +0000 | [diff] [blame] | 955 | PHIUses.push_back(PN); |
Chris Lattner | 6fe73bb | 2009-01-19 00:36:37 +0000 | [diff] [blame] | 956 | |
Evan Cheng | 4d09efd | 2008-06-07 08:52:29 +0000 | [diff] [blame] | 957 | Value *PHIV = PN->getIncomingValueForBlock(BIParent); |
| 958 | if (!FalseV) |
| 959 | FalseV = PHIV; |
| 960 | else if (FalseV != PHIV) |
Chris Lattner | 6fe73bb | 2009-01-19 00:36:37 +0000 | [diff] [blame] | 961 | return false; // Inconsistent value when condition is false. |
Evan Cheng | 4d09efd | 2008-06-07 08:52:29 +0000 | [diff] [blame] | 962 | } |
Chris Lattner | 6fe73bb | 2009-01-19 00:36:37 +0000 | [diff] [blame] | 963 | |
| 964 | assert(FalseV && "Must have at least one user, and it must be a PHI"); |
Evan Cheng | 4d09efd | 2008-06-07 08:52:29 +0000 | [diff] [blame] | 965 | |
Evan Cheng | 502a4f5 | 2008-06-12 21:15:59 +0000 | [diff] [blame] | 966 | // Do not hoist the instruction if any of its operands are defined but not |
| 967 | // used in this BB. The transformation will prevent the operand from |
| 968 | // being sunk into the use block. |
Devang Patel | 06b1e67 | 2009-03-06 06:00:17 +0000 | [diff] [blame] | 969 | for (User::op_iterator i = HInst->op_begin(), e = HInst->op_end(); |
| 970 | i != e; ++i) { |
Evan Cheng | 502a4f5 | 2008-06-12 21:15:59 +0000 | [diff] [blame] | 971 | Instruction *OpI = dyn_cast<Instruction>(*i); |
| 972 | if (OpI && OpI->getParent() == BIParent && |
| 973 | !OpI->isUsedInBasicBlock(BIParent)) |
| 974 | return false; |
| 975 | } |
| 976 | |
Devang Patel | 3d0a9a3 | 2008-09-18 22:50:42 +0000 | [diff] [blame] | 977 | // If we get here, we can hoist the instruction. Try to place it |
Dale Johannesen | 990afed | 2009-03-13 01:05:24 +0000 | [diff] [blame] | 978 | // before the icmp instruction preceding the conditional branch. |
Devang Patel | 3d0a9a3 | 2008-09-18 22:50:42 +0000 | [diff] [blame] | 979 | BasicBlock::iterator InsertPos = BI; |
Dale Johannesen | 990afed | 2009-03-13 01:05:24 +0000 | [diff] [blame] | 980 | if (InsertPos != BIParent->begin()) |
| 981 | --InsertPos; |
| 982 | // Skip debug info between condition and branch. |
| 983 | while (InsertPos != BIParent->begin() && isa<DbgInfoIntrinsic>(InsertPos)) |
Devang Patel | 3d0a9a3 | 2008-09-18 22:50:42 +0000 | [diff] [blame] | 984 | --InsertPos; |
Devang Patel | 20da1f0 | 2008-10-03 18:57:37 +0000 | [diff] [blame] | 985 | if (InsertPos == BrCond && !isa<PHINode>(BrCond)) { |
Devang Patel | 3d0a9a3 | 2008-09-18 22:50:42 +0000 | [diff] [blame] | 986 | SmallPtrSet<Instruction *, 4> BB1Insns; |
| 987 | for(BasicBlock::iterator BB1I = BB1->begin(), BB1E = BB1->end(); |
| 988 | BB1I != BB1E; ++BB1I) |
| 989 | BB1Insns.insert(BB1I); |
| 990 | for(Value::use_iterator UI = BrCond->use_begin(), UE = BrCond->use_end(); |
| 991 | UI != UE; ++UI) { |
| 992 | Instruction *Use = cast<Instruction>(*UI); |
| 993 | if (BB1Insns.count(Use)) { |
| 994 | // If BrCond uses the instruction that place it just before |
| 995 | // branch instruction. |
| 996 | InsertPos = BI; |
| 997 | break; |
| 998 | } |
| 999 | } |
| 1000 | } else |
| 1001 | InsertPos = BI; |
Devang Patel | 06b1e67 | 2009-03-06 06:00:17 +0000 | [diff] [blame] | 1002 | BIParent->getInstList().splice(InsertPos, BB1->getInstList(), HInst); |
Evan Cheng | 4d09efd | 2008-06-07 08:52:29 +0000 | [diff] [blame] | 1003 | |
| 1004 | // Create a select whose true value is the speculatively executed value and |
| 1005 | // false value is the previously determined FalseV. |
| 1006 | SelectInst *SI; |
| 1007 | if (Invert) |
Devang Patel | 06b1e67 | 2009-03-06 06:00:17 +0000 | [diff] [blame] | 1008 | SI = SelectInst::Create(BrCond, FalseV, HInst, |
| 1009 | FalseV->getName() + "." + HInst->getName(), BI); |
Evan Cheng | 4d09efd | 2008-06-07 08:52:29 +0000 | [diff] [blame] | 1010 | else |
Devang Patel | 06b1e67 | 2009-03-06 06:00:17 +0000 | [diff] [blame] | 1011 | SI = SelectInst::Create(BrCond, HInst, FalseV, |
| 1012 | HInst->getName() + "." + FalseV->getName(), BI); |
Evan Cheng | 4d09efd | 2008-06-07 08:52:29 +0000 | [diff] [blame] | 1013 | |
| 1014 | // Make the PHI node use the select for all incoming values for "then" and |
| 1015 | // "if" blocks. |
| 1016 | for (unsigned i = 0, e = PHIUses.size(); i != e; ++i) { |
| 1017 | PHINode *PN = PHIUses[i]; |
| 1018 | for (unsigned j = 0, ee = PN->getNumIncomingValues(); j != ee; ++j) |
| 1019 | if (PN->getIncomingBlock(j) == BB1 || |
| 1020 | PN->getIncomingBlock(j) == BIParent) |
| 1021 | PN->setIncomingValue(j, SI); |
| 1022 | } |
| 1023 | |
Evan Cheng | 502a4f5 | 2008-06-12 21:15:59 +0000 | [diff] [blame] | 1024 | ++NumSpeculations; |
Evan Cheng | 4d09efd | 2008-06-07 08:52:29 +0000 | [diff] [blame] | 1025 | return true; |
| 1026 | } |
| 1027 | |
Chris Lattner | 2e42e36 | 2005-09-20 00:43:16 +0000 | [diff] [blame] | 1028 | /// BlockIsSimpleEnoughToThreadThrough - Return true if we can thread a branch |
| 1029 | /// across this block. |
| 1030 | static bool BlockIsSimpleEnoughToThreadThrough(BasicBlock *BB) { |
| 1031 | BranchInst *BI = cast<BranchInst>(BB->getTerminator()); |
Chris Lattner | e9487f0 | 2005-09-20 01:48:40 +0000 | [diff] [blame] | 1032 | unsigned Size = 0; |
| 1033 | |
Devang Patel | 9200c89 | 2009-03-10 18:00:05 +0000 | [diff] [blame] | 1034 | for (BasicBlock::iterator BBI = BB->begin(); &*BBI != BI; ++BBI) { |
Dale Johannesen | 8483e54 | 2009-03-12 23:18:09 +0000 | [diff] [blame] | 1035 | if (isa<DbgInfoIntrinsic>(BBI)) |
| 1036 | continue; |
Chris Lattner | e9487f0 | 2005-09-20 01:48:40 +0000 | [diff] [blame] | 1037 | if (Size > 10) return false; // Don't clone large BB's. |
Dale Johannesen | 8483e54 | 2009-03-12 23:18:09 +0000 | [diff] [blame] | 1038 | ++Size; |
Chris Lattner | 2e42e36 | 2005-09-20 00:43:16 +0000 | [diff] [blame] | 1039 | |
Dale Johannesen | 8483e54 | 2009-03-12 23:18:09 +0000 | [diff] [blame] | 1040 | // We can only support instructions that do not define values that are |
Chris Lattner | e9487f0 | 2005-09-20 01:48:40 +0000 | [diff] [blame] | 1041 | // live outside of the current basic block. |
| 1042 | for (Value::use_iterator UI = BBI->use_begin(), E = BBI->use_end(); |
| 1043 | UI != E; ++UI) { |
| 1044 | Instruction *U = cast<Instruction>(*UI); |
| 1045 | if (U->getParent() != BB || isa<PHINode>(U)) return false; |
| 1046 | } |
Chris Lattner | 2e42e36 | 2005-09-20 00:43:16 +0000 | [diff] [blame] | 1047 | |
| 1048 | // Looks ok, continue checking. |
| 1049 | } |
Chris Lattner | e9487f0 | 2005-09-20 01:48:40 +0000 | [diff] [blame] | 1050 | |
Chris Lattner | 2e42e36 | 2005-09-20 00:43:16 +0000 | [diff] [blame] | 1051 | return true; |
| 1052 | } |
| 1053 | |
Chris Lattner | eaba3a1 | 2005-09-19 23:49:37 +0000 | [diff] [blame] | 1054 | /// FoldCondBranchOnPHI - If we have a conditional branch on a PHI node value |
| 1055 | /// that is defined in the same block as the branch and if any PHI entries are |
| 1056 | /// constants, thread edges corresponding to that entry to be branches to their |
| 1057 | /// ultimate destination. |
| 1058 | static bool FoldCondBranchOnPHI(BranchInst *BI) { |
| 1059 | BasicBlock *BB = BI->getParent(); |
| 1060 | PHINode *PN = dyn_cast<PHINode>(BI->getCondition()); |
Chris Lattner | 9c88d98 | 2005-09-19 23:57:04 +0000 | [diff] [blame] | 1061 | // NOTE: we currently cannot transform this case if the PHI node is used |
| 1062 | // outside of the block. |
Chris Lattner | 2e42e36 | 2005-09-20 00:43:16 +0000 | [diff] [blame] | 1063 | if (!PN || PN->getParent() != BB || !PN->hasOneUse()) |
| 1064 | return false; |
Chris Lattner | eaba3a1 | 2005-09-19 23:49:37 +0000 | [diff] [blame] | 1065 | |
| 1066 | // Degenerate case of a single entry PHI. |
| 1067 | if (PN->getNumIncomingValues() == 1) { |
Chris Lattner | 29874e0 | 2008-12-03 19:44:02 +0000 | [diff] [blame] | 1068 | FoldSingleEntryPHINodes(PN->getParent()); |
Chris Lattner | eaba3a1 | 2005-09-19 23:49:37 +0000 | [diff] [blame] | 1069 | return true; |
| 1070 | } |
| 1071 | |
| 1072 | // Now we know that this block has multiple preds and two succs. |
Chris Lattner | 2e42e36 | 2005-09-20 00:43:16 +0000 | [diff] [blame] | 1073 | if (!BlockIsSimpleEnoughToThreadThrough(BB)) return false; |
Chris Lattner | eaba3a1 | 2005-09-19 23:49:37 +0000 | [diff] [blame] | 1074 | |
| 1075 | // Okay, this is a simple enough basic block. See if any phi values are |
| 1076 | // constants. |
Zhou Sheng | 6b6b6ef | 2007-01-11 12:24:14 +0000 | [diff] [blame] | 1077 | for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) { |
| 1078 | ConstantInt *CB; |
| 1079 | if ((CB = dyn_cast<ConstantInt>(PN->getIncomingValue(i))) && |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1080 | CB->getType()->isIntegerTy(1)) { |
Chris Lattner | eaba3a1 | 2005-09-19 23:49:37 +0000 | [diff] [blame] | 1081 | // Okay, we now know that all edges from PredBB should be revectored to |
| 1082 | // branch to RealDest. |
| 1083 | BasicBlock *PredBB = PN->getIncomingBlock(i); |
Reid Spencer | 579dca1 | 2007-01-12 04:24:46 +0000 | [diff] [blame] | 1084 | BasicBlock *RealDest = BI->getSuccessor(!CB->getZExtValue()); |
Chris Lattner | eaba3a1 | 2005-09-19 23:49:37 +0000 | [diff] [blame] | 1085 | |
Chris Lattner | e9487f0 | 2005-09-20 01:48:40 +0000 | [diff] [blame] | 1086 | if (RealDest == BB) continue; // Skip self loops. |
Chris Lattner | eaba3a1 | 2005-09-19 23:49:37 +0000 | [diff] [blame] | 1087 | |
Chris Lattner | e9487f0 | 2005-09-20 01:48:40 +0000 | [diff] [blame] | 1088 | // The dest block might have PHI nodes, other predecessors and other |
| 1089 | // difficult cases. Instead of being smart about this, just insert a new |
| 1090 | // block that jumps to the destination block, effectively splitting |
| 1091 | // the edge we are about to create. |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 1092 | BasicBlock *EdgeBB = BasicBlock::Create(BB->getContext(), |
| 1093 | RealDest->getName()+".critedge", |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 1094 | RealDest->getParent(), RealDest); |
| 1095 | BranchInst::Create(RealDest, EdgeBB); |
Chris Lattner | e9487f0 | 2005-09-20 01:48:40 +0000 | [diff] [blame] | 1096 | PHINode *PN; |
| 1097 | for (BasicBlock::iterator BBI = RealDest->begin(); |
| 1098 | (PN = dyn_cast<PHINode>(BBI)); ++BBI) { |
| 1099 | Value *V = PN->getIncomingValueForBlock(BB); |
| 1100 | PN->addIncoming(V, EdgeBB); |
| 1101 | } |
| 1102 | |
| 1103 | // BB may have instructions that are being threaded over. Clone these |
| 1104 | // instructions into EdgeBB. We know that there will be no uses of the |
| 1105 | // cloned instructions outside of EdgeBB. |
| 1106 | BasicBlock::iterator InsertPt = EdgeBB->begin(); |
| 1107 | std::map<Value*, Value*> TranslateMap; // Track translated values. |
| 1108 | for (BasicBlock::iterator BBI = BB->begin(); &*BBI != BI; ++BBI) { |
| 1109 | if (PHINode *PN = dyn_cast<PHINode>(BBI)) { |
| 1110 | TranslateMap[PN] = PN->getIncomingValueForBlock(PredBB); |
| 1111 | } else { |
| 1112 | // Clone the instruction. |
Nick Lewycky | 6776064 | 2009-09-27 07:38:41 +0000 | [diff] [blame] | 1113 | Instruction *N = BBI->clone(); |
Chris Lattner | e9487f0 | 2005-09-20 01:48:40 +0000 | [diff] [blame] | 1114 | if (BBI->hasName()) N->setName(BBI->getName()+".c"); |
| 1115 | |
| 1116 | // Update operands due to translation. |
Gabor Greif | f7ea363 | 2008-06-10 22:03:26 +0000 | [diff] [blame] | 1117 | for (User::op_iterator i = N->op_begin(), e = N->op_end(); |
| 1118 | i != e; ++i) { |
Chris Lattner | e9487f0 | 2005-09-20 01:48:40 +0000 | [diff] [blame] | 1119 | std::map<Value*, Value*>::iterator PI = |
Gabor Greif | f7ea363 | 2008-06-10 22:03:26 +0000 | [diff] [blame] | 1120 | TranslateMap.find(*i); |
Chris Lattner | e9487f0 | 2005-09-20 01:48:40 +0000 | [diff] [blame] | 1121 | if (PI != TranslateMap.end()) |
Gabor Greif | f7ea363 | 2008-06-10 22:03:26 +0000 | [diff] [blame] | 1122 | *i = PI->second; |
Chris Lattner | e9487f0 | 2005-09-20 01:48:40 +0000 | [diff] [blame] | 1123 | } |
| 1124 | |
| 1125 | // Check for trivial simplification. |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1126 | if (Constant *C = ConstantFoldInstruction(N)) { |
Chris Lattner | e9487f0 | 2005-09-20 01:48:40 +0000 | [diff] [blame] | 1127 | TranslateMap[BBI] = C; |
| 1128 | delete N; // Constant folded away, don't need actual inst |
| 1129 | } else { |
| 1130 | // Insert the new instruction into its new home. |
| 1131 | EdgeBB->getInstList().insert(InsertPt, N); |
| 1132 | if (!BBI->use_empty()) |
| 1133 | TranslateMap[BBI] = N; |
| 1134 | } |
| 1135 | } |
| 1136 | } |
| 1137 | |
Chris Lattner | eaba3a1 | 2005-09-19 23:49:37 +0000 | [diff] [blame] | 1138 | // Loop over all of the edges from PredBB to BB, changing them to branch |
Chris Lattner | e9487f0 | 2005-09-20 01:48:40 +0000 | [diff] [blame] | 1139 | // to EdgeBB instead. |
Chris Lattner | eaba3a1 | 2005-09-19 23:49:37 +0000 | [diff] [blame] | 1140 | TerminatorInst *PredBBTI = PredBB->getTerminator(); |
| 1141 | for (unsigned i = 0, e = PredBBTI->getNumSuccessors(); i != e; ++i) |
| 1142 | if (PredBBTI->getSuccessor(i) == BB) { |
| 1143 | BB->removePredecessor(PredBB); |
Chris Lattner | e9487f0 | 2005-09-20 01:48:40 +0000 | [diff] [blame] | 1144 | PredBBTI->setSuccessor(i, EdgeBB); |
Chris Lattner | eaba3a1 | 2005-09-19 23:49:37 +0000 | [diff] [blame] | 1145 | } |
| 1146 | |
Chris Lattner | eaba3a1 | 2005-09-19 23:49:37 +0000 | [diff] [blame] | 1147 | // Recurse, simplifying any other constants. |
| 1148 | return FoldCondBranchOnPHI(BI) | true; |
| 1149 | } |
Zhou Sheng | 6b6b6ef | 2007-01-11 12:24:14 +0000 | [diff] [blame] | 1150 | } |
Chris Lattner | eaba3a1 | 2005-09-19 23:49:37 +0000 | [diff] [blame] | 1151 | |
| 1152 | return false; |
| 1153 | } |
| 1154 | |
Chris Lattner | f58c1a5 | 2005-09-23 06:39:30 +0000 | [diff] [blame] | 1155 | /// FoldTwoEntryPHINode - Given a BB that starts with the specified two-entry |
| 1156 | /// PHI node, see if we can eliminate it. |
| 1157 | static bool FoldTwoEntryPHINode(PHINode *PN) { |
| 1158 | // Ok, this is a two entry PHI node. Check to see if this is a simple "if |
| 1159 | // statement", which has a very simple dominance structure. Basically, we |
| 1160 | // are trying to find the condition that is being branched on, which |
| 1161 | // subsequently causes this merge to happen. We really want control |
| 1162 | // dependence information for this check, but simplifycfg can't keep it up |
| 1163 | // to date, and this catches most of the cases we care about anyway. |
| 1164 | // |
| 1165 | BasicBlock *BB = PN->getParent(); |
| 1166 | BasicBlock *IfTrue, *IfFalse; |
| 1167 | Value *IfCond = GetIfCondition(BB, IfTrue, IfFalse); |
| 1168 | if (!IfCond) return false; |
| 1169 | |
Chris Lattner | 822a879 | 2006-11-18 19:19:36 +0000 | [diff] [blame] | 1170 | // Okay, we found that we can merge this two-entry phi node into a select. |
| 1171 | // Doing so would require us to fold *all* two entry phi nodes in this block. |
| 1172 | // At some point this becomes non-profitable (particularly if the target |
| 1173 | // doesn't support cmov's). Only do this transformation if there are two or |
| 1174 | // fewer PHI nodes in this block. |
| 1175 | unsigned NumPhis = 0; |
| 1176 | for (BasicBlock::iterator I = BB->begin(); isa<PHINode>(I); ++NumPhis, ++I) |
| 1177 | if (NumPhis > 2) |
| 1178 | return false; |
| 1179 | |
David Greene | 89d6fd3 | 2010-01-05 01:26:52 +0000 | [diff] [blame] | 1180 | DEBUG(dbgs() << "FOUND IF CONDITION! " << *IfCond << " T: " |
Daniel Dunbar | ce63ffb | 2009-07-25 00:23:56 +0000 | [diff] [blame] | 1181 | << IfTrue->getName() << " F: " << IfFalse->getName() << "\n"); |
Chris Lattner | f58c1a5 | 2005-09-23 06:39:30 +0000 | [diff] [blame] | 1182 | |
| 1183 | // Loop over the PHI's seeing if we can promote them all to select |
| 1184 | // instructions. While we are at it, keep track of the instructions |
| 1185 | // that need to be moved to the dominating block. |
| 1186 | std::set<Instruction*> AggressiveInsts; |
| 1187 | |
Chris Lattner | f58c1a5 | 2005-09-23 06:39:30 +0000 | [diff] [blame] | 1188 | BasicBlock::iterator AfterPHIIt = BB->begin(); |
| 1189 | while (isa<PHINode>(AfterPHIIt)) { |
| 1190 | PHINode *PN = cast<PHINode>(AfterPHIIt++); |
| 1191 | if (PN->getIncomingValue(0) == PN->getIncomingValue(1)) { |
| 1192 | if (PN->getIncomingValue(0) != PN) |
| 1193 | PN->replaceAllUsesWith(PN->getIncomingValue(0)); |
| 1194 | else |
Owen Anderson | 9e9a0d5 | 2009-07-30 23:03:37 +0000 | [diff] [blame] | 1195 | PN->replaceAllUsesWith(UndefValue::get(PN->getType())); |
Chris Lattner | f58c1a5 | 2005-09-23 06:39:30 +0000 | [diff] [blame] | 1196 | } else if (!DominatesMergePoint(PN->getIncomingValue(0), BB, |
| 1197 | &AggressiveInsts) || |
| 1198 | !DominatesMergePoint(PN->getIncomingValue(1), BB, |
| 1199 | &AggressiveInsts)) { |
Chris Lattner | 055dc10 | 2005-09-23 07:23:18 +0000 | [diff] [blame] | 1200 | return false; |
Chris Lattner | f58c1a5 | 2005-09-23 06:39:30 +0000 | [diff] [blame] | 1201 | } |
| 1202 | } |
| 1203 | |
Chris Lattner | f58c1a5 | 2005-09-23 06:39:30 +0000 | [diff] [blame] | 1204 | // If we all PHI nodes are promotable, check to make sure that all |
| 1205 | // instructions in the predecessor blocks can be promoted as well. If |
| 1206 | // not, we won't be able to get rid of the control flow, so it's not |
| 1207 | // worth promoting to select instructions. |
| 1208 | BasicBlock *DomBlock = 0, *IfBlock1 = 0, *IfBlock2 = 0; |
| 1209 | PN = cast<PHINode>(BB->begin()); |
| 1210 | BasicBlock *Pred = PN->getIncomingBlock(0); |
| 1211 | if (cast<BranchInst>(Pred->getTerminator())->isUnconditional()) { |
| 1212 | IfBlock1 = Pred; |
| 1213 | DomBlock = *pred_begin(Pred); |
| 1214 | for (BasicBlock::iterator I = Pred->begin(); |
| 1215 | !isa<TerminatorInst>(I); ++I) |
Devang Patel | 383d7ed | 2009-02-03 22:12:02 +0000 | [diff] [blame] | 1216 | if (!AggressiveInsts.count(I) && !isa<DbgInfoIntrinsic>(I)) { |
Chris Lattner | f58c1a5 | 2005-09-23 06:39:30 +0000 | [diff] [blame] | 1217 | // This is not an aggressive instruction that we can promote. |
| 1218 | // Because of this, we won't be able to get rid of the control |
| 1219 | // flow, so the xform is not worth it. |
| 1220 | return false; |
| 1221 | } |
| 1222 | } |
| 1223 | |
| 1224 | Pred = PN->getIncomingBlock(1); |
| 1225 | if (cast<BranchInst>(Pred->getTerminator())->isUnconditional()) { |
| 1226 | IfBlock2 = Pred; |
| 1227 | DomBlock = *pred_begin(Pred); |
| 1228 | for (BasicBlock::iterator I = Pred->begin(); |
| 1229 | !isa<TerminatorInst>(I); ++I) |
Devang Patel | 383d7ed | 2009-02-03 22:12:02 +0000 | [diff] [blame] | 1230 | if (!AggressiveInsts.count(I) && !isa<DbgInfoIntrinsic>(I)) { |
Chris Lattner | f58c1a5 | 2005-09-23 06:39:30 +0000 | [diff] [blame] | 1231 | // This is not an aggressive instruction that we can promote. |
| 1232 | // Because of this, we won't be able to get rid of the control |
| 1233 | // flow, so the xform is not worth it. |
| 1234 | return false; |
| 1235 | } |
| 1236 | } |
| 1237 | |
| 1238 | // If we can still promote the PHI nodes after this gauntlet of tests, |
| 1239 | // do all of the PHI's now. |
| 1240 | |
| 1241 | // Move all 'aggressive' instructions, which are defined in the |
| 1242 | // conditional parts of the if's up to the dominating block. |
| 1243 | if (IfBlock1) { |
| 1244 | DomBlock->getInstList().splice(DomBlock->getTerminator(), |
| 1245 | IfBlock1->getInstList(), |
| 1246 | IfBlock1->begin(), |
| 1247 | IfBlock1->getTerminator()); |
| 1248 | } |
| 1249 | if (IfBlock2) { |
| 1250 | DomBlock->getInstList().splice(DomBlock->getTerminator(), |
| 1251 | IfBlock2->getInstList(), |
| 1252 | IfBlock2->begin(), |
| 1253 | IfBlock2->getTerminator()); |
| 1254 | } |
| 1255 | |
| 1256 | while (PHINode *PN = dyn_cast<PHINode>(BB->begin())) { |
| 1257 | // Change the PHI node into a select instruction. |
| 1258 | Value *TrueVal = |
| 1259 | PN->getIncomingValue(PN->getIncomingBlock(0) == IfFalse); |
| 1260 | Value *FalseVal = |
| 1261 | PN->getIncomingValue(PN->getIncomingBlock(0) == IfTrue); |
| 1262 | |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 1263 | Value *NV = SelectInst::Create(IfCond, TrueVal, FalseVal, "", AfterPHIIt); |
Chris Lattner | 86cc423 | 2007-02-11 01:37:51 +0000 | [diff] [blame] | 1264 | PN->replaceAllUsesWith(NV); |
| 1265 | NV->takeName(PN); |
| 1266 | |
Chris Lattner | f58c1a5 | 2005-09-23 06:39:30 +0000 | [diff] [blame] | 1267 | BB->getInstList().erase(PN); |
| 1268 | } |
| 1269 | return true; |
| 1270 | } |
Chris Lattner | eaba3a1 | 2005-09-19 23:49:37 +0000 | [diff] [blame] | 1271 | |
Devang Patel | 998cbb0 | 2009-02-05 21:46:41 +0000 | [diff] [blame] | 1272 | /// isTerminatorFirstRelevantInsn - Return true if Term is very first |
| 1273 | /// instruction ignoring Phi nodes and dbg intrinsics. |
| 1274 | static bool isTerminatorFirstRelevantInsn(BasicBlock *BB, Instruction *Term) { |
| 1275 | BasicBlock::iterator BBI = Term; |
| 1276 | while (BBI != BB->begin()) { |
| 1277 | --BBI; |
| 1278 | if (!isa<DbgInfoIntrinsic>(BBI)) |
| 1279 | break; |
| 1280 | } |
Devang Patel | 0464a14 | 2009-02-10 22:14:17 +0000 | [diff] [blame] | 1281 | |
| 1282 | if (isa<PHINode>(BBI) || &*BBI == Term || isa<DbgInfoIntrinsic>(BBI)) |
Devang Patel | 998cbb0 | 2009-02-05 21:46:41 +0000 | [diff] [blame] | 1283 | return true; |
| 1284 | return false; |
| 1285 | } |
| 1286 | |
Chris Lattner | c9e495c | 2008-04-24 00:01:19 +0000 | [diff] [blame] | 1287 | /// SimplifyCondBranchToTwoReturns - If we found a conditional branch that goes |
| 1288 | /// to two returning blocks, try to merge them together into one return, |
| 1289 | /// introducing a select if the return values disagree. |
| 1290 | static bool SimplifyCondBranchToTwoReturns(BranchInst *BI) { |
| 1291 | assert(BI->isConditional() && "Must be a conditional branch"); |
| 1292 | BasicBlock *TrueSucc = BI->getSuccessor(0); |
| 1293 | BasicBlock *FalseSucc = BI->getSuccessor(1); |
| 1294 | ReturnInst *TrueRet = cast<ReturnInst>(TrueSucc->getTerminator()); |
| 1295 | ReturnInst *FalseRet = cast<ReturnInst>(FalseSucc->getTerminator()); |
| 1296 | |
| 1297 | // Check to ensure both blocks are empty (just a return) or optionally empty |
| 1298 | // with PHI nodes. If there are other instructions, merging would cause extra |
| 1299 | // computation on one path or the other. |
Devang Patel | 2cc86a1 | 2009-02-05 00:30:42 +0000 | [diff] [blame] | 1300 | if (!isTerminatorFirstRelevantInsn(TrueSucc, TrueRet)) |
| 1301 | return false; |
| 1302 | if (!isTerminatorFirstRelevantInsn(FalseSucc, FalseRet)) |
| 1303 | return false; |
Chris Lattner | c9e495c | 2008-04-24 00:01:19 +0000 | [diff] [blame] | 1304 | |
| 1305 | // Okay, we found a branch that is going to two return nodes. If |
| 1306 | // there is no return value for this function, just change the |
| 1307 | // branch into a return. |
| 1308 | if (FalseRet->getNumOperands() == 0) { |
| 1309 | TrueSucc->removePredecessor(BI->getParent()); |
| 1310 | FalseSucc->removePredecessor(BI->getParent()); |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 1311 | ReturnInst::Create(BI->getContext(), 0, BI); |
Eli Friedman | 080efb8 | 2008-12-16 20:54:32 +0000 | [diff] [blame] | 1312 | EraseTerminatorInstAndDCECond(BI); |
Chris Lattner | c9e495c | 2008-04-24 00:01:19 +0000 | [diff] [blame] | 1313 | return true; |
| 1314 | } |
| 1315 | |
Dan Gohman | fc74abf | 2008-07-23 00:34:11 +0000 | [diff] [blame] | 1316 | // Otherwise, figure out what the true and false return values are |
| 1317 | // so we can insert a new select instruction. |
| 1318 | Value *TrueValue = TrueRet->getReturnValue(); |
| 1319 | Value *FalseValue = FalseRet->getReturnValue(); |
Chris Lattner | c9e495c | 2008-04-24 00:01:19 +0000 | [diff] [blame] | 1320 | |
Dan Gohman | fc74abf | 2008-07-23 00:34:11 +0000 | [diff] [blame] | 1321 | // Unwrap any PHI nodes in the return blocks. |
| 1322 | if (PHINode *TVPN = dyn_cast_or_null<PHINode>(TrueValue)) |
| 1323 | if (TVPN->getParent() == TrueSucc) |
| 1324 | TrueValue = TVPN->getIncomingValueForBlock(BI->getParent()); |
| 1325 | if (PHINode *FVPN = dyn_cast_or_null<PHINode>(FalseValue)) |
| 1326 | if (FVPN->getParent() == FalseSucc) |
| 1327 | FalseValue = FVPN->getIncomingValueForBlock(BI->getParent()); |
| 1328 | |
| 1329 | // In order for this transformation to be safe, we must be able to |
| 1330 | // unconditionally execute both operands to the return. This is |
| 1331 | // normally the case, but we could have a potentially-trapping |
| 1332 | // constant expression that prevents this transformation from being |
| 1333 | // safe. |
| 1334 | if (ConstantExpr *TCV = dyn_cast_or_null<ConstantExpr>(TrueValue)) |
| 1335 | if (TCV->canTrap()) |
| 1336 | return false; |
| 1337 | if (ConstantExpr *FCV = dyn_cast_or_null<ConstantExpr>(FalseValue)) |
| 1338 | if (FCV->canTrap()) |
| 1339 | return false; |
| 1340 | |
Chris Lattner | c9e495c | 2008-04-24 00:01:19 +0000 | [diff] [blame] | 1341 | // Okay, we collected all the mapped values and checked them for sanity, and |
| 1342 | // defined to really do this transformation. First, update the CFG. |
| 1343 | TrueSucc->removePredecessor(BI->getParent()); |
| 1344 | FalseSucc->removePredecessor(BI->getParent()); |
| 1345 | |
| 1346 | // Insert select instructions where needed. |
| 1347 | Value *BrCond = BI->getCondition(); |
Dan Gohman | fc74abf | 2008-07-23 00:34:11 +0000 | [diff] [blame] | 1348 | if (TrueValue) { |
Chris Lattner | c9e495c | 2008-04-24 00:01:19 +0000 | [diff] [blame] | 1349 | // Insert a select if the results differ. |
Dan Gohman | fc74abf | 2008-07-23 00:34:11 +0000 | [diff] [blame] | 1350 | if (TrueValue == FalseValue || isa<UndefValue>(FalseValue)) { |
| 1351 | } else if (isa<UndefValue>(TrueValue)) { |
| 1352 | TrueValue = FalseValue; |
| 1353 | } else { |
| 1354 | TrueValue = SelectInst::Create(BrCond, TrueValue, |
| 1355 | FalseValue, "retval", BI); |
Chris Lattner | c9e495c | 2008-04-24 00:01:19 +0000 | [diff] [blame] | 1356 | } |
Chris Lattner | c9e495c | 2008-04-24 00:01:19 +0000 | [diff] [blame] | 1357 | } |
| 1358 | |
Dan Gohman | fc74abf | 2008-07-23 00:34:11 +0000 | [diff] [blame] | 1359 | Value *RI = !TrueValue ? |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 1360 | ReturnInst::Create(BI->getContext(), BI) : |
| 1361 | ReturnInst::Create(BI->getContext(), TrueValue, BI); |
Daniel Dunbar | e317bcc | 2009-08-23 10:29:55 +0000 | [diff] [blame] | 1362 | (void) RI; |
Chris Lattner | c9e495c | 2008-04-24 00:01:19 +0000 | [diff] [blame] | 1363 | |
David Greene | 89d6fd3 | 2010-01-05 01:26:52 +0000 | [diff] [blame] | 1364 | DEBUG(dbgs() << "\nCHANGING BRANCH TO TWO RETURNS INTO SELECT:" |
Chris Lattner | bdff548 | 2009-08-23 04:37:46 +0000 | [diff] [blame] | 1365 | << "\n " << *BI << "NewRet = " << *RI |
| 1366 | << "TRUEBLOCK: " << *TrueSucc << "FALSEBLOCK: "<< *FalseSucc); |
Chris Lattner | c9e495c | 2008-04-24 00:01:19 +0000 | [diff] [blame] | 1367 | |
Eli Friedman | 080efb8 | 2008-12-16 20:54:32 +0000 | [diff] [blame] | 1368 | EraseTerminatorInstAndDCECond(BI); |
| 1369 | |
Chris Lattner | c9e495c | 2008-04-24 00:01:19 +0000 | [diff] [blame] | 1370 | return true; |
| 1371 | } |
| 1372 | |
Chris Lattner | 1347e87 | 2008-07-13 21:12:01 +0000 | [diff] [blame] | 1373 | /// FoldBranchToCommonDest - If this basic block is ONLY a setcc and a branch, |
| 1374 | /// and if a predecessor branches to us and one of our successors, fold the |
| 1375 | /// setcc into the predecessor and use logical operations to pick the right |
| 1376 | /// destination. |
Dan Gohman | 4b35f83 | 2009-06-27 21:30:38 +0000 | [diff] [blame] | 1377 | bool llvm::FoldBranchToCommonDest(BranchInst *BI) { |
Chris Lattner | 093a438 | 2008-07-13 22:23:11 +0000 | [diff] [blame] | 1378 | BasicBlock *BB = BI->getParent(); |
Chris Lattner | 1347e87 | 2008-07-13 21:12:01 +0000 | [diff] [blame] | 1379 | Instruction *Cond = dyn_cast<Instruction>(BI->getCondition()); |
| 1380 | if (Cond == 0) return false; |
| 1381 | |
Chris Lattner | 093a438 | 2008-07-13 22:23:11 +0000 | [diff] [blame] | 1382 | |
Chris Lattner | 1347e87 | 2008-07-13 21:12:01 +0000 | [diff] [blame] | 1383 | // Only allow this if the condition is a simple instruction that can be |
| 1384 | // executed unconditionally. It must be in the same block as the branch, and |
| 1385 | // must be at the front of the block. |
Devang Patel | d0a203d | 2009-02-04 21:39:48 +0000 | [diff] [blame] | 1386 | BasicBlock::iterator FrontIt = BB->front(); |
| 1387 | // Ignore dbg intrinsics. |
| 1388 | while(isa<DbgInfoIntrinsic>(FrontIt)) |
| 1389 | ++FrontIt; |
Chris Lattner | 1347e87 | 2008-07-13 21:12:01 +0000 | [diff] [blame] | 1390 | if ((!isa<CmpInst>(Cond) && !isa<BinaryOperator>(Cond)) || |
Devang Patel | d0a203d | 2009-02-04 21:39:48 +0000 | [diff] [blame] | 1391 | Cond->getParent() != BB || &*FrontIt != Cond || !Cond->hasOneUse()) { |
Chris Lattner | 1347e87 | 2008-07-13 21:12:01 +0000 | [diff] [blame] | 1392 | return false; |
Devang Patel | d0a203d | 2009-02-04 21:39:48 +0000 | [diff] [blame] | 1393 | } |
Chris Lattner | 6ff645b | 2009-01-19 23:03:13 +0000 | [diff] [blame] | 1394 | |
Chris Lattner | 1347e87 | 2008-07-13 21:12:01 +0000 | [diff] [blame] | 1395 | // Make sure the instruction after the condition is the cond branch. |
| 1396 | BasicBlock::iterator CondIt = Cond; ++CondIt; |
Devang Patel | d0a203d | 2009-02-04 21:39:48 +0000 | [diff] [blame] | 1397 | // Ingore dbg intrinsics. |
| 1398 | while(isa<DbgInfoIntrinsic>(CondIt)) |
| 1399 | ++CondIt; |
| 1400 | if (&*CondIt != BI) { |
| 1401 | assert (!isa<DbgInfoIntrinsic>(CondIt) && "Hey do not forget debug info!"); |
Chris Lattner | 1347e87 | 2008-07-13 21:12:01 +0000 | [diff] [blame] | 1402 | return false; |
Devang Patel | d0a203d | 2009-02-04 21:39:48 +0000 | [diff] [blame] | 1403 | } |
Chris Lattner | 6ff645b | 2009-01-19 23:03:13 +0000 | [diff] [blame] | 1404 | |
| 1405 | // Cond is known to be a compare or binary operator. Check to make sure that |
| 1406 | // neither operand is a potentially-trapping constant expression. |
| 1407 | if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Cond->getOperand(0))) |
| 1408 | if (CE->canTrap()) |
| 1409 | return false; |
| 1410 | if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Cond->getOperand(1))) |
| 1411 | if (CE->canTrap()) |
| 1412 | return false; |
| 1413 | |
Chris Lattner | 1347e87 | 2008-07-13 21:12:01 +0000 | [diff] [blame] | 1414 | |
| 1415 | // Finally, don't infinitely unroll conditional loops. |
| 1416 | BasicBlock *TrueDest = BI->getSuccessor(0); |
| 1417 | BasicBlock *FalseDest = BI->getSuccessor(1); |
| 1418 | if (TrueDest == BB || FalseDest == BB) |
| 1419 | return false; |
| 1420 | |
| 1421 | for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) { |
| 1422 | BasicBlock *PredBlock = *PI; |
| 1423 | BranchInst *PBI = dyn_cast<BranchInst>(PredBlock->getTerminator()); |
Chris Lattner | 6ff645b | 2009-01-19 23:03:13 +0000 | [diff] [blame] | 1424 | |
Chris Lattner | 093a438 | 2008-07-13 22:23:11 +0000 | [diff] [blame] | 1425 | // Check that we have two conditional branches. If there is a PHI node in |
| 1426 | // the common successor, verify that the same value flows in from both |
| 1427 | // blocks. |
Chris Lattner | 1347e87 | 2008-07-13 21:12:01 +0000 | [diff] [blame] | 1428 | if (PBI == 0 || PBI->isUnconditional() || |
| 1429 | !SafeToMergeTerminators(BI, PBI)) |
| 1430 | continue; |
| 1431 | |
Chris Lattner | 3698909 | 2008-07-13 21:20:19 +0000 | [diff] [blame] | 1432 | Instruction::BinaryOps Opc; |
| 1433 | bool InvertPredCond = false; |
| 1434 | |
| 1435 | if (PBI->getSuccessor(0) == TrueDest) |
| 1436 | Opc = Instruction::Or; |
| 1437 | else if (PBI->getSuccessor(1) == FalseDest) |
| 1438 | Opc = Instruction::And; |
| 1439 | else if (PBI->getSuccessor(0) == FalseDest) |
| 1440 | Opc = Instruction::And, InvertPredCond = true; |
| 1441 | else if (PBI->getSuccessor(1) == TrueDest) |
| 1442 | Opc = Instruction::Or, InvertPredCond = true; |
| 1443 | else |
| 1444 | continue; |
| 1445 | |
David Greene | 89d6fd3 | 2010-01-05 01:26:52 +0000 | [diff] [blame] | 1446 | DEBUG(dbgs() << "FOLDING BRANCH TO COMMON DEST:\n" << *PBI << *BB); |
Chris Lattner | 6ff645b | 2009-01-19 23:03:13 +0000 | [diff] [blame] | 1447 | |
Chris Lattner | 3698909 | 2008-07-13 21:20:19 +0000 | [diff] [blame] | 1448 | // If we need to invert the condition in the pred block to match, do so now. |
| 1449 | if (InvertPredCond) { |
Chris Lattner | 1347e87 | 2008-07-13 21:12:01 +0000 | [diff] [blame] | 1450 | Value *NewCond = |
Dan Gohman | 4ae5126 | 2009-08-12 16:23:25 +0000 | [diff] [blame] | 1451 | BinaryOperator::CreateNot(PBI->getCondition(), |
Chris Lattner | 3698909 | 2008-07-13 21:20:19 +0000 | [diff] [blame] | 1452 | PBI->getCondition()->getName()+".not", PBI); |
Chris Lattner | 1347e87 | 2008-07-13 21:12:01 +0000 | [diff] [blame] | 1453 | PBI->setCondition(NewCond); |
| 1454 | BasicBlock *OldTrue = PBI->getSuccessor(0); |
| 1455 | BasicBlock *OldFalse = PBI->getSuccessor(1); |
| 1456 | PBI->setSuccessor(0, OldFalse); |
| 1457 | PBI->setSuccessor(1, OldTrue); |
| 1458 | } |
Chris Lattner | 70087f3 | 2008-07-13 21:15:11 +0000 | [diff] [blame] | 1459 | |
Chris Lattner | 3698909 | 2008-07-13 21:20:19 +0000 | [diff] [blame] | 1460 | // Clone Cond into the predecessor basic block, and or/and the |
| 1461 | // two conditions together. |
Nick Lewycky | 6776064 | 2009-09-27 07:38:41 +0000 | [diff] [blame] | 1462 | Instruction *New = Cond->clone(); |
Chris Lattner | 3698909 | 2008-07-13 21:20:19 +0000 | [diff] [blame] | 1463 | PredBlock->getInstList().insert(PBI, New); |
| 1464 | New->takeName(Cond); |
| 1465 | Cond->setName(New->getName()+".old"); |
Chris Lattner | 70087f3 | 2008-07-13 21:15:11 +0000 | [diff] [blame] | 1466 | |
Chris Lattner | 3698909 | 2008-07-13 21:20:19 +0000 | [diff] [blame] | 1467 | Value *NewCond = BinaryOperator::Create(Opc, PBI->getCondition(), |
| 1468 | New, "or.cond", PBI); |
| 1469 | PBI->setCondition(NewCond); |
| 1470 | if (PBI->getSuccessor(0) == BB) { |
| 1471 | AddPredecessorToBlock(TrueDest, PredBlock, BB); |
| 1472 | PBI->setSuccessor(0, TrueDest); |
Chris Lattner | 1347e87 | 2008-07-13 21:12:01 +0000 | [diff] [blame] | 1473 | } |
Chris Lattner | 3698909 | 2008-07-13 21:20:19 +0000 | [diff] [blame] | 1474 | if (PBI->getSuccessor(1) == BB) { |
| 1475 | AddPredecessorToBlock(FalseDest, PredBlock, BB); |
| 1476 | PBI->setSuccessor(1, FalseDest); |
| 1477 | } |
| 1478 | return true; |
Chris Lattner | 1347e87 | 2008-07-13 21:12:01 +0000 | [diff] [blame] | 1479 | } |
| 1480 | return false; |
| 1481 | } |
| 1482 | |
Chris Lattner | 867661a | 2008-07-13 21:53:26 +0000 | [diff] [blame] | 1483 | /// SimplifyCondBranchToCondBranch - If we have a conditional branch as a |
| 1484 | /// predecessor of another block, this function tries to simplify it. We know |
| 1485 | /// that PBI and BI are both conditional branches, and BI is in one of the |
| 1486 | /// successor blocks of PBI - PBI branches to BI. |
| 1487 | static bool SimplifyCondBranchToCondBranch(BranchInst *PBI, BranchInst *BI) { |
| 1488 | assert(PBI->isConditional() && BI->isConditional()); |
| 1489 | BasicBlock *BB = BI->getParent(); |
Dan Gohman | 4ae5126 | 2009-08-12 16:23:25 +0000 | [diff] [blame] | 1490 | |
Chris Lattner | 867661a | 2008-07-13 21:53:26 +0000 | [diff] [blame] | 1491 | // If this block ends with a branch instruction, and if there is a |
| 1492 | // predecessor that ends on a branch of the same condition, make |
| 1493 | // this conditional branch redundant. |
| 1494 | if (PBI->getCondition() == BI->getCondition() && |
| 1495 | PBI->getSuccessor(0) != PBI->getSuccessor(1)) { |
| 1496 | // Okay, the outcome of this conditional branch is statically |
| 1497 | // knowable. If this block had a single pred, handle specially. |
| 1498 | if (BB->getSinglePredecessor()) { |
| 1499 | // Turn this into a branch on constant. |
| 1500 | bool CondIsTrue = PBI->getSuccessor(0) == BB; |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 1501 | BI->setCondition(ConstantInt::get(Type::getInt1Ty(BB->getContext()), |
| 1502 | CondIsTrue)); |
Chris Lattner | 867661a | 2008-07-13 21:53:26 +0000 | [diff] [blame] | 1503 | return true; // Nuke the branch on constant. |
| 1504 | } |
| 1505 | |
| 1506 | // Otherwise, if there are multiple predecessors, insert a PHI that merges |
| 1507 | // in the constant and simplify the block result. Subsequent passes of |
| 1508 | // simplifycfg will thread the block. |
| 1509 | if (BlockIsSimpleEnoughToThreadThrough(BB)) { |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 1510 | PHINode *NewPN = PHINode::Create(Type::getInt1Ty(BB->getContext()), |
Chris Lattner | 867661a | 2008-07-13 21:53:26 +0000 | [diff] [blame] | 1511 | BI->getCondition()->getName() + ".pr", |
| 1512 | BB->begin()); |
Chris Lattner | eb388af | 2008-07-13 21:55:46 +0000 | [diff] [blame] | 1513 | // Okay, we're going to insert the PHI node. Since PBI is not the only |
| 1514 | // predecessor, compute the PHI'd conditional value for all of the preds. |
| 1515 | // Any predecessor where the condition is not computable we keep symbolic. |
Gabor Greif | 6253983 | 2010-07-12 10:59:23 +0000 | [diff] [blame^] | 1516 | for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) { |
| 1517 | BasicBlock *P = *PI; |
| 1518 | if ((PBI = dyn_cast<BranchInst>(P->getTerminator())) && |
Chris Lattner | 867661a | 2008-07-13 21:53:26 +0000 | [diff] [blame] | 1519 | PBI != BI && PBI->isConditional() && |
| 1520 | PBI->getCondition() == BI->getCondition() && |
| 1521 | PBI->getSuccessor(0) != PBI->getSuccessor(1)) { |
| 1522 | bool CondIsTrue = PBI->getSuccessor(0) == BB; |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 1523 | NewPN->addIncoming(ConstantInt::get(Type::getInt1Ty(BB->getContext()), |
Gabor Greif | 6253983 | 2010-07-12 10:59:23 +0000 | [diff] [blame^] | 1524 | CondIsTrue), P); |
Chris Lattner | 867661a | 2008-07-13 21:53:26 +0000 | [diff] [blame] | 1525 | } else { |
Gabor Greif | 6253983 | 2010-07-12 10:59:23 +0000 | [diff] [blame^] | 1526 | NewPN->addIncoming(BI->getCondition(), P); |
Chris Lattner | 867661a | 2008-07-13 21:53:26 +0000 | [diff] [blame] | 1527 | } |
Gabor Greif | 6253983 | 2010-07-12 10:59:23 +0000 | [diff] [blame^] | 1528 | } |
Chris Lattner | 867661a | 2008-07-13 21:53:26 +0000 | [diff] [blame] | 1529 | |
| 1530 | BI->setCondition(NewPN); |
Chris Lattner | 867661a | 2008-07-13 21:53:26 +0000 | [diff] [blame] | 1531 | return true; |
| 1532 | } |
| 1533 | } |
| 1534 | |
| 1535 | // If this is a conditional branch in an empty block, and if any |
| 1536 | // predecessors is a conditional branch to one of our destinations, |
| 1537 | // fold the conditions into logical ops and one cond br. |
Zhou Sheng | a8d57fe | 2009-02-26 06:56:37 +0000 | [diff] [blame] | 1538 | BasicBlock::iterator BBI = BB->begin(); |
| 1539 | // Ignore dbg intrinsics. |
| 1540 | while (isa<DbgInfoIntrinsic>(BBI)) |
| 1541 | ++BBI; |
| 1542 | if (&*BBI != BI) |
Chris Lattner | b824512 | 2008-07-13 22:04:41 +0000 | [diff] [blame] | 1543 | return false; |
Chris Lattner | 63bf29b | 2009-01-20 01:15:41 +0000 | [diff] [blame] | 1544 | |
| 1545 | |
| 1546 | if (ConstantExpr *CE = dyn_cast<ConstantExpr>(BI->getCondition())) |
| 1547 | if (CE->canTrap()) |
| 1548 | return false; |
Chris Lattner | b824512 | 2008-07-13 22:04:41 +0000 | [diff] [blame] | 1549 | |
| 1550 | int PBIOp, BIOp; |
| 1551 | if (PBI->getSuccessor(0) == BI->getSuccessor(0)) |
| 1552 | PBIOp = BIOp = 0; |
| 1553 | else if (PBI->getSuccessor(0) == BI->getSuccessor(1)) |
| 1554 | PBIOp = 0, BIOp = 1; |
| 1555 | else if (PBI->getSuccessor(1) == BI->getSuccessor(0)) |
| 1556 | PBIOp = 1, BIOp = 0; |
| 1557 | else if (PBI->getSuccessor(1) == BI->getSuccessor(1)) |
| 1558 | PBIOp = BIOp = 1; |
| 1559 | else |
| 1560 | return false; |
Chris Lattner | 867661a | 2008-07-13 21:53:26 +0000 | [diff] [blame] | 1561 | |
Chris Lattner | b824512 | 2008-07-13 22:04:41 +0000 | [diff] [blame] | 1562 | // Check to make sure that the other destination of this branch |
| 1563 | // isn't BB itself. If so, this is an infinite loop that will |
| 1564 | // keep getting unwound. |
| 1565 | if (PBI->getSuccessor(PBIOp) == BB) |
| 1566 | return false; |
Chris Lattner | 867661a | 2008-07-13 21:53:26 +0000 | [diff] [blame] | 1567 | |
Chris Lattner | b824512 | 2008-07-13 22:04:41 +0000 | [diff] [blame] | 1568 | // Do not perform this transformation if it would require |
| 1569 | // insertion of a large number of select instructions. For targets |
| 1570 | // without predication/cmovs, this is a big pessimization. |
| 1571 | BasicBlock *CommonDest = PBI->getSuccessor(PBIOp); |
Chris Lattner | 867661a | 2008-07-13 21:53:26 +0000 | [diff] [blame] | 1572 | |
Chris Lattner | b824512 | 2008-07-13 22:04:41 +0000 | [diff] [blame] | 1573 | unsigned NumPhis = 0; |
| 1574 | for (BasicBlock::iterator II = CommonDest->begin(); |
| 1575 | isa<PHINode>(II); ++II, ++NumPhis) |
| 1576 | if (NumPhis > 2) // Disable this xform. |
| 1577 | return false; |
Chris Lattner | 867661a | 2008-07-13 21:53:26 +0000 | [diff] [blame] | 1578 | |
Chris Lattner | b824512 | 2008-07-13 22:04:41 +0000 | [diff] [blame] | 1579 | // Finally, if everything is ok, fold the branches to logical ops. |
| 1580 | BasicBlock *OtherDest = BI->getSuccessor(BIOp ^ 1); |
| 1581 | |
David Greene | 89d6fd3 | 2010-01-05 01:26:52 +0000 | [diff] [blame] | 1582 | DEBUG(dbgs() << "FOLDING BRs:" << *PBI->getParent() |
Chris Lattner | bdff548 | 2009-08-23 04:37:46 +0000 | [diff] [blame] | 1583 | << "AND: " << *BI->getParent()); |
Chris Lattner | b824512 | 2008-07-13 22:04:41 +0000 | [diff] [blame] | 1584 | |
Chris Lattner | 093a438 | 2008-07-13 22:23:11 +0000 | [diff] [blame] | 1585 | |
| 1586 | // If OtherDest *is* BB, then BB is a basic block with a single conditional |
| 1587 | // branch in it, where one edge (OtherDest) goes back to itself but the other |
| 1588 | // exits. We don't *know* that the program avoids the infinite loop |
| 1589 | // (even though that seems likely). If we do this xform naively, we'll end up |
| 1590 | // recursively unpeeling the loop. Since we know that (after the xform is |
| 1591 | // done) that the block *is* infinite if reached, we just make it an obviously |
| 1592 | // infinite loop with no cond branch. |
| 1593 | if (OtherDest == BB) { |
| 1594 | // Insert it at the end of the function, because it's either code, |
| 1595 | // or it won't matter if it's hot. :) |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 1596 | BasicBlock *InfLoopBlock = BasicBlock::Create(BB->getContext(), |
| 1597 | "infloop", BB->getParent()); |
Chris Lattner | 093a438 | 2008-07-13 22:23:11 +0000 | [diff] [blame] | 1598 | BranchInst::Create(InfLoopBlock, InfLoopBlock); |
| 1599 | OtherDest = InfLoopBlock; |
| 1600 | } |
| 1601 | |
David Greene | 89d6fd3 | 2010-01-05 01:26:52 +0000 | [diff] [blame] | 1602 | DEBUG(dbgs() << *PBI->getParent()->getParent()); |
Chris Lattner | b824512 | 2008-07-13 22:04:41 +0000 | [diff] [blame] | 1603 | |
| 1604 | // BI may have other predecessors. Because of this, we leave |
| 1605 | // it alone, but modify PBI. |
| 1606 | |
| 1607 | // Make sure we get to CommonDest on True&True directions. |
| 1608 | Value *PBICond = PBI->getCondition(); |
| 1609 | if (PBIOp) |
Dan Gohman | 4ae5126 | 2009-08-12 16:23:25 +0000 | [diff] [blame] | 1610 | PBICond = BinaryOperator::CreateNot(PBICond, |
Chris Lattner | b824512 | 2008-07-13 22:04:41 +0000 | [diff] [blame] | 1611 | PBICond->getName()+".not", |
| 1612 | PBI); |
| 1613 | Value *BICond = BI->getCondition(); |
| 1614 | if (BIOp) |
Dan Gohman | 4ae5126 | 2009-08-12 16:23:25 +0000 | [diff] [blame] | 1615 | BICond = BinaryOperator::CreateNot(BICond, |
Chris Lattner | b824512 | 2008-07-13 22:04:41 +0000 | [diff] [blame] | 1616 | BICond->getName()+".not", |
| 1617 | PBI); |
| 1618 | // Merge the conditions. |
| 1619 | Value *Cond = BinaryOperator::CreateOr(PBICond, BICond, "brmerge", PBI); |
| 1620 | |
| 1621 | // Modify PBI to branch on the new condition to the new dests. |
| 1622 | PBI->setCondition(Cond); |
| 1623 | PBI->setSuccessor(0, CommonDest); |
| 1624 | PBI->setSuccessor(1, OtherDest); |
| 1625 | |
| 1626 | // OtherDest may have phi nodes. If so, add an entry from PBI's |
| 1627 | // block that are identical to the entries for BI's block. |
| 1628 | PHINode *PN; |
| 1629 | for (BasicBlock::iterator II = OtherDest->begin(); |
| 1630 | (PN = dyn_cast<PHINode>(II)); ++II) { |
| 1631 | Value *V = PN->getIncomingValueForBlock(BB); |
| 1632 | PN->addIncoming(V, PBI->getParent()); |
| 1633 | } |
| 1634 | |
| 1635 | // We know that the CommonDest already had an edge from PBI to |
| 1636 | // it. If it has PHIs though, the PHIs may have different |
| 1637 | // entries for BB and PBI's BB. If so, insert a select to make |
| 1638 | // them agree. |
| 1639 | for (BasicBlock::iterator II = CommonDest->begin(); |
| 1640 | (PN = dyn_cast<PHINode>(II)); ++II) { |
| 1641 | Value *BIV = PN->getIncomingValueForBlock(BB); |
| 1642 | unsigned PBBIdx = PN->getBasicBlockIndex(PBI->getParent()); |
| 1643 | Value *PBIV = PN->getIncomingValue(PBBIdx); |
| 1644 | if (BIV != PBIV) { |
| 1645 | // Insert a select in PBI to pick the right value. |
| 1646 | Value *NV = SelectInst::Create(PBICond, PBIV, BIV, |
| 1647 | PBIV->getName()+".mux", PBI); |
| 1648 | PN->setIncomingValue(PBBIdx, NV); |
Chris Lattner | 867661a | 2008-07-13 21:53:26 +0000 | [diff] [blame] | 1649 | } |
| 1650 | } |
Chris Lattner | b824512 | 2008-07-13 22:04:41 +0000 | [diff] [blame] | 1651 | |
David Greene | 89d6fd3 | 2010-01-05 01:26:52 +0000 | [diff] [blame] | 1652 | DEBUG(dbgs() << "INTO: " << *PBI->getParent()); |
| 1653 | DEBUG(dbgs() << *PBI->getParent()->getParent()); |
Chris Lattner | b824512 | 2008-07-13 22:04:41 +0000 | [diff] [blame] | 1654 | |
| 1655 | // This basic block is probably dead. We know it has at least |
| 1656 | // one fewer predecessor. |
| 1657 | return true; |
Chris Lattner | 867661a | 2008-07-13 21:53:26 +0000 | [diff] [blame] | 1658 | } |
| 1659 | |
Jakob Stoklund Olesen | 58e9ee8 | 2010-02-05 22:03:18 +0000 | [diff] [blame] | 1660 | bool SimplifyCFGOpt::run(BasicBlock *BB) { |
Chris Lattner | dc3602b | 2003-08-24 18:36:16 +0000 | [diff] [blame] | 1661 | bool Changed = false; |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 1662 | Function *M = BB->getParent(); |
| 1663 | |
| 1664 | assert(BB && BB->getParent() && "Block not embedded in function!"); |
| 1665 | assert(BB->getTerminator() && "Degenerate basic block encountered!"); |
Dan Gohman | ecb7a77 | 2007-03-22 16:38:57 +0000 | [diff] [blame] | 1666 | assert(&BB->getParent()->getEntryBlock() != BB && |
| 1667 | "Can't Simplify entry block!"); |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 1668 | |
Chris Lattner | 5a5c9a5 | 2008-11-27 07:54:38 +0000 | [diff] [blame] | 1669 | // Remove basic blocks that have no predecessors... or that just have themself |
| 1670 | // as a predecessor. These are unreachable. |
| 1671 | if (pred_begin(BB) == pred_end(BB) || BB->getSinglePredecessor() == BB) { |
David Greene | 89d6fd3 | 2010-01-05 01:26:52 +0000 | [diff] [blame] | 1672 | DEBUG(dbgs() << "Removing BB: \n" << *BB); |
Chris Lattner | 71af9b0 | 2008-12-03 06:40:52 +0000 | [diff] [blame] | 1673 | DeleteDeadBlock(BB); |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 1674 | return true; |
| 1675 | } |
| 1676 | |
Chris Lattner | 694e37f | 2003-08-17 19:41:53 +0000 | [diff] [blame] | 1677 | // Check to see if we can constant propagate this terminator instruction |
| 1678 | // away... |
Chris Lattner | dc3602b | 2003-08-24 18:36:16 +0000 | [diff] [blame] | 1679 | Changed |= ConstantFoldTerminator(BB); |
Chris Lattner | 694e37f | 2003-08-17 19:41:53 +0000 | [diff] [blame] | 1680 | |
Dan Gohman | 2c63566 | 2009-10-30 22:39:04 +0000 | [diff] [blame] | 1681 | // Check for and eliminate duplicate PHI nodes in this block. |
| 1682 | Changed |= EliminateDuplicatePHINodes(BB); |
| 1683 | |
Dan Gohman | 882d87d | 2008-03-11 21:53:06 +0000 | [diff] [blame] | 1684 | // If there is a trivial two-entry PHI node in this basic block, and we can |
| 1685 | // eliminate it, do so now. |
| 1686 | if (PHINode *PN = dyn_cast<PHINode>(BB->begin())) |
| 1687 | if (PN->getNumIncomingValues() == 2) |
| 1688 | Changed |= FoldTwoEntryPHINode(PN); |
| 1689 | |
Chris Lattner | 19831ec | 2004-02-16 06:35:48 +0000 | [diff] [blame] | 1690 | // If this is a returning block with only PHI nodes in it, fold the return |
| 1691 | // instruction into any unconditional branch predecessors. |
Chris Lattner | 147af6b | 2004-04-02 18:13:43 +0000 | [diff] [blame] | 1692 | // |
| 1693 | // If any predecessor is a conditional branch that just selects among |
| 1694 | // different return values, fold the replace the branch/return with a select |
| 1695 | // and return. |
Chris Lattner | 19831ec | 2004-02-16 06:35:48 +0000 | [diff] [blame] | 1696 | if (ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator())) { |
Devang Patel | 2cc86a1 | 2009-02-05 00:30:42 +0000 | [diff] [blame] | 1697 | if (isTerminatorFirstRelevantInsn(BB, BB->getTerminator())) { |
Chris Lattner | 147af6b | 2004-04-02 18:13:43 +0000 | [diff] [blame] | 1698 | // Find predecessors that end with branches. |
Chris Lattner | 8244243 | 2008-02-18 07:42:56 +0000 | [diff] [blame] | 1699 | SmallVector<BasicBlock*, 8> UncondBranchPreds; |
| 1700 | SmallVector<BranchInst*, 8> CondBranchPreds; |
Chris Lattner | 19831ec | 2004-02-16 06:35:48 +0000 | [diff] [blame] | 1701 | for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) { |
Gabor Greif | 5896935 | 2010-07-09 15:25:09 +0000 | [diff] [blame] | 1702 | BasicBlock *P = *PI; |
| 1703 | TerminatorInst *PTI = P->getTerminator(); |
Anton Korobeynikov | 07e6e56 | 2008-02-20 11:26:25 +0000 | [diff] [blame] | 1704 | if (BranchInst *BI = dyn_cast<BranchInst>(PTI)) { |
Chris Lattner | 19831ec | 2004-02-16 06:35:48 +0000 | [diff] [blame] | 1705 | if (BI->isUnconditional()) |
Gabor Greif | 5896935 | 2010-07-09 15:25:09 +0000 | [diff] [blame] | 1706 | UncondBranchPreds.push_back(P); |
Chris Lattner | 147af6b | 2004-04-02 18:13:43 +0000 | [diff] [blame] | 1707 | else |
| 1708 | CondBranchPreds.push_back(BI); |
Anton Korobeynikov | 07e6e56 | 2008-02-20 11:26:25 +0000 | [diff] [blame] | 1709 | } |
Chris Lattner | 19831ec | 2004-02-16 06:35:48 +0000 | [diff] [blame] | 1710 | } |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1711 | |
Chris Lattner | 19831ec | 2004-02-16 06:35:48 +0000 | [diff] [blame] | 1712 | // If we found some, do the transformation! |
Bill Wendling | 1c85503 | 2009-03-03 19:25:16 +0000 | [diff] [blame] | 1713 | if (!UncondBranchPreds.empty()) { |
Chris Lattner | 19831ec | 2004-02-16 06:35:48 +0000 | [diff] [blame] | 1714 | while (!UncondBranchPreds.empty()) { |
Dan Gohman | e9d87f4 | 2009-05-06 17:22:41 +0000 | [diff] [blame] | 1715 | BasicBlock *Pred = UncondBranchPreds.pop_back_val(); |
David Greene | 89d6fd3 | 2010-01-05 01:26:52 +0000 | [diff] [blame] | 1716 | DEBUG(dbgs() << "FOLDING: " << *BB |
Chris Lattner | bdff548 | 2009-08-23 04:37:46 +0000 | [diff] [blame] | 1717 | << "INTO UNCOND BRANCH PRED: " << *Pred); |
Chris Lattner | 19831ec | 2004-02-16 06:35:48 +0000 | [diff] [blame] | 1718 | Instruction *UncondBranch = Pred->getTerminator(); |
| 1719 | // Clone the return and add it to the end of the predecessor. |
Nick Lewycky | 6776064 | 2009-09-27 07:38:41 +0000 | [diff] [blame] | 1720 | Instruction *NewRet = RI->clone(); |
Chris Lattner | 19831ec | 2004-02-16 06:35:48 +0000 | [diff] [blame] | 1721 | Pred->getInstList().push_back(NewRet); |
| 1722 | |
| 1723 | // If the return instruction returns a value, and if the value was a |
| 1724 | // PHI node in "BB", propagate the right value into the return. |
Gabor Greif | f7ea363 | 2008-06-10 22:03:26 +0000 | [diff] [blame] | 1725 | for (User::op_iterator i = NewRet->op_begin(), e = NewRet->op_end(); |
| 1726 | i != e; ++i) |
| 1727 | if (PHINode *PN = dyn_cast<PHINode>(*i)) |
Chris Lattner | 19831ec | 2004-02-16 06:35:48 +0000 | [diff] [blame] | 1728 | if (PN->getParent() == BB) |
Gabor Greif | f7ea363 | 2008-06-10 22:03:26 +0000 | [diff] [blame] | 1729 | *i = PN->getIncomingValueForBlock(Pred); |
Chris Lattner | ffba582 | 2008-04-28 00:19:07 +0000 | [diff] [blame] | 1730 | |
Chris Lattner | 19831ec | 2004-02-16 06:35:48 +0000 | [diff] [blame] | 1731 | // Update any PHI nodes in the returning block to realize that we no |
| 1732 | // longer branch to them. |
| 1733 | BB->removePredecessor(Pred); |
| 1734 | Pred->getInstList().erase(UncondBranch); |
| 1735 | } |
| 1736 | |
| 1737 | // If we eliminated all predecessors of the block, delete the block now. |
| 1738 | if (pred_begin(BB) == pred_end(BB)) |
| 1739 | // We know there are no successors, so just nuke the block. |
Devang Patel | 5622f07 | 2009-02-24 00:05:16 +0000 | [diff] [blame] | 1740 | M->getBasicBlockList().erase(BB); |
Chris Lattner | 19831ec | 2004-02-16 06:35:48 +0000 | [diff] [blame] | 1741 | |
Chris Lattner | 19831ec | 2004-02-16 06:35:48 +0000 | [diff] [blame] | 1742 | return true; |
| 1743 | } |
Chris Lattner | 147af6b | 2004-04-02 18:13:43 +0000 | [diff] [blame] | 1744 | |
| 1745 | // Check out all of the conditional branches going to this return |
| 1746 | // instruction. If any of them just select between returns, change the |
| 1747 | // branch itself into a select/return pair. |
| 1748 | while (!CondBranchPreds.empty()) { |
Dan Gohman | e9d87f4 | 2009-05-06 17:22:41 +0000 | [diff] [blame] | 1749 | BranchInst *BI = CondBranchPreds.pop_back_val(); |
Chris Lattner | 147af6b | 2004-04-02 18:13:43 +0000 | [diff] [blame] | 1750 | |
| 1751 | // Check to see if the non-BB successor is also a return block. |
Chris Lattner | c9e495c | 2008-04-24 00:01:19 +0000 | [diff] [blame] | 1752 | if (isa<ReturnInst>(BI->getSuccessor(0)->getTerminator()) && |
| 1753 | isa<ReturnInst>(BI->getSuccessor(1)->getTerminator()) && |
| 1754 | SimplifyCondBranchToTwoReturns(BI)) |
| 1755 | return true; |
Chris Lattner | 147af6b | 2004-04-02 18:13:43 +0000 | [diff] [blame] | 1756 | } |
Chris Lattner | 19831ec | 2004-02-16 06:35:48 +0000 | [diff] [blame] | 1757 | } |
Reid Spencer | 3ed469c | 2006-11-02 20:25:50 +0000 | [diff] [blame] | 1758 | } else if (isa<UnwindInst>(BB->begin())) { |
Chris Lattner | e14ea08 | 2004-02-24 05:54:22 +0000 | [diff] [blame] | 1759 | // Check to see if the first instruction in this block is just an unwind. |
| 1760 | // If so, replace any invoke instructions which use this as an exception |
Chris Lattner | 11f15db | 2009-10-13 18:13:05 +0000 | [diff] [blame] | 1761 | // destination with call instructions. |
Chris Lattner | e14ea08 | 2004-02-24 05:54:22 +0000 | [diff] [blame] | 1762 | // |
Chris Lattner | 8244243 | 2008-02-18 07:42:56 +0000 | [diff] [blame] | 1763 | SmallVector<BasicBlock*, 8> Preds(pred_begin(BB), pred_end(BB)); |
Chris Lattner | e14ea08 | 2004-02-24 05:54:22 +0000 | [diff] [blame] | 1764 | while (!Preds.empty()) { |
| 1765 | BasicBlock *Pred = Preds.back(); |
Chris Lattner | 11f15db | 2009-10-13 18:13:05 +0000 | [diff] [blame] | 1766 | if (InvokeInst *II = dyn_cast<InvokeInst>(Pred->getTerminator())) |
Chris Lattner | e14ea08 | 2004-02-24 05:54:22 +0000 | [diff] [blame] | 1767 | if (II->getUnwindDest() == BB) { |
| 1768 | // Insert a new branch instruction before the invoke, because this |
Chris Lattner | 11f15db | 2009-10-13 18:13:05 +0000 | [diff] [blame] | 1769 | // is now a fall through. |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 1770 | BranchInst *BI = BranchInst::Create(II->getNormalDest(), II); |
Chris Lattner | e14ea08 | 2004-02-24 05:54:22 +0000 | [diff] [blame] | 1771 | Pred->getInstList().remove(II); // Take out of symbol table |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1772 | |
Chris Lattner | 11f15db | 2009-10-13 18:13:05 +0000 | [diff] [blame] | 1773 | // Insert the call now. |
Gabor Greif | bd44314 | 2010-03-30 19:20:53 +0000 | [diff] [blame] | 1774 | SmallVector<Value*,8> Args(II->op_begin(), II->op_end()-3); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 1775 | CallInst *CI = CallInst::Create(II->getCalledValue(), |
Gabor Greif | f7ea363 | 2008-06-10 22:03:26 +0000 | [diff] [blame] | 1776 | Args.begin(), Args.end(), |
| 1777 | II->getName(), BI); |
Chris Lattner | 16d0db2 | 2005-05-14 12:21:56 +0000 | [diff] [blame] | 1778 | CI->setCallingConv(II->getCallingConv()); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 1779 | CI->setAttributes(II->getAttributes()); |
Chris Lattner | 11f15db | 2009-10-13 18:13:05 +0000 | [diff] [blame] | 1780 | // If the invoke produced a value, the Call now does instead. |
Chris Lattner | e14ea08 | 2004-02-24 05:54:22 +0000 | [diff] [blame] | 1781 | II->replaceAllUsesWith(CI); |
| 1782 | delete II; |
| 1783 | Changed = true; |
| 1784 | } |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1785 | |
Chris Lattner | e14ea08 | 2004-02-24 05:54:22 +0000 | [diff] [blame] | 1786 | Preds.pop_back(); |
| 1787 | } |
Chris Lattner | 8e509dd | 2004-02-24 16:09:21 +0000 | [diff] [blame] | 1788 | |
| 1789 | // If this block is now dead, remove it. |
| 1790 | if (pred_begin(BB) == pred_end(BB)) { |
| 1791 | // We know there are no successors, so just nuke the block. |
| 1792 | M->getBasicBlockList().erase(BB); |
| 1793 | return true; |
| 1794 | } |
| 1795 | |
Chris Lattner | 623369a | 2005-02-24 06:17:52 +0000 | [diff] [blame] | 1796 | } else if (SwitchInst *SI = dyn_cast<SwitchInst>(BB->getTerminator())) { |
| 1797 | if (isValueEqualityComparison(SI)) { |
| 1798 | // If we only have one predecessor, and if it is a branch on this value, |
| 1799 | // see if that predecessor totally determines the outcome of this switch. |
| 1800 | if (BasicBlock *OnlyPred = BB->getSinglePredecessor()) |
| 1801 | if (SimplifyEqualityComparisonWithOnlyPredecessor(SI, OnlyPred)) |
| 1802 | return SimplifyCFG(BB) || 1; |
| 1803 | |
| 1804 | // If the block only contains the switch, see if we can fold the block |
| 1805 | // away into any preds. |
Zhou Sheng | 9a7c743 | 2009-02-25 15:34:27 +0000 | [diff] [blame] | 1806 | BasicBlock::iterator BBI = BB->begin(); |
| 1807 | // Ignore dbg intrinsics. |
| 1808 | while (isa<DbgInfoIntrinsic>(BBI)) |
| 1809 | ++BBI; |
| 1810 | if (SI == &*BBI) |
Chris Lattner | 623369a | 2005-02-24 06:17:52 +0000 | [diff] [blame] | 1811 | if (FoldValueComparisonIntoPredecessors(SI)) |
| 1812 | return SimplifyCFG(BB) || 1; |
| 1813 | } |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 1814 | } else if (BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator())) { |
Chris Lattner | 7e66348 | 2005-08-03 00:11:16 +0000 | [diff] [blame] | 1815 | if (BI->isUnconditional()) { |
Dan Gohman | 02dea8b | 2008-05-23 21:05:58 +0000 | [diff] [blame] | 1816 | BasicBlock::iterator BBI = BB->getFirstNonPHI(); |
Chris Lattner | 7e66348 | 2005-08-03 00:11:16 +0000 | [diff] [blame] | 1817 | |
Devang Patel | d0a203d | 2009-02-04 21:39:48 +0000 | [diff] [blame] | 1818 | // Ignore dbg intrinsics. |
| 1819 | while (isa<DbgInfoIntrinsic>(BBI)) |
| 1820 | ++BBI; |
Chris Lattner | dce94d9 | 2009-11-10 05:59:26 +0000 | [diff] [blame] | 1821 | if (BBI->isTerminator()) // Terminator is the only non-phi instruction! |
| 1822 | if (TryToSimplifyUncondBranchFromEmptyBlock(BB)) |
Chris Lattner | 1347e87 | 2008-07-13 21:12:01 +0000 | [diff] [blame] | 1823 | return true; |
Chris Lattner | 7e66348 | 2005-08-03 00:11:16 +0000 | [diff] [blame] | 1824 | |
| 1825 | } else { // Conditional branch |
Reid Spencer | 3ed469c | 2006-11-02 20:25:50 +0000 | [diff] [blame] | 1826 | if (isValueEqualityComparison(BI)) { |
Chris Lattner | 623369a | 2005-02-24 06:17:52 +0000 | [diff] [blame] | 1827 | // If we only have one predecessor, and if it is a branch on this value, |
| 1828 | // see if that predecessor totally determines the outcome of this |
| 1829 | // switch. |
| 1830 | if (BasicBlock *OnlyPred = BB->getSinglePredecessor()) |
| 1831 | if (SimplifyEqualityComparisonWithOnlyPredecessor(BI, OnlyPred)) |
Bill Wendling | c69b4a5 | 2010-03-14 10:40:28 +0000 | [diff] [blame] | 1832 | return SimplifyCFG(BB) | true; |
Chris Lattner | 623369a | 2005-02-24 06:17:52 +0000 | [diff] [blame] | 1833 | |
Chris Lattner | e67fa05 | 2004-05-01 23:35:43 +0000 | [diff] [blame] | 1834 | // This block must be empty, except for the setcond inst, if it exists. |
Devang Patel | 556b20a | 2009-02-04 01:06:11 +0000 | [diff] [blame] | 1835 | // Ignore dbg intrinsics. |
Chris Lattner | e67fa05 | 2004-05-01 23:35:43 +0000 | [diff] [blame] | 1836 | BasicBlock::iterator I = BB->begin(); |
Devang Patel | d0a203d | 2009-02-04 21:39:48 +0000 | [diff] [blame] | 1837 | // Ignore dbg intrinsics. |
Devang Patel | 556b20a | 2009-02-04 01:06:11 +0000 | [diff] [blame] | 1838 | while (isa<DbgInfoIntrinsic>(I)) |
Devang Patel | d0a203d | 2009-02-04 21:39:48 +0000 | [diff] [blame] | 1839 | ++I; |
| 1840 | if (&*I == BI) { |
Chris Lattner | e67fa05 | 2004-05-01 23:35:43 +0000 | [diff] [blame] | 1841 | if (FoldValueComparisonIntoPredecessors(BI)) |
| 1842 | return SimplifyCFG(BB) | true; |
Devang Patel | d0a203d | 2009-02-04 21:39:48 +0000 | [diff] [blame] | 1843 | } else if (&*I == cast<Instruction>(BI->getCondition())){ |
| 1844 | ++I; |
| 1845 | // Ignore dbg intrinsics. |
| 1846 | while (isa<DbgInfoIntrinsic>(I)) |
| 1847 | ++I; |
| 1848 | if(&*I == BI) { |
| 1849 | if (FoldValueComparisonIntoPredecessors(BI)) |
| 1850 | return SimplifyCFG(BB) | true; |
| 1851 | } |
| 1852 | } |
Chris Lattner | e67fa05 | 2004-05-01 23:35:43 +0000 | [diff] [blame] | 1853 | } |
Devang Patel | d0a203d | 2009-02-04 21:39:48 +0000 | [diff] [blame] | 1854 | |
Chris Lattner | eaba3a1 | 2005-09-19 23:49:37 +0000 | [diff] [blame] | 1855 | // If this is a branch on a phi node in the current block, thread control |
| 1856 | // through this block if any PHI node entries are constants. |
| 1857 | if (PHINode *PN = dyn_cast<PHINode>(BI->getCondition())) |
| 1858 | if (PN->getParent() == BI->getParent()) |
| 1859 | if (FoldCondBranchOnPHI(BI)) |
| 1860 | return SimplifyCFG(BB) | true; |
Chris Lattner | e67fa05 | 2004-05-01 23:35:43 +0000 | [diff] [blame] | 1861 | |
| 1862 | // If this basic block is ONLY a setcc and a branch, and if a predecessor |
| 1863 | // branches to us and one of our successors, fold the setcc into the |
| 1864 | // predecessor and use logical operations to pick the right destination. |
Chris Lattner | 1347e87 | 2008-07-13 21:12:01 +0000 | [diff] [blame] | 1865 | if (FoldBranchToCommonDest(BI)) |
Bill Wendling | c69b4a5 | 2010-03-14 10:40:28 +0000 | [diff] [blame] | 1866 | return SimplifyCFG(BB) | true; |
Chris Lattner | e67fa05 | 2004-05-01 23:35:43 +0000 | [diff] [blame] | 1867 | |
Chris Lattner | 867661a | 2008-07-13 21:53:26 +0000 | [diff] [blame] | 1868 | |
| 1869 | // Scan predecessor blocks for conditional branches. |
Chris Lattner | 2e42e36 | 2005-09-20 00:43:16 +0000 | [diff] [blame] | 1870 | for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) |
| 1871 | if (BranchInst *PBI = dyn_cast<BranchInst>((*PI)->getTerminator())) |
Chris Lattner | 867661a | 2008-07-13 21:53:26 +0000 | [diff] [blame] | 1872 | if (PBI != BI && PBI->isConditional()) |
| 1873 | if (SimplifyCondBranchToCondBranch(PBI, BI)) |
| 1874 | return SimplifyCFG(BB) | true; |
Chris Lattner | d52c261 | 2004-02-24 07:23:58 +0000 | [diff] [blame] | 1875 | } |
Chris Lattner | 698f96f | 2004-10-18 04:07:22 +0000 | [diff] [blame] | 1876 | } else if (isa<UnreachableInst>(BB->getTerminator())) { |
| 1877 | // If there are any instructions immediately before the unreachable that can |
| 1878 | // be removed, do so. |
| 1879 | Instruction *Unreachable = BB->getTerminator(); |
| 1880 | while (Unreachable != BB->begin()) { |
| 1881 | BasicBlock::iterator BBI = Unreachable; |
| 1882 | --BBI; |
Chris Lattner | f8131c9 | 2008-10-29 17:46:26 +0000 | [diff] [blame] | 1883 | // Do not delete instructions that can have side effects, like calls |
| 1884 | // (which may never return) and volatile loads and stores. |
Dale Johannesen | 80b8a62 | 2009-03-12 17:42:45 +0000 | [diff] [blame] | 1885 | if (isa<CallInst>(BBI) && !isa<DbgInfoIntrinsic>(BBI)) break; |
Chris Lattner | f8131c9 | 2008-10-29 17:46:26 +0000 | [diff] [blame] | 1886 | |
| 1887 | if (StoreInst *SI = dyn_cast<StoreInst>(BBI)) |
| 1888 | if (SI->isVolatile()) |
| 1889 | break; |
| 1890 | |
| 1891 | if (LoadInst *LI = dyn_cast<LoadInst>(BBI)) |
| 1892 | if (LI->isVolatile()) |
| 1893 | break; |
| 1894 | |
Chris Lattner | 698f96f | 2004-10-18 04:07:22 +0000 | [diff] [blame] | 1895 | // Delete this instruction |
| 1896 | BB->getInstList().erase(BBI); |
| 1897 | Changed = true; |
| 1898 | } |
| 1899 | |
| 1900 | // If the unreachable instruction is the first in the block, take a gander |
| 1901 | // at all of the predecessors of this instruction, and simplify them. |
| 1902 | if (&BB->front() == Unreachable) { |
Chris Lattner | 8244243 | 2008-02-18 07:42:56 +0000 | [diff] [blame] | 1903 | SmallVector<BasicBlock*, 8> Preds(pred_begin(BB), pred_end(BB)); |
Chris Lattner | 698f96f | 2004-10-18 04:07:22 +0000 | [diff] [blame] | 1904 | for (unsigned i = 0, e = Preds.size(); i != e; ++i) { |
| 1905 | TerminatorInst *TI = Preds[i]->getTerminator(); |
| 1906 | |
| 1907 | if (BranchInst *BI = dyn_cast<BranchInst>(TI)) { |
| 1908 | if (BI->isUnconditional()) { |
| 1909 | if (BI->getSuccessor(0) == BB) { |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 1910 | new UnreachableInst(TI->getContext(), TI); |
Chris Lattner | 698f96f | 2004-10-18 04:07:22 +0000 | [diff] [blame] | 1911 | TI->eraseFromParent(); |
| 1912 | Changed = true; |
| 1913 | } |
| 1914 | } else { |
| 1915 | if (BI->getSuccessor(0) == BB) { |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 1916 | BranchInst::Create(BI->getSuccessor(1), BI); |
Eli Friedman | 080efb8 | 2008-12-16 20:54:32 +0000 | [diff] [blame] | 1917 | EraseTerminatorInstAndDCECond(BI); |
Chris Lattner | 698f96f | 2004-10-18 04:07:22 +0000 | [diff] [blame] | 1918 | } else if (BI->getSuccessor(1) == BB) { |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 1919 | BranchInst::Create(BI->getSuccessor(0), BI); |
Eli Friedman | 080efb8 | 2008-12-16 20:54:32 +0000 | [diff] [blame] | 1920 | EraseTerminatorInstAndDCECond(BI); |
Chris Lattner | 698f96f | 2004-10-18 04:07:22 +0000 | [diff] [blame] | 1921 | Changed = true; |
| 1922 | } |
| 1923 | } |
| 1924 | } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) { |
| 1925 | for (unsigned i = 1, e = SI->getNumCases(); i != e; ++i) |
| 1926 | if (SI->getSuccessor(i) == BB) { |
Chris Lattner | 42eb752 | 2005-05-20 22:19:54 +0000 | [diff] [blame] | 1927 | BB->removePredecessor(SI->getParent()); |
Chris Lattner | 698f96f | 2004-10-18 04:07:22 +0000 | [diff] [blame] | 1928 | SI->removeCase(i); |
| 1929 | --i; --e; |
| 1930 | Changed = true; |
| 1931 | } |
| 1932 | // If the default value is unreachable, figure out the most popular |
| 1933 | // destination and make it the default. |
| 1934 | if (SI->getSuccessor(0) == BB) { |
| 1935 | std::map<BasicBlock*, unsigned> Popularity; |
| 1936 | for (unsigned i = 1, e = SI->getNumCases(); i != e; ++i) |
| 1937 | Popularity[SI->getSuccessor(i)]++; |
| 1938 | |
| 1939 | // Find the most popular block. |
| 1940 | unsigned MaxPop = 0; |
| 1941 | BasicBlock *MaxBlock = 0; |
| 1942 | for (std::map<BasicBlock*, unsigned>::iterator |
| 1943 | I = Popularity.begin(), E = Popularity.end(); I != E; ++I) { |
| 1944 | if (I->second > MaxPop) { |
| 1945 | MaxPop = I->second; |
| 1946 | MaxBlock = I->first; |
| 1947 | } |
| 1948 | } |
| 1949 | if (MaxBlock) { |
| 1950 | // Make this the new default, allowing us to delete any explicit |
| 1951 | // edges to it. |
| 1952 | SI->setSuccessor(0, MaxBlock); |
| 1953 | Changed = true; |
| 1954 | |
Chris Lattner | 42eb752 | 2005-05-20 22:19:54 +0000 | [diff] [blame] | 1955 | // If MaxBlock has phinodes in it, remove MaxPop-1 entries from |
| 1956 | // it. |
| 1957 | if (isa<PHINode>(MaxBlock->begin())) |
| 1958 | for (unsigned i = 0; i != MaxPop-1; ++i) |
| 1959 | MaxBlock->removePredecessor(SI->getParent()); |
| 1960 | |
Chris Lattner | 698f96f | 2004-10-18 04:07:22 +0000 | [diff] [blame] | 1961 | for (unsigned i = 1, e = SI->getNumCases(); i != e; ++i) |
| 1962 | if (SI->getSuccessor(i) == MaxBlock) { |
| 1963 | SI->removeCase(i); |
| 1964 | --i; --e; |
| 1965 | } |
| 1966 | } |
| 1967 | } |
| 1968 | } else if (InvokeInst *II = dyn_cast<InvokeInst>(TI)) { |
| 1969 | if (II->getUnwindDest() == BB) { |
| 1970 | // Convert the invoke to a call instruction. This would be a good |
| 1971 | // place to note that the call does not throw though. |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 1972 | BranchInst *BI = BranchInst::Create(II->getNormalDest(), II); |
Chris Lattner | 698f96f | 2004-10-18 04:07:22 +0000 | [diff] [blame] | 1973 | II->removeFromParent(); // Take out of symbol table |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1974 | |
Chris Lattner | 698f96f | 2004-10-18 04:07:22 +0000 | [diff] [blame] | 1975 | // Insert the call now... |
Gabor Greif | bd44314 | 2010-03-30 19:20:53 +0000 | [diff] [blame] | 1976 | SmallVector<Value*, 8> Args(II->op_begin(), II->op_end()-3); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 1977 | CallInst *CI = CallInst::Create(II->getCalledValue(), |
| 1978 | Args.begin(), Args.end(), |
| 1979 | II->getName(), BI); |
Chris Lattner | 16d0db2 | 2005-05-14 12:21:56 +0000 | [diff] [blame] | 1980 | CI->setCallingConv(II->getCallingConv()); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 1981 | CI->setAttributes(II->getAttributes()); |
Gabor Greif | bd44314 | 2010-03-30 19:20:53 +0000 | [diff] [blame] | 1982 | // If the invoke produced a value, the call does now instead. |
Chris Lattner | 698f96f | 2004-10-18 04:07:22 +0000 | [diff] [blame] | 1983 | II->replaceAllUsesWith(CI); |
| 1984 | delete II; |
| 1985 | Changed = true; |
| 1986 | } |
| 1987 | } |
| 1988 | } |
| 1989 | |
| 1990 | // If this block is now dead, remove it. |
| 1991 | if (pred_begin(BB) == pred_end(BB)) { |
| 1992 | // We know there are no successors, so just nuke the block. |
| 1993 | M->getBasicBlockList().erase(BB); |
| 1994 | return true; |
| 1995 | } |
| 1996 | } |
Chris Lattner | 19831ec | 2004-02-16 06:35:48 +0000 | [diff] [blame] | 1997 | } |
| 1998 | |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 1999 | // Merge basic blocks into their predecessor if there is only one distinct |
| 2000 | // pred, and if there is only one distinct successor of the predecessor, and |
| 2001 | // if there are no PHI nodes. |
| 2002 | // |
Owen Anderson | cfa9419 | 2008-07-18 17:49:43 +0000 | [diff] [blame] | 2003 | if (MergeBlockIntoPredecessor(BB)) |
| 2004 | return true; |
| 2005 | |
| 2006 | // Otherwise, if this block only has a single predecessor, and if that block |
| 2007 | // is a conditional branch, see if we can hoist any code from this block up |
| 2008 | // into our predecessor. |
Chris Lattner | 2355f94 | 2004-02-11 01:17:07 +0000 | [diff] [blame] | 2009 | pred_iterator PI(pred_begin(BB)), PE(pred_end(BB)); |
| 2010 | BasicBlock *OnlyPred = *PI++; |
| 2011 | for (; PI != PE; ++PI) // Search all predecessors, see if they are all same |
| 2012 | if (*PI != OnlyPred) { |
| 2013 | OnlyPred = 0; // There are multiple different predecessors... |
| 2014 | break; |
| 2015 | } |
Owen Anderson | cfa9419 | 2008-07-18 17:49:43 +0000 | [diff] [blame] | 2016 | |
Chris Lattner | 37dc938 | 2004-11-30 00:29:14 +0000 | [diff] [blame] | 2017 | if (OnlyPred) |
Chris Lattner | 7613437 | 2004-12-10 17:42:31 +0000 | [diff] [blame] | 2018 | if (BranchInst *BI = dyn_cast<BranchInst>(OnlyPred->getTerminator())) |
| 2019 | if (BI->isConditional()) { |
| 2020 | // Get the other block. |
| 2021 | BasicBlock *OtherBB = BI->getSuccessor(BI->getSuccessor(0) == BB); |
| 2022 | PI = pred_begin(OtherBB); |
| 2023 | ++PI; |
Owen Anderson | cfa9419 | 2008-07-18 17:49:43 +0000 | [diff] [blame] | 2024 | |
Chris Lattner | 7613437 | 2004-12-10 17:42:31 +0000 | [diff] [blame] | 2025 | if (PI == pred_end(OtherBB)) { |
| 2026 | // We have a conditional branch to two blocks that are only reachable |
| 2027 | // from the condbr. We know that the condbr dominates the two blocks, |
| 2028 | // so see if there is any identical code in the "then" and "else" |
| 2029 | // blocks. If so, we can hoist it up to the branching block. |
| 2030 | Changed |= HoistThenElseCodeToIf(BI); |
Evan Cheng | 4d09efd | 2008-06-07 08:52:29 +0000 | [diff] [blame] | 2031 | } else { |
Owen Anderson | cfa9419 | 2008-07-18 17:49:43 +0000 | [diff] [blame] | 2032 | BasicBlock* OnlySucc = NULL; |
Evan Cheng | 4d09efd | 2008-06-07 08:52:29 +0000 | [diff] [blame] | 2033 | for (succ_iterator SI = succ_begin(BB), SE = succ_end(BB); |
| 2034 | SI != SE; ++SI) { |
| 2035 | if (!OnlySucc) |
| 2036 | OnlySucc = *SI; |
| 2037 | else if (*SI != OnlySucc) { |
| 2038 | OnlySucc = 0; // There are multiple distinct successors! |
| 2039 | break; |
| 2040 | } |
| 2041 | } |
| 2042 | |
| 2043 | if (OnlySucc == OtherBB) { |
| 2044 | // If BB's only successor is the other successor of the predecessor, |
| 2045 | // i.e. a triangle, see if we can hoist any code from this block up |
| 2046 | // to the "if" block. |
| 2047 | Changed |= SpeculativelyExecuteBB(BI, BB); |
| 2048 | } |
Chris Lattner | 7613437 | 2004-12-10 17:42:31 +0000 | [diff] [blame] | 2049 | } |
Chris Lattner | 37dc938 | 2004-11-30 00:29:14 +0000 | [diff] [blame] | 2050 | } |
Chris Lattner | 37dc938 | 2004-11-30 00:29:14 +0000 | [diff] [blame] | 2051 | |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 2052 | for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) |
| 2053 | if (BranchInst *BI = dyn_cast<BranchInst>((*PI)->getTerminator())) |
| 2054 | // Change br (X == 0 | X == 1), T, F into a switch instruction. |
| 2055 | if (BI->isConditional() && isa<Instruction>(BI->getCondition())) { |
| 2056 | Instruction *Cond = cast<Instruction>(BI->getCondition()); |
| 2057 | // If this is a bunch of seteq's or'd together, or if it's a bunch of |
| 2058 | // 'setne's and'ed together, collect them. |
| 2059 | Value *CompVal = 0; |
Chris Lattner | 1654cff | 2004-06-19 07:02:14 +0000 | [diff] [blame] | 2060 | std::vector<ConstantInt*> Values; |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 2061 | bool TrueWhenEqual = GatherValueComparisons(Cond, CompVal, Values); |
Jakob Stoklund Olesen | 58e9ee8 | 2010-02-05 22:03:18 +0000 | [diff] [blame] | 2062 | if (CompVal) { |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 2063 | // There might be duplicate constants in the list, which the switch |
| 2064 | // instruction can't handle, remove them now. |
Chris Lattner | 1654cff | 2004-06-19 07:02:14 +0000 | [diff] [blame] | 2065 | std::sort(Values.begin(), Values.end(), ConstantIntOrdering()); |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 2066 | Values.erase(std::unique(Values.begin(), Values.end()), Values.end()); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2067 | |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 2068 | // Figure out which block is which destination. |
| 2069 | BasicBlock *DefaultBB = BI->getSuccessor(1); |
| 2070 | BasicBlock *EdgeBB = BI->getSuccessor(0); |
| 2071 | if (!TrueWhenEqual) std::swap(DefaultBB, EdgeBB); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2072 | |
Jakob Stoklund Olesen | 58e9ee8 | 2010-02-05 22:03:18 +0000 | [diff] [blame] | 2073 | // Convert pointer to int before we switch. |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 2074 | if (CompVal->getType()->isPointerTy()) { |
Jakob Stoklund Olesen | 58e9ee8 | 2010-02-05 22:03:18 +0000 | [diff] [blame] | 2075 | assert(TD && "Cannot switch on pointer without TargetData"); |
| 2076 | CompVal = new PtrToIntInst(CompVal, |
| 2077 | TD->getIntPtrType(CompVal->getContext()), |
| 2078 | "magicptr", BI); |
| 2079 | } |
| 2080 | |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 2081 | // Create the new switch instruction now. |
Gabor Greif | b1dbcd8 | 2008-05-15 10:04:30 +0000 | [diff] [blame] | 2082 | SwitchInst *New = SwitchInst::Create(CompVal, DefaultBB, |
| 2083 | Values.size(), BI); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2084 | |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 2085 | // Add all of the 'cases' to the switch instruction. |
| 2086 | for (unsigned i = 0, e = Values.size(); i != e; ++i) |
| 2087 | New->addCase(Values[i], EdgeBB); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2088 | |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 2089 | // We added edges from PI to the EdgeBB. As such, if there were any |
| 2090 | // PHI nodes in EdgeBB, they need entries to be added corresponding to |
| 2091 | // the number of edges added. |
| 2092 | for (BasicBlock::iterator BBI = EdgeBB->begin(); |
Reid Spencer | 2da5c3d | 2004-09-15 17:06:42 +0000 | [diff] [blame] | 2093 | isa<PHINode>(BBI); ++BBI) { |
| 2094 | PHINode *PN = cast<PHINode>(BBI); |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 2095 | Value *InVal = PN->getIncomingValueForBlock(*PI); |
| 2096 | for (unsigned i = 0, e = Values.size()-1; i != e; ++i) |
| 2097 | PN->addIncoming(InVal, *PI); |
| 2098 | } |
| 2099 | |
| 2100 | // Erase the old branch instruction. |
Eli Friedman | 080efb8 | 2008-12-16 20:54:32 +0000 | [diff] [blame] | 2101 | EraseTerminatorInstAndDCECond(BI); |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 2102 | return true; |
| 2103 | } |
| 2104 | } |
| 2105 | |
Chris Lattner | 694e37f | 2003-08-17 19:41:53 +0000 | [diff] [blame] | 2106 | return Changed; |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 2107 | } |
Jakob Stoklund Olesen | 58e9ee8 | 2010-02-05 22:03:18 +0000 | [diff] [blame] | 2108 | |
| 2109 | /// SimplifyCFG - This function is used to do simplification of a CFG. For |
| 2110 | /// example, it adjusts branches to branches to eliminate the extra hop, it |
| 2111 | /// eliminates unreachable basic blocks, and does other "peephole" optimization |
| 2112 | /// of the CFG. It returns true if a modification was made. |
| 2113 | /// |
| 2114 | /// WARNING: The entry node of a function may not be simplified. |
| 2115 | /// |
| 2116 | bool llvm::SimplifyCFG(BasicBlock *BB, const TargetData *TD) { |
| 2117 | return SimplifyCFGOpt(TD).run(BB); |
| 2118 | } |