blob: d67f6c1e95bd4bb95c4a62b8f6437c37715d6340 [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; ) {
Chris Lattnerb7e9ef02011-01-04 07:27:30 +0000210 Instruction *Inst = I++;
211 // Look for store instructions, which may be optimized to memset/memcpy.
212 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
213 if (SI->isVolatile()) continue;
Chris Lattnera92ff912010-12-26 23:42:51 +0000214
Chris Lattnerb7e9ef02011-01-04 07:27:30 +0000215 WeakVH InstPtr(I);
216 if (!processLoopStore(SI, BECount)) continue;
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();
223 continue;
224 }
Chris Lattner2e12f1a2010-12-27 18:39:08 +0000225
Chris Lattner22920b52010-12-26 20:45:45 +0000226 }
227
228 return MadeChange;
Chris Lattnere6bb6492010-12-26 19:39:38 +0000229}
230
Chris Lattner62c50fd2011-01-02 19:01:03 +0000231
Chris Lattnere6bb6492010-12-26 19:39:38 +0000232/// scanBlock - Look over a block to see if we can promote anything out of it.
Chris Lattner22920b52010-12-26 20:45:45 +0000233bool LoopIdiomRecognize::processLoopStore(StoreInst *SI, const SCEV *BECount) {
234 Value *StoredVal = SI->getValueOperand();
Chris Lattnera92ff912010-12-26 23:42:51 +0000235 Value *StorePtr = SI->getPointerOperand();
Chris Lattnere6bb6492010-12-26 19:39:38 +0000236
Chris Lattner95ae6762010-12-28 18:53:48 +0000237 // Reject stores that are so large that they overflow an unsigned.
Chris Lattner22920b52010-12-26 20:45:45 +0000238 uint64_t SizeInBits = TD->getTypeSizeInBits(StoredVal->getType());
Chris Lattner95ae6762010-12-28 18:53:48 +0000239 if ((SizeInBits & 7) || (SizeInBits >> 32) != 0)
Chris Lattner22920b52010-12-26 20:45:45 +0000240 return false;
Chris Lattnere6bb6492010-12-26 19:39:38 +0000241
Chris Lattner22920b52010-12-26 20:45:45 +0000242 // See if the pointer expression is an AddRec like {base,+,1} on the current
243 // loop, which indicates a strided store. If we have something else, it's a
244 // random store we can't handle.
Chris Lattnere2c43922011-01-02 03:37:56 +0000245 const SCEVAddRecExpr *StoreEv =
246 dyn_cast<SCEVAddRecExpr>(SE->getSCEV(StorePtr));
247 if (StoreEv == 0 || StoreEv->getLoop() != CurLoop || !StoreEv->isAffine())
Chris Lattner22920b52010-12-26 20:45:45 +0000248 return false;
249
250 // Check to see if the stride matches the size of the store. If so, then we
251 // know that every byte is touched in the loop.
252 unsigned StoreSize = (unsigned)SizeInBits >> 3;
Chris Lattnere2c43922011-01-02 03:37:56 +0000253 const SCEVConstant *Stride = dyn_cast<SCEVConstant>(StoreEv->getOperand(1));
Chris Lattner30980b62011-01-01 19:39:01 +0000254
255 // TODO: Could also handle negative stride here someday, that will require the
Owen Anderson6f96b272011-01-03 23:51:56 +0000256 // validity check in mayLoopAccessLocation to be updated though.
Chris Lattner22920b52010-12-26 20:45:45 +0000257 if (Stride == 0 || StoreSize != Stride->getValue()->getValue())
258 return false;
259
Chris Lattner22920b52010-12-26 20:45:45 +0000260 // If the stored value is a byte-wise value (like i32 -1), then it may be
261 // turned into a memset of i8 -1, assuming that all the consequtive bytes
262 // are stored. A store of i32 0x01020304 can never be turned into a memset.
Chris Lattnera92ff912010-12-26 23:42:51 +0000263 if (Value *SplatValue = isBytewiseValue(StoredVal))
Chris Lattnere2c43922011-01-02 03:37:56 +0000264 if (processLoopStoreOfSplatValue(SI, StoreSize, SplatValue, StoreEv,
265 BECount))
266 return true;
Chris Lattnera92ff912010-12-26 23:42:51 +0000267
Chris Lattnere2c43922011-01-02 03:37:56 +0000268 // If the stored value is a strided load in the same loop with the same stride
269 // this this may be transformable into a memcpy. This kicks in for stuff like
270 // for (i) A[i] = B[i];
271 if (LoadInst *LI = dyn_cast<LoadInst>(StoredVal)) {
272 const SCEVAddRecExpr *LoadEv =
273 dyn_cast<SCEVAddRecExpr>(SE->getSCEV(LI->getOperand(0)));
274 if (LoadEv && LoadEv->getLoop() == CurLoop && LoadEv->isAffine() &&
275 StoreEv->getOperand(1) == LoadEv->getOperand(1) && !LI->isVolatile())
276 if (processLoopStoreOfLoopLoad(SI, StoreSize, StoreEv, LoadEv, BECount))
277 return true;
278 }
Chris Lattner4ce31fb2011-01-02 07:36:44 +0000279 //errs() << "UNHANDLED strided store: " << *StoreEv << " - " << *SI << "\n";
Chris Lattner22920b52010-12-26 20:45:45 +0000280
Chris Lattnere6bb6492010-12-26 19:39:38 +0000281 return false;
282}
283
Chris Lattner63f9c3c2011-01-02 21:14:18 +0000284/// mayLoopAccessLocation - Return true if the specified loop might access the
285/// specified pointer location, which is a loop-strided access. The 'Access'
286/// argument specifies what the verboten forms of access are (read or write).
287static bool mayLoopAccessLocation(Value *Ptr,AliasAnalysis::ModRefResult Access,
288 Loop *L, const SCEV *BECount,
Chris Lattnere2c43922011-01-02 03:37:56 +0000289 unsigned StoreSize, AliasAnalysis &AA,
290 StoreInst *IgnoredStore) {
Chris Lattner30980b62011-01-01 19:39:01 +0000291 // Get the location that may be stored across the loop. Since the access is
292 // strided positively through memory, we say that the modified location starts
293 // at the pointer and has infinite size.
Chris Lattnera64cbf02011-01-01 19:54:22 +0000294 uint64_t AccessSize = AliasAnalysis::UnknownSize;
295
296 // If the loop iterates a fixed number of times, we can refine the access size
297 // to be exactly the size of the memset, which is (BECount+1)*StoreSize
298 if (const SCEVConstant *BECst = dyn_cast<SCEVConstant>(BECount))
299 AccessSize = (BECst->getValue()->getZExtValue()+1)*StoreSize;
300
301 // TODO: For this to be really effective, we have to dive into the pointer
302 // operand in the store. Store to &A[i] of 100 will always return may alias
303 // with store of &A[100], we need to StoreLoc to be "A" with size of 100,
304 // which will then no-alias a store to &A[100].
Chris Lattnere2c43922011-01-02 03:37:56 +0000305 AliasAnalysis::Location StoreLoc(Ptr, AccessSize);
Chris Lattner30980b62011-01-01 19:39:01 +0000306
307 for (Loop::block_iterator BI = L->block_begin(), E = L->block_end(); BI != E;
308 ++BI)
309 for (BasicBlock::iterator I = (*BI)->begin(), E = (*BI)->end(); I != E; ++I)
Chris Lattnere2c43922011-01-02 03:37:56 +0000310 if (&*I != IgnoredStore &&
Chris Lattner63f9c3c2011-01-02 21:14:18 +0000311 (AA.getModRefInfo(I, StoreLoc) & Access))
Chris Lattner30980b62011-01-01 19:39:01 +0000312 return true;
313
314 return false;
315}
316
Chris Lattnera92ff912010-12-26 23:42:51 +0000317/// processLoopStoreOfSplatValue - We see a strided store of a memsetable value.
318/// If we can transform this into a memset in the loop preheader, do so.
319bool LoopIdiomRecognize::
320processLoopStoreOfSplatValue(StoreInst *SI, unsigned StoreSize,
321 Value *SplatValue,
322 const SCEVAddRecExpr *Ev, const SCEV *BECount) {
Chris Lattnerbafa1172011-01-01 20:12:04 +0000323 // Verify that the stored value is loop invariant. If not, we can't promote
324 // the memset.
325 if (!CurLoop->isLoopInvariant(SplatValue))
326 return false;
327
Chris Lattnera92ff912010-12-26 23:42:51 +0000328 // Okay, we have a strided store "p[i]" of a splattable value. We can turn
329 // this into a memset in the loop preheader now if we want. However, this
330 // would be unsafe to do if there is anything else in the loop that may read
331 // or write to the aliased location. Check for an alias.
Chris Lattner63f9c3c2011-01-02 21:14:18 +0000332 if (mayLoopAccessLocation(SI->getPointerOperand(), AliasAnalysis::ModRef,
333 CurLoop, BECount,
Chris Lattnere2c43922011-01-02 03:37:56 +0000334 StoreSize, getAnalysis<AliasAnalysis>(), SI))
335 return false;
Chris Lattnera92ff912010-12-26 23:42:51 +0000336
337 // Okay, everything looks good, insert the memset.
338 BasicBlock *Preheader = CurLoop->getLoopPreheader();
339
340 IRBuilder<> Builder(Preheader->getTerminator());
341
342 // The trip count of the loop and the base pointer of the addrec SCEV is
343 // guaranteed to be loop invariant, which means that it should dominate the
344 // header. Just insert code for it in the preheader.
345 SCEVExpander Expander(*SE);
346
347 unsigned AddrSpace = SI->getPointerAddressSpace();
348 Value *BasePtr =
349 Expander.expandCodeFor(Ev->getStart(), Builder.getInt8PtrTy(AddrSpace),
350 Preheader->getTerminator());
351
352 // The # stored bytes is (BECount+1)*Size. Expand the trip count out to
353 // pointer size if it isn't already.
354 const Type *IntPtr = TD->getIntPtrType(SI->getContext());
Chris Lattner7c90b902011-01-04 00:06:55 +0000355 BECount = SE->getTruncateOrZeroExtend(BECount, IntPtr);
Chris Lattnera92ff912010-12-26 23:42:51 +0000356
357 const SCEV *NumBytesS = SE->getAddExpr(BECount, SE->getConstant(IntPtr, 1),
Chris Lattner7c90b902011-01-04 00:06:55 +0000358 true /*no unsigned overflow*/);
Chris Lattnera92ff912010-12-26 23:42:51 +0000359 if (StoreSize != 1)
360 NumBytesS = SE->getMulExpr(NumBytesS, SE->getConstant(IntPtr, StoreSize),
Chris Lattner7c90b902011-01-04 00:06:55 +0000361 true /*no unsigned overflow*/);
Chris Lattnera92ff912010-12-26 23:42:51 +0000362
363 Value *NumBytes =
364 Expander.expandCodeFor(NumBytesS, IntPtr, Preheader->getTerminator());
365
366 Value *NewCall =
367 Builder.CreateMemSet(BasePtr, SplatValue, NumBytes, SI->getAlignment());
368
369 DEBUG(dbgs() << " Formed memset: " << *NewCall << "\n"
370 << " from store to: " << *Ev << " at: " << *SI << "\n");
Duncan Sands7922d342010-12-28 09:41:15 +0000371 (void)NewCall;
Chris Lattnera92ff912010-12-26 23:42:51 +0000372
Chris Lattner9f391882010-12-27 00:03:23 +0000373 // Okay, the memset has been formed. Zap the original store and anything that
374 // feeds into it.
375 DeleteDeadInstruction(SI, *SE);
Chris Lattner4ce31fb2011-01-02 07:36:44 +0000376 ++NumMemSet;
Chris Lattnera92ff912010-12-26 23:42:51 +0000377 return true;
378}
379
Chris Lattnere2c43922011-01-02 03:37:56 +0000380/// processLoopStoreOfLoopLoad - We see a strided store whose value is a
381/// same-strided load.
382bool LoopIdiomRecognize::
383processLoopStoreOfLoopLoad(StoreInst *SI, unsigned StoreSize,
384 const SCEVAddRecExpr *StoreEv,
385 const SCEVAddRecExpr *LoadEv,
386 const SCEV *BECount) {
387 LoadInst *LI = cast<LoadInst>(SI->getValueOperand());
388
389 // Okay, we have a strided store "p[i]" of a loaded value. We can turn
Chris Lattnerbdce5722011-01-02 18:32:09 +0000390 // this into a memcpy in the loop preheader now if we want. However, this
Chris Lattnere2c43922011-01-02 03:37:56 +0000391 // would be unsafe to do if there is anything else in the loop that may read
Chris Lattner63f9c3c2011-01-02 21:14:18 +0000392 // or write to the stored location (including the load feeding the stores).
Chris Lattnere2c43922011-01-02 03:37:56 +0000393 // Check for an alias.
Chris Lattner63f9c3c2011-01-02 21:14:18 +0000394 if (mayLoopAccessLocation(SI->getPointerOperand(), AliasAnalysis::ModRef,
395 CurLoop, BECount, StoreSize,
396 getAnalysis<AliasAnalysis>(), SI))
397 return false;
398
399 // For a memcpy, we have to make sure that the input array is not being
400 // mutated by the loop.
401 if (mayLoopAccessLocation(LI->getPointerOperand(), AliasAnalysis::Mod,
402 CurLoop, BECount, StoreSize,
403 getAnalysis<AliasAnalysis>(), SI))
Chris Lattnere2c43922011-01-02 03:37:56 +0000404 return false;
405
406 // Okay, everything looks good, insert the memcpy.
407 BasicBlock *Preheader = CurLoop->getLoopPreheader();
408
409 IRBuilder<> Builder(Preheader->getTerminator());
410
411 // The trip count of the loop and the base pointer of the addrec SCEV is
412 // guaranteed to be loop invariant, which means that it should dominate the
413 // header. Just insert code for it in the preheader.
414 SCEVExpander Expander(*SE);
415
416 Value *LoadBasePtr =
417 Expander.expandCodeFor(LoadEv->getStart(),
418 Builder.getInt8PtrTy(LI->getPointerAddressSpace()),
419 Preheader->getTerminator());
420 Value *StoreBasePtr =
421 Expander.expandCodeFor(StoreEv->getStart(),
422 Builder.getInt8PtrTy(SI->getPointerAddressSpace()),
423 Preheader->getTerminator());
424
425 // The # stored bytes is (BECount+1)*Size. Expand the trip count out to
426 // pointer size if it isn't already.
427 const Type *IntPtr = TD->getIntPtrType(SI->getContext());
Chris Lattner7c90b902011-01-04 00:06:55 +0000428 BECount = SE->getTruncateOrZeroExtend(BECount, IntPtr);
Chris Lattnere2c43922011-01-02 03:37:56 +0000429
430 const SCEV *NumBytesS = SE->getAddExpr(BECount, SE->getConstant(IntPtr, 1),
Chris Lattner7c90b902011-01-04 00:06:55 +0000431 true /*no unsigned overflow*/);
Chris Lattnere2c43922011-01-02 03:37:56 +0000432 if (StoreSize != 1)
433 NumBytesS = SE->getMulExpr(NumBytesS, SE->getConstant(IntPtr, StoreSize),
Chris Lattner7c90b902011-01-04 00:06:55 +0000434 true /*no unsigned overflow*/);
Chris Lattnere2c43922011-01-02 03:37:56 +0000435
436 Value *NumBytes =
437 Expander.expandCodeFor(NumBytesS, IntPtr, Preheader->getTerminator());
438
439 Value *NewCall =
440 Builder.CreateMemCpy(StoreBasePtr, LoadBasePtr, NumBytes,
441 std::min(SI->getAlignment(), LI->getAlignment()));
442
443 DEBUG(dbgs() << " Formed memcpy: " << *NewCall << "\n"
444 << " from load ptr=" << *LoadEv << " at: " << *LI << "\n"
445 << " from store ptr=" << *StoreEv << " at: " << *SI << "\n");
446 (void)NewCall;
447
448 // Okay, the memset has been formed. Zap the original store and anything that
449 // feeds into it.
450 DeleteDeadInstruction(SI, *SE);
Chris Lattner4ce31fb2011-01-02 07:36:44 +0000451 ++NumMemCpy;
Chris Lattnere2c43922011-01-02 03:37:56 +0000452 return true;
453}