blob: ed95b90cc9894af3da85e4135476a7541e50ca15 [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"
Owen Anderson7a616a12007-07-10 17:25:03 +000019#include "llvm/Constants.h"
Owen Anderson78e02f72007-07-06 23:14:35 +000020#include "llvm/Instructions.h"
Owen Andersonf6cec852009-03-09 05:12:38 +000021#include "llvm/IntrinsicInst.h"
Owen Anderson78e02f72007-07-06 23:14:35 +000022#include "llvm/Function.h"
23#include "llvm/Analysis/AliasAnalysis.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 +000028#include "llvm/Target/TargetData.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>();
74 AU.addRequiredTransitive<TargetData>();
75}
76
Chris Lattnerd777d402008-11-30 19:24:31 +000077bool MemoryDependenceAnalysis::runOnFunction(Function &) {
78 AA = &getAnalysis<AliasAnalysis>();
79 TD = &getAnalysis<TargetData>();
Chris Lattner4012fdd2008-12-09 06:28:49 +000080 if (PredCache == 0)
81 PredCache.reset(new PredIteratorCache());
Chris Lattnerd777d402008-11-30 19:24:31 +000082 return false;
83}
84
Chris Lattnerd44745d2008-12-07 18:39:13 +000085/// RemoveFromReverseMap - This is a helper function that removes Val from
86/// 'Inst's set in ReverseMap. If the set becomes empty, remove Inst's entry.
87template <typename KeyTy>
88static void RemoveFromReverseMap(DenseMap<Instruction*,
89 SmallPtrSet<KeyTy*, 4> > &ReverseMap,
90 Instruction *Inst, KeyTy *Val) {
91 typename DenseMap<Instruction*, SmallPtrSet<KeyTy*, 4> >::iterator
92 InstIt = ReverseMap.find(Inst);
93 assert(InstIt != ReverseMap.end() && "Reverse map out of sync?");
94 bool Found = InstIt->second.erase(Val);
95 assert(Found && "Invalid reverse map!"); Found=Found;
96 if (InstIt->second.empty())
97 ReverseMap.erase(InstIt);
98}
99
Chris Lattnerbf145d62008-12-01 01:15:42 +0000100
Chris Lattner8ef57c52008-12-07 00:35:51 +0000101/// getCallSiteDependencyFrom - Private helper for finding the local
102/// dependencies of a call site.
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000103MemDepResult MemoryDependenceAnalysis::
Chris Lattner20d6f092008-12-09 21:19:42 +0000104getCallSiteDependencyFrom(CallSite CS, bool isReadOnlyCall,
105 BasicBlock::iterator ScanIt, BasicBlock *BB) {
Owen Anderson642a9e32007-08-08 22:26:03 +0000106 // Walk backwards through the block, looking for dependencies
Chris Lattner5391a1d2008-11-29 03:47:00 +0000107 while (ScanIt != BB->begin()) {
108 Instruction *Inst = --ScanIt;
Owen Anderson5f323202007-07-10 17:59:22 +0000109
110 // If this inst is a memory op, get the pointer it accessed
Chris Lattner00314b32008-11-29 09:15:21 +0000111 Value *Pointer = 0;
112 uint64_t PointerSize = 0;
113 if (StoreInst *S = dyn_cast<StoreInst>(Inst)) {
114 Pointer = S->getPointerOperand();
Chris Lattnerd777d402008-11-30 19:24:31 +0000115 PointerSize = TD->getTypeStoreSize(S->getOperand(0)->getType());
Chris Lattner00314b32008-11-29 09:15:21 +0000116 } else if (VAArgInst *V = dyn_cast<VAArgInst>(Inst)) {
117 Pointer = V->getOperand(0);
Chris Lattnerd777d402008-11-30 19:24:31 +0000118 PointerSize = TD->getTypeStoreSize(V->getType());
Chris Lattner00314b32008-11-29 09:15:21 +0000119 } else if (FreeInst *F = dyn_cast<FreeInst>(Inst)) {
120 Pointer = F->getPointerOperand();
Owen Anderson5f323202007-07-10 17:59:22 +0000121
122 // FreeInsts erase the entire structure
Chris Lattner6290f5c2008-12-07 08:50:20 +0000123 PointerSize = ~0ULL;
Chris Lattner00314b32008-11-29 09:15:21 +0000124 } else if (isa<CallInst>(Inst) || isa<InvokeInst>(Inst)) {
Owen Andersonf6cec852009-03-09 05:12:38 +0000125 // Debug intrinsics don't cause dependences.
Dale Johannesen497cb6f2009-03-11 21:13:01 +0000126 if (isa<DbgInfoIntrinsic>(Inst)) continue;
Chris Lattnerb51deb92008-12-05 21:04:20 +0000127 CallSite InstCS = CallSite::get(Inst);
128 // If these two calls do not interfere, look past it.
Chris Lattner20d6f092008-12-09 21:19:42 +0000129 switch (AA->getModRefInfo(CS, InstCS)) {
130 case AliasAnalysis::NoModRef:
131 // If the two calls don't interact (e.g. InstCS is readnone) keep
132 // scanning.
Chris Lattner00314b32008-11-29 09:15:21 +0000133 continue;
Chris Lattner20d6f092008-12-09 21:19:42 +0000134 case AliasAnalysis::Ref:
135 // If the two calls read the same memory locations and CS is a readonly
136 // function, then we have two cases: 1) the calls may not interfere with
137 // each other at all. 2) the calls may produce the same value. In case
138 // #1 we want to ignore the values, in case #2, we want to return Inst
139 // as a Def dependence. This allows us to CSE in cases like:
140 // X = strlen(P);
141 // memchr(...);
142 // Y = strlen(P); // Y = X
143 if (isReadOnlyCall) {
144 if (CS.getCalledFunction() != 0 &&
145 CS.getCalledFunction() == InstCS.getCalledFunction())
146 return MemDepResult::getDef(Inst);
147 // Ignore unrelated read/read call dependences.
148 continue;
149 }
150 // FALL THROUGH
151 default:
Chris Lattnerb51deb92008-12-05 21:04:20 +0000152 return MemDepResult::getClobber(Inst);
Chris Lattner20d6f092008-12-09 21:19:42 +0000153 }
Chris Lattnercfbb6342008-11-30 01:44:00 +0000154 } else {
155 // Non-memory instruction.
Owen Anderson202da142007-07-10 20:39:07 +0000156 continue;
Chris Lattnercfbb6342008-11-30 01:44:00 +0000157 }
Owen Anderson5f323202007-07-10 17:59:22 +0000158
Chris Lattnerb51deb92008-12-05 21:04:20 +0000159 if (AA->getModRefInfo(CS, Pointer, PointerSize) != AliasAnalysis::NoModRef)
160 return MemDepResult::getClobber(Inst);
Owen Anderson5f323202007-07-10 17:59:22 +0000161 }
162
Chris Lattner7ebcf032008-12-07 02:15:47 +0000163 // No dependence found. If this is the entry block of the function, it is a
164 // clobber, otherwise it is non-local.
165 if (BB != &BB->getParent()->getEntryBlock())
166 return MemDepResult::getNonLocal();
167 return MemDepResult::getClobber(ScanIt);
Owen Anderson5f323202007-07-10 17:59:22 +0000168}
169
Chris Lattnere79be942008-12-07 01:50:16 +0000170/// getPointerDependencyFrom - Return the instruction on which a memory
171/// location depends. If isLoad is true, this routine ignore may-aliases with
172/// read-only operations.
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000173MemDepResult MemoryDependenceAnalysis::
Chris Lattnere79be942008-12-07 01:50:16 +0000174getPointerDependencyFrom(Value *MemPtr, uint64_t MemSize, bool isLoad,
175 BasicBlock::iterator ScanIt, BasicBlock *BB) {
Chris Lattner7ebcf032008-12-07 02:15:47 +0000176
Chris Lattner6290f5c2008-12-07 08:50:20 +0000177 // Walk backwards through the basic block, looking for dependencies.
Chris Lattner5391a1d2008-11-29 03:47:00 +0000178 while (ScanIt != BB->begin()) {
179 Instruction *Inst = --ScanIt;
Chris Lattnera161ab02008-11-29 09:09:48 +0000180
Owen Andersonf6cec852009-03-09 05:12:38 +0000181 // Debug intrinsics don't cause dependences.
182 if (isa<DbgInfoIntrinsic>(Inst)) continue;
183
Chris Lattnercfbb6342008-11-30 01:44:00 +0000184 // Values depend on loads if the pointers are must aliased. This means that
185 // a load depends on another must aliased load from the same value.
Chris Lattnerb51deb92008-12-05 21:04:20 +0000186 if (LoadInst *LI = dyn_cast<LoadInst>(Inst)) {
Chris Lattnerb51deb92008-12-05 21:04:20 +0000187 Value *Pointer = LI->getPointerOperand();
188 uint64_t PointerSize = TD->getTypeStoreSize(LI->getType());
189
190 // If we found a pointer, check if it could be the same as our pointer.
Chris Lattnera161ab02008-11-29 09:09:48 +0000191 AliasAnalysis::AliasResult R =
Chris Lattnerd777d402008-11-30 19:24:31 +0000192 AA->alias(Pointer, PointerSize, MemPtr, MemSize);
Chris Lattnera161ab02008-11-29 09:09:48 +0000193 if (R == AliasAnalysis::NoAlias)
194 continue;
195
196 // May-alias loads don't depend on each other without a dependence.
Chris Lattnere79be942008-12-07 01:50:16 +0000197 if (isLoad && R == AliasAnalysis::MayAlias)
Chris Lattnera161ab02008-11-29 09:09:48 +0000198 continue;
Chris Lattner6290f5c2008-12-07 08:50:20 +0000199 // Stores depend on may and must aliased loads, loads depend on must-alias
200 // loads.
Chris Lattnerb51deb92008-12-05 21:04:20 +0000201 return MemDepResult::getDef(Inst);
202 }
203
204 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
Chris Lattnerb51deb92008-12-05 21:04:20 +0000205 Value *Pointer = SI->getPointerOperand();
206 uint64_t PointerSize = TD->getTypeStoreSize(SI->getOperand(0)->getType());
207
208 // If we found a pointer, check if it could be the same as our pointer.
209 AliasAnalysis::AliasResult R =
210 AA->alias(Pointer, PointerSize, MemPtr, MemSize);
211
212 if (R == AliasAnalysis::NoAlias)
213 continue;
214 if (R == AliasAnalysis::MayAlias)
215 return MemDepResult::getClobber(Inst);
216 return MemDepResult::getDef(Inst);
Owen Anderson78e02f72007-07-06 23:14:35 +0000217 }
Chris Lattner237a8282008-11-30 01:39:32 +0000218
219 // If this is an allocation, and if we know that the accessed pointer is to
Chris Lattnerb51deb92008-12-05 21:04:20 +0000220 // the allocation, return Def. This means that there is no dependence and
Chris Lattner237a8282008-11-30 01:39:32 +0000221 // the access can be optimized based on that. For example, a load could
222 // turn into undef.
Chris Lattnera161ab02008-11-29 09:09:48 +0000223 if (AllocationInst *AI = dyn_cast<AllocationInst>(Inst)) {
Chris Lattner237a8282008-11-30 01:39:32 +0000224 Value *AccessPtr = MemPtr->getUnderlyingObject();
Owen Anderson78e02f72007-07-06 23:14:35 +0000225
Chris Lattner237a8282008-11-30 01:39:32 +0000226 if (AccessPtr == AI ||
Chris Lattnerd777d402008-11-30 19:24:31 +0000227 AA->alias(AI, 1, AccessPtr, 1) == AliasAnalysis::MustAlias)
Chris Lattnerb51deb92008-12-05 21:04:20 +0000228 return MemDepResult::getDef(AI);
Chris Lattner237a8282008-11-30 01:39:32 +0000229 continue;
Chris Lattnera161ab02008-11-29 09:09:48 +0000230 }
Chris Lattnera161ab02008-11-29 09:09:48 +0000231
Chris Lattnerb51deb92008-12-05 21:04:20 +0000232 // See if this instruction (e.g. a call or vaarg) mod/ref's the pointer.
Chris Lattner3579e442008-12-09 19:47:40 +0000233 switch (AA->getModRefInfo(Inst, MemPtr, MemSize)) {
234 case AliasAnalysis::NoModRef:
235 // If the call has no effect on the queried pointer, just ignore it.
Chris Lattner25a08142008-11-29 08:51:16 +0000236 continue;
Chris Lattner3579e442008-12-09 19:47:40 +0000237 case AliasAnalysis::Ref:
238 // If the call is known to never store to the pointer, and if this is a
239 // load query, we can safely ignore it (scan past it).
240 if (isLoad)
241 continue;
242 // FALL THROUGH.
243 default:
244 // Otherwise, there is a potential dependence. Return a clobber.
245 return MemDepResult::getClobber(Inst);
246 }
Owen Anderson78e02f72007-07-06 23:14:35 +0000247 }
248
Chris Lattner7ebcf032008-12-07 02:15:47 +0000249 // No dependence found. If this is the entry block of the function, it is a
250 // clobber, otherwise it is non-local.
251 if (BB != &BB->getParent()->getEntryBlock())
252 return MemDepResult::getNonLocal();
253 return MemDepResult::getClobber(ScanIt);
Owen Anderson78e02f72007-07-06 23:14:35 +0000254}
255
Chris Lattner5391a1d2008-11-29 03:47:00 +0000256/// getDependency - Return the instruction on which a memory operation
257/// depends.
258MemDepResult MemoryDependenceAnalysis::getDependency(Instruction *QueryInst) {
259 Instruction *ScanPos = QueryInst;
260
261 // Check for a cached result
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000262 MemDepResult &LocalCache = LocalDeps[QueryInst];
Chris Lattner5391a1d2008-11-29 03:47:00 +0000263
Chris Lattner0ec48dd2008-11-29 22:02:15 +0000264 // If the cached entry is non-dirty, just return it. Note that this depends
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000265 // on MemDepResult's default constructing to 'dirty'.
266 if (!LocalCache.isDirty())
267 return LocalCache;
Chris Lattner5391a1d2008-11-29 03:47:00 +0000268
269 // Otherwise, if we have a dirty entry, we know we can start the scan at that
270 // instruction, which may save us some work.
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000271 if (Instruction *Inst = LocalCache.getInst()) {
Chris Lattner5391a1d2008-11-29 03:47:00 +0000272 ScanPos = Inst;
Chris Lattner4a69bad2008-11-30 02:52:26 +0000273
Chris Lattnerd44745d2008-12-07 18:39:13 +0000274 RemoveFromReverseMap(ReverseLocalDeps, Inst, QueryInst);
Chris Lattner4a69bad2008-11-30 02:52:26 +0000275 }
Chris Lattner5391a1d2008-11-29 03:47:00 +0000276
Chris Lattnere79be942008-12-07 01:50:16 +0000277 BasicBlock *QueryParent = QueryInst->getParent();
278
279 Value *MemPtr = 0;
280 uint64_t MemSize = 0;
281
Chris Lattner5391a1d2008-11-29 03:47:00 +0000282 // Do the scan.
Chris Lattnere79be942008-12-07 01:50:16 +0000283 if (BasicBlock::iterator(QueryInst) == QueryParent->begin()) {
Chris Lattner7ebcf032008-12-07 02:15:47 +0000284 // No dependence found. If this is the entry block of the function, it is a
285 // clobber, otherwise it is non-local.
286 if (QueryParent != &QueryParent->getParent()->getEntryBlock())
287 LocalCache = MemDepResult::getNonLocal();
288 else
289 LocalCache = MemDepResult::getClobber(QueryInst);
Chris Lattnere79be942008-12-07 01:50:16 +0000290 } else if (StoreInst *SI = dyn_cast<StoreInst>(QueryInst)) {
291 // If this is a volatile store, don't mess around with it. Just return the
292 // previous instruction as a clobber.
293 if (SI->isVolatile())
294 LocalCache = MemDepResult::getClobber(--BasicBlock::iterator(ScanPos));
295 else {
296 MemPtr = SI->getPointerOperand();
297 MemSize = TD->getTypeStoreSize(SI->getOperand(0)->getType());
298 }
299 } else if (LoadInst *LI = dyn_cast<LoadInst>(QueryInst)) {
300 // If this is a volatile load, don't mess around with it. Just return the
301 // previous instruction as a clobber.
302 if (LI->isVolatile())
303 LocalCache = MemDepResult::getClobber(--BasicBlock::iterator(ScanPos));
304 else {
305 MemPtr = LI->getPointerOperand();
306 MemSize = TD->getTypeStoreSize(LI->getType());
307 }
308 } else if (isa<CallInst>(QueryInst) || isa<InvokeInst>(QueryInst)) {
Chris Lattner20d6f092008-12-09 21:19:42 +0000309 CallSite QueryCS = CallSite::get(QueryInst);
310 bool isReadOnly = AA->onlyReadsMemory(QueryCS);
311 LocalCache = getCallSiteDependencyFrom(QueryCS, isReadOnly, ScanPos,
Chris Lattnere79be942008-12-07 01:50:16 +0000312 QueryParent);
313 } else if (FreeInst *FI = dyn_cast<FreeInst>(QueryInst)) {
314 MemPtr = FI->getPointerOperand();
315 // FreeInsts erase the entire structure, not just a field.
316 MemSize = ~0UL;
317 } else {
318 // Non-memory instruction.
319 LocalCache = MemDepResult::getClobber(--BasicBlock::iterator(ScanPos));
320 }
321
322 // If we need to do a pointer scan, make it happen.
323 if (MemPtr)
324 LocalCache = getPointerDependencyFrom(MemPtr, MemSize,
325 isa<LoadInst>(QueryInst),
326 ScanPos, QueryParent);
Chris Lattner5391a1d2008-11-29 03:47:00 +0000327
328 // Remember the result!
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000329 if (Instruction *I = LocalCache.getInst())
Chris Lattner8c465272008-11-29 09:20:15 +0000330 ReverseLocalDeps[I].insert(QueryInst);
Chris Lattner5391a1d2008-11-29 03:47:00 +0000331
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000332 return LocalCache;
Chris Lattner5391a1d2008-11-29 03:47:00 +0000333}
334
Chris Lattner12a7db32009-01-22 07:04:01 +0000335#ifndef NDEBUG
336/// AssertSorted - This method is used when -debug is specified to verify that
337/// cache arrays are properly kept sorted.
338static void AssertSorted(MemoryDependenceAnalysis::NonLocalDepInfo &Cache,
339 int Count = -1) {
340 if (Count == -1) Count = Cache.size();
341 if (Count == 0) return;
342
343 for (unsigned i = 1; i != unsigned(Count); ++i)
344 assert(Cache[i-1] <= Cache[i] && "Cache isn't sorted!");
345}
346#endif
347
Chris Lattner1559b362008-12-09 19:38:05 +0000348/// getNonLocalCallDependency - Perform a full dependency query for the
349/// specified call, returning the set of blocks that the value is
Chris Lattner37d041c2008-11-30 01:18:27 +0000350/// potentially live across. The returned set of results will include a
351/// "NonLocal" result for all blocks where the value is live across.
352///
Chris Lattner1559b362008-12-09 19:38:05 +0000353/// This method assumes the instruction returns a "NonLocal" dependency
Chris Lattner37d041c2008-11-30 01:18:27 +0000354/// within its own block.
355///
Chris Lattner1559b362008-12-09 19:38:05 +0000356/// This returns a reference to an internal data structure that may be
357/// invalidated on the next non-local query or when an instruction is
358/// removed. Clients must copy this data if they want it around longer than
359/// that.
Chris Lattnerbf145d62008-12-01 01:15:42 +0000360const MemoryDependenceAnalysis::NonLocalDepInfo &
Chris Lattner1559b362008-12-09 19:38:05 +0000361MemoryDependenceAnalysis::getNonLocalCallDependency(CallSite QueryCS) {
362 assert(getDependency(QueryCS.getInstruction()).isNonLocal() &&
363 "getNonLocalCallDependency should only be used on calls with non-local deps!");
364 PerInstNLInfo &CacheP = NonLocalDeps[QueryCS.getInstruction()];
Chris Lattnerbf145d62008-12-01 01:15:42 +0000365 NonLocalDepInfo &Cache = CacheP.first;
Chris Lattner37d041c2008-11-30 01:18:27 +0000366
367 /// DirtyBlocks - This is the set of blocks that need to be recomputed. In
368 /// the cached case, this can happen due to instructions being deleted etc. In
369 /// the uncached case, this starts out as the set of predecessors we care
370 /// about.
371 SmallVector<BasicBlock*, 32> DirtyBlocks;
372
373 if (!Cache.empty()) {
Chris Lattnerbf145d62008-12-01 01:15:42 +0000374 // Okay, we have a cache entry. If we know it is not dirty, just return it
375 // with no computation.
376 if (!CacheP.second) {
377 NumCacheNonLocal++;
378 return Cache;
379 }
380
Chris Lattner37d041c2008-11-30 01:18:27 +0000381 // If we already have a partially computed set of results, scan them to
Chris Lattnerbf145d62008-12-01 01:15:42 +0000382 // determine what is dirty, seeding our initial DirtyBlocks worklist.
383 for (NonLocalDepInfo::iterator I = Cache.begin(), E = Cache.end();
384 I != E; ++I)
385 if (I->second.isDirty())
386 DirtyBlocks.push_back(I->first);
Chris Lattner37d041c2008-11-30 01:18:27 +0000387
Chris Lattnerbf145d62008-12-01 01:15:42 +0000388 // Sort the cache so that we can do fast binary search lookups below.
389 std::sort(Cache.begin(), Cache.end());
Chris Lattner37d041c2008-11-30 01:18:27 +0000390
Chris Lattnerbf145d62008-12-01 01:15:42 +0000391 ++NumCacheDirtyNonLocal;
Chris Lattner37d041c2008-11-30 01:18:27 +0000392 //cerr << "CACHED CASE: " << DirtyBlocks.size() << " dirty: "
393 // << Cache.size() << " cached: " << *QueryInst;
394 } else {
395 // Seed DirtyBlocks with each of the preds of QueryInst's block.
Chris Lattner1559b362008-12-09 19:38:05 +0000396 BasicBlock *QueryBB = QueryCS.getInstruction()->getParent();
Chris Lattner511b36c2008-12-09 06:44:17 +0000397 for (BasicBlock **PI = PredCache->GetPreds(QueryBB); *PI; ++PI)
398 DirtyBlocks.push_back(*PI);
Chris Lattner37d041c2008-11-30 01:18:27 +0000399 NumUncacheNonLocal++;
400 }
401
Chris Lattner20d6f092008-12-09 21:19:42 +0000402 // isReadonlyCall - If this is a read-only call, we can be more aggressive.
403 bool isReadonlyCall = AA->onlyReadsMemory(QueryCS);
Chris Lattner9e59c642008-12-15 03:35:32 +0000404
Chris Lattnerbf145d62008-12-01 01:15:42 +0000405 SmallPtrSet<BasicBlock*, 64> Visited;
406
407 unsigned NumSortedEntries = Cache.size();
Chris Lattner12a7db32009-01-22 07:04:01 +0000408 DEBUG(AssertSorted(Cache));
Chris Lattnerbf145d62008-12-01 01:15:42 +0000409
Chris Lattner37d041c2008-11-30 01:18:27 +0000410 // Iterate while we still have blocks to update.
411 while (!DirtyBlocks.empty()) {
412 BasicBlock *DirtyBB = DirtyBlocks.back();
413 DirtyBlocks.pop_back();
414
Chris Lattnerbf145d62008-12-01 01:15:42 +0000415 // Already processed this block?
416 if (!Visited.insert(DirtyBB))
417 continue;
Chris Lattner37d041c2008-11-30 01:18:27 +0000418
Chris Lattnerbf145d62008-12-01 01:15:42 +0000419 // Do a binary search to see if we already have an entry for this block in
420 // the cache set. If so, find it.
Chris Lattner12a7db32009-01-22 07:04:01 +0000421 DEBUG(AssertSorted(Cache, NumSortedEntries));
Chris Lattnerbf145d62008-12-01 01:15:42 +0000422 NonLocalDepInfo::iterator Entry =
423 std::upper_bound(Cache.begin(), Cache.begin()+NumSortedEntries,
424 std::make_pair(DirtyBB, MemDepResult()));
Duncan Sands7050f3d2008-12-10 09:38:36 +0000425 if (Entry != Cache.begin() && prior(Entry)->first == DirtyBB)
Chris Lattnerbf145d62008-12-01 01:15:42 +0000426 --Entry;
427
428 MemDepResult *ExistingResult = 0;
429 if (Entry != Cache.begin()+NumSortedEntries &&
430 Entry->first == DirtyBB) {
431 // If we already have an entry, and if it isn't already dirty, the block
432 // is done.
433 if (!Entry->second.isDirty())
434 continue;
435
436 // Otherwise, remember this slot so we can update the value.
437 ExistingResult = &Entry->second;
438 }
439
Chris Lattner37d041c2008-11-30 01:18:27 +0000440 // If the dirty entry has a pointer, start scanning from it so we don't have
441 // to rescan the entire block.
442 BasicBlock::iterator ScanPos = DirtyBB->end();
Chris Lattnerbf145d62008-12-01 01:15:42 +0000443 if (ExistingResult) {
444 if (Instruction *Inst = ExistingResult->getInst()) {
445 ScanPos = Inst;
Chris Lattnerbf145d62008-12-01 01:15:42 +0000446 // We're removing QueryInst's use of Inst.
Chris Lattner1559b362008-12-09 19:38:05 +0000447 RemoveFromReverseMap(ReverseNonLocalDeps, Inst,
448 QueryCS.getInstruction());
Chris Lattnerbf145d62008-12-01 01:15:42 +0000449 }
Chris Lattnerf68f3102008-11-30 02:28:25 +0000450 }
Chris Lattner37d041c2008-11-30 01:18:27 +0000451
Chris Lattner73ec3cd2008-11-30 01:26:32 +0000452 // Find out if this block has a local dependency for QueryInst.
Chris Lattnerd8dd9342008-12-07 01:21:14 +0000453 MemDepResult Dep;
Chris Lattnere79be942008-12-07 01:50:16 +0000454
Chris Lattner1559b362008-12-09 19:38:05 +0000455 if (ScanPos != DirtyBB->begin()) {
Chris Lattner20d6f092008-12-09 21:19:42 +0000456 Dep = getCallSiteDependencyFrom(QueryCS, isReadonlyCall,ScanPos, DirtyBB);
Chris Lattner1559b362008-12-09 19:38:05 +0000457 } else if (DirtyBB != &DirtyBB->getParent()->getEntryBlock()) {
458 // No dependence found. If this is the entry block of the function, it is
459 // a clobber, otherwise it is non-local.
460 Dep = MemDepResult::getNonLocal();
Chris Lattnere79be942008-12-07 01:50:16 +0000461 } else {
Chris Lattner1559b362008-12-09 19:38:05 +0000462 Dep = MemDepResult::getClobber(ScanPos);
Chris Lattnere79be942008-12-07 01:50:16 +0000463 }
464
Chris Lattnerbf145d62008-12-01 01:15:42 +0000465 // If we had a dirty entry for the block, update it. Otherwise, just add
466 // a new entry.
467 if (ExistingResult)
468 *ExistingResult = Dep;
469 else
470 Cache.push_back(std::make_pair(DirtyBB, Dep));
471
Chris Lattner37d041c2008-11-30 01:18:27 +0000472 // If the block has a dependency (i.e. it isn't completely transparent to
Chris Lattnerbf145d62008-12-01 01:15:42 +0000473 // the value), remember the association!
474 if (!Dep.isNonLocal()) {
Chris Lattner37d041c2008-11-30 01:18:27 +0000475 // Keep the ReverseNonLocalDeps map up to date so we can efficiently
476 // update this when we remove instructions.
Chris Lattnerbf145d62008-12-01 01:15:42 +0000477 if (Instruction *Inst = Dep.getInst())
Chris Lattner1559b362008-12-09 19:38:05 +0000478 ReverseNonLocalDeps[Inst].insert(QueryCS.getInstruction());
Chris Lattnerbf145d62008-12-01 01:15:42 +0000479 } else {
Chris Lattner37d041c2008-11-30 01:18:27 +0000480
Chris Lattnerbf145d62008-12-01 01:15:42 +0000481 // If the block *is* completely transparent to the load, we need to check
482 // the predecessors of this block. Add them to our worklist.
Chris Lattner511b36c2008-12-09 06:44:17 +0000483 for (BasicBlock **PI = PredCache->GetPreds(DirtyBB); *PI; ++PI)
484 DirtyBlocks.push_back(*PI);
Chris Lattnerbf145d62008-12-01 01:15:42 +0000485 }
Chris Lattner37d041c2008-11-30 01:18:27 +0000486 }
487
Chris Lattnerbf145d62008-12-01 01:15:42 +0000488 return Cache;
Chris Lattner37d041c2008-11-30 01:18:27 +0000489}
490
Chris Lattner7ebcf032008-12-07 02:15:47 +0000491/// getNonLocalPointerDependency - Perform a full dependency query for an
492/// access to the specified (non-volatile) memory location, returning the
493/// set of instructions that either define or clobber the value.
494///
495/// This method assumes the pointer has a "NonLocal" dependency within its
496/// own block.
497///
498void MemoryDependenceAnalysis::
499getNonLocalPointerDependency(Value *Pointer, bool isLoad, BasicBlock *FromBB,
500 SmallVectorImpl<NonLocalDepEntry> &Result) {
Chris Lattner3f7eb5b2008-12-07 18:45:15 +0000501 assert(isa<PointerType>(Pointer->getType()) &&
502 "Can't get pointer deps of a non-pointer!");
Chris Lattner9a193fd2008-12-07 02:56:57 +0000503 Result.clear();
504
Chris Lattner7ebcf032008-12-07 02:15:47 +0000505 // We know that the pointer value is live into FromBB find the def/clobbers
506 // from presecessors.
Chris Lattner7ebcf032008-12-07 02:15:47 +0000507 const Type *EltTy = cast<PointerType>(Pointer->getType())->getElementType();
508 uint64_t PointeeSize = TD->getTypeStoreSize(EltTy);
509
Chris Lattner9e59c642008-12-15 03:35:32 +0000510 // This is the set of blocks we've inspected, and the pointer we consider in
511 // each block. Because of critical edges, we currently bail out if querying
512 // a block with multiple different pointers. This can happen during PHI
513 // translation.
514 DenseMap<BasicBlock*, Value*> Visited;
515 if (!getNonLocalPointerDepFromBB(Pointer, PointeeSize, isLoad, FromBB,
516 Result, Visited, true))
517 return;
Chris Lattner3af23f82008-12-15 04:58:29 +0000518 Result.clear();
Chris Lattner9e59c642008-12-15 03:35:32 +0000519 Result.push_back(std::make_pair(FromBB,
520 MemDepResult::getClobber(FromBB->begin())));
Chris Lattner9a193fd2008-12-07 02:56:57 +0000521}
522
Chris Lattner9863c3f2008-12-09 07:47:11 +0000523/// GetNonLocalInfoForBlock - Compute the memdep value for BB with
524/// Pointer/PointeeSize using either cached information in Cache or by doing a
525/// lookup (which may use dirty cache info if available). If we do a lookup,
526/// add the result to the cache.
527MemDepResult MemoryDependenceAnalysis::
528GetNonLocalInfoForBlock(Value *Pointer, uint64_t PointeeSize,
529 bool isLoad, BasicBlock *BB,
530 NonLocalDepInfo *Cache, unsigned NumSortedEntries) {
531
532 // Do a binary search to see if we already have an entry for this block in
533 // the cache set. If so, find it.
534 NonLocalDepInfo::iterator Entry =
535 std::upper_bound(Cache->begin(), Cache->begin()+NumSortedEntries,
536 std::make_pair(BB, MemDepResult()));
Duncan Sands7050f3d2008-12-10 09:38:36 +0000537 if (Entry != Cache->begin() && prior(Entry)->first == BB)
Chris Lattner9863c3f2008-12-09 07:47:11 +0000538 --Entry;
539
540 MemDepResult *ExistingResult = 0;
541 if (Entry != Cache->begin()+NumSortedEntries && Entry->first == BB)
542 ExistingResult = &Entry->second;
543
544 // If we have a cached entry, and it is non-dirty, use it as the value for
545 // this dependency.
546 if (ExistingResult && !ExistingResult->isDirty()) {
547 ++NumCacheNonLocalPtr;
548 return *ExistingResult;
549 }
550
551 // Otherwise, we have to scan for the value. If we have a dirty cache
552 // entry, start scanning from its position, otherwise we scan from the end
553 // of the block.
554 BasicBlock::iterator ScanPos = BB->end();
555 if (ExistingResult && ExistingResult->getInst()) {
556 assert(ExistingResult->getInst()->getParent() == BB &&
557 "Instruction invalidated?");
558 ++NumCacheDirtyNonLocalPtr;
559 ScanPos = ExistingResult->getInst();
560
561 // Eliminating the dirty entry from 'Cache', so update the reverse info.
562 ValueIsLoadPair CacheKey(Pointer, isLoad);
563 RemoveFromReverseMap(ReverseNonLocalPtrDeps, ScanPos,
564 CacheKey.getOpaqueValue());
565 } else {
566 ++NumUncacheNonLocalPtr;
567 }
568
569 // Scan the block for the dependency.
570 MemDepResult Dep = getPointerDependencyFrom(Pointer, PointeeSize, isLoad,
571 ScanPos, BB);
572
573 // If we had a dirty entry for the block, update it. Otherwise, just add
574 // a new entry.
575 if (ExistingResult)
576 *ExistingResult = Dep;
577 else
578 Cache->push_back(std::make_pair(BB, Dep));
579
580 // If the block has a dependency (i.e. it isn't completely transparent to
581 // the value), remember the reverse association because we just added it
582 // to Cache!
583 if (Dep.isNonLocal())
584 return Dep;
585
586 // Keep the ReverseNonLocalPtrDeps map up to date so we can efficiently
587 // update MemDep when we remove instructions.
588 Instruction *Inst = Dep.getInst();
589 assert(Inst && "Didn't depend on anything?");
590 ValueIsLoadPair CacheKey(Pointer, isLoad);
591 ReverseNonLocalPtrDeps[Inst].insert(CacheKey.getOpaqueValue());
592 return Dep;
593}
594
595
Chris Lattner9e59c642008-12-15 03:35:32 +0000596/// getNonLocalPointerDepFromBB - Perform a dependency query based on
597/// pointer/pointeesize starting at the end of StartBB. Add any clobber/def
598/// results to the results vector and keep track of which blocks are visited in
599/// 'Visited'.
600///
601/// This has special behavior for the first block queries (when SkipFirstBlock
602/// is true). In this special case, it ignores the contents of the specified
603/// block and starts returning dependence info for its predecessors.
604///
605/// This function returns false on success, or true to indicate that it could
606/// not compute dependence information for some reason. This should be treated
607/// as a clobber dependence on the first instruction in the predecessor block.
608bool MemoryDependenceAnalysis::
Chris Lattner9863c3f2008-12-09 07:47:11 +0000609getNonLocalPointerDepFromBB(Value *Pointer, uint64_t PointeeSize,
610 bool isLoad, BasicBlock *StartBB,
611 SmallVectorImpl<NonLocalDepEntry> &Result,
Chris Lattner9e59c642008-12-15 03:35:32 +0000612 DenseMap<BasicBlock*, Value*> &Visited,
613 bool SkipFirstBlock) {
614
Chris Lattner6290f5c2008-12-07 08:50:20 +0000615 // Look up the cached info for Pointer.
616 ValueIsLoadPair CacheKey(Pointer, isLoad);
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000617
Chris Lattner9e59c642008-12-15 03:35:32 +0000618 std::pair<BBSkipFirstBlockPair, NonLocalDepInfo> *CacheInfo =
619 &NonLocalPointerDeps[CacheKey];
620 NonLocalDepInfo *Cache = &CacheInfo->second;
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000621
622 // If we have valid cached information for exactly the block we are
623 // investigating, just return it with no recomputation.
Chris Lattner9e59c642008-12-15 03:35:32 +0000624 if (CacheInfo->first == BBSkipFirstBlockPair(StartBB, SkipFirstBlock)) {
Chris Lattnerf4789512008-12-16 07:10:09 +0000625 // We have a fully cached result for this query then we can just return the
626 // cached results and populate the visited set. However, we have to verify
627 // that we don't already have conflicting results for these blocks. Check
628 // to ensure that if a block in the results set is in the visited set that
629 // it was for the same pointer query.
630 if (!Visited.empty()) {
631 for (NonLocalDepInfo::iterator I = Cache->begin(), E = Cache->end();
632 I != E; ++I) {
633 DenseMap<BasicBlock*, Value*>::iterator VI = Visited.find(I->first);
634 if (VI == Visited.end() || VI->second == Pointer) continue;
635
636 // We have a pointer mismatch in a block. Just return clobber, saying
637 // that something was clobbered in this result. We could also do a
638 // non-fully cached query, but there is little point in doing this.
639 return true;
640 }
641 }
642
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000643 for (NonLocalDepInfo::iterator I = Cache->begin(), E = Cache->end();
Chris Lattnerf4789512008-12-16 07:10:09 +0000644 I != E; ++I) {
645 Visited.insert(std::make_pair(I->first, Pointer));
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000646 if (!I->second.isNonLocal())
647 Result.push_back(*I);
Chris Lattnerf4789512008-12-16 07:10:09 +0000648 }
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000649 ++NumCacheCompleteNonLocalPtr;
Chris Lattner9e59c642008-12-15 03:35:32 +0000650 return false;
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000651 }
652
653 // Otherwise, either this is a new block, a block with an invalid cache
654 // pointer or one that we're about to invalidate by putting more info into it
655 // than its valid cache info. If empty, the result will be valid cache info,
656 // otherwise it isn't.
Chris Lattner9e59c642008-12-15 03:35:32 +0000657 if (Cache->empty())
658 CacheInfo->first = BBSkipFirstBlockPair(StartBB, SkipFirstBlock);
659 else
660 CacheInfo->first = BBSkipFirstBlockPair();
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000661
662 SmallVector<BasicBlock*, 32> Worklist;
663 Worklist.push_back(StartBB);
Chris Lattner6290f5c2008-12-07 08:50:20 +0000664
665 // Keep track of the entries that we know are sorted. Previously cached
666 // entries will all be sorted. The entries we add we only sort on demand (we
667 // don't insert every element into its sorted position). We know that we
668 // won't get any reuse from currently inserted values, because we don't
669 // revisit blocks after we insert info for them.
670 unsigned NumSortedEntries = Cache->size();
Chris Lattner12a7db32009-01-22 07:04:01 +0000671 DEBUG(AssertSorted(*Cache));
Chris Lattner6290f5c2008-12-07 08:50:20 +0000672
Chris Lattner7ebcf032008-12-07 02:15:47 +0000673 while (!Worklist.empty()) {
Chris Lattner9a193fd2008-12-07 02:56:57 +0000674 BasicBlock *BB = Worklist.pop_back_val();
Chris Lattner7ebcf032008-12-07 02:15:47 +0000675
Chris Lattner65633712008-12-09 07:52:59 +0000676 // Skip the first block if we have it.
Chris Lattner9e59c642008-12-15 03:35:32 +0000677 if (!SkipFirstBlock) {
Chris Lattner65633712008-12-09 07:52:59 +0000678 // Analyze the dependency of *Pointer in FromBB. See if we already have
679 // been here.
Chris Lattner9e59c642008-12-15 03:35:32 +0000680 assert(Visited.count(BB) && "Should check 'visited' before adding to WL");
Chris Lattner6290f5c2008-12-07 08:50:20 +0000681
Chris Lattner65633712008-12-09 07:52:59 +0000682 // Get the dependency info for Pointer in BB. If we have cached
683 // information, we will use it, otherwise we compute it.
Chris Lattner12a7db32009-01-22 07:04:01 +0000684 DEBUG(AssertSorted(*Cache, NumSortedEntries));
Chris Lattner65633712008-12-09 07:52:59 +0000685 MemDepResult Dep = GetNonLocalInfoForBlock(Pointer, PointeeSize, isLoad,
686 BB, Cache, NumSortedEntries);
687
688 // If we got a Def or Clobber, add this to the list of results.
689 if (!Dep.isNonLocal()) {
690 Result.push_back(NonLocalDepEntry(BB, Dep));
691 continue;
692 }
Chris Lattner7ebcf032008-12-07 02:15:47 +0000693 }
694
Chris Lattner9e59c642008-12-15 03:35:32 +0000695 // If 'Pointer' is an instruction defined in this block, then we need to do
696 // phi translation to change it into a value live in the predecessor block.
697 // If phi translation fails, then we can't continue dependence analysis.
698 Instruction *PtrInst = dyn_cast<Instruction>(Pointer);
699 bool NeedsPHITranslation = PtrInst && PtrInst->getParent() == BB;
700
701 // If no PHI translation is needed, just add all the predecessors of this
702 // block to scan them as well.
703 if (!NeedsPHITranslation) {
704 SkipFirstBlock = false;
705 for (BasicBlock **PI = PredCache->GetPreds(BB); *PI; ++PI) {
706 // Verify that we haven't looked at this block yet.
707 std::pair<DenseMap<BasicBlock*,Value*>::iterator, bool>
708 InsertRes = Visited.insert(std::make_pair(*PI, Pointer));
709 if (InsertRes.second) {
710 // First time we've looked at *PI.
711 Worklist.push_back(*PI);
712 continue;
713 }
714
715 // If we have seen this block before, but it was with a different
716 // pointer then we have a phi translation failure and we have to treat
717 // this as a clobber.
718 if (InsertRes.first->second != Pointer)
719 goto PredTranslationFailure;
720 }
721 continue;
722 }
723
724 // If we do need to do phi translation, then there are a bunch of different
725 // cases, because we have to find a Value* live in the predecessor block. We
726 // know that PtrInst is defined in this block at least.
727
728 // If this is directly a PHI node, just use the incoming values for each
729 // pred as the phi translated version.
730 if (PHINode *PtrPHI = dyn_cast<PHINode>(PtrInst)) {
Chris Lattner12a7db32009-01-22 07:04:01 +0000731 for (BasicBlock **PI = PredCache->GetPreds(BB); *PI; ++PI) {
Chris Lattner9e59c642008-12-15 03:35:32 +0000732 BasicBlock *Pred = *PI;
733 Value *PredPtr = PtrPHI->getIncomingValueForBlock(Pred);
734
735 // Check to see if we have already visited this pred block with another
736 // pointer. If so, we can't do this lookup. This failure can occur
737 // with PHI translation when a critical edge exists and the PHI node in
738 // the successor translates to a pointer value different than the
739 // pointer the block was first analyzed with.
740 std::pair<DenseMap<BasicBlock*,Value*>::iterator, bool>
741 InsertRes = Visited.insert(std::make_pair(Pred, PredPtr));
742
743 if (!InsertRes.second) {
744 // If the predecessor was visited with PredPtr, then we already did
745 // the analysis and can ignore it.
746 if (InsertRes.first->second == PredPtr)
747 continue;
748
749 // Otherwise, the block was previously analyzed with a different
750 // pointer. We can't represent the result of this case, so we just
751 // treat this as a phi translation failure.
752 goto PredTranslationFailure;
753 }
Chris Lattner12a7db32009-01-22 07:04:01 +0000754
755 // We may have added values to the cache list before this PHI
756 // translation. If so, we haven't done anything to ensure that the
757 // cache remains sorted. Sort it now (if needed) so that recursive
758 // invocations of getNonLocalPointerDepFromBB that could reuse the cache
759 // value will only see properly sorted cache arrays.
Chris Lattner4433a092009-01-23 06:48:41 +0000760 if (Cache && NumSortedEntries != Cache->size())
Chris Lattner12a7db32009-01-22 07:04:01 +0000761 std::sort(Cache->begin(), Cache->end());
Chris Lattner4433a092009-01-23 06:48:41 +0000762 Cache = 0;
Chris Lattner12a7db32009-01-22 07:04:01 +0000763
764 // FIXME: it is entirely possible that PHI translating will end up with
765 // the same value. Consider PHI translating something like:
766 // X = phi [x, bb1], [y, bb2]. PHI translating for bb1 doesn't *need*
767 // to recurse here, pedantically speaking.
Chris Lattner9e59c642008-12-15 03:35:32 +0000768
769 // If we have a problem phi translating, fall through to the code below
770 // to handle the failure condition.
771 if (getNonLocalPointerDepFromBB(PredPtr, PointeeSize, isLoad, Pred,
772 Result, Visited))
773 goto PredTranslationFailure;
774 }
Chris Lattnerb54bfc22009-01-23 00:27:03 +0000775
Chris Lattner9e59c642008-12-15 03:35:32 +0000776 // Refresh the CacheInfo/Cache pointer so that it isn't invalidated.
777 CacheInfo = &NonLocalPointerDeps[CacheKey];
778 Cache = &CacheInfo->second;
Chris Lattner12a7db32009-01-22 07:04:01 +0000779 NumSortedEntries = Cache->size();
Chris Lattnerb54bfc22009-01-23 00:27:03 +0000780
Chris Lattner9e59c642008-12-15 03:35:32 +0000781 // Since we did phi translation, the "Cache" set won't contain all of the
782 // results for the query. This is ok (we can still use it to accelerate
783 // specific block queries) but we can't do the fastpath "return all
784 // results from the set" Clear out the indicator for this.
785 CacheInfo->first = BBSkipFirstBlockPair();
786 SkipFirstBlock = false;
787 continue;
788 }
789
790 // TODO: BITCAST, GEP.
791
792 // cerr << "MEMDEP: Could not PHI translate: " << *Pointer;
793 // if (isa<BitCastInst>(PtrInst) || isa<GetElementPtrInst>(PtrInst))
794 // cerr << "OP:\t\t\t\t" << *PtrInst->getOperand(0);
795 PredTranslationFailure:
796
Chris Lattner95900f22009-01-23 07:12:16 +0000797 if (Cache == 0) {
798 // Refresh the CacheInfo/Cache pointer if it got invalidated.
799 CacheInfo = &NonLocalPointerDeps[CacheKey];
800 Cache = &CacheInfo->second;
801 NumSortedEntries = Cache->size();
802 } else if (NumSortedEntries != Cache->size()) {
803 std::sort(Cache->begin(), Cache->end());
804 NumSortedEntries = Cache->size();
805 }
Chris Lattner4433a092009-01-23 06:48:41 +0000806
Chris Lattner9e59c642008-12-15 03:35:32 +0000807 // Since we did phi translation, the "Cache" set won't contain all of the
808 // results for the query. This is ok (we can still use it to accelerate
809 // specific block queries) but we can't do the fastpath "return all
810 // results from the set" Clear out the indicator for this.
811 CacheInfo->first = BBSkipFirstBlockPair();
812
813 // If *nothing* works, mark the pointer as being clobbered by the first
814 // instruction in this block.
815 //
816 // If this is the magic first block, return this as a clobber of the whole
817 // incoming value. Since we can't phi translate to one of the predecessors,
818 // we have to bail out.
819 if (SkipFirstBlock)
820 return true;
821
822 for (NonLocalDepInfo::reverse_iterator I = Cache->rbegin(); ; ++I) {
823 assert(I != Cache->rend() && "Didn't find current block??");
824 if (I->first != BB)
825 continue;
826
827 assert(I->second.isNonLocal() &&
828 "Should only be here with transparent block");
829 I->second = MemDepResult::getClobber(BB->begin());
830 ReverseNonLocalPtrDeps[BB->begin()].insert(CacheKey.getOpaqueValue());
831 Result.push_back(*I);
832 break;
Chris Lattner9a193fd2008-12-07 02:56:57 +0000833 }
Chris Lattner7ebcf032008-12-07 02:15:47 +0000834 }
Chris Lattner95900f22009-01-23 07:12:16 +0000835
Chris Lattner9863c3f2008-12-09 07:47:11 +0000836 // Okay, we're done now. If we added new values to the cache, re-sort it.
Chris Lattnerba4dacc2008-12-09 07:05:45 +0000837 switch (Cache->size()-NumSortedEntries) {
838 case 0:
Chris Lattner1aeadac2008-12-09 06:58:04 +0000839 // done, no new entries.
Chris Lattnerba4dacc2008-12-09 07:05:45 +0000840 break;
841 case 2: {
842 // Two new entries, insert the last one into place.
843 NonLocalDepEntry Val = Cache->back();
844 Cache->pop_back();
845 NonLocalDepInfo::iterator Entry =
846 std::upper_bound(Cache->begin(), Cache->end()-1, Val);
847 Cache->insert(Entry, Val);
848 // FALL THROUGH.
849 }
Chris Lattner9e59c642008-12-15 03:35:32 +0000850 case 1:
Chris Lattner1aeadac2008-12-09 06:58:04 +0000851 // One new entry, Just insert the new value at the appropriate position.
Chris Lattner9e59c642008-12-15 03:35:32 +0000852 if (Cache->size() != 1) {
853 NonLocalDepEntry Val = Cache->back();
854 Cache->pop_back();
855 NonLocalDepInfo::iterator Entry =
856 std::upper_bound(Cache->begin(), Cache->end(), Val);
857 Cache->insert(Entry, Val);
858 }
Chris Lattnerba4dacc2008-12-09 07:05:45 +0000859 break;
Chris Lattnerba4dacc2008-12-09 07:05:45 +0000860 default:
Chris Lattner1aeadac2008-12-09 06:58:04 +0000861 // Added many values, do a full scale sort.
Chris Lattner6290f5c2008-12-07 08:50:20 +0000862 std::sort(Cache->begin(), Cache->end());
Chris Lattner1aeadac2008-12-09 06:58:04 +0000863 }
Chris Lattner12a7db32009-01-22 07:04:01 +0000864 DEBUG(AssertSorted(*Cache));
Chris Lattner9e59c642008-12-15 03:35:32 +0000865 return false;
Chris Lattner6290f5c2008-12-07 08:50:20 +0000866}
867
868/// RemoveCachedNonLocalPointerDependencies - If P exists in
869/// CachedNonLocalPointerInfo, remove it.
870void MemoryDependenceAnalysis::
871RemoveCachedNonLocalPointerDependencies(ValueIsLoadPair P) {
872 CachedNonLocalPointerInfo::iterator It =
873 NonLocalPointerDeps.find(P);
874 if (It == NonLocalPointerDeps.end()) return;
875
876 // Remove all of the entries in the BB->val map. This involves removing
877 // instructions from the reverse map.
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000878 NonLocalDepInfo &PInfo = It->second.second;
Chris Lattner6290f5c2008-12-07 08:50:20 +0000879
880 for (unsigned i = 0, e = PInfo.size(); i != e; ++i) {
881 Instruction *Target = PInfo[i].second.getInst();
882 if (Target == 0) continue; // Ignore non-local dep results.
Chris Lattner5a45bf12008-12-09 22:45:32 +0000883 assert(Target->getParent() == PInfo[i].first);
Chris Lattner6290f5c2008-12-07 08:50:20 +0000884
885 // Eliminating the dirty entry from 'Cache', so update the reverse info.
Chris Lattnerd44745d2008-12-07 18:39:13 +0000886 RemoveFromReverseMap(ReverseNonLocalPtrDeps, Target, P.getOpaqueValue());
Chris Lattner6290f5c2008-12-07 08:50:20 +0000887 }
888
889 // Remove P from NonLocalPointerDeps (which deletes NonLocalDepInfo).
890 NonLocalPointerDeps.erase(It);
Chris Lattner7ebcf032008-12-07 02:15:47 +0000891}
892
893
Chris Lattnerbc99be12008-12-09 22:06:23 +0000894/// invalidateCachedPointerInfo - This method is used to invalidate cached
895/// information about the specified pointer, because it may be too
896/// conservative in memdep. This is an optional call that can be used when
897/// the client detects an equivalence between the pointer and some other
898/// value and replaces the other value with ptr. This can make Ptr available
899/// in more places that cached info does not necessarily keep.
900void MemoryDependenceAnalysis::invalidateCachedPointerInfo(Value *Ptr) {
901 // If Ptr isn't really a pointer, just ignore it.
902 if (!isa<PointerType>(Ptr->getType())) return;
903 // Flush store info for the pointer.
904 RemoveCachedNonLocalPointerDependencies(ValueIsLoadPair(Ptr, false));
905 // Flush load info for the pointer.
906 RemoveCachedNonLocalPointerDependencies(ValueIsLoadPair(Ptr, true));
907}
908
Owen Anderson78e02f72007-07-06 23:14:35 +0000909/// removeInstruction - Remove an instruction from the dependence analysis,
910/// updating the dependence of instructions that previously depended on it.
Owen Anderson642a9e32007-08-08 22:26:03 +0000911/// This method attempts to keep the cache coherent using the reverse map.
Chris Lattner5f589dc2008-11-28 22:04:47 +0000912void MemoryDependenceAnalysis::removeInstruction(Instruction *RemInst) {
Chris Lattner5f589dc2008-11-28 22:04:47 +0000913 // Walk through the Non-local dependencies, removing this one as the value
914 // for any cached queries.
Chris Lattnerf68f3102008-11-30 02:28:25 +0000915 NonLocalDepMapType::iterator NLDI = NonLocalDeps.find(RemInst);
916 if (NLDI != NonLocalDeps.end()) {
Chris Lattnerbf145d62008-12-01 01:15:42 +0000917 NonLocalDepInfo &BlockMap = NLDI->second.first;
Chris Lattner25f4b2b2008-11-30 02:30:50 +0000918 for (NonLocalDepInfo::iterator DI = BlockMap.begin(), DE = BlockMap.end();
919 DI != DE; ++DI)
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000920 if (Instruction *Inst = DI->second.getInst())
Chris Lattnerd44745d2008-12-07 18:39:13 +0000921 RemoveFromReverseMap(ReverseNonLocalDeps, Inst, RemInst);
Chris Lattnerf68f3102008-11-30 02:28:25 +0000922 NonLocalDeps.erase(NLDI);
923 }
Owen Anderson5fc4aba2007-12-08 01:37:09 +0000924
Chris Lattner5f589dc2008-11-28 22:04:47 +0000925 // If we have a cached local dependence query for this instruction, remove it.
Chris Lattnerbaad8882008-11-28 22:28:27 +0000926 //
Chris Lattner39f372e2008-11-29 01:43:36 +0000927 LocalDepMapType::iterator LocalDepEntry = LocalDeps.find(RemInst);
928 if (LocalDepEntry != LocalDeps.end()) {
Chris Lattner125ce362008-11-30 01:09:30 +0000929 // Remove us from DepInst's reverse set now that the local dep info is gone.
Chris Lattnerd44745d2008-12-07 18:39:13 +0000930 if (Instruction *Inst = LocalDepEntry->second.getInst())
931 RemoveFromReverseMap(ReverseLocalDeps, Inst, RemInst);
Chris Lattner125ce362008-11-30 01:09:30 +0000932
Chris Lattnerbaad8882008-11-28 22:28:27 +0000933 // Remove this local dependency info.
Chris Lattner39f372e2008-11-29 01:43:36 +0000934 LocalDeps.erase(LocalDepEntry);
Chris Lattner6290f5c2008-12-07 08:50:20 +0000935 }
936
937 // If we have any cached pointer dependencies on this instruction, remove
938 // them. If the instruction has non-pointer type, then it can't be a pointer
939 // base.
940
941 // Remove it from both the load info and the store info. The instruction
942 // can't be in either of these maps if it is non-pointer.
943 if (isa<PointerType>(RemInst->getType())) {
944 RemoveCachedNonLocalPointerDependencies(ValueIsLoadPair(RemInst, false));
945 RemoveCachedNonLocalPointerDependencies(ValueIsLoadPair(RemInst, true));
946 }
Chris Lattnerbaad8882008-11-28 22:28:27 +0000947
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000948 // Loop over all of the things that depend on the instruction we're removing.
949 //
Chris Lattner4f8c18c2008-11-29 23:30:39 +0000950 SmallVector<std::pair<Instruction*, Instruction*>, 8> ReverseDepsToAdd;
Chris Lattner0655f732008-12-07 18:42:51 +0000951
952 // If we find RemInst as a clobber or Def in any of the maps for other values,
953 // we need to replace its entry with a dirty version of the instruction after
954 // it. If RemInst is a terminator, we use a null dirty value.
955 //
956 // Using a dirty version of the instruction after RemInst saves having to scan
957 // the entire block to get to this point.
958 MemDepResult NewDirtyVal;
959 if (!RemInst->isTerminator())
960 NewDirtyVal = MemDepResult::getDirty(++BasicBlock::iterator(RemInst));
Chris Lattner4f8c18c2008-11-29 23:30:39 +0000961
Chris Lattner8c465272008-11-29 09:20:15 +0000962 ReverseDepMapType::iterator ReverseDepIt = ReverseLocalDeps.find(RemInst);
963 if (ReverseDepIt != ReverseLocalDeps.end()) {
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000964 SmallPtrSet<Instruction*, 4> &ReverseDeps = ReverseDepIt->second;
Chris Lattner6290f5c2008-12-07 08:50:20 +0000965 // RemInst can't be the terminator if it has local stuff depending on it.
Chris Lattner125ce362008-11-30 01:09:30 +0000966 assert(!ReverseDeps.empty() && !isa<TerminatorInst>(RemInst) &&
967 "Nothing can locally depend on a terminator");
968
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000969 for (SmallPtrSet<Instruction*, 4>::iterator I = ReverseDeps.begin(),
970 E = ReverseDeps.end(); I != E; ++I) {
971 Instruction *InstDependingOnRemInst = *I;
Chris Lattnerf68f3102008-11-30 02:28:25 +0000972 assert(InstDependingOnRemInst != RemInst &&
973 "Already removed our local dep info");
Chris Lattner125ce362008-11-30 01:09:30 +0000974
Chris Lattner0655f732008-12-07 18:42:51 +0000975 LocalDeps[InstDependingOnRemInst] = NewDirtyVal;
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000976
Chris Lattner125ce362008-11-30 01:09:30 +0000977 // Make sure to remember that new things depend on NewDepInst.
Chris Lattner0655f732008-12-07 18:42:51 +0000978 assert(NewDirtyVal.getInst() && "There is no way something else can have "
979 "a local dep on this if it is a terminator!");
980 ReverseDepsToAdd.push_back(std::make_pair(NewDirtyVal.getInst(),
Chris Lattner125ce362008-11-30 01:09:30 +0000981 InstDependingOnRemInst));
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000982 }
Chris Lattner4f8c18c2008-11-29 23:30:39 +0000983
984 ReverseLocalDeps.erase(ReverseDepIt);
985
986 // Add new reverse deps after scanning the set, to avoid invalidating the
987 // 'ReverseDeps' reference.
988 while (!ReverseDepsToAdd.empty()) {
989 ReverseLocalDeps[ReverseDepsToAdd.back().first]
990 .insert(ReverseDepsToAdd.back().second);
991 ReverseDepsToAdd.pop_back();
992 }
Owen Anderson78e02f72007-07-06 23:14:35 +0000993 }
Owen Anderson4d13de42007-08-16 21:27:05 +0000994
Chris Lattner8c465272008-11-29 09:20:15 +0000995 ReverseDepIt = ReverseNonLocalDeps.find(RemInst);
996 if (ReverseDepIt != ReverseNonLocalDeps.end()) {
Chris Lattner6290f5c2008-12-07 08:50:20 +0000997 SmallPtrSet<Instruction*, 4> &Set = ReverseDepIt->second;
998 for (SmallPtrSet<Instruction*, 4>::iterator I = Set.begin(), E = Set.end();
Chris Lattnerf68f3102008-11-30 02:28:25 +0000999 I != E; ++I) {
1000 assert(*I != RemInst && "Already removed NonLocalDep info for RemInst");
1001
Chris Lattner4a69bad2008-11-30 02:52:26 +00001002 PerInstNLInfo &INLD = NonLocalDeps[*I];
Chris Lattner4a69bad2008-11-30 02:52:26 +00001003 // The information is now dirty!
Chris Lattnerbf145d62008-12-01 01:15:42 +00001004 INLD.second = true;
Chris Lattnerf68f3102008-11-30 02:28:25 +00001005
Chris Lattnerbf145d62008-12-01 01:15:42 +00001006 for (NonLocalDepInfo::iterator DI = INLD.first.begin(),
1007 DE = INLD.first.end(); DI != DE; ++DI) {
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +00001008 if (DI->second.getInst() != RemInst) continue;
Chris Lattnerf68f3102008-11-30 02:28:25 +00001009
1010 // Convert to a dirty entry for the subsequent instruction.
Chris Lattner0655f732008-12-07 18:42:51 +00001011 DI->second = NewDirtyVal;
1012
1013 if (Instruction *NextI = NewDirtyVal.getInst())
Chris Lattnerf68f3102008-11-30 02:28:25 +00001014 ReverseDepsToAdd.push_back(std::make_pair(NextI, *I));
Chris Lattnerf68f3102008-11-30 02:28:25 +00001015 }
1016 }
Chris Lattner4f8c18c2008-11-29 23:30:39 +00001017
1018 ReverseNonLocalDeps.erase(ReverseDepIt);
1019
Chris Lattner0ec48dd2008-11-29 22:02:15 +00001020 // Add new reverse deps after scanning the set, to avoid invalidating 'Set'
1021 while (!ReverseDepsToAdd.empty()) {
1022 ReverseNonLocalDeps[ReverseDepsToAdd.back().first]
1023 .insert(ReverseDepsToAdd.back().second);
1024 ReverseDepsToAdd.pop_back();
1025 }
Owen Anderson4d13de42007-08-16 21:27:05 +00001026 }
Owen Anderson5fc4aba2007-12-08 01:37:09 +00001027
Chris Lattner6290f5c2008-12-07 08:50:20 +00001028 // If the instruction is in ReverseNonLocalPtrDeps then it appears as a
1029 // value in the NonLocalPointerDeps info.
1030 ReverseNonLocalPtrDepTy::iterator ReversePtrDepIt =
1031 ReverseNonLocalPtrDeps.find(RemInst);
1032 if (ReversePtrDepIt != ReverseNonLocalPtrDeps.end()) {
1033 SmallPtrSet<void*, 4> &Set = ReversePtrDepIt->second;
1034 SmallVector<std::pair<Instruction*, ValueIsLoadPair>,8> ReversePtrDepsToAdd;
1035
1036 for (SmallPtrSet<void*, 4>::iterator I = Set.begin(), E = Set.end();
1037 I != E; ++I) {
1038 ValueIsLoadPair P;
1039 P.setFromOpaqueValue(*I);
1040 assert(P.getPointer() != RemInst &&
1041 "Already removed NonLocalPointerDeps info for RemInst");
1042
Chris Lattner11dcd8d2008-12-08 07:31:50 +00001043 NonLocalDepInfo &NLPDI = NonLocalPointerDeps[P].second;
1044
1045 // The cache is not valid for any specific block anymore.
Chris Lattner9e59c642008-12-15 03:35:32 +00001046 NonLocalPointerDeps[P].first = BBSkipFirstBlockPair();
Chris Lattner6290f5c2008-12-07 08:50:20 +00001047
Chris Lattner6290f5c2008-12-07 08:50:20 +00001048 // Update any entries for RemInst to use the instruction after it.
1049 for (NonLocalDepInfo::iterator DI = NLPDI.begin(), DE = NLPDI.end();
1050 DI != DE; ++DI) {
1051 if (DI->second.getInst() != RemInst) continue;
1052
1053 // Convert to a dirty entry for the subsequent instruction.
1054 DI->second = NewDirtyVal;
1055
1056 if (Instruction *NewDirtyInst = NewDirtyVal.getInst())
1057 ReversePtrDepsToAdd.push_back(std::make_pair(NewDirtyInst, P));
1058 }
Chris Lattner95900f22009-01-23 07:12:16 +00001059
1060 // Re-sort the NonLocalDepInfo. Changing the dirty entry to its
1061 // subsequent value may invalidate the sortedness.
1062 std::sort(NLPDI.begin(), NLPDI.end());
Chris Lattner6290f5c2008-12-07 08:50:20 +00001063 }
1064
1065 ReverseNonLocalPtrDeps.erase(ReversePtrDepIt);
1066
1067 while (!ReversePtrDepsToAdd.empty()) {
1068 ReverseNonLocalPtrDeps[ReversePtrDepsToAdd.back().first]
1069 .insert(ReversePtrDepsToAdd.back().second.getOpaqueValue());
1070 ReversePtrDepsToAdd.pop_back();
1071 }
1072 }
1073
1074
Chris Lattnerf68f3102008-11-30 02:28:25 +00001075 assert(!NonLocalDeps.count(RemInst) && "RemInst got reinserted?");
Chris Lattnerd777d402008-11-30 19:24:31 +00001076 AA->deleteValue(RemInst);
Chris Lattner5f589dc2008-11-28 22:04:47 +00001077 DEBUG(verifyRemoved(RemInst));
Owen Anderson78e02f72007-07-06 23:14:35 +00001078}
Chris Lattner729b2372008-11-29 21:25:10 +00001079/// verifyRemoved - Verify that the specified instruction does not occur
1080/// in our internal data structures.
1081void MemoryDependenceAnalysis::verifyRemoved(Instruction *D) const {
1082 for (LocalDepMapType::const_iterator I = LocalDeps.begin(),
1083 E = LocalDeps.end(); I != E; ++I) {
1084 assert(I->first != D && "Inst occurs in data structures");
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +00001085 assert(I->second.getInst() != D &&
Chris Lattner729b2372008-11-29 21:25:10 +00001086 "Inst occurs in data structures");
1087 }
1088
Chris Lattner6290f5c2008-12-07 08:50:20 +00001089 for (CachedNonLocalPointerInfo::const_iterator I =NonLocalPointerDeps.begin(),
1090 E = NonLocalPointerDeps.end(); I != E; ++I) {
1091 assert(I->first.getPointer() != D && "Inst occurs in NLPD map key");
Chris Lattner11dcd8d2008-12-08 07:31:50 +00001092 const NonLocalDepInfo &Val = I->second.second;
Chris Lattner6290f5c2008-12-07 08:50:20 +00001093 for (NonLocalDepInfo::const_iterator II = Val.begin(), E = Val.end();
1094 II != E; ++II)
1095 assert(II->second.getInst() != D && "Inst occurs as NLPD value");
1096 }
1097
Chris Lattner729b2372008-11-29 21:25:10 +00001098 for (NonLocalDepMapType::const_iterator I = NonLocalDeps.begin(),
1099 E = NonLocalDeps.end(); I != E; ++I) {
1100 assert(I->first != D && "Inst occurs in data structures");
Chris Lattner4a69bad2008-11-30 02:52:26 +00001101 const PerInstNLInfo &INLD = I->second;
Chris Lattnerbf145d62008-12-01 01:15:42 +00001102 for (NonLocalDepInfo::const_iterator II = INLD.first.begin(),
1103 EE = INLD.first.end(); II != EE; ++II)
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +00001104 assert(II->second.getInst() != D && "Inst occurs in data structures");
Chris Lattner729b2372008-11-29 21:25:10 +00001105 }
1106
1107 for (ReverseDepMapType::const_iterator I = ReverseLocalDeps.begin(),
Chris Lattnerf68f3102008-11-30 02:28:25 +00001108 E = ReverseLocalDeps.end(); I != E; ++I) {
1109 assert(I->first != D && "Inst occurs in data structures");
Chris Lattner729b2372008-11-29 21:25:10 +00001110 for (SmallPtrSet<Instruction*, 4>::const_iterator II = I->second.begin(),
1111 EE = I->second.end(); II != EE; ++II)
1112 assert(*II != D && "Inst occurs in data structures");
Chris Lattnerf68f3102008-11-30 02:28:25 +00001113 }
Chris Lattner729b2372008-11-29 21:25:10 +00001114
1115 for (ReverseDepMapType::const_iterator I = ReverseNonLocalDeps.begin(),
1116 E = ReverseNonLocalDeps.end();
Chris Lattnerf68f3102008-11-30 02:28:25 +00001117 I != E; ++I) {
1118 assert(I->first != D && "Inst occurs in data structures");
Chris Lattner729b2372008-11-29 21:25:10 +00001119 for (SmallPtrSet<Instruction*, 4>::const_iterator II = I->second.begin(),
1120 EE = I->second.end(); II != EE; ++II)
1121 assert(*II != D && "Inst occurs in data structures");
Chris Lattnerf68f3102008-11-30 02:28:25 +00001122 }
Chris Lattner6290f5c2008-12-07 08:50:20 +00001123
1124 for (ReverseNonLocalPtrDepTy::const_iterator
1125 I = ReverseNonLocalPtrDeps.begin(),
1126 E = ReverseNonLocalPtrDeps.end(); I != E; ++I) {
1127 assert(I->first != D && "Inst occurs in rev NLPD map");
1128
1129 for (SmallPtrSet<void*, 4>::const_iterator II = I->second.begin(),
1130 E = I->second.end(); II != E; ++II)
1131 assert(*II != ValueIsLoadPair(D, false).getOpaqueValue() &&
1132 *II != ValueIsLoadPair(D, true).getOpaqueValue() &&
1133 "Inst occurs in ReverseNonLocalPtrDeps map");
1134 }
1135
Chris Lattner729b2372008-11-29 21:25:10 +00001136}