blob: 6bffca61e0e7d1bcff4b34cc9c43b39282aafb02 [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"
Victor Hernandezf006b182009-10-27 20:05:49 +000023#include "llvm/Analysis/MemoryBuiltins.h"
Chris Lattnerbaad8882008-11-28 22:28:27 +000024#include "llvm/ADT/Statistic.h"
Duncan Sands7050f3d2008-12-10 09:38:36 +000025#include "llvm/ADT/STLExtras.h"
Chris Lattner4012fdd2008-12-09 06:28:49 +000026#include "llvm/Support/PredIteratorCache.h"
Chris Lattner0e575f42008-11-28 21:45:17 +000027#include "llvm/Support/Debug.h"
Owen Anderson78e02f72007-07-06 23:14:35 +000028using namespace llvm;
29
Chris Lattnerbf145d62008-12-01 01:15:42 +000030STATISTIC(NumCacheNonLocal, "Number of fully cached non-local responses");
31STATISTIC(NumCacheDirtyNonLocal, "Number of dirty cached non-local responses");
Chris Lattner0ec48dd2008-11-29 22:02:15 +000032STATISTIC(NumUncacheNonLocal, "Number of uncached non-local responses");
Chris Lattner6290f5c2008-12-07 08:50:20 +000033
34STATISTIC(NumCacheNonLocalPtr,
35 "Number of fully cached non-local ptr responses");
36STATISTIC(NumCacheDirtyNonLocalPtr,
37 "Number of cached, but dirty, non-local ptr responses");
38STATISTIC(NumUncacheNonLocalPtr,
39 "Number of uncached non-local ptr responses");
Chris Lattner11dcd8d2008-12-08 07:31:50 +000040STATISTIC(NumCacheCompleteNonLocalPtr,
41 "Number of block queries that were completely cached");
Chris Lattner6290f5c2008-12-07 08:50:20 +000042
Owen Anderson78e02f72007-07-06 23:14:35 +000043char MemoryDependenceAnalysis::ID = 0;
44
Owen Anderson78e02f72007-07-06 23:14:35 +000045// Register this pass...
Owen Anderson776ee1f2007-07-10 20:21:08 +000046static RegisterPass<MemoryDependenceAnalysis> X("memdep",
Chris Lattner0e575f42008-11-28 21:45:17 +000047 "Memory Dependence Analysis", false, true);
Owen Anderson78e02f72007-07-06 23:14:35 +000048
Chris Lattner4012fdd2008-12-09 06:28:49 +000049MemoryDependenceAnalysis::MemoryDependenceAnalysis()
50: FunctionPass(&ID), PredCache(0) {
51}
52MemoryDependenceAnalysis::~MemoryDependenceAnalysis() {
53}
54
55/// Clean up memory in between runs
56void MemoryDependenceAnalysis::releaseMemory() {
57 LocalDeps.clear();
58 NonLocalDeps.clear();
59 NonLocalPointerDeps.clear();
60 ReverseLocalDeps.clear();
61 ReverseNonLocalDeps.clear();
62 ReverseNonLocalPtrDeps.clear();
63 PredCache->clear();
64}
65
66
67
Owen Anderson78e02f72007-07-06 23:14:35 +000068/// getAnalysisUsage - Does not modify anything. It uses Alias Analysis.
69///
70void MemoryDependenceAnalysis::getAnalysisUsage(AnalysisUsage &AU) const {
71 AU.setPreservesAll();
72 AU.addRequiredTransitive<AliasAnalysis>();
Owen Anderson78e02f72007-07-06 23:14:35 +000073}
74
Chris Lattnerd777d402008-11-30 19:24:31 +000075bool MemoryDependenceAnalysis::runOnFunction(Function &) {
76 AA = &getAnalysis<AliasAnalysis>();
Chris Lattner4012fdd2008-12-09 06:28:49 +000077 if (PredCache == 0)
78 PredCache.reset(new PredIteratorCache());
Chris Lattnerd777d402008-11-30 19:24:31 +000079 return false;
80}
81
Chris Lattnerd44745d2008-12-07 18:39:13 +000082/// RemoveFromReverseMap - This is a helper function that removes Val from
83/// 'Inst's set in ReverseMap. If the set becomes empty, remove Inst's entry.
84template <typename KeyTy>
85static void RemoveFromReverseMap(DenseMap<Instruction*,
Chris Lattner6a0dcc12009-03-29 00:24:04 +000086 SmallPtrSet<KeyTy, 4> > &ReverseMap,
87 Instruction *Inst, KeyTy Val) {
88 typename DenseMap<Instruction*, SmallPtrSet<KeyTy, 4> >::iterator
Chris Lattnerd44745d2008-12-07 18:39:13 +000089 InstIt = ReverseMap.find(Inst);
90 assert(InstIt != ReverseMap.end() && "Reverse map out of sync?");
91 bool Found = InstIt->second.erase(Val);
92 assert(Found && "Invalid reverse map!"); Found=Found;
93 if (InstIt->second.empty())
94 ReverseMap.erase(InstIt);
95}
96
Chris Lattnerbf145d62008-12-01 01:15:42 +000097
Chris Lattner8ef57c52008-12-07 00:35:51 +000098/// getCallSiteDependencyFrom - Private helper for finding the local
99/// dependencies of a call site.
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000100MemDepResult MemoryDependenceAnalysis::
Chris Lattner20d6f092008-12-09 21:19:42 +0000101getCallSiteDependencyFrom(CallSite CS, bool isReadOnlyCall,
102 BasicBlock::iterator ScanIt, BasicBlock *BB) {
Owen Anderson642a9e32007-08-08 22:26:03 +0000103 // Walk backwards through the block, looking for dependencies
Chris Lattner5391a1d2008-11-29 03:47:00 +0000104 while (ScanIt != BB->begin()) {
105 Instruction *Inst = --ScanIt;
Owen Anderson5f323202007-07-10 17:59:22 +0000106
107 // If this inst is a memory op, get the pointer it accessed
Chris Lattner00314b32008-11-29 09:15:21 +0000108 Value *Pointer = 0;
109 uint64_t PointerSize = 0;
110 if (StoreInst *S = dyn_cast<StoreInst>(Inst)) {
111 Pointer = S->getPointerOperand();
Dan Gohmanf5812132009-07-31 20:53:12 +0000112 PointerSize = AA->getTypeStoreSize(S->getOperand(0)->getType());
Chris Lattner00314b32008-11-29 09:15:21 +0000113 } else if (VAArgInst *V = dyn_cast<VAArgInst>(Inst)) {
114 Pointer = V->getOperand(0);
Dan Gohmanf5812132009-07-31 20:53:12 +0000115 PointerSize = AA->getTypeStoreSize(V->getType());
Victor Hernandez046e78c2009-10-26 23:43:48 +0000116 } else if (isFreeCall(Inst)) {
117 Pointer = Inst->getOperand(1);
118 // calls to free() erase the entire structure
Chris Lattner6290f5c2008-12-07 08:50:20 +0000119 PointerSize = ~0ULL;
Chris Lattner00314b32008-11-29 09:15:21 +0000120 } else if (isa<CallInst>(Inst) || isa<InvokeInst>(Inst)) {
Owen Andersonf6cec852009-03-09 05:12:38 +0000121 // Debug intrinsics don't cause dependences.
Dale Johannesen497cb6f2009-03-11 21:13:01 +0000122 if (isa<DbgInfoIntrinsic>(Inst)) continue;
Chris Lattnerb51deb92008-12-05 21:04:20 +0000123 CallSite InstCS = CallSite::get(Inst);
124 // If these two calls do not interfere, look past it.
Chris Lattner20d6f092008-12-09 21:19:42 +0000125 switch (AA->getModRefInfo(CS, InstCS)) {
126 case AliasAnalysis::NoModRef:
127 // If the two calls don't interact (e.g. InstCS is readnone) keep
128 // scanning.
Chris Lattner00314b32008-11-29 09:15:21 +0000129 continue;
Chris Lattner20d6f092008-12-09 21:19:42 +0000130 case AliasAnalysis::Ref:
131 // If the two calls read the same memory locations and CS is a readonly
132 // function, then we have two cases: 1) the calls may not interfere with
133 // each other at all. 2) the calls may produce the same value. In case
134 // #1 we want to ignore the values, in case #2, we want to return Inst
135 // as a Def dependence. This allows us to CSE in cases like:
136 // X = strlen(P);
137 // memchr(...);
138 // Y = strlen(P); // Y = X
139 if (isReadOnlyCall) {
140 if (CS.getCalledFunction() != 0 &&
141 CS.getCalledFunction() == InstCS.getCalledFunction())
142 return MemDepResult::getDef(Inst);
143 // Ignore unrelated read/read call dependences.
144 continue;
145 }
146 // FALL THROUGH
147 default:
Chris Lattnerb51deb92008-12-05 21:04:20 +0000148 return MemDepResult::getClobber(Inst);
Chris Lattner20d6f092008-12-09 21:19:42 +0000149 }
Chris Lattnercfbb6342008-11-30 01:44:00 +0000150 } else {
151 // Non-memory instruction.
Owen Anderson202da142007-07-10 20:39:07 +0000152 continue;
Chris Lattnercfbb6342008-11-30 01:44:00 +0000153 }
Owen Anderson5f323202007-07-10 17:59:22 +0000154
Chris Lattnerb51deb92008-12-05 21:04:20 +0000155 if (AA->getModRefInfo(CS, Pointer, PointerSize) != AliasAnalysis::NoModRef)
156 return MemDepResult::getClobber(Inst);
Owen Anderson5f323202007-07-10 17:59:22 +0000157 }
158
Chris Lattner7ebcf032008-12-07 02:15:47 +0000159 // No dependence found. If this is the entry block of the function, it is a
160 // clobber, otherwise it is non-local.
161 if (BB != &BB->getParent()->getEntryBlock())
162 return MemDepResult::getNonLocal();
163 return MemDepResult::getClobber(ScanIt);
Owen Anderson5f323202007-07-10 17:59:22 +0000164}
165
Chris Lattnere79be942008-12-07 01:50:16 +0000166/// getPointerDependencyFrom - Return the instruction on which a memory
167/// location depends. If isLoad is true, this routine ignore may-aliases with
168/// read-only operations.
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000169MemDepResult MemoryDependenceAnalysis::
Owen Anderson4bc737c2009-10-28 06:18:42 +0000170getPointerDependencyFrom(Value *MemPtr, uint64_t MemSize, bool isLoad,
Chris Lattnere79be942008-12-07 01:50:16 +0000171 BasicBlock::iterator ScanIt, BasicBlock *BB) {
Chris Lattner7ebcf032008-12-07 02:15:47 +0000172
Nick Lewyckyf27f1152009-11-22 02:38:11 +0000173 Value *invariantTag = 0;
Owen Anderson4bc737c2009-10-28 06:18:42 +0000174
Chris Lattner6290f5c2008-12-07 08:50:20 +0000175 // Walk backwards through the basic block, looking for dependencies.
Chris Lattner5391a1d2008-11-29 03:47:00 +0000176 while (ScanIt != BB->begin()) {
177 Instruction *Inst = --ScanIt;
Chris Lattnera161ab02008-11-29 09:09:48 +0000178
Owen Anderson4bc737c2009-10-28 06:18:42 +0000179 // If we're in an invariant region, no dependencies can be found before
180 // we pass an invariant-begin marker.
181 if (invariantTag == Inst) {
182 invariantTag = 0;
183 continue;
Nick Lewyckyf27f1152009-11-22 02:38:11 +0000184 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
Owen Andersonb62f7922009-10-28 07:05:35 +0000185 // If we pass an invariant-end marker, then we've just entered an
186 // invariant region and can start ignoring dependencies.
Owen Anderson4bc737c2009-10-28 06:18:42 +0000187 if (II->getIntrinsicID() == Intrinsic::invariant_end) {
188 uint64_t invariantSize = ~0ULL;
Nick Lewyckyf27f1152009-11-22 02:38:11 +0000189 if (ConstantInt *CI = dyn_cast<ConstantInt>(II->getOperand(2)))
Owen Anderson4bc737c2009-10-28 06:18:42 +0000190 invariantSize = CI->getZExtValue();
191
192 AliasAnalysis::AliasResult R =
193 AA->alias(II->getOperand(3), invariantSize, MemPtr, MemSize);
194 if (R == AliasAnalysis::MustAlias) {
195 invariantTag = II->getOperand(1);
196 continue;
197 }
Owen Andersonb62f7922009-10-28 07:05:35 +0000198
199 // If we reach a lifetime begin or end marker, then the query ends here
200 // because the value is undefined.
201 } else if (II->getIntrinsicID() == Intrinsic::lifetime_start ||
202 II->getIntrinsicID() == Intrinsic::lifetime_end) {
203 uint64_t invariantSize = ~0ULL;
Nick Lewyckyf27f1152009-11-22 02:38:11 +0000204 if (ConstantInt *CI = dyn_cast<ConstantInt>(II->getOperand(1)))
Owen Andersonb62f7922009-10-28 07:05:35 +0000205 invariantSize = CI->getZExtValue();
206
207 AliasAnalysis::AliasResult R =
208 AA->alias(II->getOperand(2), invariantSize, MemPtr, MemSize);
209 if (R == AliasAnalysis::MustAlias)
210 return MemDepResult::getDef(II);
Owen Anderson4bc737c2009-10-28 06:18:42 +0000211 }
212 }
213
214 // If we're querying on a load and we're in an invariant region, we're done
215 // at this point. Nothing a load depends on can live in an invariant region.
216 if (isLoad && invariantTag) continue;
217
Owen Andersonf6cec852009-03-09 05:12:38 +0000218 // Debug intrinsics don't cause dependences.
219 if (isa<DbgInfoIntrinsic>(Inst)) continue;
220
Chris Lattnercfbb6342008-11-30 01:44:00 +0000221 // Values depend on loads if the pointers are must aliased. This means that
222 // a load depends on another must aliased load from the same value.
Chris Lattnerb51deb92008-12-05 21:04:20 +0000223 if (LoadInst *LI = dyn_cast<LoadInst>(Inst)) {
Chris Lattnerb51deb92008-12-05 21:04:20 +0000224 Value *Pointer = LI->getPointerOperand();
Dan Gohmanf5812132009-07-31 20:53:12 +0000225 uint64_t PointerSize = AA->getTypeStoreSize(LI->getType());
Chris Lattnerb51deb92008-12-05 21:04:20 +0000226
227 // If we found a pointer, check if it could be the same as our pointer.
Chris Lattnera161ab02008-11-29 09:09:48 +0000228 AliasAnalysis::AliasResult R =
Chris Lattnerd777d402008-11-30 19:24:31 +0000229 AA->alias(Pointer, PointerSize, MemPtr, MemSize);
Chris Lattnera161ab02008-11-29 09:09:48 +0000230 if (R == AliasAnalysis::NoAlias)
231 continue;
232
233 // May-alias loads don't depend on each other without a dependence.
Chris Lattnere79be942008-12-07 01:50:16 +0000234 if (isLoad && R == AliasAnalysis::MayAlias)
Chris Lattnera161ab02008-11-29 09:09:48 +0000235 continue;
Chris Lattner6290f5c2008-12-07 08:50:20 +0000236 // Stores depend on may and must aliased loads, loads depend on must-alias
237 // loads.
Chris Lattnerb51deb92008-12-05 21:04:20 +0000238 return MemDepResult::getDef(Inst);
239 }
240
241 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
Owen Andersona85a6642009-10-28 06:30:52 +0000242 // There can't be stores to the value we care about inside an
243 // invariant region.
244 if (invariantTag) continue;
245
Chris Lattnerab9cf122009-05-25 21:28:56 +0000246 // If alias analysis can tell that this store is guaranteed to not modify
247 // the query pointer, ignore it. Use getModRefInfo to handle cases where
248 // the query pointer points to constant memory etc.
249 if (AA->getModRefInfo(SI, MemPtr, MemSize) == AliasAnalysis::NoModRef)
250 continue;
251
252 // Ok, this store might clobber the query pointer. Check to see if it is
253 // a must alias: in this case, we want to return this as a def.
Chris Lattnerb51deb92008-12-05 21:04:20 +0000254 Value *Pointer = SI->getPointerOperand();
Dan Gohmanf5812132009-07-31 20:53:12 +0000255 uint64_t PointerSize = AA->getTypeStoreSize(SI->getOperand(0)->getType());
Chris Lattnerab9cf122009-05-25 21:28:56 +0000256
Chris Lattnerb51deb92008-12-05 21:04:20 +0000257 // If we found a pointer, check if it could be the same as our pointer.
258 AliasAnalysis::AliasResult R =
259 AA->alias(Pointer, PointerSize, MemPtr, MemSize);
260
261 if (R == AliasAnalysis::NoAlias)
262 continue;
263 if (R == AliasAnalysis::MayAlias)
264 return MemDepResult::getClobber(Inst);
265 return MemDepResult::getDef(Inst);
Owen Anderson78e02f72007-07-06 23:14:35 +0000266 }
Chris Lattner237a8282008-11-30 01:39:32 +0000267
268 // If this is an allocation, and if we know that the accessed pointer is to
Chris Lattnerb51deb92008-12-05 21:04:20 +0000269 // the allocation, return Def. This means that there is no dependence and
Chris Lattner237a8282008-11-30 01:39:32 +0000270 // the access can be optimized based on that. For example, a load could
271 // turn into undef.
Victor Hernandez5c787362009-10-13 01:42:53 +0000272 // Note: Only determine this to be a malloc if Inst is the malloc call, not
273 // a subsequent bitcast of the malloc call result. There can be stores to
274 // the malloced memory between the malloc call and its bitcast uses, and we
275 // need to continue scanning until the malloc call.
Victor Hernandez7b929da2009-10-23 21:09:37 +0000276 if (isa<AllocaInst>(Inst) || extractMallocCall(Inst)) {
Victor Hernandez46e83122009-09-18 21:34:51 +0000277 Value *AccessPtr = MemPtr->getUnderlyingObject();
278
279 if (AccessPtr == Inst ||
280 AA->alias(Inst, 1, AccessPtr, 1) == AliasAnalysis::MustAlias)
281 return MemDepResult::getDef(Inst);
282 continue;
283 }
284
Chris Lattnerb51deb92008-12-05 21:04:20 +0000285 // See if this instruction (e.g. a call or vaarg) mod/ref's the pointer.
Chris Lattner3579e442008-12-09 19:47:40 +0000286 switch (AA->getModRefInfo(Inst, MemPtr, MemSize)) {
287 case AliasAnalysis::NoModRef:
288 // If the call has no effect on the queried pointer, just ignore it.
Chris Lattner25a08142008-11-29 08:51:16 +0000289 continue;
Owen Andersona85a6642009-10-28 06:30:52 +0000290 case AliasAnalysis::Mod:
291 // If we're in an invariant region, we can ignore calls that ONLY
292 // modify the pointer.
293 if (invariantTag) continue;
294 return MemDepResult::getClobber(Inst);
Chris Lattner3579e442008-12-09 19:47:40 +0000295 case AliasAnalysis::Ref:
296 // If the call is known to never store to the pointer, and if this is a
297 // load query, we can safely ignore it (scan past it).
298 if (isLoad)
299 continue;
Chris Lattner3579e442008-12-09 19:47:40 +0000300 default:
301 // Otherwise, there is a potential dependence. Return a clobber.
302 return MemDepResult::getClobber(Inst);
303 }
Owen Anderson78e02f72007-07-06 23:14:35 +0000304 }
305
Chris Lattner7ebcf032008-12-07 02:15:47 +0000306 // No dependence found. If this is the entry block of the function, it is a
307 // clobber, otherwise it is non-local.
308 if (BB != &BB->getParent()->getEntryBlock())
309 return MemDepResult::getNonLocal();
310 return MemDepResult::getClobber(ScanIt);
Owen Anderson78e02f72007-07-06 23:14:35 +0000311}
312
Chris Lattner5391a1d2008-11-29 03:47:00 +0000313/// getDependency - Return the instruction on which a memory operation
314/// depends.
315MemDepResult MemoryDependenceAnalysis::getDependency(Instruction *QueryInst) {
316 Instruction *ScanPos = QueryInst;
317
318 // Check for a cached result
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000319 MemDepResult &LocalCache = LocalDeps[QueryInst];
Chris Lattner5391a1d2008-11-29 03:47:00 +0000320
Chris Lattner0ec48dd2008-11-29 22:02:15 +0000321 // If the cached entry is non-dirty, just return it. Note that this depends
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000322 // on MemDepResult's default constructing to 'dirty'.
323 if (!LocalCache.isDirty())
324 return LocalCache;
Chris Lattner5391a1d2008-11-29 03:47:00 +0000325
326 // Otherwise, if we have a dirty entry, we know we can start the scan at that
327 // instruction, which may save us some work.
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000328 if (Instruction *Inst = LocalCache.getInst()) {
Chris Lattner5391a1d2008-11-29 03:47:00 +0000329 ScanPos = Inst;
Chris Lattner4a69bad2008-11-30 02:52:26 +0000330
Chris Lattnerd44745d2008-12-07 18:39:13 +0000331 RemoveFromReverseMap(ReverseLocalDeps, Inst, QueryInst);
Chris Lattner4a69bad2008-11-30 02:52:26 +0000332 }
Chris Lattner5391a1d2008-11-29 03:47:00 +0000333
Chris Lattnere79be942008-12-07 01:50:16 +0000334 BasicBlock *QueryParent = QueryInst->getParent();
335
336 Value *MemPtr = 0;
337 uint64_t MemSize = 0;
338
Chris Lattner5391a1d2008-11-29 03:47:00 +0000339 // Do the scan.
Chris Lattnere79be942008-12-07 01:50:16 +0000340 if (BasicBlock::iterator(QueryInst) == QueryParent->begin()) {
Chris Lattner7ebcf032008-12-07 02:15:47 +0000341 // No dependence found. If this is the entry block of the function, it is a
342 // clobber, otherwise it is non-local.
343 if (QueryParent != &QueryParent->getParent()->getEntryBlock())
344 LocalCache = MemDepResult::getNonLocal();
345 else
346 LocalCache = MemDepResult::getClobber(QueryInst);
Chris Lattnere79be942008-12-07 01:50:16 +0000347 } else if (StoreInst *SI = dyn_cast<StoreInst>(QueryInst)) {
348 // If this is a volatile store, don't mess around with it. Just return the
349 // previous instruction as a clobber.
350 if (SI->isVolatile())
351 LocalCache = MemDepResult::getClobber(--BasicBlock::iterator(ScanPos));
352 else {
353 MemPtr = SI->getPointerOperand();
Dan Gohmanf5812132009-07-31 20:53:12 +0000354 MemSize = AA->getTypeStoreSize(SI->getOperand(0)->getType());
Chris Lattnere79be942008-12-07 01:50:16 +0000355 }
356 } else if (LoadInst *LI = dyn_cast<LoadInst>(QueryInst)) {
357 // If this is a volatile load, don't mess around with it. Just return the
358 // previous instruction as a clobber.
359 if (LI->isVolatile())
360 LocalCache = MemDepResult::getClobber(--BasicBlock::iterator(ScanPos));
361 else {
362 MemPtr = LI->getPointerOperand();
Dan Gohmanf5812132009-07-31 20:53:12 +0000363 MemSize = AA->getTypeStoreSize(LI->getType());
Chris Lattnere79be942008-12-07 01:50:16 +0000364 }
Victor Hernandez66284e02009-10-24 04:23:03 +0000365 } else if (isFreeCall(QueryInst)) {
Victor Hernandez046e78c2009-10-26 23:43:48 +0000366 MemPtr = QueryInst->getOperand(1);
Victor Hernandez66284e02009-10-24 04:23:03 +0000367 // calls to free() erase the entire structure, not just a field.
368 MemSize = ~0UL;
Chris Lattnere79be942008-12-07 01:50:16 +0000369 } else if (isa<CallInst>(QueryInst) || isa<InvokeInst>(QueryInst)) {
Chris Lattner20d6f092008-12-09 21:19:42 +0000370 CallSite QueryCS = CallSite::get(QueryInst);
371 bool isReadOnly = AA->onlyReadsMemory(QueryCS);
372 LocalCache = getCallSiteDependencyFrom(QueryCS, isReadOnly, ScanPos,
Chris Lattnere79be942008-12-07 01:50:16 +0000373 QueryParent);
Chris Lattnere79be942008-12-07 01:50:16 +0000374 } else {
375 // Non-memory instruction.
376 LocalCache = MemDepResult::getClobber(--BasicBlock::iterator(ScanPos));
377 }
378
379 // If we need to do a pointer scan, make it happen.
380 if (MemPtr)
381 LocalCache = getPointerDependencyFrom(MemPtr, MemSize,
382 isa<LoadInst>(QueryInst),
383 ScanPos, QueryParent);
Chris Lattner5391a1d2008-11-29 03:47:00 +0000384
385 // Remember the result!
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000386 if (Instruction *I = LocalCache.getInst())
Chris Lattner8c465272008-11-29 09:20:15 +0000387 ReverseLocalDeps[I].insert(QueryInst);
Chris Lattner5391a1d2008-11-29 03:47:00 +0000388
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000389 return LocalCache;
Chris Lattner5391a1d2008-11-29 03:47:00 +0000390}
391
Chris Lattner12a7db32009-01-22 07:04:01 +0000392#ifndef NDEBUG
393/// AssertSorted - This method is used when -debug is specified to verify that
394/// cache arrays are properly kept sorted.
395static void AssertSorted(MemoryDependenceAnalysis::NonLocalDepInfo &Cache,
396 int Count = -1) {
397 if (Count == -1) Count = Cache.size();
398 if (Count == 0) return;
399
400 for (unsigned i = 1; i != unsigned(Count); ++i)
401 assert(Cache[i-1] <= Cache[i] && "Cache isn't sorted!");
402}
403#endif
404
Chris Lattner1559b362008-12-09 19:38:05 +0000405/// getNonLocalCallDependency - Perform a full dependency query for the
406/// specified call, returning the set of blocks that the value is
Chris Lattner37d041c2008-11-30 01:18:27 +0000407/// potentially live across. The returned set of results will include a
408/// "NonLocal" result for all blocks where the value is live across.
409///
Chris Lattner1559b362008-12-09 19:38:05 +0000410/// This method assumes the instruction returns a "NonLocal" dependency
Chris Lattner37d041c2008-11-30 01:18:27 +0000411/// within its own block.
412///
Chris Lattner1559b362008-12-09 19:38:05 +0000413/// This returns a reference to an internal data structure that may be
414/// invalidated on the next non-local query or when an instruction is
415/// removed. Clients must copy this data if they want it around longer than
416/// that.
Chris Lattnerbf145d62008-12-01 01:15:42 +0000417const MemoryDependenceAnalysis::NonLocalDepInfo &
Chris Lattner1559b362008-12-09 19:38:05 +0000418MemoryDependenceAnalysis::getNonLocalCallDependency(CallSite QueryCS) {
419 assert(getDependency(QueryCS.getInstruction()).isNonLocal() &&
420 "getNonLocalCallDependency should only be used on calls with non-local deps!");
421 PerInstNLInfo &CacheP = NonLocalDeps[QueryCS.getInstruction()];
Chris Lattnerbf145d62008-12-01 01:15:42 +0000422 NonLocalDepInfo &Cache = CacheP.first;
Chris Lattner37d041c2008-11-30 01:18:27 +0000423
424 /// DirtyBlocks - This is the set of blocks that need to be recomputed. In
425 /// the cached case, this can happen due to instructions being deleted etc. In
426 /// the uncached case, this starts out as the set of predecessors we care
427 /// about.
428 SmallVector<BasicBlock*, 32> DirtyBlocks;
429
430 if (!Cache.empty()) {
Chris Lattnerbf145d62008-12-01 01:15:42 +0000431 // Okay, we have a cache entry. If we know it is not dirty, just return it
432 // with no computation.
433 if (!CacheP.second) {
434 NumCacheNonLocal++;
435 return Cache;
436 }
437
Chris Lattner37d041c2008-11-30 01:18:27 +0000438 // If we already have a partially computed set of results, scan them to
Chris Lattnerbf145d62008-12-01 01:15:42 +0000439 // determine what is dirty, seeding our initial DirtyBlocks worklist.
440 for (NonLocalDepInfo::iterator I = Cache.begin(), E = Cache.end();
441 I != E; ++I)
442 if (I->second.isDirty())
443 DirtyBlocks.push_back(I->first);
Chris Lattner37d041c2008-11-30 01:18:27 +0000444
Chris Lattnerbf145d62008-12-01 01:15:42 +0000445 // Sort the cache so that we can do fast binary search lookups below.
446 std::sort(Cache.begin(), Cache.end());
Chris Lattner37d041c2008-11-30 01:18:27 +0000447
Chris Lattnerbf145d62008-12-01 01:15:42 +0000448 ++NumCacheDirtyNonLocal;
Chris Lattner37d041c2008-11-30 01:18:27 +0000449 //cerr << "CACHED CASE: " << DirtyBlocks.size() << " dirty: "
450 // << Cache.size() << " cached: " << *QueryInst;
451 } else {
452 // Seed DirtyBlocks with each of the preds of QueryInst's block.
Chris Lattner1559b362008-12-09 19:38:05 +0000453 BasicBlock *QueryBB = QueryCS.getInstruction()->getParent();
Chris Lattner511b36c2008-12-09 06:44:17 +0000454 for (BasicBlock **PI = PredCache->GetPreds(QueryBB); *PI; ++PI)
455 DirtyBlocks.push_back(*PI);
Chris Lattner37d041c2008-11-30 01:18:27 +0000456 NumUncacheNonLocal++;
457 }
458
Chris Lattner20d6f092008-12-09 21:19:42 +0000459 // isReadonlyCall - If this is a read-only call, we can be more aggressive.
460 bool isReadonlyCall = AA->onlyReadsMemory(QueryCS);
Chris Lattner9e59c642008-12-15 03:35:32 +0000461
Chris Lattnerbf145d62008-12-01 01:15:42 +0000462 SmallPtrSet<BasicBlock*, 64> Visited;
463
464 unsigned NumSortedEntries = Cache.size();
Chris Lattner12a7db32009-01-22 07:04:01 +0000465 DEBUG(AssertSorted(Cache));
Chris Lattnerbf145d62008-12-01 01:15:42 +0000466
Chris Lattner37d041c2008-11-30 01:18:27 +0000467 // Iterate while we still have blocks to update.
468 while (!DirtyBlocks.empty()) {
469 BasicBlock *DirtyBB = DirtyBlocks.back();
470 DirtyBlocks.pop_back();
471
Chris Lattnerbf145d62008-12-01 01:15:42 +0000472 // Already processed this block?
473 if (!Visited.insert(DirtyBB))
474 continue;
Chris Lattner37d041c2008-11-30 01:18:27 +0000475
Chris Lattnerbf145d62008-12-01 01:15:42 +0000476 // Do a binary search to see if we already have an entry for this block in
477 // the cache set. If so, find it.
Chris Lattner12a7db32009-01-22 07:04:01 +0000478 DEBUG(AssertSorted(Cache, NumSortedEntries));
Chris Lattnerbf145d62008-12-01 01:15:42 +0000479 NonLocalDepInfo::iterator Entry =
480 std::upper_bound(Cache.begin(), Cache.begin()+NumSortedEntries,
481 std::make_pair(DirtyBB, MemDepResult()));
Duncan Sands7050f3d2008-12-10 09:38:36 +0000482 if (Entry != Cache.begin() && prior(Entry)->first == DirtyBB)
Chris Lattnerbf145d62008-12-01 01:15:42 +0000483 --Entry;
484
485 MemDepResult *ExistingResult = 0;
486 if (Entry != Cache.begin()+NumSortedEntries &&
487 Entry->first == DirtyBB) {
488 // If we already have an entry, and if it isn't already dirty, the block
489 // is done.
490 if (!Entry->second.isDirty())
491 continue;
492
493 // Otherwise, remember this slot so we can update the value.
494 ExistingResult = &Entry->second;
495 }
496
Chris Lattner37d041c2008-11-30 01:18:27 +0000497 // If the dirty entry has a pointer, start scanning from it so we don't have
498 // to rescan the entire block.
499 BasicBlock::iterator ScanPos = DirtyBB->end();
Chris Lattnerbf145d62008-12-01 01:15:42 +0000500 if (ExistingResult) {
501 if (Instruction *Inst = ExistingResult->getInst()) {
502 ScanPos = Inst;
Chris Lattnerbf145d62008-12-01 01:15:42 +0000503 // We're removing QueryInst's use of Inst.
Chris Lattner1559b362008-12-09 19:38:05 +0000504 RemoveFromReverseMap(ReverseNonLocalDeps, Inst,
505 QueryCS.getInstruction());
Chris Lattnerbf145d62008-12-01 01:15:42 +0000506 }
Chris Lattnerf68f3102008-11-30 02:28:25 +0000507 }
Chris Lattner37d041c2008-11-30 01:18:27 +0000508
Chris Lattner73ec3cd2008-11-30 01:26:32 +0000509 // Find out if this block has a local dependency for QueryInst.
Chris Lattnerd8dd9342008-12-07 01:21:14 +0000510 MemDepResult Dep;
Chris Lattnere79be942008-12-07 01:50:16 +0000511
Chris Lattner1559b362008-12-09 19:38:05 +0000512 if (ScanPos != DirtyBB->begin()) {
Chris Lattner20d6f092008-12-09 21:19:42 +0000513 Dep = getCallSiteDependencyFrom(QueryCS, isReadonlyCall,ScanPos, DirtyBB);
Chris Lattner1559b362008-12-09 19:38:05 +0000514 } else if (DirtyBB != &DirtyBB->getParent()->getEntryBlock()) {
515 // No dependence found. If this is the entry block of the function, it is
516 // a clobber, otherwise it is non-local.
517 Dep = MemDepResult::getNonLocal();
Chris Lattnere79be942008-12-07 01:50:16 +0000518 } else {
Chris Lattner1559b362008-12-09 19:38:05 +0000519 Dep = MemDepResult::getClobber(ScanPos);
Chris Lattnere79be942008-12-07 01:50:16 +0000520 }
521
Chris Lattnerbf145d62008-12-01 01:15:42 +0000522 // If we had a dirty entry for the block, update it. Otherwise, just add
523 // a new entry.
524 if (ExistingResult)
525 *ExistingResult = Dep;
526 else
527 Cache.push_back(std::make_pair(DirtyBB, Dep));
528
Chris Lattner37d041c2008-11-30 01:18:27 +0000529 // If the block has a dependency (i.e. it isn't completely transparent to
Chris Lattnerbf145d62008-12-01 01:15:42 +0000530 // the value), remember the association!
531 if (!Dep.isNonLocal()) {
Chris Lattner37d041c2008-11-30 01:18:27 +0000532 // Keep the ReverseNonLocalDeps map up to date so we can efficiently
533 // update this when we remove instructions.
Chris Lattnerbf145d62008-12-01 01:15:42 +0000534 if (Instruction *Inst = Dep.getInst())
Chris Lattner1559b362008-12-09 19:38:05 +0000535 ReverseNonLocalDeps[Inst].insert(QueryCS.getInstruction());
Chris Lattnerbf145d62008-12-01 01:15:42 +0000536 } else {
Chris Lattner37d041c2008-11-30 01:18:27 +0000537
Chris Lattnerbf145d62008-12-01 01:15:42 +0000538 // If the block *is* completely transparent to the load, we need to check
539 // the predecessors of this block. Add them to our worklist.
Chris Lattner511b36c2008-12-09 06:44:17 +0000540 for (BasicBlock **PI = PredCache->GetPreds(DirtyBB); *PI; ++PI)
541 DirtyBlocks.push_back(*PI);
Chris Lattnerbf145d62008-12-01 01:15:42 +0000542 }
Chris Lattner37d041c2008-11-30 01:18:27 +0000543 }
544
Chris Lattnerbf145d62008-12-01 01:15:42 +0000545 return Cache;
Chris Lattner37d041c2008-11-30 01:18:27 +0000546}
547
Chris Lattner7ebcf032008-12-07 02:15:47 +0000548/// getNonLocalPointerDependency - Perform a full dependency query for an
549/// access to the specified (non-volatile) memory location, returning the
550/// set of instructions that either define or clobber the value.
551///
552/// This method assumes the pointer has a "NonLocal" dependency within its
553/// own block.
554///
555void MemoryDependenceAnalysis::
556getNonLocalPointerDependency(Value *Pointer, bool isLoad, BasicBlock *FromBB,
557 SmallVectorImpl<NonLocalDepEntry> &Result) {
Chris Lattner3f7eb5b2008-12-07 18:45:15 +0000558 assert(isa<PointerType>(Pointer->getType()) &&
559 "Can't get pointer deps of a non-pointer!");
Chris Lattner9a193fd2008-12-07 02:56:57 +0000560 Result.clear();
561
Chris Lattner7ebcf032008-12-07 02:15:47 +0000562 // We know that the pointer value is live into FromBB find the def/clobbers
563 // from presecessors.
Chris Lattner7ebcf032008-12-07 02:15:47 +0000564 const Type *EltTy = cast<PointerType>(Pointer->getType())->getElementType();
Dan Gohmanf5812132009-07-31 20:53:12 +0000565 uint64_t PointeeSize = AA->getTypeStoreSize(EltTy);
Chris Lattner7ebcf032008-12-07 02:15:47 +0000566
Chris Lattner9e59c642008-12-15 03:35:32 +0000567 // This is the set of blocks we've inspected, and the pointer we consider in
568 // each block. Because of critical edges, we currently bail out if querying
569 // a block with multiple different pointers. This can happen during PHI
570 // translation.
571 DenseMap<BasicBlock*, Value*> Visited;
572 if (!getNonLocalPointerDepFromBB(Pointer, PointeeSize, isLoad, FromBB,
573 Result, Visited, true))
574 return;
Chris Lattner3af23f82008-12-15 04:58:29 +0000575 Result.clear();
Chris Lattner9e59c642008-12-15 03:35:32 +0000576 Result.push_back(std::make_pair(FromBB,
577 MemDepResult::getClobber(FromBB->begin())));
Chris Lattner9a193fd2008-12-07 02:56:57 +0000578}
579
Chris Lattner9863c3f2008-12-09 07:47:11 +0000580/// GetNonLocalInfoForBlock - Compute the memdep value for BB with
581/// Pointer/PointeeSize using either cached information in Cache or by doing a
582/// lookup (which may use dirty cache info if available). If we do a lookup,
583/// add the result to the cache.
584MemDepResult MemoryDependenceAnalysis::
585GetNonLocalInfoForBlock(Value *Pointer, uint64_t PointeeSize,
586 bool isLoad, BasicBlock *BB,
587 NonLocalDepInfo *Cache, unsigned NumSortedEntries) {
588
589 // Do a binary search to see if we already have an entry for this block in
590 // the cache set. If so, find it.
591 NonLocalDepInfo::iterator Entry =
592 std::upper_bound(Cache->begin(), Cache->begin()+NumSortedEntries,
593 std::make_pair(BB, MemDepResult()));
Duncan Sands7050f3d2008-12-10 09:38:36 +0000594 if (Entry != Cache->begin() && prior(Entry)->first == BB)
Chris Lattner9863c3f2008-12-09 07:47:11 +0000595 --Entry;
596
597 MemDepResult *ExistingResult = 0;
598 if (Entry != Cache->begin()+NumSortedEntries && Entry->first == BB)
599 ExistingResult = &Entry->second;
600
601 // If we have a cached entry, and it is non-dirty, use it as the value for
602 // this dependency.
603 if (ExistingResult && !ExistingResult->isDirty()) {
604 ++NumCacheNonLocalPtr;
605 return *ExistingResult;
606 }
607
608 // Otherwise, we have to scan for the value. If we have a dirty cache
609 // entry, start scanning from its position, otherwise we scan from the end
610 // of the block.
611 BasicBlock::iterator ScanPos = BB->end();
612 if (ExistingResult && ExistingResult->getInst()) {
613 assert(ExistingResult->getInst()->getParent() == BB &&
614 "Instruction invalidated?");
615 ++NumCacheDirtyNonLocalPtr;
616 ScanPos = ExistingResult->getInst();
617
618 // Eliminating the dirty entry from 'Cache', so update the reverse info.
619 ValueIsLoadPair CacheKey(Pointer, isLoad);
Chris Lattner6a0dcc12009-03-29 00:24:04 +0000620 RemoveFromReverseMap(ReverseNonLocalPtrDeps, ScanPos, CacheKey);
Chris Lattner9863c3f2008-12-09 07:47:11 +0000621 } else {
622 ++NumUncacheNonLocalPtr;
623 }
624
625 // Scan the block for the dependency.
626 MemDepResult Dep = getPointerDependencyFrom(Pointer, PointeeSize, isLoad,
627 ScanPos, BB);
628
629 // If we had a dirty entry for the block, update it. Otherwise, just add
630 // a new entry.
631 if (ExistingResult)
632 *ExistingResult = Dep;
633 else
634 Cache->push_back(std::make_pair(BB, Dep));
635
636 // If the block has a dependency (i.e. it isn't completely transparent to
637 // the value), remember the reverse association because we just added it
638 // to Cache!
639 if (Dep.isNonLocal())
640 return Dep;
641
642 // Keep the ReverseNonLocalPtrDeps map up to date so we can efficiently
643 // update MemDep when we remove instructions.
644 Instruction *Inst = Dep.getInst();
645 assert(Inst && "Didn't depend on anything?");
646 ValueIsLoadPair CacheKey(Pointer, isLoad);
Chris Lattner6a0dcc12009-03-29 00:24:04 +0000647 ReverseNonLocalPtrDeps[Inst].insert(CacheKey);
Chris Lattner9863c3f2008-12-09 07:47:11 +0000648 return Dep;
649}
650
Chris Lattnera2f55dd2009-07-13 17:20:05 +0000651/// SortNonLocalDepInfoCache - Sort the a NonLocalDepInfo cache, given a certain
652/// number of elements in the array that are already properly ordered. This is
653/// optimized for the case when only a few entries are added.
654static void
655SortNonLocalDepInfoCache(MemoryDependenceAnalysis::NonLocalDepInfo &Cache,
656 unsigned NumSortedEntries) {
657 switch (Cache.size() - NumSortedEntries) {
658 case 0:
659 // done, no new entries.
660 break;
661 case 2: {
662 // Two new entries, insert the last one into place.
663 MemoryDependenceAnalysis::NonLocalDepEntry Val = Cache.back();
664 Cache.pop_back();
665 MemoryDependenceAnalysis::NonLocalDepInfo::iterator Entry =
666 std::upper_bound(Cache.begin(), Cache.end()-1, Val);
667 Cache.insert(Entry, Val);
668 // FALL THROUGH.
669 }
670 case 1:
671 // One new entry, Just insert the new value at the appropriate position.
672 if (Cache.size() != 1) {
673 MemoryDependenceAnalysis::NonLocalDepEntry Val = Cache.back();
674 Cache.pop_back();
675 MemoryDependenceAnalysis::NonLocalDepInfo::iterator Entry =
676 std::upper_bound(Cache.begin(), Cache.end(), Val);
677 Cache.insert(Entry, Val);
678 }
679 break;
680 default:
681 // Added many values, do a full scale sort.
682 std::sort(Cache.begin(), Cache.end());
683 break;
684 }
685}
686
Chris Lattnerdc593112009-11-26 23:18:49 +0000687/// isPHITranslatable - Return true if the specified computation is derived from
688/// a PHI node in the current block and if it is simple enough for us to handle.
689static bool isPHITranslatable(Instruction *Inst) {
690 if (isa<PHINode>(Inst))
691 return true;
692
Chris Lattnercc3d0eb2009-11-26 23:41:07 +0000693 // We can handle bitcast of a PHI, but the PHI needs to be in the same block
694 // as the bitcast.
695 if (BitCastInst *BC = dyn_cast<BitCastInst>(Inst))
696 if (PHINode *PN = dyn_cast<PHINode>(BC->getOperand(0)))
697 if (PN->getParent() == BC->getParent())
698 return true;
Chris Lattnerdc593112009-11-26 23:18:49 +0000699
Chris Lattner30407622009-11-27 00:07:37 +0000700 // We can translate a GEP that uses a PHI in the current block for at least
701 // one of its operands.
702 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Inst)) {
703 for (unsigned i = 0, e = GEP->getNumOperands(); i != e; ++i)
704 if (PHINode *PN = dyn_cast<PHINode>(GEP->getOperand(i)))
705 if (PN->getParent() == GEP->getParent())
706 return true;
707 }
Chris Lattnercc3d0eb2009-11-26 23:41:07 +0000708
Chris Lattnerdc593112009-11-26 23:18:49 +0000709 // cerr << "MEMDEP: Could not PHI translate: " << *Pointer;
710 // if (isa<BitCastInst>(PtrInst) || isa<GetElementPtrInst>(PtrInst))
711 // cerr << "OP:\t\t\t\t" << *PtrInst->getOperand(0);
712
713 return false;
714}
715
716/// PHITranslateForPred - Given a computation that satisfied the
717/// isPHITranslatable predicate, see if we can translate the computation into
718/// the specified predecessor block. If so, return that value.
719static Value *PHITranslateForPred(Instruction *Inst, BasicBlock *Pred) {
720 if (PHINode *PN = dyn_cast<PHINode>(Inst))
721 return PN->getIncomingValueForBlock(Pred);
722
Chris Lattner30407622009-11-27 00:07:37 +0000723 // Handle bitcast of PHI.
Chris Lattnercc3d0eb2009-11-26 23:41:07 +0000724 if (BitCastInst *BC = dyn_cast<BitCastInst>(Inst)) {
725 PHINode *BCPN = cast<PHINode>(BC->getOperand(0));
726 Value *PHIIn = BCPN->getIncomingValueForBlock(Pred);
727
728 // Constants are trivial to phi translate.
729 if (Constant *C = dyn_cast<Constant>(PHIIn))
730 return ConstantExpr::getBitCast(C, BC->getType());
731
732 // Otherwise we have to see if a bitcasted version of the incoming pointer
733 // is available. If so, we can use it, otherwise we have to fail.
734 for (Value::use_iterator UI = PHIIn->use_begin(), E = PHIIn->use_end();
735 UI != E; ++UI) {
736 if (BitCastInst *BCI = dyn_cast<BitCastInst>(*UI))
737 if (BCI->getType() == BC->getType())
738 return BCI;
739 }
740 return 0;
741 }
742
Chris Lattner30407622009-11-27 00:07:37 +0000743 // Handle getelementptr with at least one PHI operand.
744 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Inst)) {
745 SmallVector<Value*, 8> GEPOps;
746 Value *APHIOp = 0;
747 for (unsigned i = 0, e = GEP->getNumOperands(); i != e; ++i) {
748 GEPOps.push_back(GEP->getOperand(i));
749 if (PHINode *PN = dyn_cast<PHINode>(GEP->getOperand(i)))
750 if (PN->getParent() == GEP->getParent())
751 GEPOps.back() = APHIOp = PN->getIncomingValueForBlock(Pred);
752 }
753
754 // TODO: Simplify the GEP to handle 'gep x, 0' -> x etc.
755
756 // Scan to see if we have this GEP available.
757 for (Value::use_iterator UI = APHIOp->use_begin(), E = APHIOp->use_end();
758 UI != E; ++UI) {
759 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(*UI))
760 if (GEPI->getType() == GEPI->getType() &&
761 GEPI->getNumOperands() == GEPOps.size() &&
762 GEPI->getParent()->getParent() == Inst->getParent()->getParent()) {
763 bool Mismatch = false;
764 for (unsigned i = 0, e = GEPOps.size(); i != e; ++i)
765 if (GEPI->getOperand(i) != GEPOps[i]) {
766 Mismatch = true;
767 break;
768 }
769 if (!Mismatch)
770 return GEPI;
771 }
772 }
773 return 0;
774 }
775
Chris Lattnerdc593112009-11-26 23:18:49 +0000776 return 0;
777}
778
Chris Lattner9863c3f2008-12-09 07:47:11 +0000779
Chris Lattner9e59c642008-12-15 03:35:32 +0000780/// getNonLocalPointerDepFromBB - Perform a dependency query based on
781/// pointer/pointeesize starting at the end of StartBB. Add any clobber/def
782/// results to the results vector and keep track of which blocks are visited in
783/// 'Visited'.
784///
785/// This has special behavior for the first block queries (when SkipFirstBlock
786/// is true). In this special case, it ignores the contents of the specified
787/// block and starts returning dependence info for its predecessors.
788///
789/// This function returns false on success, or true to indicate that it could
790/// not compute dependence information for some reason. This should be treated
791/// as a clobber dependence on the first instruction in the predecessor block.
792bool MemoryDependenceAnalysis::
Chris Lattner9863c3f2008-12-09 07:47:11 +0000793getNonLocalPointerDepFromBB(Value *Pointer, uint64_t PointeeSize,
794 bool isLoad, BasicBlock *StartBB,
795 SmallVectorImpl<NonLocalDepEntry> &Result,
Chris Lattner9e59c642008-12-15 03:35:32 +0000796 DenseMap<BasicBlock*, Value*> &Visited,
797 bool SkipFirstBlock) {
Chris Lattner66364342009-09-20 22:44:26 +0000798
Chris Lattner6290f5c2008-12-07 08:50:20 +0000799 // Look up the cached info for Pointer.
800 ValueIsLoadPair CacheKey(Pointer, isLoad);
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000801
Chris Lattner9e59c642008-12-15 03:35:32 +0000802 std::pair<BBSkipFirstBlockPair, NonLocalDepInfo> *CacheInfo =
803 &NonLocalPointerDeps[CacheKey];
804 NonLocalDepInfo *Cache = &CacheInfo->second;
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000805
806 // If we have valid cached information for exactly the block we are
807 // investigating, just return it with no recomputation.
Chris Lattner9e59c642008-12-15 03:35:32 +0000808 if (CacheInfo->first == BBSkipFirstBlockPair(StartBB, SkipFirstBlock)) {
Chris Lattnerf4789512008-12-16 07:10:09 +0000809 // We have a fully cached result for this query then we can just return the
810 // cached results and populate the visited set. However, we have to verify
811 // that we don't already have conflicting results for these blocks. Check
812 // to ensure that if a block in the results set is in the visited set that
813 // it was for the same pointer query.
814 if (!Visited.empty()) {
815 for (NonLocalDepInfo::iterator I = Cache->begin(), E = Cache->end();
816 I != E; ++I) {
817 DenseMap<BasicBlock*, Value*>::iterator VI = Visited.find(I->first);
818 if (VI == Visited.end() || VI->second == Pointer) continue;
819
820 // We have a pointer mismatch in a block. Just return clobber, saying
821 // that something was clobbered in this result. We could also do a
822 // non-fully cached query, but there is little point in doing this.
823 return true;
824 }
825 }
826
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000827 for (NonLocalDepInfo::iterator I = Cache->begin(), E = Cache->end();
Chris Lattnerf4789512008-12-16 07:10:09 +0000828 I != E; ++I) {
829 Visited.insert(std::make_pair(I->first, Pointer));
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000830 if (!I->second.isNonLocal())
831 Result.push_back(*I);
Chris Lattnerf4789512008-12-16 07:10:09 +0000832 }
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000833 ++NumCacheCompleteNonLocalPtr;
Chris Lattner9e59c642008-12-15 03:35:32 +0000834 return false;
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000835 }
836
837 // Otherwise, either this is a new block, a block with an invalid cache
838 // pointer or one that we're about to invalidate by putting more info into it
839 // than its valid cache info. If empty, the result will be valid cache info,
840 // otherwise it isn't.
Chris Lattner9e59c642008-12-15 03:35:32 +0000841 if (Cache->empty())
842 CacheInfo->first = BBSkipFirstBlockPair(StartBB, SkipFirstBlock);
843 else
844 CacheInfo->first = BBSkipFirstBlockPair();
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000845
846 SmallVector<BasicBlock*, 32> Worklist;
847 Worklist.push_back(StartBB);
Chris Lattner6290f5c2008-12-07 08:50:20 +0000848
849 // Keep track of the entries that we know are sorted. Previously cached
850 // entries will all be sorted. The entries we add we only sort on demand (we
851 // don't insert every element into its sorted position). We know that we
852 // won't get any reuse from currently inserted values, because we don't
853 // revisit blocks after we insert info for them.
854 unsigned NumSortedEntries = Cache->size();
Chris Lattner12a7db32009-01-22 07:04:01 +0000855 DEBUG(AssertSorted(*Cache));
Chris Lattner6290f5c2008-12-07 08:50:20 +0000856
Chris Lattner7ebcf032008-12-07 02:15:47 +0000857 while (!Worklist.empty()) {
Chris Lattner9a193fd2008-12-07 02:56:57 +0000858 BasicBlock *BB = Worklist.pop_back_val();
Chris Lattner7ebcf032008-12-07 02:15:47 +0000859
Chris Lattner65633712008-12-09 07:52:59 +0000860 // Skip the first block if we have it.
Chris Lattner9e59c642008-12-15 03:35:32 +0000861 if (!SkipFirstBlock) {
Chris Lattner65633712008-12-09 07:52:59 +0000862 // Analyze the dependency of *Pointer in FromBB. See if we already have
863 // been here.
Chris Lattner9e59c642008-12-15 03:35:32 +0000864 assert(Visited.count(BB) && "Should check 'visited' before adding to WL");
Chris Lattner6290f5c2008-12-07 08:50:20 +0000865
Chris Lattner65633712008-12-09 07:52:59 +0000866 // Get the dependency info for Pointer in BB. If we have cached
867 // information, we will use it, otherwise we compute it.
Chris Lattner12a7db32009-01-22 07:04:01 +0000868 DEBUG(AssertSorted(*Cache, NumSortedEntries));
Chris Lattner65633712008-12-09 07:52:59 +0000869 MemDepResult Dep = GetNonLocalInfoForBlock(Pointer, PointeeSize, isLoad,
870 BB, Cache, NumSortedEntries);
871
872 // If we got a Def or Clobber, add this to the list of results.
873 if (!Dep.isNonLocal()) {
874 Result.push_back(NonLocalDepEntry(BB, Dep));
875 continue;
876 }
Chris Lattner7ebcf032008-12-07 02:15:47 +0000877 }
878
Chris Lattner9e59c642008-12-15 03:35:32 +0000879 // If 'Pointer' is an instruction defined in this block, then we need to do
880 // phi translation to change it into a value live in the predecessor block.
881 // If phi translation fails, then we can't continue dependence analysis.
882 Instruction *PtrInst = dyn_cast<Instruction>(Pointer);
883 bool NeedsPHITranslation = PtrInst && PtrInst->getParent() == BB;
884
885 // If no PHI translation is needed, just add all the predecessors of this
886 // block to scan them as well.
887 if (!NeedsPHITranslation) {
888 SkipFirstBlock = false;
889 for (BasicBlock **PI = PredCache->GetPreds(BB); *PI; ++PI) {
890 // Verify that we haven't looked at this block yet.
891 std::pair<DenseMap<BasicBlock*,Value*>::iterator, bool>
892 InsertRes = Visited.insert(std::make_pair(*PI, Pointer));
893 if (InsertRes.second) {
894 // First time we've looked at *PI.
895 Worklist.push_back(*PI);
896 continue;
897 }
898
899 // If we have seen this block before, but it was with a different
900 // pointer then we have a phi translation failure and we have to treat
901 // this as a clobber.
902 if (InsertRes.first->second != Pointer)
903 goto PredTranslationFailure;
904 }
905 continue;
906 }
907
908 // If we do need to do phi translation, then there are a bunch of different
909 // cases, because we have to find a Value* live in the predecessor block. We
910 // know that PtrInst is defined in this block at least.
Chris Lattner6fbc1962009-07-13 17:14:23 +0000911
912 // We may have added values to the cache list before this PHI translation.
913 // If so, we haven't done anything to ensure that the cache remains sorted.
914 // Sort it now (if needed) so that recursive invocations of
915 // getNonLocalPointerDepFromBB and other routines that could reuse the cache
916 // value will only see properly sorted cache arrays.
917 if (Cache && NumSortedEntries != Cache->size()) {
Chris Lattnera2f55dd2009-07-13 17:20:05 +0000918 SortNonLocalDepInfoCache(*Cache, NumSortedEntries);
Chris Lattner6fbc1962009-07-13 17:14:23 +0000919 NumSortedEntries = Cache->size();
920 }
Chris Lattner9e59c642008-12-15 03:35:32 +0000921
Chris Lattnerdc593112009-11-26 23:18:49 +0000922 // If this is a computation derived from a PHI node, use the suitably
923 // translated incoming values for each pred as the phi translated version.
924 if (isPHITranslatable(PtrInst)) {
Chris Lattner6fbc1962009-07-13 17:14:23 +0000925 Cache = 0;
926
Chris Lattner12a7db32009-01-22 07:04:01 +0000927 for (BasicBlock **PI = PredCache->GetPreds(BB); *PI; ++PI) {
Chris Lattner9e59c642008-12-15 03:35:32 +0000928 BasicBlock *Pred = *PI;
Chris Lattnerdc593112009-11-26 23:18:49 +0000929 Value *PredPtr = PHITranslateForPred(PtrInst, Pred);
930
931 // If PHI translation fails, bail out.
932 if (PredPtr == 0)
933 goto PredTranslationFailure;
Chris Lattner9e59c642008-12-15 03:35:32 +0000934
935 // Check to see if we have already visited this pred block with another
936 // pointer. If so, we can't do this lookup. This failure can occur
937 // with PHI translation when a critical edge exists and the PHI node in
938 // the successor translates to a pointer value different than the
939 // pointer the block was first analyzed with.
940 std::pair<DenseMap<BasicBlock*,Value*>::iterator, bool>
941 InsertRes = Visited.insert(std::make_pair(Pred, PredPtr));
942
943 if (!InsertRes.second) {
944 // If the predecessor was visited with PredPtr, then we already did
945 // the analysis and can ignore it.
946 if (InsertRes.first->second == PredPtr)
947 continue;
948
949 // Otherwise, the block was previously analyzed with a different
950 // pointer. We can't represent the result of this case, so we just
951 // treat this as a phi translation failure.
952 goto PredTranslationFailure;
953 }
Chris Lattner12a7db32009-01-22 07:04:01 +0000954
Chris Lattner12a7db32009-01-22 07:04:01 +0000955 // FIXME: it is entirely possible that PHI translating will end up with
956 // the same value. Consider PHI translating something like:
957 // X = phi [x, bb1], [y, bb2]. PHI translating for bb1 doesn't *need*
958 // to recurse here, pedantically speaking.
Chris Lattner9e59c642008-12-15 03:35:32 +0000959
960 // If we have a problem phi translating, fall through to the code below
961 // to handle the failure condition.
962 if (getNonLocalPointerDepFromBB(PredPtr, PointeeSize, isLoad, Pred,
963 Result, Visited))
964 goto PredTranslationFailure;
965 }
Chris Lattner6fbc1962009-07-13 17:14:23 +0000966
Chris Lattner9e59c642008-12-15 03:35:32 +0000967 // Refresh the CacheInfo/Cache pointer so that it isn't invalidated.
968 CacheInfo = &NonLocalPointerDeps[CacheKey];
969 Cache = &CacheInfo->second;
Chris Lattner12a7db32009-01-22 07:04:01 +0000970 NumSortedEntries = Cache->size();
Chris Lattnerb54bfc22009-01-23 00:27:03 +0000971
Chris Lattner9e59c642008-12-15 03:35:32 +0000972 // Since we did phi translation, the "Cache" set won't contain all of the
973 // results for the query. This is ok (we can still use it to accelerate
974 // specific block queries) but we can't do the fastpath "return all
975 // results from the set" Clear out the indicator for this.
976 CacheInfo->first = BBSkipFirstBlockPair();
977 SkipFirstBlock = false;
978 continue;
979 }
Chris Lattnerdc593112009-11-26 23:18:49 +0000980
Chris Lattner9e59c642008-12-15 03:35:32 +0000981 PredTranslationFailure:
982
Chris Lattner95900f22009-01-23 07:12:16 +0000983 if (Cache == 0) {
984 // Refresh the CacheInfo/Cache pointer if it got invalidated.
985 CacheInfo = &NonLocalPointerDeps[CacheKey];
986 Cache = &CacheInfo->second;
987 NumSortedEntries = Cache->size();
Chris Lattner95900f22009-01-23 07:12:16 +0000988 }
Chris Lattner6fbc1962009-07-13 17:14:23 +0000989
Chris Lattner9e59c642008-12-15 03:35:32 +0000990 // Since we did phi translation, the "Cache" set won't contain all of the
991 // results for the query. This is ok (we can still use it to accelerate
992 // specific block queries) but we can't do the fastpath "return all
993 // results from the set" Clear out the indicator for this.
994 CacheInfo->first = BBSkipFirstBlockPair();
995
996 // If *nothing* works, mark the pointer as being clobbered by the first
997 // instruction in this block.
998 //
999 // If this is the magic first block, return this as a clobber of the whole
1000 // incoming value. Since we can't phi translate to one of the predecessors,
1001 // we have to bail out.
1002 if (SkipFirstBlock)
1003 return true;
1004
1005 for (NonLocalDepInfo::reverse_iterator I = Cache->rbegin(); ; ++I) {
1006 assert(I != Cache->rend() && "Didn't find current block??");
1007 if (I->first != BB)
1008 continue;
1009
1010 assert(I->second.isNonLocal() &&
1011 "Should only be here with transparent block");
1012 I->second = MemDepResult::getClobber(BB->begin());
Chris Lattner6a0dcc12009-03-29 00:24:04 +00001013 ReverseNonLocalPtrDeps[BB->begin()].insert(CacheKey);
Chris Lattner9e59c642008-12-15 03:35:32 +00001014 Result.push_back(*I);
1015 break;
Chris Lattner9a193fd2008-12-07 02:56:57 +00001016 }
Chris Lattner7ebcf032008-12-07 02:15:47 +00001017 }
Chris Lattner95900f22009-01-23 07:12:16 +00001018
Chris Lattner9863c3f2008-12-09 07:47:11 +00001019 // Okay, we're done now. If we added new values to the cache, re-sort it.
Chris Lattnera2f55dd2009-07-13 17:20:05 +00001020 SortNonLocalDepInfoCache(*Cache, NumSortedEntries);
Chris Lattner12a7db32009-01-22 07:04:01 +00001021 DEBUG(AssertSorted(*Cache));
Chris Lattner9e59c642008-12-15 03:35:32 +00001022 return false;
Chris Lattner6290f5c2008-12-07 08:50:20 +00001023}
1024
1025/// RemoveCachedNonLocalPointerDependencies - If P exists in
1026/// CachedNonLocalPointerInfo, remove it.
1027void MemoryDependenceAnalysis::
1028RemoveCachedNonLocalPointerDependencies(ValueIsLoadPair P) {
1029 CachedNonLocalPointerInfo::iterator It =
1030 NonLocalPointerDeps.find(P);
1031 if (It == NonLocalPointerDeps.end()) return;
1032
1033 // Remove all of the entries in the BB->val map. This involves removing
1034 // instructions from the reverse map.
Chris Lattner11dcd8d2008-12-08 07:31:50 +00001035 NonLocalDepInfo &PInfo = It->second.second;
Chris Lattner6290f5c2008-12-07 08:50:20 +00001036
1037 for (unsigned i = 0, e = PInfo.size(); i != e; ++i) {
1038 Instruction *Target = PInfo[i].second.getInst();
1039 if (Target == 0) continue; // Ignore non-local dep results.
Chris Lattner5a45bf12008-12-09 22:45:32 +00001040 assert(Target->getParent() == PInfo[i].first);
Chris Lattner6290f5c2008-12-07 08:50:20 +00001041
1042 // Eliminating the dirty entry from 'Cache', so update the reverse info.
Chris Lattner6a0dcc12009-03-29 00:24:04 +00001043 RemoveFromReverseMap(ReverseNonLocalPtrDeps, Target, P);
Chris Lattner6290f5c2008-12-07 08:50:20 +00001044 }
1045
1046 // Remove P from NonLocalPointerDeps (which deletes NonLocalDepInfo).
1047 NonLocalPointerDeps.erase(It);
Chris Lattner7ebcf032008-12-07 02:15:47 +00001048}
1049
1050
Chris Lattnerbc99be12008-12-09 22:06:23 +00001051/// invalidateCachedPointerInfo - This method is used to invalidate cached
1052/// information about the specified pointer, because it may be too
1053/// conservative in memdep. This is an optional call that can be used when
1054/// the client detects an equivalence between the pointer and some other
1055/// value and replaces the other value with ptr. This can make Ptr available
1056/// in more places that cached info does not necessarily keep.
1057void MemoryDependenceAnalysis::invalidateCachedPointerInfo(Value *Ptr) {
1058 // If Ptr isn't really a pointer, just ignore it.
1059 if (!isa<PointerType>(Ptr->getType())) return;
1060 // Flush store info for the pointer.
1061 RemoveCachedNonLocalPointerDependencies(ValueIsLoadPair(Ptr, false));
1062 // Flush load info for the pointer.
1063 RemoveCachedNonLocalPointerDependencies(ValueIsLoadPair(Ptr, true));
1064}
1065
Owen Anderson78e02f72007-07-06 23:14:35 +00001066/// removeInstruction - Remove an instruction from the dependence analysis,
1067/// updating the dependence of instructions that previously depended on it.
Owen Anderson642a9e32007-08-08 22:26:03 +00001068/// This method attempts to keep the cache coherent using the reverse map.
Chris Lattner5f589dc2008-11-28 22:04:47 +00001069void MemoryDependenceAnalysis::removeInstruction(Instruction *RemInst) {
Chris Lattner5f589dc2008-11-28 22:04:47 +00001070 // Walk through the Non-local dependencies, removing this one as the value
1071 // for any cached queries.
Chris Lattnerf68f3102008-11-30 02:28:25 +00001072 NonLocalDepMapType::iterator NLDI = NonLocalDeps.find(RemInst);
1073 if (NLDI != NonLocalDeps.end()) {
Chris Lattnerbf145d62008-12-01 01:15:42 +00001074 NonLocalDepInfo &BlockMap = NLDI->second.first;
Chris Lattner25f4b2b2008-11-30 02:30:50 +00001075 for (NonLocalDepInfo::iterator DI = BlockMap.begin(), DE = BlockMap.end();
1076 DI != DE; ++DI)
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +00001077 if (Instruction *Inst = DI->second.getInst())
Chris Lattnerd44745d2008-12-07 18:39:13 +00001078 RemoveFromReverseMap(ReverseNonLocalDeps, Inst, RemInst);
Chris Lattnerf68f3102008-11-30 02:28:25 +00001079 NonLocalDeps.erase(NLDI);
1080 }
Owen Anderson5fc4aba2007-12-08 01:37:09 +00001081
Chris Lattner5f589dc2008-11-28 22:04:47 +00001082 // If we have a cached local dependence query for this instruction, remove it.
Chris Lattnerbaad8882008-11-28 22:28:27 +00001083 //
Chris Lattner39f372e2008-11-29 01:43:36 +00001084 LocalDepMapType::iterator LocalDepEntry = LocalDeps.find(RemInst);
1085 if (LocalDepEntry != LocalDeps.end()) {
Chris Lattner125ce362008-11-30 01:09:30 +00001086 // Remove us from DepInst's reverse set now that the local dep info is gone.
Chris Lattnerd44745d2008-12-07 18:39:13 +00001087 if (Instruction *Inst = LocalDepEntry->second.getInst())
1088 RemoveFromReverseMap(ReverseLocalDeps, Inst, RemInst);
Chris Lattner125ce362008-11-30 01:09:30 +00001089
Chris Lattnerbaad8882008-11-28 22:28:27 +00001090 // Remove this local dependency info.
Chris Lattner39f372e2008-11-29 01:43:36 +00001091 LocalDeps.erase(LocalDepEntry);
Chris Lattner6290f5c2008-12-07 08:50:20 +00001092 }
1093
1094 // If we have any cached pointer dependencies on this instruction, remove
1095 // them. If the instruction has non-pointer type, then it can't be a pointer
1096 // base.
1097
1098 // Remove it from both the load info and the store info. The instruction
1099 // can't be in either of these maps if it is non-pointer.
1100 if (isa<PointerType>(RemInst->getType())) {
1101 RemoveCachedNonLocalPointerDependencies(ValueIsLoadPair(RemInst, false));
1102 RemoveCachedNonLocalPointerDependencies(ValueIsLoadPair(RemInst, true));
1103 }
Chris Lattnerbaad8882008-11-28 22:28:27 +00001104
Chris Lattnerd3d12ec2008-11-28 22:51:08 +00001105 // Loop over all of the things that depend on the instruction we're removing.
1106 //
Chris Lattner4f8c18c2008-11-29 23:30:39 +00001107 SmallVector<std::pair<Instruction*, Instruction*>, 8> ReverseDepsToAdd;
Chris Lattner0655f732008-12-07 18:42:51 +00001108
1109 // If we find RemInst as a clobber or Def in any of the maps for other values,
1110 // we need to replace its entry with a dirty version of the instruction after
1111 // it. If RemInst is a terminator, we use a null dirty value.
1112 //
1113 // Using a dirty version of the instruction after RemInst saves having to scan
1114 // the entire block to get to this point.
1115 MemDepResult NewDirtyVal;
1116 if (!RemInst->isTerminator())
1117 NewDirtyVal = MemDepResult::getDirty(++BasicBlock::iterator(RemInst));
Chris Lattner4f8c18c2008-11-29 23:30:39 +00001118
Chris Lattner8c465272008-11-29 09:20:15 +00001119 ReverseDepMapType::iterator ReverseDepIt = ReverseLocalDeps.find(RemInst);
1120 if (ReverseDepIt != ReverseLocalDeps.end()) {
Chris Lattnerd3d12ec2008-11-28 22:51:08 +00001121 SmallPtrSet<Instruction*, 4> &ReverseDeps = ReverseDepIt->second;
Chris Lattner6290f5c2008-12-07 08:50:20 +00001122 // RemInst can't be the terminator if it has local stuff depending on it.
Chris Lattner125ce362008-11-30 01:09:30 +00001123 assert(!ReverseDeps.empty() && !isa<TerminatorInst>(RemInst) &&
1124 "Nothing can locally depend on a terminator");
1125
Chris Lattnerd3d12ec2008-11-28 22:51:08 +00001126 for (SmallPtrSet<Instruction*, 4>::iterator I = ReverseDeps.begin(),
1127 E = ReverseDeps.end(); I != E; ++I) {
1128 Instruction *InstDependingOnRemInst = *I;
Chris Lattnerf68f3102008-11-30 02:28:25 +00001129 assert(InstDependingOnRemInst != RemInst &&
1130 "Already removed our local dep info");
Chris Lattner125ce362008-11-30 01:09:30 +00001131
Chris Lattner0655f732008-12-07 18:42:51 +00001132 LocalDeps[InstDependingOnRemInst] = NewDirtyVal;
Chris Lattnerd3d12ec2008-11-28 22:51:08 +00001133
Chris Lattner125ce362008-11-30 01:09:30 +00001134 // Make sure to remember that new things depend on NewDepInst.
Chris Lattner0655f732008-12-07 18:42:51 +00001135 assert(NewDirtyVal.getInst() && "There is no way something else can have "
1136 "a local dep on this if it is a terminator!");
1137 ReverseDepsToAdd.push_back(std::make_pair(NewDirtyVal.getInst(),
Chris Lattner125ce362008-11-30 01:09:30 +00001138 InstDependingOnRemInst));
Chris Lattnerd3d12ec2008-11-28 22:51:08 +00001139 }
Chris Lattner4f8c18c2008-11-29 23:30:39 +00001140
1141 ReverseLocalDeps.erase(ReverseDepIt);
1142
1143 // Add new reverse deps after scanning the set, to avoid invalidating the
1144 // 'ReverseDeps' reference.
1145 while (!ReverseDepsToAdd.empty()) {
1146 ReverseLocalDeps[ReverseDepsToAdd.back().first]
1147 .insert(ReverseDepsToAdd.back().second);
1148 ReverseDepsToAdd.pop_back();
1149 }
Owen Anderson78e02f72007-07-06 23:14:35 +00001150 }
Owen Anderson4d13de42007-08-16 21:27:05 +00001151
Chris Lattner8c465272008-11-29 09:20:15 +00001152 ReverseDepIt = ReverseNonLocalDeps.find(RemInst);
1153 if (ReverseDepIt != ReverseNonLocalDeps.end()) {
Chris Lattner6290f5c2008-12-07 08:50:20 +00001154 SmallPtrSet<Instruction*, 4> &Set = ReverseDepIt->second;
1155 for (SmallPtrSet<Instruction*, 4>::iterator I = Set.begin(), E = Set.end();
Chris Lattnerf68f3102008-11-30 02:28:25 +00001156 I != E; ++I) {
1157 assert(*I != RemInst && "Already removed NonLocalDep info for RemInst");
1158
Chris Lattner4a69bad2008-11-30 02:52:26 +00001159 PerInstNLInfo &INLD = NonLocalDeps[*I];
Chris Lattner4a69bad2008-11-30 02:52:26 +00001160 // The information is now dirty!
Chris Lattnerbf145d62008-12-01 01:15:42 +00001161 INLD.second = true;
Chris Lattnerf68f3102008-11-30 02:28:25 +00001162
Chris Lattnerbf145d62008-12-01 01:15:42 +00001163 for (NonLocalDepInfo::iterator DI = INLD.first.begin(),
1164 DE = INLD.first.end(); DI != DE; ++DI) {
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +00001165 if (DI->second.getInst() != RemInst) continue;
Chris Lattnerf68f3102008-11-30 02:28:25 +00001166
1167 // Convert to a dirty entry for the subsequent instruction.
Chris Lattner0655f732008-12-07 18:42:51 +00001168 DI->second = NewDirtyVal;
1169
1170 if (Instruction *NextI = NewDirtyVal.getInst())
Chris Lattnerf68f3102008-11-30 02:28:25 +00001171 ReverseDepsToAdd.push_back(std::make_pair(NextI, *I));
Chris Lattnerf68f3102008-11-30 02:28:25 +00001172 }
1173 }
Chris Lattner4f8c18c2008-11-29 23:30:39 +00001174
1175 ReverseNonLocalDeps.erase(ReverseDepIt);
1176
Chris Lattner0ec48dd2008-11-29 22:02:15 +00001177 // Add new reverse deps after scanning the set, to avoid invalidating 'Set'
1178 while (!ReverseDepsToAdd.empty()) {
1179 ReverseNonLocalDeps[ReverseDepsToAdd.back().first]
1180 .insert(ReverseDepsToAdd.back().second);
1181 ReverseDepsToAdd.pop_back();
1182 }
Owen Anderson4d13de42007-08-16 21:27:05 +00001183 }
Owen Anderson5fc4aba2007-12-08 01:37:09 +00001184
Chris Lattner6290f5c2008-12-07 08:50:20 +00001185 // If the instruction is in ReverseNonLocalPtrDeps then it appears as a
1186 // value in the NonLocalPointerDeps info.
1187 ReverseNonLocalPtrDepTy::iterator ReversePtrDepIt =
1188 ReverseNonLocalPtrDeps.find(RemInst);
1189 if (ReversePtrDepIt != ReverseNonLocalPtrDeps.end()) {
Chris Lattner6a0dcc12009-03-29 00:24:04 +00001190 SmallPtrSet<ValueIsLoadPair, 4> &Set = ReversePtrDepIt->second;
Chris Lattner6290f5c2008-12-07 08:50:20 +00001191 SmallVector<std::pair<Instruction*, ValueIsLoadPair>,8> ReversePtrDepsToAdd;
1192
Chris Lattner6a0dcc12009-03-29 00:24:04 +00001193 for (SmallPtrSet<ValueIsLoadPair, 4>::iterator I = Set.begin(),
1194 E = Set.end(); I != E; ++I) {
1195 ValueIsLoadPair P = *I;
Chris Lattner6290f5c2008-12-07 08:50:20 +00001196 assert(P.getPointer() != RemInst &&
1197 "Already removed NonLocalPointerDeps info for RemInst");
1198
Chris Lattner11dcd8d2008-12-08 07:31:50 +00001199 NonLocalDepInfo &NLPDI = NonLocalPointerDeps[P].second;
1200
1201 // The cache is not valid for any specific block anymore.
Chris Lattner9e59c642008-12-15 03:35:32 +00001202 NonLocalPointerDeps[P].first = BBSkipFirstBlockPair();
Chris Lattner6290f5c2008-12-07 08:50:20 +00001203
Chris Lattner6290f5c2008-12-07 08:50:20 +00001204 // Update any entries for RemInst to use the instruction after it.
1205 for (NonLocalDepInfo::iterator DI = NLPDI.begin(), DE = NLPDI.end();
1206 DI != DE; ++DI) {
1207 if (DI->second.getInst() != RemInst) continue;
1208
1209 // Convert to a dirty entry for the subsequent instruction.
1210 DI->second = NewDirtyVal;
1211
1212 if (Instruction *NewDirtyInst = NewDirtyVal.getInst())
1213 ReversePtrDepsToAdd.push_back(std::make_pair(NewDirtyInst, P));
1214 }
Chris Lattner95900f22009-01-23 07:12:16 +00001215
1216 // Re-sort the NonLocalDepInfo. Changing the dirty entry to its
1217 // subsequent value may invalidate the sortedness.
1218 std::sort(NLPDI.begin(), NLPDI.end());
Chris Lattner6290f5c2008-12-07 08:50:20 +00001219 }
1220
1221 ReverseNonLocalPtrDeps.erase(ReversePtrDepIt);
1222
1223 while (!ReversePtrDepsToAdd.empty()) {
1224 ReverseNonLocalPtrDeps[ReversePtrDepsToAdd.back().first]
Chris Lattner6a0dcc12009-03-29 00:24:04 +00001225 .insert(ReversePtrDepsToAdd.back().second);
Chris Lattner6290f5c2008-12-07 08:50:20 +00001226 ReversePtrDepsToAdd.pop_back();
1227 }
1228 }
1229
1230
Chris Lattnerf68f3102008-11-30 02:28:25 +00001231 assert(!NonLocalDeps.count(RemInst) && "RemInst got reinserted?");
Chris Lattnerd777d402008-11-30 19:24:31 +00001232 AA->deleteValue(RemInst);
Chris Lattner5f589dc2008-11-28 22:04:47 +00001233 DEBUG(verifyRemoved(RemInst));
Owen Anderson78e02f72007-07-06 23:14:35 +00001234}
Chris Lattner729b2372008-11-29 21:25:10 +00001235/// verifyRemoved - Verify that the specified instruction does not occur
1236/// in our internal data structures.
1237void MemoryDependenceAnalysis::verifyRemoved(Instruction *D) const {
1238 for (LocalDepMapType::const_iterator I = LocalDeps.begin(),
1239 E = LocalDeps.end(); I != E; ++I) {
1240 assert(I->first != D && "Inst occurs in data structures");
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +00001241 assert(I->second.getInst() != D &&
Chris Lattner729b2372008-11-29 21:25:10 +00001242 "Inst occurs in data structures");
1243 }
1244
Chris Lattner6290f5c2008-12-07 08:50:20 +00001245 for (CachedNonLocalPointerInfo::const_iterator I =NonLocalPointerDeps.begin(),
1246 E = NonLocalPointerDeps.end(); I != E; ++I) {
1247 assert(I->first.getPointer() != D && "Inst occurs in NLPD map key");
Chris Lattner11dcd8d2008-12-08 07:31:50 +00001248 const NonLocalDepInfo &Val = I->second.second;
Chris Lattner6290f5c2008-12-07 08:50:20 +00001249 for (NonLocalDepInfo::const_iterator II = Val.begin(), E = Val.end();
1250 II != E; ++II)
1251 assert(II->second.getInst() != D && "Inst occurs as NLPD value");
1252 }
1253
Chris Lattner729b2372008-11-29 21:25:10 +00001254 for (NonLocalDepMapType::const_iterator I = NonLocalDeps.begin(),
1255 E = NonLocalDeps.end(); I != E; ++I) {
1256 assert(I->first != D && "Inst occurs in data structures");
Chris Lattner4a69bad2008-11-30 02:52:26 +00001257 const PerInstNLInfo &INLD = I->second;
Chris Lattnerbf145d62008-12-01 01:15:42 +00001258 for (NonLocalDepInfo::const_iterator II = INLD.first.begin(),
1259 EE = INLD.first.end(); II != EE; ++II)
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +00001260 assert(II->second.getInst() != D && "Inst occurs in data structures");
Chris Lattner729b2372008-11-29 21:25:10 +00001261 }
1262
1263 for (ReverseDepMapType::const_iterator I = ReverseLocalDeps.begin(),
Chris Lattnerf68f3102008-11-30 02:28:25 +00001264 E = ReverseLocalDeps.end(); I != E; ++I) {
1265 assert(I->first != D && "Inst occurs in data structures");
Chris Lattner729b2372008-11-29 21:25:10 +00001266 for (SmallPtrSet<Instruction*, 4>::const_iterator II = I->second.begin(),
1267 EE = I->second.end(); II != EE; ++II)
1268 assert(*II != D && "Inst occurs in data structures");
Chris Lattnerf68f3102008-11-30 02:28:25 +00001269 }
Chris Lattner729b2372008-11-29 21:25:10 +00001270
1271 for (ReverseDepMapType::const_iterator I = ReverseNonLocalDeps.begin(),
1272 E = ReverseNonLocalDeps.end();
Chris Lattnerf68f3102008-11-30 02:28:25 +00001273 I != E; ++I) {
1274 assert(I->first != D && "Inst occurs in data structures");
Chris Lattner729b2372008-11-29 21:25:10 +00001275 for (SmallPtrSet<Instruction*, 4>::const_iterator II = I->second.begin(),
1276 EE = I->second.end(); II != EE; ++II)
1277 assert(*II != D && "Inst occurs in data structures");
Chris Lattnerf68f3102008-11-30 02:28:25 +00001278 }
Chris Lattner6290f5c2008-12-07 08:50:20 +00001279
1280 for (ReverseNonLocalPtrDepTy::const_iterator
1281 I = ReverseNonLocalPtrDeps.begin(),
1282 E = ReverseNonLocalPtrDeps.end(); I != E; ++I) {
1283 assert(I->first != D && "Inst occurs in rev NLPD map");
1284
Chris Lattner6a0dcc12009-03-29 00:24:04 +00001285 for (SmallPtrSet<ValueIsLoadPair, 4>::const_iterator II = I->second.begin(),
Chris Lattner6290f5c2008-12-07 08:50:20 +00001286 E = I->second.end(); II != E; ++II)
Chris Lattner6a0dcc12009-03-29 00:24:04 +00001287 assert(*II != ValueIsLoadPair(D, false) &&
1288 *II != ValueIsLoadPair(D, true) &&
Chris Lattner6290f5c2008-12-07 08:50:20 +00001289 "Inst occurs in ReverseNonLocalPtrDeps map");
1290 }
1291
Chris Lattner729b2372008-11-29 21:25:10 +00001292}