Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 1 | //===-- Local.cpp - Functions to perform local transformations ------------===// |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 7 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 9 | // |
| 10 | // This family of functions perform various local transformations to the |
| 11 | // program. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "llvm/Transforms/Utils/Local.h" |
Chris Lattner | 81ebc30 | 2004-01-12 18:35:03 +0000 | [diff] [blame] | 16 | #include "llvm/Constants.h" |
Chris Lattner | c5f52e6 | 2005-09-26 05:27:10 +0000 | [diff] [blame] | 17 | #include "llvm/DerivedTypes.h" |
Chris Lattner | 7822c2a | 2004-01-12 19:56:36 +0000 | [diff] [blame] | 18 | #include "llvm/Instructions.h" |
Chris Lattner | cf11035 | 2004-06-11 06:16:23 +0000 | [diff] [blame] | 19 | #include "llvm/Intrinsics.h" |
Chris Lattner | 741c0ae | 2007-12-29 00:59:12 +0000 | [diff] [blame] | 20 | #include "llvm/IntrinsicInst.h" |
Chris Lattner | cbbc6b7 | 2005-10-27 16:34:00 +0000 | [diff] [blame] | 21 | #include "llvm/Analysis/ConstantFolding.h" |
Chris Lattner | 9fa038d | 2007-01-30 23:13:49 +0000 | [diff] [blame] | 22 | #include "llvm/Target/TargetData.h" |
Chris Lattner | c5f52e6 | 2005-09-26 05:27:10 +0000 | [diff] [blame] | 23 | #include "llvm/Support/GetElementPtrTypeIterator.h" |
| 24 | #include "llvm/Support/MathExtras.h" |
Chris Lattner | 3481f24 | 2008-11-27 22:57:53 +0000 | [diff] [blame] | 25 | #include "llvm/ADT/SmallPtrSet.h" |
Chris Lattner | abbc2dd | 2003-12-19 05:56:28 +0000 | [diff] [blame] | 26 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 27 | |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 28 | //===----------------------------------------------------------------------===// |
Chris Lattner | 3481f24 | 2008-11-27 22:57:53 +0000 | [diff] [blame] | 29 | // Local constant propagation. |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 30 | // |
| 31 | |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 32 | // ConstantFoldTerminator - If a terminator instruction is predicated on a |
| 33 | // constant value, convert it into an unconditional branch to the constant |
| 34 | // destination. |
| 35 | // |
Chris Lattner | abbc2dd | 2003-12-19 05:56:28 +0000 | [diff] [blame] | 36 | bool llvm::ConstantFoldTerminator(BasicBlock *BB) { |
Chris Lattner | 76ae344 | 2002-05-21 20:04:50 +0000 | [diff] [blame] | 37 | TerminatorInst *T = BB->getTerminator(); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 38 | |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 39 | // Branch - See if we are conditional jumping on constant |
| 40 | if (BranchInst *BI = dyn_cast<BranchInst>(T)) { |
| 41 | if (BI->isUnconditional()) return false; // Can't optimize uncond branch |
| 42 | BasicBlock *Dest1 = cast<BasicBlock>(BI->getOperand(0)); |
| 43 | BasicBlock *Dest2 = cast<BasicBlock>(BI->getOperand(1)); |
| 44 | |
Zhou Sheng | 6b6b6ef | 2007-01-11 12:24:14 +0000 | [diff] [blame] | 45 | if (ConstantInt *Cond = dyn_cast<ConstantInt>(BI->getCondition())) { |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 46 | // Are we branching on constant? |
| 47 | // YES. Change to unconditional branch... |
Reid Spencer | 579dca1 | 2007-01-12 04:24:46 +0000 | [diff] [blame] | 48 | BasicBlock *Destination = Cond->getZExtValue() ? Dest1 : Dest2; |
| 49 | BasicBlock *OldDest = Cond->getZExtValue() ? Dest2 : Dest1; |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 50 | |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 51 | //cerr << "Function: " << T->getParent()->getParent() |
| 52 | // << "\nRemoving branch from " << T->getParent() |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 53 | // << "\n\nTo: " << OldDest << endl; |
| 54 | |
| 55 | // Let the basic block know that we are letting go of it. Based on this, |
| 56 | // it will adjust it's PHI nodes. |
| 57 | assert(BI->getParent() && "Terminator not inserted in block!"); |
| 58 | OldDest->removePredecessor(BI->getParent()); |
| 59 | |
| 60 | // Set the unconditional destination, and change the insn to be an |
| 61 | // unconditional branch. |
| 62 | BI->setUnconditionalDest(Destination); |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 63 | return true; |
Chris Lattner | 342a9d1 | 2003-08-17 19:34:55 +0000 | [diff] [blame] | 64 | } else if (Dest2 == Dest1) { // Conditional branch to same location? |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 65 | // This branch matches something like this: |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 66 | // br bool %cond, label %Dest, label %Dest |
| 67 | // and changes it into: br label %Dest |
| 68 | |
| 69 | // Let the basic block know that we are letting go of one copy of it. |
| 70 | assert(BI->getParent() && "Terminator not inserted in block!"); |
| 71 | Dest1->removePredecessor(BI->getParent()); |
| 72 | |
| 73 | // Change a conditional branch to unconditional. |
| 74 | BI->setUnconditionalDest(Dest1); |
| 75 | return true; |
| 76 | } |
Chris Lattner | 10b1f5a | 2003-08-17 20:21:14 +0000 | [diff] [blame] | 77 | } else if (SwitchInst *SI = dyn_cast<SwitchInst>(T)) { |
| 78 | // If we are switching on a constant, we can convert the switch into a |
| 79 | // single branch instruction! |
| 80 | ConstantInt *CI = dyn_cast<ConstantInt>(SI->getCondition()); |
| 81 | BasicBlock *TheOnlyDest = SI->getSuccessor(0); // The default dest |
Chris Lattner | 7d6c24c | 2003-08-23 23:18:19 +0000 | [diff] [blame] | 82 | BasicBlock *DefaultDest = TheOnlyDest; |
| 83 | assert(TheOnlyDest == SI->getDefaultDest() && |
| 84 | "Default destination is not successor #0?"); |
Chris Lattner | 694e37f | 2003-08-17 19:41:53 +0000 | [diff] [blame] | 85 | |
Chris Lattner | 10b1f5a | 2003-08-17 20:21:14 +0000 | [diff] [blame] | 86 | // Figure out which case it goes to... |
| 87 | for (unsigned i = 1, e = SI->getNumSuccessors(); i != e; ++i) { |
| 88 | // Found case matching a constant operand? |
| 89 | if (SI->getSuccessorValue(i) == CI) { |
| 90 | TheOnlyDest = SI->getSuccessor(i); |
| 91 | break; |
| 92 | } |
Chris Lattner | 694e37f | 2003-08-17 19:41:53 +0000 | [diff] [blame] | 93 | |
Chris Lattner | 7d6c24c | 2003-08-23 23:18:19 +0000 | [diff] [blame] | 94 | // Check to see if this branch is going to the same place as the default |
| 95 | // dest. If so, eliminate it as an explicit compare. |
| 96 | if (SI->getSuccessor(i) == DefaultDest) { |
| 97 | // Remove this entry... |
| 98 | DefaultDest->removePredecessor(SI->getParent()); |
| 99 | SI->removeCase(i); |
| 100 | --i; --e; // Don't skip an entry... |
| 101 | continue; |
| 102 | } |
| 103 | |
Chris Lattner | 10b1f5a | 2003-08-17 20:21:14 +0000 | [diff] [blame] | 104 | // Otherwise, check to see if the switch only branches to one destination. |
| 105 | // We do this by reseting "TheOnlyDest" to null when we find two non-equal |
| 106 | // destinations. |
| 107 | if (SI->getSuccessor(i) != TheOnlyDest) TheOnlyDest = 0; |
Chris Lattner | 694e37f | 2003-08-17 19:41:53 +0000 | [diff] [blame] | 108 | } |
| 109 | |
Chris Lattner | 10b1f5a | 2003-08-17 20:21:14 +0000 | [diff] [blame] | 110 | if (CI && !TheOnlyDest) { |
| 111 | // Branching on a constant, but not any of the cases, go to the default |
| 112 | // successor. |
| 113 | TheOnlyDest = SI->getDefaultDest(); |
| 114 | } |
| 115 | |
| 116 | // If we found a single destination that we can fold the switch into, do so |
| 117 | // now. |
| 118 | if (TheOnlyDest) { |
| 119 | // Insert the new branch.. |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 120 | BranchInst::Create(TheOnlyDest, SI); |
Chris Lattner | 10b1f5a | 2003-08-17 20:21:14 +0000 | [diff] [blame] | 121 | BasicBlock *BB = SI->getParent(); |
| 122 | |
| 123 | // Remove entries from PHI nodes which we no longer branch to... |
| 124 | for (unsigned i = 0, e = SI->getNumSuccessors(); i != e; ++i) { |
| 125 | // Found case matching a constant operand? |
| 126 | BasicBlock *Succ = SI->getSuccessor(i); |
| 127 | if (Succ == TheOnlyDest) |
| 128 | TheOnlyDest = 0; // Don't modify the first branch to TheOnlyDest |
| 129 | else |
| 130 | Succ->removePredecessor(BB); |
| 131 | } |
| 132 | |
| 133 | // Delete the old switch... |
| 134 | BB->getInstList().erase(SI); |
| 135 | return true; |
| 136 | } else if (SI->getNumSuccessors() == 2) { |
| 137 | // Otherwise, we can fold this switch into a conditional branch |
| 138 | // instruction if it has only one non-default destination. |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 139 | Value *Cond = new ICmpInst(ICmpInst::ICMP_EQ, SI->getCondition(), |
| 140 | SI->getSuccessorValue(1), "cond", SI); |
Chris Lattner | 10b1f5a | 2003-08-17 20:21:14 +0000 | [diff] [blame] | 141 | // Insert the new branch... |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 142 | BranchInst::Create(SI->getSuccessor(1), SI->getSuccessor(0), Cond, SI); |
Chris Lattner | 10b1f5a | 2003-08-17 20:21:14 +0000 | [diff] [blame] | 143 | |
| 144 | // Delete the old switch... |
Dan Gohman | 1adec83 | 2008-06-21 22:08:46 +0000 | [diff] [blame] | 145 | SI->eraseFromParent(); |
Chris Lattner | 10b1f5a | 2003-08-17 20:21:14 +0000 | [diff] [blame] | 146 | return true; |
| 147 | } |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 148 | } |
| 149 | return false; |
| 150 | } |
| 151 | |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 152 | |
| 153 | //===----------------------------------------------------------------------===// |
| 154 | // Local dead code elimination... |
| 155 | // |
| 156 | |
Chris Lattner | 3481f24 | 2008-11-27 22:57:53 +0000 | [diff] [blame] | 157 | /// isInstructionTriviallyDead - Return true if the result produced by the |
| 158 | /// instruction is not used, and the instruction has no side effects. |
| 159 | /// |
Chris Lattner | abbc2dd | 2003-12-19 05:56:28 +0000 | [diff] [blame] | 160 | bool llvm::isInstructionTriviallyDead(Instruction *I) { |
Chris Lattner | ec710c5 | 2005-05-06 05:27:34 +0000 | [diff] [blame] | 161 | if (!I->use_empty() || isa<TerminatorInst>(I)) return false; |
Jeff Cohen | 00b16889 | 2005-07-27 06:12:32 +0000 | [diff] [blame] | 162 | |
Chris Lattner | 741c0ae | 2007-12-29 00:59:12 +0000 | [diff] [blame] | 163 | if (!I->mayWriteToMemory()) |
| 164 | return true; |
Chris Lattner | ec710c5 | 2005-05-06 05:27:34 +0000 | [diff] [blame] | 165 | |
Chris Lattner | 741c0ae | 2007-12-29 00:59:12 +0000 | [diff] [blame] | 166 | // Special case intrinsics that "may write to memory" but can be deleted when |
| 167 | // dead. |
| 168 | if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) |
| 169 | // Safe to delete llvm.stacksave if dead. |
| 170 | if (II->getIntrinsicID() == Intrinsic::stacksave) |
| 171 | return true; |
| 172 | |
Chris Lattner | ec710c5 | 2005-05-06 05:27:34 +0000 | [diff] [blame] | 173 | return false; |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 174 | } |
| 175 | |
Chris Lattner | 3481f24 | 2008-11-27 22:57:53 +0000 | [diff] [blame] | 176 | /// RecursivelyDeleteTriviallyDeadInstructions - If the specified value is a |
| 177 | /// trivially dead instruction, delete it. If that makes any of its operands |
| 178 | /// trivially dead, delete them too, recursively. |
| 179 | void llvm::RecursivelyDeleteTriviallyDeadInstructions(Value *V) { |
| 180 | Instruction *I = dyn_cast<Instruction>(V); |
| 181 | if (!I || !I->use_empty()) return; |
| 182 | |
| 183 | SmallPtrSet<Instruction*, 16> Insts; |
| 184 | Insts.insert(I); |
| 185 | |
| 186 | while (!Insts.empty()) { |
| 187 | I = *Insts.begin(); |
| 188 | Insts.erase(I); |
| 189 | if (isInstructionTriviallyDead(I)) { |
| 190 | for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) |
| 191 | if (Instruction *U = dyn_cast<Instruction>(I->getOperand(i))) |
| 192 | Insts.insert(U); |
| 193 | I->eraseFromParent(); |
| 194 | } |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 195 | } |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 196 | } |
Chris Lattner | b29714a | 2008-11-27 07:43:12 +0000 | [diff] [blame] | 197 | |
Chris Lattner | 3481f24 | 2008-11-27 22:57:53 +0000 | [diff] [blame] | 198 | |
Chris Lattner | b29714a | 2008-11-27 07:43:12 +0000 | [diff] [blame] | 199 | //===----------------------------------------------------------------------===// |
| 200 | // Control Flow Graph Restructuring... |
| 201 | // |
| 202 | |
| 203 | /// MergeBasicBlockIntoOnlyPred - DestBB is a block with one predecessor and its |
| 204 | /// predecessor is known to have one successor (DestBB!). Eliminate the edge |
| 205 | /// between them, moving the instructions in the predecessor into DestBB and |
| 206 | /// deleting the predecessor block. |
| 207 | /// |
| 208 | void llvm::MergeBasicBlockIntoOnlyPred(BasicBlock *DestBB) { |
| 209 | // If BB has single-entry PHI nodes, fold them. |
| 210 | while (PHINode *PN = dyn_cast<PHINode>(DestBB->begin())) { |
| 211 | Value *NewVal = PN->getIncomingValue(0); |
| 212 | // Replace self referencing PHI with undef, it must be dead. |
| 213 | if (NewVal == PN) NewVal = UndefValue::get(PN->getType()); |
| 214 | PN->replaceAllUsesWith(NewVal); |
| 215 | PN->eraseFromParent(); |
| 216 | } |
| 217 | |
| 218 | BasicBlock *PredBB = DestBB->getSinglePredecessor(); |
| 219 | assert(PredBB && "Block doesn't have a single predecessor!"); |
| 220 | |
| 221 | // Splice all the instructions from PredBB to DestBB. |
| 222 | PredBB->getTerminator()->eraseFromParent(); |
| 223 | DestBB->getInstList().splice(DestBB->begin(), PredBB->getInstList()); |
| 224 | |
| 225 | // Anything that branched to PredBB now branches to DestBB. |
| 226 | PredBB->replaceAllUsesWith(DestBB); |
| 227 | |
| 228 | // Nuke BB. |
| 229 | PredBB->eraseFromParent(); |
| 230 | } |