blob: dc55848d35f10e1f7fc2d80e8fbd46cafdf247ac [file] [log] [blame]
Chris Lattnere6bb6492010-12-26 19:39:38 +00001//===-- LoopIdiomRecognize.cpp - Loop idiom recognition -------------------===//
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 pass implements an idiom recognizer that transforms simple loops into a
11// non-loop form. In cases that this kicks in, it can be a significant
12// performance win.
13//
14//===----------------------------------------------------------------------===//
Chris Lattnerbdce5722011-01-02 18:32:09 +000015//
16// TODO List:
17//
18// Future loop memory idioms to recognize:
19// memcmp, memmove, strlen, etc.
20// Future floating point idioms to recognize in -ffast-math mode:
21// fpowi
22// Future integer operation idioms to recognize:
23// ctpop, ctlz, cttz
24//
25// Beware that isel's default lowering for ctpop is highly inefficient for
26// i64 and larger types when i64 is legal and the value has few bits set. It
27// would be good to enhance isel to emit a loop for ctpop in this case.
28//
29// We should enhance the memset/memcpy recognition to handle multiple stores in
30// the loop. This would handle things like:
31// void foo(_Complex float *P)
32// for (i) { __real__(*P) = 0; __imag__(*P) = 0; }
33// this is also "Example 2" from http://blog.regehr.org/archives/320
Chris Lattner91139cc2011-01-02 23:19:45 +000034//
Chris Lattnerd957c712011-01-03 01:10:08 +000035// This could recognize common matrix multiplies and dot product idioms and
Chris Lattner91139cc2011-01-02 23:19:45 +000036// replace them with calls to BLAS (if linked in??).
37//
Chris Lattnerbdce5722011-01-02 18:32:09 +000038//===----------------------------------------------------------------------===//
Chris Lattnere6bb6492010-12-26 19:39:38 +000039
40#define DEBUG_TYPE "loop-idiom"
41#include "llvm/Transforms/Scalar.h"
Chris Lattner2e12f1a2010-12-27 18:39:08 +000042#include "llvm/Analysis/AliasAnalysis.h"
Chris Lattnere6bb6492010-12-26 19:39:38 +000043#include "llvm/Analysis/LoopPass.h"
44#include "llvm/Analysis/ScalarEvolutionExpressions.h"
Chris Lattnera92ff912010-12-26 23:42:51 +000045#include "llvm/Analysis/ScalarEvolutionExpander.h"
Chris Lattner22920b52010-12-26 20:45:45 +000046#include "llvm/Analysis/ValueTracking.h"
47#include "llvm/Target/TargetData.h"
Chris Lattner9f391882010-12-27 00:03:23 +000048#include "llvm/Transforms/Utils/Local.h"
Chris Lattnere6bb6492010-12-26 19:39:38 +000049#include "llvm/Support/Debug.h"
Chris Lattnera92ff912010-12-26 23:42:51 +000050#include "llvm/Support/IRBuilder.h"
Chris Lattnere6bb6492010-12-26 19:39:38 +000051#include "llvm/Support/raw_ostream.h"
Chris Lattner4ce31fb2011-01-02 07:36:44 +000052#include "llvm/ADT/Statistic.h"
Chris Lattnere6bb6492010-12-26 19:39:38 +000053using namespace llvm;
54
Chris Lattner4ce31fb2011-01-02 07:36:44 +000055STATISTIC(NumMemSet, "Number of memset's formed from loop stores");
56STATISTIC(NumMemCpy, "Number of memcpy's formed from loop load+stores");
Chris Lattnere6bb6492010-12-26 19:39:38 +000057
58namespace {
59 class LoopIdiomRecognize : public LoopPass {
Chris Lattner22920b52010-12-26 20:45:45 +000060 Loop *CurLoop;
61 const TargetData *TD;
Chris Lattner62c50fd2011-01-02 19:01:03 +000062 DominatorTree *DT;
Chris Lattner22920b52010-12-26 20:45:45 +000063 ScalarEvolution *SE;
Chris Lattnere6bb6492010-12-26 19:39:38 +000064 public:
65 static char ID;
66 explicit LoopIdiomRecognize() : LoopPass(ID) {
67 initializeLoopIdiomRecognizePass(*PassRegistry::getPassRegistry());
68 }
69
70 bool runOnLoop(Loop *L, LPPassManager &LPM);
Chris Lattner62c50fd2011-01-02 19:01:03 +000071 bool runOnLoopBlock(BasicBlock *BB, const SCEV *BECount,
72 SmallVectorImpl<BasicBlock*> &ExitBlocks);
Chris Lattnere6bb6492010-12-26 19:39:38 +000073
Chris Lattner22920b52010-12-26 20:45:45 +000074 bool processLoopStore(StoreInst *SI, const SCEV *BECount);
Chris Lattnere6bb6492010-12-26 19:39:38 +000075
Chris Lattnera92ff912010-12-26 23:42:51 +000076 bool processLoopStoreOfSplatValue(StoreInst *SI, unsigned StoreSize,
77 Value *SplatValue,
78 const SCEVAddRecExpr *Ev,
79 const SCEV *BECount);
Chris Lattnere2c43922011-01-02 03:37:56 +000080 bool processLoopStoreOfLoopLoad(StoreInst *SI, unsigned StoreSize,
81 const SCEVAddRecExpr *StoreEv,
82 const SCEVAddRecExpr *LoadEv,
83 const SCEV *BECount);
84
Chris Lattnere6bb6492010-12-26 19:39:38 +000085 /// This transformation requires natural loop information & requires that
86 /// loop preheaders be inserted into the CFG.
87 ///
88 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
89 AU.addRequired<LoopInfo>();
90 AU.addPreserved<LoopInfo>();
91 AU.addRequiredID(LoopSimplifyID);
92 AU.addPreservedID(LoopSimplifyID);
93 AU.addRequiredID(LCSSAID);
94 AU.addPreservedID(LCSSAID);
Chris Lattner2e12f1a2010-12-27 18:39:08 +000095 AU.addRequired<AliasAnalysis>();
96 AU.addPreserved<AliasAnalysis>();
Chris Lattnere6bb6492010-12-26 19:39:38 +000097 AU.addRequired<ScalarEvolution>();
98 AU.addPreserved<ScalarEvolution>();
99 AU.addPreserved<DominatorTree>();
Chris Lattner62c50fd2011-01-02 19:01:03 +0000100 AU.addRequired<DominatorTree>();
Chris Lattnere6bb6492010-12-26 19:39:38 +0000101 }
102 };
103}
104
105char LoopIdiomRecognize::ID = 0;
106INITIALIZE_PASS_BEGIN(LoopIdiomRecognize, "loop-idiom", "Recognize loop idioms",
107 false, false)
108INITIALIZE_PASS_DEPENDENCY(LoopInfo)
Chris Lattner62c50fd2011-01-02 19:01:03 +0000109INITIALIZE_PASS_DEPENDENCY(DominatorTree)
Chris Lattnere6bb6492010-12-26 19:39:38 +0000110INITIALIZE_PASS_DEPENDENCY(LoopSimplify)
111INITIALIZE_PASS_DEPENDENCY(LCSSA)
112INITIALIZE_PASS_DEPENDENCY(ScalarEvolution)
Chris Lattner2e12f1a2010-12-27 18:39:08 +0000113INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
Chris Lattnere6bb6492010-12-26 19:39:38 +0000114INITIALIZE_PASS_END(LoopIdiomRecognize, "loop-idiom", "Recognize loop idioms",
115 false, false)
116
117Pass *llvm::createLoopIdiomPass() { return new LoopIdiomRecognize(); }
118
Chris Lattner9f391882010-12-27 00:03:23 +0000119/// DeleteDeadInstruction - Delete this instruction. Before we do, go through
120/// and zero out all the operands of this instruction. If any of them become
121/// dead, delete them and the computation tree that feeds them.
122///
123static void DeleteDeadInstruction(Instruction *I, ScalarEvolution &SE) {
124 SmallVector<Instruction*, 32> NowDeadInsts;
125
126 NowDeadInsts.push_back(I);
127
128 // Before we touch this instruction, remove it from SE!
129 do {
130 Instruction *DeadInst = NowDeadInsts.pop_back_val();
131
132 // This instruction is dead, zap it, in stages. Start by removing it from
133 // SCEV.
134 SE.forgetValue(DeadInst);
135
136 for (unsigned op = 0, e = DeadInst->getNumOperands(); op != e; ++op) {
137 Value *Op = DeadInst->getOperand(op);
138 DeadInst->setOperand(op, 0);
139
140 // If this operand just became dead, add it to the NowDeadInsts list.
141 if (!Op->use_empty()) continue;
142
143 if (Instruction *OpI = dyn_cast<Instruction>(Op))
144 if (isInstructionTriviallyDead(OpI))
145 NowDeadInsts.push_back(OpI);
146 }
147
148 DeadInst->eraseFromParent();
149
150 } while (!NowDeadInsts.empty());
151}
152
Chris Lattnere6bb6492010-12-26 19:39:38 +0000153bool LoopIdiomRecognize::runOnLoop(Loop *L, LPPassManager &LPM) {
Chris Lattner22920b52010-12-26 20:45:45 +0000154 CurLoop = L;
155
Chris Lattner22920b52010-12-26 20:45:45 +0000156 // The trip count of the loop must be analyzable.
157 SE = &getAnalysis<ScalarEvolution>();
158 if (!SE->hasLoopInvariantBackedgeTakenCount(L))
159 return false;
160 const SCEV *BECount = SE->getBackedgeTakenCount(L);
161 if (isa<SCEVCouldNotCompute>(BECount)) return false;
162
Chris Lattner8e08e732011-01-02 20:24:21 +0000163 // If this loop executes exactly one time, then it should be peeled, not
164 // optimized by this pass.
165 if (const SCEVConstant *BECst = dyn_cast<SCEVConstant>(BECount))
166 if (BECst->getValue()->getValue() == 0)
167 return false;
168
Chris Lattner22920b52010-12-26 20:45:45 +0000169 // We require target data for now.
170 TD = getAnalysisIfAvailable<TargetData>();
171 if (TD == 0) return false;
Chris Lattnere6bb6492010-12-26 19:39:38 +0000172
Chris Lattner62c50fd2011-01-02 19:01:03 +0000173 DT = &getAnalysis<DominatorTree>();
174 LoopInfo &LI = getAnalysis<LoopInfo>();
175
176 SmallVector<BasicBlock*, 8> ExitBlocks;
177 CurLoop->getUniqueExitBlocks(ExitBlocks);
178
Chris Lattner63f9c3c2011-01-02 21:14:18 +0000179 DEBUG(dbgs() << "loop-idiom Scanning: F["
180 << L->getHeader()->getParent()->getName()
181 << "] Loop %" << L->getHeader()->getName() << "\n");
182
Chris Lattner62c50fd2011-01-02 19:01:03 +0000183 bool MadeChange = false;
184 // Scan all the blocks in the loop that are not in subloops.
185 for (Loop::block_iterator BI = L->block_begin(), E = L->block_end(); BI != E;
186 ++BI) {
187 // Ignore blocks in subloops.
188 if (LI.getLoopFor(*BI) != CurLoop)
189 continue;
190
191 MadeChange |= runOnLoopBlock(*BI, BECount, ExitBlocks);
192 }
193 return MadeChange;
194}
195
196/// runOnLoopBlock - Process the specified block, which lives in a counted loop
197/// with the specified backedge count. This block is known to be in the current
198/// loop and not in any subloops.
199bool LoopIdiomRecognize::runOnLoopBlock(BasicBlock *BB, const SCEV *BECount,
200 SmallVectorImpl<BasicBlock*> &ExitBlocks) {
201 // We can only promote stores in this block if they are unconditionally
202 // executed in the loop. For a block to be unconditionally executed, it has
203 // to dominate all the exit blocks of the loop. Verify this now.
204 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
205 if (!DT->dominates(BB, ExitBlocks[i]))
206 return false;
207
Chris Lattner22920b52010-12-26 20:45:45 +0000208 bool MadeChange = false;
209 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ) {
210 // Look for store instructions, which may be memsets.
Chris Lattnera92ff912010-12-26 23:42:51 +0000211 StoreInst *SI = dyn_cast<StoreInst>(I++);
212 if (SI == 0 || SI->isVolatile()) continue;
213
Chris Lattner2e12f1a2010-12-27 18:39:08 +0000214 WeakVH InstPtr(SI);
215 if (!processLoopStore(SI, BECount)) continue;
216
217 MadeChange = true;
218
219 // If processing the store invalidated our iterator, start over from the
220 // head of the loop.
221 if (InstPtr == 0)
222 I = BB->begin();
Chris Lattner22920b52010-12-26 20:45:45 +0000223 }
224
225 return MadeChange;
Chris Lattnere6bb6492010-12-26 19:39:38 +0000226}
227
Chris Lattner62c50fd2011-01-02 19:01:03 +0000228
Chris Lattnere6bb6492010-12-26 19:39:38 +0000229/// scanBlock - Look over a block to see if we can promote anything out of it.
Chris Lattner22920b52010-12-26 20:45:45 +0000230bool LoopIdiomRecognize::processLoopStore(StoreInst *SI, const SCEV *BECount) {
231 Value *StoredVal = SI->getValueOperand();
Chris Lattnera92ff912010-12-26 23:42:51 +0000232 Value *StorePtr = SI->getPointerOperand();
Chris Lattnere6bb6492010-12-26 19:39:38 +0000233
Chris Lattner95ae6762010-12-28 18:53:48 +0000234 // Reject stores that are so large that they overflow an unsigned.
Chris Lattner22920b52010-12-26 20:45:45 +0000235 uint64_t SizeInBits = TD->getTypeSizeInBits(StoredVal->getType());
Chris Lattner95ae6762010-12-28 18:53:48 +0000236 if ((SizeInBits & 7) || (SizeInBits >> 32) != 0)
Chris Lattner22920b52010-12-26 20:45:45 +0000237 return false;
Chris Lattnere6bb6492010-12-26 19:39:38 +0000238
Chris Lattner22920b52010-12-26 20:45:45 +0000239 // See if the pointer expression is an AddRec like {base,+,1} on the current
240 // loop, which indicates a strided store. If we have something else, it's a
241 // random store we can't handle.
Chris Lattnere2c43922011-01-02 03:37:56 +0000242 const SCEVAddRecExpr *StoreEv =
243 dyn_cast<SCEVAddRecExpr>(SE->getSCEV(StorePtr));
244 if (StoreEv == 0 || StoreEv->getLoop() != CurLoop || !StoreEv->isAffine())
Chris Lattner22920b52010-12-26 20:45:45 +0000245 return false;
246
247 // Check to see if the stride matches the size of the store. If so, then we
248 // know that every byte is touched in the loop.
249 unsigned StoreSize = (unsigned)SizeInBits >> 3;
Chris Lattnere2c43922011-01-02 03:37:56 +0000250 const SCEVConstant *Stride = dyn_cast<SCEVConstant>(StoreEv->getOperand(1));
Chris Lattner30980b62011-01-01 19:39:01 +0000251
252 // TODO: Could also handle negative stride here someday, that will require the
253 // validity check in mayLoopModRefLocation to be updated though.
Chris Lattner22920b52010-12-26 20:45:45 +0000254 if (Stride == 0 || StoreSize != Stride->getValue()->getValue())
255 return false;
256
Chris Lattner22920b52010-12-26 20:45:45 +0000257 // If the stored value is a byte-wise value (like i32 -1), then it may be
258 // turned into a memset of i8 -1, assuming that all the consequtive bytes
259 // are stored. A store of i32 0x01020304 can never be turned into a memset.
Chris Lattnera92ff912010-12-26 23:42:51 +0000260 if (Value *SplatValue = isBytewiseValue(StoredVal))
Chris Lattnere2c43922011-01-02 03:37:56 +0000261 if (processLoopStoreOfSplatValue(SI, StoreSize, SplatValue, StoreEv,
262 BECount))
263 return true;
Chris Lattnera92ff912010-12-26 23:42:51 +0000264
Chris Lattnere2c43922011-01-02 03:37:56 +0000265 // If the stored value is a strided load in the same loop with the same stride
266 // this this may be transformable into a memcpy. This kicks in for stuff like
267 // for (i) A[i] = B[i];
268 if (LoadInst *LI = dyn_cast<LoadInst>(StoredVal)) {
269 const SCEVAddRecExpr *LoadEv =
270 dyn_cast<SCEVAddRecExpr>(SE->getSCEV(LI->getOperand(0)));
271 if (LoadEv && LoadEv->getLoop() == CurLoop && LoadEv->isAffine() &&
272 StoreEv->getOperand(1) == LoadEv->getOperand(1) && !LI->isVolatile())
273 if (processLoopStoreOfLoopLoad(SI, StoreSize, StoreEv, LoadEv, BECount))
274 return true;
275 }
Chris Lattner4ce31fb2011-01-02 07:36:44 +0000276 //errs() << "UNHANDLED strided store: " << *StoreEv << " - " << *SI << "\n";
Chris Lattner22920b52010-12-26 20:45:45 +0000277
Chris Lattnere6bb6492010-12-26 19:39:38 +0000278 return false;
279}
280
Chris Lattner63f9c3c2011-01-02 21:14:18 +0000281/// mayLoopAccessLocation - Return true if the specified loop might access the
282/// specified pointer location, which is a loop-strided access. The 'Access'
283/// argument specifies what the verboten forms of access are (read or write).
284static bool mayLoopAccessLocation(Value *Ptr,AliasAnalysis::ModRefResult Access,
285 Loop *L, const SCEV *BECount,
Chris Lattnere2c43922011-01-02 03:37:56 +0000286 unsigned StoreSize, AliasAnalysis &AA,
287 StoreInst *IgnoredStore) {
Chris Lattner30980b62011-01-01 19:39:01 +0000288 // Get the location that may be stored across the loop. Since the access is
289 // strided positively through memory, we say that the modified location starts
290 // at the pointer and has infinite size.
Chris Lattnera64cbf02011-01-01 19:54:22 +0000291 uint64_t AccessSize = AliasAnalysis::UnknownSize;
292
293 // If the loop iterates a fixed number of times, we can refine the access size
294 // to be exactly the size of the memset, which is (BECount+1)*StoreSize
295 if (const SCEVConstant *BECst = dyn_cast<SCEVConstant>(BECount))
296 AccessSize = (BECst->getValue()->getZExtValue()+1)*StoreSize;
297
298 // TODO: For this to be really effective, we have to dive into the pointer
299 // operand in the store. Store to &A[i] of 100 will always return may alias
300 // with store of &A[100], we need to StoreLoc to be "A" with size of 100,
301 // which will then no-alias a store to &A[100].
Chris Lattnere2c43922011-01-02 03:37:56 +0000302 AliasAnalysis::Location StoreLoc(Ptr, AccessSize);
Chris Lattner30980b62011-01-01 19:39:01 +0000303
304 for (Loop::block_iterator BI = L->block_begin(), E = L->block_end(); BI != E;
305 ++BI)
306 for (BasicBlock::iterator I = (*BI)->begin(), E = (*BI)->end(); I != E; ++I)
Chris Lattnere2c43922011-01-02 03:37:56 +0000307 if (&*I != IgnoredStore &&
Chris Lattner63f9c3c2011-01-02 21:14:18 +0000308 (AA.getModRefInfo(I, StoreLoc) & Access))
Chris Lattner30980b62011-01-01 19:39:01 +0000309 return true;
310
311 return false;
312}
313
Chris Lattnera92ff912010-12-26 23:42:51 +0000314/// processLoopStoreOfSplatValue - We see a strided store of a memsetable value.
315/// If we can transform this into a memset in the loop preheader, do so.
316bool LoopIdiomRecognize::
317processLoopStoreOfSplatValue(StoreInst *SI, unsigned StoreSize,
318 Value *SplatValue,
319 const SCEVAddRecExpr *Ev, const SCEV *BECount) {
Chris Lattnerbafa1172011-01-01 20:12:04 +0000320 // Verify that the stored value is loop invariant. If not, we can't promote
321 // the memset.
322 if (!CurLoop->isLoopInvariant(SplatValue))
323 return false;
324
Chris Lattnera92ff912010-12-26 23:42:51 +0000325 // Okay, we have a strided store "p[i]" of a splattable value. We can turn
326 // this into a memset in the loop preheader now if we want. However, this
327 // would be unsafe to do if there is anything else in the loop that may read
328 // or write to the aliased location. Check for an alias.
Chris Lattner63f9c3c2011-01-02 21:14:18 +0000329 if (mayLoopAccessLocation(SI->getPointerOperand(), AliasAnalysis::ModRef,
330 CurLoop, BECount,
Chris Lattnere2c43922011-01-02 03:37:56 +0000331 StoreSize, getAnalysis<AliasAnalysis>(), SI))
332 return false;
Chris Lattnera92ff912010-12-26 23:42:51 +0000333
334 // Okay, everything looks good, insert the memset.
335 BasicBlock *Preheader = CurLoop->getLoopPreheader();
336
337 IRBuilder<> Builder(Preheader->getTerminator());
338
339 // The trip count of the loop and the base pointer of the addrec SCEV is
340 // guaranteed to be loop invariant, which means that it should dominate the
341 // header. Just insert code for it in the preheader.
342 SCEVExpander Expander(*SE);
343
344 unsigned AddrSpace = SI->getPointerAddressSpace();
345 Value *BasePtr =
346 Expander.expandCodeFor(Ev->getStart(), Builder.getInt8PtrTy(AddrSpace),
347 Preheader->getTerminator());
348
349 // The # stored bytes is (BECount+1)*Size. Expand the trip count out to
350 // pointer size if it isn't already.
351 const Type *IntPtr = TD->getIntPtrType(SI->getContext());
352 unsigned BESize = SE->getTypeSizeInBits(BECount->getType());
353 if (BESize < TD->getPointerSizeInBits())
354 BECount = SE->getZeroExtendExpr(BECount, IntPtr);
355 else if (BESize > TD->getPointerSizeInBits())
356 BECount = SE->getTruncateExpr(BECount, IntPtr);
357
358 const SCEV *NumBytesS = SE->getAddExpr(BECount, SE->getConstant(IntPtr, 1),
359 true, true /*nooverflow*/);
360 if (StoreSize != 1)
361 NumBytesS = SE->getMulExpr(NumBytesS, SE->getConstant(IntPtr, StoreSize),
362 true, true /*nooverflow*/);
363
364 Value *NumBytes =
365 Expander.expandCodeFor(NumBytesS, IntPtr, Preheader->getTerminator());
366
367 Value *NewCall =
368 Builder.CreateMemSet(BasePtr, SplatValue, NumBytes, SI->getAlignment());
369
370 DEBUG(dbgs() << " Formed memset: " << *NewCall << "\n"
371 << " from store to: " << *Ev << " at: " << *SI << "\n");
Duncan Sands7922d342010-12-28 09:41:15 +0000372 (void)NewCall;
Chris Lattnera92ff912010-12-26 23:42:51 +0000373
Chris Lattner9f391882010-12-27 00:03:23 +0000374 // Okay, the memset has been formed. Zap the original store and anything that
375 // feeds into it.
376 DeleteDeadInstruction(SI, *SE);
Chris Lattner4ce31fb2011-01-02 07:36:44 +0000377 ++NumMemSet;
Chris Lattnera92ff912010-12-26 23:42:51 +0000378 return true;
379}
380
Chris Lattnere2c43922011-01-02 03:37:56 +0000381/// processLoopStoreOfLoopLoad - We see a strided store whose value is a
382/// same-strided load.
383bool LoopIdiomRecognize::
384processLoopStoreOfLoopLoad(StoreInst *SI, unsigned StoreSize,
385 const SCEVAddRecExpr *StoreEv,
386 const SCEVAddRecExpr *LoadEv,
387 const SCEV *BECount) {
388 LoadInst *LI = cast<LoadInst>(SI->getValueOperand());
389
390 // Okay, we have a strided store "p[i]" of a loaded value. We can turn
Chris Lattnerbdce5722011-01-02 18:32:09 +0000391 // this into a memcpy in the loop preheader now if we want. However, this
Chris Lattnere2c43922011-01-02 03:37:56 +0000392 // would be unsafe to do if there is anything else in the loop that may read
Chris Lattner63f9c3c2011-01-02 21:14:18 +0000393 // or write to the stored location (including the load feeding the stores).
Chris Lattnere2c43922011-01-02 03:37:56 +0000394 // Check for an alias.
Chris Lattner63f9c3c2011-01-02 21:14:18 +0000395 if (mayLoopAccessLocation(SI->getPointerOperand(), AliasAnalysis::ModRef,
396 CurLoop, BECount, StoreSize,
397 getAnalysis<AliasAnalysis>(), SI))
398 return false;
399
400 // For a memcpy, we have to make sure that the input array is not being
401 // mutated by the loop.
402 if (mayLoopAccessLocation(LI->getPointerOperand(), AliasAnalysis::Mod,
403 CurLoop, BECount, StoreSize,
404 getAnalysis<AliasAnalysis>(), SI))
Chris Lattnere2c43922011-01-02 03:37:56 +0000405 return false;
406
407 // Okay, everything looks good, insert the memcpy.
408 BasicBlock *Preheader = CurLoop->getLoopPreheader();
409
410 IRBuilder<> Builder(Preheader->getTerminator());
411
412 // The trip count of the loop and the base pointer of the addrec SCEV is
413 // guaranteed to be loop invariant, which means that it should dominate the
414 // header. Just insert code for it in the preheader.
415 SCEVExpander Expander(*SE);
416
417 Value *LoadBasePtr =
418 Expander.expandCodeFor(LoadEv->getStart(),
419 Builder.getInt8PtrTy(LI->getPointerAddressSpace()),
420 Preheader->getTerminator());
421 Value *StoreBasePtr =
422 Expander.expandCodeFor(StoreEv->getStart(),
423 Builder.getInt8PtrTy(SI->getPointerAddressSpace()),
424 Preheader->getTerminator());
425
426 // The # stored bytes is (BECount+1)*Size. Expand the trip count out to
427 // pointer size if it isn't already.
428 const Type *IntPtr = TD->getIntPtrType(SI->getContext());
429 unsigned BESize = SE->getTypeSizeInBits(BECount->getType());
430 if (BESize < TD->getPointerSizeInBits())
431 BECount = SE->getZeroExtendExpr(BECount, IntPtr);
432 else if (BESize > TD->getPointerSizeInBits())
433 BECount = SE->getTruncateExpr(BECount, IntPtr);
434
435 const SCEV *NumBytesS = SE->getAddExpr(BECount, SE->getConstant(IntPtr, 1),
436 true, true /*nooverflow*/);
437 if (StoreSize != 1)
438 NumBytesS = SE->getMulExpr(NumBytesS, SE->getConstant(IntPtr, StoreSize),
439 true, true /*nooverflow*/);
440
441 Value *NumBytes =
442 Expander.expandCodeFor(NumBytesS, IntPtr, Preheader->getTerminator());
443
444 Value *NewCall =
445 Builder.CreateMemCpy(StoreBasePtr, LoadBasePtr, NumBytes,
446 std::min(SI->getAlignment(), LI->getAlignment()));
447
448 DEBUG(dbgs() << " Formed memcpy: " << *NewCall << "\n"
449 << " from load ptr=" << *LoadEv << " at: " << *LI << "\n"
450 << " from store ptr=" << *StoreEv << " at: " << *SI << "\n");
451 (void)NewCall;
452
453 // Okay, the memset has been formed. Zap the original store and anything that
454 // feeds into it.
455 DeleteDeadInstruction(SI, *SE);
Chris Lattner4ce31fb2011-01-02 07:36:44 +0000456 ++NumMemCpy;
Chris Lattnere2c43922011-01-02 03:37:56 +0000457 return true;
458}