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 | abbc2dd | 2003-12-19 05:56:28 +0000 | [diff] [blame] | 25 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 26 | |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 27 | //===----------------------------------------------------------------------===// |
Chris Lattner | 3481f24 | 2008-11-27 22:57:53 +0000 | [diff] [blame] | 28 | // Local constant propagation. |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 29 | // |
| 30 | |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 31 | // ConstantFoldTerminator - If a terminator instruction is predicated on a |
| 32 | // constant value, convert it into an unconditional branch to the constant |
| 33 | // destination. |
| 34 | // |
Chris Lattner | abbc2dd | 2003-12-19 05:56:28 +0000 | [diff] [blame] | 35 | bool llvm::ConstantFoldTerminator(BasicBlock *BB) { |
Chris Lattner | 76ae344 | 2002-05-21 20:04:50 +0000 | [diff] [blame] | 36 | TerminatorInst *T = BB->getTerminator(); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 37 | |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 38 | // Branch - See if we are conditional jumping on constant |
| 39 | if (BranchInst *BI = dyn_cast<BranchInst>(T)) { |
| 40 | if (BI->isUnconditional()) return false; // Can't optimize uncond branch |
Gabor Greif | c1bb13f | 2009-01-30 18:21:13 +0000 | [diff] [blame] | 41 | BasicBlock *Dest1 = BI->getSuccessor(0); |
| 42 | BasicBlock *Dest2 = BI->getSuccessor(1); |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 43 | |
Zhou Sheng | 6b6b6ef | 2007-01-11 12:24:14 +0000 | [diff] [blame] | 44 | if (ConstantInt *Cond = dyn_cast<ConstantInt>(BI->getCondition())) { |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 45 | // Are we branching on constant? |
| 46 | // YES. Change to unconditional branch... |
Reid Spencer | 579dca1 | 2007-01-12 04:24:46 +0000 | [diff] [blame] | 47 | BasicBlock *Destination = Cond->getZExtValue() ? Dest1 : Dest2; |
| 48 | BasicBlock *OldDest = Cond->getZExtValue() ? Dest2 : Dest1; |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 49 | |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 50 | //cerr << "Function: " << T->getParent()->getParent() |
| 51 | // << "\nRemoving branch from " << T->getParent() |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 52 | // << "\n\nTo: " << OldDest << endl; |
| 53 | |
| 54 | // Let the basic block know that we are letting go of it. Based on this, |
| 55 | // it will adjust it's PHI nodes. |
| 56 | assert(BI->getParent() && "Terminator not inserted in block!"); |
| 57 | OldDest->removePredecessor(BI->getParent()); |
| 58 | |
| 59 | // Set the unconditional destination, and change the insn to be an |
| 60 | // unconditional branch. |
| 61 | BI->setUnconditionalDest(Destination); |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 62 | return true; |
Chris Lattner | 342a9d1 | 2003-08-17 19:34:55 +0000 | [diff] [blame] | 63 | } else if (Dest2 == Dest1) { // Conditional branch to same location? |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 64 | // This branch matches something like this: |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 65 | // br bool %cond, label %Dest, label %Dest |
| 66 | // and changes it into: br label %Dest |
| 67 | |
| 68 | // Let the basic block know that we are letting go of one copy of it. |
| 69 | assert(BI->getParent() && "Terminator not inserted in block!"); |
| 70 | Dest1->removePredecessor(BI->getParent()); |
| 71 | |
| 72 | // Change a conditional branch to unconditional. |
| 73 | BI->setUnconditionalDest(Dest1); |
| 74 | return true; |
| 75 | } |
Chris Lattner | 10b1f5a | 2003-08-17 20:21:14 +0000 | [diff] [blame] | 76 | } else if (SwitchInst *SI = dyn_cast<SwitchInst>(T)) { |
| 77 | // If we are switching on a constant, we can convert the switch into a |
| 78 | // single branch instruction! |
| 79 | ConstantInt *CI = dyn_cast<ConstantInt>(SI->getCondition()); |
| 80 | BasicBlock *TheOnlyDest = SI->getSuccessor(0); // The default dest |
Chris Lattner | 7d6c24c | 2003-08-23 23:18:19 +0000 | [diff] [blame] | 81 | BasicBlock *DefaultDest = TheOnlyDest; |
| 82 | assert(TheOnlyDest == SI->getDefaultDest() && |
| 83 | "Default destination is not successor #0?"); |
Chris Lattner | 694e37f | 2003-08-17 19:41:53 +0000 | [diff] [blame] | 84 | |
Chris Lattner | 10b1f5a | 2003-08-17 20:21:14 +0000 | [diff] [blame] | 85 | // Figure out which case it goes to... |
| 86 | for (unsigned i = 1, e = SI->getNumSuccessors(); i != e; ++i) { |
| 87 | // Found case matching a constant operand? |
| 88 | if (SI->getSuccessorValue(i) == CI) { |
| 89 | TheOnlyDest = SI->getSuccessor(i); |
| 90 | break; |
| 91 | } |
Chris Lattner | 694e37f | 2003-08-17 19:41:53 +0000 | [diff] [blame] | 92 | |
Chris Lattner | 7d6c24c | 2003-08-23 23:18:19 +0000 | [diff] [blame] | 93 | // Check to see if this branch is going to the same place as the default |
| 94 | // dest. If so, eliminate it as an explicit compare. |
| 95 | if (SI->getSuccessor(i) == DefaultDest) { |
| 96 | // Remove this entry... |
| 97 | DefaultDest->removePredecessor(SI->getParent()); |
| 98 | SI->removeCase(i); |
| 99 | --i; --e; // Don't skip an entry... |
| 100 | continue; |
| 101 | } |
| 102 | |
Chris Lattner | 10b1f5a | 2003-08-17 20:21:14 +0000 | [diff] [blame] | 103 | // Otherwise, check to see if the switch only branches to one destination. |
| 104 | // We do this by reseting "TheOnlyDest" to null when we find two non-equal |
| 105 | // destinations. |
| 106 | if (SI->getSuccessor(i) != TheOnlyDest) TheOnlyDest = 0; |
Chris Lattner | 694e37f | 2003-08-17 19:41:53 +0000 | [diff] [blame] | 107 | } |
| 108 | |
Chris Lattner | 10b1f5a | 2003-08-17 20:21:14 +0000 | [diff] [blame] | 109 | if (CI && !TheOnlyDest) { |
| 110 | // Branching on a constant, but not any of the cases, go to the default |
| 111 | // successor. |
| 112 | TheOnlyDest = SI->getDefaultDest(); |
| 113 | } |
| 114 | |
| 115 | // If we found a single destination that we can fold the switch into, do so |
| 116 | // now. |
| 117 | if (TheOnlyDest) { |
| 118 | // Insert the new branch.. |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 119 | BranchInst::Create(TheOnlyDest, SI); |
Chris Lattner | 10b1f5a | 2003-08-17 20:21:14 +0000 | [diff] [blame] | 120 | BasicBlock *BB = SI->getParent(); |
| 121 | |
| 122 | // Remove entries from PHI nodes which we no longer branch to... |
| 123 | for (unsigned i = 0, e = SI->getNumSuccessors(); i != e; ++i) { |
| 124 | // Found case matching a constant operand? |
| 125 | BasicBlock *Succ = SI->getSuccessor(i); |
| 126 | if (Succ == TheOnlyDest) |
| 127 | TheOnlyDest = 0; // Don't modify the first branch to TheOnlyDest |
| 128 | else |
| 129 | Succ->removePredecessor(BB); |
| 130 | } |
| 131 | |
| 132 | // Delete the old switch... |
| 133 | BB->getInstList().erase(SI); |
| 134 | return true; |
| 135 | } else if (SI->getNumSuccessors() == 2) { |
| 136 | // Otherwise, we can fold this switch into a conditional branch |
| 137 | // instruction if it has only one non-default destination. |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 138 | Value *Cond = new ICmpInst(ICmpInst::ICMP_EQ, SI->getCondition(), |
| 139 | SI->getSuccessorValue(1), "cond", SI); |
Chris Lattner | 10b1f5a | 2003-08-17 20:21:14 +0000 | [diff] [blame] | 140 | // Insert the new branch... |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 141 | BranchInst::Create(SI->getSuccessor(1), SI->getSuccessor(0), Cond, SI); |
Chris Lattner | 10b1f5a | 2003-08-17 20:21:14 +0000 | [diff] [blame] | 142 | |
| 143 | // Delete the old switch... |
Dan Gohman | 1adec83 | 2008-06-21 22:08:46 +0000 | [diff] [blame] | 144 | SI->eraseFromParent(); |
Chris Lattner | 10b1f5a | 2003-08-17 20:21:14 +0000 | [diff] [blame] | 145 | return true; |
| 146 | } |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 147 | } |
| 148 | return false; |
| 149 | } |
| 150 | |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 151 | |
| 152 | //===----------------------------------------------------------------------===// |
| 153 | // Local dead code elimination... |
| 154 | // |
| 155 | |
Chris Lattner | 3481f24 | 2008-11-27 22:57:53 +0000 | [diff] [blame] | 156 | /// isInstructionTriviallyDead - Return true if the result produced by the |
| 157 | /// instruction is not used, and the instruction has no side effects. |
| 158 | /// |
Chris Lattner | abbc2dd | 2003-12-19 05:56:28 +0000 | [diff] [blame] | 159 | bool llvm::isInstructionTriviallyDead(Instruction *I) { |
Chris Lattner | ec710c5 | 2005-05-06 05:27:34 +0000 | [diff] [blame] | 160 | if (!I->use_empty() || isa<TerminatorInst>(I)) return false; |
Jeff Cohen | 00b16889 | 2005-07-27 06:12:32 +0000 | [diff] [blame] | 161 | |
Chris Lattner | 741c0ae | 2007-12-29 00:59:12 +0000 | [diff] [blame] | 162 | if (!I->mayWriteToMemory()) |
| 163 | return true; |
Chris Lattner | ec710c5 | 2005-05-06 05:27:34 +0000 | [diff] [blame] | 164 | |
Chris Lattner | 741c0ae | 2007-12-29 00:59:12 +0000 | [diff] [blame] | 165 | // Special case intrinsics that "may write to memory" but can be deleted when |
| 166 | // dead. |
| 167 | if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) |
| 168 | // Safe to delete llvm.stacksave if dead. |
| 169 | if (II->getIntrinsicID() == Intrinsic::stacksave) |
| 170 | return true; |
| 171 | |
Chris Lattner | ec710c5 | 2005-05-06 05:27:34 +0000 | [diff] [blame] | 172 | return false; |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 173 | } |
| 174 | |
Chris Lattner | 3481f24 | 2008-11-27 22:57:53 +0000 | [diff] [blame] | 175 | /// RecursivelyDeleteTriviallyDeadInstructions - If the specified value is a |
| 176 | /// trivially dead instruction, delete it. If that makes any of its operands |
| 177 | /// trivially dead, delete them too, recursively. |
Chris Lattner | 4f02c74 | 2008-11-27 23:14:34 +0000 | [diff] [blame] | 178 | /// |
| 179 | /// If DeadInst is specified, the vector is filled with the instructions that |
| 180 | /// are actually deleted. |
| 181 | void llvm::RecursivelyDeleteTriviallyDeadInstructions(Value *V, |
| 182 | SmallVectorImpl<Instruction*> *DeadInst) { |
Chris Lattner | 3481f24 | 2008-11-27 22:57:53 +0000 | [diff] [blame] | 183 | Instruction *I = dyn_cast<Instruction>(V); |
Chris Lattner | 7605730 | 2008-11-28 01:20:46 +0000 | [diff] [blame] | 184 | if (!I || !I->use_empty() || !isInstructionTriviallyDead(I)) |
| 185 | return; |
Chris Lattner | 3481f24 | 2008-11-27 22:57:53 +0000 | [diff] [blame] | 186 | |
Chris Lattner | 7605730 | 2008-11-28 01:20:46 +0000 | [diff] [blame] | 187 | SmallVector<Instruction*, 16> DeadInsts; |
| 188 | DeadInsts.push_back(I); |
Chris Lattner | 3481f24 | 2008-11-27 22:57:53 +0000 | [diff] [blame] | 189 | |
Chris Lattner | 7605730 | 2008-11-28 01:20:46 +0000 | [diff] [blame] | 190 | while (!DeadInsts.empty()) { |
| 191 | I = DeadInsts.back(); |
| 192 | DeadInsts.pop_back(); |
Chris Lattner | 2872177 | 2008-11-28 00:58:15 +0000 | [diff] [blame] | 193 | |
Chris Lattner | 7605730 | 2008-11-28 01:20:46 +0000 | [diff] [blame] | 194 | // If the client wanted to know, tell it about deleted instructions. |
Chris Lattner | 4f02c74 | 2008-11-27 23:14:34 +0000 | [diff] [blame] | 195 | if (DeadInst) |
| 196 | DeadInst->push_back(I); |
Chris Lattner | 7605730 | 2008-11-28 01:20:46 +0000 | [diff] [blame] | 197 | |
| 198 | // Null out all of the instruction's operands to see if any operand becomes |
| 199 | // dead as we go. |
| 200 | for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) { |
| 201 | Value *OpV = I->getOperand(i); |
| 202 | I->setOperand(i, 0); |
| 203 | |
| 204 | if (!OpV->use_empty()) continue; |
| 205 | |
| 206 | // If the operand is an instruction that became dead as we nulled out the |
| 207 | // operand, and if it is 'trivially' dead, delete it in a future loop |
| 208 | // iteration. |
| 209 | if (Instruction *OpI = dyn_cast<Instruction>(OpV)) |
| 210 | if (isInstructionTriviallyDead(OpI)) |
| 211 | DeadInsts.push_back(OpI); |
| 212 | } |
| 213 | |
| 214 | I->eraseFromParent(); |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 215 | } |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 216 | } |
Chris Lattner | b29714a | 2008-11-27 07:43:12 +0000 | [diff] [blame] | 217 | |
Chris Lattner | 3481f24 | 2008-11-27 22:57:53 +0000 | [diff] [blame] | 218 | |
Chris Lattner | b29714a | 2008-11-27 07:43:12 +0000 | [diff] [blame] | 219 | //===----------------------------------------------------------------------===// |
| 220 | // Control Flow Graph Restructuring... |
| 221 | // |
| 222 | |
| 223 | /// MergeBasicBlockIntoOnlyPred - DestBB is a block with one predecessor and its |
| 224 | /// predecessor is known to have one successor (DestBB!). Eliminate the edge |
| 225 | /// between them, moving the instructions in the predecessor into DestBB and |
| 226 | /// deleting the predecessor block. |
| 227 | /// |
| 228 | void llvm::MergeBasicBlockIntoOnlyPred(BasicBlock *DestBB) { |
| 229 | // If BB has single-entry PHI nodes, fold them. |
| 230 | while (PHINode *PN = dyn_cast<PHINode>(DestBB->begin())) { |
| 231 | Value *NewVal = PN->getIncomingValue(0); |
| 232 | // Replace self referencing PHI with undef, it must be dead. |
| 233 | if (NewVal == PN) NewVal = UndefValue::get(PN->getType()); |
| 234 | PN->replaceAllUsesWith(NewVal); |
| 235 | PN->eraseFromParent(); |
| 236 | } |
| 237 | |
| 238 | BasicBlock *PredBB = DestBB->getSinglePredecessor(); |
| 239 | assert(PredBB && "Block doesn't have a single predecessor!"); |
| 240 | |
| 241 | // Splice all the instructions from PredBB to DestBB. |
| 242 | PredBB->getTerminator()->eraseFromParent(); |
| 243 | DestBB->getInstList().splice(DestBB->begin(), PredBB->getInstList()); |
| 244 | |
| 245 | // Anything that branched to PredBB now branches to DestBB. |
| 246 | PredBB->replaceAllUsesWith(DestBB); |
| 247 | |
| 248 | // Nuke BB. |
| 249 | PredBB->eraseFromParent(); |
| 250 | } |
Devang Patel | 4afc90d | 2009-02-10 07:00:59 +0000 | [diff] [blame^] | 251 | |
| 252 | /// OnlyUsedByDbgIntrinsics - Return true if the instruction I is only used |
| 253 | /// by DbgIntrinsics. If DbgInUses is specified then the vector is filled |
| 254 | /// with the DbgInfoIntrinsic that use the instruction I. |
| 255 | bool llvm::OnlyUsedByDbgInfoIntrinsics(Instruction *I, |
| 256 | SmallVectorImpl<DbgInfoIntrinsic *> *DbgInUses) { |
| 257 | if (DbgInUses) |
| 258 | DbgInUses->clear(); |
| 259 | |
| 260 | for (Value::use_iterator UI = I->use_begin(), UE = I->use_end(); UI != UE; |
| 261 | ++UI) { |
| 262 | if (DbgInfoIntrinsic *DI = dyn_cast<DbgInfoIntrinsic>(*UI)) { |
| 263 | if (DbgInUses) |
| 264 | DbgInUses->push_back(DI); |
| 265 | } else { |
| 266 | if (DbgInUses) |
| 267 | DbgInUses->clear(); |
| 268 | return false; |
| 269 | } |
| 270 | } |
| 271 | return true; |
| 272 | } |