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 | // |
| 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 | 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 | cbbc6b7 | 2005-10-27 16:34:00 +0000 | [diff] [blame] | 20 | #include "llvm/Analysis/ConstantFolding.h" |
Chris Lattner | c5f52e6 | 2005-09-26 05:27:10 +0000 | [diff] [blame] | 21 | #include "llvm/Support/GetElementPtrTypeIterator.h" |
| 22 | #include "llvm/Support/MathExtras.h" |
Alkis Evlogimenos | 09233fb | 2004-04-21 16:11:40 +0000 | [diff] [blame] | 23 | #include <cerrno> |
Chris Lattner | abbc2dd | 2003-12-19 05:56:28 +0000 | [diff] [blame] | 24 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 25 | |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 26 | //===----------------------------------------------------------------------===// |
Misha Brukman | 82c89b9 | 2003-05-20 21:01:22 +0000 | [diff] [blame] | 27 | // Local constant propagation... |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 28 | // |
| 29 | |
Chris Lattner | abbc2dd | 2003-12-19 05:56:28 +0000 | [diff] [blame] | 30 | /// doConstantPropagation - If an instruction references constants, try to fold |
| 31 | /// them together... |
| 32 | /// |
| 33 | bool llvm::doConstantPropagation(BasicBlock::iterator &II) { |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 34 | if (Constant *C = ConstantFoldInstruction(II)) { |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 35 | // Replaces all of the uses of a variable with uses of the constant. |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 36 | II->replaceAllUsesWith(C); |
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 | // Remove the instruction from the basic block... |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 39 | II = II->getParent()->getInstList().erase(II); |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 40 | return true; |
| 41 | } |
| 42 | |
| 43 | return false; |
| 44 | } |
| 45 | |
Chris Lattner | 8f90b00 | 2004-01-12 18:25:22 +0000 | [diff] [blame] | 46 | /// ConstantFoldInstruction - Attempt to constant fold the specified |
| 47 | /// instruction. If successful, the constant result is returned, if not, null |
| 48 | /// is returned. Note that this function can only fail when attempting to fold |
| 49 | /// instructions like loads and stores, which have no constant expression form. |
| 50 | /// |
| 51 | Constant *llvm::ConstantFoldInstruction(Instruction *I) { |
| 52 | if (PHINode *PN = dyn_cast<PHINode>(I)) { |
| 53 | if (PN->getNumIncomingValues() == 0) |
| 54 | return Constant::getNullValue(PN->getType()); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 55 | |
Chris Lattner | 8f90b00 | 2004-01-12 18:25:22 +0000 | [diff] [blame] | 56 | Constant *Result = dyn_cast<Constant>(PN->getIncomingValue(0)); |
| 57 | if (Result == 0) return 0; |
| 58 | |
| 59 | // Handle PHI nodes specially here... |
| 60 | for (unsigned i = 1, e = PN->getNumIncomingValues(); i != e; ++i) |
| 61 | if (PN->getIncomingValue(i) != Result && PN->getIncomingValue(i) != PN) |
| 62 | return 0; // Not all the same incoming constants... |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 63 | |
Chris Lattner | 8f90b00 | 2004-01-12 18:25:22 +0000 | [diff] [blame] | 64 | // If we reach here, all incoming values are the same constant. |
| 65 | return Result; |
| 66 | } |
| 67 | |
| 68 | Constant *Op0 = 0, *Op1 = 0; |
| 69 | switch (I->getNumOperands()) { |
| 70 | default: |
| 71 | case 2: |
| 72 | Op1 = dyn_cast<Constant>(I->getOperand(1)); |
| 73 | if (Op1 == 0) return 0; // Not a constant?, can't fold |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 74 | /* FALL THROUGH */ |
Chris Lattner | 8f90b00 | 2004-01-12 18:25:22 +0000 | [diff] [blame] | 75 | case 1: |
| 76 | Op0 = dyn_cast<Constant>(I->getOperand(0)); |
| 77 | if (Op0 == 0) return 0; // Not a constant?, can't fold |
| 78 | break; |
| 79 | case 0: return 0; |
| 80 | } |
| 81 | |
Chris Lattner | 4b30fcb | 2006-05-27 01:18:04 +0000 | [diff] [blame] | 82 | if (isa<BinaryOperator>(I) || isa<ShiftInst>(I)) { |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 83 | return ConstantExpr::get(I->getOpcode(), Op0, Op1); |
| 84 | } else if (isa<ICmpInst>(I)) { |
| 85 | return ConstantExpr::getICmp(cast<ICmpInst>(I)->getPredicate(), Op0, Op1); |
| 86 | } else if (isa<FCmpInst>(I)) { |
| 87 | return ConstantExpr::getFCmp(cast<FCmpInst>(I)->getPredicate(), Op0, Op1); |
Chris Lattner | 4b30fcb | 2006-05-27 01:18:04 +0000 | [diff] [blame] | 88 | } |
Chris Lattner | 8f90b00 | 2004-01-12 18:25:22 +0000 | [diff] [blame] | 89 | |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 90 | // Scan the operand list, checking to see if they are all constants, if so, |
Chris Lattner | 4b30fcb | 2006-05-27 01:18:04 +0000 | [diff] [blame] | 91 | // hand off to ConstantFoldInstOperands. |
| 92 | std::vector<Constant*> Ops; |
| 93 | for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) |
| 94 | if (Constant *Op = dyn_cast<Constant>(I->getOperand(i))) |
| 95 | Ops.push_back(Op); |
| 96 | else |
| 97 | return 0; // All operands not constant! |
| 98 | |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 99 | return ConstantFoldInstOperands(I, Ops); |
Chris Lattner | 4b30fcb | 2006-05-27 01:18:04 +0000 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | /// ConstantFoldInstOperands - Attempt to constant fold an instruction with the |
| 103 | /// specified opcode and operands. If successful, the constant result is |
| 104 | /// returned, if not, null is returned. Note that this function can fail when |
| 105 | /// attempting to fold instructions like loads and stores, which have no |
| 106 | /// constant expression form. |
| 107 | /// |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 108 | Constant *llvm::ConstantFoldInstOperands(const Instruction* I, |
Chris Lattner | 4b30fcb | 2006-05-27 01:18:04 +0000 | [diff] [blame] | 109 | const std::vector<Constant*> &Ops) { |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 110 | unsigned Opc = I->getOpcode(); |
| 111 | const Type *DestTy = I->getType(); |
| 112 | |
| 113 | // Handle easy binops first |
| 114 | if (isa<BinaryOperator>(I)) |
Chris Lattner | 4b30fcb | 2006-05-27 01:18:04 +0000 | [diff] [blame] | 115 | return ConstantExpr::get(Opc, Ops[0], Ops[1]); |
| 116 | |
| 117 | switch (Opc) { |
Chris Lattner | 8f90b00 | 2004-01-12 18:25:22 +0000 | [diff] [blame] | 118 | default: return 0; |
Chris Lattner | 4b30fcb | 2006-05-27 01:18:04 +0000 | [diff] [blame] | 119 | case Instruction::Call: |
| 120 | if (Function *F = dyn_cast<Function>(Ops[0])) { |
| 121 | if (canConstantFoldCallTo(F)) { |
| 122 | std::vector<Constant*> Args(Ops.begin()+1, Ops.end()); |
| 123 | return ConstantFoldCall(F, Args); |
| 124 | } |
| 125 | } |
| 126 | return 0; |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 127 | case Instruction::ICmp: |
| 128 | case Instruction::FCmp: |
| 129 | return ConstantExpr::getCompare(cast<CmpInst>(I)->getPredicate(), Ops[0], |
| 130 | Ops[1]); |
Chris Lattner | 4b30fcb | 2006-05-27 01:18:04 +0000 | [diff] [blame] | 131 | case Instruction::Shl: |
Reid Spencer | 3822ff5 | 2006-11-08 06:47:33 +0000 | [diff] [blame] | 132 | case Instruction::LShr: |
| 133 | case Instruction::AShr: |
Chris Lattner | 4b30fcb | 2006-05-27 01:18:04 +0000 | [diff] [blame] | 134 | return ConstantExpr::get(Opc, Ops[0], Ops[1]); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 135 | case Instruction::Trunc: |
| 136 | case Instruction::ZExt: |
| 137 | case Instruction::SExt: |
| 138 | case Instruction::FPTrunc: |
| 139 | case Instruction::FPExt: |
| 140 | case Instruction::UIToFP: |
| 141 | case Instruction::SIToFP: |
| 142 | case Instruction::FPToUI: |
| 143 | case Instruction::FPToSI: |
| 144 | case Instruction::PtrToInt: |
| 145 | case Instruction::IntToPtr: |
| 146 | case Instruction::BitCast: |
| 147 | return ConstantExpr::getCast(Opc, Ops[0], DestTy); |
Chris Lattner | 17fd273 | 2004-03-12 05:53:03 +0000 | [diff] [blame] | 148 | case Instruction::Select: |
Chris Lattner | 4b30fcb | 2006-05-27 01:18:04 +0000 | [diff] [blame] | 149 | return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2]); |
Robert Bocchino | b52ee7f | 2006-01-10 19:05:34 +0000 | [diff] [blame] | 150 | case Instruction::ExtractElement: |
Chris Lattner | 4b30fcb | 2006-05-27 01:18:04 +0000 | [diff] [blame] | 151 | return ConstantExpr::getExtractElement(Ops[0], Ops[1]); |
Robert Bocchino | 956fd72 | 2006-01-17 20:07:07 +0000 | [diff] [blame] | 152 | case Instruction::InsertElement: |
Chris Lattner | 4b30fcb | 2006-05-27 01:18:04 +0000 | [diff] [blame] | 153 | return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2]); |
Chris Lattner | 543abdf | 2006-04-08 01:19:12 +0000 | [diff] [blame] | 154 | case Instruction::ShuffleVector: |
Chris Lattner | 4b30fcb | 2006-05-27 01:18:04 +0000 | [diff] [blame] | 155 | return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2]); |
Chris Lattner | 8f90b00 | 2004-01-12 18:25:22 +0000 | [diff] [blame] | 156 | case Instruction::GetElementPtr: |
Chris Lattner | 4b30fcb | 2006-05-27 01:18:04 +0000 | [diff] [blame] | 157 | return ConstantExpr::getGetElementPtr(Ops[0], |
| 158 | std::vector<Constant*>(Ops.begin()+1, |
| 159 | Ops.end())); |
Chris Lattner | 8f90b00 | 2004-01-12 18:25:22 +0000 | [diff] [blame] | 160 | } |
| 161 | } |
| 162 | |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 163 | // ConstantFoldTerminator - If a terminator instruction is predicated on a |
| 164 | // constant value, convert it into an unconditional branch to the constant |
| 165 | // destination. |
| 166 | // |
Chris Lattner | abbc2dd | 2003-12-19 05:56:28 +0000 | [diff] [blame] | 167 | bool llvm::ConstantFoldTerminator(BasicBlock *BB) { |
Chris Lattner | 76ae344 | 2002-05-21 20:04:50 +0000 | [diff] [blame] | 168 | TerminatorInst *T = BB->getTerminator(); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 169 | |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 170 | // Branch - See if we are conditional jumping on constant |
| 171 | if (BranchInst *BI = dyn_cast<BranchInst>(T)) { |
| 172 | if (BI->isUnconditional()) return false; // Can't optimize uncond branch |
| 173 | BasicBlock *Dest1 = cast<BasicBlock>(BI->getOperand(0)); |
| 174 | BasicBlock *Dest2 = cast<BasicBlock>(BI->getOperand(1)); |
| 175 | |
| 176 | if (ConstantBool *Cond = dyn_cast<ConstantBool>(BI->getCondition())) { |
| 177 | // Are we branching on constant? |
| 178 | // YES. Change to unconditional branch... |
| 179 | BasicBlock *Destination = Cond->getValue() ? Dest1 : Dest2; |
| 180 | BasicBlock *OldDest = Cond->getValue() ? Dest2 : Dest1; |
| 181 | |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 182 | //cerr << "Function: " << T->getParent()->getParent() |
| 183 | // << "\nRemoving branch from " << T->getParent() |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 184 | // << "\n\nTo: " << OldDest << endl; |
| 185 | |
| 186 | // Let the basic block know that we are letting go of it. Based on this, |
| 187 | // it will adjust it's PHI nodes. |
| 188 | assert(BI->getParent() && "Terminator not inserted in block!"); |
| 189 | OldDest->removePredecessor(BI->getParent()); |
| 190 | |
| 191 | // Set the unconditional destination, and change the insn to be an |
| 192 | // unconditional branch. |
| 193 | BI->setUnconditionalDest(Destination); |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 194 | return true; |
Chris Lattner | 342a9d1 | 2003-08-17 19:34:55 +0000 | [diff] [blame] | 195 | } else if (Dest2 == Dest1) { // Conditional branch to same location? |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 196 | // This branch matches something like this: |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 197 | // br bool %cond, label %Dest, label %Dest |
| 198 | // and changes it into: br label %Dest |
| 199 | |
| 200 | // Let the basic block know that we are letting go of one copy of it. |
| 201 | assert(BI->getParent() && "Terminator not inserted in block!"); |
| 202 | Dest1->removePredecessor(BI->getParent()); |
| 203 | |
| 204 | // Change a conditional branch to unconditional. |
| 205 | BI->setUnconditionalDest(Dest1); |
| 206 | return true; |
| 207 | } |
Chris Lattner | 10b1f5a | 2003-08-17 20:21:14 +0000 | [diff] [blame] | 208 | } else if (SwitchInst *SI = dyn_cast<SwitchInst>(T)) { |
| 209 | // If we are switching on a constant, we can convert the switch into a |
| 210 | // single branch instruction! |
| 211 | ConstantInt *CI = dyn_cast<ConstantInt>(SI->getCondition()); |
| 212 | BasicBlock *TheOnlyDest = SI->getSuccessor(0); // The default dest |
Chris Lattner | 7d6c24c | 2003-08-23 23:18:19 +0000 | [diff] [blame] | 213 | BasicBlock *DefaultDest = TheOnlyDest; |
| 214 | assert(TheOnlyDest == SI->getDefaultDest() && |
| 215 | "Default destination is not successor #0?"); |
Chris Lattner | 694e37f | 2003-08-17 19:41:53 +0000 | [diff] [blame] | 216 | |
Chris Lattner | 10b1f5a | 2003-08-17 20:21:14 +0000 | [diff] [blame] | 217 | // Figure out which case it goes to... |
| 218 | for (unsigned i = 1, e = SI->getNumSuccessors(); i != e; ++i) { |
| 219 | // Found case matching a constant operand? |
| 220 | if (SI->getSuccessorValue(i) == CI) { |
| 221 | TheOnlyDest = SI->getSuccessor(i); |
| 222 | break; |
| 223 | } |
Chris Lattner | 694e37f | 2003-08-17 19:41:53 +0000 | [diff] [blame] | 224 | |
Chris Lattner | 7d6c24c | 2003-08-23 23:18:19 +0000 | [diff] [blame] | 225 | // Check to see if this branch is going to the same place as the default |
| 226 | // dest. If so, eliminate it as an explicit compare. |
| 227 | if (SI->getSuccessor(i) == DefaultDest) { |
| 228 | // Remove this entry... |
| 229 | DefaultDest->removePredecessor(SI->getParent()); |
| 230 | SI->removeCase(i); |
| 231 | --i; --e; // Don't skip an entry... |
| 232 | continue; |
| 233 | } |
| 234 | |
Chris Lattner | 10b1f5a | 2003-08-17 20:21:14 +0000 | [diff] [blame] | 235 | // Otherwise, check to see if the switch only branches to one destination. |
| 236 | // We do this by reseting "TheOnlyDest" to null when we find two non-equal |
| 237 | // destinations. |
| 238 | if (SI->getSuccessor(i) != TheOnlyDest) TheOnlyDest = 0; |
Chris Lattner | 694e37f | 2003-08-17 19:41:53 +0000 | [diff] [blame] | 239 | } |
| 240 | |
Chris Lattner | 10b1f5a | 2003-08-17 20:21:14 +0000 | [diff] [blame] | 241 | if (CI && !TheOnlyDest) { |
| 242 | // Branching on a constant, but not any of the cases, go to the default |
| 243 | // successor. |
| 244 | TheOnlyDest = SI->getDefaultDest(); |
| 245 | } |
| 246 | |
| 247 | // If we found a single destination that we can fold the switch into, do so |
| 248 | // now. |
| 249 | if (TheOnlyDest) { |
| 250 | // Insert the new branch.. |
| 251 | new BranchInst(TheOnlyDest, SI); |
| 252 | BasicBlock *BB = SI->getParent(); |
| 253 | |
| 254 | // Remove entries from PHI nodes which we no longer branch to... |
| 255 | for (unsigned i = 0, e = SI->getNumSuccessors(); i != e; ++i) { |
| 256 | // Found case matching a constant operand? |
| 257 | BasicBlock *Succ = SI->getSuccessor(i); |
| 258 | if (Succ == TheOnlyDest) |
| 259 | TheOnlyDest = 0; // Don't modify the first branch to TheOnlyDest |
| 260 | else |
| 261 | Succ->removePredecessor(BB); |
| 262 | } |
| 263 | |
| 264 | // Delete the old switch... |
| 265 | BB->getInstList().erase(SI); |
| 266 | return true; |
| 267 | } else if (SI->getNumSuccessors() == 2) { |
| 268 | // Otherwise, we can fold this switch into a conditional branch |
| 269 | // instruction if it has only one non-default destination. |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 270 | Value *Cond = new ICmpInst(ICmpInst::ICMP_EQ, SI->getCondition(), |
| 271 | SI->getSuccessorValue(1), "cond", SI); |
Chris Lattner | 10b1f5a | 2003-08-17 20:21:14 +0000 | [diff] [blame] | 272 | // Insert the new branch... |
| 273 | new BranchInst(SI->getSuccessor(1), SI->getSuccessor(0), Cond, SI); |
| 274 | |
| 275 | // Delete the old switch... |
| 276 | SI->getParent()->getInstList().erase(SI); |
| 277 | return true; |
| 278 | } |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 279 | } |
| 280 | return false; |
| 281 | } |
| 282 | |
Chris Lattner | c5f52e6 | 2005-09-26 05:27:10 +0000 | [diff] [blame] | 283 | /// ConstantFoldLoadThroughGEPConstantExpr - Given a constant and a |
| 284 | /// getelementptr constantexpr, return the constant value being addressed by the |
| 285 | /// constant expression, or null if something is funny and we can't decide. |
| 286 | Constant *llvm::ConstantFoldLoadThroughGEPConstantExpr(Constant *C, |
| 287 | ConstantExpr *CE) { |
| 288 | if (CE->getOperand(1) != Constant::getNullValue(CE->getOperand(1)->getType())) |
| 289 | return 0; // Do not allow stepping over the value! |
| 290 | |
| 291 | // Loop over all of the operands, tracking down which value we are |
| 292 | // addressing... |
| 293 | gep_type_iterator I = gep_type_begin(CE), E = gep_type_end(CE); |
| 294 | for (++I; I != E; ++I) |
| 295 | if (const StructType *STy = dyn_cast<StructType>(*I)) { |
Reid Spencer | b83eb64 | 2006-10-20 07:07:24 +0000 | [diff] [blame] | 296 | ConstantInt *CU = cast<ConstantInt>(I.getOperand()); |
| 297 | assert(CU->getZExtValue() < STy->getNumElements() && |
Chris Lattner | c5f52e6 | 2005-09-26 05:27:10 +0000 | [diff] [blame] | 298 | "Struct index out of range!"); |
Reid Spencer | b83eb64 | 2006-10-20 07:07:24 +0000 | [diff] [blame] | 299 | unsigned El = (unsigned)CU->getZExtValue(); |
Chris Lattner | c5f52e6 | 2005-09-26 05:27:10 +0000 | [diff] [blame] | 300 | if (ConstantStruct *CS = dyn_cast<ConstantStruct>(C)) { |
| 301 | C = CS->getOperand(El); |
| 302 | } else if (isa<ConstantAggregateZero>(C)) { |
| 303 | C = Constant::getNullValue(STy->getElementType(El)); |
| 304 | } else if (isa<UndefValue>(C)) { |
| 305 | C = UndefValue::get(STy->getElementType(El)); |
| 306 | } else { |
| 307 | return 0; |
| 308 | } |
| 309 | } else if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand())) { |
Robert Bocchino | d900c6a | 2006-01-19 23:53:23 +0000 | [diff] [blame] | 310 | if (const ArrayType *ATy = dyn_cast<ArrayType>(*I)) { |
Reid Spencer | b83eb64 | 2006-10-20 07:07:24 +0000 | [diff] [blame] | 311 | if (CI->getZExtValue() >= ATy->getNumElements()) |
Chris Lattner | 99f2af2 | 2006-05-25 21:25:12 +0000 | [diff] [blame] | 312 | return 0; |
Robert Bocchino | d900c6a | 2006-01-19 23:53:23 +0000 | [diff] [blame] | 313 | if (ConstantArray *CA = dyn_cast<ConstantArray>(C)) |
Reid Spencer | b83eb64 | 2006-10-20 07:07:24 +0000 | [diff] [blame] | 314 | C = CA->getOperand(CI->getZExtValue()); |
Robert Bocchino | d900c6a | 2006-01-19 23:53:23 +0000 | [diff] [blame] | 315 | else if (isa<ConstantAggregateZero>(C)) |
| 316 | C = Constant::getNullValue(ATy->getElementType()); |
| 317 | else if (isa<UndefValue>(C)) |
| 318 | C = UndefValue::get(ATy->getElementType()); |
| 319 | else |
| 320 | return 0; |
| 321 | } else if (const PackedType *PTy = dyn_cast<PackedType>(*I)) { |
Reid Spencer | b83eb64 | 2006-10-20 07:07:24 +0000 | [diff] [blame] | 322 | if (CI->getZExtValue() >= PTy->getNumElements()) |
Chris Lattner | 99f2af2 | 2006-05-25 21:25:12 +0000 | [diff] [blame] | 323 | return 0; |
Robert Bocchino | d900c6a | 2006-01-19 23:53:23 +0000 | [diff] [blame] | 324 | if (ConstantPacked *CP = dyn_cast<ConstantPacked>(C)) |
Reid Spencer | b83eb64 | 2006-10-20 07:07:24 +0000 | [diff] [blame] | 325 | C = CP->getOperand(CI->getZExtValue()); |
Robert Bocchino | d900c6a | 2006-01-19 23:53:23 +0000 | [diff] [blame] | 326 | else if (isa<ConstantAggregateZero>(C)) |
| 327 | C = Constant::getNullValue(PTy->getElementType()); |
| 328 | else if (isa<UndefValue>(C)) |
| 329 | C = UndefValue::get(PTy->getElementType()); |
| 330 | else |
| 331 | return 0; |
| 332 | } else { |
Chris Lattner | c5f52e6 | 2005-09-26 05:27:10 +0000 | [diff] [blame] | 333 | return 0; |
Robert Bocchino | d900c6a | 2006-01-19 23:53:23 +0000 | [diff] [blame] | 334 | } |
Chris Lattner | c5f52e6 | 2005-09-26 05:27:10 +0000 | [diff] [blame] | 335 | } else { |
| 336 | return 0; |
| 337 | } |
| 338 | return C; |
| 339 | } |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 340 | |
| 341 | |
| 342 | //===----------------------------------------------------------------------===// |
| 343 | // Local dead code elimination... |
| 344 | // |
| 345 | |
Chris Lattner | abbc2dd | 2003-12-19 05:56:28 +0000 | [diff] [blame] | 346 | bool llvm::isInstructionTriviallyDead(Instruction *I) { |
Chris Lattner | ec710c5 | 2005-05-06 05:27:34 +0000 | [diff] [blame] | 347 | if (!I->use_empty() || isa<TerminatorInst>(I)) return false; |
Jeff Cohen | 00b16889 | 2005-07-27 06:12:32 +0000 | [diff] [blame] | 348 | |
Chris Lattner | ec710c5 | 2005-05-06 05:27:34 +0000 | [diff] [blame] | 349 | if (!I->mayWriteToMemory()) return true; |
| 350 | |
| 351 | if (CallInst *CI = dyn_cast<CallInst>(I)) |
Chris Lattner | aeebe7f | 2006-03-09 22:38:10 +0000 | [diff] [blame] | 352 | if (Function *F = CI->getCalledFunction()) { |
Chris Lattner | 7224f84 | 2006-04-02 03:35:01 +0000 | [diff] [blame] | 353 | unsigned IntrinsicID = F->getIntrinsicID(); |
Chris Lattner | aeebe7f | 2006-03-09 22:38:10 +0000 | [diff] [blame] | 354 | #define GET_SIDE_EFFECT_INFO |
| 355 | #include "llvm/Intrinsics.gen" |
| 356 | #undef GET_SIDE_EFFECT_INFO |
| 357 | } |
Chris Lattner | ec710c5 | 2005-05-06 05:27:34 +0000 | [diff] [blame] | 358 | return false; |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 359 | } |
| 360 | |
| 361 | // dceInstruction - Inspect the instruction at *BBI and figure out if it's |
| 362 | // [trivially] dead. If so, remove the instruction and update the iterator |
| 363 | // to point to the instruction that immediately succeeded the original |
| 364 | // instruction. |
| 365 | // |
Chris Lattner | abbc2dd | 2003-12-19 05:56:28 +0000 | [diff] [blame] | 366 | bool llvm::dceInstruction(BasicBlock::iterator &BBI) { |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 367 | // Look for un"used" definitions... |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 368 | if (isInstructionTriviallyDead(BBI)) { |
| 369 | BBI = BBI->getParent()->getInstList().erase(BBI); // Bye bye |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 370 | return true; |
| 371 | } |
| 372 | return false; |
| 373 | } |