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 | // |
| 5 | // This file was developed by the LLVM research group and is distributed under |
| 6 | // the University of Illinois Open Source License. See LICENSE.TXT for details. |
Misha 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" |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 18 | #include "llvm/Type.h" |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 19 | #include "llvm/Support/CFG.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 20 | #include "llvm/Support/Debug.h" |
Chris Lattner | eaba3a1 | 2005-09-19 23:49:37 +0000 | [diff] [blame] | 21 | #include "llvm/Transforms/Utils/BasicBlockUtils.h" |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 22 | #include <algorithm> |
| 23 | #include <functional> |
Chris Lattner | d52c261 | 2004-02-24 07:23:58 +0000 | [diff] [blame] | 24 | #include <set> |
Chris Lattner | 698f96f | 2004-10-18 04:07:22 +0000 | [diff] [blame] | 25 | #include <map> |
Chris Lattner | f7703df | 2004-01-09 06:12:26 +0000 | [diff] [blame] | 26 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 27 | |
Chris Lattner | 2bdcb56 | 2005-08-03 00:19:45 +0000 | [diff] [blame] | 28 | /// SafeToMergeTerminators - Return true if it is safe to merge these two |
| 29 | /// terminator instructions together. |
| 30 | /// |
| 31 | static bool SafeToMergeTerminators(TerminatorInst *SI1, TerminatorInst *SI2) { |
| 32 | if (SI1 == SI2) return false; // Can't merge with self! |
| 33 | |
| 34 | // It is not safe to merge these two switch instructions if they have a common |
| 35 | // successor, and if that successor has a PHI node, and if *that* PHI node has |
| 36 | // conflicting incoming values from the two switch blocks. |
| 37 | BasicBlock *SI1BB = SI1->getParent(); |
| 38 | BasicBlock *SI2BB = SI2->getParent(); |
| 39 | std::set<BasicBlock*> SI1Succs(succ_begin(SI1BB), succ_end(SI1BB)); |
| 40 | |
| 41 | for (succ_iterator I = succ_begin(SI2BB), E = succ_end(SI2BB); I != E; ++I) |
| 42 | if (SI1Succs.count(*I)) |
| 43 | for (BasicBlock::iterator BBI = (*I)->begin(); |
| 44 | isa<PHINode>(BBI); ++BBI) { |
| 45 | PHINode *PN = cast<PHINode>(BBI); |
| 46 | if (PN->getIncomingValueForBlock(SI1BB) != |
| 47 | PN->getIncomingValueForBlock(SI2BB)) |
| 48 | return false; |
| 49 | } |
| 50 | |
| 51 | return true; |
| 52 | } |
| 53 | |
| 54 | /// AddPredecessorToBlock - Update PHI nodes in Succ to indicate that there will |
| 55 | /// now be entries in it from the 'NewPred' block. The values that will be |
| 56 | /// flowing into the PHI nodes will be the same as those coming in from |
| 57 | /// ExistPred, an existing predecessor of Succ. |
| 58 | static void AddPredecessorToBlock(BasicBlock *Succ, BasicBlock *NewPred, |
| 59 | BasicBlock *ExistPred) { |
| 60 | assert(std::find(succ_begin(ExistPred), succ_end(ExistPred), Succ) != |
| 61 | succ_end(ExistPred) && "ExistPred is not a predecessor of Succ!"); |
| 62 | if (!isa<PHINode>(Succ->begin())) return; // Quick exit if nothing to do |
| 63 | |
| 64 | for (BasicBlock::iterator I = Succ->begin(); isa<PHINode>(I); ++I) { |
| 65 | PHINode *PN = cast<PHINode>(I); |
| 66 | Value *V = PN->getIncomingValueForBlock(ExistPred); |
| 67 | PN->addIncoming(V, NewPred); |
| 68 | } |
| 69 | } |
| 70 | |
Chris Lattner | 3b3efc7 | 2005-08-03 00:29:26 +0000 | [diff] [blame] | 71 | // CanPropagatePredecessorsForPHIs - Return true if we can fold BB, an |
| 72 | // almost-empty BB ending in an unconditional branch to Succ, into succ. |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 73 | // |
| 74 | // Assumption: Succ is the single successor for BB. |
| 75 | // |
Chris Lattner | 3b3efc7 | 2005-08-03 00:29:26 +0000 | [diff] [blame] | 76 | static bool CanPropagatePredecessorsForPHIs(BasicBlock *BB, BasicBlock *Succ) { |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 77 | assert(*succ_begin(BB) == Succ && "Succ is not successor of BB!"); |
Chris Lattner | 3abb95d | 2002-09-24 00:09:26 +0000 | [diff] [blame] | 78 | |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 79 | // Check to see if one of the predecessors of BB is already a predecessor of |
Chris Lattner | e2ca540 | 2003-03-05 21:01:52 +0000 | [diff] [blame] | 80 | // Succ. If so, we cannot do the transformation if there are any PHI nodes |
| 81 | // with incompatible values coming in from the two edges! |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 82 | // |
Chris Lattner | dc88dbe | 2005-08-03 00:38:27 +0000 | [diff] [blame] | 83 | if (isa<PHINode>(Succ->front())) { |
| 84 | std::set<BasicBlock*> BBPreds(pred_begin(BB), pred_end(BB)); |
| 85 | for (pred_iterator PI = pred_begin(Succ), PE = pred_end(Succ);\ |
| 86 | PI != PE; ++PI) |
| 87 | if (std::find(BBPreds.begin(), BBPreds.end(), *PI) != BBPreds.end()) { |
| 88 | // Loop over all of the PHI nodes checking to see if there are |
| 89 | // incompatible values coming in. |
| 90 | for (BasicBlock::iterator I = Succ->begin(); isa<PHINode>(I); ++I) { |
| 91 | PHINode *PN = cast<PHINode>(I); |
| 92 | // Loop up the entries in the PHI node for BB and for *PI if the |
| 93 | // values coming in are non-equal, we cannot merge these two blocks |
| 94 | // (instead we should insert a conditional move or something, then |
| 95 | // merge the blocks). |
| 96 | if (PN->getIncomingValueForBlock(BB) != |
| 97 | PN->getIncomingValueForBlock(*PI)) |
| 98 | return false; // Values are not equal... |
| 99 | } |
| 100 | } |
| 101 | } |
Chris Lattner | 1aad921 | 2005-08-03 00:59:12 +0000 | [diff] [blame] | 102 | |
| 103 | // Finally, if BB has PHI nodes that are used by things other than the PHIs in |
| 104 | // Succ and Succ has predecessors that are not Succ and not Pred, we cannot |
| 105 | // fold these blocks, as we don't know whether BB dominates Succ or not to |
| 106 | // update the PHI nodes correctly. |
| 107 | if (!isa<PHINode>(BB->begin()) || Succ->getSinglePredecessor()) return true; |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 108 | |
Chris Lattner | 1aad921 | 2005-08-03 00:59:12 +0000 | [diff] [blame] | 109 | // If the predecessors of Succ are only BB and Succ itself, we can handle this. |
| 110 | bool IsSafe = true; |
| 111 | for (pred_iterator PI = pred_begin(Succ), E = pred_end(Succ); PI != E; ++PI) |
| 112 | if (*PI != Succ && *PI != BB) { |
| 113 | IsSafe = false; |
| 114 | break; |
| 115 | } |
| 116 | if (IsSafe) return true; |
| 117 | |
| 118 | // If the PHI nodes in BB are only used by instructions in Succ, we are ok. |
| 119 | IsSafe = true; |
| 120 | for (BasicBlock::iterator I = BB->begin(); isa<PHINode>(I) && IsSafe; ++I) { |
| 121 | PHINode *PN = cast<PHINode>(I); |
| 122 | for (Value::use_iterator UI = PN->use_begin(), E = PN->use_end(); UI != E; |
| 123 | ++UI) |
| 124 | if (cast<Instruction>(*UI)->getParent() != Succ) { |
| 125 | IsSafe = false; |
| 126 | break; |
| 127 | } |
| 128 | } |
| 129 | |
| 130 | return IsSafe; |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 131 | } |
| 132 | |
Chris Lattner | 7e66348 | 2005-08-03 00:11:16 +0000 | [diff] [blame] | 133 | /// TryToSimplifyUncondBranchFromEmptyBlock - BB contains an unconditional |
| 134 | /// branch to Succ, and contains no instructions other than PHI nodes and the |
| 135 | /// branch. If possible, eliminate BB. |
| 136 | static bool TryToSimplifyUncondBranchFromEmptyBlock(BasicBlock *BB, |
| 137 | BasicBlock *Succ) { |
| 138 | // If our successor has PHI nodes, then we need to update them to include |
| 139 | // entries for BB's predecessors, not for BB itself. Be careful though, |
| 140 | // if this transformation fails (returns true) then we cannot do this |
| 141 | // transformation! |
| 142 | // |
Chris Lattner | 3b3efc7 | 2005-08-03 00:29:26 +0000 | [diff] [blame] | 143 | if (!CanPropagatePredecessorsForPHIs(BB, Succ)) return false; |
Chris Lattner | 7e66348 | 2005-08-03 00:11:16 +0000 | [diff] [blame] | 144 | |
| 145 | DEBUG(std::cerr << "Killing Trivial BB: \n" << *BB); |
| 146 | |
Chris Lattner | 3b3efc7 | 2005-08-03 00:29:26 +0000 | [diff] [blame] | 147 | if (isa<PHINode>(Succ->begin())) { |
| 148 | // If there is more than one pred of succ, and there are PHI nodes in |
| 149 | // the successor, then we need to add incoming edges for the PHI nodes |
| 150 | // |
| 151 | const std::vector<BasicBlock*> BBPreds(pred_begin(BB), pred_end(BB)); |
| 152 | |
| 153 | // Loop over all of the PHI nodes in the successor of BB. |
| 154 | for (BasicBlock::iterator I = Succ->begin(); isa<PHINode>(I); ++I) { |
| 155 | PHINode *PN = cast<PHINode>(I); |
| 156 | Value *OldVal = PN->removeIncomingValue(BB, false); |
| 157 | assert(OldVal && "No entry in PHI for Pred BB!"); |
| 158 | |
Chris Lattner | dc88dbe | 2005-08-03 00:38:27 +0000 | [diff] [blame] | 159 | // If this incoming value is one of the PHI nodes in BB, the new entries |
| 160 | // in the PHI node are the entries from the old PHI. |
Chris Lattner | 3b3efc7 | 2005-08-03 00:29:26 +0000 | [diff] [blame] | 161 | if (isa<PHINode>(OldVal) && cast<PHINode>(OldVal)->getParent() == BB) { |
| 162 | PHINode *OldValPN = cast<PHINode>(OldVal); |
| 163 | for (unsigned i = 0, e = OldValPN->getNumIncomingValues(); i != e; ++i) |
| 164 | PN->addIncoming(OldValPN->getIncomingValue(i), |
| 165 | OldValPN->getIncomingBlock(i)); |
| 166 | } else { |
| 167 | for (std::vector<BasicBlock*>::const_iterator PredI = BBPreds.begin(), |
| 168 | End = BBPreds.end(); PredI != End; ++PredI) { |
| 169 | // Add an incoming value for each of the new incoming values... |
| 170 | PN->addIncoming(OldVal, *PredI); |
| 171 | } |
| 172 | } |
| 173 | } |
| 174 | } |
| 175 | |
Chris Lattner | 7e66348 | 2005-08-03 00:11:16 +0000 | [diff] [blame] | 176 | if (isa<PHINode>(&BB->front())) { |
| 177 | std::vector<BasicBlock*> |
| 178 | OldSuccPreds(pred_begin(Succ), pred_end(Succ)); |
| 179 | |
| 180 | // Move all PHI nodes in BB to Succ if they are alive, otherwise |
| 181 | // delete them. |
| 182 | while (PHINode *PN = dyn_cast<PHINode>(&BB->front())) |
Chris Lattner | dc88dbe | 2005-08-03 00:38:27 +0000 | [diff] [blame] | 183 | if (PN->use_empty()) { |
| 184 | // Just remove the dead phi. This happens if Succ's PHIs were the only |
| 185 | // users of the PHI nodes. |
| 186 | PN->eraseFromParent(); |
Chris Lattner | 7e66348 | 2005-08-03 00:11:16 +0000 | [diff] [blame] | 187 | } else { |
| 188 | // The instruction is alive, so this means that Succ must have |
| 189 | // *ONLY* had BB as a predecessor, and the PHI node is still valid |
| 190 | // now. Simply move it into Succ, because we know that BB |
| 191 | // strictly dominated Succ. |
Chris Lattner | d423b8b | 2005-08-03 00:23:42 +0000 | [diff] [blame] | 192 | Succ->getInstList().splice(Succ->begin(), |
| 193 | BB->getInstList(), BB->begin()); |
Chris Lattner | 7e66348 | 2005-08-03 00:11:16 +0000 | [diff] [blame] | 194 | |
| 195 | // We need to add new entries for the PHI node to account for |
| 196 | // predecessors of Succ that the PHI node does not take into |
| 197 | // account. At this point, since we know that BB dominated succ, |
| 198 | // this means that we should any newly added incoming edges should |
| 199 | // use the PHI node as the value for these edges, because they are |
| 200 | // loop back edges. |
| 201 | for (unsigned i = 0, e = OldSuccPreds.size(); i != e; ++i) |
| 202 | if (OldSuccPreds[i] != BB) |
| 203 | PN->addIncoming(PN, OldSuccPreds[i]); |
| 204 | } |
| 205 | } |
| 206 | |
| 207 | // Everything that jumped to BB now goes to Succ. |
| 208 | std::string OldName = BB->getName(); |
| 209 | BB->replaceAllUsesWith(Succ); |
| 210 | BB->eraseFromParent(); // Delete the old basic block. |
| 211 | |
| 212 | if (!OldName.empty() && !Succ->hasName()) // Transfer name if we can |
| 213 | Succ->setName(OldName); |
| 214 | return true; |
| 215 | } |
| 216 | |
Chris Lattner | 723c66d | 2004-02-11 03:36:04 +0000 | [diff] [blame] | 217 | /// GetIfCondition - Given a basic block (BB) with two predecessors (and |
| 218 | /// presumably PHI nodes in it), check to see if the merge at this block is due |
| 219 | /// to an "if condition". If so, return the boolean condition that determines |
| 220 | /// which entry into BB will be taken. Also, return by references the block |
| 221 | /// that will be entered from if the condition is true, and the block that will |
| 222 | /// be entered if the condition is false. |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 223 | /// |
Chris Lattner | 723c66d | 2004-02-11 03:36:04 +0000 | [diff] [blame] | 224 | /// |
| 225 | static Value *GetIfCondition(BasicBlock *BB, |
| 226 | BasicBlock *&IfTrue, BasicBlock *&IfFalse) { |
| 227 | assert(std::distance(pred_begin(BB), pred_end(BB)) == 2 && |
| 228 | "Function can only handle blocks with 2 predecessors!"); |
| 229 | BasicBlock *Pred1 = *pred_begin(BB); |
| 230 | BasicBlock *Pred2 = *++pred_begin(BB); |
| 231 | |
| 232 | // We can only handle branches. Other control flow will be lowered to |
| 233 | // branches if possible anyway. |
| 234 | if (!isa<BranchInst>(Pred1->getTerminator()) || |
| 235 | !isa<BranchInst>(Pred2->getTerminator())) |
| 236 | return 0; |
| 237 | BranchInst *Pred1Br = cast<BranchInst>(Pred1->getTerminator()); |
| 238 | BranchInst *Pred2Br = cast<BranchInst>(Pred2->getTerminator()); |
| 239 | |
| 240 | // Eliminate code duplication by ensuring that Pred1Br is conditional if |
| 241 | // either are. |
| 242 | if (Pred2Br->isConditional()) { |
| 243 | // If both branches are conditional, we don't have an "if statement". In |
| 244 | // reality, we could transform this case, but since the condition will be |
| 245 | // required anyway, we stand no chance of eliminating it, so the xform is |
| 246 | // probably not profitable. |
| 247 | if (Pred1Br->isConditional()) |
| 248 | return 0; |
| 249 | |
| 250 | std::swap(Pred1, Pred2); |
| 251 | std::swap(Pred1Br, Pred2Br); |
| 252 | } |
| 253 | |
| 254 | if (Pred1Br->isConditional()) { |
| 255 | // If we found a conditional branch predecessor, make sure that it branches |
| 256 | // to BB and Pred2Br. If it doesn't, this isn't an "if statement". |
| 257 | if (Pred1Br->getSuccessor(0) == BB && |
| 258 | Pred1Br->getSuccessor(1) == Pred2) { |
| 259 | IfTrue = Pred1; |
| 260 | IfFalse = Pred2; |
| 261 | } else if (Pred1Br->getSuccessor(0) == Pred2 && |
| 262 | Pred1Br->getSuccessor(1) == BB) { |
| 263 | IfTrue = Pred2; |
| 264 | IfFalse = Pred1; |
| 265 | } else { |
| 266 | // We know that one arm of the conditional goes to BB, so the other must |
| 267 | // go somewhere unrelated, and this must not be an "if statement". |
| 268 | return 0; |
| 269 | } |
| 270 | |
| 271 | // The only thing we have to watch out for here is to make sure that Pred2 |
| 272 | // doesn't have incoming edges from other blocks. If it does, the condition |
| 273 | // doesn't dominate BB. |
| 274 | if (++pred_begin(Pred2) != pred_end(Pred2)) |
| 275 | return 0; |
| 276 | |
| 277 | return Pred1Br->getCondition(); |
| 278 | } |
| 279 | |
| 280 | // Ok, if we got here, both predecessors end with an unconditional branch to |
| 281 | // BB. Don't panic! If both blocks only have a single (identical) |
| 282 | // predecessor, and THAT is a conditional branch, then we're all ok! |
| 283 | if (pred_begin(Pred1) == pred_end(Pred1) || |
| 284 | ++pred_begin(Pred1) != pred_end(Pred1) || |
| 285 | pred_begin(Pred2) == pred_end(Pred2) || |
| 286 | ++pred_begin(Pred2) != pred_end(Pred2) || |
| 287 | *pred_begin(Pred1) != *pred_begin(Pred2)) |
| 288 | return 0; |
| 289 | |
| 290 | // Otherwise, if this is a conditional branch, then we can use it! |
| 291 | BasicBlock *CommonPred = *pred_begin(Pred1); |
| 292 | if (BranchInst *BI = dyn_cast<BranchInst>(CommonPred->getTerminator())) { |
| 293 | assert(BI->isConditional() && "Two successors but not conditional?"); |
| 294 | if (BI->getSuccessor(0) == Pred1) { |
| 295 | IfTrue = Pred1; |
| 296 | IfFalse = Pred2; |
| 297 | } else { |
| 298 | IfTrue = Pred2; |
| 299 | IfFalse = Pred1; |
| 300 | } |
| 301 | return BI->getCondition(); |
| 302 | } |
| 303 | return 0; |
| 304 | } |
| 305 | |
| 306 | |
| 307 | // If we have a merge point of an "if condition" as accepted above, return true |
| 308 | // if the specified value dominates the block. We don't handle the true |
| 309 | // generality of domination here, just a special case which works well enough |
| 310 | // for us. |
Chris Lattner | 9c07866 | 2004-10-14 05:13:36 +0000 | [diff] [blame] | 311 | // |
| 312 | // If AggressiveInsts is non-null, and if V does not dominate BB, we check to |
| 313 | // see if V (which must be an instruction) is cheap to compute and is |
| 314 | // non-trapping. If both are true, the instruction is inserted into the set and |
| 315 | // true is returned. |
| 316 | static bool DominatesMergePoint(Value *V, BasicBlock *BB, |
| 317 | std::set<Instruction*> *AggressiveInsts) { |
Chris Lattner | 570751c | 2004-04-09 22:50:22 +0000 | [diff] [blame] | 318 | Instruction *I = dyn_cast<Instruction>(V); |
| 319 | if (!I) return true; // Non-instructions all dominate instructions. |
| 320 | BasicBlock *PBB = I->getParent(); |
Chris Lattner | 723c66d | 2004-02-11 03:36:04 +0000 | [diff] [blame] | 321 | |
Chris Lattner | da895d6 | 2005-02-27 06:18:25 +0000 | [diff] [blame] | 322 | // 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] | 323 | // the bottom of this block. |
| 324 | if (PBB == BB) return false; |
Chris Lattner | 723c66d | 2004-02-11 03:36:04 +0000 | [diff] [blame] | 325 | |
Chris Lattner | 570751c | 2004-04-09 22:50:22 +0000 | [diff] [blame] | 326 | // If this instruction is defined in a block that contains an unconditional |
| 327 | // branch to BB, then it must be in the 'conditional' part of the "if |
| 328 | // statement". |
| 329 | if (BranchInst *BI = dyn_cast<BranchInst>(PBB->getTerminator())) |
| 330 | if (BI->isUnconditional() && BI->getSuccessor(0) == BB) { |
Chris Lattner | 9c07866 | 2004-10-14 05:13:36 +0000 | [diff] [blame] | 331 | if (!AggressiveInsts) return false; |
Chris Lattner | 570751c | 2004-04-09 22:50:22 +0000 | [diff] [blame] | 332 | // Okay, it looks like the instruction IS in the "condition". Check to |
| 333 | // see if its a cheap instruction to unconditionally compute, and if it |
| 334 | // only uses stuff defined outside of the condition. If so, hoist it out. |
| 335 | switch (I->getOpcode()) { |
| 336 | default: return false; // Cannot hoist this out safely. |
| 337 | case Instruction::Load: |
| 338 | // We can hoist loads that are non-volatile and obviously cannot trap. |
| 339 | if (cast<LoadInst>(I)->isVolatile()) |
| 340 | return false; |
| 341 | if (!isa<AllocaInst>(I->getOperand(0)) && |
Reid Spencer | 460f16c | 2004-07-18 00:32:14 +0000 | [diff] [blame] | 342 | !isa<Constant>(I->getOperand(0))) |
Chris Lattner | 570751c | 2004-04-09 22:50:22 +0000 | [diff] [blame] | 343 | return false; |
| 344 | |
| 345 | // Finally, we have to check to make sure there are no instructions |
| 346 | // before the load in its basic block, as we are going to hoist the loop |
| 347 | // out to its predecessor. |
| 348 | if (PBB->begin() != BasicBlock::iterator(I)) |
| 349 | return false; |
| 350 | break; |
| 351 | case Instruction::Add: |
| 352 | case Instruction::Sub: |
| 353 | case Instruction::And: |
| 354 | case Instruction::Or: |
| 355 | case Instruction::Xor: |
| 356 | case Instruction::Shl: |
| 357 | case Instruction::Shr: |
Chris Lattner | bf5d4fb | 2005-04-21 05:31:13 +0000 | [diff] [blame] | 358 | case Instruction::SetEQ: |
| 359 | case Instruction::SetNE: |
| 360 | case Instruction::SetLT: |
| 361 | case Instruction::SetGT: |
| 362 | case Instruction::SetLE: |
| 363 | case Instruction::SetGE: |
Chris Lattner | 570751c | 2004-04-09 22:50:22 +0000 | [diff] [blame] | 364 | break; // These are all cheap and non-trapping instructions. |
| 365 | } |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 366 | |
Chris Lattner | 570751c | 2004-04-09 22:50:22 +0000 | [diff] [blame] | 367 | // Okay, we can only really hoist these out if their operands are not |
| 368 | // defined in the conditional region. |
| 369 | for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) |
Chris Lattner | 9c07866 | 2004-10-14 05:13:36 +0000 | [diff] [blame] | 370 | if (!DominatesMergePoint(I->getOperand(i), BB, 0)) |
Chris Lattner | 570751c | 2004-04-09 22:50:22 +0000 | [diff] [blame] | 371 | return false; |
Chris Lattner | 9c07866 | 2004-10-14 05:13:36 +0000 | [diff] [blame] | 372 | // Okay, it's safe to do this! Remember this instruction. |
| 373 | AggressiveInsts->insert(I); |
Chris Lattner | 570751c | 2004-04-09 22:50:22 +0000 | [diff] [blame] | 374 | } |
| 375 | |
Chris Lattner | 723c66d | 2004-02-11 03:36:04 +0000 | [diff] [blame] | 376 | return true; |
| 377 | } |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 378 | |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 379 | // GatherConstantSetEQs - Given a potentially 'or'd together collection of seteq |
| 380 | // instructions that compare a value against a constant, return the value being |
| 381 | // compared, and stick the constant into the Values vector. |
Chris Lattner | 1654cff | 2004-06-19 07:02:14 +0000 | [diff] [blame] | 382 | static Value *GatherConstantSetEQs(Value *V, std::vector<ConstantInt*> &Values){ |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 383 | if (Instruction *Inst = dyn_cast<Instruction>(V)) |
| 384 | if (Inst->getOpcode() == Instruction::SetEQ) { |
Chris Lattner | 1654cff | 2004-06-19 07:02:14 +0000 | [diff] [blame] | 385 | if (ConstantInt *C = dyn_cast<ConstantInt>(Inst->getOperand(1))) { |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 386 | Values.push_back(C); |
| 387 | return Inst->getOperand(0); |
Chris Lattner | 1654cff | 2004-06-19 07:02:14 +0000 | [diff] [blame] | 388 | } else if (ConstantInt *C = dyn_cast<ConstantInt>(Inst->getOperand(0))) { |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 389 | Values.push_back(C); |
| 390 | return Inst->getOperand(1); |
| 391 | } |
| 392 | } else if (Inst->getOpcode() == Instruction::Or) { |
| 393 | if (Value *LHS = GatherConstantSetEQs(Inst->getOperand(0), Values)) |
| 394 | if (Value *RHS = GatherConstantSetEQs(Inst->getOperand(1), Values)) |
| 395 | if (LHS == RHS) |
| 396 | return LHS; |
| 397 | } |
| 398 | return 0; |
| 399 | } |
| 400 | |
| 401 | // GatherConstantSetNEs - Given a potentially 'and'd together collection of |
| 402 | // setne instructions that compare a value against a constant, return the value |
| 403 | // being compared, and stick the constant into the Values vector. |
Chris Lattner | 1654cff | 2004-06-19 07:02:14 +0000 | [diff] [blame] | 404 | static Value *GatherConstantSetNEs(Value *V, std::vector<ConstantInt*> &Values){ |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 405 | if (Instruction *Inst = dyn_cast<Instruction>(V)) |
| 406 | if (Inst->getOpcode() == Instruction::SetNE) { |
Chris Lattner | 1654cff | 2004-06-19 07:02:14 +0000 | [diff] [blame] | 407 | if (ConstantInt *C = dyn_cast<ConstantInt>(Inst->getOperand(1))) { |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 408 | Values.push_back(C); |
| 409 | return Inst->getOperand(0); |
Chris Lattner | 1654cff | 2004-06-19 07:02:14 +0000 | [diff] [blame] | 410 | } else if (ConstantInt *C = dyn_cast<ConstantInt>(Inst->getOperand(0))) { |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 411 | Values.push_back(C); |
| 412 | return Inst->getOperand(1); |
| 413 | } |
| 414 | } else if (Inst->getOpcode() == Instruction::Cast) { |
| 415 | // Cast of X to bool is really a comparison against zero. |
| 416 | assert(Inst->getType() == Type::BoolTy && "Can only handle bool values!"); |
Chris Lattner | 1654cff | 2004-06-19 07:02:14 +0000 | [diff] [blame] | 417 | Values.push_back(ConstantInt::get(Inst->getOperand(0)->getType(), 0)); |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 418 | return Inst->getOperand(0); |
| 419 | } else if (Inst->getOpcode() == Instruction::And) { |
| 420 | if (Value *LHS = GatherConstantSetNEs(Inst->getOperand(0), Values)) |
| 421 | if (Value *RHS = GatherConstantSetNEs(Inst->getOperand(1), Values)) |
| 422 | if (LHS == RHS) |
| 423 | return LHS; |
| 424 | } |
| 425 | return 0; |
| 426 | } |
| 427 | |
| 428 | |
| 429 | |
| 430 | /// GatherValueComparisons - If the specified Cond is an 'and' or 'or' of a |
| 431 | /// bunch of comparisons of one value against constants, return the value and |
| 432 | /// the constants being compared. |
| 433 | static bool GatherValueComparisons(Instruction *Cond, Value *&CompVal, |
Chris Lattner | 1654cff | 2004-06-19 07:02:14 +0000 | [diff] [blame] | 434 | std::vector<ConstantInt*> &Values) { |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 435 | if (Cond->getOpcode() == Instruction::Or) { |
| 436 | CompVal = GatherConstantSetEQs(Cond, Values); |
| 437 | |
| 438 | // Return true to indicate that the condition is true if the CompVal is |
| 439 | // equal to one of the constants. |
| 440 | return true; |
| 441 | } else if (Cond->getOpcode() == Instruction::And) { |
| 442 | CompVal = GatherConstantSetNEs(Cond, Values); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 443 | |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 444 | // Return false to indicate that the condition is false if the CompVal is |
| 445 | // equal to one of the constants. |
| 446 | return false; |
| 447 | } |
| 448 | return false; |
| 449 | } |
| 450 | |
| 451 | /// ErasePossiblyDeadInstructionTree - If the specified instruction is dead and |
| 452 | /// has no side effects, nuke it. If it uses any instructions that become dead |
| 453 | /// because the instruction is now gone, nuke them too. |
| 454 | static void ErasePossiblyDeadInstructionTree(Instruction *I) { |
| 455 | if (isInstructionTriviallyDead(I)) { |
| 456 | std::vector<Value*> Operands(I->op_begin(), I->op_end()); |
| 457 | I->getParent()->getInstList().erase(I); |
| 458 | for (unsigned i = 0, e = Operands.size(); i != e; ++i) |
| 459 | if (Instruction *OpI = dyn_cast<Instruction>(Operands[i])) |
| 460 | ErasePossiblyDeadInstructionTree(OpI); |
| 461 | } |
| 462 | } |
| 463 | |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 464 | // isValueEqualityComparison - Return true if the specified terminator checks to |
| 465 | // see if a value is equal to constant integer value. |
| 466 | static Value *isValueEqualityComparison(TerminatorInst *TI) { |
Chris Lattner | 4bebf08 | 2004-03-16 19:45:22 +0000 | [diff] [blame] | 467 | if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) { |
| 468 | // Do not permit merging of large switch instructions into their |
| 469 | // predecessors unless there is only one predecessor. |
| 470 | if (SI->getNumSuccessors() * std::distance(pred_begin(SI->getParent()), |
| 471 | pred_end(SI->getParent())) > 128) |
| 472 | return 0; |
| 473 | |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 474 | return SI->getCondition(); |
Chris Lattner | 4bebf08 | 2004-03-16 19:45:22 +0000 | [diff] [blame] | 475 | } |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 476 | if (BranchInst *BI = dyn_cast<BranchInst>(TI)) |
| 477 | if (BI->isConditional() && BI->getCondition()->hasOneUse()) |
| 478 | if (SetCondInst *SCI = dyn_cast<SetCondInst>(BI->getCondition())) |
| 479 | if ((SCI->getOpcode() == Instruction::SetEQ || |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 480 | SCI->getOpcode() == Instruction::SetNE) && |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 481 | isa<ConstantInt>(SCI->getOperand(1))) |
| 482 | return SCI->getOperand(0); |
| 483 | return 0; |
| 484 | } |
| 485 | |
| 486 | // Given a value comparison instruction, decode all of the 'cases' that it |
| 487 | // represents and return the 'default' block. |
| 488 | static BasicBlock * |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 489 | GetValueEqualityComparisonCases(TerminatorInst *TI, |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 490 | std::vector<std::pair<ConstantInt*, |
| 491 | BasicBlock*> > &Cases) { |
| 492 | if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) { |
| 493 | Cases.reserve(SI->getNumCases()); |
| 494 | for (unsigned i = 1, e = SI->getNumCases(); i != e; ++i) |
Chris Lattner | be54dcc | 2005-02-26 18:33:28 +0000 | [diff] [blame] | 495 | Cases.push_back(std::make_pair(SI->getCaseValue(i), SI->getSuccessor(i))); |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 496 | return SI->getDefaultDest(); |
| 497 | } |
| 498 | |
| 499 | BranchInst *BI = cast<BranchInst>(TI); |
| 500 | SetCondInst *SCI = cast<SetCondInst>(BI->getCondition()); |
| 501 | Cases.push_back(std::make_pair(cast<ConstantInt>(SCI->getOperand(1)), |
| 502 | BI->getSuccessor(SCI->getOpcode() == |
| 503 | Instruction::SetNE))); |
| 504 | return BI->getSuccessor(SCI->getOpcode() == Instruction::SetEQ); |
| 505 | } |
| 506 | |
| 507 | |
Chris Lattner | 623369a | 2005-02-24 06:17:52 +0000 | [diff] [blame] | 508 | // EliminateBlockCases - Given an vector of bb/value pairs, remove any entries |
| 509 | // in the list that match the specified block. |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 510 | static void EliminateBlockCases(BasicBlock *BB, |
Chris Lattner | 623369a | 2005-02-24 06:17:52 +0000 | [diff] [blame] | 511 | std::vector<std::pair<ConstantInt*, BasicBlock*> > &Cases) { |
| 512 | for (unsigned i = 0, e = Cases.size(); i != e; ++i) |
| 513 | if (Cases[i].second == BB) { |
| 514 | Cases.erase(Cases.begin()+i); |
| 515 | --i; --e; |
| 516 | } |
| 517 | } |
| 518 | |
| 519 | // ValuesOverlap - Return true if there are any keys in C1 that exist in C2 as |
| 520 | // well. |
| 521 | static bool |
| 522 | ValuesOverlap(std::vector<std::pair<ConstantInt*, BasicBlock*> > &C1, |
| 523 | std::vector<std::pair<ConstantInt*, BasicBlock*> > &C2) { |
| 524 | std::vector<std::pair<ConstantInt*, BasicBlock*> > *V1 = &C1, *V2 = &C2; |
| 525 | |
| 526 | // Make V1 be smaller than V2. |
| 527 | if (V1->size() > V2->size()) |
| 528 | std::swap(V1, V2); |
| 529 | |
| 530 | if (V1->size() == 0) return false; |
| 531 | if (V1->size() == 1) { |
| 532 | // Just scan V2. |
| 533 | ConstantInt *TheVal = (*V1)[0].first; |
| 534 | for (unsigned i = 0, e = V2->size(); i != e; ++i) |
| 535 | if (TheVal == (*V2)[i].first) |
| 536 | return true; |
| 537 | } |
| 538 | |
| 539 | // Otherwise, just sort both lists and compare element by element. |
| 540 | std::sort(V1->begin(), V1->end()); |
| 541 | std::sort(V2->begin(), V2->end()); |
| 542 | unsigned i1 = 0, i2 = 0, e1 = V1->size(), e2 = V2->size(); |
| 543 | while (i1 != e1 && i2 != e2) { |
| 544 | if ((*V1)[i1].first == (*V2)[i2].first) |
| 545 | return true; |
| 546 | if ((*V1)[i1].first < (*V2)[i2].first) |
| 547 | ++i1; |
| 548 | else |
| 549 | ++i2; |
| 550 | } |
| 551 | return false; |
| 552 | } |
| 553 | |
| 554 | // SimplifyEqualityComparisonWithOnlyPredecessor - If TI is known to be a |
| 555 | // terminator instruction and its block is known to only have a single |
| 556 | // predecessor block, check to see if that predecessor is also a value |
| 557 | // comparison with the same value, and if that comparison determines the outcome |
| 558 | // of this comparison. If so, simplify TI. This does a very limited form of |
| 559 | // jump threading. |
| 560 | static bool SimplifyEqualityComparisonWithOnlyPredecessor(TerminatorInst *TI, |
| 561 | BasicBlock *Pred) { |
| 562 | Value *PredVal = isValueEqualityComparison(Pred->getTerminator()); |
| 563 | if (!PredVal) return false; // Not a value comparison in predecessor. |
| 564 | |
| 565 | Value *ThisVal = isValueEqualityComparison(TI); |
| 566 | assert(ThisVal && "This isn't a value comparison!!"); |
| 567 | if (ThisVal != PredVal) return false; // Different predicates. |
| 568 | |
| 569 | // Find out information about when control will move from Pred to TI's block. |
| 570 | std::vector<std::pair<ConstantInt*, BasicBlock*> > PredCases; |
| 571 | BasicBlock *PredDef = GetValueEqualityComparisonCases(Pred->getTerminator(), |
| 572 | PredCases); |
| 573 | EliminateBlockCases(PredDef, PredCases); // Remove default from cases. |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 574 | |
Chris Lattner | 623369a | 2005-02-24 06:17:52 +0000 | [diff] [blame] | 575 | // Find information about how control leaves this block. |
| 576 | std::vector<std::pair<ConstantInt*, BasicBlock*> > ThisCases; |
| 577 | BasicBlock *ThisDef = GetValueEqualityComparisonCases(TI, ThisCases); |
| 578 | EliminateBlockCases(ThisDef, ThisCases); // Remove default from cases. |
| 579 | |
| 580 | // If TI's block is the default block from Pred's comparison, potentially |
| 581 | // simplify TI based on this knowledge. |
| 582 | if (PredDef == TI->getParent()) { |
| 583 | // If we are here, we know that the value is none of those cases listed in |
| 584 | // PredCases. If there are any cases in ThisCases that are in PredCases, we |
| 585 | // can simplify TI. |
| 586 | if (ValuesOverlap(PredCases, ThisCases)) { |
| 587 | if (BranchInst *BTI = dyn_cast<BranchInst>(TI)) { |
| 588 | // Okay, one of the successors of this condbr is dead. Convert it to a |
| 589 | // uncond br. |
| 590 | assert(ThisCases.size() == 1 && "Branch can only have one case!"); |
| 591 | Value *Cond = BTI->getCondition(); |
| 592 | // Insert the new branch. |
| 593 | Instruction *NI = new BranchInst(ThisDef, TI); |
| 594 | |
| 595 | // Remove PHI node entries for the dead edge. |
| 596 | ThisCases[0].second->removePredecessor(TI->getParent()); |
| 597 | |
| 598 | DEBUG(std::cerr << "Threading pred instr: " << *Pred->getTerminator() |
| 599 | << "Through successor TI: " << *TI << "Leaving: " << *NI << "\n"); |
| 600 | |
| 601 | TI->eraseFromParent(); // Nuke the old one. |
| 602 | // If condition is now dead, nuke it. |
| 603 | if (Instruction *CondI = dyn_cast<Instruction>(Cond)) |
| 604 | ErasePossiblyDeadInstructionTree(CondI); |
| 605 | return true; |
| 606 | |
| 607 | } else { |
| 608 | SwitchInst *SI = cast<SwitchInst>(TI); |
| 609 | // Okay, TI has cases that are statically dead, prune them away. |
| 610 | std::set<Constant*> DeadCases; |
| 611 | for (unsigned i = 0, e = PredCases.size(); i != e; ++i) |
| 612 | DeadCases.insert(PredCases[i].first); |
| 613 | |
| 614 | DEBUG(std::cerr << "Threading pred instr: " << *Pred->getTerminator() |
| 615 | << "Through successor TI: " << *TI); |
| 616 | |
| 617 | for (unsigned i = SI->getNumCases()-1; i != 0; --i) |
| 618 | if (DeadCases.count(SI->getCaseValue(i))) { |
| 619 | SI->getSuccessor(i)->removePredecessor(TI->getParent()); |
| 620 | SI->removeCase(i); |
| 621 | } |
| 622 | |
| 623 | DEBUG(std::cerr << "Leaving: " << *TI << "\n"); |
| 624 | return true; |
| 625 | } |
| 626 | } |
| 627 | |
| 628 | } else { |
| 629 | // Otherwise, TI's block must correspond to some matched value. Find out |
| 630 | // which value (or set of values) this is. |
| 631 | ConstantInt *TIV = 0; |
| 632 | BasicBlock *TIBB = TI->getParent(); |
| 633 | for (unsigned i = 0, e = PredCases.size(); i != e; ++i) |
| 634 | if (PredCases[i].second == TIBB) |
| 635 | if (TIV == 0) |
| 636 | TIV = PredCases[i].first; |
| 637 | else |
| 638 | return false; // Cannot handle multiple values coming to this block. |
| 639 | assert(TIV && "No edge from pred to succ?"); |
| 640 | |
| 641 | // Okay, we found the one constant that our value can be if we get into TI's |
| 642 | // BB. Find out which successor will unconditionally be branched to. |
| 643 | BasicBlock *TheRealDest = 0; |
| 644 | for (unsigned i = 0, e = ThisCases.size(); i != e; ++i) |
| 645 | if (ThisCases[i].first == TIV) { |
| 646 | TheRealDest = ThisCases[i].second; |
| 647 | break; |
| 648 | } |
| 649 | |
| 650 | // If not handled by any explicit cases, it is handled by the default case. |
| 651 | if (TheRealDest == 0) TheRealDest = ThisDef; |
| 652 | |
| 653 | // Remove PHI node entries for dead edges. |
| 654 | BasicBlock *CheckEdge = TheRealDest; |
| 655 | for (succ_iterator SI = succ_begin(TIBB), e = succ_end(TIBB); SI != e; ++SI) |
| 656 | if (*SI != CheckEdge) |
| 657 | (*SI)->removePredecessor(TIBB); |
| 658 | else |
| 659 | CheckEdge = 0; |
| 660 | |
| 661 | // Insert the new branch. |
| 662 | Instruction *NI = new BranchInst(TheRealDest, TI); |
| 663 | |
| 664 | DEBUG(std::cerr << "Threading pred instr: " << *Pred->getTerminator() |
| 665 | << "Through successor TI: " << *TI << "Leaving: " << *NI << "\n"); |
| 666 | Instruction *Cond = 0; |
| 667 | if (BranchInst *BI = dyn_cast<BranchInst>(TI)) |
| 668 | Cond = dyn_cast<Instruction>(BI->getCondition()); |
| 669 | TI->eraseFromParent(); // Nuke the old one. |
| 670 | |
| 671 | if (Cond) ErasePossiblyDeadInstructionTree(Cond); |
| 672 | return true; |
| 673 | } |
| 674 | return false; |
| 675 | } |
| 676 | |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 677 | // FoldValueComparisonIntoPredecessors - The specified terminator is a value |
| 678 | // equality comparison instruction (either a switch or a branch on "X == c"). |
| 679 | // See if any of the predecessors of the terminator block are value comparisons |
| 680 | // on the same value. If so, and if safe to do so, fold them together. |
| 681 | static bool FoldValueComparisonIntoPredecessors(TerminatorInst *TI) { |
| 682 | BasicBlock *BB = TI->getParent(); |
| 683 | Value *CV = isValueEqualityComparison(TI); // CondVal |
| 684 | assert(CV && "Not a comparison?"); |
| 685 | bool Changed = false; |
| 686 | |
| 687 | std::vector<BasicBlock*> Preds(pred_begin(BB), pred_end(BB)); |
| 688 | while (!Preds.empty()) { |
| 689 | BasicBlock *Pred = Preds.back(); |
| 690 | Preds.pop_back(); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 691 | |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 692 | // See if the predecessor is a comparison with the same value. |
| 693 | TerminatorInst *PTI = Pred->getTerminator(); |
| 694 | Value *PCV = isValueEqualityComparison(PTI); // PredCondVal |
| 695 | |
| 696 | if (PCV == CV && SafeToMergeTerminators(TI, PTI)) { |
| 697 | // Figure out which 'cases' to copy from SI to PSI. |
| 698 | std::vector<std::pair<ConstantInt*, BasicBlock*> > BBCases; |
| 699 | BasicBlock *BBDefault = GetValueEqualityComparisonCases(TI, BBCases); |
| 700 | |
| 701 | std::vector<std::pair<ConstantInt*, BasicBlock*> > PredCases; |
| 702 | BasicBlock *PredDefault = GetValueEqualityComparisonCases(PTI, PredCases); |
| 703 | |
| 704 | // Based on whether the default edge from PTI goes to BB or not, fill in |
| 705 | // PredCases and PredDefault with the new switch cases we would like to |
| 706 | // build. |
| 707 | std::vector<BasicBlock*> NewSuccessors; |
| 708 | |
| 709 | if (PredDefault == BB) { |
| 710 | // If this is the default destination from PTI, only the edges in TI |
| 711 | // that don't occur in PTI, or that branch to BB will be activated. |
| 712 | std::set<ConstantInt*> PTIHandled; |
| 713 | for (unsigned i = 0, e = PredCases.size(); i != e; ++i) |
| 714 | if (PredCases[i].second != BB) |
| 715 | PTIHandled.insert(PredCases[i].first); |
| 716 | else { |
| 717 | // The default destination is BB, we don't need explicit targets. |
| 718 | std::swap(PredCases[i], PredCases.back()); |
| 719 | PredCases.pop_back(); |
| 720 | --i; --e; |
| 721 | } |
| 722 | |
| 723 | // Reconstruct the new switch statement we will be building. |
| 724 | if (PredDefault != BBDefault) { |
| 725 | PredDefault->removePredecessor(Pred); |
| 726 | PredDefault = BBDefault; |
| 727 | NewSuccessors.push_back(BBDefault); |
| 728 | } |
| 729 | for (unsigned i = 0, e = BBCases.size(); i != e; ++i) |
| 730 | if (!PTIHandled.count(BBCases[i].first) && |
| 731 | BBCases[i].second != BBDefault) { |
| 732 | PredCases.push_back(BBCases[i]); |
| 733 | NewSuccessors.push_back(BBCases[i].second); |
| 734 | } |
| 735 | |
| 736 | } else { |
| 737 | // If this is not the default destination from PSI, only the edges |
| 738 | // in SI that occur in PSI with a destination of BB will be |
| 739 | // activated. |
| 740 | std::set<ConstantInt*> PTIHandled; |
| 741 | for (unsigned i = 0, e = PredCases.size(); i != e; ++i) |
| 742 | if (PredCases[i].second == BB) { |
| 743 | PTIHandled.insert(PredCases[i].first); |
| 744 | std::swap(PredCases[i], PredCases.back()); |
| 745 | PredCases.pop_back(); |
| 746 | --i; --e; |
| 747 | } |
| 748 | |
| 749 | // Okay, now we know which constants were sent to BB from the |
| 750 | // predecessor. Figure out where they will all go now. |
| 751 | for (unsigned i = 0, e = BBCases.size(); i != e; ++i) |
| 752 | if (PTIHandled.count(BBCases[i].first)) { |
| 753 | // If this is one we are capable of getting... |
| 754 | PredCases.push_back(BBCases[i]); |
| 755 | NewSuccessors.push_back(BBCases[i].second); |
| 756 | PTIHandled.erase(BBCases[i].first);// This constant is taken care of |
| 757 | } |
| 758 | |
| 759 | // If there are any constants vectored to BB that TI doesn't handle, |
| 760 | // they must go to the default destination of TI. |
| 761 | for (std::set<ConstantInt*>::iterator I = PTIHandled.begin(), |
| 762 | E = PTIHandled.end(); I != E; ++I) { |
| 763 | PredCases.push_back(std::make_pair(*I, BBDefault)); |
| 764 | NewSuccessors.push_back(BBDefault); |
| 765 | } |
| 766 | } |
| 767 | |
| 768 | // Okay, at this point, we know which new successor Pred will get. Make |
| 769 | // sure we update the number of entries in the PHI nodes for these |
| 770 | // successors. |
| 771 | for (unsigned i = 0, e = NewSuccessors.size(); i != e; ++i) |
| 772 | AddPredecessorToBlock(NewSuccessors[i], Pred, BB); |
| 773 | |
| 774 | // Now that the successors are updated, create the new Switch instruction. |
Chris Lattner | 3788059 | 2005-01-29 00:38:26 +0000 | [diff] [blame] | 775 | SwitchInst *NewSI = new SwitchInst(CV, PredDefault, PredCases.size(),PTI); |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 776 | for (unsigned i = 0, e = PredCases.size(); i != e; ++i) |
| 777 | NewSI->addCase(PredCases[i].first, PredCases[i].second); |
Chris Lattner | 13b2f76 | 2005-01-01 16:02:12 +0000 | [diff] [blame] | 778 | |
| 779 | Instruction *DeadCond = 0; |
| 780 | if (BranchInst *BI = dyn_cast<BranchInst>(PTI)) |
| 781 | // If PTI is a branch, remember the condition. |
| 782 | DeadCond = dyn_cast<Instruction>(BI->getCondition()); |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 783 | Pred->getInstList().erase(PTI); |
| 784 | |
Chris Lattner | 13b2f76 | 2005-01-01 16:02:12 +0000 | [diff] [blame] | 785 | // If the condition is dead now, remove the instruction tree. |
| 786 | if (DeadCond) ErasePossiblyDeadInstructionTree(DeadCond); |
| 787 | |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 788 | // Okay, last check. If BB is still a successor of PSI, then we must |
| 789 | // have an infinite loop case. If so, add an infinitely looping block |
| 790 | // to handle the case to preserve the behavior of the code. |
| 791 | BasicBlock *InfLoopBlock = 0; |
| 792 | for (unsigned i = 0, e = NewSI->getNumSuccessors(); i != e; ++i) |
| 793 | if (NewSI->getSuccessor(i) == BB) { |
| 794 | if (InfLoopBlock == 0) { |
| 795 | // Insert it at the end of the loop, because it's either code, |
| 796 | // or it won't matter if it's hot. :) |
| 797 | InfLoopBlock = new BasicBlock("infloop", BB->getParent()); |
| 798 | new BranchInst(InfLoopBlock, InfLoopBlock); |
| 799 | } |
| 800 | NewSI->setSuccessor(i, InfLoopBlock); |
| 801 | } |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 802 | |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 803 | Changed = true; |
| 804 | } |
| 805 | } |
| 806 | return Changed; |
| 807 | } |
| 808 | |
Chris Lattner | 6306d07 | 2005-08-03 17:59:45 +0000 | [diff] [blame] | 809 | /// HoistThenElseCodeToIf - Given a conditional branch that goes to BB1 and |
Chris Lattner | 37dc938 | 2004-11-30 00:29:14 +0000 | [diff] [blame] | 810 | /// BB2, hoist any common code in the two blocks up into the branch block. The |
| 811 | /// caller of this function guarantees that BI's block dominates BB1 and BB2. |
| 812 | static bool HoistThenElseCodeToIf(BranchInst *BI) { |
| 813 | // This does very trivial matching, with limited scanning, to find identical |
| 814 | // instructions in the two blocks. In particular, we don't want to get into |
| 815 | // O(M*N) situations here where M and N are the sizes of BB1 and BB2. As |
| 816 | // such, we currently just scan for obviously identical instructions in an |
| 817 | // identical order. |
| 818 | BasicBlock *BB1 = BI->getSuccessor(0); // The true destination. |
| 819 | BasicBlock *BB2 = BI->getSuccessor(1); // The false destination |
| 820 | |
| 821 | Instruction *I1 = BB1->begin(), *I2 = BB2->begin(); |
Chris Lattner | 6306d07 | 2005-08-03 17:59:45 +0000 | [diff] [blame] | 822 | if (I1->getOpcode() != I2->getOpcode() || !I1->isIdenticalTo(I2) || |
| 823 | isa<PHINode>(I1)) |
Chris Lattner | 37dc938 | 2004-11-30 00:29:14 +0000 | [diff] [blame] | 824 | return false; |
| 825 | |
| 826 | // If we get here, we can hoist at least one instruction. |
| 827 | BasicBlock *BIParent = BI->getParent(); |
Chris Lattner | 37dc938 | 2004-11-30 00:29:14 +0000 | [diff] [blame] | 828 | |
| 829 | do { |
| 830 | // If we are hoisting the terminator instruction, don't move one (making a |
| 831 | // broken BB), instead clone it, and remove BI. |
| 832 | if (isa<TerminatorInst>(I1)) |
| 833 | goto HoistTerminator; |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 834 | |
Chris Lattner | 37dc938 | 2004-11-30 00:29:14 +0000 | [diff] [blame] | 835 | // For a normal instruction, we just move one to right before the branch, |
| 836 | // then replace all uses of the other with the first. Finally, we remove |
| 837 | // the now redundant second instruction. |
| 838 | BIParent->getInstList().splice(BI, BB1->getInstList(), I1); |
| 839 | if (!I2->use_empty()) |
| 840 | I2->replaceAllUsesWith(I1); |
| 841 | BB2->getInstList().erase(I2); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 842 | |
Chris Lattner | 37dc938 | 2004-11-30 00:29:14 +0000 | [diff] [blame] | 843 | I1 = BB1->begin(); |
| 844 | I2 = BB2->begin(); |
Chris Lattner | 37dc938 | 2004-11-30 00:29:14 +0000 | [diff] [blame] | 845 | } while (I1->getOpcode() == I2->getOpcode() && I1->isIdenticalTo(I2)); |
| 846 | |
| 847 | return true; |
| 848 | |
| 849 | HoistTerminator: |
| 850 | // Okay, it is safe to hoist the terminator. |
| 851 | Instruction *NT = I1->clone(); |
| 852 | BIParent->getInstList().insert(BI, NT); |
| 853 | if (NT->getType() != Type::VoidTy) { |
| 854 | I1->replaceAllUsesWith(NT); |
| 855 | I2->replaceAllUsesWith(NT); |
| 856 | NT->setName(I1->getName()); |
| 857 | } |
| 858 | |
| 859 | // Hoisting one of the terminators from our successor is a great thing. |
| 860 | // Unfortunately, the successors of the if/else blocks may have PHI nodes in |
| 861 | // them. If they do, all PHI entries for BB1/BB2 must agree for all PHI |
| 862 | // nodes, so we insert select instruction to compute the final result. |
| 863 | std::map<std::pair<Value*,Value*>, SelectInst*> InsertedSelects; |
| 864 | for (succ_iterator SI = succ_begin(BB1), E = succ_end(BB1); SI != E; ++SI) { |
| 865 | PHINode *PN; |
| 866 | for (BasicBlock::iterator BBI = SI->begin(); |
Chris Lattner | 0f535c6 | 2004-11-30 07:47:34 +0000 | [diff] [blame] | 867 | (PN = dyn_cast<PHINode>(BBI)); ++BBI) { |
Chris Lattner | 37dc938 | 2004-11-30 00:29:14 +0000 | [diff] [blame] | 868 | Value *BB1V = PN->getIncomingValueForBlock(BB1); |
| 869 | Value *BB2V = PN->getIncomingValueForBlock(BB2); |
| 870 | if (BB1V != BB2V) { |
| 871 | // These values do not agree. Insert a select instruction before NT |
| 872 | // that determines the right value. |
| 873 | SelectInst *&SI = InsertedSelects[std::make_pair(BB1V, BB2V)]; |
| 874 | if (SI == 0) |
| 875 | SI = new SelectInst(BI->getCondition(), BB1V, BB2V, |
| 876 | BB1V->getName()+"."+BB2V->getName(), NT); |
| 877 | // Make the PHI node use the select for all incoming values for BB1/BB2 |
| 878 | for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) |
| 879 | if (PN->getIncomingBlock(i) == BB1 || PN->getIncomingBlock(i) == BB2) |
| 880 | PN->setIncomingValue(i, SI); |
| 881 | } |
| 882 | } |
| 883 | } |
| 884 | |
| 885 | // Update any PHI nodes in our new successors. |
| 886 | for (succ_iterator SI = succ_begin(BB1), E = succ_end(BB1); SI != E; ++SI) |
| 887 | AddPredecessorToBlock(*SI, BIParent, BB1); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 888 | |
Chris Lattner | 37dc938 | 2004-11-30 00:29:14 +0000 | [diff] [blame] | 889 | BI->eraseFromParent(); |
| 890 | return true; |
| 891 | } |
| 892 | |
Chris Lattner | 2e42e36 | 2005-09-20 00:43:16 +0000 | [diff] [blame] | 893 | /// BlockIsSimpleEnoughToThreadThrough - Return true if we can thread a branch |
| 894 | /// across this block. |
| 895 | static bool BlockIsSimpleEnoughToThreadThrough(BasicBlock *BB) { |
| 896 | BranchInst *BI = cast<BranchInst>(BB->getTerminator()); |
| 897 | Value *Cond = BI->getCondition(); |
| 898 | |
Chris Lattner | e9487f0 | 2005-09-20 01:48:40 +0000 | [diff] [blame] | 899 | unsigned Size = 0; |
| 900 | |
Chris Lattner | 2e42e36 | 2005-09-20 00:43:16 +0000 | [diff] [blame] | 901 | // If this basic block contains anything other than a PHI (which controls the |
| 902 | // branch) and branch itself, bail out. FIXME: improve this in the future. |
Chris Lattner | e9487f0 | 2005-09-20 01:48:40 +0000 | [diff] [blame] | 903 | for (BasicBlock::iterator BBI = BB->begin(); &*BBI != BI; ++BBI, ++Size) { |
| 904 | if (Size > 10) return false; // Don't clone large BB's. |
Chris Lattner | 2e42e36 | 2005-09-20 00:43:16 +0000 | [diff] [blame] | 905 | |
Chris Lattner | e9487f0 | 2005-09-20 01:48:40 +0000 | [diff] [blame] | 906 | // We can only support instructions that are do not define values that are |
| 907 | // live outside of the current basic block. |
| 908 | for (Value::use_iterator UI = BBI->use_begin(), E = BBI->use_end(); |
| 909 | UI != E; ++UI) { |
| 910 | Instruction *U = cast<Instruction>(*UI); |
| 911 | if (U->getParent() != BB || isa<PHINode>(U)) return false; |
| 912 | } |
Chris Lattner | 2e42e36 | 2005-09-20 00:43:16 +0000 | [diff] [blame] | 913 | |
| 914 | // Looks ok, continue checking. |
| 915 | } |
Chris Lattner | e9487f0 | 2005-09-20 01:48:40 +0000 | [diff] [blame] | 916 | |
Chris Lattner | 2e42e36 | 2005-09-20 00:43:16 +0000 | [diff] [blame] | 917 | return true; |
| 918 | } |
| 919 | |
Chris Lattner | eaba3a1 | 2005-09-19 23:49:37 +0000 | [diff] [blame] | 920 | /// FoldCondBranchOnPHI - If we have a conditional branch on a PHI node value |
| 921 | /// that is defined in the same block as the branch and if any PHI entries are |
| 922 | /// constants, thread edges corresponding to that entry to be branches to their |
| 923 | /// ultimate destination. |
| 924 | static bool FoldCondBranchOnPHI(BranchInst *BI) { |
| 925 | BasicBlock *BB = BI->getParent(); |
| 926 | PHINode *PN = dyn_cast<PHINode>(BI->getCondition()); |
Chris Lattner | 9c88d98 | 2005-09-19 23:57:04 +0000 | [diff] [blame] | 927 | // NOTE: we currently cannot transform this case if the PHI node is used |
| 928 | // outside of the block. |
Chris Lattner | 2e42e36 | 2005-09-20 00:43:16 +0000 | [diff] [blame] | 929 | if (!PN || PN->getParent() != BB || !PN->hasOneUse()) |
| 930 | return false; |
Chris Lattner | eaba3a1 | 2005-09-19 23:49:37 +0000 | [diff] [blame] | 931 | |
| 932 | // Degenerate case of a single entry PHI. |
| 933 | if (PN->getNumIncomingValues() == 1) { |
| 934 | if (PN->getIncomingValue(0) != PN) |
| 935 | PN->replaceAllUsesWith(PN->getIncomingValue(0)); |
| 936 | else |
| 937 | PN->replaceAllUsesWith(UndefValue::get(PN->getType())); |
| 938 | PN->eraseFromParent(); |
| 939 | return true; |
| 940 | } |
| 941 | |
| 942 | // Now we know that this block has multiple preds and two succs. |
Chris Lattner | 2e42e36 | 2005-09-20 00:43:16 +0000 | [diff] [blame] | 943 | if (!BlockIsSimpleEnoughToThreadThrough(BB)) return false; |
Chris Lattner | eaba3a1 | 2005-09-19 23:49:37 +0000 | [diff] [blame] | 944 | |
| 945 | // Okay, this is a simple enough basic block. See if any phi values are |
| 946 | // constants. |
| 947 | for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) |
| 948 | if (ConstantBool *CB = dyn_cast<ConstantBool>(PN->getIncomingValue(i))) { |
| 949 | // Okay, we now know that all edges from PredBB should be revectored to |
| 950 | // branch to RealDest. |
| 951 | BasicBlock *PredBB = PN->getIncomingBlock(i); |
| 952 | BasicBlock *RealDest = BI->getSuccessor(!CB->getValue()); |
| 953 | |
Chris Lattner | e9487f0 | 2005-09-20 01:48:40 +0000 | [diff] [blame] | 954 | if (RealDest == BB) continue; // Skip self loops. |
Chris Lattner | eaba3a1 | 2005-09-19 23:49:37 +0000 | [diff] [blame] | 955 | |
Chris Lattner | e9487f0 | 2005-09-20 01:48:40 +0000 | [diff] [blame] | 956 | // The dest block might have PHI nodes, other predecessors and other |
| 957 | // difficult cases. Instead of being smart about this, just insert a new |
| 958 | // block that jumps to the destination block, effectively splitting |
| 959 | // the edge we are about to create. |
| 960 | BasicBlock *EdgeBB = new BasicBlock(RealDest->getName()+".critedge", |
| 961 | RealDest->getParent(), RealDest); |
| 962 | new BranchInst(RealDest, EdgeBB); |
| 963 | PHINode *PN; |
| 964 | for (BasicBlock::iterator BBI = RealDest->begin(); |
| 965 | (PN = dyn_cast<PHINode>(BBI)); ++BBI) { |
| 966 | Value *V = PN->getIncomingValueForBlock(BB); |
| 967 | PN->addIncoming(V, EdgeBB); |
| 968 | } |
| 969 | |
| 970 | // BB may have instructions that are being threaded over. Clone these |
| 971 | // instructions into EdgeBB. We know that there will be no uses of the |
| 972 | // cloned instructions outside of EdgeBB. |
| 973 | BasicBlock::iterator InsertPt = EdgeBB->begin(); |
| 974 | std::map<Value*, Value*> TranslateMap; // Track translated values. |
| 975 | for (BasicBlock::iterator BBI = BB->begin(); &*BBI != BI; ++BBI) { |
| 976 | if (PHINode *PN = dyn_cast<PHINode>(BBI)) { |
| 977 | TranslateMap[PN] = PN->getIncomingValueForBlock(PredBB); |
| 978 | } else { |
| 979 | // Clone the instruction. |
| 980 | Instruction *N = BBI->clone(); |
| 981 | if (BBI->hasName()) N->setName(BBI->getName()+".c"); |
| 982 | |
| 983 | // Update operands due to translation. |
| 984 | for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) { |
| 985 | std::map<Value*, Value*>::iterator PI = |
| 986 | TranslateMap.find(N->getOperand(i)); |
| 987 | if (PI != TranslateMap.end()) |
| 988 | N->setOperand(i, PI->second); |
| 989 | } |
| 990 | |
| 991 | // Check for trivial simplification. |
| 992 | if (Constant *C = ConstantFoldInstruction(N)) { |
Chris Lattner | e9487f0 | 2005-09-20 01:48:40 +0000 | [diff] [blame] | 993 | TranslateMap[BBI] = C; |
| 994 | delete N; // Constant folded away, don't need actual inst |
| 995 | } else { |
| 996 | // Insert the new instruction into its new home. |
| 997 | EdgeBB->getInstList().insert(InsertPt, N); |
| 998 | if (!BBI->use_empty()) |
| 999 | TranslateMap[BBI] = N; |
| 1000 | } |
| 1001 | } |
| 1002 | } |
| 1003 | |
Chris Lattner | eaba3a1 | 2005-09-19 23:49:37 +0000 | [diff] [blame] | 1004 | // 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] | 1005 | // to EdgeBB instead. |
Chris Lattner | eaba3a1 | 2005-09-19 23:49:37 +0000 | [diff] [blame] | 1006 | TerminatorInst *PredBBTI = PredBB->getTerminator(); |
| 1007 | for (unsigned i = 0, e = PredBBTI->getNumSuccessors(); i != e; ++i) |
| 1008 | if (PredBBTI->getSuccessor(i) == BB) { |
| 1009 | BB->removePredecessor(PredBB); |
Chris Lattner | e9487f0 | 2005-09-20 01:48:40 +0000 | [diff] [blame] | 1010 | PredBBTI->setSuccessor(i, EdgeBB); |
Chris Lattner | eaba3a1 | 2005-09-19 23:49:37 +0000 | [diff] [blame] | 1011 | } |
| 1012 | |
Chris Lattner | eaba3a1 | 2005-09-19 23:49:37 +0000 | [diff] [blame] | 1013 | // Recurse, simplifying any other constants. |
| 1014 | return FoldCondBranchOnPHI(BI) | true; |
| 1015 | } |
| 1016 | |
| 1017 | return false; |
| 1018 | } |
| 1019 | |
Chris Lattner | f58c1a5 | 2005-09-23 06:39:30 +0000 | [diff] [blame] | 1020 | /// FoldTwoEntryPHINode - Given a BB that starts with the specified two-entry |
| 1021 | /// PHI node, see if we can eliminate it. |
| 1022 | static bool FoldTwoEntryPHINode(PHINode *PN) { |
| 1023 | // Ok, this is a two entry PHI node. Check to see if this is a simple "if |
| 1024 | // statement", which has a very simple dominance structure. Basically, we |
| 1025 | // are trying to find the condition that is being branched on, which |
| 1026 | // subsequently causes this merge to happen. We really want control |
| 1027 | // dependence information for this check, but simplifycfg can't keep it up |
| 1028 | // to date, and this catches most of the cases we care about anyway. |
| 1029 | // |
| 1030 | BasicBlock *BB = PN->getParent(); |
| 1031 | BasicBlock *IfTrue, *IfFalse; |
| 1032 | Value *IfCond = GetIfCondition(BB, IfTrue, IfFalse); |
| 1033 | if (!IfCond) return false; |
| 1034 | |
| 1035 | DEBUG(std::cerr << "FOUND IF CONDITION! " << *IfCond << " T: " |
| 1036 | << IfTrue->getName() << " F: " << IfFalse->getName() << "\n"); |
| 1037 | |
| 1038 | // Loop over the PHI's seeing if we can promote them all to select |
| 1039 | // instructions. While we are at it, keep track of the instructions |
| 1040 | // that need to be moved to the dominating block. |
| 1041 | std::set<Instruction*> AggressiveInsts; |
| 1042 | |
Chris Lattner | f58c1a5 | 2005-09-23 06:39:30 +0000 | [diff] [blame] | 1043 | BasicBlock::iterator AfterPHIIt = BB->begin(); |
| 1044 | while (isa<PHINode>(AfterPHIIt)) { |
| 1045 | PHINode *PN = cast<PHINode>(AfterPHIIt++); |
| 1046 | if (PN->getIncomingValue(0) == PN->getIncomingValue(1)) { |
| 1047 | if (PN->getIncomingValue(0) != PN) |
| 1048 | PN->replaceAllUsesWith(PN->getIncomingValue(0)); |
| 1049 | else |
| 1050 | PN->replaceAllUsesWith(UndefValue::get(PN->getType())); |
| 1051 | } else if (!DominatesMergePoint(PN->getIncomingValue(0), BB, |
| 1052 | &AggressiveInsts) || |
| 1053 | !DominatesMergePoint(PN->getIncomingValue(1), BB, |
| 1054 | &AggressiveInsts)) { |
Chris Lattner | 055dc10 | 2005-09-23 07:23:18 +0000 | [diff] [blame] | 1055 | return false; |
Chris Lattner | f58c1a5 | 2005-09-23 06:39:30 +0000 | [diff] [blame] | 1056 | } |
| 1057 | } |
| 1058 | |
Chris Lattner | f58c1a5 | 2005-09-23 06:39:30 +0000 | [diff] [blame] | 1059 | // If we all PHI nodes are promotable, check to make sure that all |
| 1060 | // instructions in the predecessor blocks can be promoted as well. If |
| 1061 | // not, we won't be able to get rid of the control flow, so it's not |
| 1062 | // worth promoting to select instructions. |
| 1063 | BasicBlock *DomBlock = 0, *IfBlock1 = 0, *IfBlock2 = 0; |
| 1064 | PN = cast<PHINode>(BB->begin()); |
| 1065 | BasicBlock *Pred = PN->getIncomingBlock(0); |
| 1066 | if (cast<BranchInst>(Pred->getTerminator())->isUnconditional()) { |
| 1067 | IfBlock1 = Pred; |
| 1068 | DomBlock = *pred_begin(Pred); |
| 1069 | for (BasicBlock::iterator I = Pred->begin(); |
| 1070 | !isa<TerminatorInst>(I); ++I) |
| 1071 | if (!AggressiveInsts.count(I)) { |
| 1072 | // This is not an aggressive instruction that we can promote. |
| 1073 | // Because of this, we won't be able to get rid of the control |
| 1074 | // flow, so the xform is not worth it. |
| 1075 | return false; |
| 1076 | } |
| 1077 | } |
| 1078 | |
| 1079 | Pred = PN->getIncomingBlock(1); |
| 1080 | if (cast<BranchInst>(Pred->getTerminator())->isUnconditional()) { |
| 1081 | IfBlock2 = Pred; |
| 1082 | DomBlock = *pred_begin(Pred); |
| 1083 | for (BasicBlock::iterator I = Pred->begin(); |
| 1084 | !isa<TerminatorInst>(I); ++I) |
| 1085 | if (!AggressiveInsts.count(I)) { |
| 1086 | // This is not an aggressive instruction that we can promote. |
| 1087 | // Because of this, we won't be able to get rid of the control |
| 1088 | // flow, so the xform is not worth it. |
| 1089 | return false; |
| 1090 | } |
| 1091 | } |
| 1092 | |
| 1093 | // If we can still promote the PHI nodes after this gauntlet of tests, |
| 1094 | // do all of the PHI's now. |
| 1095 | |
| 1096 | // Move all 'aggressive' instructions, which are defined in the |
| 1097 | // conditional parts of the if's up to the dominating block. |
| 1098 | if (IfBlock1) { |
| 1099 | DomBlock->getInstList().splice(DomBlock->getTerminator(), |
| 1100 | IfBlock1->getInstList(), |
| 1101 | IfBlock1->begin(), |
| 1102 | IfBlock1->getTerminator()); |
| 1103 | } |
| 1104 | if (IfBlock2) { |
| 1105 | DomBlock->getInstList().splice(DomBlock->getTerminator(), |
| 1106 | IfBlock2->getInstList(), |
| 1107 | IfBlock2->begin(), |
| 1108 | IfBlock2->getTerminator()); |
| 1109 | } |
| 1110 | |
| 1111 | while (PHINode *PN = dyn_cast<PHINode>(BB->begin())) { |
| 1112 | // Change the PHI node into a select instruction. |
| 1113 | Value *TrueVal = |
| 1114 | PN->getIncomingValue(PN->getIncomingBlock(0) == IfFalse); |
| 1115 | Value *FalseVal = |
| 1116 | PN->getIncomingValue(PN->getIncomingBlock(0) == IfTrue); |
| 1117 | |
| 1118 | std::string Name = PN->getName(); PN->setName(""); |
| 1119 | PN->replaceAllUsesWith(new SelectInst(IfCond, TrueVal, FalseVal, |
| 1120 | Name, AfterPHIIt)); |
| 1121 | BB->getInstList().erase(PN); |
| 1122 | } |
| 1123 | return true; |
| 1124 | } |
Chris Lattner | eaba3a1 | 2005-09-19 23:49:37 +0000 | [diff] [blame] | 1125 | |
Chris Lattner | 1654cff | 2004-06-19 07:02:14 +0000 | [diff] [blame] | 1126 | namespace { |
| 1127 | /// ConstantIntOrdering - This class implements a stable ordering of constant |
| 1128 | /// integers that does not depend on their address. This is important for |
| 1129 | /// applications that sort ConstantInt's to ensure uniqueness. |
| 1130 | struct ConstantIntOrdering { |
| 1131 | bool operator()(const ConstantInt *LHS, const ConstantInt *RHS) const { |
| 1132 | return LHS->getRawValue() < RHS->getRawValue(); |
| 1133 | } |
| 1134 | }; |
| 1135 | } |
| 1136 | |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 1137 | // SimplifyCFG - This function is used to do simplification of a CFG. For |
| 1138 | // example, it adjusts branches to branches to eliminate the extra hop, it |
| 1139 | // eliminates unreachable basic blocks, and does other "peephole" optimization |
Chris Lattner | e2ca540 | 2003-03-05 21:01:52 +0000 | [diff] [blame] | 1140 | // of the CFG. It returns true if a modification was made. |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 1141 | // |
| 1142 | // WARNING: The entry node of a function may not be simplified. |
| 1143 | // |
Chris Lattner | f7703df | 2004-01-09 06:12:26 +0000 | [diff] [blame] | 1144 | bool llvm::SimplifyCFG(BasicBlock *BB) { |
Chris Lattner | dc3602b | 2003-08-24 18:36:16 +0000 | [diff] [blame] | 1145 | bool Changed = false; |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 1146 | Function *M = BB->getParent(); |
| 1147 | |
| 1148 | assert(BB && BB->getParent() && "Block not embedded in function!"); |
| 1149 | assert(BB->getTerminator() && "Degenerate basic block encountered!"); |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 1150 | assert(&BB->getParent()->front() != BB && "Can't Simplify entry block!"); |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 1151 | |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 1152 | // Remove basic blocks that have no predecessors... which are unreachable. |
Chris Lattner | d52c261 | 2004-02-24 07:23:58 +0000 | [diff] [blame] | 1153 | if (pred_begin(BB) == pred_end(BB) || |
| 1154 | *pred_begin(BB) == BB && ++pred_begin(BB) == pred_end(BB)) { |
Chris Lattner | 30b4344 | 2004-07-15 02:06:12 +0000 | [diff] [blame] | 1155 | DEBUG(std::cerr << "Removing BB: \n" << *BB); |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 1156 | |
| 1157 | // Loop through all of our successors and make sure they know that one |
| 1158 | // of their predecessors is going away. |
Chris Lattner | 151c80b | 2005-04-12 18:51:33 +0000 | [diff] [blame] | 1159 | for (succ_iterator SI = succ_begin(BB), E = succ_end(BB); SI != E; ++SI) |
| 1160 | SI->removePredecessor(BB); |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 1161 | |
| 1162 | while (!BB->empty()) { |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 1163 | Instruction &I = BB->back(); |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 1164 | // If this instruction is used, replace uses with an arbitrary |
Chris Lattner | f5e982d | 2005-08-02 23:29:23 +0000 | [diff] [blame] | 1165 | // value. Because control flow can't get here, we don't care |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1166 | // what we replace the value with. Note that since this block is |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 1167 | // unreachable, and all values contained within it must dominate their |
| 1168 | // uses, that all uses will eventually be removed. |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1169 | if (!I.use_empty()) |
Chris Lattner | f5e982d | 2005-08-02 23:29:23 +0000 | [diff] [blame] | 1170 | // Make all users of this instruction use undef instead |
| 1171 | I.replaceAllUsesWith(UndefValue::get(I.getType())); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1172 | |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 1173 | // Remove the instruction from the basic block |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 1174 | BB->getInstList().pop_back(); |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 1175 | } |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 1176 | M->getBasicBlockList().erase(BB); |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 1177 | return true; |
| 1178 | } |
| 1179 | |
Chris Lattner | 694e37f | 2003-08-17 19:41:53 +0000 | [diff] [blame] | 1180 | // Check to see if we can constant propagate this terminator instruction |
| 1181 | // away... |
Chris Lattner | dc3602b | 2003-08-24 18:36:16 +0000 | [diff] [blame] | 1182 | Changed |= ConstantFoldTerminator(BB); |
Chris Lattner | 694e37f | 2003-08-17 19:41:53 +0000 | [diff] [blame] | 1183 | |
Chris Lattner | 19831ec | 2004-02-16 06:35:48 +0000 | [diff] [blame] | 1184 | // If this is a returning block with only PHI nodes in it, fold the return |
| 1185 | // instruction into any unconditional branch predecessors. |
Chris Lattner | 147af6b | 2004-04-02 18:13:43 +0000 | [diff] [blame] | 1186 | // |
| 1187 | // If any predecessor is a conditional branch that just selects among |
| 1188 | // different return values, fold the replace the branch/return with a select |
| 1189 | // and return. |
Chris Lattner | 19831ec | 2004-02-16 06:35:48 +0000 | [diff] [blame] | 1190 | if (ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator())) { |
| 1191 | BasicBlock::iterator BBI = BB->getTerminator(); |
| 1192 | if (BBI == BB->begin() || isa<PHINode>(--BBI)) { |
Chris Lattner | 147af6b | 2004-04-02 18:13:43 +0000 | [diff] [blame] | 1193 | // Find predecessors that end with branches. |
Chris Lattner | 19831ec | 2004-02-16 06:35:48 +0000 | [diff] [blame] | 1194 | std::vector<BasicBlock*> UncondBranchPreds; |
Chris Lattner | 147af6b | 2004-04-02 18:13:43 +0000 | [diff] [blame] | 1195 | std::vector<BranchInst*> CondBranchPreds; |
Chris Lattner | 19831ec | 2004-02-16 06:35:48 +0000 | [diff] [blame] | 1196 | for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) { |
| 1197 | TerminatorInst *PTI = (*PI)->getTerminator(); |
| 1198 | if (BranchInst *BI = dyn_cast<BranchInst>(PTI)) |
| 1199 | if (BI->isUnconditional()) |
| 1200 | UncondBranchPreds.push_back(*PI); |
Chris Lattner | 147af6b | 2004-04-02 18:13:43 +0000 | [diff] [blame] | 1201 | else |
| 1202 | CondBranchPreds.push_back(BI); |
Chris Lattner | 19831ec | 2004-02-16 06:35:48 +0000 | [diff] [blame] | 1203 | } |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1204 | |
Chris Lattner | 19831ec | 2004-02-16 06:35:48 +0000 | [diff] [blame] | 1205 | // If we found some, do the transformation! |
| 1206 | if (!UncondBranchPreds.empty()) { |
| 1207 | while (!UncondBranchPreds.empty()) { |
| 1208 | BasicBlock *Pred = UncondBranchPreds.back(); |
Chris Lattner | 263d1e4 | 2005-09-23 18:47:20 +0000 | [diff] [blame] | 1209 | DEBUG(std::cerr << "FOLDING: " << *BB |
| 1210 | << "INTO UNCOND BRANCH PRED: " << *Pred); |
Chris Lattner | 19831ec | 2004-02-16 06:35:48 +0000 | [diff] [blame] | 1211 | UncondBranchPreds.pop_back(); |
| 1212 | Instruction *UncondBranch = Pred->getTerminator(); |
| 1213 | // Clone the return and add it to the end of the predecessor. |
| 1214 | Instruction *NewRet = RI->clone(); |
| 1215 | Pred->getInstList().push_back(NewRet); |
| 1216 | |
| 1217 | // If the return instruction returns a value, and if the value was a |
| 1218 | // PHI node in "BB", propagate the right value into the return. |
| 1219 | if (NewRet->getNumOperands() == 1) |
| 1220 | if (PHINode *PN = dyn_cast<PHINode>(NewRet->getOperand(0))) |
| 1221 | if (PN->getParent() == BB) |
| 1222 | NewRet->setOperand(0, PN->getIncomingValueForBlock(Pred)); |
| 1223 | // Update any PHI nodes in the returning block to realize that we no |
| 1224 | // longer branch to them. |
| 1225 | BB->removePredecessor(Pred); |
| 1226 | Pred->getInstList().erase(UncondBranch); |
| 1227 | } |
| 1228 | |
| 1229 | // If we eliminated all predecessors of the block, delete the block now. |
| 1230 | if (pred_begin(BB) == pred_end(BB)) |
| 1231 | // We know there are no successors, so just nuke the block. |
| 1232 | M->getBasicBlockList().erase(BB); |
| 1233 | |
Chris Lattner | 19831ec | 2004-02-16 06:35:48 +0000 | [diff] [blame] | 1234 | return true; |
| 1235 | } |
Chris Lattner | 147af6b | 2004-04-02 18:13:43 +0000 | [diff] [blame] | 1236 | |
| 1237 | // Check out all of the conditional branches going to this return |
| 1238 | // instruction. If any of them just select between returns, change the |
| 1239 | // branch itself into a select/return pair. |
| 1240 | while (!CondBranchPreds.empty()) { |
| 1241 | BranchInst *BI = CondBranchPreds.back(); |
| 1242 | CondBranchPreds.pop_back(); |
| 1243 | BasicBlock *TrueSucc = BI->getSuccessor(0); |
| 1244 | BasicBlock *FalseSucc = BI->getSuccessor(1); |
| 1245 | BasicBlock *OtherSucc = TrueSucc == BB ? FalseSucc : TrueSucc; |
| 1246 | |
| 1247 | // Check to see if the non-BB successor is also a return block. |
| 1248 | if (isa<ReturnInst>(OtherSucc->getTerminator())) { |
| 1249 | // Check to see if there are only PHI instructions in this block. |
| 1250 | BasicBlock::iterator OSI = OtherSucc->getTerminator(); |
| 1251 | if (OSI == OtherSucc->begin() || isa<PHINode>(--OSI)) { |
| 1252 | // Okay, we found a branch that is going to two return nodes. If |
| 1253 | // there is no return value for this function, just change the |
| 1254 | // branch into a return. |
| 1255 | if (RI->getNumOperands() == 0) { |
| 1256 | TrueSucc->removePredecessor(BI->getParent()); |
| 1257 | FalseSucc->removePredecessor(BI->getParent()); |
| 1258 | new ReturnInst(0, BI); |
| 1259 | BI->getParent()->getInstList().erase(BI); |
| 1260 | return true; |
| 1261 | } |
| 1262 | |
| 1263 | // Otherwise, figure out what the true and false return values are |
| 1264 | // so we can insert a new select instruction. |
| 1265 | Value *TrueValue = TrueSucc->getTerminator()->getOperand(0); |
| 1266 | Value *FalseValue = FalseSucc->getTerminator()->getOperand(0); |
| 1267 | |
| 1268 | // Unwrap any PHI nodes in the return blocks. |
| 1269 | if (PHINode *TVPN = dyn_cast<PHINode>(TrueValue)) |
| 1270 | if (TVPN->getParent() == TrueSucc) |
| 1271 | TrueValue = TVPN->getIncomingValueForBlock(BI->getParent()); |
| 1272 | if (PHINode *FVPN = dyn_cast<PHINode>(FalseValue)) |
| 1273 | if (FVPN->getParent() == FalseSucc) |
| 1274 | FalseValue = FVPN->getIncomingValueForBlock(BI->getParent()); |
| 1275 | |
Chris Lattner | 7aa773b | 2004-04-02 18:15:10 +0000 | [diff] [blame] | 1276 | TrueSucc->removePredecessor(BI->getParent()); |
| 1277 | FalseSucc->removePredecessor(BI->getParent()); |
| 1278 | |
Chris Lattner | 147af6b | 2004-04-02 18:13:43 +0000 | [diff] [blame] | 1279 | // Insert a new select instruction. |
Chris Lattner | 0ed7f42 | 2004-09-29 05:43:32 +0000 | [diff] [blame] | 1280 | Value *NewRetVal; |
| 1281 | Value *BrCond = BI->getCondition(); |
| 1282 | if (TrueValue != FalseValue) |
| 1283 | NewRetVal = new SelectInst(BrCond, TrueValue, |
| 1284 | FalseValue, "retval", BI); |
| 1285 | else |
| 1286 | NewRetVal = TrueValue; |
Chris Lattner | 7a66e68 | 2005-10-03 23:43:43 +0000 | [diff] [blame^] | 1287 | |
| 1288 | DEBUG(std::cerr << "\nCHANGING BRANCH TO TWO RETURNS INTO SELECT:" |
| 1289 | << "\n " << *BI << "Select = " << *NewRetVal |
| 1290 | << "TRUEBLOCK: " << *TrueSucc << "FALSEBLOCK: "<< *FalseSucc); |
Chris Lattner | 0ed7f42 | 2004-09-29 05:43:32 +0000 | [diff] [blame] | 1291 | |
Chris Lattner | 147af6b | 2004-04-02 18:13:43 +0000 | [diff] [blame] | 1292 | new ReturnInst(NewRetVal, BI); |
Chris Lattner | 7a66e68 | 2005-10-03 23:43:43 +0000 | [diff] [blame^] | 1293 | BI->eraseFromParent(); |
| 1294 | if (Instruction *BrCondI = dyn_cast<Instruction>(BrCond)) |
| 1295 | if (isInstructionTriviallyDead(BrCondI)) |
| 1296 | BrCondI->eraseFromParent(); |
Chris Lattner | 147af6b | 2004-04-02 18:13:43 +0000 | [diff] [blame] | 1297 | return true; |
| 1298 | } |
| 1299 | } |
| 1300 | } |
Chris Lattner | 19831ec | 2004-02-16 06:35:48 +0000 | [diff] [blame] | 1301 | } |
Chris Lattner | e14ea08 | 2004-02-24 05:54:22 +0000 | [diff] [blame] | 1302 | } else if (UnwindInst *UI = dyn_cast<UnwindInst>(BB->begin())) { |
| 1303 | // Check to see if the first instruction in this block is just an unwind. |
| 1304 | // If so, replace any invoke instructions which use this as an exception |
Chris Lattner | af17b1d | 2004-07-20 01:17:38 +0000 | [diff] [blame] | 1305 | // destination with call instructions, and any unconditional branch |
| 1306 | // predecessor with an unwind. |
Chris Lattner | e14ea08 | 2004-02-24 05:54:22 +0000 | [diff] [blame] | 1307 | // |
| 1308 | std::vector<BasicBlock*> Preds(pred_begin(BB), pred_end(BB)); |
| 1309 | while (!Preds.empty()) { |
| 1310 | BasicBlock *Pred = Preds.back(); |
Chris Lattner | af17b1d | 2004-07-20 01:17:38 +0000 | [diff] [blame] | 1311 | if (BranchInst *BI = dyn_cast<BranchInst>(Pred->getTerminator())) { |
| 1312 | if (BI->isUnconditional()) { |
| 1313 | Pred->getInstList().pop_back(); // nuke uncond branch |
| 1314 | new UnwindInst(Pred); // Use unwind. |
| 1315 | Changed = true; |
| 1316 | } |
| 1317 | } else if (InvokeInst *II = dyn_cast<InvokeInst>(Pred->getTerminator())) |
Chris Lattner | e14ea08 | 2004-02-24 05:54:22 +0000 | [diff] [blame] | 1318 | if (II->getUnwindDest() == BB) { |
| 1319 | // Insert a new branch instruction before the invoke, because this |
| 1320 | // is now a fall through... |
| 1321 | BranchInst *BI = new BranchInst(II->getNormalDest(), II); |
| 1322 | Pred->getInstList().remove(II); // Take out of symbol table |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1323 | |
Chris Lattner | e14ea08 | 2004-02-24 05:54:22 +0000 | [diff] [blame] | 1324 | // Insert the call now... |
| 1325 | std::vector<Value*> Args(II->op_begin()+3, II->op_end()); |
| 1326 | CallInst *CI = new CallInst(II->getCalledValue(), Args, |
| 1327 | II->getName(), BI); |
Chris Lattner | 16d0db2 | 2005-05-14 12:21:56 +0000 | [diff] [blame] | 1328 | CI->setCallingConv(II->getCallingConv()); |
Chris Lattner | e14ea08 | 2004-02-24 05:54:22 +0000 | [diff] [blame] | 1329 | // If the invoke produced a value, the Call now does instead |
| 1330 | II->replaceAllUsesWith(CI); |
| 1331 | delete II; |
| 1332 | Changed = true; |
| 1333 | } |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1334 | |
Chris Lattner | e14ea08 | 2004-02-24 05:54:22 +0000 | [diff] [blame] | 1335 | Preds.pop_back(); |
| 1336 | } |
Chris Lattner | 8e509dd | 2004-02-24 16:09:21 +0000 | [diff] [blame] | 1337 | |
| 1338 | // If this block is now dead, remove it. |
| 1339 | if (pred_begin(BB) == pred_end(BB)) { |
| 1340 | // We know there are no successors, so just nuke the block. |
| 1341 | M->getBasicBlockList().erase(BB); |
| 1342 | return true; |
| 1343 | } |
| 1344 | |
Chris Lattner | 623369a | 2005-02-24 06:17:52 +0000 | [diff] [blame] | 1345 | } else if (SwitchInst *SI = dyn_cast<SwitchInst>(BB->getTerminator())) { |
| 1346 | if (isValueEqualityComparison(SI)) { |
| 1347 | // If we only have one predecessor, and if it is a branch on this value, |
| 1348 | // see if that predecessor totally determines the outcome of this switch. |
| 1349 | if (BasicBlock *OnlyPred = BB->getSinglePredecessor()) |
| 1350 | if (SimplifyEqualityComparisonWithOnlyPredecessor(SI, OnlyPred)) |
| 1351 | return SimplifyCFG(BB) || 1; |
| 1352 | |
| 1353 | // If the block only contains the switch, see if we can fold the block |
| 1354 | // away into any preds. |
| 1355 | if (SI == &BB->front()) |
| 1356 | if (FoldValueComparisonIntoPredecessors(SI)) |
| 1357 | return SimplifyCFG(BB) || 1; |
| 1358 | } |
Chris Lattner | 542f149 | 2004-02-28 21:28:10 +0000 | [diff] [blame] | 1359 | } else if (BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator())) { |
Chris Lattner | 7e66348 | 2005-08-03 00:11:16 +0000 | [diff] [blame] | 1360 | if (BI->isUnconditional()) { |
| 1361 | BasicBlock::iterator BBI = BB->begin(); // Skip over phi nodes... |
| 1362 | while (isa<PHINode>(*BBI)) ++BBI; |
| 1363 | |
| 1364 | BasicBlock *Succ = BI->getSuccessor(0); |
| 1365 | if (BBI->isTerminator() && // Terminator is the only non-phi instruction! |
| 1366 | Succ != BB) // Don't hurt infinite loops! |
| 1367 | if (TryToSimplifyUncondBranchFromEmptyBlock(BB, Succ)) |
| 1368 | return 1; |
| 1369 | |
| 1370 | } else { // Conditional branch |
Chris Lattner | e67fa05 | 2004-05-01 23:35:43 +0000 | [diff] [blame] | 1371 | if (Value *CompVal = isValueEqualityComparison(BI)) { |
Chris Lattner | 623369a | 2005-02-24 06:17:52 +0000 | [diff] [blame] | 1372 | // If we only have one predecessor, and if it is a branch on this value, |
| 1373 | // see if that predecessor totally determines the outcome of this |
| 1374 | // switch. |
| 1375 | if (BasicBlock *OnlyPred = BB->getSinglePredecessor()) |
| 1376 | if (SimplifyEqualityComparisonWithOnlyPredecessor(BI, OnlyPred)) |
| 1377 | return SimplifyCFG(BB) || 1; |
| 1378 | |
Chris Lattner | e67fa05 | 2004-05-01 23:35:43 +0000 | [diff] [blame] | 1379 | // This block must be empty, except for the setcond inst, if it exists. |
| 1380 | BasicBlock::iterator I = BB->begin(); |
| 1381 | if (&*I == BI || |
| 1382 | (&*I == cast<Instruction>(BI->getCondition()) && |
| 1383 | &*++I == BI)) |
| 1384 | if (FoldValueComparisonIntoPredecessors(BI)) |
| 1385 | return SimplifyCFG(BB) | true; |
| 1386 | } |
Chris Lattner | eaba3a1 | 2005-09-19 23:49:37 +0000 | [diff] [blame] | 1387 | |
| 1388 | // If this is a branch on a phi node in the current block, thread control |
| 1389 | // through this block if any PHI node entries are constants. |
| 1390 | if (PHINode *PN = dyn_cast<PHINode>(BI->getCondition())) |
| 1391 | if (PN->getParent() == BI->getParent()) |
| 1392 | if (FoldCondBranchOnPHI(BI)) |
| 1393 | return SimplifyCFG(BB) | true; |
Chris Lattner | e67fa05 | 2004-05-01 23:35:43 +0000 | [diff] [blame] | 1394 | |
| 1395 | // If this basic block is ONLY a setcc and a branch, and if a predecessor |
| 1396 | // branches to us and one of our successors, fold the setcc into the |
| 1397 | // predecessor and use logical operations to pick the right destination. |
Chris Lattner | 12fe2b1 | 2004-05-02 05:02:03 +0000 | [diff] [blame] | 1398 | BasicBlock *TrueDest = BI->getSuccessor(0); |
| 1399 | BasicBlock *FalseDest = BI->getSuccessor(1); |
Chris Lattner | bdcc0b8 | 2004-05-02 05:19:36 +0000 | [diff] [blame] | 1400 | if (BinaryOperator *Cond = dyn_cast<BinaryOperator>(BI->getCondition())) |
Chris Lattner | e67fa05 | 2004-05-01 23:35:43 +0000 | [diff] [blame] | 1401 | if (Cond->getParent() == BB && &BB->front() == Cond && |
Chris Lattner | 12fe2b1 | 2004-05-02 05:02:03 +0000 | [diff] [blame] | 1402 | Cond->getNext() == BI && Cond->hasOneUse() && |
| 1403 | TrueDest != BB && FalseDest != BB) |
Chris Lattner | e67fa05 | 2004-05-01 23:35:43 +0000 | [diff] [blame] | 1404 | for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI!=E; ++PI) |
| 1405 | if (BranchInst *PBI = dyn_cast<BranchInst>((*PI)->getTerminator())) |
Chris Lattner | a1f79fb | 2004-05-02 01:00:44 +0000 | [diff] [blame] | 1406 | if (PBI->isConditional() && SafeToMergeTerminators(BI, PBI)) { |
Chris Lattner | 2636c1b | 2004-06-21 07:19:01 +0000 | [diff] [blame] | 1407 | BasicBlock *PredBlock = *PI; |
Chris Lattner | e67fa05 | 2004-05-01 23:35:43 +0000 | [diff] [blame] | 1408 | if (PBI->getSuccessor(0) == FalseDest || |
| 1409 | PBI->getSuccessor(1) == TrueDest) { |
| 1410 | // Invert the predecessors condition test (xor it with true), |
| 1411 | // which allows us to write this code once. |
| 1412 | Value *NewCond = |
| 1413 | BinaryOperator::createNot(PBI->getCondition(), |
| 1414 | PBI->getCondition()->getName()+".not", PBI); |
| 1415 | PBI->setCondition(NewCond); |
| 1416 | BasicBlock *OldTrue = PBI->getSuccessor(0); |
| 1417 | BasicBlock *OldFalse = PBI->getSuccessor(1); |
| 1418 | PBI->setSuccessor(0, OldFalse); |
| 1419 | PBI->setSuccessor(1, OldTrue); |
| 1420 | } |
| 1421 | |
| 1422 | if (PBI->getSuccessor(0) == TrueDest || |
| 1423 | PBI->getSuccessor(1) == FalseDest) { |
Chris Lattner | 2636c1b | 2004-06-21 07:19:01 +0000 | [diff] [blame] | 1424 | // Clone Cond into the predecessor basic block, and or/and the |
Chris Lattner | e67fa05 | 2004-05-01 23:35:43 +0000 | [diff] [blame] | 1425 | // two conditions together. |
| 1426 | Instruction *New = Cond->clone(); |
| 1427 | New->setName(Cond->getName()); |
| 1428 | Cond->setName(Cond->getName()+".old"); |
Chris Lattner | 2636c1b | 2004-06-21 07:19:01 +0000 | [diff] [blame] | 1429 | PredBlock->getInstList().insert(PBI, New); |
Chris Lattner | e67fa05 | 2004-05-01 23:35:43 +0000 | [diff] [blame] | 1430 | Instruction::BinaryOps Opcode = |
| 1431 | PBI->getSuccessor(0) == TrueDest ? |
| 1432 | Instruction::Or : Instruction::And; |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1433 | Value *NewCond = |
Chris Lattner | e67fa05 | 2004-05-01 23:35:43 +0000 | [diff] [blame] | 1434 | BinaryOperator::create(Opcode, PBI->getCondition(), |
| 1435 | New, "bothcond", PBI); |
| 1436 | PBI->setCondition(NewCond); |
| 1437 | if (PBI->getSuccessor(0) == BB) { |
Chris Lattner | 2636c1b | 2004-06-21 07:19:01 +0000 | [diff] [blame] | 1438 | AddPredecessorToBlock(TrueDest, PredBlock, BB); |
Chris Lattner | e67fa05 | 2004-05-01 23:35:43 +0000 | [diff] [blame] | 1439 | PBI->setSuccessor(0, TrueDest); |
| 1440 | } |
| 1441 | if (PBI->getSuccessor(1) == BB) { |
Chris Lattner | 2636c1b | 2004-06-21 07:19:01 +0000 | [diff] [blame] | 1442 | AddPredecessorToBlock(FalseDest, PredBlock, BB); |
Chris Lattner | e67fa05 | 2004-05-01 23:35:43 +0000 | [diff] [blame] | 1443 | PBI->setSuccessor(1, FalseDest); |
| 1444 | } |
| 1445 | return SimplifyCFG(BB) | 1; |
| 1446 | } |
| 1447 | } |
Chris Lattner | e67fa05 | 2004-05-01 23:35:43 +0000 | [diff] [blame] | 1448 | |
Chris Lattner | 263d1e4 | 2005-09-23 18:47:20 +0000 | [diff] [blame] | 1449 | // Scan predessor blocks for conditional branchs. |
Chris Lattner | 2e42e36 | 2005-09-20 00:43:16 +0000 | [diff] [blame] | 1450 | for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) |
| 1451 | if (BranchInst *PBI = dyn_cast<BranchInst>((*PI)->getTerminator())) |
Chris Lattner | 263d1e4 | 2005-09-23 18:47:20 +0000 | [diff] [blame] | 1452 | if (PBI != BI && PBI->isConditional()) { |
| 1453 | |
| 1454 | // If this block ends with a branch instruction, and if there is a |
| 1455 | // predecessor that ends on a branch of the same condition, make this |
| 1456 | // conditional branch redundant. |
| 1457 | if (PBI->getCondition() == BI->getCondition() && |
| 1458 | PBI->getSuccessor(0) != PBI->getSuccessor(1)) { |
| 1459 | // Okay, the outcome of this conditional branch is statically |
| 1460 | // knowable. If this block had a single pred, handle specially. |
| 1461 | if (BB->getSinglePredecessor()) { |
| 1462 | // Turn this into a branch on constant. |
| 1463 | bool CondIsTrue = PBI->getSuccessor(0) == BB; |
| 1464 | BI->setCondition(ConstantBool::get(CondIsTrue)); |
| 1465 | return SimplifyCFG(BB); // Nuke the branch on constant. |
| 1466 | } |
| 1467 | |
| 1468 | // Otherwise, if there are multiple predecessors, insert a PHI that |
| 1469 | // merges in the constant and simplify the block result. |
| 1470 | if (BlockIsSimpleEnoughToThreadThrough(BB)) { |
| 1471 | PHINode *NewPN = new PHINode(Type::BoolTy, |
| 1472 | BI->getCondition()->getName()+".pr", |
| 1473 | BB->begin()); |
| 1474 | for (PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) |
| 1475 | if ((PBI = dyn_cast<BranchInst>((*PI)->getTerminator())) && |
| 1476 | PBI != BI && PBI->isConditional() && |
| 1477 | PBI->getCondition() == BI->getCondition() && |
| 1478 | PBI->getSuccessor(0) != PBI->getSuccessor(1)) { |
| 1479 | bool CondIsTrue = PBI->getSuccessor(0) == BB; |
| 1480 | NewPN->addIncoming(ConstantBool::get(CondIsTrue), *PI); |
| 1481 | } else { |
| 1482 | NewPN->addIncoming(BI->getCondition(), *PI); |
| 1483 | } |
| 1484 | |
| 1485 | BI->setCondition(NewPN); |
| 1486 | // This will thread the branch. |
| 1487 | return SimplifyCFG(BB) | true; |
| 1488 | } |
Chris Lattner | 2e42e36 | 2005-09-20 00:43:16 +0000 | [diff] [blame] | 1489 | } |
| 1490 | |
Chris Lattner | 263d1e4 | 2005-09-23 18:47:20 +0000 | [diff] [blame] | 1491 | // If this is a conditional branch in an empty block, and if any |
| 1492 | // predecessors is a conditional branch to one of our destinations, |
| 1493 | // fold the conditions into logical ops and one cond br. |
| 1494 | if (&BB->front() == BI) { |
| 1495 | int PBIOp, BIOp; |
| 1496 | if (PBI->getSuccessor(0) == BI->getSuccessor(0)) { |
| 1497 | PBIOp = BIOp = 0; |
| 1498 | } else if (PBI->getSuccessor(0) == BI->getSuccessor(1)) { |
| 1499 | PBIOp = 0; BIOp = 1; |
| 1500 | } else if (PBI->getSuccessor(1) == BI->getSuccessor(0)) { |
| 1501 | PBIOp = 1; BIOp = 0; |
| 1502 | } else if (PBI->getSuccessor(1) == BI->getSuccessor(1)) { |
| 1503 | PBIOp = BIOp = 1; |
| 1504 | } else { |
| 1505 | PBIOp = BIOp = -1; |
| 1506 | } |
Chris Lattner | 2e42e36 | 2005-09-20 00:43:16 +0000 | [diff] [blame] | 1507 | |
Chris Lattner | 263d1e4 | 2005-09-23 18:47:20 +0000 | [diff] [blame] | 1508 | // Finally, if everything is ok, fold the branches to logical ops. |
| 1509 | if (PBIOp != -1) { |
| 1510 | BasicBlock *CommonDest = PBI->getSuccessor(PBIOp); |
| 1511 | BasicBlock *OtherDest = BI->getSuccessor(BIOp ^ 1); |
| 1512 | |
| 1513 | DEBUG(std::cerr << "FOLDING BRs:" << *PBI->getParent() |
| 1514 | << "AND: " << *BI->getParent()); |
| 1515 | |
| 1516 | // BI may have other predecessors. Because of this, we leave |
| 1517 | // it alone, but modify PBI. |
| 1518 | |
| 1519 | // Make sure we get to CommonDest on True&True directions. |
| 1520 | Value *PBICond = PBI->getCondition(); |
| 1521 | if (PBIOp) |
| 1522 | PBICond = BinaryOperator::createNot(PBICond, |
| 1523 | PBICond->getName()+".not", |
| 1524 | PBI); |
| 1525 | Value *BICond = BI->getCondition(); |
| 1526 | if (BIOp) |
| 1527 | BICond = BinaryOperator::createNot(BICond, |
| 1528 | BICond->getName()+".not", |
| 1529 | PBI); |
| 1530 | // Merge the conditions. |
| 1531 | Value *Cond = |
| 1532 | BinaryOperator::createOr(PBICond, BICond, "brmerge", PBI); |
| 1533 | |
| 1534 | // Modify PBI to branch on the new condition to the new dests. |
| 1535 | PBI->setCondition(Cond); |
| 1536 | PBI->setSuccessor(0, CommonDest); |
| 1537 | PBI->setSuccessor(1, OtherDest); |
| 1538 | |
| 1539 | // OtherDest may have phi nodes. If so, add an entry from PBI's |
| 1540 | // block that are identical to the entries for BI's block. |
| 1541 | PHINode *PN; |
| 1542 | for (BasicBlock::iterator II = OtherDest->begin(); |
| 1543 | (PN = dyn_cast<PHINode>(II)); ++II) { |
| 1544 | Value *V = PN->getIncomingValueForBlock(BB); |
| 1545 | PN->addIncoming(V, PBI->getParent()); |
| 1546 | } |
| 1547 | |
| 1548 | // We know that the CommonDest already had an edge from PBI to |
| 1549 | // it. If it has PHIs though, the PHIs may have different |
| 1550 | // entries for BB and PBI's BB. If so, insert a select to make |
| 1551 | // them agree. |
| 1552 | for (BasicBlock::iterator II = CommonDest->begin(); |
| 1553 | (PN = dyn_cast<PHINode>(II)); ++II) { |
| 1554 | Value * BIV = PN->getIncomingValueForBlock(BB); |
| 1555 | unsigned PBBIdx = PN->getBasicBlockIndex(PBI->getParent()); |
| 1556 | Value *PBIV = PN->getIncomingValue(PBBIdx); |
| 1557 | if (BIV != PBIV) { |
| 1558 | // Insert a select in PBI to pick the right value. |
| 1559 | Value *NV = new SelectInst(PBICond, PBIV, BIV, |
| 1560 | PBIV->getName()+".mux", PBI); |
| 1561 | PN->setIncomingValue(PBBIdx, NV); |
| 1562 | } |
| 1563 | } |
| 1564 | |
| 1565 | DEBUG(std::cerr << "INTO: " << *PBI->getParent()); |
| 1566 | |
| 1567 | // This basic block is probably dead. We know it has at least |
| 1568 | // one fewer predecessor. |
| 1569 | return SimplifyCFG(BB) | true; |
| 1570 | } |
Chris Lattner | 2e42e36 | 2005-09-20 00:43:16 +0000 | [diff] [blame] | 1571 | } |
Chris Lattner | 92da2c2 | 2004-05-01 22:36:37 +0000 | [diff] [blame] | 1572 | } |
Chris Lattner | d52c261 | 2004-02-24 07:23:58 +0000 | [diff] [blame] | 1573 | } |
Chris Lattner | 698f96f | 2004-10-18 04:07:22 +0000 | [diff] [blame] | 1574 | } else if (isa<UnreachableInst>(BB->getTerminator())) { |
| 1575 | // If there are any instructions immediately before the unreachable that can |
| 1576 | // be removed, do so. |
| 1577 | Instruction *Unreachable = BB->getTerminator(); |
| 1578 | while (Unreachable != BB->begin()) { |
| 1579 | BasicBlock::iterator BBI = Unreachable; |
| 1580 | --BBI; |
| 1581 | if (isa<CallInst>(BBI)) break; |
| 1582 | // Delete this instruction |
| 1583 | BB->getInstList().erase(BBI); |
| 1584 | Changed = true; |
| 1585 | } |
| 1586 | |
| 1587 | // If the unreachable instruction is the first in the block, take a gander |
| 1588 | // at all of the predecessors of this instruction, and simplify them. |
| 1589 | if (&BB->front() == Unreachable) { |
| 1590 | std::vector<BasicBlock*> Preds(pred_begin(BB), pred_end(BB)); |
| 1591 | for (unsigned i = 0, e = Preds.size(); i != e; ++i) { |
| 1592 | TerminatorInst *TI = Preds[i]->getTerminator(); |
| 1593 | |
| 1594 | if (BranchInst *BI = dyn_cast<BranchInst>(TI)) { |
| 1595 | if (BI->isUnconditional()) { |
| 1596 | if (BI->getSuccessor(0) == BB) { |
| 1597 | new UnreachableInst(TI); |
| 1598 | TI->eraseFromParent(); |
| 1599 | Changed = true; |
| 1600 | } |
| 1601 | } else { |
| 1602 | if (BI->getSuccessor(0) == BB) { |
| 1603 | new BranchInst(BI->getSuccessor(1), BI); |
| 1604 | BI->eraseFromParent(); |
| 1605 | } else if (BI->getSuccessor(1) == BB) { |
| 1606 | new BranchInst(BI->getSuccessor(0), BI); |
| 1607 | BI->eraseFromParent(); |
| 1608 | Changed = true; |
| 1609 | } |
| 1610 | } |
| 1611 | } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) { |
| 1612 | for (unsigned i = 1, e = SI->getNumCases(); i != e; ++i) |
| 1613 | if (SI->getSuccessor(i) == BB) { |
Chris Lattner | 42eb752 | 2005-05-20 22:19:54 +0000 | [diff] [blame] | 1614 | BB->removePredecessor(SI->getParent()); |
Chris Lattner | 698f96f | 2004-10-18 04:07:22 +0000 | [diff] [blame] | 1615 | SI->removeCase(i); |
| 1616 | --i; --e; |
| 1617 | Changed = true; |
| 1618 | } |
| 1619 | // If the default value is unreachable, figure out the most popular |
| 1620 | // destination and make it the default. |
| 1621 | if (SI->getSuccessor(0) == BB) { |
| 1622 | std::map<BasicBlock*, unsigned> Popularity; |
| 1623 | for (unsigned i = 1, e = SI->getNumCases(); i != e; ++i) |
| 1624 | Popularity[SI->getSuccessor(i)]++; |
| 1625 | |
| 1626 | // Find the most popular block. |
| 1627 | unsigned MaxPop = 0; |
| 1628 | BasicBlock *MaxBlock = 0; |
| 1629 | for (std::map<BasicBlock*, unsigned>::iterator |
| 1630 | I = Popularity.begin(), E = Popularity.end(); I != E; ++I) { |
| 1631 | if (I->second > MaxPop) { |
| 1632 | MaxPop = I->second; |
| 1633 | MaxBlock = I->first; |
| 1634 | } |
| 1635 | } |
| 1636 | if (MaxBlock) { |
| 1637 | // Make this the new default, allowing us to delete any explicit |
| 1638 | // edges to it. |
| 1639 | SI->setSuccessor(0, MaxBlock); |
| 1640 | Changed = true; |
| 1641 | |
Chris Lattner | 42eb752 | 2005-05-20 22:19:54 +0000 | [diff] [blame] | 1642 | // If MaxBlock has phinodes in it, remove MaxPop-1 entries from |
| 1643 | // it. |
| 1644 | if (isa<PHINode>(MaxBlock->begin())) |
| 1645 | for (unsigned i = 0; i != MaxPop-1; ++i) |
| 1646 | MaxBlock->removePredecessor(SI->getParent()); |
| 1647 | |
Chris Lattner | 698f96f | 2004-10-18 04:07:22 +0000 | [diff] [blame] | 1648 | for (unsigned i = 1, e = SI->getNumCases(); i != e; ++i) |
| 1649 | if (SI->getSuccessor(i) == MaxBlock) { |
| 1650 | SI->removeCase(i); |
| 1651 | --i; --e; |
| 1652 | } |
| 1653 | } |
| 1654 | } |
| 1655 | } else if (InvokeInst *II = dyn_cast<InvokeInst>(TI)) { |
| 1656 | if (II->getUnwindDest() == BB) { |
| 1657 | // Convert the invoke to a call instruction. This would be a good |
| 1658 | // place to note that the call does not throw though. |
| 1659 | BranchInst *BI = new BranchInst(II->getNormalDest(), II); |
| 1660 | II->removeFromParent(); // Take out of symbol table |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1661 | |
Chris Lattner | 698f96f | 2004-10-18 04:07:22 +0000 | [diff] [blame] | 1662 | // Insert the call now... |
| 1663 | std::vector<Value*> Args(II->op_begin()+3, II->op_end()); |
| 1664 | CallInst *CI = new CallInst(II->getCalledValue(), Args, |
| 1665 | II->getName(), BI); |
Chris Lattner | 16d0db2 | 2005-05-14 12:21:56 +0000 | [diff] [blame] | 1666 | CI->setCallingConv(II->getCallingConv()); |
Chris Lattner | 698f96f | 2004-10-18 04:07:22 +0000 | [diff] [blame] | 1667 | // If the invoke produced a value, the Call does now instead. |
| 1668 | II->replaceAllUsesWith(CI); |
| 1669 | delete II; |
| 1670 | Changed = true; |
| 1671 | } |
| 1672 | } |
| 1673 | } |
| 1674 | |
| 1675 | // If this block is now dead, remove it. |
| 1676 | if (pred_begin(BB) == pred_end(BB)) { |
| 1677 | // We know there are no successors, so just nuke the block. |
| 1678 | M->getBasicBlockList().erase(BB); |
| 1679 | return true; |
| 1680 | } |
| 1681 | } |
Chris Lattner | 19831ec | 2004-02-16 06:35:48 +0000 | [diff] [blame] | 1682 | } |
| 1683 | |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 1684 | // Merge basic blocks into their predecessor if there is only one distinct |
| 1685 | // pred, and if there is only one distinct successor of the predecessor, and |
| 1686 | // if there are no PHI nodes. |
| 1687 | // |
Chris Lattner | 2355f94 | 2004-02-11 01:17:07 +0000 | [diff] [blame] | 1688 | pred_iterator PI(pred_begin(BB)), PE(pred_end(BB)); |
| 1689 | BasicBlock *OnlyPred = *PI++; |
| 1690 | for (; PI != PE; ++PI) // Search all predecessors, see if they are all same |
| 1691 | if (*PI != OnlyPred) { |
| 1692 | OnlyPred = 0; // There are multiple different predecessors... |
| 1693 | break; |
| 1694 | } |
Chris Lattner | 92da2c2 | 2004-05-01 22:36:37 +0000 | [diff] [blame] | 1695 | |
Chris Lattner | 2355f94 | 2004-02-11 01:17:07 +0000 | [diff] [blame] | 1696 | BasicBlock *OnlySucc = 0; |
| 1697 | if (OnlyPred && OnlyPred != BB && // Don't break self loops |
| 1698 | OnlyPred->getTerminator()->getOpcode() != Instruction::Invoke) { |
| 1699 | // Check to see if there is only one distinct successor... |
| 1700 | succ_iterator SI(succ_begin(OnlyPred)), SE(succ_end(OnlyPred)); |
| 1701 | OnlySucc = BB; |
| 1702 | for (; SI != SE; ++SI) |
| 1703 | if (*SI != OnlySucc) { |
| 1704 | OnlySucc = 0; // There are multiple distinct successors! |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 1705 | break; |
| 1706 | } |
Chris Lattner | 2355f94 | 2004-02-11 01:17:07 +0000 | [diff] [blame] | 1707 | } |
| 1708 | |
| 1709 | if (OnlySucc) { |
Chris Lattner | 30b4344 | 2004-07-15 02:06:12 +0000 | [diff] [blame] | 1710 | DEBUG(std::cerr << "Merging: " << *BB << "into: " << *OnlyPred); |
Chris Lattner | 2355f94 | 2004-02-11 01:17:07 +0000 | [diff] [blame] | 1711 | TerminatorInst *Term = OnlyPred->getTerminator(); |
| 1712 | |
| 1713 | // Resolve any PHI nodes at the start of the block. They are all |
| 1714 | // guaranteed to have exactly one entry if they exist, unless there are |
| 1715 | // multiple duplicate (but guaranteed to be equal) entries for the |
| 1716 | // incoming edges. This occurs when there are multiple edges from |
| 1717 | // OnlyPred to OnlySucc. |
| 1718 | // |
| 1719 | while (PHINode *PN = dyn_cast<PHINode>(&BB->front())) { |
| 1720 | PN->replaceAllUsesWith(PN->getIncomingValue(0)); |
| 1721 | BB->getInstList().pop_front(); // Delete the phi node... |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 1722 | } |
| 1723 | |
Chris Lattner | 2355f94 | 2004-02-11 01:17:07 +0000 | [diff] [blame] | 1724 | // Delete the unconditional branch from the predecessor... |
| 1725 | OnlyPred->getInstList().pop_back(); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1726 | |
Chris Lattner | 2355f94 | 2004-02-11 01:17:07 +0000 | [diff] [blame] | 1727 | // Move all definitions in the successor to the predecessor... |
| 1728 | OnlyPred->getInstList().splice(OnlyPred->end(), BB->getInstList()); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1729 | |
Chris Lattner | 2355f94 | 2004-02-11 01:17:07 +0000 | [diff] [blame] | 1730 | // Make all PHI nodes that referred to BB now refer to Pred as their |
| 1731 | // source... |
| 1732 | BB->replaceAllUsesWith(OnlyPred); |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 1733 | |
Chris Lattner | 2355f94 | 2004-02-11 01:17:07 +0000 | [diff] [blame] | 1734 | std::string OldName = BB->getName(); |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 1735 | |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1736 | // Erase basic block from the function... |
Chris Lattner | 2355f94 | 2004-02-11 01:17:07 +0000 | [diff] [blame] | 1737 | M->getBasicBlockList().erase(BB); |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 1738 | |
Chris Lattner | 2355f94 | 2004-02-11 01:17:07 +0000 | [diff] [blame] | 1739 | // Inherit predecessors name if it exists... |
| 1740 | if (!OldName.empty() && !OnlyPred->hasName()) |
| 1741 | OnlyPred->setName(OldName); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1742 | |
Chris Lattner | 2355f94 | 2004-02-11 01:17:07 +0000 | [diff] [blame] | 1743 | return true; |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 1744 | } |
Chris Lattner | 723c66d | 2004-02-11 03:36:04 +0000 | [diff] [blame] | 1745 | |
Chris Lattner | 37dc938 | 2004-11-30 00:29:14 +0000 | [diff] [blame] | 1746 | // Otherwise, if this block only has a single predecessor, and if that block |
| 1747 | // is a conditional branch, see if we can hoist any code from this block up |
| 1748 | // into our predecessor. |
| 1749 | if (OnlyPred) |
Chris Lattner | 7613437 | 2004-12-10 17:42:31 +0000 | [diff] [blame] | 1750 | if (BranchInst *BI = dyn_cast<BranchInst>(OnlyPred->getTerminator())) |
| 1751 | if (BI->isConditional()) { |
| 1752 | // Get the other block. |
| 1753 | BasicBlock *OtherBB = BI->getSuccessor(BI->getSuccessor(0) == BB); |
| 1754 | PI = pred_begin(OtherBB); |
| 1755 | ++PI; |
| 1756 | if (PI == pred_end(OtherBB)) { |
| 1757 | // We have a conditional branch to two blocks that are only reachable |
| 1758 | // from the condbr. We know that the condbr dominates the two blocks, |
| 1759 | // so see if there is any identical code in the "then" and "else" |
| 1760 | // blocks. If so, we can hoist it up to the branching block. |
| 1761 | Changed |= HoistThenElseCodeToIf(BI); |
| 1762 | } |
Chris Lattner | 37dc938 | 2004-11-30 00:29:14 +0000 | [diff] [blame] | 1763 | } |
Chris Lattner | 37dc938 | 2004-11-30 00:29:14 +0000 | [diff] [blame] | 1764 | |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 1765 | for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) |
| 1766 | if (BranchInst *BI = dyn_cast<BranchInst>((*PI)->getTerminator())) |
| 1767 | // Change br (X == 0 | X == 1), T, F into a switch instruction. |
| 1768 | if (BI->isConditional() && isa<Instruction>(BI->getCondition())) { |
| 1769 | Instruction *Cond = cast<Instruction>(BI->getCondition()); |
| 1770 | // If this is a bunch of seteq's or'd together, or if it's a bunch of |
| 1771 | // 'setne's and'ed together, collect them. |
| 1772 | Value *CompVal = 0; |
Chris Lattner | 1654cff | 2004-06-19 07:02:14 +0000 | [diff] [blame] | 1773 | std::vector<ConstantInt*> Values; |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 1774 | bool TrueWhenEqual = GatherValueComparisons(Cond, CompVal, Values); |
| 1775 | if (CompVal && CompVal->getType()->isInteger()) { |
| 1776 | // There might be duplicate constants in the list, which the switch |
| 1777 | // instruction can't handle, remove them now. |
Chris Lattner | 1654cff | 2004-06-19 07:02:14 +0000 | [diff] [blame] | 1778 | std::sort(Values.begin(), Values.end(), ConstantIntOrdering()); |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 1779 | Values.erase(std::unique(Values.begin(), Values.end()), Values.end()); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1780 | |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 1781 | // Figure out which block is which destination. |
| 1782 | BasicBlock *DefaultBB = BI->getSuccessor(1); |
| 1783 | BasicBlock *EdgeBB = BI->getSuccessor(0); |
| 1784 | if (!TrueWhenEqual) std::swap(DefaultBB, EdgeBB); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1785 | |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 1786 | // Create the new switch instruction now. |
Chris Lattner | 3788059 | 2005-01-29 00:38:26 +0000 | [diff] [blame] | 1787 | SwitchInst *New = new SwitchInst(CompVal, DefaultBB,Values.size(),BI); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1788 | |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 1789 | // Add all of the 'cases' to the switch instruction. |
| 1790 | for (unsigned i = 0, e = Values.size(); i != e; ++i) |
| 1791 | New->addCase(Values[i], EdgeBB); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1792 | |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 1793 | // We added edges from PI to the EdgeBB. As such, if there were any |
| 1794 | // PHI nodes in EdgeBB, they need entries to be added corresponding to |
| 1795 | // the number of edges added. |
| 1796 | for (BasicBlock::iterator BBI = EdgeBB->begin(); |
Reid Spencer | 2da5c3d | 2004-09-15 17:06:42 +0000 | [diff] [blame] | 1797 | isa<PHINode>(BBI); ++BBI) { |
| 1798 | PHINode *PN = cast<PHINode>(BBI); |
Chris Lattner | 0d56008 | 2004-02-24 05:38:11 +0000 | [diff] [blame] | 1799 | Value *InVal = PN->getIncomingValueForBlock(*PI); |
| 1800 | for (unsigned i = 0, e = Values.size()-1; i != e; ++i) |
| 1801 | PN->addIncoming(InVal, *PI); |
| 1802 | } |
| 1803 | |
| 1804 | // Erase the old branch instruction. |
| 1805 | (*PI)->getInstList().erase(BI); |
| 1806 | |
| 1807 | // Erase the potentially condition tree that was used to computed the |
| 1808 | // branch condition. |
| 1809 | ErasePossiblyDeadInstructionTree(Cond); |
| 1810 | return true; |
| 1811 | } |
| 1812 | } |
| 1813 | |
Chris Lattner | 723c66d | 2004-02-11 03:36:04 +0000 | [diff] [blame] | 1814 | // If there is a trivial two-entry PHI node in this basic block, and we can |
| 1815 | // eliminate it, do so now. |
| 1816 | if (PHINode *PN = dyn_cast<PHINode>(BB->begin())) |
Chris Lattner | f58c1a5 | 2005-09-23 06:39:30 +0000 | [diff] [blame] | 1817 | if (PN->getNumIncomingValues() == 2) |
| 1818 | Changed |= FoldTwoEntryPHINode(PN); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1819 | |
Chris Lattner | 694e37f | 2003-08-17 19:41:53 +0000 | [diff] [blame] | 1820 | return Changed; |
Chris Lattner | 01d1ee3 | 2002-05-21 20:50:24 +0000 | [diff] [blame] | 1821 | } |