Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 1 | //===- InstCombineLoadStoreAlloca.cpp -------------------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the visit functions for load, store and alloca. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "InstCombine.h" |
| 15 | #include "llvm/IntrinsicInst.h" |
Dan Gohman | 826bdf8 | 2010-05-28 16:19:17 +0000 | [diff] [blame] | 16 | #include "llvm/Analysis/Loads.h" |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 17 | #include "llvm/Target/TargetData.h" |
| 18 | #include "llvm/Transforms/Utils/BasicBlockUtils.h" |
| 19 | #include "llvm/Transforms/Utils/Local.h" |
| 20 | #include "llvm/ADT/Statistic.h" |
| 21 | using namespace llvm; |
| 22 | |
| 23 | STATISTIC(NumDeadStore, "Number of dead stores eliminated"); |
| 24 | |
Chandler Carruth | f82b0e2 | 2012-04-08 14:36:56 +0000 | [diff] [blame] | 25 | // Try to kill dead allocas by walking through its uses until we see some use |
| 26 | // that could escape. This is a conservative analysis which tries to handle |
| 27 | // GEPs, bitcasts, stores, and no-op intrinsics. These tend to be the things |
| 28 | // left after inlining and SROA finish chewing on an alloca. |
| 29 | static Instruction *removeDeadAlloca(InstCombiner &IC, AllocaInst &AI) { |
| 30 | SmallVector<Instruction *, 4> Worklist, DeadStores; |
| 31 | Worklist.push_back(&AI); |
| 32 | do { |
| 33 | Instruction *PI = Worklist.pop_back_val(); |
| 34 | for (Value::use_iterator UI = PI->use_begin(), UE = PI->use_end(); |
| 35 | UI != UE; ++UI) { |
| 36 | Instruction *I = cast<Instruction>(*UI); |
| 37 | switch (I->getOpcode()) { |
| 38 | default: |
| 39 | // Give up the moment we see something we can't handle. |
| 40 | return 0; |
| 41 | |
| 42 | case Instruction::GetElementPtr: |
| 43 | case Instruction::BitCast: |
| 44 | Worklist.push_back(I); |
| 45 | continue; |
| 46 | |
| 47 | case Instruction::Call: |
| 48 | // We can handle a limited subset of calls to no-op intrinsics. |
| 49 | if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) { |
| 50 | switch (II->getIntrinsicID()) { |
| 51 | case Intrinsic::dbg_declare: |
| 52 | case Intrinsic::dbg_value: |
| 53 | case Intrinsic::invariant_start: |
| 54 | case Intrinsic::invariant_end: |
| 55 | case Intrinsic::lifetime_start: |
| 56 | case Intrinsic::lifetime_end: |
| 57 | continue; |
| 58 | default: |
| 59 | return 0; |
| 60 | } |
| 61 | } |
| 62 | // Reject everything else. |
| 63 | return 0; |
| 64 | |
| 65 | case Instruction::Store: { |
| 66 | // Stores into the alloca are only live if the alloca is live. |
| 67 | StoreInst *SI = cast<StoreInst>(I); |
| 68 | // We can eliminate atomic stores, but not volatile. |
| 69 | if (SI->isVolatile()) |
| 70 | return 0; |
| 71 | // The store is only trivially safe if the poniter is the destination |
| 72 | // as opposed to the value. We're conservative here and don't check for |
| 73 | // the case where we store the address of a dead alloca into a dead |
| 74 | // alloca. |
| 75 | if (SI->getPointerOperand() != PI) |
| 76 | return 0; |
| 77 | DeadStores.push_back(I); |
| 78 | continue; |
| 79 | } |
| 80 | } |
| 81 | } |
| 82 | } while (!Worklist.empty()); |
| 83 | |
| 84 | // The alloca is dead. Kill off all the stores to it, and then replace it |
| 85 | // with undef. |
| 86 | while (!DeadStores.empty()) |
| 87 | IC.EraseInstFromFunction(*DeadStores.pop_back_val()); |
| 88 | return IC.ReplaceInstUsesWith(AI, UndefValue::get(AI.getType())); |
| 89 | } |
| 90 | |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 91 | Instruction *InstCombiner::visitAllocaInst(AllocaInst &AI) { |
Dan Gohman | df5d7dc | 2010-05-28 15:09:00 +0000 | [diff] [blame] | 92 | // Ensure that the alloca array size argument has type intptr_t, so that |
| 93 | // any casting is exposed early. |
| 94 | if (TD) { |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 95 | Type *IntPtrTy = TD->getIntPtrType(AI.getContext()); |
Dan Gohman | df5d7dc | 2010-05-28 15:09:00 +0000 | [diff] [blame] | 96 | if (AI.getArraySize()->getType() != IntPtrTy) { |
| 97 | Value *V = Builder->CreateIntCast(AI.getArraySize(), |
| 98 | IntPtrTy, false); |
| 99 | AI.setOperand(0, V); |
| 100 | return &AI; |
| 101 | } |
| 102 | } |
| 103 | |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 104 | // Convert: alloca Ty, C - where C is a constant != 1 into: alloca [C x Ty], 1 |
| 105 | if (AI.isArrayAllocation()) { // Check C != 1 |
| 106 | if (const ConstantInt *C = dyn_cast<ConstantInt>(AI.getArraySize())) { |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 107 | Type *NewTy = |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 108 | ArrayType::get(AI.getAllocatedType(), C->getZExtValue()); |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 109 | AllocaInst *New = Builder->CreateAlloca(NewTy, 0, AI.getName()); |
| 110 | New->setAlignment(AI.getAlignment()); |
| 111 | |
| 112 | // Scan to the end of the allocation instructions, to skip over a block of |
| 113 | // allocas if possible...also skip interleaved debug info |
| 114 | // |
| 115 | BasicBlock::iterator It = New; |
| 116 | while (isa<AllocaInst>(*It) || isa<DbgInfoIntrinsic>(*It)) ++It; |
| 117 | |
| 118 | // Now that I is pointing to the first non-allocation-inst in the block, |
| 119 | // insert our getelementptr instruction... |
| 120 | // |
| 121 | Value *NullIdx =Constant::getNullValue(Type::getInt32Ty(AI.getContext())); |
| 122 | Value *Idx[2]; |
| 123 | Idx[0] = NullIdx; |
| 124 | Idx[1] = NullIdx; |
Eli Friedman | 41e509a | 2011-05-18 23:58:37 +0000 | [diff] [blame] | 125 | Instruction *GEP = |
Jay Foad | d1b7849 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 126 | GetElementPtrInst::CreateInBounds(New, Idx, New->getName()+".sub"); |
Eli Friedman | 41e509a | 2011-05-18 23:58:37 +0000 | [diff] [blame] | 127 | InsertNewInstBefore(GEP, *It); |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 128 | |
| 129 | // Now make everything use the getelementptr instead of the original |
| 130 | // allocation. |
Eli Friedman | 41e509a | 2011-05-18 23:58:37 +0000 | [diff] [blame] | 131 | return ReplaceInstUsesWith(AI, GEP); |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 132 | } else if (isa<UndefValue>(AI.getArraySize())) { |
| 133 | return ReplaceInstUsesWith(AI, Constant::getNullValue(AI.getType())); |
| 134 | } |
| 135 | } |
| 136 | |
Duncan Sands | 8bc764a | 2012-06-26 13:39:21 +0000 | [diff] [blame] | 137 | if (TD && AI.getAllocatedType()->isSized()) { |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 138 | // If the alignment is 0 (unspecified), assign it the preferred alignment. |
| 139 | if (AI.getAlignment() == 0) |
| 140 | AI.setAlignment(TD->getPrefTypeAlignment(AI.getAllocatedType())); |
Duncan Sands | 8bc764a | 2012-06-26 13:39:21 +0000 | [diff] [blame] | 141 | |
| 142 | // Move all alloca's of zero byte objects to the entry block and merge them |
| 143 | // together. Note that we only do this for alloca's, because malloc should |
| 144 | // allocate and return a unique pointer, even for a zero byte allocation. |
| 145 | if (TD->getTypeAllocSize(AI.getAllocatedType()) == 0) { |
| 146 | // For a zero sized alloca there is no point in doing an array allocation. |
| 147 | // This is helpful if the array size is a complicated expression not used |
| 148 | // elsewhere. |
| 149 | if (AI.isArrayAllocation()) { |
| 150 | AI.setOperand(0, ConstantInt::get(AI.getArraySize()->getType(), 1)); |
| 151 | return &AI; |
| 152 | } |
| 153 | |
| 154 | // Get the first instruction in the entry block. |
| 155 | BasicBlock &EntryBlock = AI.getParent()->getParent()->getEntryBlock(); |
| 156 | Instruction *FirstInst = EntryBlock.getFirstNonPHIOrDbg(); |
| 157 | if (FirstInst != &AI) { |
| 158 | // If the entry block doesn't start with a zero-size alloca then move |
| 159 | // this one to the start of the entry block. There is no problem with |
| 160 | // dominance as the array size was forced to a constant earlier already. |
| 161 | AllocaInst *EntryAI = dyn_cast<AllocaInst>(FirstInst); |
| 162 | if (!EntryAI || !EntryAI->getAllocatedType()->isSized() || |
| 163 | TD->getTypeAllocSize(EntryAI->getAllocatedType()) != 0) { |
| 164 | AI.moveBefore(FirstInst); |
| 165 | return &AI; |
| 166 | } |
| 167 | |
| 168 | // Replace this zero-sized alloca with the one at the start of the entry |
| 169 | // block after ensuring that the address will be aligned enough for both |
| 170 | // types. |
| 171 | unsigned MaxAlign = |
| 172 | std::max(TD->getPrefTypeAlignment(EntryAI->getAllocatedType()), |
| 173 | TD->getPrefTypeAlignment(AI.getAllocatedType())); |
| 174 | EntryAI->setAlignment(MaxAlign); |
| 175 | if (AI.getType() != EntryAI->getType()) |
| 176 | return new BitCastInst(EntryAI, AI.getType()); |
| 177 | return ReplaceInstUsesWith(AI, EntryAI); |
| 178 | } |
| 179 | } |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 180 | } |
| 181 | |
Chandler Carruth | f82b0e2 | 2012-04-08 14:36:56 +0000 | [diff] [blame] | 182 | // Try to aggressively remove allocas which are only used for GEPs, lifetime |
| 183 | // markers, and stores. This happens when SROA iteratively promotes stores |
| 184 | // out of the alloca, and we need to cleanup after it. |
| 185 | return removeDeadAlloca(*this, AI); |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | |
| 189 | /// InstCombineLoadCast - Fold 'load (cast P)' -> cast (load P)' when possible. |
| 190 | static Instruction *InstCombineLoadCast(InstCombiner &IC, LoadInst &LI, |
| 191 | const TargetData *TD) { |
| 192 | User *CI = cast<User>(LI.getOperand(0)); |
| 193 | Value *CastOp = CI->getOperand(0); |
| 194 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 195 | PointerType *DestTy = cast<PointerType>(CI->getType()); |
| 196 | Type *DestPTy = DestTy->getElementType(); |
| 197 | if (PointerType *SrcTy = dyn_cast<PointerType>(CastOp->getType())) { |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 198 | |
| 199 | // If the address spaces don't match, don't eliminate the cast. |
| 200 | if (DestTy->getAddressSpace() != SrcTy->getAddressSpace()) |
| 201 | return 0; |
| 202 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 203 | Type *SrcPTy = SrcTy->getElementType(); |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 204 | |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 205 | if (DestPTy->isIntegerTy() || DestPTy->isPointerTy() || |
| 206 | DestPTy->isVectorTy()) { |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 207 | // If the source is an array, the code below will not succeed. Check to |
| 208 | // see if a trivial 'gep P, 0, 0' will help matters. Only do this for |
| 209 | // constants. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 210 | if (ArrayType *ASrcTy = dyn_cast<ArrayType>(SrcPTy)) |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 211 | if (Constant *CSrc = dyn_cast<Constant>(CastOp)) |
| 212 | if (ASrcTy->getNumElements() != 0) { |
| 213 | Value *Idxs[2]; |
| 214 | Idxs[0] = Constant::getNullValue(Type::getInt32Ty(LI.getContext())); |
| 215 | Idxs[1] = Idxs[0]; |
Jay Foad | 71f19ac | 2011-07-22 07:54:01 +0000 | [diff] [blame] | 216 | CastOp = ConstantExpr::getGetElementPtr(CSrc, Idxs); |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 217 | SrcTy = cast<PointerType>(CastOp->getType()); |
| 218 | SrcPTy = SrcTy->getElementType(); |
| 219 | } |
| 220 | |
| 221 | if (IC.getTargetData() && |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 222 | (SrcPTy->isIntegerTy() || SrcPTy->isPointerTy() || |
| 223 | SrcPTy->isVectorTy()) && |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 224 | // Do not allow turning this into a load of an integer, which is then |
| 225 | // casted to a pointer, this pessimizes pointer analysis a lot. |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 226 | (SrcPTy->isPointerTy() == LI.getType()->isPointerTy()) && |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 227 | IC.getTargetData()->getTypeSizeInBits(SrcPTy) == |
| 228 | IC.getTargetData()->getTypeSizeInBits(DestPTy)) { |
| 229 | |
| 230 | // Okay, we are casting from one integer or pointer type to another of |
| 231 | // the same size. Instead of casting the pointer before the load, cast |
| 232 | // the result of the loaded value. |
Bob Wilson | 4b71b6c | 2010-01-30 00:41:10 +0000 | [diff] [blame] | 233 | LoadInst *NewLoad = |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 234 | IC.Builder->CreateLoad(CastOp, LI.isVolatile(), CI->getName()); |
Bob Wilson | 4b71b6c | 2010-01-30 00:41:10 +0000 | [diff] [blame] | 235 | NewLoad->setAlignment(LI.getAlignment()); |
Eli Friedman | 8bc586e | 2011-08-15 22:09:40 +0000 | [diff] [blame] | 236 | NewLoad->setAtomic(LI.getOrdering(), LI.getSynchScope()); |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 237 | // Now cast the result of the load. |
| 238 | return new BitCastInst(NewLoad, LI.getType()); |
| 239 | } |
| 240 | } |
| 241 | } |
| 242 | return 0; |
| 243 | } |
| 244 | |
| 245 | Instruction *InstCombiner::visitLoadInst(LoadInst &LI) { |
| 246 | Value *Op = LI.getOperand(0); |
| 247 | |
| 248 | // Attempt to improve the alignment. |
| 249 | if (TD) { |
| 250 | unsigned KnownAlign = |
Chris Lattner | 6fcd32e | 2010-12-25 20:37:57 +0000 | [diff] [blame] | 251 | getOrEnforceKnownAlignment(Op, TD->getPrefTypeAlignment(LI.getType()),TD); |
Dan Gohman | 3619660 | 2010-08-03 18:20:32 +0000 | [diff] [blame] | 252 | unsigned LoadAlign = LI.getAlignment(); |
| 253 | unsigned EffectiveLoadAlign = LoadAlign != 0 ? LoadAlign : |
| 254 | TD->getABITypeAlignment(LI.getType()); |
| 255 | |
| 256 | if (KnownAlign > EffectiveLoadAlign) |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 257 | LI.setAlignment(KnownAlign); |
Dan Gohman | 3619660 | 2010-08-03 18:20:32 +0000 | [diff] [blame] | 258 | else if (LoadAlign == 0) |
| 259 | LI.setAlignment(EffectiveLoadAlign); |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 260 | } |
| 261 | |
| 262 | // load (cast X) --> cast (load X) iff safe. |
| 263 | if (isa<CastInst>(Op)) |
| 264 | if (Instruction *Res = InstCombineLoadCast(*this, LI, TD)) |
| 265 | return Res; |
| 266 | |
Eli Friedman | 8bc586e | 2011-08-15 22:09:40 +0000 | [diff] [blame] | 267 | // None of the following transforms are legal for volatile/atomic loads. |
| 268 | // FIXME: Some of it is okay for atomic loads; needs refactoring. |
| 269 | if (!LI.isSimple()) return 0; |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 270 | |
| 271 | // Do really simple store-to-load forwarding and load CSE, to catch cases |
Duncan Sands | 75b5d27 | 2011-02-15 09:23:02 +0000 | [diff] [blame] | 272 | // where there are several consecutive memory accesses to the same location, |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 273 | // separated by a few arithmetic operations. |
| 274 | BasicBlock::iterator BBI = &LI; |
| 275 | if (Value *AvailableVal = FindAvailableLoadedValue(Op, LI.getParent(), BBI,6)) |
| 276 | return ReplaceInstUsesWith(LI, AvailableVal); |
| 277 | |
| 278 | // load(gep null, ...) -> unreachable |
| 279 | if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(Op)) { |
| 280 | const Value *GEPI0 = GEPI->getOperand(0); |
| 281 | // TODO: Consider a target hook for valid address spaces for this xform. |
| 282 | if (isa<ConstantPointerNull>(GEPI0) && GEPI->getPointerAddressSpace() == 0){ |
| 283 | // Insert a new store to null instruction before the load to indicate |
| 284 | // that this code is not reachable. We do this instead of inserting |
| 285 | // an unreachable instruction directly because we cannot modify the |
| 286 | // CFG. |
| 287 | new StoreInst(UndefValue::get(LI.getType()), |
| 288 | Constant::getNullValue(Op->getType()), &LI); |
| 289 | return ReplaceInstUsesWith(LI, UndefValue::get(LI.getType())); |
| 290 | } |
| 291 | } |
| 292 | |
| 293 | // load null/undef -> unreachable |
| 294 | // TODO: Consider a target hook for valid address spaces for this xform. |
| 295 | if (isa<UndefValue>(Op) || |
| 296 | (isa<ConstantPointerNull>(Op) && LI.getPointerAddressSpace() == 0)) { |
| 297 | // Insert a new store to null instruction before the load to indicate that |
| 298 | // this code is not reachable. We do this instead of inserting an |
| 299 | // unreachable instruction directly because we cannot modify the CFG. |
| 300 | new StoreInst(UndefValue::get(LI.getType()), |
| 301 | Constant::getNullValue(Op->getType()), &LI); |
| 302 | return ReplaceInstUsesWith(LI, UndefValue::get(LI.getType())); |
| 303 | } |
| 304 | |
| 305 | // Instcombine load (constantexpr_cast global) -> cast (load global) |
| 306 | if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Op)) |
| 307 | if (CE->isCast()) |
| 308 | if (Instruction *Res = InstCombineLoadCast(*this, LI, TD)) |
| 309 | return Res; |
| 310 | |
| 311 | if (Op->hasOneUse()) { |
| 312 | // Change select and PHI nodes to select values instead of addresses: this |
| 313 | // helps alias analysis out a lot, allows many others simplifications, and |
| 314 | // exposes redundancy in the code. |
| 315 | // |
| 316 | // Note that we cannot do the transformation unless we know that the |
| 317 | // introduced loads cannot trap! Something like this is valid as long as |
| 318 | // the condition is always false: load (select bool %C, int* null, int* %G), |
| 319 | // but it would not be valid if we transformed it to load from null |
| 320 | // unconditionally. |
| 321 | // |
| 322 | if (SelectInst *SI = dyn_cast<SelectInst>(Op)) { |
| 323 | // load (select (Cond, &V1, &V2)) --> select(Cond, load &V1, load &V2). |
Bob Wilson | 56600a1 | 2010-01-30 04:42:39 +0000 | [diff] [blame] | 324 | unsigned Align = LI.getAlignment(); |
| 325 | if (isSafeToLoadUnconditionally(SI->getOperand(1), SI, Align, TD) && |
| 326 | isSafeToLoadUnconditionally(SI->getOperand(2), SI, Align, TD)) { |
Bob Wilson | 4b71b6c | 2010-01-30 00:41:10 +0000 | [diff] [blame] | 327 | LoadInst *V1 = Builder->CreateLoad(SI->getOperand(1), |
Bob Wilson | 56600a1 | 2010-01-30 04:42:39 +0000 | [diff] [blame] | 328 | SI->getOperand(1)->getName()+".val"); |
Bob Wilson | 4b71b6c | 2010-01-30 00:41:10 +0000 | [diff] [blame] | 329 | LoadInst *V2 = Builder->CreateLoad(SI->getOperand(2), |
Bob Wilson | 56600a1 | 2010-01-30 04:42:39 +0000 | [diff] [blame] | 330 | SI->getOperand(2)->getName()+".val"); |
| 331 | V1->setAlignment(Align); |
| 332 | V2->setAlignment(Align); |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 333 | return SelectInst::Create(SI->getCondition(), V1, V2); |
| 334 | } |
| 335 | |
| 336 | // load (select (cond, null, P)) -> load P |
| 337 | if (Constant *C = dyn_cast<Constant>(SI->getOperand(1))) |
| 338 | if (C->isNullValue()) { |
| 339 | LI.setOperand(0, SI->getOperand(2)); |
| 340 | return &LI; |
| 341 | } |
| 342 | |
| 343 | // load (select (cond, P, null)) -> load P |
| 344 | if (Constant *C = dyn_cast<Constant>(SI->getOperand(2))) |
| 345 | if (C->isNullValue()) { |
| 346 | LI.setOperand(0, SI->getOperand(1)); |
| 347 | return &LI; |
| 348 | } |
| 349 | } |
| 350 | } |
| 351 | return 0; |
| 352 | } |
| 353 | |
| 354 | /// InstCombineStoreToCast - Fold store V, (cast P) -> store (cast V), P |
| 355 | /// when possible. This makes it generally easy to do alias analysis and/or |
| 356 | /// SROA/mem2reg of the memory object. |
| 357 | static Instruction *InstCombineStoreToCast(InstCombiner &IC, StoreInst &SI) { |
| 358 | User *CI = cast<User>(SI.getOperand(1)); |
| 359 | Value *CastOp = CI->getOperand(0); |
| 360 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 361 | Type *DestPTy = cast<PointerType>(CI->getType())->getElementType(); |
| 362 | PointerType *SrcTy = dyn_cast<PointerType>(CastOp->getType()); |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 363 | if (SrcTy == 0) return 0; |
| 364 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 365 | Type *SrcPTy = SrcTy->getElementType(); |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 366 | |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 367 | if (!DestPTy->isIntegerTy() && !DestPTy->isPointerTy()) |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 368 | return 0; |
| 369 | |
| 370 | /// NewGEPIndices - If SrcPTy is an aggregate type, we can emit a "noop gep" |
| 371 | /// to its first element. This allows us to handle things like: |
| 372 | /// store i32 xxx, (bitcast {foo*, float}* %P to i32*) |
| 373 | /// on 32-bit hosts. |
| 374 | SmallVector<Value*, 4> NewGEPIndices; |
| 375 | |
| 376 | // If the source is an array, the code below will not succeed. Check to |
| 377 | // see if a trivial 'gep P, 0, 0' will help matters. Only do this for |
| 378 | // constants. |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 379 | if (SrcPTy->isArrayTy() || SrcPTy->isStructTy()) { |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 380 | // Index through pointer. |
| 381 | Constant *Zero = Constant::getNullValue(Type::getInt32Ty(SI.getContext())); |
| 382 | NewGEPIndices.push_back(Zero); |
| 383 | |
| 384 | while (1) { |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 385 | if (StructType *STy = dyn_cast<StructType>(SrcPTy)) { |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 386 | if (!STy->getNumElements()) /* Struct can be empty {} */ |
| 387 | break; |
| 388 | NewGEPIndices.push_back(Zero); |
| 389 | SrcPTy = STy->getElementType(0); |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 390 | } else if (ArrayType *ATy = dyn_cast<ArrayType>(SrcPTy)) { |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 391 | NewGEPIndices.push_back(Zero); |
| 392 | SrcPTy = ATy->getElementType(); |
| 393 | } else { |
| 394 | break; |
| 395 | } |
| 396 | } |
| 397 | |
| 398 | SrcTy = PointerType::get(SrcPTy, SrcTy->getAddressSpace()); |
| 399 | } |
| 400 | |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 401 | if (!SrcPTy->isIntegerTy() && !SrcPTy->isPointerTy()) |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 402 | return 0; |
| 403 | |
| 404 | // If the pointers point into different address spaces or if they point to |
| 405 | // values with different sizes, we can't do the transformation. |
| 406 | if (!IC.getTargetData() || |
| 407 | SrcTy->getAddressSpace() != |
| 408 | cast<PointerType>(CI->getType())->getAddressSpace() || |
| 409 | IC.getTargetData()->getTypeSizeInBits(SrcPTy) != |
| 410 | IC.getTargetData()->getTypeSizeInBits(DestPTy)) |
| 411 | return 0; |
| 412 | |
| 413 | // Okay, we are casting from one integer or pointer type to another of |
| 414 | // the same size. Instead of casting the pointer before |
| 415 | // the store, cast the value to be stored. |
| 416 | Value *NewCast; |
| 417 | Value *SIOp0 = SI.getOperand(0); |
| 418 | Instruction::CastOps opcode = Instruction::BitCast; |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 419 | Type* CastSrcTy = SIOp0->getType(); |
| 420 | Type* CastDstTy = SrcPTy; |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 421 | if (CastDstTy->isPointerTy()) { |
Duncan Sands | 9dff9be | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 422 | if (CastSrcTy->isIntegerTy()) |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 423 | opcode = Instruction::IntToPtr; |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 424 | } else if (CastDstTy->isIntegerTy()) { |
| 425 | if (SIOp0->getType()->isPointerTy()) |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 426 | opcode = Instruction::PtrToInt; |
| 427 | } |
| 428 | |
| 429 | // SIOp0 is a pointer to aggregate and this is a store to the first field, |
| 430 | // emit a GEP to index into its first field. |
| 431 | if (!NewGEPIndices.empty()) |
Jay Foad | 040dd82 | 2011-07-22 08:16:57 +0000 | [diff] [blame] | 432 | CastOp = IC.Builder->CreateInBoundsGEP(CastOp, NewGEPIndices); |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 433 | |
| 434 | NewCast = IC.Builder->CreateCast(opcode, SIOp0, CastDstTy, |
| 435 | SIOp0->getName()+".c"); |
Dan Gohman | 2e20dfb | 2010-10-25 16:16:27 +0000 | [diff] [blame] | 436 | SI.setOperand(0, NewCast); |
| 437 | SI.setOperand(1, CastOp); |
| 438 | return &SI; |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 439 | } |
| 440 | |
| 441 | /// equivalentAddressValues - Test if A and B will obviously have the same |
| 442 | /// value. This includes recognizing that %t0 and %t1 will have the same |
| 443 | /// value in code like this: |
| 444 | /// %t0 = getelementptr \@a, 0, 3 |
| 445 | /// store i32 0, i32* %t0 |
| 446 | /// %t1 = getelementptr \@a, 0, 3 |
| 447 | /// %t2 = load i32* %t1 |
| 448 | /// |
| 449 | static bool equivalentAddressValues(Value *A, Value *B) { |
| 450 | // Test if the values are trivially equivalent. |
| 451 | if (A == B) return true; |
| 452 | |
| 453 | // Test if the values come form identical arithmetic instructions. |
| 454 | // This uses isIdenticalToWhenDefined instead of isIdenticalTo because |
| 455 | // its only used to compare two uses within the same basic block, which |
| 456 | // means that they'll always either have the same value or one of them |
| 457 | // will have an undefined value. |
| 458 | if (isa<BinaryOperator>(A) || |
| 459 | isa<CastInst>(A) || |
| 460 | isa<PHINode>(A) || |
| 461 | isa<GetElementPtrInst>(A)) |
| 462 | if (Instruction *BI = dyn_cast<Instruction>(B)) |
| 463 | if (cast<Instruction>(A)->isIdenticalToWhenDefined(BI)) |
| 464 | return true; |
| 465 | |
| 466 | // Otherwise they may not be equivalent. |
| 467 | return false; |
| 468 | } |
| 469 | |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 470 | Instruction *InstCombiner::visitStoreInst(StoreInst &SI) { |
| 471 | Value *Val = SI.getOperand(0); |
| 472 | Value *Ptr = SI.getOperand(1); |
| 473 | |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 474 | // Attempt to improve the alignment. |
| 475 | if (TD) { |
| 476 | unsigned KnownAlign = |
Chris Lattner | 6fcd32e | 2010-12-25 20:37:57 +0000 | [diff] [blame] | 477 | getOrEnforceKnownAlignment(Ptr, TD->getPrefTypeAlignment(Val->getType()), |
| 478 | TD); |
Dan Gohman | 3619660 | 2010-08-03 18:20:32 +0000 | [diff] [blame] | 479 | unsigned StoreAlign = SI.getAlignment(); |
| 480 | unsigned EffectiveStoreAlign = StoreAlign != 0 ? StoreAlign : |
| 481 | TD->getABITypeAlignment(Val->getType()); |
| 482 | |
Bill Wendling | 55b6b2b | 2012-03-16 18:20:54 +0000 | [diff] [blame] | 483 | if (KnownAlign > EffectiveStoreAlign) |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 484 | SI.setAlignment(KnownAlign); |
Bill Wendling | 55b6b2b | 2012-03-16 18:20:54 +0000 | [diff] [blame] | 485 | else if (StoreAlign == 0) |
| 486 | SI.setAlignment(EffectiveStoreAlign); |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 487 | } |
| 488 | |
Eli Friedman | 8bc586e | 2011-08-15 22:09:40 +0000 | [diff] [blame] | 489 | // Don't hack volatile/atomic stores. |
| 490 | // FIXME: Some bits are legal for atomic stores; needs refactoring. |
| 491 | if (!SI.isSimple()) return 0; |
| 492 | |
| 493 | // If the RHS is an alloca with a single use, zapify the store, making the |
| 494 | // alloca dead. |
| 495 | if (Ptr->hasOneUse()) { |
| 496 | if (isa<AllocaInst>(Ptr)) |
| 497 | return EraseInstFromFunction(SI); |
| 498 | if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Ptr)) { |
| 499 | if (isa<AllocaInst>(GEP->getOperand(0))) { |
| 500 | if (GEP->getOperand(0)->hasOneUse()) |
| 501 | return EraseInstFromFunction(SI); |
| 502 | } |
| 503 | } |
| 504 | } |
| 505 | |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 506 | // Do really simple DSE, to catch cases where there are several consecutive |
| 507 | // stores to the same location, separated by a few arithmetic operations. This |
| 508 | // situation often occurs with bitfield accesses. |
| 509 | BasicBlock::iterator BBI = &SI; |
| 510 | for (unsigned ScanInsts = 6; BBI != SI.getParent()->begin() && ScanInsts; |
| 511 | --ScanInsts) { |
| 512 | --BBI; |
Victor Hernandez | 5f8c8c0 | 2010-01-22 19:05:05 +0000 | [diff] [blame] | 513 | // Don't count debug info directives, lest they affect codegen, |
| 514 | // and we skip pointer-to-pointer bitcasts, which are NOPs. |
| 515 | if (isa<DbgInfoIntrinsic>(BBI) || |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 516 | (isa<BitCastInst>(BBI) && BBI->getType()->isPointerTy())) { |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 517 | ScanInsts++; |
| 518 | continue; |
| 519 | } |
| 520 | |
| 521 | if (StoreInst *PrevSI = dyn_cast<StoreInst>(BBI)) { |
| 522 | // Prev store isn't volatile, and stores to the same location? |
Eli Friedman | 8bc586e | 2011-08-15 22:09:40 +0000 | [diff] [blame] | 523 | if (PrevSI->isSimple() && equivalentAddressValues(PrevSI->getOperand(1), |
| 524 | SI.getOperand(1))) { |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 525 | ++NumDeadStore; |
| 526 | ++BBI; |
| 527 | EraseInstFromFunction(*PrevSI); |
| 528 | continue; |
| 529 | } |
| 530 | break; |
| 531 | } |
| 532 | |
| 533 | // If this is a load, we have to stop. However, if the loaded value is from |
| 534 | // the pointer we're loading and is producing the pointer we're storing, |
| 535 | // then *this* store is dead (X = load P; store X -> P). |
| 536 | if (LoadInst *LI = dyn_cast<LoadInst>(BBI)) { |
Jin-Gu Kang | b452db0 | 2011-03-14 01:21:00 +0000 | [diff] [blame] | 537 | if (LI == Val && equivalentAddressValues(LI->getOperand(0), Ptr) && |
Eli Friedman | 8bc586e | 2011-08-15 22:09:40 +0000 | [diff] [blame] | 538 | LI->isSimple()) |
Jin-Gu Kang | b452db0 | 2011-03-14 01:21:00 +0000 | [diff] [blame] | 539 | return EraseInstFromFunction(SI); |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 540 | |
| 541 | // Otherwise, this is a load from some other location. Stores before it |
| 542 | // may not be dead. |
| 543 | break; |
| 544 | } |
| 545 | |
| 546 | // Don't skip over loads or things that can modify memory. |
| 547 | if (BBI->mayWriteToMemory() || BBI->mayReadFromMemory()) |
| 548 | break; |
| 549 | } |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 550 | |
| 551 | // store X, null -> turns into 'unreachable' in SimplifyCFG |
| 552 | if (isa<ConstantPointerNull>(Ptr) && SI.getPointerAddressSpace() == 0) { |
| 553 | if (!isa<UndefValue>(Val)) { |
| 554 | SI.setOperand(0, UndefValue::get(Val->getType())); |
| 555 | if (Instruction *U = dyn_cast<Instruction>(Val)) |
| 556 | Worklist.Add(U); // Dropped a use. |
| 557 | } |
| 558 | return 0; // Do not modify these! |
| 559 | } |
| 560 | |
| 561 | // store undef, Ptr -> noop |
| 562 | if (isa<UndefValue>(Val)) |
| 563 | return EraseInstFromFunction(SI); |
| 564 | |
| 565 | // If the pointer destination is a cast, see if we can fold the cast into the |
| 566 | // source instead. |
| 567 | if (isa<CastInst>(Ptr)) |
| 568 | if (Instruction *Res = InstCombineStoreToCast(*this, SI)) |
| 569 | return Res; |
| 570 | if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ptr)) |
| 571 | if (CE->isCast()) |
| 572 | if (Instruction *Res = InstCombineStoreToCast(*this, SI)) |
| 573 | return Res; |
| 574 | |
| 575 | |
| 576 | // If this store is the last instruction in the basic block (possibly |
Victor Hernandez | 5f5abd5 | 2010-01-21 23:07:15 +0000 | [diff] [blame] | 577 | // excepting debug info instructions), and if the block ends with an |
| 578 | // unconditional branch, try to move it to the successor block. |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 579 | BBI = &SI; |
| 580 | do { |
| 581 | ++BBI; |
Victor Hernandez | 5f8c8c0 | 2010-01-22 19:05:05 +0000 | [diff] [blame] | 582 | } while (isa<DbgInfoIntrinsic>(BBI) || |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 583 | (isa<BitCastInst>(BBI) && BBI->getType()->isPointerTy())); |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 584 | if (BranchInst *BI = dyn_cast<BranchInst>(BBI)) |
| 585 | if (BI->isUnconditional()) |
| 586 | if (SimplifyStoreAtEndOfBlock(SI)) |
| 587 | return 0; // xform done! |
| 588 | |
| 589 | return 0; |
| 590 | } |
| 591 | |
| 592 | /// SimplifyStoreAtEndOfBlock - Turn things like: |
| 593 | /// if () { *P = v1; } else { *P = v2 } |
| 594 | /// into a phi node with a store in the successor. |
| 595 | /// |
| 596 | /// Simplify things like: |
| 597 | /// *P = v1; if () { *P = v2; } |
| 598 | /// into a phi node with a store in the successor. |
| 599 | /// |
| 600 | bool InstCombiner::SimplifyStoreAtEndOfBlock(StoreInst &SI) { |
| 601 | BasicBlock *StoreBB = SI.getParent(); |
| 602 | |
| 603 | // Check to see if the successor block has exactly two incoming edges. If |
| 604 | // so, see if the other predecessor contains a store to the same location. |
| 605 | // if so, insert a PHI node (if needed) and move the stores down. |
| 606 | BasicBlock *DestBB = StoreBB->getTerminator()->getSuccessor(0); |
| 607 | |
| 608 | // Determine whether Dest has exactly two predecessors and, if so, compute |
| 609 | // the other predecessor. |
| 610 | pred_iterator PI = pred_begin(DestBB); |
Gabor Greif | 1b787df | 2010-07-12 15:48:26 +0000 | [diff] [blame] | 611 | BasicBlock *P = *PI; |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 612 | BasicBlock *OtherBB = 0; |
Gabor Greif | 1b787df | 2010-07-12 15:48:26 +0000 | [diff] [blame] | 613 | |
| 614 | if (P != StoreBB) |
| 615 | OtherBB = P; |
| 616 | |
| 617 | if (++PI == pred_end(DestBB)) |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 618 | return false; |
| 619 | |
Gabor Greif | 1b787df | 2010-07-12 15:48:26 +0000 | [diff] [blame] | 620 | P = *PI; |
| 621 | if (P != StoreBB) { |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 622 | if (OtherBB) |
| 623 | return false; |
Gabor Greif | 1b787df | 2010-07-12 15:48:26 +0000 | [diff] [blame] | 624 | OtherBB = P; |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 625 | } |
| 626 | if (++PI != pred_end(DestBB)) |
| 627 | return false; |
| 628 | |
| 629 | // Bail out if all the relevant blocks aren't distinct (this can happen, |
| 630 | // for example, if SI is in an infinite loop) |
| 631 | if (StoreBB == DestBB || OtherBB == DestBB) |
| 632 | return false; |
| 633 | |
| 634 | // Verify that the other block ends in a branch and is not otherwise empty. |
| 635 | BasicBlock::iterator BBI = OtherBB->getTerminator(); |
| 636 | BranchInst *OtherBr = dyn_cast<BranchInst>(BBI); |
| 637 | if (!OtherBr || BBI == OtherBB->begin()) |
| 638 | return false; |
| 639 | |
| 640 | // If the other block ends in an unconditional branch, check for the 'if then |
| 641 | // else' case. there is an instruction before the branch. |
| 642 | StoreInst *OtherStore = 0; |
| 643 | if (OtherBr->isUnconditional()) { |
| 644 | --BBI; |
| 645 | // Skip over debugging info. |
Victor Hernandez | 5f8c8c0 | 2010-01-22 19:05:05 +0000 | [diff] [blame] | 646 | while (isa<DbgInfoIntrinsic>(BBI) || |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 647 | (isa<BitCastInst>(BBI) && BBI->getType()->isPointerTy())) { |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 648 | if (BBI==OtherBB->begin()) |
| 649 | return false; |
| 650 | --BBI; |
| 651 | } |
Eli Friedman | 8bc586e | 2011-08-15 22:09:40 +0000 | [diff] [blame] | 652 | // If this isn't a store, isn't a store to the same location, or is not the |
| 653 | // right kind of store, bail out. |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 654 | OtherStore = dyn_cast<StoreInst>(BBI); |
| 655 | if (!OtherStore || OtherStore->getOperand(1) != SI.getOperand(1) || |
Eli Friedman | 8bc586e | 2011-08-15 22:09:40 +0000 | [diff] [blame] | 656 | !SI.isSameOperationAs(OtherStore)) |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 657 | return false; |
| 658 | } else { |
| 659 | // Otherwise, the other block ended with a conditional branch. If one of the |
| 660 | // destinations is StoreBB, then we have the if/then case. |
| 661 | if (OtherBr->getSuccessor(0) != StoreBB && |
| 662 | OtherBr->getSuccessor(1) != StoreBB) |
| 663 | return false; |
| 664 | |
| 665 | // Okay, we know that OtherBr now goes to Dest and StoreBB, so this is an |
| 666 | // if/then triangle. See if there is a store to the same ptr as SI that |
| 667 | // lives in OtherBB. |
| 668 | for (;; --BBI) { |
| 669 | // Check to see if we find the matching store. |
| 670 | if ((OtherStore = dyn_cast<StoreInst>(BBI))) { |
| 671 | if (OtherStore->getOperand(1) != SI.getOperand(1) || |
Eli Friedman | 8bc586e | 2011-08-15 22:09:40 +0000 | [diff] [blame] | 672 | !SI.isSameOperationAs(OtherStore)) |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 673 | return false; |
| 674 | break; |
| 675 | } |
| 676 | // If we find something that may be using or overwriting the stored |
| 677 | // value, or if we run out of instructions, we can't do the xform. |
| 678 | if (BBI->mayReadFromMemory() || BBI->mayWriteToMemory() || |
| 679 | BBI == OtherBB->begin()) |
| 680 | return false; |
| 681 | } |
| 682 | |
| 683 | // In order to eliminate the store in OtherBr, we have to |
| 684 | // make sure nothing reads or overwrites the stored value in |
| 685 | // StoreBB. |
| 686 | for (BasicBlock::iterator I = StoreBB->begin(); &*I != &SI; ++I) { |
| 687 | // FIXME: This should really be AA driven. |
| 688 | if (I->mayReadFromMemory() || I->mayWriteToMemory()) |
| 689 | return false; |
| 690 | } |
| 691 | } |
| 692 | |
| 693 | // Insert a PHI node now if we need it. |
| 694 | Value *MergedVal = OtherStore->getOperand(0); |
| 695 | if (MergedVal != SI.getOperand(0)) { |
Jay Foad | 5213134 | 2011-03-30 11:28:46 +0000 | [diff] [blame] | 696 | PHINode *PN = PHINode::Create(MergedVal->getType(), 2, "storemerge"); |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 697 | PN->addIncoming(SI.getOperand(0), SI.getParent()); |
| 698 | PN->addIncoming(OtherStore->getOperand(0), OtherBB); |
| 699 | MergedVal = InsertNewInstBefore(PN, DestBB->front()); |
| 700 | } |
| 701 | |
| 702 | // Advance to a place where it is safe to insert the new store and |
| 703 | // insert it. |
Bill Wendling | 8ddfc09 | 2011-08-16 20:45:24 +0000 | [diff] [blame] | 704 | BBI = DestBB->getFirstInsertionPt(); |
Eli Friedman | 35211c6 | 2011-05-27 00:19:40 +0000 | [diff] [blame] | 705 | StoreInst *NewSI = new StoreInst(MergedVal, SI.getOperand(1), |
Eli Friedman | 8bc586e | 2011-08-15 22:09:40 +0000 | [diff] [blame] | 706 | SI.isVolatile(), |
| 707 | SI.getAlignment(), |
| 708 | SI.getOrdering(), |
| 709 | SI.getSynchScope()); |
Eli Friedman | 35211c6 | 2011-05-27 00:19:40 +0000 | [diff] [blame] | 710 | InsertNewInstBefore(NewSI, *BBI); |
| 711 | NewSI->setDebugLoc(OtherStore->getDebugLoc()); |
| 712 | |
Chris Lattner | a65e2f7 | 2010-01-05 05:57:49 +0000 | [diff] [blame] | 713 | // Nuke the old stores. |
| 714 | EraseInstFromFunction(SI); |
| 715 | EraseInstFromFunction(*OtherStore); |
| 716 | return true; |
| 717 | } |