blob: dcc8b0f84e67a2606dfcc44d23f116b543906713 [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"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm/ADT/Statistic.h"
Dan Gohman826bdf82010-05-28 16:19:17 +000016#include "llvm/Analysis/Loads.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000017#include "llvm/IR/DataLayout.h"
18#include "llvm/IR/IntrinsicInst.h"
Chris Lattnera65e2f72010-01-05 05:57:49 +000019#include "llvm/Transforms/Utils/BasicBlockUtils.h"
20#include "llvm/Transforms/Utils/Local.h"
Chris Lattnera65e2f72010-01-05 05:57:49 +000021using namespace llvm;
22
Chandler Carruthc908ca12012-08-21 08:39:44 +000023STATISTIC(NumDeadStore, "Number of dead stores eliminated");
24STATISTIC(NumGlobalCopies, "Number of allocas copied from constant global");
25
26/// pointsToConstantGlobal - Return true if V (possibly indirectly) points to
27/// some part of a constant global variable. This intentionally only accepts
28/// constant expressions because we can't rewrite arbitrary instructions.
29static bool pointsToConstantGlobal(Value *V) {
30 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(V))
31 return GV->isConstant();
32 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V))
33 if (CE->getOpcode() == Instruction::BitCast ||
34 CE->getOpcode() == Instruction::GetElementPtr)
35 return pointsToConstantGlobal(CE->getOperand(0));
36 return false;
37}
38
39/// isOnlyCopiedFromConstantGlobal - Recursively walk the uses of a (derived)
40/// pointer to an alloca. Ignore any reads of the pointer, return false if we
41/// see any stores or other unknown uses. If we see pointer arithmetic, keep
42/// track of whether it moves the pointer (with IsOffset) but otherwise traverse
43/// the uses. If we see a memcpy/memmove that targets an unoffseted pointer to
44/// the alloca, and if the source pointer is a pointer to a constant global, we
45/// can optimize this.
46static bool
47isOnlyCopiedFromConstantGlobal(Value *V, MemTransferInst *&TheCopy,
48 SmallVectorImpl<Instruction *> &ToDelete,
49 bool IsOffset = false) {
50 // We track lifetime intrinsics as we encounter them. If we decide to go
51 // ahead and replace the value with the global, this lets the caller quickly
52 // eliminate the markers.
53
Chandler Carruthcdf47882014-03-09 03:16:01 +000054 for (Use &U : V->uses()) {
55 Instruction *I = cast<Instruction>(U.getUser());
Chandler Carruthc908ca12012-08-21 08:39:44 +000056
Chandler Carruthcdf47882014-03-09 03:16:01 +000057 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
Chandler Carruthc908ca12012-08-21 08:39:44 +000058 // Ignore non-volatile loads, they are always ok.
59 if (!LI->isSimple()) return false;
60 continue;
61 }
62
Chandler Carruthcdf47882014-03-09 03:16:01 +000063 if (BitCastInst *BCI = dyn_cast<BitCastInst>(I)) {
Chandler Carruthc908ca12012-08-21 08:39:44 +000064 // If uses of the bitcast are ok, we are ok.
65 if (!isOnlyCopiedFromConstantGlobal(BCI, TheCopy, ToDelete, IsOffset))
66 return false;
67 continue;
68 }
Chandler Carruthcdf47882014-03-09 03:16:01 +000069 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(I)) {
Chandler Carruthc908ca12012-08-21 08:39:44 +000070 // If the GEP has all zero indices, it doesn't offset the pointer. If it
71 // doesn't, it does.
Jim Grosbachbdbd7342013-04-05 21:20:12 +000072 if (!isOnlyCopiedFromConstantGlobal(
73 GEP, TheCopy, ToDelete, IsOffset || !GEP->hasAllZeroIndices()))
Chandler Carruthc908ca12012-08-21 08:39:44 +000074 return false;
75 continue;
76 }
77
Chandler Carruthcdf47882014-03-09 03:16:01 +000078 if (CallSite CS = I) {
Chandler Carruthc908ca12012-08-21 08:39:44 +000079 // If this is the function being called then we treat it like a load and
80 // ignore it.
Chandler Carruthcdf47882014-03-09 03:16:01 +000081 if (CS.isCallee(&U))
Chandler Carruthc908ca12012-08-21 08:39:44 +000082 continue;
83
Reid Kleckner26af2ca2014-01-28 02:38:36 +000084 // Inalloca arguments are clobbered by the call.
Chandler Carruthcdf47882014-03-09 03:16:01 +000085 unsigned ArgNo = CS.getArgumentNo(&U);
Reid Kleckner26af2ca2014-01-28 02:38:36 +000086 if (CS.isInAllocaArgument(ArgNo))
87 return false;
88
Chandler Carruthc908ca12012-08-21 08:39:44 +000089 // If this is a readonly/readnone call site, then we know it is just a
90 // load (but one that potentially returns the value itself), so we can
91 // ignore it if we know that the value isn't captured.
Chandler Carruthc908ca12012-08-21 08:39:44 +000092 if (CS.onlyReadsMemory() &&
93 (CS.getInstruction()->use_empty() || CS.doesNotCapture(ArgNo)))
94 continue;
95
96 // If this is being passed as a byval argument, the caller is making a
97 // copy, so it is only a read of the alloca.
98 if (CS.isByValArgument(ArgNo))
99 continue;
100 }
101
102 // Lifetime intrinsics can be handled by the caller.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000103 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
Chandler Carruthc908ca12012-08-21 08:39:44 +0000104 if (II->getIntrinsicID() == Intrinsic::lifetime_start ||
105 II->getIntrinsicID() == Intrinsic::lifetime_end) {
106 assert(II->use_empty() && "Lifetime markers have no result to use!");
107 ToDelete.push_back(II);
108 continue;
109 }
110 }
111
112 // If this is isn't our memcpy/memmove, reject it as something we can't
113 // handle.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000114 MemTransferInst *MI = dyn_cast<MemTransferInst>(I);
Chandler Carruthc908ca12012-08-21 08:39:44 +0000115 if (MI == 0)
116 return false;
117
118 // If the transfer is using the alloca as a source of the transfer, then
119 // ignore it since it is a load (unless the transfer is volatile).
Chandler Carruthcdf47882014-03-09 03:16:01 +0000120 if (U.getOperandNo() == 1) {
Chandler Carruthc908ca12012-08-21 08:39:44 +0000121 if (MI->isVolatile()) return false;
122 continue;
123 }
124
125 // If we already have seen a copy, reject the second one.
126 if (TheCopy) return false;
127
128 // If the pointer has been offset from the start of the alloca, we can't
129 // safely handle this.
130 if (IsOffset) return false;
131
132 // If the memintrinsic isn't using the alloca as the dest, reject it.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000133 if (U.getOperandNo() != 0) return false;
Chandler Carruthc908ca12012-08-21 08:39:44 +0000134
135 // If the source of the memcpy/move is not a constant global, reject it.
136 if (!pointsToConstantGlobal(MI->getSource()))
137 return false;
138
139 // Otherwise, the transform is safe. Remember the copy instruction.
140 TheCopy = MI;
141 }
142 return true;
143}
144
145/// isOnlyCopiedFromConstantGlobal - Return true if the specified alloca is only
146/// modified by a copy from a constant global. If we can prove this, we can
147/// replace any uses of the alloca with uses of the global directly.
148static MemTransferInst *
149isOnlyCopiedFromConstantGlobal(AllocaInst *AI,
150 SmallVectorImpl<Instruction *> &ToDelete) {
151 MemTransferInst *TheCopy = 0;
152 if (isOnlyCopiedFromConstantGlobal(AI, TheCopy, ToDelete))
153 return TheCopy;
154 return 0;
155}
156
Chris Lattnera65e2f72010-01-05 05:57:49 +0000157Instruction *InstCombiner::visitAllocaInst(AllocaInst &AI) {
Dan Gohmandf5d7dc2010-05-28 15:09:00 +0000158 // Ensure that the alloca array size argument has type intptr_t, so that
159 // any casting is exposed early.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000160 if (DL) {
161 Type *IntPtrTy = DL->getIntPtrType(AI.getType());
Dan Gohmandf5d7dc2010-05-28 15:09:00 +0000162 if (AI.getArraySize()->getType() != IntPtrTy) {
163 Value *V = Builder->CreateIntCast(AI.getArraySize(),
164 IntPtrTy, false);
165 AI.setOperand(0, V);
166 return &AI;
167 }
168 }
169
Chris Lattnera65e2f72010-01-05 05:57:49 +0000170 // Convert: alloca Ty, C - where C is a constant != 1 into: alloca [C x Ty], 1
171 if (AI.isArrayAllocation()) { // Check C != 1
172 if (const ConstantInt *C = dyn_cast<ConstantInt>(AI.getArraySize())) {
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000173 Type *NewTy =
Chris Lattnera65e2f72010-01-05 05:57:49 +0000174 ArrayType::get(AI.getAllocatedType(), C->getZExtValue());
Chris Lattnera65e2f72010-01-05 05:57:49 +0000175 AllocaInst *New = Builder->CreateAlloca(NewTy, 0, AI.getName());
176 New->setAlignment(AI.getAlignment());
177
178 // Scan to the end of the allocation instructions, to skip over a block of
179 // allocas if possible...also skip interleaved debug info
180 //
181 BasicBlock::iterator It = New;
182 while (isa<AllocaInst>(*It) || isa<DbgInfoIntrinsic>(*It)) ++It;
183
184 // Now that I is pointing to the first non-allocation-inst in the block,
185 // insert our getelementptr instruction...
186 //
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000187 Type *IdxTy = DL
188 ? DL->getIntPtrType(AI.getType())
Matt Arsenault9e3a6ca2013-08-14 00:24:38 +0000189 : Type::getInt64Ty(AI.getContext());
190 Value *NullIdx = Constant::getNullValue(IdxTy);
Matt Arsenault640ff9d2013-08-14 00:24:05 +0000191 Value *Idx[2] = { NullIdx, NullIdx };
Eli Friedman41e509a2011-05-18 23:58:37 +0000192 Instruction *GEP =
Matt Arsenault640ff9d2013-08-14 00:24:05 +0000193 GetElementPtrInst::CreateInBounds(New, Idx, New->getName() + ".sub");
Eli Friedman41e509a2011-05-18 23:58:37 +0000194 InsertNewInstBefore(GEP, *It);
Chris Lattnera65e2f72010-01-05 05:57:49 +0000195
196 // Now make everything use the getelementptr instead of the original
197 // allocation.
Eli Friedman41e509a2011-05-18 23:58:37 +0000198 return ReplaceInstUsesWith(AI, GEP);
Chris Lattnera65e2f72010-01-05 05:57:49 +0000199 } else if (isa<UndefValue>(AI.getArraySize())) {
200 return ReplaceInstUsesWith(AI, Constant::getNullValue(AI.getType()));
201 }
202 }
203
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000204 if (DL && AI.getAllocatedType()->isSized()) {
Chris Lattnera65e2f72010-01-05 05:57:49 +0000205 // If the alignment is 0 (unspecified), assign it the preferred alignment.
206 if (AI.getAlignment() == 0)
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000207 AI.setAlignment(DL->getPrefTypeAlignment(AI.getAllocatedType()));
Duncan Sands8bc764a2012-06-26 13:39:21 +0000208
209 // Move all alloca's of zero byte objects to the entry block and merge them
210 // together. Note that we only do this for alloca's, because malloc should
211 // allocate and return a unique pointer, even for a zero byte allocation.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000212 if (DL->getTypeAllocSize(AI.getAllocatedType()) == 0) {
Duncan Sands8bc764a2012-06-26 13:39:21 +0000213 // For a zero sized alloca there is no point in doing an array allocation.
214 // This is helpful if the array size is a complicated expression not used
215 // elsewhere.
216 if (AI.isArrayAllocation()) {
217 AI.setOperand(0, ConstantInt::get(AI.getArraySize()->getType(), 1));
218 return &AI;
219 }
220
221 // Get the first instruction in the entry block.
222 BasicBlock &EntryBlock = AI.getParent()->getParent()->getEntryBlock();
223 Instruction *FirstInst = EntryBlock.getFirstNonPHIOrDbg();
224 if (FirstInst != &AI) {
225 // If the entry block doesn't start with a zero-size alloca then move
226 // this one to the start of the entry block. There is no problem with
227 // dominance as the array size was forced to a constant earlier already.
228 AllocaInst *EntryAI = dyn_cast<AllocaInst>(FirstInst);
229 if (!EntryAI || !EntryAI->getAllocatedType()->isSized() ||
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000230 DL->getTypeAllocSize(EntryAI->getAllocatedType()) != 0) {
Duncan Sands8bc764a2012-06-26 13:39:21 +0000231 AI.moveBefore(FirstInst);
232 return &AI;
233 }
234
Richard Osborneb68053e2012-09-18 09:31:44 +0000235 // If the alignment of the entry block alloca is 0 (unspecified),
236 // assign it the preferred alignment.
237 if (EntryAI->getAlignment() == 0)
238 EntryAI->setAlignment(
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000239 DL->getPrefTypeAlignment(EntryAI->getAllocatedType()));
Duncan Sands8bc764a2012-06-26 13:39:21 +0000240 // Replace this zero-sized alloca with the one at the start of the entry
241 // block after ensuring that the address will be aligned enough for both
242 // types.
Richard Osborneb68053e2012-09-18 09:31:44 +0000243 unsigned MaxAlign = std::max(EntryAI->getAlignment(),
244 AI.getAlignment());
Duncan Sands8bc764a2012-06-26 13:39:21 +0000245 EntryAI->setAlignment(MaxAlign);
246 if (AI.getType() != EntryAI->getType())
247 return new BitCastInst(EntryAI, AI.getType());
248 return ReplaceInstUsesWith(AI, EntryAI);
249 }
250 }
Chris Lattnera65e2f72010-01-05 05:57:49 +0000251 }
252
Eli Friedmanb14873c2012-11-26 23:04:53 +0000253 if (AI.getAlignment()) {
Richard Osborne2fd29bf2012-09-24 17:10:03 +0000254 // Check to see if this allocation is only modified by a memcpy/memmove from
255 // a constant global whose alignment is equal to or exceeds that of the
256 // allocation. If this is the case, we can change all users to use
257 // the constant global instead. This is commonly produced by the CFE by
258 // constructs like "void foo() { int A[] = {1,2,3,4,5,6,7,8,9...}; }" if 'A'
259 // is only subsequently read.
260 SmallVector<Instruction *, 4> ToDelete;
261 if (MemTransferInst *Copy = isOnlyCopiedFromConstantGlobal(&AI, ToDelete)) {
Eli Friedmanb14873c2012-11-26 23:04:53 +0000262 unsigned SourceAlign = getOrEnforceKnownAlignment(Copy->getSource(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000263 AI.getAlignment(), DL);
Eli Friedmanb14873c2012-11-26 23:04:53 +0000264 if (AI.getAlignment() <= SourceAlign) {
Richard Osborne2fd29bf2012-09-24 17:10:03 +0000265 DEBUG(dbgs() << "Found alloca equal to global: " << AI << '\n');
266 DEBUG(dbgs() << " memcpy = " << *Copy << '\n');
267 for (unsigned i = 0, e = ToDelete.size(); i != e; ++i)
268 EraseInstFromFunction(*ToDelete[i]);
269 Constant *TheSrc = cast<Constant>(Copy->getSource());
Matt Arsenaultbbf18c62013-12-07 02:58:45 +0000270 Constant *Cast
271 = ConstantExpr::getPointerBitCastOrAddrSpaceCast(TheSrc, AI.getType());
272 Instruction *NewI = ReplaceInstUsesWith(AI, Cast);
Richard Osborne2fd29bf2012-09-24 17:10:03 +0000273 EraseInstFromFunction(*Copy);
274 ++NumGlobalCopies;
275 return NewI;
276 }
Chandler Carruthc908ca12012-08-21 08:39:44 +0000277 }
278 }
279
Nuno Lopes95cc4f32012-07-09 18:38:20 +0000280 // At last, use the generic allocation site handler to aggressively remove
281 // unused allocas.
282 return visitAllocSite(AI);
Chris Lattnera65e2f72010-01-05 05:57:49 +0000283}
284
285
286/// InstCombineLoadCast - Fold 'load (cast P)' -> cast (load P)' when possible.
287static Instruction *InstCombineLoadCast(InstCombiner &IC, LoadInst &LI,
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000288 const DataLayout *DL) {
Chris Lattnera65e2f72010-01-05 05:57:49 +0000289 User *CI = cast<User>(LI.getOperand(0));
290 Value *CastOp = CI->getOperand(0);
291
Chris Lattner229907c2011-07-18 04:54:35 +0000292 PointerType *DestTy = cast<PointerType>(CI->getType());
293 Type *DestPTy = DestTy->getElementType();
294 if (PointerType *SrcTy = dyn_cast<PointerType>(CastOp->getType())) {
Chris Lattnera65e2f72010-01-05 05:57:49 +0000295
296 // If the address spaces don't match, don't eliminate the cast.
297 if (DestTy->getAddressSpace() != SrcTy->getAddressSpace())
298 return 0;
299
Chris Lattner229907c2011-07-18 04:54:35 +0000300 Type *SrcPTy = SrcTy->getElementType();
Chris Lattnera65e2f72010-01-05 05:57:49 +0000301
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000302 if (DestPTy->isIntegerTy() || DestPTy->isPointerTy() ||
Duncan Sands19d0b472010-02-16 11:11:14 +0000303 DestPTy->isVectorTy()) {
Chris Lattnera65e2f72010-01-05 05:57:49 +0000304 // If the source is an array, the code below will not succeed. Check to
305 // see if a trivial 'gep P, 0, 0' will help matters. Only do this for
306 // constants.
Chris Lattner229907c2011-07-18 04:54:35 +0000307 if (ArrayType *ASrcTy = dyn_cast<ArrayType>(SrcPTy))
Chris Lattnera65e2f72010-01-05 05:57:49 +0000308 if (Constant *CSrc = dyn_cast<Constant>(CastOp))
309 if (ASrcTy->getNumElements() != 0) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000310 Type *IdxTy = DL
311 ? DL->getIntPtrType(SrcTy)
Matt Arsenault3dfe54e2013-09-03 21:05:48 +0000312 : Type::getInt64Ty(SrcTy->getContext());
Matt Arsenault9e3a6ca2013-08-14 00:24:38 +0000313 Value *Idx = Constant::getNullValue(IdxTy);
314 Value *Idxs[2] = { Idx, Idx };
Jay Foad71f19ac2011-07-22 07:54:01 +0000315 CastOp = ConstantExpr::getGetElementPtr(CSrc, Idxs);
Chris Lattnera65e2f72010-01-05 05:57:49 +0000316 SrcTy = cast<PointerType>(CastOp->getType());
317 SrcPTy = SrcTy->getElementType();
318 }
319
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000320 if (IC.getDataLayout() &&
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000321 (SrcPTy->isIntegerTy() || SrcPTy->isPointerTy() ||
Duncan Sands19d0b472010-02-16 11:11:14 +0000322 SrcPTy->isVectorTy()) &&
Chris Lattnera65e2f72010-01-05 05:57:49 +0000323 // Do not allow turning this into a load of an integer, which is then
324 // casted to a pointer, this pessimizes pointer analysis a lot.
Benjamin Kramer0b37cdf2013-09-19 20:59:04 +0000325 (SrcPTy->isPtrOrPtrVectorTy() ==
326 LI.getType()->isPtrOrPtrVectorTy()) &&
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000327 IC.getDataLayout()->getTypeSizeInBits(SrcPTy) ==
328 IC.getDataLayout()->getTypeSizeInBits(DestPTy)) {
Chris Lattnera65e2f72010-01-05 05:57:49 +0000329
330 // Okay, we are casting from one integer or pointer type to another of
331 // the same size. Instead of casting the pointer before the load, cast
332 // the result of the loaded value.
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000333 LoadInst *NewLoad =
Chris Lattnera65e2f72010-01-05 05:57:49 +0000334 IC.Builder->CreateLoad(CastOp, LI.isVolatile(), CI->getName());
Bob Wilson4b71b6c2010-01-30 00:41:10 +0000335 NewLoad->setAlignment(LI.getAlignment());
Eli Friedman8bc586e2011-08-15 22:09:40 +0000336 NewLoad->setAtomic(LI.getOrdering(), LI.getSynchScope());
Chris Lattnera65e2f72010-01-05 05:57:49 +0000337 // Now cast the result of the load.
Owen Anderson9b8f9c32014-03-13 22:51:43 +0000338 PointerType *OldTy = dyn_cast<PointerType>(NewLoad->getType());
339 PointerType *NewTy = dyn_cast<PointerType>(LI.getType());
340 if (OldTy && NewTy &&
341 OldTy->getAddressSpace() != NewTy->getAddressSpace()) {
342 return new AddrSpaceCastInst(NewLoad, LI.getType());
343 }
344
Chris Lattnera65e2f72010-01-05 05:57:49 +0000345 return new BitCastInst(NewLoad, LI.getType());
346 }
347 }
348 }
349 return 0;
350}
351
352Instruction *InstCombiner::visitLoadInst(LoadInst &LI) {
353 Value *Op = LI.getOperand(0);
354
355 // Attempt to improve the alignment.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000356 if (DL) {
Chris Lattnera65e2f72010-01-05 05:57:49 +0000357 unsigned KnownAlign =
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000358 getOrEnforceKnownAlignment(Op, DL->getPrefTypeAlignment(LI.getType()),DL);
Dan Gohman36196602010-08-03 18:20:32 +0000359 unsigned LoadAlign = LI.getAlignment();
360 unsigned EffectiveLoadAlign = LoadAlign != 0 ? LoadAlign :
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000361 DL->getABITypeAlignment(LI.getType());
Dan Gohman36196602010-08-03 18:20:32 +0000362
363 if (KnownAlign > EffectiveLoadAlign)
Chris Lattnera65e2f72010-01-05 05:57:49 +0000364 LI.setAlignment(KnownAlign);
Dan Gohman36196602010-08-03 18:20:32 +0000365 else if (LoadAlign == 0)
366 LI.setAlignment(EffectiveLoadAlign);
Chris Lattnera65e2f72010-01-05 05:57:49 +0000367 }
368
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +0000369 // load (cast X) --> cast (load X) iff safe.
Chris Lattnera65e2f72010-01-05 05:57:49 +0000370 if (isa<CastInst>(Op))
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000371 if (Instruction *Res = InstCombineLoadCast(*this, LI, DL))
Chris Lattnera65e2f72010-01-05 05:57:49 +0000372 return Res;
373
Eli Friedman8bc586e2011-08-15 22:09:40 +0000374 // None of the following transforms are legal for volatile/atomic loads.
375 // FIXME: Some of it is okay for atomic loads; needs refactoring.
376 if (!LI.isSimple()) return 0;
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000377
Chris Lattnera65e2f72010-01-05 05:57:49 +0000378 // Do really simple store-to-load forwarding and load CSE, to catch cases
Duncan Sands75b5d272011-02-15 09:23:02 +0000379 // where there are several consecutive memory accesses to the same location,
Chris Lattnera65e2f72010-01-05 05:57:49 +0000380 // separated by a few arithmetic operations.
381 BasicBlock::iterator BBI = &LI;
382 if (Value *AvailableVal = FindAvailableLoadedValue(Op, LI.getParent(), BBI,6))
383 return ReplaceInstUsesWith(LI, AvailableVal);
384
385 // load(gep null, ...) -> unreachable
386 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(Op)) {
387 const Value *GEPI0 = GEPI->getOperand(0);
388 // TODO: Consider a target hook for valid address spaces for this xform.
389 if (isa<ConstantPointerNull>(GEPI0) && GEPI->getPointerAddressSpace() == 0){
390 // Insert a new store to null instruction before the load to indicate
391 // that this code is not reachable. We do this instead of inserting
392 // an unreachable instruction directly because we cannot modify the
393 // CFG.
394 new StoreInst(UndefValue::get(LI.getType()),
395 Constant::getNullValue(Op->getType()), &LI);
396 return ReplaceInstUsesWith(LI, UndefValue::get(LI.getType()));
397 }
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000398 }
Chris Lattnera65e2f72010-01-05 05:57:49 +0000399
400 // load null/undef -> unreachable
401 // TODO: Consider a target hook for valid address spaces for this xform.
402 if (isa<UndefValue>(Op) ||
403 (isa<ConstantPointerNull>(Op) && LI.getPointerAddressSpace() == 0)) {
404 // Insert a new store to null instruction before the load to indicate that
405 // this code is not reachable. We do this instead of inserting an
406 // unreachable instruction directly because we cannot modify the CFG.
407 new StoreInst(UndefValue::get(LI.getType()),
408 Constant::getNullValue(Op->getType()), &LI);
409 return ReplaceInstUsesWith(LI, UndefValue::get(LI.getType()));
410 }
411
412 // Instcombine load (constantexpr_cast global) -> cast (load global)
413 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Op))
414 if (CE->isCast())
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000415 if (Instruction *Res = InstCombineLoadCast(*this, LI, DL))
Chris Lattnera65e2f72010-01-05 05:57:49 +0000416 return Res;
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000417
Chris Lattnera65e2f72010-01-05 05:57:49 +0000418 if (Op->hasOneUse()) {
419 // Change select and PHI nodes to select values instead of addresses: this
420 // helps alias analysis out a lot, allows many others simplifications, and
421 // exposes redundancy in the code.
422 //
423 // Note that we cannot do the transformation unless we know that the
424 // introduced loads cannot trap! Something like this is valid as long as
425 // the condition is always false: load (select bool %C, int* null, int* %G),
426 // but it would not be valid if we transformed it to load from null
427 // unconditionally.
428 //
429 if (SelectInst *SI = dyn_cast<SelectInst>(Op)) {
430 // load (select (Cond, &V1, &V2)) --> select(Cond, load &V1, load &V2).
Bob Wilson56600a12010-01-30 04:42:39 +0000431 unsigned Align = LI.getAlignment();
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000432 if (isSafeToLoadUnconditionally(SI->getOperand(1), SI, Align, DL) &&
433 isSafeToLoadUnconditionally(SI->getOperand(2), SI, Align, DL)) {
Bob Wilson4b71b6c2010-01-30 00:41:10 +0000434 LoadInst *V1 = Builder->CreateLoad(SI->getOperand(1),
Bob Wilson56600a12010-01-30 04:42:39 +0000435 SI->getOperand(1)->getName()+".val");
Bob Wilson4b71b6c2010-01-30 00:41:10 +0000436 LoadInst *V2 = Builder->CreateLoad(SI->getOperand(2),
Bob Wilson56600a12010-01-30 04:42:39 +0000437 SI->getOperand(2)->getName()+".val");
438 V1->setAlignment(Align);
439 V2->setAlignment(Align);
Chris Lattnera65e2f72010-01-05 05:57:49 +0000440 return SelectInst::Create(SI->getCondition(), V1, V2);
441 }
442
443 // load (select (cond, null, P)) -> load P
444 if (Constant *C = dyn_cast<Constant>(SI->getOperand(1)))
445 if (C->isNullValue()) {
446 LI.setOperand(0, SI->getOperand(2));
447 return &LI;
448 }
449
450 // load (select (cond, P, null)) -> load P
451 if (Constant *C = dyn_cast<Constant>(SI->getOperand(2)))
452 if (C->isNullValue()) {
453 LI.setOperand(0, SI->getOperand(1));
454 return &LI;
455 }
456 }
457 }
458 return 0;
459}
460
461/// InstCombineStoreToCast - Fold store V, (cast P) -> store (cast V), P
462/// when possible. This makes it generally easy to do alias analysis and/or
463/// SROA/mem2reg of the memory object.
464static Instruction *InstCombineStoreToCast(InstCombiner &IC, StoreInst &SI) {
465 User *CI = cast<User>(SI.getOperand(1));
466 Value *CastOp = CI->getOperand(0);
467
Chris Lattner229907c2011-07-18 04:54:35 +0000468 Type *DestPTy = cast<PointerType>(CI->getType())->getElementType();
469 PointerType *SrcTy = dyn_cast<PointerType>(CastOp->getType());
Chris Lattnera65e2f72010-01-05 05:57:49 +0000470 if (SrcTy == 0) return 0;
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000471
Chris Lattner229907c2011-07-18 04:54:35 +0000472 Type *SrcPTy = SrcTy->getElementType();
Chris Lattnera65e2f72010-01-05 05:57:49 +0000473
Duncan Sands19d0b472010-02-16 11:11:14 +0000474 if (!DestPTy->isIntegerTy() && !DestPTy->isPointerTy())
Chris Lattnera65e2f72010-01-05 05:57:49 +0000475 return 0;
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000476
Chris Lattnera65e2f72010-01-05 05:57:49 +0000477 /// NewGEPIndices - If SrcPTy is an aggregate type, we can emit a "noop gep"
478 /// to its first element. This allows us to handle things like:
479 /// store i32 xxx, (bitcast {foo*, float}* %P to i32*)
480 /// on 32-bit hosts.
481 SmallVector<Value*, 4> NewGEPIndices;
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000482
Chris Lattnera65e2f72010-01-05 05:57:49 +0000483 // If the source is an array, the code below will not succeed. Check to
484 // see if a trivial 'gep P, 0, 0' will help matters. Only do this for
485 // constants.
Duncan Sands19d0b472010-02-16 11:11:14 +0000486 if (SrcPTy->isArrayTy() || SrcPTy->isStructTy()) {
Chris Lattnera65e2f72010-01-05 05:57:49 +0000487 // Index through pointer.
488 Constant *Zero = Constant::getNullValue(Type::getInt32Ty(SI.getContext()));
489 NewGEPIndices.push_back(Zero);
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000490
Chris Lattnera65e2f72010-01-05 05:57:49 +0000491 while (1) {
Chris Lattner229907c2011-07-18 04:54:35 +0000492 if (StructType *STy = dyn_cast<StructType>(SrcPTy)) {
Chris Lattnera65e2f72010-01-05 05:57:49 +0000493 if (!STy->getNumElements()) /* Struct can be empty {} */
494 break;
495 NewGEPIndices.push_back(Zero);
496 SrcPTy = STy->getElementType(0);
Chris Lattner229907c2011-07-18 04:54:35 +0000497 } else if (ArrayType *ATy = dyn_cast<ArrayType>(SrcPTy)) {
Chris Lattnera65e2f72010-01-05 05:57:49 +0000498 NewGEPIndices.push_back(Zero);
499 SrcPTy = ATy->getElementType();
500 } else {
501 break;
502 }
503 }
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000504
Chris Lattnera65e2f72010-01-05 05:57:49 +0000505 SrcTy = PointerType::get(SrcPTy, SrcTy->getAddressSpace());
506 }
507
Duncan Sands19d0b472010-02-16 11:11:14 +0000508 if (!SrcPTy->isIntegerTy() && !SrcPTy->isPointerTy())
Chris Lattnera65e2f72010-01-05 05:57:49 +0000509 return 0;
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000510
Richard Osborne0af4aa92014-03-25 17:21:41 +0000511 // If the pointers point into different address spaces don't do the
512 // transformation.
513 if (SrcTy->getAddressSpace() !=
514 cast<PointerType>(CI->getType())->getAddressSpace())
515 return 0;
516
517 // If the pointers point to values of different sizes don't do the
518 // transformation.
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000519 if (!IC.getDataLayout() ||
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000520 IC.getDataLayout()->getTypeSizeInBits(SrcPTy) !=
521 IC.getDataLayout()->getTypeSizeInBits(DestPTy))
Chris Lattnera65e2f72010-01-05 05:57:49 +0000522 return 0;
523
Richard Osborne0af4aa92014-03-25 17:21:41 +0000524 // If the pointers point to pointers to different address spaces don't do the
525 // transformation. It is not safe to introduce an addrspacecast instruction in
526 // this case since, depending on the target, addrspacecast may not be a no-op
527 // cast.
528 if (SrcPTy->isPointerTy() && DestPTy->isPointerTy() &&
529 SrcPTy->getPointerAddressSpace() != DestPTy->getPointerAddressSpace())
530 return 0;
531
Chris Lattnera65e2f72010-01-05 05:57:49 +0000532 // Okay, we are casting from one integer or pointer type to another of
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000533 // the same size. Instead of casting the pointer before
Chris Lattnera65e2f72010-01-05 05:57:49 +0000534 // the store, cast the value to be stored.
535 Value *NewCast;
Chris Lattnera65e2f72010-01-05 05:57:49 +0000536 Instruction::CastOps opcode = Instruction::BitCast;
Richard Osborne9805ec42014-03-25 17:21:35 +0000537 Type* CastSrcTy = DestPTy;
Chris Lattner229907c2011-07-18 04:54:35 +0000538 Type* CastDstTy = SrcPTy;
Duncan Sands19d0b472010-02-16 11:11:14 +0000539 if (CastDstTy->isPointerTy()) {
Duncan Sands9dff9be2010-02-15 16:12:20 +0000540 if (CastSrcTy->isIntegerTy())
Chris Lattnera65e2f72010-01-05 05:57:49 +0000541 opcode = Instruction::IntToPtr;
Duncan Sands19d0b472010-02-16 11:11:14 +0000542 } else if (CastDstTy->isIntegerTy()) {
Richard Osborne9805ec42014-03-25 17:21:35 +0000543 if (CastSrcTy->isPointerTy())
Chris Lattnera65e2f72010-01-05 05:57:49 +0000544 opcode = Instruction::PtrToInt;
545 }
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000546
Chris Lattnera65e2f72010-01-05 05:57:49 +0000547 // SIOp0 is a pointer to aggregate and this is a store to the first field,
548 // emit a GEP to index into its first field.
549 if (!NewGEPIndices.empty())
Jay Foad040dd822011-07-22 08:16:57 +0000550 CastOp = IC.Builder->CreateInBoundsGEP(CastOp, NewGEPIndices);
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000551
Richard Osborne9805ec42014-03-25 17:21:35 +0000552 Value *SIOp0 = SI.getOperand(0);
Chris Lattnera65e2f72010-01-05 05:57:49 +0000553 NewCast = IC.Builder->CreateCast(opcode, SIOp0, CastDstTy,
554 SIOp0->getName()+".c");
Dan Gohman2e20dfb2010-10-25 16:16:27 +0000555 SI.setOperand(0, NewCast);
556 SI.setOperand(1, CastOp);
557 return &SI;
Chris Lattnera65e2f72010-01-05 05:57:49 +0000558}
559
560/// equivalentAddressValues - Test if A and B will obviously have the same
561/// value. This includes recognizing that %t0 and %t1 will have the same
562/// value in code like this:
563/// %t0 = getelementptr \@a, 0, 3
564/// store i32 0, i32* %t0
565/// %t1 = getelementptr \@a, 0, 3
566/// %t2 = load i32* %t1
567///
568static bool equivalentAddressValues(Value *A, Value *B) {
569 // Test if the values are trivially equivalent.
570 if (A == B) return true;
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000571
Chris Lattnera65e2f72010-01-05 05:57:49 +0000572 // Test if the values come form identical arithmetic instructions.
573 // This uses isIdenticalToWhenDefined instead of isIdenticalTo because
574 // its only used to compare two uses within the same basic block, which
575 // means that they'll always either have the same value or one of them
576 // will have an undefined value.
577 if (isa<BinaryOperator>(A) ||
578 isa<CastInst>(A) ||
579 isa<PHINode>(A) ||
580 isa<GetElementPtrInst>(A))
581 if (Instruction *BI = dyn_cast<Instruction>(B))
582 if (cast<Instruction>(A)->isIdenticalToWhenDefined(BI))
583 return true;
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000584
Chris Lattnera65e2f72010-01-05 05:57:49 +0000585 // Otherwise they may not be equivalent.
586 return false;
587}
588
Chris Lattnera65e2f72010-01-05 05:57:49 +0000589Instruction *InstCombiner::visitStoreInst(StoreInst &SI) {
590 Value *Val = SI.getOperand(0);
591 Value *Ptr = SI.getOperand(1);
592
Chris Lattnera65e2f72010-01-05 05:57:49 +0000593 // Attempt to improve the alignment.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000594 if (DL) {
Chris Lattnera65e2f72010-01-05 05:57:49 +0000595 unsigned KnownAlign =
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000596 getOrEnforceKnownAlignment(Ptr, DL->getPrefTypeAlignment(Val->getType()),
597 DL);
Dan Gohman36196602010-08-03 18:20:32 +0000598 unsigned StoreAlign = SI.getAlignment();
599 unsigned EffectiveStoreAlign = StoreAlign != 0 ? StoreAlign :
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000600 DL->getABITypeAlignment(Val->getType());
Dan Gohman36196602010-08-03 18:20:32 +0000601
Bill Wendling55b6b2b2012-03-16 18:20:54 +0000602 if (KnownAlign > EffectiveStoreAlign)
Chris Lattnera65e2f72010-01-05 05:57:49 +0000603 SI.setAlignment(KnownAlign);
Bill Wendling55b6b2b2012-03-16 18:20:54 +0000604 else if (StoreAlign == 0)
605 SI.setAlignment(EffectiveStoreAlign);
Chris Lattnera65e2f72010-01-05 05:57:49 +0000606 }
607
Eli Friedman8bc586e2011-08-15 22:09:40 +0000608 // Don't hack volatile/atomic stores.
609 // FIXME: Some bits are legal for atomic stores; needs refactoring.
610 if (!SI.isSimple()) return 0;
611
612 // If the RHS is an alloca with a single use, zapify the store, making the
613 // alloca dead.
614 if (Ptr->hasOneUse()) {
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000615 if (isa<AllocaInst>(Ptr))
Eli Friedman8bc586e2011-08-15 22:09:40 +0000616 return EraseInstFromFunction(SI);
617 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Ptr)) {
618 if (isa<AllocaInst>(GEP->getOperand(0))) {
619 if (GEP->getOperand(0)->hasOneUse())
620 return EraseInstFromFunction(SI);
621 }
622 }
623 }
624
Chris Lattnera65e2f72010-01-05 05:57:49 +0000625 // Do really simple DSE, to catch cases where there are several consecutive
626 // stores to the same location, separated by a few arithmetic operations. This
627 // situation often occurs with bitfield accesses.
628 BasicBlock::iterator BBI = &SI;
629 for (unsigned ScanInsts = 6; BBI != SI.getParent()->begin() && ScanInsts;
630 --ScanInsts) {
631 --BBI;
Victor Hernandez5f8c8c02010-01-22 19:05:05 +0000632 // Don't count debug info directives, lest they affect codegen,
633 // and we skip pointer-to-pointer bitcasts, which are NOPs.
634 if (isa<DbgInfoIntrinsic>(BBI) ||
Duncan Sands19d0b472010-02-16 11:11:14 +0000635 (isa<BitCastInst>(BBI) && BBI->getType()->isPointerTy())) {
Chris Lattnera65e2f72010-01-05 05:57:49 +0000636 ScanInsts++;
637 continue;
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000638 }
639
Chris Lattnera65e2f72010-01-05 05:57:49 +0000640 if (StoreInst *PrevSI = dyn_cast<StoreInst>(BBI)) {
641 // Prev store isn't volatile, and stores to the same location?
Eli Friedman8bc586e2011-08-15 22:09:40 +0000642 if (PrevSI->isSimple() && equivalentAddressValues(PrevSI->getOperand(1),
643 SI.getOperand(1))) {
Chris Lattnera65e2f72010-01-05 05:57:49 +0000644 ++NumDeadStore;
645 ++BBI;
646 EraseInstFromFunction(*PrevSI);
647 continue;
648 }
649 break;
650 }
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000651
Chris Lattnera65e2f72010-01-05 05:57:49 +0000652 // If this is a load, we have to stop. However, if the loaded value is from
653 // the pointer we're loading and is producing the pointer we're storing,
654 // then *this* store is dead (X = load P; store X -> P).
655 if (LoadInst *LI = dyn_cast<LoadInst>(BBI)) {
Jin-Gu Kangb452db02011-03-14 01:21:00 +0000656 if (LI == Val && equivalentAddressValues(LI->getOperand(0), Ptr) &&
Eli Friedman8bc586e2011-08-15 22:09:40 +0000657 LI->isSimple())
Jin-Gu Kangb452db02011-03-14 01:21:00 +0000658 return EraseInstFromFunction(SI);
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000659
Chris Lattnera65e2f72010-01-05 05:57:49 +0000660 // Otherwise, this is a load from some other location. Stores before it
661 // may not be dead.
662 break;
663 }
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000664
Chris Lattnera65e2f72010-01-05 05:57:49 +0000665 // Don't skip over loads or things that can modify memory.
666 if (BBI->mayWriteToMemory() || BBI->mayReadFromMemory())
667 break;
668 }
Chris Lattnera65e2f72010-01-05 05:57:49 +0000669
670 // store X, null -> turns into 'unreachable' in SimplifyCFG
671 if (isa<ConstantPointerNull>(Ptr) && SI.getPointerAddressSpace() == 0) {
672 if (!isa<UndefValue>(Val)) {
673 SI.setOperand(0, UndefValue::get(Val->getType()));
674 if (Instruction *U = dyn_cast<Instruction>(Val))
675 Worklist.Add(U); // Dropped a use.
676 }
677 return 0; // Do not modify these!
678 }
679
680 // store undef, Ptr -> noop
681 if (isa<UndefValue>(Val))
682 return EraseInstFromFunction(SI);
683
684 // If the pointer destination is a cast, see if we can fold the cast into the
685 // source instead.
686 if (isa<CastInst>(Ptr))
687 if (Instruction *Res = InstCombineStoreToCast(*this, SI))
688 return Res;
689 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ptr))
690 if (CE->isCast())
691 if (Instruction *Res = InstCombineStoreToCast(*this, SI))
692 return Res;
693
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000694
Chris Lattnera65e2f72010-01-05 05:57:49 +0000695 // If this store is the last instruction in the basic block (possibly
Victor Hernandez5f5abd52010-01-21 23:07:15 +0000696 // excepting debug info instructions), and if the block ends with an
697 // unconditional branch, try to move it to the successor block.
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000698 BBI = &SI;
Chris Lattnera65e2f72010-01-05 05:57:49 +0000699 do {
700 ++BBI;
Victor Hernandez5f8c8c02010-01-22 19:05:05 +0000701 } while (isa<DbgInfoIntrinsic>(BBI) ||
Duncan Sands19d0b472010-02-16 11:11:14 +0000702 (isa<BitCastInst>(BBI) && BBI->getType()->isPointerTy()));
Chris Lattnera65e2f72010-01-05 05:57:49 +0000703 if (BranchInst *BI = dyn_cast<BranchInst>(BBI))
704 if (BI->isUnconditional())
705 if (SimplifyStoreAtEndOfBlock(SI))
706 return 0; // xform done!
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000707
Chris Lattnera65e2f72010-01-05 05:57:49 +0000708 return 0;
709}
710
711/// SimplifyStoreAtEndOfBlock - Turn things like:
712/// if () { *P = v1; } else { *P = v2 }
713/// into a phi node with a store in the successor.
714///
715/// Simplify things like:
716/// *P = v1; if () { *P = v2; }
717/// into a phi node with a store in the successor.
718///
719bool InstCombiner::SimplifyStoreAtEndOfBlock(StoreInst &SI) {
720 BasicBlock *StoreBB = SI.getParent();
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000721
Chris Lattnera65e2f72010-01-05 05:57:49 +0000722 // Check to see if the successor block has exactly two incoming edges. If
723 // so, see if the other predecessor contains a store to the same location.
724 // if so, insert a PHI node (if needed) and move the stores down.
725 BasicBlock *DestBB = StoreBB->getTerminator()->getSuccessor(0);
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000726
Chris Lattnera65e2f72010-01-05 05:57:49 +0000727 // Determine whether Dest has exactly two predecessors and, if so, compute
728 // the other predecessor.
729 pred_iterator PI = pred_begin(DestBB);
Gabor Greif1b787df2010-07-12 15:48:26 +0000730 BasicBlock *P = *PI;
Chris Lattnera65e2f72010-01-05 05:57:49 +0000731 BasicBlock *OtherBB = 0;
Gabor Greif1b787df2010-07-12 15:48:26 +0000732
733 if (P != StoreBB)
734 OtherBB = P;
735
736 if (++PI == pred_end(DestBB))
Chris Lattnera65e2f72010-01-05 05:57:49 +0000737 return false;
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000738
Gabor Greif1b787df2010-07-12 15:48:26 +0000739 P = *PI;
740 if (P != StoreBB) {
Chris Lattnera65e2f72010-01-05 05:57:49 +0000741 if (OtherBB)
742 return false;
Gabor Greif1b787df2010-07-12 15:48:26 +0000743 OtherBB = P;
Chris Lattnera65e2f72010-01-05 05:57:49 +0000744 }
745 if (++PI != pred_end(DestBB))
746 return false;
747
748 // Bail out if all the relevant blocks aren't distinct (this can happen,
749 // for example, if SI is in an infinite loop)
750 if (StoreBB == DestBB || OtherBB == DestBB)
751 return false;
752
753 // Verify that the other block ends in a branch and is not otherwise empty.
754 BasicBlock::iterator BBI = OtherBB->getTerminator();
755 BranchInst *OtherBr = dyn_cast<BranchInst>(BBI);
756 if (!OtherBr || BBI == OtherBB->begin())
757 return false;
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000758
Chris Lattnera65e2f72010-01-05 05:57:49 +0000759 // If the other block ends in an unconditional branch, check for the 'if then
760 // else' case. there is an instruction before the branch.
761 StoreInst *OtherStore = 0;
762 if (OtherBr->isUnconditional()) {
763 --BBI;
764 // Skip over debugging info.
Victor Hernandez5f8c8c02010-01-22 19:05:05 +0000765 while (isa<DbgInfoIntrinsic>(BBI) ||
Duncan Sands19d0b472010-02-16 11:11:14 +0000766 (isa<BitCastInst>(BBI) && BBI->getType()->isPointerTy())) {
Chris Lattnera65e2f72010-01-05 05:57:49 +0000767 if (BBI==OtherBB->begin())
768 return false;
769 --BBI;
770 }
Eli Friedman8bc586e2011-08-15 22:09:40 +0000771 // If this isn't a store, isn't a store to the same location, or is not the
772 // right kind of store, bail out.
Chris Lattnera65e2f72010-01-05 05:57:49 +0000773 OtherStore = dyn_cast<StoreInst>(BBI);
774 if (!OtherStore || OtherStore->getOperand(1) != SI.getOperand(1) ||
Eli Friedman8bc586e2011-08-15 22:09:40 +0000775 !SI.isSameOperationAs(OtherStore))
Chris Lattnera65e2f72010-01-05 05:57:49 +0000776 return false;
777 } else {
778 // Otherwise, the other block ended with a conditional branch. If one of the
779 // destinations is StoreBB, then we have the if/then case.
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000780 if (OtherBr->getSuccessor(0) != StoreBB &&
Chris Lattnera65e2f72010-01-05 05:57:49 +0000781 OtherBr->getSuccessor(1) != StoreBB)
782 return false;
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000783
Chris Lattnera65e2f72010-01-05 05:57:49 +0000784 // Okay, we know that OtherBr now goes to Dest and StoreBB, so this is an
785 // if/then triangle. See if there is a store to the same ptr as SI that
786 // lives in OtherBB.
787 for (;; --BBI) {
788 // Check to see if we find the matching store.
789 if ((OtherStore = dyn_cast<StoreInst>(BBI))) {
790 if (OtherStore->getOperand(1) != SI.getOperand(1) ||
Eli Friedman8bc586e2011-08-15 22:09:40 +0000791 !SI.isSameOperationAs(OtherStore))
Chris Lattnera65e2f72010-01-05 05:57:49 +0000792 return false;
793 break;
794 }
795 // If we find something that may be using or overwriting the stored
796 // value, or if we run out of instructions, we can't do the xform.
797 if (BBI->mayReadFromMemory() || BBI->mayWriteToMemory() ||
798 BBI == OtherBB->begin())
799 return false;
800 }
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000801
Chris Lattnera65e2f72010-01-05 05:57:49 +0000802 // In order to eliminate the store in OtherBr, we have to
803 // make sure nothing reads or overwrites the stored value in
804 // StoreBB.
805 for (BasicBlock::iterator I = StoreBB->begin(); &*I != &SI; ++I) {
806 // FIXME: This should really be AA driven.
807 if (I->mayReadFromMemory() || I->mayWriteToMemory())
808 return false;
809 }
810 }
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000811
Chris Lattnera65e2f72010-01-05 05:57:49 +0000812 // Insert a PHI node now if we need it.
813 Value *MergedVal = OtherStore->getOperand(0);
814 if (MergedVal != SI.getOperand(0)) {
Jay Foad52131342011-03-30 11:28:46 +0000815 PHINode *PN = PHINode::Create(MergedVal->getType(), 2, "storemerge");
Chris Lattnera65e2f72010-01-05 05:57:49 +0000816 PN->addIncoming(SI.getOperand(0), SI.getParent());
817 PN->addIncoming(OtherStore->getOperand(0), OtherBB);
818 MergedVal = InsertNewInstBefore(PN, DestBB->front());
819 }
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000820
Chris Lattnera65e2f72010-01-05 05:57:49 +0000821 // Advance to a place where it is safe to insert the new store and
822 // insert it.
Bill Wendling8ddfc092011-08-16 20:45:24 +0000823 BBI = DestBB->getFirstInsertionPt();
Eli Friedman35211c62011-05-27 00:19:40 +0000824 StoreInst *NewSI = new StoreInst(MergedVal, SI.getOperand(1),
Eli Friedman8bc586e2011-08-15 22:09:40 +0000825 SI.isVolatile(),
826 SI.getAlignment(),
827 SI.getOrdering(),
828 SI.getSynchScope());
Eli Friedman35211c62011-05-27 00:19:40 +0000829 InsertNewInstBefore(NewSI, *BBI);
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000830 NewSI->setDebugLoc(OtherStore->getDebugLoc());
Eli Friedman35211c62011-05-27 00:19:40 +0000831
Chris Lattnereeefe1b2012-12-31 08:10:58 +0000832 // If the two stores had the same TBAA tag, preserve it.
Chris Lattner473988c2013-01-05 16:44:07 +0000833 if (MDNode *TBAATag = SI.getMetadata(LLVMContext::MD_tbaa))
834 if ((TBAATag = MDNode::getMostGenericTBAA(TBAATag,
835 OtherStore->getMetadata(LLVMContext::MD_tbaa))))
836 NewSI->setMetadata(LLVMContext::MD_tbaa, TBAATag);
Chris Lattnereeefe1b2012-12-31 08:10:58 +0000837
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000838
Chris Lattnera65e2f72010-01-05 05:57:49 +0000839 // Nuke the old stores.
840 EraseInstFromFunction(SI);
841 EraseInstFromFunction(*OtherStore);
842 return true;
843}