blob: 78ff7346abe4388c10a4821053495818354305ef [file] [log] [blame]
Chris Lattnera65e2f72010-01-05 05:57:49 +00001//===- 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 Gohman826bdf82010-05-28 16:19:17 +000016#include "llvm/Analysis/Loads.h"
Chris Lattnera65e2f72010-01-05 05:57:49 +000017#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"
21using namespace llvm;
22
23STATISTIC(NumDeadStore, "Number of dead stores eliminated");
24
25Instruction *InstCombiner::visitAllocaInst(AllocaInst &AI) {
Dan Gohmandf5d7dc2010-05-28 15:09:00 +000026 // Ensure that the alloca array size argument has type intptr_t, so that
27 // any casting is exposed early.
28 if (TD) {
29 const Type *IntPtrTy = TD->getIntPtrType(AI.getContext());
30 if (AI.getArraySize()->getType() != IntPtrTy) {
31 Value *V = Builder->CreateIntCast(AI.getArraySize(),
32 IntPtrTy, false);
33 AI.setOperand(0, V);
34 return &AI;
35 }
36 }
37
Chris Lattnera65e2f72010-01-05 05:57:49 +000038 // Convert: alloca Ty, C - where C is a constant != 1 into: alloca [C x Ty], 1
39 if (AI.isArrayAllocation()) { // Check C != 1
40 if (const ConstantInt *C = dyn_cast<ConstantInt>(AI.getArraySize())) {
41 const Type *NewTy =
42 ArrayType::get(AI.getAllocatedType(), C->getZExtValue());
43 assert(isa<AllocaInst>(AI) && "Unknown type of allocation inst!");
44 AllocaInst *New = Builder->CreateAlloca(NewTy, 0, AI.getName());
45 New->setAlignment(AI.getAlignment());
46
47 // Scan to the end of the allocation instructions, to skip over a block of
48 // allocas if possible...also skip interleaved debug info
49 //
50 BasicBlock::iterator It = New;
51 while (isa<AllocaInst>(*It) || isa<DbgInfoIntrinsic>(*It)) ++It;
52
53 // Now that I is pointing to the first non-allocation-inst in the block,
54 // insert our getelementptr instruction...
55 //
56 Value *NullIdx =Constant::getNullValue(Type::getInt32Ty(AI.getContext()));
57 Value *Idx[2];
58 Idx[0] = NullIdx;
59 Idx[1] = NullIdx;
60 Value *V = GetElementPtrInst::CreateInBounds(New, Idx, Idx + 2,
61 New->getName()+".sub", It);
62
63 // Now make everything use the getelementptr instead of the original
64 // allocation.
65 return ReplaceInstUsesWith(AI, V);
66 } else if (isa<UndefValue>(AI.getArraySize())) {
67 return ReplaceInstUsesWith(AI, Constant::getNullValue(AI.getType()));
68 }
69 }
70
71 if (TD && isa<AllocaInst>(AI) && AI.getAllocatedType()->isSized()) {
72 // If alloca'ing a zero byte object, replace the alloca with a null pointer.
73 // Note that we only do this for alloca's, because malloc should allocate
74 // and return a unique pointer, even for a zero byte allocation.
75 if (TD->getTypeAllocSize(AI.getAllocatedType()) == 0)
76 return ReplaceInstUsesWith(AI, Constant::getNullValue(AI.getType()));
77
78 // If the alignment is 0 (unspecified), assign it the preferred alignment.
79 if (AI.getAlignment() == 0)
80 AI.setAlignment(TD->getPrefTypeAlignment(AI.getAllocatedType()));
81 }
82
83 return 0;
84}
85
86
87/// InstCombineLoadCast - Fold 'load (cast P)' -> cast (load P)' when possible.
88static Instruction *InstCombineLoadCast(InstCombiner &IC, LoadInst &LI,
89 const TargetData *TD) {
90 User *CI = cast<User>(LI.getOperand(0));
91 Value *CastOp = CI->getOperand(0);
92
93 const PointerType *DestTy = cast<PointerType>(CI->getType());
94 const Type *DestPTy = DestTy->getElementType();
95 if (const PointerType *SrcTy = dyn_cast<PointerType>(CastOp->getType())) {
96
97 // If the address spaces don't match, don't eliminate the cast.
98 if (DestTy->getAddressSpace() != SrcTy->getAddressSpace())
99 return 0;
100
101 const Type *SrcPTy = SrcTy->getElementType();
102
Duncan Sands19d0b472010-02-16 11:11:14 +0000103 if (DestPTy->isIntegerTy() || DestPTy->isPointerTy() ||
104 DestPTy->isVectorTy()) {
Chris Lattnera65e2f72010-01-05 05:57:49 +0000105 // If the source is an array, the code below will not succeed. Check to
106 // see if a trivial 'gep P, 0, 0' will help matters. Only do this for
107 // constants.
108 if (const ArrayType *ASrcTy = dyn_cast<ArrayType>(SrcPTy))
109 if (Constant *CSrc = dyn_cast<Constant>(CastOp))
110 if (ASrcTy->getNumElements() != 0) {
111 Value *Idxs[2];
112 Idxs[0] = Constant::getNullValue(Type::getInt32Ty(LI.getContext()));
113 Idxs[1] = Idxs[0];
114 CastOp = ConstantExpr::getGetElementPtr(CSrc, Idxs, 2);
115 SrcTy = cast<PointerType>(CastOp->getType());
116 SrcPTy = SrcTy->getElementType();
117 }
118
119 if (IC.getTargetData() &&
Duncan Sands19d0b472010-02-16 11:11:14 +0000120 (SrcPTy->isIntegerTy() || SrcPTy->isPointerTy() ||
121 SrcPTy->isVectorTy()) &&
Chris Lattnera65e2f72010-01-05 05:57:49 +0000122 // Do not allow turning this into a load of an integer, which is then
123 // casted to a pointer, this pessimizes pointer analysis a lot.
Duncan Sands19d0b472010-02-16 11:11:14 +0000124 (SrcPTy->isPointerTy() == LI.getType()->isPointerTy()) &&
Chris Lattnera65e2f72010-01-05 05:57:49 +0000125 IC.getTargetData()->getTypeSizeInBits(SrcPTy) ==
126 IC.getTargetData()->getTypeSizeInBits(DestPTy)) {
127
128 // Okay, we are casting from one integer or pointer type to another of
129 // the same size. Instead of casting the pointer before the load, cast
130 // the result of the loaded value.
Bob Wilson4b71b6c2010-01-30 00:41:10 +0000131 LoadInst *NewLoad =
Chris Lattnera65e2f72010-01-05 05:57:49 +0000132 IC.Builder->CreateLoad(CastOp, LI.isVolatile(), CI->getName());
Bob Wilson4b71b6c2010-01-30 00:41:10 +0000133 NewLoad->setAlignment(LI.getAlignment());
Chris Lattnera65e2f72010-01-05 05:57:49 +0000134 // Now cast the result of the load.
135 return new BitCastInst(NewLoad, LI.getType());
136 }
137 }
138 }
139 return 0;
140}
141
142Instruction *InstCombiner::visitLoadInst(LoadInst &LI) {
143 Value *Op = LI.getOperand(0);
144
145 // Attempt to improve the alignment.
146 if (TD) {
147 unsigned KnownAlign =
Chris Lattner6fcd32e2010-12-25 20:37:57 +0000148 getOrEnforceKnownAlignment(Op, TD->getPrefTypeAlignment(LI.getType()),TD);
Dan Gohman36196602010-08-03 18:20:32 +0000149 unsigned LoadAlign = LI.getAlignment();
150 unsigned EffectiveLoadAlign = LoadAlign != 0 ? LoadAlign :
151 TD->getABITypeAlignment(LI.getType());
152
153 if (KnownAlign > EffectiveLoadAlign)
Chris Lattnera65e2f72010-01-05 05:57:49 +0000154 LI.setAlignment(KnownAlign);
Dan Gohman36196602010-08-03 18:20:32 +0000155 else if (LoadAlign == 0)
156 LI.setAlignment(EffectiveLoadAlign);
Chris Lattnera65e2f72010-01-05 05:57:49 +0000157 }
158
159 // load (cast X) --> cast (load X) iff safe.
160 if (isa<CastInst>(Op))
161 if (Instruction *Res = InstCombineLoadCast(*this, LI, TD))
162 return Res;
163
164 // None of the following transforms are legal for volatile loads.
165 if (LI.isVolatile()) return 0;
166
167 // Do really simple store-to-load forwarding and load CSE, to catch cases
Duncan Sands75b5d272011-02-15 09:23:02 +0000168 // where there are several consecutive memory accesses to the same location,
Chris Lattnera65e2f72010-01-05 05:57:49 +0000169 // separated by a few arithmetic operations.
170 BasicBlock::iterator BBI = &LI;
171 if (Value *AvailableVal = FindAvailableLoadedValue(Op, LI.getParent(), BBI,6))
172 return ReplaceInstUsesWith(LI, AvailableVal);
173
174 // load(gep null, ...) -> unreachable
175 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(Op)) {
176 const Value *GEPI0 = GEPI->getOperand(0);
177 // TODO: Consider a target hook for valid address spaces for this xform.
178 if (isa<ConstantPointerNull>(GEPI0) && GEPI->getPointerAddressSpace() == 0){
179 // Insert a new store to null instruction before the load to indicate
180 // that this code is not reachable. We do this instead of inserting
181 // an unreachable instruction directly because we cannot modify the
182 // CFG.
183 new StoreInst(UndefValue::get(LI.getType()),
184 Constant::getNullValue(Op->getType()), &LI);
185 return ReplaceInstUsesWith(LI, UndefValue::get(LI.getType()));
186 }
187 }
188
189 // load null/undef -> unreachable
190 // TODO: Consider a target hook for valid address spaces for this xform.
191 if (isa<UndefValue>(Op) ||
192 (isa<ConstantPointerNull>(Op) && LI.getPointerAddressSpace() == 0)) {
193 // Insert a new store to null instruction before the load to indicate that
194 // this code is not reachable. We do this instead of inserting an
195 // unreachable instruction directly because we cannot modify the CFG.
196 new StoreInst(UndefValue::get(LI.getType()),
197 Constant::getNullValue(Op->getType()), &LI);
198 return ReplaceInstUsesWith(LI, UndefValue::get(LI.getType()));
199 }
200
201 // Instcombine load (constantexpr_cast global) -> cast (load global)
202 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Op))
203 if (CE->isCast())
204 if (Instruction *Res = InstCombineLoadCast(*this, LI, TD))
205 return Res;
206
207 if (Op->hasOneUse()) {
208 // Change select and PHI nodes to select values instead of addresses: this
209 // helps alias analysis out a lot, allows many others simplifications, and
210 // exposes redundancy in the code.
211 //
212 // Note that we cannot do the transformation unless we know that the
213 // introduced loads cannot trap! Something like this is valid as long as
214 // the condition is always false: load (select bool %C, int* null, int* %G),
215 // but it would not be valid if we transformed it to load from null
216 // unconditionally.
217 //
218 if (SelectInst *SI = dyn_cast<SelectInst>(Op)) {
219 // load (select (Cond, &V1, &V2)) --> select(Cond, load &V1, load &V2).
Bob Wilson56600a12010-01-30 04:42:39 +0000220 unsigned Align = LI.getAlignment();
221 if (isSafeToLoadUnconditionally(SI->getOperand(1), SI, Align, TD) &&
222 isSafeToLoadUnconditionally(SI->getOperand(2), SI, Align, TD)) {
Bob Wilson4b71b6c2010-01-30 00:41:10 +0000223 LoadInst *V1 = Builder->CreateLoad(SI->getOperand(1),
Bob Wilson56600a12010-01-30 04:42:39 +0000224 SI->getOperand(1)->getName()+".val");
Bob Wilson4b71b6c2010-01-30 00:41:10 +0000225 LoadInst *V2 = Builder->CreateLoad(SI->getOperand(2),
Bob Wilson56600a12010-01-30 04:42:39 +0000226 SI->getOperand(2)->getName()+".val");
227 V1->setAlignment(Align);
228 V2->setAlignment(Align);
Chris Lattnera65e2f72010-01-05 05:57:49 +0000229 return SelectInst::Create(SI->getCondition(), V1, V2);
230 }
231
232 // load (select (cond, null, P)) -> load P
233 if (Constant *C = dyn_cast<Constant>(SI->getOperand(1)))
234 if (C->isNullValue()) {
235 LI.setOperand(0, SI->getOperand(2));
236 return &LI;
237 }
238
239 // load (select (cond, P, null)) -> load P
240 if (Constant *C = dyn_cast<Constant>(SI->getOperand(2)))
241 if (C->isNullValue()) {
242 LI.setOperand(0, SI->getOperand(1));
243 return &LI;
244 }
245 }
246 }
247 return 0;
248}
249
250/// InstCombineStoreToCast - Fold store V, (cast P) -> store (cast V), P
251/// when possible. This makes it generally easy to do alias analysis and/or
252/// SROA/mem2reg of the memory object.
253static Instruction *InstCombineStoreToCast(InstCombiner &IC, StoreInst &SI) {
254 User *CI = cast<User>(SI.getOperand(1));
255 Value *CastOp = CI->getOperand(0);
256
257 const Type *DestPTy = cast<PointerType>(CI->getType())->getElementType();
258 const PointerType *SrcTy = dyn_cast<PointerType>(CastOp->getType());
259 if (SrcTy == 0) return 0;
260
261 const Type *SrcPTy = SrcTy->getElementType();
262
Duncan Sands19d0b472010-02-16 11:11:14 +0000263 if (!DestPTy->isIntegerTy() && !DestPTy->isPointerTy())
Chris Lattnera65e2f72010-01-05 05:57:49 +0000264 return 0;
265
266 /// NewGEPIndices - If SrcPTy is an aggregate type, we can emit a "noop gep"
267 /// to its first element. This allows us to handle things like:
268 /// store i32 xxx, (bitcast {foo*, float}* %P to i32*)
269 /// on 32-bit hosts.
270 SmallVector<Value*, 4> NewGEPIndices;
271
272 // If the source is an array, the code below will not succeed. Check to
273 // see if a trivial 'gep P, 0, 0' will help matters. Only do this for
274 // constants.
Duncan Sands19d0b472010-02-16 11:11:14 +0000275 if (SrcPTy->isArrayTy() || SrcPTy->isStructTy()) {
Chris Lattnera65e2f72010-01-05 05:57:49 +0000276 // Index through pointer.
277 Constant *Zero = Constant::getNullValue(Type::getInt32Ty(SI.getContext()));
278 NewGEPIndices.push_back(Zero);
279
280 while (1) {
281 if (const StructType *STy = dyn_cast<StructType>(SrcPTy)) {
282 if (!STy->getNumElements()) /* Struct can be empty {} */
283 break;
284 NewGEPIndices.push_back(Zero);
285 SrcPTy = STy->getElementType(0);
286 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(SrcPTy)) {
287 NewGEPIndices.push_back(Zero);
288 SrcPTy = ATy->getElementType();
289 } else {
290 break;
291 }
292 }
293
294 SrcTy = PointerType::get(SrcPTy, SrcTy->getAddressSpace());
295 }
296
Duncan Sands19d0b472010-02-16 11:11:14 +0000297 if (!SrcPTy->isIntegerTy() && !SrcPTy->isPointerTy())
Chris Lattnera65e2f72010-01-05 05:57:49 +0000298 return 0;
299
300 // If the pointers point into different address spaces or if they point to
301 // values with different sizes, we can't do the transformation.
302 if (!IC.getTargetData() ||
303 SrcTy->getAddressSpace() !=
304 cast<PointerType>(CI->getType())->getAddressSpace() ||
305 IC.getTargetData()->getTypeSizeInBits(SrcPTy) !=
306 IC.getTargetData()->getTypeSizeInBits(DestPTy))
307 return 0;
308
309 // Okay, we are casting from one integer or pointer type to another of
310 // the same size. Instead of casting the pointer before
311 // the store, cast the value to be stored.
312 Value *NewCast;
313 Value *SIOp0 = SI.getOperand(0);
314 Instruction::CastOps opcode = Instruction::BitCast;
315 const Type* CastSrcTy = SIOp0->getType();
316 const Type* CastDstTy = SrcPTy;
Duncan Sands19d0b472010-02-16 11:11:14 +0000317 if (CastDstTy->isPointerTy()) {
Duncan Sands9dff9be2010-02-15 16:12:20 +0000318 if (CastSrcTy->isIntegerTy())
Chris Lattnera65e2f72010-01-05 05:57:49 +0000319 opcode = Instruction::IntToPtr;
Duncan Sands19d0b472010-02-16 11:11:14 +0000320 } else if (CastDstTy->isIntegerTy()) {
321 if (SIOp0->getType()->isPointerTy())
Chris Lattnera65e2f72010-01-05 05:57:49 +0000322 opcode = Instruction::PtrToInt;
323 }
324
325 // SIOp0 is a pointer to aggregate and this is a store to the first field,
326 // emit a GEP to index into its first field.
327 if (!NewGEPIndices.empty())
328 CastOp = IC.Builder->CreateInBoundsGEP(CastOp, NewGEPIndices.begin(),
329 NewGEPIndices.end());
330
331 NewCast = IC.Builder->CreateCast(opcode, SIOp0, CastDstTy,
332 SIOp0->getName()+".c");
Dan Gohman2e20dfb2010-10-25 16:16:27 +0000333 SI.setOperand(0, NewCast);
334 SI.setOperand(1, CastOp);
335 return &SI;
Chris Lattnera65e2f72010-01-05 05:57:49 +0000336}
337
338/// equivalentAddressValues - Test if A and B will obviously have the same
339/// value. This includes recognizing that %t0 and %t1 will have the same
340/// value in code like this:
341/// %t0 = getelementptr \@a, 0, 3
342/// store i32 0, i32* %t0
343/// %t1 = getelementptr \@a, 0, 3
344/// %t2 = load i32* %t1
345///
346static bool equivalentAddressValues(Value *A, Value *B) {
347 // Test if the values are trivially equivalent.
348 if (A == B) return true;
349
350 // Test if the values come form identical arithmetic instructions.
351 // This uses isIdenticalToWhenDefined instead of isIdenticalTo because
352 // its only used to compare two uses within the same basic block, which
353 // means that they'll always either have the same value or one of them
354 // will have an undefined value.
355 if (isa<BinaryOperator>(A) ||
356 isa<CastInst>(A) ||
357 isa<PHINode>(A) ||
358 isa<GetElementPtrInst>(A))
359 if (Instruction *BI = dyn_cast<Instruction>(B))
360 if (cast<Instruction>(A)->isIdenticalToWhenDefined(BI))
361 return true;
362
363 // Otherwise they may not be equivalent.
364 return false;
365}
366
367// If this instruction has two uses, one of which is a llvm.dbg.declare,
368// return the llvm.dbg.declare.
369DbgDeclareInst *InstCombiner::hasOneUsePlusDeclare(Value *V) {
370 if (!V->hasNUses(2))
371 return 0;
372 for (Value::use_iterator UI = V->use_begin(), E = V->use_end();
373 UI != E; ++UI) {
Gabor Greif60a346d2010-07-09 12:23:50 +0000374 User *U = *UI;
375 if (DbgDeclareInst *DI = dyn_cast<DbgDeclareInst>(U))
Chris Lattnera65e2f72010-01-05 05:57:49 +0000376 return DI;
Gabor Greif60a346d2010-07-09 12:23:50 +0000377 if (isa<BitCastInst>(U) && U->hasOneUse()) {
Gabor Greifdde79d82010-07-22 13:36:47 +0000378 if (DbgDeclareInst *DI = dyn_cast<DbgDeclareInst>(*U->use_begin()))
Chris Lattnera65e2f72010-01-05 05:57:49 +0000379 return DI;
380 }
381 }
382 return 0;
383}
384
385Instruction *InstCombiner::visitStoreInst(StoreInst &SI) {
386 Value *Val = SI.getOperand(0);
387 Value *Ptr = SI.getOperand(1);
388
389 // If the RHS is an alloca with a single use, zapify the store, making the
390 // alloca dead.
391 // If the RHS is an alloca with a two uses, the other one being a
392 // llvm.dbg.declare, zapify the store and the declare, making the
Eric Christopher84bd3162010-01-19 01:20:15 +0000393 // alloca dead. We must do this to prevent declares from affecting
Chris Lattnera65e2f72010-01-05 05:57:49 +0000394 // codegen.
395 if (!SI.isVolatile()) {
396 if (Ptr->hasOneUse()) {
397 if (isa<AllocaInst>(Ptr))
398 return EraseInstFromFunction(SI);
399 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Ptr)) {
400 if (isa<AllocaInst>(GEP->getOperand(0))) {
401 if (GEP->getOperand(0)->hasOneUse())
402 return EraseInstFromFunction(SI);
403 if (DbgDeclareInst *DI = hasOneUsePlusDeclare(GEP->getOperand(0))) {
404 EraseInstFromFunction(*DI);
405 return EraseInstFromFunction(SI);
406 }
407 }
408 }
409 }
410 if (DbgDeclareInst *DI = hasOneUsePlusDeclare(Ptr)) {
411 EraseInstFromFunction(*DI);
412 return EraseInstFromFunction(SI);
413 }
414 }
415
416 // Attempt to improve the alignment.
417 if (TD) {
418 unsigned KnownAlign =
Chris Lattner6fcd32e2010-12-25 20:37:57 +0000419 getOrEnforceKnownAlignment(Ptr, TD->getPrefTypeAlignment(Val->getType()),
420 TD);
Dan Gohman36196602010-08-03 18:20:32 +0000421 unsigned StoreAlign = SI.getAlignment();
422 unsigned EffectiveStoreAlign = StoreAlign != 0 ? StoreAlign :
423 TD->getABITypeAlignment(Val->getType());
424
425 if (KnownAlign > EffectiveStoreAlign)
Chris Lattnera65e2f72010-01-05 05:57:49 +0000426 SI.setAlignment(KnownAlign);
Dan Gohman36196602010-08-03 18:20:32 +0000427 else if (StoreAlign == 0)
428 SI.setAlignment(EffectiveStoreAlign);
Chris Lattnera65e2f72010-01-05 05:57:49 +0000429 }
430
431 // Do really simple DSE, to catch cases where there are several consecutive
432 // stores to the same location, separated by a few arithmetic operations. This
433 // situation often occurs with bitfield accesses.
434 BasicBlock::iterator BBI = &SI;
435 for (unsigned ScanInsts = 6; BBI != SI.getParent()->begin() && ScanInsts;
436 --ScanInsts) {
437 --BBI;
Victor Hernandez5f8c8c02010-01-22 19:05:05 +0000438 // Don't count debug info directives, lest they affect codegen,
439 // and we skip pointer-to-pointer bitcasts, which are NOPs.
440 if (isa<DbgInfoIntrinsic>(BBI) ||
Duncan Sands19d0b472010-02-16 11:11:14 +0000441 (isa<BitCastInst>(BBI) && BBI->getType()->isPointerTy())) {
Chris Lattnera65e2f72010-01-05 05:57:49 +0000442 ScanInsts++;
443 continue;
444 }
445
446 if (StoreInst *PrevSI = dyn_cast<StoreInst>(BBI)) {
447 // Prev store isn't volatile, and stores to the same location?
448 if (!PrevSI->isVolatile() &&equivalentAddressValues(PrevSI->getOperand(1),
449 SI.getOperand(1))) {
450 ++NumDeadStore;
451 ++BBI;
452 EraseInstFromFunction(*PrevSI);
453 continue;
454 }
455 break;
456 }
457
458 // If this is a load, we have to stop. However, if the loaded value is from
459 // the pointer we're loading and is producing the pointer we're storing,
460 // then *this* store is dead (X = load P; store X -> P).
461 if (LoadInst *LI = dyn_cast<LoadInst>(BBI)) {
462 if (LI == Val && equivalentAddressValues(LI->getOperand(0), Ptr) &&
463 !SI.isVolatile())
464 return EraseInstFromFunction(SI);
465
466 // Otherwise, this is a load from some other location. Stores before it
467 // may not be dead.
468 break;
469 }
470
471 // Don't skip over loads or things that can modify memory.
472 if (BBI->mayWriteToMemory() || BBI->mayReadFromMemory())
473 break;
474 }
475
476
477 if (SI.isVolatile()) return 0; // Don't hack volatile stores.
478
479 // store X, null -> turns into 'unreachable' in SimplifyCFG
480 if (isa<ConstantPointerNull>(Ptr) && SI.getPointerAddressSpace() == 0) {
481 if (!isa<UndefValue>(Val)) {
482 SI.setOperand(0, UndefValue::get(Val->getType()));
483 if (Instruction *U = dyn_cast<Instruction>(Val))
484 Worklist.Add(U); // Dropped a use.
485 }
486 return 0; // Do not modify these!
487 }
488
489 // store undef, Ptr -> noop
490 if (isa<UndefValue>(Val))
491 return EraseInstFromFunction(SI);
492
493 // If the pointer destination is a cast, see if we can fold the cast into the
494 // source instead.
495 if (isa<CastInst>(Ptr))
496 if (Instruction *Res = InstCombineStoreToCast(*this, SI))
497 return Res;
498 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ptr))
499 if (CE->isCast())
500 if (Instruction *Res = InstCombineStoreToCast(*this, SI))
501 return Res;
502
503
504 // If this store is the last instruction in the basic block (possibly
Victor Hernandez5f5abd52010-01-21 23:07:15 +0000505 // excepting debug info instructions), and if the block ends with an
506 // unconditional branch, try to move it to the successor block.
Chris Lattnera65e2f72010-01-05 05:57:49 +0000507 BBI = &SI;
508 do {
509 ++BBI;
Victor Hernandez5f8c8c02010-01-22 19:05:05 +0000510 } while (isa<DbgInfoIntrinsic>(BBI) ||
Duncan Sands19d0b472010-02-16 11:11:14 +0000511 (isa<BitCastInst>(BBI) && BBI->getType()->isPointerTy()));
Chris Lattnera65e2f72010-01-05 05:57:49 +0000512 if (BranchInst *BI = dyn_cast<BranchInst>(BBI))
513 if (BI->isUnconditional())
514 if (SimplifyStoreAtEndOfBlock(SI))
515 return 0; // xform done!
516
517 return 0;
518}
519
520/// SimplifyStoreAtEndOfBlock - Turn things like:
521/// if () { *P = v1; } else { *P = v2 }
522/// into a phi node with a store in the successor.
523///
524/// Simplify things like:
525/// *P = v1; if () { *P = v2; }
526/// into a phi node with a store in the successor.
527///
528bool InstCombiner::SimplifyStoreAtEndOfBlock(StoreInst &SI) {
529 BasicBlock *StoreBB = SI.getParent();
530
531 // Check to see if the successor block has exactly two incoming edges. If
532 // so, see if the other predecessor contains a store to the same location.
533 // if so, insert a PHI node (if needed) and move the stores down.
534 BasicBlock *DestBB = StoreBB->getTerminator()->getSuccessor(0);
535
536 // Determine whether Dest has exactly two predecessors and, if so, compute
537 // the other predecessor.
538 pred_iterator PI = pred_begin(DestBB);
Gabor Greif1b787df2010-07-12 15:48:26 +0000539 BasicBlock *P = *PI;
Chris Lattnera65e2f72010-01-05 05:57:49 +0000540 BasicBlock *OtherBB = 0;
Gabor Greif1b787df2010-07-12 15:48:26 +0000541
542 if (P != StoreBB)
543 OtherBB = P;
544
545 if (++PI == pred_end(DestBB))
Chris Lattnera65e2f72010-01-05 05:57:49 +0000546 return false;
547
Gabor Greif1b787df2010-07-12 15:48:26 +0000548 P = *PI;
549 if (P != StoreBB) {
Chris Lattnera65e2f72010-01-05 05:57:49 +0000550 if (OtherBB)
551 return false;
Gabor Greif1b787df2010-07-12 15:48:26 +0000552 OtherBB = P;
Chris Lattnera65e2f72010-01-05 05:57:49 +0000553 }
554 if (++PI != pred_end(DestBB))
555 return false;
556
557 // Bail out if all the relevant blocks aren't distinct (this can happen,
558 // for example, if SI is in an infinite loop)
559 if (StoreBB == DestBB || OtherBB == DestBB)
560 return false;
561
562 // Verify that the other block ends in a branch and is not otherwise empty.
563 BasicBlock::iterator BBI = OtherBB->getTerminator();
564 BranchInst *OtherBr = dyn_cast<BranchInst>(BBI);
565 if (!OtherBr || BBI == OtherBB->begin())
566 return false;
567
568 // If the other block ends in an unconditional branch, check for the 'if then
569 // else' case. there is an instruction before the branch.
570 StoreInst *OtherStore = 0;
571 if (OtherBr->isUnconditional()) {
572 --BBI;
573 // Skip over debugging info.
Victor Hernandez5f8c8c02010-01-22 19:05:05 +0000574 while (isa<DbgInfoIntrinsic>(BBI) ||
Duncan Sands19d0b472010-02-16 11:11:14 +0000575 (isa<BitCastInst>(BBI) && BBI->getType()->isPointerTy())) {
Chris Lattnera65e2f72010-01-05 05:57:49 +0000576 if (BBI==OtherBB->begin())
577 return false;
578 --BBI;
579 }
580 // If this isn't a store, isn't a store to the same location, or if the
581 // alignments differ, bail out.
582 OtherStore = dyn_cast<StoreInst>(BBI);
583 if (!OtherStore || OtherStore->getOperand(1) != SI.getOperand(1) ||
584 OtherStore->getAlignment() != SI.getAlignment())
585 return false;
586 } else {
587 // Otherwise, the other block ended with a conditional branch. If one of the
588 // destinations is StoreBB, then we have the if/then case.
589 if (OtherBr->getSuccessor(0) != StoreBB &&
590 OtherBr->getSuccessor(1) != StoreBB)
591 return false;
592
593 // Okay, we know that OtherBr now goes to Dest and StoreBB, so this is an
594 // if/then triangle. See if there is a store to the same ptr as SI that
595 // lives in OtherBB.
596 for (;; --BBI) {
597 // Check to see if we find the matching store.
598 if ((OtherStore = dyn_cast<StoreInst>(BBI))) {
599 if (OtherStore->getOperand(1) != SI.getOperand(1) ||
600 OtherStore->getAlignment() != SI.getAlignment())
601 return false;
602 break;
603 }
604 // If we find something that may be using or overwriting the stored
605 // value, or if we run out of instructions, we can't do the xform.
606 if (BBI->mayReadFromMemory() || BBI->mayWriteToMemory() ||
607 BBI == OtherBB->begin())
608 return false;
609 }
610
611 // In order to eliminate the store in OtherBr, we have to
612 // make sure nothing reads or overwrites the stored value in
613 // StoreBB.
614 for (BasicBlock::iterator I = StoreBB->begin(); &*I != &SI; ++I) {
615 // FIXME: This should really be AA driven.
616 if (I->mayReadFromMemory() || I->mayWriteToMemory())
617 return false;
618 }
619 }
620
621 // Insert a PHI node now if we need it.
622 Value *MergedVal = OtherStore->getOperand(0);
623 if (MergedVal != SI.getOperand(0)) {
624 PHINode *PN = PHINode::Create(MergedVal->getType(), "storemerge");
625 PN->reserveOperandSpace(2);
626 PN->addIncoming(SI.getOperand(0), SI.getParent());
627 PN->addIncoming(OtherStore->getOperand(0), OtherBB);
628 MergedVal = InsertNewInstBefore(PN, DestBB->front());
629 }
630
631 // Advance to a place where it is safe to insert the new store and
632 // insert it.
633 BBI = DestBB->getFirstNonPHI();
634 InsertNewInstBefore(new StoreInst(MergedVal, SI.getOperand(1),
635 OtherStore->isVolatile(),
636 SI.getAlignment()), *BBI);
637
638 // Nuke the old stores.
639 EraseInstFromFunction(SI);
640 EraseInstFromFunction(*OtherStore);
641 return true;
642}