blob: bb5b76cef987d297cf30d4a1637efbd67315a923 [file] [log] [blame]
Owen Anderson78e02f72007-07-06 23:14:35 +00001//===- MemoryDependenceAnalysis.cpp - Mem Deps Implementation --*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Owen Anderson78e02f72007-07-06 23:14:35 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements an analysis that determines, for a given memory
11// operation, what preceding memory operations it depends on. It builds on
Owen Anderson80b1f092007-08-08 22:01:54 +000012// alias analysis information, and tries to provide a lazy, caching interface to
Owen Anderson78e02f72007-07-06 23:14:35 +000013// a common kind of alias information query.
14//
15//===----------------------------------------------------------------------===//
16
Chris Lattner0e575f42008-11-28 21:45:17 +000017#define DEBUG_TYPE "memdep"
Owen Anderson78e02f72007-07-06 23:14:35 +000018#include "llvm/Analysis/MemoryDependenceAnalysis.h"
19#include "llvm/Instructions.h"
Owen Andersonf6cec852009-03-09 05:12:38 +000020#include "llvm/IntrinsicInst.h"
Owen Anderson78e02f72007-07-06 23:14:35 +000021#include "llvm/Function.h"
22#include "llvm/Analysis/AliasAnalysis.h"
Chris Lattnere19e4ba2009-11-27 00:34:38 +000023#include "llvm/Analysis/InstructionSimplify.h"
Victor Hernandezf006b182009-10-27 20:05:49 +000024#include "llvm/Analysis/MemoryBuiltins.h"
Chris Lattnerbaad8882008-11-28 22:28:27 +000025#include "llvm/ADT/Statistic.h"
Duncan Sands7050f3d2008-12-10 09:38:36 +000026#include "llvm/ADT/STLExtras.h"
Chris Lattner4012fdd2008-12-09 06:28:49 +000027#include "llvm/Support/PredIteratorCache.h"
Chris Lattner0e575f42008-11-28 21:45:17 +000028#include "llvm/Support/Debug.h"
Owen Anderson78e02f72007-07-06 23:14:35 +000029using namespace llvm;
30
Chris Lattnerbf145d62008-12-01 01:15:42 +000031STATISTIC(NumCacheNonLocal, "Number of fully cached non-local responses");
32STATISTIC(NumCacheDirtyNonLocal, "Number of dirty cached non-local responses");
Chris Lattner0ec48dd2008-11-29 22:02:15 +000033STATISTIC(NumUncacheNonLocal, "Number of uncached non-local responses");
Chris Lattner6290f5c2008-12-07 08:50:20 +000034
35STATISTIC(NumCacheNonLocalPtr,
36 "Number of fully cached non-local ptr responses");
37STATISTIC(NumCacheDirtyNonLocalPtr,
38 "Number of cached, but dirty, non-local ptr responses");
39STATISTIC(NumUncacheNonLocalPtr,
40 "Number of uncached non-local ptr responses");
Chris Lattner11dcd8d2008-12-08 07:31:50 +000041STATISTIC(NumCacheCompleteNonLocalPtr,
42 "Number of block queries that were completely cached");
Chris Lattner6290f5c2008-12-07 08:50:20 +000043
Owen Anderson78e02f72007-07-06 23:14:35 +000044char MemoryDependenceAnalysis::ID = 0;
45
Owen Anderson78e02f72007-07-06 23:14:35 +000046// Register this pass...
Owen Anderson776ee1f2007-07-10 20:21:08 +000047static RegisterPass<MemoryDependenceAnalysis> X("memdep",
Chris Lattner0e575f42008-11-28 21:45:17 +000048 "Memory Dependence Analysis", false, true);
Owen Anderson78e02f72007-07-06 23:14:35 +000049
Chris Lattner4012fdd2008-12-09 06:28:49 +000050MemoryDependenceAnalysis::MemoryDependenceAnalysis()
51: FunctionPass(&ID), PredCache(0) {
52}
53MemoryDependenceAnalysis::~MemoryDependenceAnalysis() {
54}
55
56/// Clean up memory in between runs
57void MemoryDependenceAnalysis::releaseMemory() {
58 LocalDeps.clear();
59 NonLocalDeps.clear();
60 NonLocalPointerDeps.clear();
61 ReverseLocalDeps.clear();
62 ReverseNonLocalDeps.clear();
63 ReverseNonLocalPtrDeps.clear();
64 PredCache->clear();
65}
66
67
68
Owen Anderson78e02f72007-07-06 23:14:35 +000069/// getAnalysisUsage - Does not modify anything. It uses Alias Analysis.
70///
71void MemoryDependenceAnalysis::getAnalysisUsage(AnalysisUsage &AU) const {
72 AU.setPreservesAll();
73 AU.addRequiredTransitive<AliasAnalysis>();
Owen Anderson78e02f72007-07-06 23:14:35 +000074}
75
Chris Lattnerd777d402008-11-30 19:24:31 +000076bool MemoryDependenceAnalysis::runOnFunction(Function &) {
77 AA = &getAnalysis<AliasAnalysis>();
Chris Lattner4012fdd2008-12-09 06:28:49 +000078 if (PredCache == 0)
79 PredCache.reset(new PredIteratorCache());
Chris Lattnerd777d402008-11-30 19:24:31 +000080 return false;
81}
82
Chris Lattnerd44745d2008-12-07 18:39:13 +000083/// RemoveFromReverseMap - This is a helper function that removes Val from
84/// 'Inst's set in ReverseMap. If the set becomes empty, remove Inst's entry.
85template <typename KeyTy>
86static void RemoveFromReverseMap(DenseMap<Instruction*,
Chris Lattner6a0dcc12009-03-29 00:24:04 +000087 SmallPtrSet<KeyTy, 4> > &ReverseMap,
88 Instruction *Inst, KeyTy Val) {
89 typename DenseMap<Instruction*, SmallPtrSet<KeyTy, 4> >::iterator
Chris Lattnerd44745d2008-12-07 18:39:13 +000090 InstIt = ReverseMap.find(Inst);
91 assert(InstIt != ReverseMap.end() && "Reverse map out of sync?");
92 bool Found = InstIt->second.erase(Val);
93 assert(Found && "Invalid reverse map!"); Found=Found;
94 if (InstIt->second.empty())
95 ReverseMap.erase(InstIt);
96}
97
Chris Lattnerbf145d62008-12-01 01:15:42 +000098
Chris Lattner8ef57c52008-12-07 00:35:51 +000099/// getCallSiteDependencyFrom - Private helper for finding the local
100/// dependencies of a call site.
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000101MemDepResult MemoryDependenceAnalysis::
Chris Lattner20d6f092008-12-09 21:19:42 +0000102getCallSiteDependencyFrom(CallSite CS, bool isReadOnlyCall,
103 BasicBlock::iterator ScanIt, BasicBlock *BB) {
Owen Anderson642a9e32007-08-08 22:26:03 +0000104 // Walk backwards through the block, looking for dependencies
Chris Lattner5391a1d2008-11-29 03:47:00 +0000105 while (ScanIt != BB->begin()) {
106 Instruction *Inst = --ScanIt;
Owen Anderson5f323202007-07-10 17:59:22 +0000107
108 // If this inst is a memory op, get the pointer it accessed
Chris Lattner00314b32008-11-29 09:15:21 +0000109 Value *Pointer = 0;
110 uint64_t PointerSize = 0;
111 if (StoreInst *S = dyn_cast<StoreInst>(Inst)) {
112 Pointer = S->getPointerOperand();
Dan Gohmanf5812132009-07-31 20:53:12 +0000113 PointerSize = AA->getTypeStoreSize(S->getOperand(0)->getType());
Chris Lattner00314b32008-11-29 09:15:21 +0000114 } else if (VAArgInst *V = dyn_cast<VAArgInst>(Inst)) {
115 Pointer = V->getOperand(0);
Dan Gohmanf5812132009-07-31 20:53:12 +0000116 PointerSize = AA->getTypeStoreSize(V->getType());
Victor Hernandez046e78c2009-10-26 23:43:48 +0000117 } else if (isFreeCall(Inst)) {
118 Pointer = Inst->getOperand(1);
119 // calls to free() erase the entire structure
Chris Lattner6290f5c2008-12-07 08:50:20 +0000120 PointerSize = ~0ULL;
Chris Lattner00314b32008-11-29 09:15:21 +0000121 } else if (isa<CallInst>(Inst) || isa<InvokeInst>(Inst)) {
Owen Andersonf6cec852009-03-09 05:12:38 +0000122 // Debug intrinsics don't cause dependences.
Dale Johannesen497cb6f2009-03-11 21:13:01 +0000123 if (isa<DbgInfoIntrinsic>(Inst)) continue;
Chris Lattnerb51deb92008-12-05 21:04:20 +0000124 CallSite InstCS = CallSite::get(Inst);
125 // If these two calls do not interfere, look past it.
Chris Lattner20d6f092008-12-09 21:19:42 +0000126 switch (AA->getModRefInfo(CS, InstCS)) {
127 case AliasAnalysis::NoModRef:
128 // If the two calls don't interact (e.g. InstCS is readnone) keep
129 // scanning.
Chris Lattner00314b32008-11-29 09:15:21 +0000130 continue;
Chris Lattner20d6f092008-12-09 21:19:42 +0000131 case AliasAnalysis::Ref:
132 // If the two calls read the same memory locations and CS is a readonly
133 // function, then we have two cases: 1) the calls may not interfere with
134 // each other at all. 2) the calls may produce the same value. In case
135 // #1 we want to ignore the values, in case #2, we want to return Inst
136 // as a Def dependence. This allows us to CSE in cases like:
137 // X = strlen(P);
138 // memchr(...);
139 // Y = strlen(P); // Y = X
140 if (isReadOnlyCall) {
141 if (CS.getCalledFunction() != 0 &&
142 CS.getCalledFunction() == InstCS.getCalledFunction())
143 return MemDepResult::getDef(Inst);
144 // Ignore unrelated read/read call dependences.
145 continue;
146 }
147 // FALL THROUGH
148 default:
Chris Lattnerb51deb92008-12-05 21:04:20 +0000149 return MemDepResult::getClobber(Inst);
Chris Lattner20d6f092008-12-09 21:19:42 +0000150 }
Chris Lattnercfbb6342008-11-30 01:44:00 +0000151 } else {
152 // Non-memory instruction.
Owen Anderson202da142007-07-10 20:39:07 +0000153 continue;
Chris Lattnercfbb6342008-11-30 01:44:00 +0000154 }
Owen Anderson5f323202007-07-10 17:59:22 +0000155
Chris Lattnerb51deb92008-12-05 21:04:20 +0000156 if (AA->getModRefInfo(CS, Pointer, PointerSize) != AliasAnalysis::NoModRef)
157 return MemDepResult::getClobber(Inst);
Owen Anderson5f323202007-07-10 17:59:22 +0000158 }
159
Chris Lattner7ebcf032008-12-07 02:15:47 +0000160 // No dependence found. If this is the entry block of the function, it is a
161 // clobber, otherwise it is non-local.
162 if (BB != &BB->getParent()->getEntryBlock())
163 return MemDepResult::getNonLocal();
164 return MemDepResult::getClobber(ScanIt);
Owen Anderson5f323202007-07-10 17:59:22 +0000165}
166
Chris Lattnere79be942008-12-07 01:50:16 +0000167/// getPointerDependencyFrom - Return the instruction on which a memory
168/// location depends. If isLoad is true, this routine ignore may-aliases with
169/// read-only operations.
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000170MemDepResult MemoryDependenceAnalysis::
Owen Anderson4bc737c2009-10-28 06:18:42 +0000171getPointerDependencyFrom(Value *MemPtr, uint64_t MemSize, bool isLoad,
Chris Lattnere79be942008-12-07 01:50:16 +0000172 BasicBlock::iterator ScanIt, BasicBlock *BB) {
Chris Lattner7ebcf032008-12-07 02:15:47 +0000173
Nick Lewyckyf27f1152009-11-22 02:38:11 +0000174 Value *invariantTag = 0;
Owen Anderson4bc737c2009-10-28 06:18:42 +0000175
Chris Lattner6290f5c2008-12-07 08:50:20 +0000176 // Walk backwards through the basic block, looking for dependencies.
Chris Lattner5391a1d2008-11-29 03:47:00 +0000177 while (ScanIt != BB->begin()) {
178 Instruction *Inst = --ScanIt;
Chris Lattnera161ab02008-11-29 09:09:48 +0000179
Owen Anderson4bc737c2009-10-28 06:18:42 +0000180 // If we're in an invariant region, no dependencies can be found before
181 // we pass an invariant-begin marker.
182 if (invariantTag == Inst) {
183 invariantTag = 0;
184 continue;
Nick Lewyckyf27f1152009-11-22 02:38:11 +0000185 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
Owen Andersonb62f7922009-10-28 07:05:35 +0000186 // If we pass an invariant-end marker, then we've just entered an
187 // invariant region and can start ignoring dependencies.
Owen Anderson4bc737c2009-10-28 06:18:42 +0000188 if (II->getIntrinsicID() == Intrinsic::invariant_end) {
189 uint64_t invariantSize = ~0ULL;
Nick Lewyckyf27f1152009-11-22 02:38:11 +0000190 if (ConstantInt *CI = dyn_cast<ConstantInt>(II->getOperand(2)))
Owen Anderson4bc737c2009-10-28 06:18:42 +0000191 invariantSize = CI->getZExtValue();
192
193 AliasAnalysis::AliasResult R =
194 AA->alias(II->getOperand(3), invariantSize, MemPtr, MemSize);
195 if (R == AliasAnalysis::MustAlias) {
196 invariantTag = II->getOperand(1);
197 continue;
198 }
Owen Andersonb62f7922009-10-28 07:05:35 +0000199
200 // If we reach a lifetime begin or end marker, then the query ends here
201 // because the value is undefined.
202 } else if (II->getIntrinsicID() == Intrinsic::lifetime_start ||
203 II->getIntrinsicID() == Intrinsic::lifetime_end) {
204 uint64_t invariantSize = ~0ULL;
Nick Lewyckyf27f1152009-11-22 02:38:11 +0000205 if (ConstantInt *CI = dyn_cast<ConstantInt>(II->getOperand(1)))
Owen Andersonb62f7922009-10-28 07:05:35 +0000206 invariantSize = CI->getZExtValue();
207
208 AliasAnalysis::AliasResult R =
209 AA->alias(II->getOperand(2), invariantSize, MemPtr, MemSize);
210 if (R == AliasAnalysis::MustAlias)
211 return MemDepResult::getDef(II);
Owen Anderson4bc737c2009-10-28 06:18:42 +0000212 }
213 }
214
215 // If we're querying on a load and we're in an invariant region, we're done
216 // at this point. Nothing a load depends on can live in an invariant region.
217 if (isLoad && invariantTag) continue;
218
Owen Andersonf6cec852009-03-09 05:12:38 +0000219 // Debug intrinsics don't cause dependences.
220 if (isa<DbgInfoIntrinsic>(Inst)) continue;
221
Chris Lattnercfbb6342008-11-30 01:44:00 +0000222 // Values depend on loads if the pointers are must aliased. This means that
223 // a load depends on another must aliased load from the same value.
Chris Lattnerb51deb92008-12-05 21:04:20 +0000224 if (LoadInst *LI = dyn_cast<LoadInst>(Inst)) {
Chris Lattnerb51deb92008-12-05 21:04:20 +0000225 Value *Pointer = LI->getPointerOperand();
Dan Gohmanf5812132009-07-31 20:53:12 +0000226 uint64_t PointerSize = AA->getTypeStoreSize(LI->getType());
Chris Lattnerb51deb92008-12-05 21:04:20 +0000227
228 // If we found a pointer, check if it could be the same as our pointer.
Chris Lattnera161ab02008-11-29 09:09:48 +0000229 AliasAnalysis::AliasResult R =
Chris Lattnerd777d402008-11-30 19:24:31 +0000230 AA->alias(Pointer, PointerSize, MemPtr, MemSize);
Chris Lattnera161ab02008-11-29 09:09:48 +0000231 if (R == AliasAnalysis::NoAlias)
232 continue;
233
234 // May-alias loads don't depend on each other without a dependence.
Chris Lattnere79be942008-12-07 01:50:16 +0000235 if (isLoad && R == AliasAnalysis::MayAlias)
Chris Lattnera161ab02008-11-29 09:09:48 +0000236 continue;
Chris Lattner6290f5c2008-12-07 08:50:20 +0000237 // Stores depend on may and must aliased loads, loads depend on must-alias
238 // loads.
Chris Lattnerb51deb92008-12-05 21:04:20 +0000239 return MemDepResult::getDef(Inst);
240 }
241
242 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
Owen Andersona85a6642009-10-28 06:30:52 +0000243 // There can't be stores to the value we care about inside an
244 // invariant region.
245 if (invariantTag) continue;
246
Chris Lattnerab9cf122009-05-25 21:28:56 +0000247 // If alias analysis can tell that this store is guaranteed to not modify
248 // the query pointer, ignore it. Use getModRefInfo to handle cases where
249 // the query pointer points to constant memory etc.
250 if (AA->getModRefInfo(SI, MemPtr, MemSize) == AliasAnalysis::NoModRef)
251 continue;
252
253 // Ok, this store might clobber the query pointer. Check to see if it is
254 // a must alias: in this case, we want to return this as a def.
Chris Lattnerb51deb92008-12-05 21:04:20 +0000255 Value *Pointer = SI->getPointerOperand();
Dan Gohmanf5812132009-07-31 20:53:12 +0000256 uint64_t PointerSize = AA->getTypeStoreSize(SI->getOperand(0)->getType());
Chris Lattnerab9cf122009-05-25 21:28:56 +0000257
Chris Lattnerb51deb92008-12-05 21:04:20 +0000258 // If we found a pointer, check if it could be the same as our pointer.
259 AliasAnalysis::AliasResult R =
260 AA->alias(Pointer, PointerSize, MemPtr, MemSize);
261
262 if (R == AliasAnalysis::NoAlias)
263 continue;
264 if (R == AliasAnalysis::MayAlias)
265 return MemDepResult::getClobber(Inst);
266 return MemDepResult::getDef(Inst);
Owen Anderson78e02f72007-07-06 23:14:35 +0000267 }
Chris Lattner237a8282008-11-30 01:39:32 +0000268
269 // If this is an allocation, and if we know that the accessed pointer is to
Chris Lattnerb51deb92008-12-05 21:04:20 +0000270 // the allocation, return Def. This means that there is no dependence and
Chris Lattner237a8282008-11-30 01:39:32 +0000271 // the access can be optimized based on that. For example, a load could
272 // turn into undef.
Victor Hernandez5c787362009-10-13 01:42:53 +0000273 // Note: Only determine this to be a malloc if Inst is the malloc call, not
274 // a subsequent bitcast of the malloc call result. There can be stores to
275 // the malloced memory between the malloc call and its bitcast uses, and we
276 // need to continue scanning until the malloc call.
Victor Hernandez7b929da2009-10-23 21:09:37 +0000277 if (isa<AllocaInst>(Inst) || extractMallocCall(Inst)) {
Victor Hernandez46e83122009-09-18 21:34:51 +0000278 Value *AccessPtr = MemPtr->getUnderlyingObject();
279
280 if (AccessPtr == Inst ||
281 AA->alias(Inst, 1, AccessPtr, 1) == AliasAnalysis::MustAlias)
282 return MemDepResult::getDef(Inst);
283 continue;
284 }
285
Chris Lattnerb51deb92008-12-05 21:04:20 +0000286 // See if this instruction (e.g. a call or vaarg) mod/ref's the pointer.
Chris Lattner3579e442008-12-09 19:47:40 +0000287 switch (AA->getModRefInfo(Inst, MemPtr, MemSize)) {
288 case AliasAnalysis::NoModRef:
289 // If the call has no effect on the queried pointer, just ignore it.
Chris Lattner25a08142008-11-29 08:51:16 +0000290 continue;
Owen Andersona85a6642009-10-28 06:30:52 +0000291 case AliasAnalysis::Mod:
292 // If we're in an invariant region, we can ignore calls that ONLY
293 // modify the pointer.
294 if (invariantTag) continue;
295 return MemDepResult::getClobber(Inst);
Chris Lattner3579e442008-12-09 19:47:40 +0000296 case AliasAnalysis::Ref:
297 // If the call is known to never store to the pointer, and if this is a
298 // load query, we can safely ignore it (scan past it).
299 if (isLoad)
300 continue;
Chris Lattner3579e442008-12-09 19:47:40 +0000301 default:
302 // Otherwise, there is a potential dependence. Return a clobber.
303 return MemDepResult::getClobber(Inst);
304 }
Owen Anderson78e02f72007-07-06 23:14:35 +0000305 }
306
Chris Lattner7ebcf032008-12-07 02:15:47 +0000307 // No dependence found. If this is the entry block of the function, it is a
308 // clobber, otherwise it is non-local.
309 if (BB != &BB->getParent()->getEntryBlock())
310 return MemDepResult::getNonLocal();
311 return MemDepResult::getClobber(ScanIt);
Owen Anderson78e02f72007-07-06 23:14:35 +0000312}
313
Chris Lattner5391a1d2008-11-29 03:47:00 +0000314/// getDependency - Return the instruction on which a memory operation
315/// depends.
316MemDepResult MemoryDependenceAnalysis::getDependency(Instruction *QueryInst) {
317 Instruction *ScanPos = QueryInst;
318
319 // Check for a cached result
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000320 MemDepResult &LocalCache = LocalDeps[QueryInst];
Chris Lattner5391a1d2008-11-29 03:47:00 +0000321
Chris Lattner0ec48dd2008-11-29 22:02:15 +0000322 // If the cached entry is non-dirty, just return it. Note that this depends
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000323 // on MemDepResult's default constructing to 'dirty'.
324 if (!LocalCache.isDirty())
325 return LocalCache;
Chris Lattner5391a1d2008-11-29 03:47:00 +0000326
327 // Otherwise, if we have a dirty entry, we know we can start the scan at that
328 // instruction, which may save us some work.
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000329 if (Instruction *Inst = LocalCache.getInst()) {
Chris Lattner5391a1d2008-11-29 03:47:00 +0000330 ScanPos = Inst;
Chris Lattner4a69bad2008-11-30 02:52:26 +0000331
Chris Lattnerd44745d2008-12-07 18:39:13 +0000332 RemoveFromReverseMap(ReverseLocalDeps, Inst, QueryInst);
Chris Lattner4a69bad2008-11-30 02:52:26 +0000333 }
Chris Lattner5391a1d2008-11-29 03:47:00 +0000334
Chris Lattnere79be942008-12-07 01:50:16 +0000335 BasicBlock *QueryParent = QueryInst->getParent();
336
337 Value *MemPtr = 0;
338 uint64_t MemSize = 0;
339
Chris Lattner5391a1d2008-11-29 03:47:00 +0000340 // Do the scan.
Chris Lattnere79be942008-12-07 01:50:16 +0000341 if (BasicBlock::iterator(QueryInst) == QueryParent->begin()) {
Chris Lattner7ebcf032008-12-07 02:15:47 +0000342 // No dependence found. If this is the entry block of the function, it is a
343 // clobber, otherwise it is non-local.
344 if (QueryParent != &QueryParent->getParent()->getEntryBlock())
345 LocalCache = MemDepResult::getNonLocal();
346 else
347 LocalCache = MemDepResult::getClobber(QueryInst);
Chris Lattnere79be942008-12-07 01:50:16 +0000348 } else if (StoreInst *SI = dyn_cast<StoreInst>(QueryInst)) {
349 // If this is a volatile store, don't mess around with it. Just return the
350 // previous instruction as a clobber.
351 if (SI->isVolatile())
352 LocalCache = MemDepResult::getClobber(--BasicBlock::iterator(ScanPos));
353 else {
354 MemPtr = SI->getPointerOperand();
Dan Gohmanf5812132009-07-31 20:53:12 +0000355 MemSize = AA->getTypeStoreSize(SI->getOperand(0)->getType());
Chris Lattnere79be942008-12-07 01:50:16 +0000356 }
357 } else if (LoadInst *LI = dyn_cast<LoadInst>(QueryInst)) {
358 // If this is a volatile load, don't mess around with it. Just return the
359 // previous instruction as a clobber.
360 if (LI->isVolatile())
361 LocalCache = MemDepResult::getClobber(--BasicBlock::iterator(ScanPos));
362 else {
363 MemPtr = LI->getPointerOperand();
Dan Gohmanf5812132009-07-31 20:53:12 +0000364 MemSize = AA->getTypeStoreSize(LI->getType());
Chris Lattnere79be942008-12-07 01:50:16 +0000365 }
Victor Hernandez66284e02009-10-24 04:23:03 +0000366 } else if (isFreeCall(QueryInst)) {
Victor Hernandez046e78c2009-10-26 23:43:48 +0000367 MemPtr = QueryInst->getOperand(1);
Victor Hernandez66284e02009-10-24 04:23:03 +0000368 // calls to free() erase the entire structure, not just a field.
369 MemSize = ~0UL;
Chris Lattnere79be942008-12-07 01:50:16 +0000370 } else if (isa<CallInst>(QueryInst) || isa<InvokeInst>(QueryInst)) {
Chris Lattner20d6f092008-12-09 21:19:42 +0000371 CallSite QueryCS = CallSite::get(QueryInst);
372 bool isReadOnly = AA->onlyReadsMemory(QueryCS);
373 LocalCache = getCallSiteDependencyFrom(QueryCS, isReadOnly, ScanPos,
Chris Lattnere79be942008-12-07 01:50:16 +0000374 QueryParent);
Chris Lattnere79be942008-12-07 01:50:16 +0000375 } else {
376 // Non-memory instruction.
377 LocalCache = MemDepResult::getClobber(--BasicBlock::iterator(ScanPos));
378 }
379
380 // If we need to do a pointer scan, make it happen.
381 if (MemPtr)
382 LocalCache = getPointerDependencyFrom(MemPtr, MemSize,
383 isa<LoadInst>(QueryInst),
384 ScanPos, QueryParent);
Chris Lattner5391a1d2008-11-29 03:47:00 +0000385
386 // Remember the result!
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000387 if (Instruction *I = LocalCache.getInst())
Chris Lattner8c465272008-11-29 09:20:15 +0000388 ReverseLocalDeps[I].insert(QueryInst);
Chris Lattner5391a1d2008-11-29 03:47:00 +0000389
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000390 return LocalCache;
Chris Lattner5391a1d2008-11-29 03:47:00 +0000391}
392
Chris Lattner12a7db32009-01-22 07:04:01 +0000393#ifndef NDEBUG
394/// AssertSorted - This method is used when -debug is specified to verify that
395/// cache arrays are properly kept sorted.
396static void AssertSorted(MemoryDependenceAnalysis::NonLocalDepInfo &Cache,
397 int Count = -1) {
398 if (Count == -1) Count = Cache.size();
399 if (Count == 0) return;
400
401 for (unsigned i = 1; i != unsigned(Count); ++i)
402 assert(Cache[i-1] <= Cache[i] && "Cache isn't sorted!");
403}
404#endif
405
Chris Lattner1559b362008-12-09 19:38:05 +0000406/// getNonLocalCallDependency - Perform a full dependency query for the
407/// specified call, returning the set of blocks that the value is
Chris Lattner37d041c2008-11-30 01:18:27 +0000408/// potentially live across. The returned set of results will include a
409/// "NonLocal" result for all blocks where the value is live across.
410///
Chris Lattner1559b362008-12-09 19:38:05 +0000411/// This method assumes the instruction returns a "NonLocal" dependency
Chris Lattner37d041c2008-11-30 01:18:27 +0000412/// within its own block.
413///
Chris Lattner1559b362008-12-09 19:38:05 +0000414/// This returns a reference to an internal data structure that may be
415/// invalidated on the next non-local query or when an instruction is
416/// removed. Clients must copy this data if they want it around longer than
417/// that.
Chris Lattnerbf145d62008-12-01 01:15:42 +0000418const MemoryDependenceAnalysis::NonLocalDepInfo &
Chris Lattner1559b362008-12-09 19:38:05 +0000419MemoryDependenceAnalysis::getNonLocalCallDependency(CallSite QueryCS) {
420 assert(getDependency(QueryCS.getInstruction()).isNonLocal() &&
421 "getNonLocalCallDependency should only be used on calls with non-local deps!");
422 PerInstNLInfo &CacheP = NonLocalDeps[QueryCS.getInstruction()];
Chris Lattnerbf145d62008-12-01 01:15:42 +0000423 NonLocalDepInfo &Cache = CacheP.first;
Chris Lattner37d041c2008-11-30 01:18:27 +0000424
425 /// DirtyBlocks - This is the set of blocks that need to be recomputed. In
426 /// the cached case, this can happen due to instructions being deleted etc. In
427 /// the uncached case, this starts out as the set of predecessors we care
428 /// about.
429 SmallVector<BasicBlock*, 32> DirtyBlocks;
430
431 if (!Cache.empty()) {
Chris Lattnerbf145d62008-12-01 01:15:42 +0000432 // Okay, we have a cache entry. If we know it is not dirty, just return it
433 // with no computation.
434 if (!CacheP.second) {
435 NumCacheNonLocal++;
436 return Cache;
437 }
438
Chris Lattner37d041c2008-11-30 01:18:27 +0000439 // If we already have a partially computed set of results, scan them to
Chris Lattnerbf145d62008-12-01 01:15:42 +0000440 // determine what is dirty, seeding our initial DirtyBlocks worklist.
441 for (NonLocalDepInfo::iterator I = Cache.begin(), E = Cache.end();
442 I != E; ++I)
443 if (I->second.isDirty())
444 DirtyBlocks.push_back(I->first);
Chris Lattner37d041c2008-11-30 01:18:27 +0000445
Chris Lattnerbf145d62008-12-01 01:15:42 +0000446 // Sort the cache so that we can do fast binary search lookups below.
447 std::sort(Cache.begin(), Cache.end());
Chris Lattner37d041c2008-11-30 01:18:27 +0000448
Chris Lattnerbf145d62008-12-01 01:15:42 +0000449 ++NumCacheDirtyNonLocal;
Chris Lattner37d041c2008-11-30 01:18:27 +0000450 //cerr << "CACHED CASE: " << DirtyBlocks.size() << " dirty: "
451 // << Cache.size() << " cached: " << *QueryInst;
452 } else {
453 // Seed DirtyBlocks with each of the preds of QueryInst's block.
Chris Lattner1559b362008-12-09 19:38:05 +0000454 BasicBlock *QueryBB = QueryCS.getInstruction()->getParent();
Chris Lattner511b36c2008-12-09 06:44:17 +0000455 for (BasicBlock **PI = PredCache->GetPreds(QueryBB); *PI; ++PI)
456 DirtyBlocks.push_back(*PI);
Chris Lattner37d041c2008-11-30 01:18:27 +0000457 NumUncacheNonLocal++;
458 }
459
Chris Lattner20d6f092008-12-09 21:19:42 +0000460 // isReadonlyCall - If this is a read-only call, we can be more aggressive.
461 bool isReadonlyCall = AA->onlyReadsMemory(QueryCS);
Chris Lattner9e59c642008-12-15 03:35:32 +0000462
Chris Lattnerbf145d62008-12-01 01:15:42 +0000463 SmallPtrSet<BasicBlock*, 64> Visited;
464
465 unsigned NumSortedEntries = Cache.size();
Chris Lattner12a7db32009-01-22 07:04:01 +0000466 DEBUG(AssertSorted(Cache));
Chris Lattnerbf145d62008-12-01 01:15:42 +0000467
Chris Lattner37d041c2008-11-30 01:18:27 +0000468 // Iterate while we still have blocks to update.
469 while (!DirtyBlocks.empty()) {
470 BasicBlock *DirtyBB = DirtyBlocks.back();
471 DirtyBlocks.pop_back();
472
Chris Lattnerbf145d62008-12-01 01:15:42 +0000473 // Already processed this block?
474 if (!Visited.insert(DirtyBB))
475 continue;
Chris Lattner37d041c2008-11-30 01:18:27 +0000476
Chris Lattnerbf145d62008-12-01 01:15:42 +0000477 // Do a binary search to see if we already have an entry for this block in
478 // the cache set. If so, find it.
Chris Lattner12a7db32009-01-22 07:04:01 +0000479 DEBUG(AssertSorted(Cache, NumSortedEntries));
Chris Lattnerbf145d62008-12-01 01:15:42 +0000480 NonLocalDepInfo::iterator Entry =
481 std::upper_bound(Cache.begin(), Cache.begin()+NumSortedEntries,
482 std::make_pair(DirtyBB, MemDepResult()));
Duncan Sands7050f3d2008-12-10 09:38:36 +0000483 if (Entry != Cache.begin() && prior(Entry)->first == DirtyBB)
Chris Lattnerbf145d62008-12-01 01:15:42 +0000484 --Entry;
485
486 MemDepResult *ExistingResult = 0;
487 if (Entry != Cache.begin()+NumSortedEntries &&
488 Entry->first == DirtyBB) {
489 // If we already have an entry, and if it isn't already dirty, the block
490 // is done.
491 if (!Entry->second.isDirty())
492 continue;
493
494 // Otherwise, remember this slot so we can update the value.
495 ExistingResult = &Entry->second;
496 }
497
Chris Lattner37d041c2008-11-30 01:18:27 +0000498 // If the dirty entry has a pointer, start scanning from it so we don't have
499 // to rescan the entire block.
500 BasicBlock::iterator ScanPos = DirtyBB->end();
Chris Lattnerbf145d62008-12-01 01:15:42 +0000501 if (ExistingResult) {
502 if (Instruction *Inst = ExistingResult->getInst()) {
503 ScanPos = Inst;
Chris Lattnerbf145d62008-12-01 01:15:42 +0000504 // We're removing QueryInst's use of Inst.
Chris Lattner1559b362008-12-09 19:38:05 +0000505 RemoveFromReverseMap(ReverseNonLocalDeps, Inst,
506 QueryCS.getInstruction());
Chris Lattnerbf145d62008-12-01 01:15:42 +0000507 }
Chris Lattnerf68f3102008-11-30 02:28:25 +0000508 }
Chris Lattner37d041c2008-11-30 01:18:27 +0000509
Chris Lattner73ec3cd2008-11-30 01:26:32 +0000510 // Find out if this block has a local dependency for QueryInst.
Chris Lattnerd8dd9342008-12-07 01:21:14 +0000511 MemDepResult Dep;
Chris Lattnere79be942008-12-07 01:50:16 +0000512
Chris Lattner1559b362008-12-09 19:38:05 +0000513 if (ScanPos != DirtyBB->begin()) {
Chris Lattner20d6f092008-12-09 21:19:42 +0000514 Dep = getCallSiteDependencyFrom(QueryCS, isReadonlyCall,ScanPos, DirtyBB);
Chris Lattner1559b362008-12-09 19:38:05 +0000515 } else if (DirtyBB != &DirtyBB->getParent()->getEntryBlock()) {
516 // No dependence found. If this is the entry block of the function, it is
517 // a clobber, otherwise it is non-local.
518 Dep = MemDepResult::getNonLocal();
Chris Lattnere79be942008-12-07 01:50:16 +0000519 } else {
Chris Lattner1559b362008-12-09 19:38:05 +0000520 Dep = MemDepResult::getClobber(ScanPos);
Chris Lattnere79be942008-12-07 01:50:16 +0000521 }
522
Chris Lattnerbf145d62008-12-01 01:15:42 +0000523 // If we had a dirty entry for the block, update it. Otherwise, just add
524 // a new entry.
525 if (ExistingResult)
526 *ExistingResult = Dep;
527 else
528 Cache.push_back(std::make_pair(DirtyBB, Dep));
529
Chris Lattner37d041c2008-11-30 01:18:27 +0000530 // If the block has a dependency (i.e. it isn't completely transparent to
Chris Lattnerbf145d62008-12-01 01:15:42 +0000531 // the value), remember the association!
532 if (!Dep.isNonLocal()) {
Chris Lattner37d041c2008-11-30 01:18:27 +0000533 // Keep the ReverseNonLocalDeps map up to date so we can efficiently
534 // update this when we remove instructions.
Chris Lattnerbf145d62008-12-01 01:15:42 +0000535 if (Instruction *Inst = Dep.getInst())
Chris Lattner1559b362008-12-09 19:38:05 +0000536 ReverseNonLocalDeps[Inst].insert(QueryCS.getInstruction());
Chris Lattnerbf145d62008-12-01 01:15:42 +0000537 } else {
Chris Lattner37d041c2008-11-30 01:18:27 +0000538
Chris Lattnerbf145d62008-12-01 01:15:42 +0000539 // If the block *is* completely transparent to the load, we need to check
540 // the predecessors of this block. Add them to our worklist.
Chris Lattner511b36c2008-12-09 06:44:17 +0000541 for (BasicBlock **PI = PredCache->GetPreds(DirtyBB); *PI; ++PI)
542 DirtyBlocks.push_back(*PI);
Chris Lattnerbf145d62008-12-01 01:15:42 +0000543 }
Chris Lattner37d041c2008-11-30 01:18:27 +0000544 }
545
Chris Lattnerbf145d62008-12-01 01:15:42 +0000546 return Cache;
Chris Lattner37d041c2008-11-30 01:18:27 +0000547}
548
Chris Lattner7ebcf032008-12-07 02:15:47 +0000549/// getNonLocalPointerDependency - Perform a full dependency query for an
550/// access to the specified (non-volatile) memory location, returning the
551/// set of instructions that either define or clobber the value.
552///
553/// This method assumes the pointer has a "NonLocal" dependency within its
554/// own block.
555///
556void MemoryDependenceAnalysis::
557getNonLocalPointerDependency(Value *Pointer, bool isLoad, BasicBlock *FromBB,
558 SmallVectorImpl<NonLocalDepEntry> &Result) {
Chris Lattner3f7eb5b2008-12-07 18:45:15 +0000559 assert(isa<PointerType>(Pointer->getType()) &&
560 "Can't get pointer deps of a non-pointer!");
Chris Lattner9a193fd2008-12-07 02:56:57 +0000561 Result.clear();
562
Chris Lattner7ebcf032008-12-07 02:15:47 +0000563 // We know that the pointer value is live into FromBB find the def/clobbers
564 // from presecessors.
Chris Lattner7ebcf032008-12-07 02:15:47 +0000565 const Type *EltTy = cast<PointerType>(Pointer->getType())->getElementType();
Dan Gohmanf5812132009-07-31 20:53:12 +0000566 uint64_t PointeeSize = AA->getTypeStoreSize(EltTy);
Chris Lattner7ebcf032008-12-07 02:15:47 +0000567
Chris Lattner9e59c642008-12-15 03:35:32 +0000568 // This is the set of blocks we've inspected, and the pointer we consider in
569 // each block. Because of critical edges, we currently bail out if querying
570 // a block with multiple different pointers. This can happen during PHI
571 // translation.
572 DenseMap<BasicBlock*, Value*> Visited;
573 if (!getNonLocalPointerDepFromBB(Pointer, PointeeSize, isLoad, FromBB,
574 Result, Visited, true))
575 return;
Chris Lattner3af23f82008-12-15 04:58:29 +0000576 Result.clear();
Chris Lattner9e59c642008-12-15 03:35:32 +0000577 Result.push_back(std::make_pair(FromBB,
578 MemDepResult::getClobber(FromBB->begin())));
Chris Lattner9a193fd2008-12-07 02:56:57 +0000579}
580
Chris Lattner9863c3f2008-12-09 07:47:11 +0000581/// GetNonLocalInfoForBlock - Compute the memdep value for BB with
582/// Pointer/PointeeSize using either cached information in Cache or by doing a
583/// lookup (which may use dirty cache info if available). If we do a lookup,
584/// add the result to the cache.
585MemDepResult MemoryDependenceAnalysis::
586GetNonLocalInfoForBlock(Value *Pointer, uint64_t PointeeSize,
587 bool isLoad, BasicBlock *BB,
588 NonLocalDepInfo *Cache, unsigned NumSortedEntries) {
589
590 // Do a binary search to see if we already have an entry for this block in
591 // the cache set. If so, find it.
592 NonLocalDepInfo::iterator Entry =
593 std::upper_bound(Cache->begin(), Cache->begin()+NumSortedEntries,
594 std::make_pair(BB, MemDepResult()));
Duncan Sands7050f3d2008-12-10 09:38:36 +0000595 if (Entry != Cache->begin() && prior(Entry)->first == BB)
Chris Lattner9863c3f2008-12-09 07:47:11 +0000596 --Entry;
597
598 MemDepResult *ExistingResult = 0;
599 if (Entry != Cache->begin()+NumSortedEntries && Entry->first == BB)
600 ExistingResult = &Entry->second;
601
602 // If we have a cached entry, and it is non-dirty, use it as the value for
603 // this dependency.
604 if (ExistingResult && !ExistingResult->isDirty()) {
605 ++NumCacheNonLocalPtr;
606 return *ExistingResult;
607 }
608
609 // Otherwise, we have to scan for the value. If we have a dirty cache
610 // entry, start scanning from its position, otherwise we scan from the end
611 // of the block.
612 BasicBlock::iterator ScanPos = BB->end();
613 if (ExistingResult && ExistingResult->getInst()) {
614 assert(ExistingResult->getInst()->getParent() == BB &&
615 "Instruction invalidated?");
616 ++NumCacheDirtyNonLocalPtr;
617 ScanPos = ExistingResult->getInst();
618
619 // Eliminating the dirty entry from 'Cache', so update the reverse info.
620 ValueIsLoadPair CacheKey(Pointer, isLoad);
Chris Lattner6a0dcc12009-03-29 00:24:04 +0000621 RemoveFromReverseMap(ReverseNonLocalPtrDeps, ScanPos, CacheKey);
Chris Lattner9863c3f2008-12-09 07:47:11 +0000622 } else {
623 ++NumUncacheNonLocalPtr;
624 }
625
626 // Scan the block for the dependency.
627 MemDepResult Dep = getPointerDependencyFrom(Pointer, PointeeSize, isLoad,
628 ScanPos, BB);
629
630 // If we had a dirty entry for the block, update it. Otherwise, just add
631 // a new entry.
632 if (ExistingResult)
633 *ExistingResult = Dep;
634 else
635 Cache->push_back(std::make_pair(BB, Dep));
636
637 // If the block has a dependency (i.e. it isn't completely transparent to
638 // the value), remember the reverse association because we just added it
639 // to Cache!
640 if (Dep.isNonLocal())
641 return Dep;
642
643 // Keep the ReverseNonLocalPtrDeps map up to date so we can efficiently
644 // update MemDep when we remove instructions.
645 Instruction *Inst = Dep.getInst();
646 assert(Inst && "Didn't depend on anything?");
647 ValueIsLoadPair CacheKey(Pointer, isLoad);
Chris Lattner6a0dcc12009-03-29 00:24:04 +0000648 ReverseNonLocalPtrDeps[Inst].insert(CacheKey);
Chris Lattner9863c3f2008-12-09 07:47:11 +0000649 return Dep;
650}
651
Chris Lattnera2f55dd2009-07-13 17:20:05 +0000652/// SortNonLocalDepInfoCache - Sort the a NonLocalDepInfo cache, given a certain
653/// number of elements in the array that are already properly ordered. This is
654/// optimized for the case when only a few entries are added.
655static void
656SortNonLocalDepInfoCache(MemoryDependenceAnalysis::NonLocalDepInfo &Cache,
657 unsigned NumSortedEntries) {
658 switch (Cache.size() - NumSortedEntries) {
659 case 0:
660 // done, no new entries.
661 break;
662 case 2: {
663 // Two new entries, insert the last one into place.
664 MemoryDependenceAnalysis::NonLocalDepEntry Val = Cache.back();
665 Cache.pop_back();
666 MemoryDependenceAnalysis::NonLocalDepInfo::iterator Entry =
667 std::upper_bound(Cache.begin(), Cache.end()-1, Val);
668 Cache.insert(Entry, Val);
669 // FALL THROUGH.
670 }
671 case 1:
672 // One new entry, Just insert the new value at the appropriate position.
673 if (Cache.size() != 1) {
674 MemoryDependenceAnalysis::NonLocalDepEntry Val = Cache.back();
675 Cache.pop_back();
676 MemoryDependenceAnalysis::NonLocalDepInfo::iterator Entry =
677 std::upper_bound(Cache.begin(), Cache.end(), Val);
678 Cache.insert(Entry, Val);
679 }
680 break;
681 default:
682 // Added many values, do a full scale sort.
683 std::sort(Cache.begin(), Cache.end());
684 break;
685 }
686}
687
Chris Lattnerdc593112009-11-26 23:18:49 +0000688/// isPHITranslatable - Return true if the specified computation is derived from
689/// a PHI node in the current block and if it is simple enough for us to handle.
690static bool isPHITranslatable(Instruction *Inst) {
691 if (isa<PHINode>(Inst))
692 return true;
693
Chris Lattnercc3d0eb2009-11-26 23:41:07 +0000694 // We can handle bitcast of a PHI, but the PHI needs to be in the same block
695 // as the bitcast.
696 if (BitCastInst *BC = dyn_cast<BitCastInst>(Inst))
697 if (PHINode *PN = dyn_cast<PHINode>(BC->getOperand(0)))
698 if (PN->getParent() == BC->getParent())
699 return true;
Chris Lattnerdc593112009-11-26 23:18:49 +0000700
Chris Lattner30407622009-11-27 00:07:37 +0000701 // We can translate a GEP that uses a PHI in the current block for at least
702 // one of its operands.
703 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Inst)) {
704 for (unsigned i = 0, e = GEP->getNumOperands(); i != e; ++i)
705 if (PHINode *PN = dyn_cast<PHINode>(GEP->getOperand(i)))
706 if (PN->getParent() == GEP->getParent())
707 return true;
708 }
Chris Lattnercc3d0eb2009-11-26 23:41:07 +0000709
Chris Lattnerdc593112009-11-26 23:18:49 +0000710 // cerr << "MEMDEP: Could not PHI translate: " << *Pointer;
711 // if (isa<BitCastInst>(PtrInst) || isa<GetElementPtrInst>(PtrInst))
712 // cerr << "OP:\t\t\t\t" << *PtrInst->getOperand(0);
713
714 return false;
715}
716
717/// PHITranslateForPred - Given a computation that satisfied the
718/// isPHITranslatable predicate, see if we can translate the computation into
719/// the specified predecessor block. If so, return that value.
Chris Lattner62deff02009-11-27 06:31:14 +0000720Value *MemoryDependenceAnalysis::
721PHITranslatePointer(Value *InVal, BasicBlock *CurBB, BasicBlock *Pred,
722 const TargetData *TD) const {
723 // If the input value is not an instruction, or if it is not defined in CurBB,
724 // then we don't need to phi translate it.
725 Instruction *Inst = dyn_cast<Instruction>(InVal);
726 if (Inst == 0 || Inst->getParent() != CurBB)
727 return InVal;
728
Chris Lattnerdc593112009-11-26 23:18:49 +0000729 if (PHINode *PN = dyn_cast<PHINode>(Inst))
730 return PN->getIncomingValueForBlock(Pred);
731
Chris Lattner30407622009-11-27 00:07:37 +0000732 // Handle bitcast of PHI.
Chris Lattnercc3d0eb2009-11-26 23:41:07 +0000733 if (BitCastInst *BC = dyn_cast<BitCastInst>(Inst)) {
734 PHINode *BCPN = cast<PHINode>(BC->getOperand(0));
735 Value *PHIIn = BCPN->getIncomingValueForBlock(Pred);
736
737 // Constants are trivial to phi translate.
738 if (Constant *C = dyn_cast<Constant>(PHIIn))
739 return ConstantExpr::getBitCast(C, BC->getType());
740
741 // Otherwise we have to see if a bitcasted version of the incoming pointer
742 // is available. If so, we can use it, otherwise we have to fail.
743 for (Value::use_iterator UI = PHIIn->use_begin(), E = PHIIn->use_end();
744 UI != E; ++UI) {
745 if (BitCastInst *BCI = dyn_cast<BitCastInst>(*UI))
746 if (BCI->getType() == BC->getType())
747 return BCI;
748 }
749 return 0;
750 }
751
Chris Lattner30407622009-11-27 00:07:37 +0000752 // Handle getelementptr with at least one PHI operand.
753 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Inst)) {
754 SmallVector<Value*, 8> GEPOps;
755 Value *APHIOp = 0;
Chris Lattnercca130b2009-11-27 05:19:56 +0000756 BasicBlock *CurBB = GEP->getParent();
Chris Lattner30407622009-11-27 00:07:37 +0000757 for (unsigned i = 0, e = GEP->getNumOperands(); i != e; ++i) {
Chris Lattnercca130b2009-11-27 05:19:56 +0000758 GEPOps.push_back(GEP->getOperand(i)->DoPHITranslation(CurBB, Pred));
759 if (!isa<Constant>(GEPOps.back()))
760 APHIOp = GEPOps.back();
Chris Lattner30407622009-11-27 00:07:37 +0000761 }
762
Chris Lattnere19e4ba2009-11-27 00:34:38 +0000763 // Simplify the GEP to handle 'gep x, 0' -> x etc.
764 if (Value *V = SimplifyGEPInst(&GEPOps[0], GEPOps.size(), TD))
765 return V;
Chris Lattner30407622009-11-27 00:07:37 +0000766
767 // Scan to see if we have this GEP available.
768 for (Value::use_iterator UI = APHIOp->use_begin(), E = APHIOp->use_end();
769 UI != E; ++UI) {
770 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(*UI))
Chris Lattnercca130b2009-11-27 05:19:56 +0000771 if (GEPI->getType() == GEP->getType() &&
Chris Lattner30407622009-11-27 00:07:37 +0000772 GEPI->getNumOperands() == GEPOps.size() &&
Chris Lattnercca130b2009-11-27 05:19:56 +0000773 GEPI->getParent()->getParent() == CurBB->getParent()) {
Chris Lattner30407622009-11-27 00:07:37 +0000774 bool Mismatch = false;
775 for (unsigned i = 0, e = GEPOps.size(); i != e; ++i)
776 if (GEPI->getOperand(i) != GEPOps[i]) {
777 Mismatch = true;
778 break;
779 }
780 if (!Mismatch)
781 return GEPI;
782 }
783 }
784 return 0;
785 }
786
Chris Lattnerdc593112009-11-26 23:18:49 +0000787 return 0;
788}
789
Chris Lattner9863c3f2008-12-09 07:47:11 +0000790
Chris Lattner9e59c642008-12-15 03:35:32 +0000791/// getNonLocalPointerDepFromBB - Perform a dependency query based on
792/// pointer/pointeesize starting at the end of StartBB. Add any clobber/def
793/// results to the results vector and keep track of which blocks are visited in
794/// 'Visited'.
795///
796/// This has special behavior for the first block queries (when SkipFirstBlock
797/// is true). In this special case, it ignores the contents of the specified
798/// block and starts returning dependence info for its predecessors.
799///
800/// This function returns false on success, or true to indicate that it could
801/// not compute dependence information for some reason. This should be treated
802/// as a clobber dependence on the first instruction in the predecessor block.
803bool MemoryDependenceAnalysis::
Chris Lattner9863c3f2008-12-09 07:47:11 +0000804getNonLocalPointerDepFromBB(Value *Pointer, uint64_t PointeeSize,
805 bool isLoad, BasicBlock *StartBB,
806 SmallVectorImpl<NonLocalDepEntry> &Result,
Chris Lattner9e59c642008-12-15 03:35:32 +0000807 DenseMap<BasicBlock*, Value*> &Visited,
808 bool SkipFirstBlock) {
Chris Lattner66364342009-09-20 22:44:26 +0000809
Chris Lattner6290f5c2008-12-07 08:50:20 +0000810 // Look up the cached info for Pointer.
811 ValueIsLoadPair CacheKey(Pointer, isLoad);
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000812
Chris Lattner9e59c642008-12-15 03:35:32 +0000813 std::pair<BBSkipFirstBlockPair, NonLocalDepInfo> *CacheInfo =
814 &NonLocalPointerDeps[CacheKey];
815 NonLocalDepInfo *Cache = &CacheInfo->second;
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000816
817 // If we have valid cached information for exactly the block we are
818 // investigating, just return it with no recomputation.
Chris Lattner9e59c642008-12-15 03:35:32 +0000819 if (CacheInfo->first == BBSkipFirstBlockPair(StartBB, SkipFirstBlock)) {
Chris Lattnerf4789512008-12-16 07:10:09 +0000820 // We have a fully cached result for this query then we can just return the
821 // cached results and populate the visited set. However, we have to verify
822 // that we don't already have conflicting results for these blocks. Check
823 // to ensure that if a block in the results set is in the visited set that
824 // it was for the same pointer query.
825 if (!Visited.empty()) {
826 for (NonLocalDepInfo::iterator I = Cache->begin(), E = Cache->end();
827 I != E; ++I) {
828 DenseMap<BasicBlock*, Value*>::iterator VI = Visited.find(I->first);
829 if (VI == Visited.end() || VI->second == Pointer) continue;
830
831 // We have a pointer mismatch in a block. Just return clobber, saying
832 // that something was clobbered in this result. We could also do a
833 // non-fully cached query, but there is little point in doing this.
834 return true;
835 }
836 }
837
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000838 for (NonLocalDepInfo::iterator I = Cache->begin(), E = Cache->end();
Chris Lattnerf4789512008-12-16 07:10:09 +0000839 I != E; ++I) {
840 Visited.insert(std::make_pair(I->first, Pointer));
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000841 if (!I->second.isNonLocal())
842 Result.push_back(*I);
Chris Lattnerf4789512008-12-16 07:10:09 +0000843 }
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000844 ++NumCacheCompleteNonLocalPtr;
Chris Lattner9e59c642008-12-15 03:35:32 +0000845 return false;
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000846 }
847
848 // Otherwise, either this is a new block, a block with an invalid cache
849 // pointer or one that we're about to invalidate by putting more info into it
850 // than its valid cache info. If empty, the result will be valid cache info,
851 // otherwise it isn't.
Chris Lattner9e59c642008-12-15 03:35:32 +0000852 if (Cache->empty())
853 CacheInfo->first = BBSkipFirstBlockPair(StartBB, SkipFirstBlock);
854 else
855 CacheInfo->first = BBSkipFirstBlockPair();
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000856
857 SmallVector<BasicBlock*, 32> Worklist;
858 Worklist.push_back(StartBB);
Chris Lattner6290f5c2008-12-07 08:50:20 +0000859
860 // Keep track of the entries that we know are sorted. Previously cached
861 // entries will all be sorted. The entries we add we only sort on demand (we
862 // don't insert every element into its sorted position). We know that we
863 // won't get any reuse from currently inserted values, because we don't
864 // revisit blocks after we insert info for them.
865 unsigned NumSortedEntries = Cache->size();
Chris Lattner12a7db32009-01-22 07:04:01 +0000866 DEBUG(AssertSorted(*Cache));
Chris Lattner6290f5c2008-12-07 08:50:20 +0000867
Chris Lattner7ebcf032008-12-07 02:15:47 +0000868 while (!Worklist.empty()) {
Chris Lattner9a193fd2008-12-07 02:56:57 +0000869 BasicBlock *BB = Worklist.pop_back_val();
Chris Lattner7ebcf032008-12-07 02:15:47 +0000870
Chris Lattner65633712008-12-09 07:52:59 +0000871 // Skip the first block if we have it.
Chris Lattner9e59c642008-12-15 03:35:32 +0000872 if (!SkipFirstBlock) {
Chris Lattner65633712008-12-09 07:52:59 +0000873 // Analyze the dependency of *Pointer in FromBB. See if we already have
874 // been here.
Chris Lattner9e59c642008-12-15 03:35:32 +0000875 assert(Visited.count(BB) && "Should check 'visited' before adding to WL");
Chris Lattner6290f5c2008-12-07 08:50:20 +0000876
Chris Lattner65633712008-12-09 07:52:59 +0000877 // Get the dependency info for Pointer in BB. If we have cached
878 // information, we will use it, otherwise we compute it.
Chris Lattner12a7db32009-01-22 07:04:01 +0000879 DEBUG(AssertSorted(*Cache, NumSortedEntries));
Chris Lattner65633712008-12-09 07:52:59 +0000880 MemDepResult Dep = GetNonLocalInfoForBlock(Pointer, PointeeSize, isLoad,
881 BB, Cache, NumSortedEntries);
882
883 // If we got a Def or Clobber, add this to the list of results.
884 if (!Dep.isNonLocal()) {
885 Result.push_back(NonLocalDepEntry(BB, Dep));
886 continue;
887 }
Chris Lattner7ebcf032008-12-07 02:15:47 +0000888 }
889
Chris Lattner9e59c642008-12-15 03:35:32 +0000890 // If 'Pointer' is an instruction defined in this block, then we need to do
891 // phi translation to change it into a value live in the predecessor block.
892 // If phi translation fails, then we can't continue dependence analysis.
893 Instruction *PtrInst = dyn_cast<Instruction>(Pointer);
894 bool NeedsPHITranslation = PtrInst && PtrInst->getParent() == BB;
895
896 // If no PHI translation is needed, just add all the predecessors of this
897 // block to scan them as well.
898 if (!NeedsPHITranslation) {
899 SkipFirstBlock = false;
900 for (BasicBlock **PI = PredCache->GetPreds(BB); *PI; ++PI) {
901 // Verify that we haven't looked at this block yet.
902 std::pair<DenseMap<BasicBlock*,Value*>::iterator, bool>
903 InsertRes = Visited.insert(std::make_pair(*PI, Pointer));
904 if (InsertRes.second) {
905 // First time we've looked at *PI.
906 Worklist.push_back(*PI);
907 continue;
908 }
909
910 // If we have seen this block before, but it was with a different
911 // pointer then we have a phi translation failure and we have to treat
912 // this as a clobber.
913 if (InsertRes.first->second != Pointer)
914 goto PredTranslationFailure;
915 }
916 continue;
917 }
918
919 // If we do need to do phi translation, then there are a bunch of different
920 // cases, because we have to find a Value* live in the predecessor block. We
921 // know that PtrInst is defined in this block at least.
Chris Lattner6fbc1962009-07-13 17:14:23 +0000922
923 // We may have added values to the cache list before this PHI translation.
924 // If so, we haven't done anything to ensure that the cache remains sorted.
925 // Sort it now (if needed) so that recursive invocations of
926 // getNonLocalPointerDepFromBB and other routines that could reuse the cache
927 // value will only see properly sorted cache arrays.
928 if (Cache && NumSortedEntries != Cache->size()) {
Chris Lattnera2f55dd2009-07-13 17:20:05 +0000929 SortNonLocalDepInfoCache(*Cache, NumSortedEntries);
Chris Lattner6fbc1962009-07-13 17:14:23 +0000930 NumSortedEntries = Cache->size();
931 }
Chris Lattner9e59c642008-12-15 03:35:32 +0000932
Chris Lattnerdc593112009-11-26 23:18:49 +0000933 // If this is a computation derived from a PHI node, use the suitably
934 // translated incoming values for each pred as the phi translated version.
935 if (isPHITranslatable(PtrInst)) {
Chris Lattner6fbc1962009-07-13 17:14:23 +0000936 Cache = 0;
937
Chris Lattner12a7db32009-01-22 07:04:01 +0000938 for (BasicBlock **PI = PredCache->GetPreds(BB); *PI; ++PI) {
Chris Lattner9e59c642008-12-15 03:35:32 +0000939 BasicBlock *Pred = *PI;
Chris Lattner62deff02009-11-27 06:31:14 +0000940 Value *PredPtr = PHITranslatePointer(PtrInst, BB, Pred, TD);
Chris Lattnerdc593112009-11-26 23:18:49 +0000941
942 // If PHI translation fails, bail out.
943 if (PredPtr == 0)
944 goto PredTranslationFailure;
Chris Lattner9e59c642008-12-15 03:35:32 +0000945
946 // Check to see if we have already visited this pred block with another
947 // pointer. If so, we can't do this lookup. This failure can occur
948 // with PHI translation when a critical edge exists and the PHI node in
949 // the successor translates to a pointer value different than the
950 // pointer the block was first analyzed with.
951 std::pair<DenseMap<BasicBlock*,Value*>::iterator, bool>
952 InsertRes = Visited.insert(std::make_pair(Pred, PredPtr));
953
954 if (!InsertRes.second) {
955 // If the predecessor was visited with PredPtr, then we already did
956 // the analysis and can ignore it.
957 if (InsertRes.first->second == PredPtr)
958 continue;
959
960 // Otherwise, the block was previously analyzed with a different
961 // pointer. We can't represent the result of this case, so we just
962 // treat this as a phi translation failure.
963 goto PredTranslationFailure;
964 }
Chris Lattner12a7db32009-01-22 07:04:01 +0000965
Chris Lattner12a7db32009-01-22 07:04:01 +0000966 // FIXME: it is entirely possible that PHI translating will end up with
967 // the same value. Consider PHI translating something like:
968 // X = phi [x, bb1], [y, bb2]. PHI translating for bb1 doesn't *need*
969 // to recurse here, pedantically speaking.
Chris Lattner9e59c642008-12-15 03:35:32 +0000970
971 // If we have a problem phi translating, fall through to the code below
972 // to handle the failure condition.
973 if (getNonLocalPointerDepFromBB(PredPtr, PointeeSize, isLoad, Pred,
974 Result, Visited))
975 goto PredTranslationFailure;
976 }
Chris Lattner6fbc1962009-07-13 17:14:23 +0000977
Chris Lattner9e59c642008-12-15 03:35:32 +0000978 // Refresh the CacheInfo/Cache pointer so that it isn't invalidated.
979 CacheInfo = &NonLocalPointerDeps[CacheKey];
980 Cache = &CacheInfo->second;
Chris Lattner12a7db32009-01-22 07:04:01 +0000981 NumSortedEntries = Cache->size();
Chris Lattnerb54bfc22009-01-23 00:27:03 +0000982
Chris Lattner9e59c642008-12-15 03:35:32 +0000983 // Since we did phi translation, the "Cache" set won't contain all of the
984 // results for the query. This is ok (we can still use it to accelerate
985 // specific block queries) but we can't do the fastpath "return all
986 // results from the set" Clear out the indicator for this.
987 CacheInfo->first = BBSkipFirstBlockPair();
988 SkipFirstBlock = false;
989 continue;
990 }
Chris Lattnerdc593112009-11-26 23:18:49 +0000991
Chris Lattner9e59c642008-12-15 03:35:32 +0000992 PredTranslationFailure:
993
Chris Lattner95900f22009-01-23 07:12:16 +0000994 if (Cache == 0) {
995 // Refresh the CacheInfo/Cache pointer if it got invalidated.
996 CacheInfo = &NonLocalPointerDeps[CacheKey];
997 Cache = &CacheInfo->second;
998 NumSortedEntries = Cache->size();
Chris Lattner95900f22009-01-23 07:12:16 +0000999 }
Chris Lattner6fbc1962009-07-13 17:14:23 +00001000
Chris Lattner9e59c642008-12-15 03:35:32 +00001001 // Since we did phi translation, the "Cache" set won't contain all of the
1002 // results for the query. This is ok (we can still use it to accelerate
1003 // specific block queries) but we can't do the fastpath "return all
1004 // results from the set" Clear out the indicator for this.
1005 CacheInfo->first = BBSkipFirstBlockPair();
1006
1007 // If *nothing* works, mark the pointer as being clobbered by the first
1008 // instruction in this block.
1009 //
1010 // If this is the magic first block, return this as a clobber of the whole
1011 // incoming value. Since we can't phi translate to one of the predecessors,
1012 // we have to bail out.
1013 if (SkipFirstBlock)
1014 return true;
1015
1016 for (NonLocalDepInfo::reverse_iterator I = Cache->rbegin(); ; ++I) {
1017 assert(I != Cache->rend() && "Didn't find current block??");
1018 if (I->first != BB)
1019 continue;
1020
1021 assert(I->second.isNonLocal() &&
1022 "Should only be here with transparent block");
1023 I->second = MemDepResult::getClobber(BB->begin());
Chris Lattner6a0dcc12009-03-29 00:24:04 +00001024 ReverseNonLocalPtrDeps[BB->begin()].insert(CacheKey);
Chris Lattner9e59c642008-12-15 03:35:32 +00001025 Result.push_back(*I);
1026 break;
Chris Lattner9a193fd2008-12-07 02:56:57 +00001027 }
Chris Lattner7ebcf032008-12-07 02:15:47 +00001028 }
Chris Lattner95900f22009-01-23 07:12:16 +00001029
Chris Lattner9863c3f2008-12-09 07:47:11 +00001030 // Okay, we're done now. If we added new values to the cache, re-sort it.
Chris Lattnera2f55dd2009-07-13 17:20:05 +00001031 SortNonLocalDepInfoCache(*Cache, NumSortedEntries);
Chris Lattner12a7db32009-01-22 07:04:01 +00001032 DEBUG(AssertSorted(*Cache));
Chris Lattner9e59c642008-12-15 03:35:32 +00001033 return false;
Chris Lattner6290f5c2008-12-07 08:50:20 +00001034}
1035
1036/// RemoveCachedNonLocalPointerDependencies - If P exists in
1037/// CachedNonLocalPointerInfo, remove it.
1038void MemoryDependenceAnalysis::
1039RemoveCachedNonLocalPointerDependencies(ValueIsLoadPair P) {
1040 CachedNonLocalPointerInfo::iterator It =
1041 NonLocalPointerDeps.find(P);
1042 if (It == NonLocalPointerDeps.end()) return;
1043
1044 // Remove all of the entries in the BB->val map. This involves removing
1045 // instructions from the reverse map.
Chris Lattner11dcd8d2008-12-08 07:31:50 +00001046 NonLocalDepInfo &PInfo = It->second.second;
Chris Lattner6290f5c2008-12-07 08:50:20 +00001047
1048 for (unsigned i = 0, e = PInfo.size(); i != e; ++i) {
1049 Instruction *Target = PInfo[i].second.getInst();
1050 if (Target == 0) continue; // Ignore non-local dep results.
Chris Lattner5a45bf12008-12-09 22:45:32 +00001051 assert(Target->getParent() == PInfo[i].first);
Chris Lattner6290f5c2008-12-07 08:50:20 +00001052
1053 // Eliminating the dirty entry from 'Cache', so update the reverse info.
Chris Lattner6a0dcc12009-03-29 00:24:04 +00001054 RemoveFromReverseMap(ReverseNonLocalPtrDeps, Target, P);
Chris Lattner6290f5c2008-12-07 08:50:20 +00001055 }
1056
1057 // Remove P from NonLocalPointerDeps (which deletes NonLocalDepInfo).
1058 NonLocalPointerDeps.erase(It);
Chris Lattner7ebcf032008-12-07 02:15:47 +00001059}
1060
1061
Chris Lattnerbc99be12008-12-09 22:06:23 +00001062/// invalidateCachedPointerInfo - This method is used to invalidate cached
1063/// information about the specified pointer, because it may be too
1064/// conservative in memdep. This is an optional call that can be used when
1065/// the client detects an equivalence between the pointer and some other
1066/// value and replaces the other value with ptr. This can make Ptr available
1067/// in more places that cached info does not necessarily keep.
1068void MemoryDependenceAnalysis::invalidateCachedPointerInfo(Value *Ptr) {
1069 // If Ptr isn't really a pointer, just ignore it.
1070 if (!isa<PointerType>(Ptr->getType())) return;
1071 // Flush store info for the pointer.
1072 RemoveCachedNonLocalPointerDependencies(ValueIsLoadPair(Ptr, false));
1073 // Flush load info for the pointer.
1074 RemoveCachedNonLocalPointerDependencies(ValueIsLoadPair(Ptr, true));
1075}
1076
Owen Anderson78e02f72007-07-06 23:14:35 +00001077/// removeInstruction - Remove an instruction from the dependence analysis,
1078/// updating the dependence of instructions that previously depended on it.
Owen Anderson642a9e32007-08-08 22:26:03 +00001079/// This method attempts to keep the cache coherent using the reverse map.
Chris Lattner5f589dc2008-11-28 22:04:47 +00001080void MemoryDependenceAnalysis::removeInstruction(Instruction *RemInst) {
Chris Lattner5f589dc2008-11-28 22:04:47 +00001081 // Walk through the Non-local dependencies, removing this one as the value
1082 // for any cached queries.
Chris Lattnerf68f3102008-11-30 02:28:25 +00001083 NonLocalDepMapType::iterator NLDI = NonLocalDeps.find(RemInst);
1084 if (NLDI != NonLocalDeps.end()) {
Chris Lattnerbf145d62008-12-01 01:15:42 +00001085 NonLocalDepInfo &BlockMap = NLDI->second.first;
Chris Lattner25f4b2b2008-11-30 02:30:50 +00001086 for (NonLocalDepInfo::iterator DI = BlockMap.begin(), DE = BlockMap.end();
1087 DI != DE; ++DI)
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +00001088 if (Instruction *Inst = DI->second.getInst())
Chris Lattnerd44745d2008-12-07 18:39:13 +00001089 RemoveFromReverseMap(ReverseNonLocalDeps, Inst, RemInst);
Chris Lattnerf68f3102008-11-30 02:28:25 +00001090 NonLocalDeps.erase(NLDI);
1091 }
Owen Anderson5fc4aba2007-12-08 01:37:09 +00001092
Chris Lattner5f589dc2008-11-28 22:04:47 +00001093 // If we have a cached local dependence query for this instruction, remove it.
Chris Lattnerbaad8882008-11-28 22:28:27 +00001094 //
Chris Lattner39f372e2008-11-29 01:43:36 +00001095 LocalDepMapType::iterator LocalDepEntry = LocalDeps.find(RemInst);
1096 if (LocalDepEntry != LocalDeps.end()) {
Chris Lattner125ce362008-11-30 01:09:30 +00001097 // Remove us from DepInst's reverse set now that the local dep info is gone.
Chris Lattnerd44745d2008-12-07 18:39:13 +00001098 if (Instruction *Inst = LocalDepEntry->second.getInst())
1099 RemoveFromReverseMap(ReverseLocalDeps, Inst, RemInst);
Chris Lattner125ce362008-11-30 01:09:30 +00001100
Chris Lattnerbaad8882008-11-28 22:28:27 +00001101 // Remove this local dependency info.
Chris Lattner39f372e2008-11-29 01:43:36 +00001102 LocalDeps.erase(LocalDepEntry);
Chris Lattner6290f5c2008-12-07 08:50:20 +00001103 }
1104
1105 // If we have any cached pointer dependencies on this instruction, remove
1106 // them. If the instruction has non-pointer type, then it can't be a pointer
1107 // base.
1108
1109 // Remove it from both the load info and the store info. The instruction
1110 // can't be in either of these maps if it is non-pointer.
1111 if (isa<PointerType>(RemInst->getType())) {
1112 RemoveCachedNonLocalPointerDependencies(ValueIsLoadPair(RemInst, false));
1113 RemoveCachedNonLocalPointerDependencies(ValueIsLoadPair(RemInst, true));
1114 }
Chris Lattnerbaad8882008-11-28 22:28:27 +00001115
Chris Lattnerd3d12ec2008-11-28 22:51:08 +00001116 // Loop over all of the things that depend on the instruction we're removing.
1117 //
Chris Lattner4f8c18c2008-11-29 23:30:39 +00001118 SmallVector<std::pair<Instruction*, Instruction*>, 8> ReverseDepsToAdd;
Chris Lattner0655f732008-12-07 18:42:51 +00001119
1120 // If we find RemInst as a clobber or Def in any of the maps for other values,
1121 // we need to replace its entry with a dirty version of the instruction after
1122 // it. If RemInst is a terminator, we use a null dirty value.
1123 //
1124 // Using a dirty version of the instruction after RemInst saves having to scan
1125 // the entire block to get to this point.
1126 MemDepResult NewDirtyVal;
1127 if (!RemInst->isTerminator())
1128 NewDirtyVal = MemDepResult::getDirty(++BasicBlock::iterator(RemInst));
Chris Lattner4f8c18c2008-11-29 23:30:39 +00001129
Chris Lattner8c465272008-11-29 09:20:15 +00001130 ReverseDepMapType::iterator ReverseDepIt = ReverseLocalDeps.find(RemInst);
1131 if (ReverseDepIt != ReverseLocalDeps.end()) {
Chris Lattnerd3d12ec2008-11-28 22:51:08 +00001132 SmallPtrSet<Instruction*, 4> &ReverseDeps = ReverseDepIt->second;
Chris Lattner6290f5c2008-12-07 08:50:20 +00001133 // RemInst can't be the terminator if it has local stuff depending on it.
Chris Lattner125ce362008-11-30 01:09:30 +00001134 assert(!ReverseDeps.empty() && !isa<TerminatorInst>(RemInst) &&
1135 "Nothing can locally depend on a terminator");
1136
Chris Lattnerd3d12ec2008-11-28 22:51:08 +00001137 for (SmallPtrSet<Instruction*, 4>::iterator I = ReverseDeps.begin(),
1138 E = ReverseDeps.end(); I != E; ++I) {
1139 Instruction *InstDependingOnRemInst = *I;
Chris Lattnerf68f3102008-11-30 02:28:25 +00001140 assert(InstDependingOnRemInst != RemInst &&
1141 "Already removed our local dep info");
Chris Lattner125ce362008-11-30 01:09:30 +00001142
Chris Lattner0655f732008-12-07 18:42:51 +00001143 LocalDeps[InstDependingOnRemInst] = NewDirtyVal;
Chris Lattnerd3d12ec2008-11-28 22:51:08 +00001144
Chris Lattner125ce362008-11-30 01:09:30 +00001145 // Make sure to remember that new things depend on NewDepInst.
Chris Lattner0655f732008-12-07 18:42:51 +00001146 assert(NewDirtyVal.getInst() && "There is no way something else can have "
1147 "a local dep on this if it is a terminator!");
1148 ReverseDepsToAdd.push_back(std::make_pair(NewDirtyVal.getInst(),
Chris Lattner125ce362008-11-30 01:09:30 +00001149 InstDependingOnRemInst));
Chris Lattnerd3d12ec2008-11-28 22:51:08 +00001150 }
Chris Lattner4f8c18c2008-11-29 23:30:39 +00001151
1152 ReverseLocalDeps.erase(ReverseDepIt);
1153
1154 // Add new reverse deps after scanning the set, to avoid invalidating the
1155 // 'ReverseDeps' reference.
1156 while (!ReverseDepsToAdd.empty()) {
1157 ReverseLocalDeps[ReverseDepsToAdd.back().first]
1158 .insert(ReverseDepsToAdd.back().second);
1159 ReverseDepsToAdd.pop_back();
1160 }
Owen Anderson78e02f72007-07-06 23:14:35 +00001161 }
Owen Anderson4d13de42007-08-16 21:27:05 +00001162
Chris Lattner8c465272008-11-29 09:20:15 +00001163 ReverseDepIt = ReverseNonLocalDeps.find(RemInst);
1164 if (ReverseDepIt != ReverseNonLocalDeps.end()) {
Chris Lattner6290f5c2008-12-07 08:50:20 +00001165 SmallPtrSet<Instruction*, 4> &Set = ReverseDepIt->second;
1166 for (SmallPtrSet<Instruction*, 4>::iterator I = Set.begin(), E = Set.end();
Chris Lattnerf68f3102008-11-30 02:28:25 +00001167 I != E; ++I) {
1168 assert(*I != RemInst && "Already removed NonLocalDep info for RemInst");
1169
Chris Lattner4a69bad2008-11-30 02:52:26 +00001170 PerInstNLInfo &INLD = NonLocalDeps[*I];
Chris Lattner4a69bad2008-11-30 02:52:26 +00001171 // The information is now dirty!
Chris Lattnerbf145d62008-12-01 01:15:42 +00001172 INLD.second = true;
Chris Lattnerf68f3102008-11-30 02:28:25 +00001173
Chris Lattnerbf145d62008-12-01 01:15:42 +00001174 for (NonLocalDepInfo::iterator DI = INLD.first.begin(),
1175 DE = INLD.first.end(); DI != DE; ++DI) {
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +00001176 if (DI->second.getInst() != RemInst) continue;
Chris Lattnerf68f3102008-11-30 02:28:25 +00001177
1178 // Convert to a dirty entry for the subsequent instruction.
Chris Lattner0655f732008-12-07 18:42:51 +00001179 DI->second = NewDirtyVal;
1180
1181 if (Instruction *NextI = NewDirtyVal.getInst())
Chris Lattnerf68f3102008-11-30 02:28:25 +00001182 ReverseDepsToAdd.push_back(std::make_pair(NextI, *I));
Chris Lattnerf68f3102008-11-30 02:28:25 +00001183 }
1184 }
Chris Lattner4f8c18c2008-11-29 23:30:39 +00001185
1186 ReverseNonLocalDeps.erase(ReverseDepIt);
1187
Chris Lattner0ec48dd2008-11-29 22:02:15 +00001188 // Add new reverse deps after scanning the set, to avoid invalidating 'Set'
1189 while (!ReverseDepsToAdd.empty()) {
1190 ReverseNonLocalDeps[ReverseDepsToAdd.back().first]
1191 .insert(ReverseDepsToAdd.back().second);
1192 ReverseDepsToAdd.pop_back();
1193 }
Owen Anderson4d13de42007-08-16 21:27:05 +00001194 }
Owen Anderson5fc4aba2007-12-08 01:37:09 +00001195
Chris Lattner6290f5c2008-12-07 08:50:20 +00001196 // If the instruction is in ReverseNonLocalPtrDeps then it appears as a
1197 // value in the NonLocalPointerDeps info.
1198 ReverseNonLocalPtrDepTy::iterator ReversePtrDepIt =
1199 ReverseNonLocalPtrDeps.find(RemInst);
1200 if (ReversePtrDepIt != ReverseNonLocalPtrDeps.end()) {
Chris Lattner6a0dcc12009-03-29 00:24:04 +00001201 SmallPtrSet<ValueIsLoadPair, 4> &Set = ReversePtrDepIt->second;
Chris Lattner6290f5c2008-12-07 08:50:20 +00001202 SmallVector<std::pair<Instruction*, ValueIsLoadPair>,8> ReversePtrDepsToAdd;
1203
Chris Lattner6a0dcc12009-03-29 00:24:04 +00001204 for (SmallPtrSet<ValueIsLoadPair, 4>::iterator I = Set.begin(),
1205 E = Set.end(); I != E; ++I) {
1206 ValueIsLoadPair P = *I;
Chris Lattner6290f5c2008-12-07 08:50:20 +00001207 assert(P.getPointer() != RemInst &&
1208 "Already removed NonLocalPointerDeps info for RemInst");
1209
Chris Lattner11dcd8d2008-12-08 07:31:50 +00001210 NonLocalDepInfo &NLPDI = NonLocalPointerDeps[P].second;
1211
1212 // The cache is not valid for any specific block anymore.
Chris Lattner9e59c642008-12-15 03:35:32 +00001213 NonLocalPointerDeps[P].first = BBSkipFirstBlockPair();
Chris Lattner6290f5c2008-12-07 08:50:20 +00001214
Chris Lattner6290f5c2008-12-07 08:50:20 +00001215 // Update any entries for RemInst to use the instruction after it.
1216 for (NonLocalDepInfo::iterator DI = NLPDI.begin(), DE = NLPDI.end();
1217 DI != DE; ++DI) {
1218 if (DI->second.getInst() != RemInst) continue;
1219
1220 // Convert to a dirty entry for the subsequent instruction.
1221 DI->second = NewDirtyVal;
1222
1223 if (Instruction *NewDirtyInst = NewDirtyVal.getInst())
1224 ReversePtrDepsToAdd.push_back(std::make_pair(NewDirtyInst, P));
1225 }
Chris Lattner95900f22009-01-23 07:12:16 +00001226
1227 // Re-sort the NonLocalDepInfo. Changing the dirty entry to its
1228 // subsequent value may invalidate the sortedness.
1229 std::sort(NLPDI.begin(), NLPDI.end());
Chris Lattner6290f5c2008-12-07 08:50:20 +00001230 }
1231
1232 ReverseNonLocalPtrDeps.erase(ReversePtrDepIt);
1233
1234 while (!ReversePtrDepsToAdd.empty()) {
1235 ReverseNonLocalPtrDeps[ReversePtrDepsToAdd.back().first]
Chris Lattner6a0dcc12009-03-29 00:24:04 +00001236 .insert(ReversePtrDepsToAdd.back().second);
Chris Lattner6290f5c2008-12-07 08:50:20 +00001237 ReversePtrDepsToAdd.pop_back();
1238 }
1239 }
1240
1241
Chris Lattnerf68f3102008-11-30 02:28:25 +00001242 assert(!NonLocalDeps.count(RemInst) && "RemInst got reinserted?");
Chris Lattnerd777d402008-11-30 19:24:31 +00001243 AA->deleteValue(RemInst);
Chris Lattner5f589dc2008-11-28 22:04:47 +00001244 DEBUG(verifyRemoved(RemInst));
Owen Anderson78e02f72007-07-06 23:14:35 +00001245}
Chris Lattner729b2372008-11-29 21:25:10 +00001246/// verifyRemoved - Verify that the specified instruction does not occur
1247/// in our internal data structures.
1248void MemoryDependenceAnalysis::verifyRemoved(Instruction *D) const {
1249 for (LocalDepMapType::const_iterator I = LocalDeps.begin(),
1250 E = LocalDeps.end(); I != E; ++I) {
1251 assert(I->first != D && "Inst occurs in data structures");
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +00001252 assert(I->second.getInst() != D &&
Chris Lattner729b2372008-11-29 21:25:10 +00001253 "Inst occurs in data structures");
1254 }
1255
Chris Lattner6290f5c2008-12-07 08:50:20 +00001256 for (CachedNonLocalPointerInfo::const_iterator I =NonLocalPointerDeps.begin(),
1257 E = NonLocalPointerDeps.end(); I != E; ++I) {
1258 assert(I->first.getPointer() != D && "Inst occurs in NLPD map key");
Chris Lattner11dcd8d2008-12-08 07:31:50 +00001259 const NonLocalDepInfo &Val = I->second.second;
Chris Lattner6290f5c2008-12-07 08:50:20 +00001260 for (NonLocalDepInfo::const_iterator II = Val.begin(), E = Val.end();
1261 II != E; ++II)
1262 assert(II->second.getInst() != D && "Inst occurs as NLPD value");
1263 }
1264
Chris Lattner729b2372008-11-29 21:25:10 +00001265 for (NonLocalDepMapType::const_iterator I = NonLocalDeps.begin(),
1266 E = NonLocalDeps.end(); I != E; ++I) {
1267 assert(I->first != D && "Inst occurs in data structures");
Chris Lattner4a69bad2008-11-30 02:52:26 +00001268 const PerInstNLInfo &INLD = I->second;
Chris Lattnerbf145d62008-12-01 01:15:42 +00001269 for (NonLocalDepInfo::const_iterator II = INLD.first.begin(),
1270 EE = INLD.first.end(); II != EE; ++II)
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +00001271 assert(II->second.getInst() != D && "Inst occurs in data structures");
Chris Lattner729b2372008-11-29 21:25:10 +00001272 }
1273
1274 for (ReverseDepMapType::const_iterator I = ReverseLocalDeps.begin(),
Chris Lattnerf68f3102008-11-30 02:28:25 +00001275 E = ReverseLocalDeps.end(); I != E; ++I) {
1276 assert(I->first != D && "Inst occurs in data structures");
Chris Lattner729b2372008-11-29 21:25:10 +00001277 for (SmallPtrSet<Instruction*, 4>::const_iterator II = I->second.begin(),
1278 EE = I->second.end(); II != EE; ++II)
1279 assert(*II != D && "Inst occurs in data structures");
Chris Lattnerf68f3102008-11-30 02:28:25 +00001280 }
Chris Lattner729b2372008-11-29 21:25:10 +00001281
1282 for (ReverseDepMapType::const_iterator I = ReverseNonLocalDeps.begin(),
1283 E = ReverseNonLocalDeps.end();
Chris Lattnerf68f3102008-11-30 02:28:25 +00001284 I != E; ++I) {
1285 assert(I->first != D && "Inst occurs in data structures");
Chris Lattner729b2372008-11-29 21:25:10 +00001286 for (SmallPtrSet<Instruction*, 4>::const_iterator II = I->second.begin(),
1287 EE = I->second.end(); II != EE; ++II)
1288 assert(*II != D && "Inst occurs in data structures");
Chris Lattnerf68f3102008-11-30 02:28:25 +00001289 }
Chris Lattner6290f5c2008-12-07 08:50:20 +00001290
1291 for (ReverseNonLocalPtrDepTy::const_iterator
1292 I = ReverseNonLocalPtrDeps.begin(),
1293 E = ReverseNonLocalPtrDeps.end(); I != E; ++I) {
1294 assert(I->first != D && "Inst occurs in rev NLPD map");
1295
Chris Lattner6a0dcc12009-03-29 00:24:04 +00001296 for (SmallPtrSet<ValueIsLoadPair, 4>::const_iterator II = I->second.begin(),
Chris Lattner6290f5c2008-12-07 08:50:20 +00001297 E = I->second.end(); II != E; ++II)
Chris Lattner6a0dcc12009-03-29 00:24:04 +00001298 assert(*II != ValueIsLoadPair(D, false) &&
1299 *II != ValueIsLoadPair(D, true) &&
Chris Lattner6290f5c2008-12-07 08:50:20 +00001300 "Inst occurs in ReverseNonLocalPtrDeps map");
1301 }
1302
Chris Lattner729b2372008-11-29 21:25:10 +00001303}