blob: 6af365b76a902e4e1ab61626c7abf323b97b34bf [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"
21#include "llvm/Function.h"
22#include "llvm/Analysis/AliasAnalysis.h"
Chris Lattnerbaad8882008-11-28 22:28:27 +000023#include "llvm/ADT/Statistic.h"
Duncan Sands7050f3d2008-12-10 09:38:36 +000024#include "llvm/ADT/STLExtras.h"
Chris Lattner4012fdd2008-12-09 06:28:49 +000025#include "llvm/Support/PredIteratorCache.h"
Chris Lattner0e575f42008-11-28 21:45:17 +000026#include "llvm/Support/Debug.h"
Owen Anderson78e02f72007-07-06 23:14:35 +000027#include "llvm/Target/TargetData.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>();
73 AU.addRequiredTransitive<TargetData>();
74}
75
Chris Lattnerd777d402008-11-30 19:24:31 +000076bool MemoryDependenceAnalysis::runOnFunction(Function &) {
77 AA = &getAnalysis<AliasAnalysis>();
78 TD = &getAnalysis<TargetData>();
Chris Lattner4012fdd2008-12-09 06:28:49 +000079 if (PredCache == 0)
80 PredCache.reset(new PredIteratorCache());
Chris Lattnerd777d402008-11-30 19:24:31 +000081 return false;
82}
83
Chris Lattnerd44745d2008-12-07 18:39:13 +000084/// RemoveFromReverseMap - This is a helper function that removes Val from
85/// 'Inst's set in ReverseMap. If the set becomes empty, remove Inst's entry.
86template <typename KeyTy>
87static void RemoveFromReverseMap(DenseMap<Instruction*,
88 SmallPtrSet<KeyTy*, 4> > &ReverseMap,
89 Instruction *Inst, KeyTy *Val) {
90 typename DenseMap<Instruction*, SmallPtrSet<KeyTy*, 4> >::iterator
91 InstIt = ReverseMap.find(Inst);
92 assert(InstIt != ReverseMap.end() && "Reverse map out of sync?");
93 bool Found = InstIt->second.erase(Val);
94 assert(Found && "Invalid reverse map!"); Found=Found;
95 if (InstIt->second.empty())
96 ReverseMap.erase(InstIt);
97}
98
Chris Lattnerbf145d62008-12-01 01:15:42 +000099
Chris Lattner8ef57c52008-12-07 00:35:51 +0000100/// getCallSiteDependencyFrom - Private helper for finding the local
101/// dependencies of a call site.
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000102MemDepResult MemoryDependenceAnalysis::
Chris Lattner20d6f092008-12-09 21:19:42 +0000103getCallSiteDependencyFrom(CallSite CS, bool isReadOnlyCall,
104 BasicBlock::iterator ScanIt, BasicBlock *BB) {
Owen Anderson642a9e32007-08-08 22:26:03 +0000105 // Walk backwards through the block, looking for dependencies
Chris Lattner5391a1d2008-11-29 03:47:00 +0000106 while (ScanIt != BB->begin()) {
107 Instruction *Inst = --ScanIt;
Owen Anderson5f323202007-07-10 17:59:22 +0000108
109 // If this inst is a memory op, get the pointer it accessed
Chris Lattner00314b32008-11-29 09:15:21 +0000110 Value *Pointer = 0;
111 uint64_t PointerSize = 0;
112 if (StoreInst *S = dyn_cast<StoreInst>(Inst)) {
113 Pointer = S->getPointerOperand();
Chris Lattnerd777d402008-11-30 19:24:31 +0000114 PointerSize = TD->getTypeStoreSize(S->getOperand(0)->getType());
Chris Lattner00314b32008-11-29 09:15:21 +0000115 } else if (VAArgInst *V = dyn_cast<VAArgInst>(Inst)) {
116 Pointer = V->getOperand(0);
Chris Lattnerd777d402008-11-30 19:24:31 +0000117 PointerSize = TD->getTypeStoreSize(V->getType());
Chris Lattner00314b32008-11-29 09:15:21 +0000118 } else if (FreeInst *F = dyn_cast<FreeInst>(Inst)) {
119 Pointer = F->getPointerOperand();
Owen Anderson5f323202007-07-10 17:59:22 +0000120
121 // FreeInsts erase the entire structure
Chris Lattner6290f5c2008-12-07 08:50:20 +0000122 PointerSize = ~0ULL;
Chris Lattner00314b32008-11-29 09:15:21 +0000123 } else if (isa<CallInst>(Inst) || isa<InvokeInst>(Inst)) {
Chris Lattnerb51deb92008-12-05 21:04:20 +0000124 CallSite InstCS = CallSite::get(Inst);
125 // If these two calls do not interfere, look past it.
Chris Lattner20d6f092008-12-09 21:19:42 +0000126 switch (AA->getModRefInfo(CS, InstCS)) {
127 case AliasAnalysis::NoModRef:
128 // If the two calls don't interact (e.g. InstCS is readnone) keep
129 // scanning.
Chris Lattner00314b32008-11-29 09:15:21 +0000130 continue;
Chris Lattner20d6f092008-12-09 21:19:42 +0000131 case AliasAnalysis::Ref:
132 // If the two calls read the same memory locations and CS is a readonly
133 // function, then we have two cases: 1) the calls may not interfere with
134 // each other at all. 2) the calls may produce the same value. In case
135 // #1 we want to ignore the values, in case #2, we want to return Inst
136 // as a Def dependence. This allows us to CSE in cases like:
137 // X = strlen(P);
138 // memchr(...);
139 // Y = strlen(P); // Y = X
140 if (isReadOnlyCall) {
141 if (CS.getCalledFunction() != 0 &&
142 CS.getCalledFunction() == InstCS.getCalledFunction())
143 return MemDepResult::getDef(Inst);
144 // Ignore unrelated read/read call dependences.
145 continue;
146 }
147 // FALL THROUGH
148 default:
Chris Lattnerb51deb92008-12-05 21:04:20 +0000149 return MemDepResult::getClobber(Inst);
Chris Lattner20d6f092008-12-09 21:19:42 +0000150 }
Chris Lattnercfbb6342008-11-30 01:44:00 +0000151 } else {
152 // Non-memory instruction.
Owen Anderson202da142007-07-10 20:39:07 +0000153 continue;
Chris Lattnercfbb6342008-11-30 01:44:00 +0000154 }
Owen Anderson5f323202007-07-10 17:59:22 +0000155
Chris Lattnerb51deb92008-12-05 21:04:20 +0000156 if (AA->getModRefInfo(CS, Pointer, PointerSize) != AliasAnalysis::NoModRef)
157 return MemDepResult::getClobber(Inst);
Owen Anderson5f323202007-07-10 17:59:22 +0000158 }
159
Chris Lattner7ebcf032008-12-07 02:15:47 +0000160 // No dependence found. If this is the entry block of the function, it is a
161 // clobber, otherwise it is non-local.
162 if (BB != &BB->getParent()->getEntryBlock())
163 return MemDepResult::getNonLocal();
164 return MemDepResult::getClobber(ScanIt);
Owen Anderson5f323202007-07-10 17:59:22 +0000165}
166
Chris Lattnere79be942008-12-07 01:50:16 +0000167/// getPointerDependencyFrom - Return the instruction on which a memory
168/// location depends. If isLoad is true, this routine ignore may-aliases with
169/// read-only operations.
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000170MemDepResult MemoryDependenceAnalysis::
Chris Lattnere79be942008-12-07 01:50:16 +0000171getPointerDependencyFrom(Value *MemPtr, uint64_t MemSize, bool isLoad,
172 BasicBlock::iterator ScanIt, BasicBlock *BB) {
Chris Lattner7ebcf032008-12-07 02:15:47 +0000173
Chris Lattner6290f5c2008-12-07 08:50:20 +0000174 // Walk backwards through the basic block, looking for dependencies.
Chris Lattner5391a1d2008-11-29 03:47:00 +0000175 while (ScanIt != BB->begin()) {
176 Instruction *Inst = --ScanIt;
Chris Lattnera161ab02008-11-29 09:09:48 +0000177
Chris Lattnercfbb6342008-11-30 01:44:00 +0000178 // Values depend on loads if the pointers are must aliased. This means that
179 // a load depends on another must aliased load from the same value.
Chris Lattnerb51deb92008-12-05 21:04:20 +0000180 if (LoadInst *LI = dyn_cast<LoadInst>(Inst)) {
Chris Lattnerb51deb92008-12-05 21:04:20 +0000181 Value *Pointer = LI->getPointerOperand();
182 uint64_t PointerSize = TD->getTypeStoreSize(LI->getType());
183
184 // If we found a pointer, check if it could be the same as our pointer.
Chris Lattnera161ab02008-11-29 09:09:48 +0000185 AliasAnalysis::AliasResult R =
Chris Lattnerd777d402008-11-30 19:24:31 +0000186 AA->alias(Pointer, PointerSize, MemPtr, MemSize);
Chris Lattnera161ab02008-11-29 09:09:48 +0000187 if (R == AliasAnalysis::NoAlias)
188 continue;
189
190 // May-alias loads don't depend on each other without a dependence.
Chris Lattnere79be942008-12-07 01:50:16 +0000191 if (isLoad && R == AliasAnalysis::MayAlias)
Chris Lattnera161ab02008-11-29 09:09:48 +0000192 continue;
Chris Lattner6290f5c2008-12-07 08:50:20 +0000193 // Stores depend on may and must aliased loads, loads depend on must-alias
194 // loads.
Chris Lattnerb51deb92008-12-05 21:04:20 +0000195 return MemDepResult::getDef(Inst);
196 }
197
198 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
Chris Lattnerb51deb92008-12-05 21:04:20 +0000199 Value *Pointer = SI->getPointerOperand();
200 uint64_t PointerSize = TD->getTypeStoreSize(SI->getOperand(0)->getType());
201
202 // If we found a pointer, check if it could be the same as our pointer.
203 AliasAnalysis::AliasResult R =
204 AA->alias(Pointer, PointerSize, MemPtr, MemSize);
205
206 if (R == AliasAnalysis::NoAlias)
207 continue;
208 if (R == AliasAnalysis::MayAlias)
209 return MemDepResult::getClobber(Inst);
210 return MemDepResult::getDef(Inst);
Owen Anderson78e02f72007-07-06 23:14:35 +0000211 }
Chris Lattner237a8282008-11-30 01:39:32 +0000212
213 // If this is an allocation, and if we know that the accessed pointer is to
Chris Lattnerb51deb92008-12-05 21:04:20 +0000214 // the allocation, return Def. This means that there is no dependence and
Chris Lattner237a8282008-11-30 01:39:32 +0000215 // the access can be optimized based on that. For example, a load could
216 // turn into undef.
Chris Lattnera161ab02008-11-29 09:09:48 +0000217 if (AllocationInst *AI = dyn_cast<AllocationInst>(Inst)) {
Chris Lattner237a8282008-11-30 01:39:32 +0000218 Value *AccessPtr = MemPtr->getUnderlyingObject();
Owen Anderson78e02f72007-07-06 23:14:35 +0000219
Chris Lattner237a8282008-11-30 01:39:32 +0000220 if (AccessPtr == AI ||
Chris Lattnerd777d402008-11-30 19:24:31 +0000221 AA->alias(AI, 1, AccessPtr, 1) == AliasAnalysis::MustAlias)
Chris Lattnerb51deb92008-12-05 21:04:20 +0000222 return MemDepResult::getDef(AI);
Chris Lattner237a8282008-11-30 01:39:32 +0000223 continue;
Chris Lattnera161ab02008-11-29 09:09:48 +0000224 }
Chris Lattnera161ab02008-11-29 09:09:48 +0000225
Chris Lattnerb51deb92008-12-05 21:04:20 +0000226 // See if this instruction (e.g. a call or vaarg) mod/ref's the pointer.
Chris Lattner3579e442008-12-09 19:47:40 +0000227 switch (AA->getModRefInfo(Inst, MemPtr, MemSize)) {
228 case AliasAnalysis::NoModRef:
229 // If the call has no effect on the queried pointer, just ignore it.
Chris Lattner25a08142008-11-29 08:51:16 +0000230 continue;
Chris Lattner3579e442008-12-09 19:47:40 +0000231 case AliasAnalysis::Ref:
232 // If the call is known to never store to the pointer, and if this is a
233 // load query, we can safely ignore it (scan past it).
234 if (isLoad)
235 continue;
236 // FALL THROUGH.
237 default:
238 // Otherwise, there is a potential dependence. Return a clobber.
239 return MemDepResult::getClobber(Inst);
240 }
Owen Anderson78e02f72007-07-06 23:14:35 +0000241 }
242
Chris Lattner7ebcf032008-12-07 02:15:47 +0000243 // No dependence found. If this is the entry block of the function, it is a
244 // clobber, otherwise it is non-local.
245 if (BB != &BB->getParent()->getEntryBlock())
246 return MemDepResult::getNonLocal();
247 return MemDepResult::getClobber(ScanIt);
Owen Anderson78e02f72007-07-06 23:14:35 +0000248}
249
Chris Lattner5391a1d2008-11-29 03:47:00 +0000250/// getDependency - Return the instruction on which a memory operation
251/// depends.
252MemDepResult MemoryDependenceAnalysis::getDependency(Instruction *QueryInst) {
253 Instruction *ScanPos = QueryInst;
254
255 // Check for a cached result
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000256 MemDepResult &LocalCache = LocalDeps[QueryInst];
Chris Lattner5391a1d2008-11-29 03:47:00 +0000257
Chris Lattner0ec48dd2008-11-29 22:02:15 +0000258 // If the cached entry is non-dirty, just return it. Note that this depends
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000259 // on MemDepResult's default constructing to 'dirty'.
260 if (!LocalCache.isDirty())
261 return LocalCache;
Chris Lattner5391a1d2008-11-29 03:47:00 +0000262
263 // Otherwise, if we have a dirty entry, we know we can start the scan at that
264 // instruction, which may save us some work.
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000265 if (Instruction *Inst = LocalCache.getInst()) {
Chris Lattner5391a1d2008-11-29 03:47:00 +0000266 ScanPos = Inst;
Chris Lattner4a69bad2008-11-30 02:52:26 +0000267
Chris Lattnerd44745d2008-12-07 18:39:13 +0000268 RemoveFromReverseMap(ReverseLocalDeps, Inst, QueryInst);
Chris Lattner4a69bad2008-11-30 02:52:26 +0000269 }
Chris Lattner5391a1d2008-11-29 03:47:00 +0000270
Chris Lattnere79be942008-12-07 01:50:16 +0000271 BasicBlock *QueryParent = QueryInst->getParent();
272
273 Value *MemPtr = 0;
274 uint64_t MemSize = 0;
275
Chris Lattner5391a1d2008-11-29 03:47:00 +0000276 // Do the scan.
Chris Lattnere79be942008-12-07 01:50:16 +0000277 if (BasicBlock::iterator(QueryInst) == QueryParent->begin()) {
Chris Lattner7ebcf032008-12-07 02:15:47 +0000278 // No dependence found. If this is the entry block of the function, it is a
279 // clobber, otherwise it is non-local.
280 if (QueryParent != &QueryParent->getParent()->getEntryBlock())
281 LocalCache = MemDepResult::getNonLocal();
282 else
283 LocalCache = MemDepResult::getClobber(QueryInst);
Chris Lattnere79be942008-12-07 01:50:16 +0000284 } else if (StoreInst *SI = dyn_cast<StoreInst>(QueryInst)) {
285 // If this is a volatile store, don't mess around with it. Just return the
286 // previous instruction as a clobber.
287 if (SI->isVolatile())
288 LocalCache = MemDepResult::getClobber(--BasicBlock::iterator(ScanPos));
289 else {
290 MemPtr = SI->getPointerOperand();
291 MemSize = TD->getTypeStoreSize(SI->getOperand(0)->getType());
292 }
293 } else if (LoadInst *LI = dyn_cast<LoadInst>(QueryInst)) {
294 // If this is a volatile load, don't mess around with it. Just return the
295 // previous instruction as a clobber.
296 if (LI->isVolatile())
297 LocalCache = MemDepResult::getClobber(--BasicBlock::iterator(ScanPos));
298 else {
299 MemPtr = LI->getPointerOperand();
300 MemSize = TD->getTypeStoreSize(LI->getType());
301 }
302 } else if (isa<CallInst>(QueryInst) || isa<InvokeInst>(QueryInst)) {
Chris Lattner20d6f092008-12-09 21:19:42 +0000303 CallSite QueryCS = CallSite::get(QueryInst);
304 bool isReadOnly = AA->onlyReadsMemory(QueryCS);
305 LocalCache = getCallSiteDependencyFrom(QueryCS, isReadOnly, ScanPos,
Chris Lattnere79be942008-12-07 01:50:16 +0000306 QueryParent);
307 } else if (FreeInst *FI = dyn_cast<FreeInst>(QueryInst)) {
308 MemPtr = FI->getPointerOperand();
309 // FreeInsts erase the entire structure, not just a field.
310 MemSize = ~0UL;
311 } else {
312 // Non-memory instruction.
313 LocalCache = MemDepResult::getClobber(--BasicBlock::iterator(ScanPos));
314 }
315
316 // If we need to do a pointer scan, make it happen.
317 if (MemPtr)
318 LocalCache = getPointerDependencyFrom(MemPtr, MemSize,
319 isa<LoadInst>(QueryInst),
320 ScanPos, QueryParent);
Chris Lattner5391a1d2008-11-29 03:47:00 +0000321
322 // Remember the result!
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000323 if (Instruction *I = LocalCache.getInst())
Chris Lattner8c465272008-11-29 09:20:15 +0000324 ReverseLocalDeps[I].insert(QueryInst);
Chris Lattner5391a1d2008-11-29 03:47:00 +0000325
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000326 return LocalCache;
Chris Lattner5391a1d2008-11-29 03:47:00 +0000327}
328
Chris Lattner12a7db32009-01-22 07:04:01 +0000329#ifndef NDEBUG
330/// AssertSorted - This method is used when -debug is specified to verify that
331/// cache arrays are properly kept sorted.
332static void AssertSorted(MemoryDependenceAnalysis::NonLocalDepInfo &Cache,
333 int Count = -1) {
334 if (Count == -1) Count = Cache.size();
335 if (Count == 0) return;
336
337 for (unsigned i = 1; i != unsigned(Count); ++i)
338 assert(Cache[i-1] <= Cache[i] && "Cache isn't sorted!");
339}
340#endif
341
Chris Lattner1559b362008-12-09 19:38:05 +0000342/// getNonLocalCallDependency - Perform a full dependency query for the
343/// specified call, returning the set of blocks that the value is
Chris Lattner37d041c2008-11-30 01:18:27 +0000344/// potentially live across. The returned set of results will include a
345/// "NonLocal" result for all blocks where the value is live across.
346///
Chris Lattner1559b362008-12-09 19:38:05 +0000347/// This method assumes the instruction returns a "NonLocal" dependency
Chris Lattner37d041c2008-11-30 01:18:27 +0000348/// within its own block.
349///
Chris Lattner1559b362008-12-09 19:38:05 +0000350/// This returns a reference to an internal data structure that may be
351/// invalidated on the next non-local query or when an instruction is
352/// removed. Clients must copy this data if they want it around longer than
353/// that.
Chris Lattnerbf145d62008-12-01 01:15:42 +0000354const MemoryDependenceAnalysis::NonLocalDepInfo &
Chris Lattner1559b362008-12-09 19:38:05 +0000355MemoryDependenceAnalysis::getNonLocalCallDependency(CallSite QueryCS) {
356 assert(getDependency(QueryCS.getInstruction()).isNonLocal() &&
357 "getNonLocalCallDependency should only be used on calls with non-local deps!");
358 PerInstNLInfo &CacheP = NonLocalDeps[QueryCS.getInstruction()];
Chris Lattnerbf145d62008-12-01 01:15:42 +0000359 NonLocalDepInfo &Cache = CacheP.first;
Chris Lattner37d041c2008-11-30 01:18:27 +0000360
361 /// DirtyBlocks - This is the set of blocks that need to be recomputed. In
362 /// the cached case, this can happen due to instructions being deleted etc. In
363 /// the uncached case, this starts out as the set of predecessors we care
364 /// about.
365 SmallVector<BasicBlock*, 32> DirtyBlocks;
366
367 if (!Cache.empty()) {
Chris Lattnerbf145d62008-12-01 01:15:42 +0000368 // Okay, we have a cache entry. If we know it is not dirty, just return it
369 // with no computation.
370 if (!CacheP.second) {
371 NumCacheNonLocal++;
372 return Cache;
373 }
374
Chris Lattner37d041c2008-11-30 01:18:27 +0000375 // If we already have a partially computed set of results, scan them to
Chris Lattnerbf145d62008-12-01 01:15:42 +0000376 // determine what is dirty, seeding our initial DirtyBlocks worklist.
377 for (NonLocalDepInfo::iterator I = Cache.begin(), E = Cache.end();
378 I != E; ++I)
379 if (I->second.isDirty())
380 DirtyBlocks.push_back(I->first);
Chris Lattner37d041c2008-11-30 01:18:27 +0000381
Chris Lattnerbf145d62008-12-01 01:15:42 +0000382 // Sort the cache so that we can do fast binary search lookups below.
383 std::sort(Cache.begin(), Cache.end());
Chris Lattner37d041c2008-11-30 01:18:27 +0000384
Chris Lattnerbf145d62008-12-01 01:15:42 +0000385 ++NumCacheDirtyNonLocal;
Chris Lattner37d041c2008-11-30 01:18:27 +0000386 //cerr << "CACHED CASE: " << DirtyBlocks.size() << " dirty: "
387 // << Cache.size() << " cached: " << *QueryInst;
388 } else {
389 // Seed DirtyBlocks with each of the preds of QueryInst's block.
Chris Lattner1559b362008-12-09 19:38:05 +0000390 BasicBlock *QueryBB = QueryCS.getInstruction()->getParent();
Chris Lattner511b36c2008-12-09 06:44:17 +0000391 for (BasicBlock **PI = PredCache->GetPreds(QueryBB); *PI; ++PI)
392 DirtyBlocks.push_back(*PI);
Chris Lattner37d041c2008-11-30 01:18:27 +0000393 NumUncacheNonLocal++;
394 }
395
Chris Lattner20d6f092008-12-09 21:19:42 +0000396 // isReadonlyCall - If this is a read-only call, we can be more aggressive.
397 bool isReadonlyCall = AA->onlyReadsMemory(QueryCS);
Chris Lattner9e59c642008-12-15 03:35:32 +0000398
Chris Lattnerbf145d62008-12-01 01:15:42 +0000399 SmallPtrSet<BasicBlock*, 64> Visited;
400
401 unsigned NumSortedEntries = Cache.size();
Chris Lattner12a7db32009-01-22 07:04:01 +0000402 DEBUG(AssertSorted(Cache));
Chris Lattnerbf145d62008-12-01 01:15:42 +0000403
Chris Lattner37d041c2008-11-30 01:18:27 +0000404 // Iterate while we still have blocks to update.
405 while (!DirtyBlocks.empty()) {
406 BasicBlock *DirtyBB = DirtyBlocks.back();
407 DirtyBlocks.pop_back();
408
Chris Lattnerbf145d62008-12-01 01:15:42 +0000409 // Already processed this block?
410 if (!Visited.insert(DirtyBB))
411 continue;
Chris Lattner37d041c2008-11-30 01:18:27 +0000412
Chris Lattnerbf145d62008-12-01 01:15:42 +0000413 // Do a binary search to see if we already have an entry for this block in
414 // the cache set. If so, find it.
Chris Lattner12a7db32009-01-22 07:04:01 +0000415 DEBUG(AssertSorted(Cache, NumSortedEntries));
Chris Lattnerbf145d62008-12-01 01:15:42 +0000416 NonLocalDepInfo::iterator Entry =
417 std::upper_bound(Cache.begin(), Cache.begin()+NumSortedEntries,
418 std::make_pair(DirtyBB, MemDepResult()));
Duncan Sands7050f3d2008-12-10 09:38:36 +0000419 if (Entry != Cache.begin() && prior(Entry)->first == DirtyBB)
Chris Lattnerbf145d62008-12-01 01:15:42 +0000420 --Entry;
421
422 MemDepResult *ExistingResult = 0;
423 if (Entry != Cache.begin()+NumSortedEntries &&
424 Entry->first == DirtyBB) {
425 // If we already have an entry, and if it isn't already dirty, the block
426 // is done.
427 if (!Entry->second.isDirty())
428 continue;
429
430 // Otherwise, remember this slot so we can update the value.
431 ExistingResult = &Entry->second;
432 }
433
Chris Lattner37d041c2008-11-30 01:18:27 +0000434 // If the dirty entry has a pointer, start scanning from it so we don't have
435 // to rescan the entire block.
436 BasicBlock::iterator ScanPos = DirtyBB->end();
Chris Lattnerbf145d62008-12-01 01:15:42 +0000437 if (ExistingResult) {
438 if (Instruction *Inst = ExistingResult->getInst()) {
439 ScanPos = Inst;
Chris Lattnerbf145d62008-12-01 01:15:42 +0000440 // We're removing QueryInst's use of Inst.
Chris Lattner1559b362008-12-09 19:38:05 +0000441 RemoveFromReverseMap(ReverseNonLocalDeps, Inst,
442 QueryCS.getInstruction());
Chris Lattnerbf145d62008-12-01 01:15:42 +0000443 }
Chris Lattnerf68f3102008-11-30 02:28:25 +0000444 }
Chris Lattner37d041c2008-11-30 01:18:27 +0000445
Chris Lattner73ec3cd2008-11-30 01:26:32 +0000446 // Find out if this block has a local dependency for QueryInst.
Chris Lattnerd8dd9342008-12-07 01:21:14 +0000447 MemDepResult Dep;
Chris Lattnere79be942008-12-07 01:50:16 +0000448
Chris Lattner1559b362008-12-09 19:38:05 +0000449 if (ScanPos != DirtyBB->begin()) {
Chris Lattner20d6f092008-12-09 21:19:42 +0000450 Dep = getCallSiteDependencyFrom(QueryCS, isReadonlyCall,ScanPos, DirtyBB);
Chris Lattner1559b362008-12-09 19:38:05 +0000451 } else if (DirtyBB != &DirtyBB->getParent()->getEntryBlock()) {
452 // No dependence found. If this is the entry block of the function, it is
453 // a clobber, otherwise it is non-local.
454 Dep = MemDepResult::getNonLocal();
Chris Lattnere79be942008-12-07 01:50:16 +0000455 } else {
Chris Lattner1559b362008-12-09 19:38:05 +0000456 Dep = MemDepResult::getClobber(ScanPos);
Chris Lattnere79be942008-12-07 01:50:16 +0000457 }
458
Chris Lattnerbf145d62008-12-01 01:15:42 +0000459 // If we had a dirty entry for the block, update it. Otherwise, just add
460 // a new entry.
461 if (ExistingResult)
462 *ExistingResult = Dep;
463 else
464 Cache.push_back(std::make_pair(DirtyBB, Dep));
465
Chris Lattner37d041c2008-11-30 01:18:27 +0000466 // If the block has a dependency (i.e. it isn't completely transparent to
Chris Lattnerbf145d62008-12-01 01:15:42 +0000467 // the value), remember the association!
468 if (!Dep.isNonLocal()) {
Chris Lattner37d041c2008-11-30 01:18:27 +0000469 // Keep the ReverseNonLocalDeps map up to date so we can efficiently
470 // update this when we remove instructions.
Chris Lattnerbf145d62008-12-01 01:15:42 +0000471 if (Instruction *Inst = Dep.getInst())
Chris Lattner1559b362008-12-09 19:38:05 +0000472 ReverseNonLocalDeps[Inst].insert(QueryCS.getInstruction());
Chris Lattnerbf145d62008-12-01 01:15:42 +0000473 } else {
Chris Lattner37d041c2008-11-30 01:18:27 +0000474
Chris Lattnerbf145d62008-12-01 01:15:42 +0000475 // If the block *is* completely transparent to the load, we need to check
476 // the predecessors of this block. Add them to our worklist.
Chris Lattner511b36c2008-12-09 06:44:17 +0000477 for (BasicBlock **PI = PredCache->GetPreds(DirtyBB); *PI; ++PI)
478 DirtyBlocks.push_back(*PI);
Chris Lattnerbf145d62008-12-01 01:15:42 +0000479 }
Chris Lattner37d041c2008-11-30 01:18:27 +0000480 }
481
Chris Lattnerbf145d62008-12-01 01:15:42 +0000482 return Cache;
Chris Lattner37d041c2008-11-30 01:18:27 +0000483}
484
Chris Lattner7ebcf032008-12-07 02:15:47 +0000485/// getNonLocalPointerDependency - Perform a full dependency query for an
486/// access to the specified (non-volatile) memory location, returning the
487/// set of instructions that either define or clobber the value.
488///
489/// This method assumes the pointer has a "NonLocal" dependency within its
490/// own block.
491///
492void MemoryDependenceAnalysis::
493getNonLocalPointerDependency(Value *Pointer, bool isLoad, BasicBlock *FromBB,
494 SmallVectorImpl<NonLocalDepEntry> &Result) {
Chris Lattner3f7eb5b2008-12-07 18:45:15 +0000495 assert(isa<PointerType>(Pointer->getType()) &&
496 "Can't get pointer deps of a non-pointer!");
Chris Lattner9a193fd2008-12-07 02:56:57 +0000497 Result.clear();
498
Chris Lattner7ebcf032008-12-07 02:15:47 +0000499 // We know that the pointer value is live into FromBB find the def/clobbers
500 // from presecessors.
Chris Lattner7ebcf032008-12-07 02:15:47 +0000501 const Type *EltTy = cast<PointerType>(Pointer->getType())->getElementType();
502 uint64_t PointeeSize = TD->getTypeStoreSize(EltTy);
503
Chris Lattner9e59c642008-12-15 03:35:32 +0000504 // This is the set of blocks we've inspected, and the pointer we consider in
505 // each block. Because of critical edges, we currently bail out if querying
506 // a block with multiple different pointers. This can happen during PHI
507 // translation.
508 DenseMap<BasicBlock*, Value*> Visited;
509 if (!getNonLocalPointerDepFromBB(Pointer, PointeeSize, isLoad, FromBB,
510 Result, Visited, true))
511 return;
Chris Lattner3af23f82008-12-15 04:58:29 +0000512 Result.clear();
Chris Lattner9e59c642008-12-15 03:35:32 +0000513 Result.push_back(std::make_pair(FromBB,
514 MemDepResult::getClobber(FromBB->begin())));
Chris Lattner9a193fd2008-12-07 02:56:57 +0000515}
516
Chris Lattner9863c3f2008-12-09 07:47:11 +0000517/// GetNonLocalInfoForBlock - Compute the memdep value for BB with
518/// Pointer/PointeeSize using either cached information in Cache or by doing a
519/// lookup (which may use dirty cache info if available). If we do a lookup,
520/// add the result to the cache.
521MemDepResult MemoryDependenceAnalysis::
522GetNonLocalInfoForBlock(Value *Pointer, uint64_t PointeeSize,
523 bool isLoad, BasicBlock *BB,
524 NonLocalDepInfo *Cache, unsigned NumSortedEntries) {
525
526 // Do a binary search to see if we already have an entry for this block in
527 // the cache set. If so, find it.
528 NonLocalDepInfo::iterator Entry =
529 std::upper_bound(Cache->begin(), Cache->begin()+NumSortedEntries,
530 std::make_pair(BB, MemDepResult()));
Duncan Sands7050f3d2008-12-10 09:38:36 +0000531 if (Entry != Cache->begin() && prior(Entry)->first == BB)
Chris Lattner9863c3f2008-12-09 07:47:11 +0000532 --Entry;
533
534 MemDepResult *ExistingResult = 0;
535 if (Entry != Cache->begin()+NumSortedEntries && Entry->first == BB)
536 ExistingResult = &Entry->second;
537
538 // If we have a cached entry, and it is non-dirty, use it as the value for
539 // this dependency.
540 if (ExistingResult && !ExistingResult->isDirty()) {
541 ++NumCacheNonLocalPtr;
542 return *ExistingResult;
543 }
544
545 // Otherwise, we have to scan for the value. If we have a dirty cache
546 // entry, start scanning from its position, otherwise we scan from the end
547 // of the block.
548 BasicBlock::iterator ScanPos = BB->end();
549 if (ExistingResult && ExistingResult->getInst()) {
550 assert(ExistingResult->getInst()->getParent() == BB &&
551 "Instruction invalidated?");
552 ++NumCacheDirtyNonLocalPtr;
553 ScanPos = ExistingResult->getInst();
554
555 // Eliminating the dirty entry from 'Cache', so update the reverse info.
556 ValueIsLoadPair CacheKey(Pointer, isLoad);
557 RemoveFromReverseMap(ReverseNonLocalPtrDeps, ScanPos,
558 CacheKey.getOpaqueValue());
559 } else {
560 ++NumUncacheNonLocalPtr;
561 }
562
563 // Scan the block for the dependency.
564 MemDepResult Dep = getPointerDependencyFrom(Pointer, PointeeSize, isLoad,
565 ScanPos, BB);
566
567 // If we had a dirty entry for the block, update it. Otherwise, just add
568 // a new entry.
569 if (ExistingResult)
570 *ExistingResult = Dep;
571 else
572 Cache->push_back(std::make_pair(BB, Dep));
573
574 // If the block has a dependency (i.e. it isn't completely transparent to
575 // the value), remember the reverse association because we just added it
576 // to Cache!
577 if (Dep.isNonLocal())
578 return Dep;
579
580 // Keep the ReverseNonLocalPtrDeps map up to date so we can efficiently
581 // update MemDep when we remove instructions.
582 Instruction *Inst = Dep.getInst();
583 assert(Inst && "Didn't depend on anything?");
584 ValueIsLoadPair CacheKey(Pointer, isLoad);
585 ReverseNonLocalPtrDeps[Inst].insert(CacheKey.getOpaqueValue());
586 return Dep;
587}
588
589
Chris Lattner9e59c642008-12-15 03:35:32 +0000590/// getNonLocalPointerDepFromBB - Perform a dependency query based on
591/// pointer/pointeesize starting at the end of StartBB. Add any clobber/def
592/// results to the results vector and keep track of which blocks are visited in
593/// 'Visited'.
594///
595/// This has special behavior for the first block queries (when SkipFirstBlock
596/// is true). In this special case, it ignores the contents of the specified
597/// block and starts returning dependence info for its predecessors.
598///
599/// This function returns false on success, or true to indicate that it could
600/// not compute dependence information for some reason. This should be treated
601/// as a clobber dependence on the first instruction in the predecessor block.
602bool MemoryDependenceAnalysis::
Chris Lattner9863c3f2008-12-09 07:47:11 +0000603getNonLocalPointerDepFromBB(Value *Pointer, uint64_t PointeeSize,
604 bool isLoad, BasicBlock *StartBB,
605 SmallVectorImpl<NonLocalDepEntry> &Result,
Chris Lattner9e59c642008-12-15 03:35:32 +0000606 DenseMap<BasicBlock*, Value*> &Visited,
607 bool SkipFirstBlock) {
608
Chris Lattner6290f5c2008-12-07 08:50:20 +0000609 // Look up the cached info for Pointer.
610 ValueIsLoadPair CacheKey(Pointer, isLoad);
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000611
Chris Lattner9e59c642008-12-15 03:35:32 +0000612 std::pair<BBSkipFirstBlockPair, NonLocalDepInfo> *CacheInfo =
613 &NonLocalPointerDeps[CacheKey];
614 NonLocalDepInfo *Cache = &CacheInfo->second;
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000615
616 // If we have valid cached information for exactly the block we are
617 // investigating, just return it with no recomputation.
Chris Lattner9e59c642008-12-15 03:35:32 +0000618 if (CacheInfo->first == BBSkipFirstBlockPair(StartBB, SkipFirstBlock)) {
Chris Lattnerf4789512008-12-16 07:10:09 +0000619 // We have a fully cached result for this query then we can just return the
620 // cached results and populate the visited set. However, we have to verify
621 // that we don't already have conflicting results for these blocks. Check
622 // to ensure that if a block in the results set is in the visited set that
623 // it was for the same pointer query.
624 if (!Visited.empty()) {
625 for (NonLocalDepInfo::iterator I = Cache->begin(), E = Cache->end();
626 I != E; ++I) {
627 DenseMap<BasicBlock*, Value*>::iterator VI = Visited.find(I->first);
628 if (VI == Visited.end() || VI->second == Pointer) continue;
629
630 // We have a pointer mismatch in a block. Just return clobber, saying
631 // that something was clobbered in this result. We could also do a
632 // non-fully cached query, but there is little point in doing this.
633 return true;
634 }
635 }
636
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000637 for (NonLocalDepInfo::iterator I = Cache->begin(), E = Cache->end();
Chris Lattnerf4789512008-12-16 07:10:09 +0000638 I != E; ++I) {
639 Visited.insert(std::make_pair(I->first, Pointer));
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000640 if (!I->second.isNonLocal())
641 Result.push_back(*I);
Chris Lattnerf4789512008-12-16 07:10:09 +0000642 }
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000643 ++NumCacheCompleteNonLocalPtr;
Chris Lattner9e59c642008-12-15 03:35:32 +0000644 return false;
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000645 }
646
647 // Otherwise, either this is a new block, a block with an invalid cache
648 // pointer or one that we're about to invalidate by putting more info into it
649 // than its valid cache info. If empty, the result will be valid cache info,
650 // otherwise it isn't.
Chris Lattner9e59c642008-12-15 03:35:32 +0000651 if (Cache->empty())
652 CacheInfo->first = BBSkipFirstBlockPair(StartBB, SkipFirstBlock);
653 else
654 CacheInfo->first = BBSkipFirstBlockPair();
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000655
656 SmallVector<BasicBlock*, 32> Worklist;
657 Worklist.push_back(StartBB);
Chris Lattner6290f5c2008-12-07 08:50:20 +0000658
659 // Keep track of the entries that we know are sorted. Previously cached
660 // entries will all be sorted. The entries we add we only sort on demand (we
661 // don't insert every element into its sorted position). We know that we
662 // won't get any reuse from currently inserted values, because we don't
663 // revisit blocks after we insert info for them.
664 unsigned NumSortedEntries = Cache->size();
Chris Lattner12a7db32009-01-22 07:04:01 +0000665 DEBUG(AssertSorted(*Cache));
Chris Lattner6290f5c2008-12-07 08:50:20 +0000666
Chris Lattner7ebcf032008-12-07 02:15:47 +0000667 while (!Worklist.empty()) {
Chris Lattner9a193fd2008-12-07 02:56:57 +0000668 BasicBlock *BB = Worklist.pop_back_val();
Chris Lattner7ebcf032008-12-07 02:15:47 +0000669
Chris Lattner65633712008-12-09 07:52:59 +0000670 // Skip the first block if we have it.
Chris Lattner9e59c642008-12-15 03:35:32 +0000671 if (!SkipFirstBlock) {
Chris Lattner65633712008-12-09 07:52:59 +0000672 // Analyze the dependency of *Pointer in FromBB. See if we already have
673 // been here.
Chris Lattner9e59c642008-12-15 03:35:32 +0000674 assert(Visited.count(BB) && "Should check 'visited' before adding to WL");
Chris Lattner6290f5c2008-12-07 08:50:20 +0000675
Chris Lattner65633712008-12-09 07:52:59 +0000676 // Get the dependency info for Pointer in BB. If we have cached
677 // information, we will use it, otherwise we compute it.
Chris Lattner12a7db32009-01-22 07:04:01 +0000678 DEBUG(AssertSorted(*Cache, NumSortedEntries));
Chris Lattner65633712008-12-09 07:52:59 +0000679 MemDepResult Dep = GetNonLocalInfoForBlock(Pointer, PointeeSize, isLoad,
680 BB, Cache, NumSortedEntries);
681
682 // If we got a Def or Clobber, add this to the list of results.
683 if (!Dep.isNonLocal()) {
684 Result.push_back(NonLocalDepEntry(BB, Dep));
685 continue;
686 }
Chris Lattner7ebcf032008-12-07 02:15:47 +0000687 }
688
Chris Lattner9e59c642008-12-15 03:35:32 +0000689 // If 'Pointer' is an instruction defined in this block, then we need to do
690 // phi translation to change it into a value live in the predecessor block.
691 // If phi translation fails, then we can't continue dependence analysis.
692 Instruction *PtrInst = dyn_cast<Instruction>(Pointer);
693 bool NeedsPHITranslation = PtrInst && PtrInst->getParent() == BB;
694
695 // If no PHI translation is needed, just add all the predecessors of this
696 // block to scan them as well.
697 if (!NeedsPHITranslation) {
698 SkipFirstBlock = false;
699 for (BasicBlock **PI = PredCache->GetPreds(BB); *PI; ++PI) {
700 // Verify that we haven't looked at this block yet.
701 std::pair<DenseMap<BasicBlock*,Value*>::iterator, bool>
702 InsertRes = Visited.insert(std::make_pair(*PI, Pointer));
703 if (InsertRes.second) {
704 // First time we've looked at *PI.
705 Worklist.push_back(*PI);
706 continue;
707 }
708
709 // If we have seen this block before, but it was with a different
710 // pointer then we have a phi translation failure and we have to treat
711 // this as a clobber.
712 if (InsertRes.first->second != Pointer)
713 goto PredTranslationFailure;
714 }
715 continue;
716 }
717
718 // If we do need to do phi translation, then there are a bunch of different
719 // cases, because we have to find a Value* live in the predecessor block. We
720 // know that PtrInst is defined in this block at least.
721
722 // If this is directly a PHI node, just use the incoming values for each
723 // pred as the phi translated version.
724 if (PHINode *PtrPHI = dyn_cast<PHINode>(PtrInst)) {
Chris Lattner12a7db32009-01-22 07:04:01 +0000725 for (BasicBlock **PI = PredCache->GetPreds(BB); *PI; ++PI) {
Chris Lattner9e59c642008-12-15 03:35:32 +0000726 BasicBlock *Pred = *PI;
727 Value *PredPtr = PtrPHI->getIncomingValueForBlock(Pred);
728
729 // Check to see if we have already visited this pred block with another
730 // pointer. If so, we can't do this lookup. This failure can occur
731 // with PHI translation when a critical edge exists and the PHI node in
732 // the successor translates to a pointer value different than the
733 // pointer the block was first analyzed with.
734 std::pair<DenseMap<BasicBlock*,Value*>::iterator, bool>
735 InsertRes = Visited.insert(std::make_pair(Pred, PredPtr));
736
737 if (!InsertRes.second) {
738 // If the predecessor was visited with PredPtr, then we already did
739 // the analysis and can ignore it.
740 if (InsertRes.first->second == PredPtr)
741 continue;
742
743 // Otherwise, the block was previously analyzed with a different
744 // pointer. We can't represent the result of this case, so we just
745 // treat this as a phi translation failure.
746 goto PredTranslationFailure;
747 }
Chris Lattner12a7db32009-01-22 07:04:01 +0000748
749 // We may have added values to the cache list before this PHI
750 // translation. If so, we haven't done anything to ensure that the
751 // cache remains sorted. Sort it now (if needed) so that recursive
752 // invocations of getNonLocalPointerDepFromBB that could reuse the cache
753 // value will only see properly sorted cache arrays.
Chris Lattner4433a092009-01-23 06:48:41 +0000754 if (Cache && NumSortedEntries != Cache->size())
Chris Lattner12a7db32009-01-22 07:04:01 +0000755 std::sort(Cache->begin(), Cache->end());
Chris Lattner4433a092009-01-23 06:48:41 +0000756 Cache = 0;
Chris Lattner12a7db32009-01-22 07:04:01 +0000757
758 // FIXME: it is entirely possible that PHI translating will end up with
759 // the same value. Consider PHI translating something like:
760 // X = phi [x, bb1], [y, bb2]. PHI translating for bb1 doesn't *need*
761 // to recurse here, pedantically speaking.
Chris Lattner9e59c642008-12-15 03:35:32 +0000762
763 // If we have a problem phi translating, fall through to the code below
764 // to handle the failure condition.
765 if (getNonLocalPointerDepFromBB(PredPtr, PointeeSize, isLoad, Pred,
766 Result, Visited))
767 goto PredTranslationFailure;
768 }
Chris Lattnerb54bfc22009-01-23 00:27:03 +0000769
Chris Lattner9e59c642008-12-15 03:35:32 +0000770 // Refresh the CacheInfo/Cache pointer so that it isn't invalidated.
771 CacheInfo = &NonLocalPointerDeps[CacheKey];
772 Cache = &CacheInfo->second;
Chris Lattner12a7db32009-01-22 07:04:01 +0000773 NumSortedEntries = Cache->size();
Chris Lattnerb54bfc22009-01-23 00:27:03 +0000774
Chris Lattner9e59c642008-12-15 03:35:32 +0000775 // Since we did phi translation, the "Cache" set won't contain all of the
776 // results for the query. This is ok (we can still use it to accelerate
777 // specific block queries) but we can't do the fastpath "return all
778 // results from the set" Clear out the indicator for this.
779 CacheInfo->first = BBSkipFirstBlockPair();
780 SkipFirstBlock = false;
781 continue;
782 }
783
784 // TODO: BITCAST, GEP.
785
786 // cerr << "MEMDEP: Could not PHI translate: " << *Pointer;
787 // if (isa<BitCastInst>(PtrInst) || isa<GetElementPtrInst>(PtrInst))
788 // cerr << "OP:\t\t\t\t" << *PtrInst->getOperand(0);
789 PredTranslationFailure:
790
Chris Lattner95900f22009-01-23 07:12:16 +0000791 if (Cache == 0) {
792 // Refresh the CacheInfo/Cache pointer if it got invalidated.
793 CacheInfo = &NonLocalPointerDeps[CacheKey];
794 Cache = &CacheInfo->second;
795 NumSortedEntries = Cache->size();
796 } else if (NumSortedEntries != Cache->size()) {
797 std::sort(Cache->begin(), Cache->end());
798 NumSortedEntries = Cache->size();
799 }
Chris Lattner4433a092009-01-23 06:48:41 +0000800
Chris Lattner9e59c642008-12-15 03:35:32 +0000801 // Since we did phi translation, the "Cache" set won't contain all of the
802 // results for the query. This is ok (we can still use it to accelerate
803 // specific block queries) but we can't do the fastpath "return all
804 // results from the set" Clear out the indicator for this.
805 CacheInfo->first = BBSkipFirstBlockPair();
806
807 // If *nothing* works, mark the pointer as being clobbered by the first
808 // instruction in this block.
809 //
810 // If this is the magic first block, return this as a clobber of the whole
811 // incoming value. Since we can't phi translate to one of the predecessors,
812 // we have to bail out.
813 if (SkipFirstBlock)
814 return true;
815
816 for (NonLocalDepInfo::reverse_iterator I = Cache->rbegin(); ; ++I) {
817 assert(I != Cache->rend() && "Didn't find current block??");
818 if (I->first != BB)
819 continue;
820
821 assert(I->second.isNonLocal() &&
822 "Should only be here with transparent block");
823 I->second = MemDepResult::getClobber(BB->begin());
824 ReverseNonLocalPtrDeps[BB->begin()].insert(CacheKey.getOpaqueValue());
825 Result.push_back(*I);
826 break;
Chris Lattner9a193fd2008-12-07 02:56:57 +0000827 }
Chris Lattner7ebcf032008-12-07 02:15:47 +0000828 }
Chris Lattner95900f22009-01-23 07:12:16 +0000829
Chris Lattner9863c3f2008-12-09 07:47:11 +0000830 // Okay, we're done now. If we added new values to the cache, re-sort it.
Chris Lattnerba4dacc2008-12-09 07:05:45 +0000831 switch (Cache->size()-NumSortedEntries) {
832 case 0:
Chris Lattner1aeadac2008-12-09 06:58:04 +0000833 // done, no new entries.
Chris Lattnerba4dacc2008-12-09 07:05:45 +0000834 break;
835 case 2: {
836 // Two new entries, insert the last one into place.
837 NonLocalDepEntry Val = Cache->back();
838 Cache->pop_back();
839 NonLocalDepInfo::iterator Entry =
840 std::upper_bound(Cache->begin(), Cache->end()-1, Val);
841 Cache->insert(Entry, Val);
842 // FALL THROUGH.
843 }
Chris Lattner9e59c642008-12-15 03:35:32 +0000844 case 1:
Chris Lattner1aeadac2008-12-09 06:58:04 +0000845 // One new entry, Just insert the new value at the appropriate position.
Chris Lattner9e59c642008-12-15 03:35:32 +0000846 if (Cache->size() != 1) {
847 NonLocalDepEntry Val = Cache->back();
848 Cache->pop_back();
849 NonLocalDepInfo::iterator Entry =
850 std::upper_bound(Cache->begin(), Cache->end(), Val);
851 Cache->insert(Entry, Val);
852 }
Chris Lattnerba4dacc2008-12-09 07:05:45 +0000853 break;
Chris Lattnerba4dacc2008-12-09 07:05:45 +0000854 default:
Chris Lattner1aeadac2008-12-09 06:58:04 +0000855 // Added many values, do a full scale sort.
Chris Lattner6290f5c2008-12-07 08:50:20 +0000856 std::sort(Cache->begin(), Cache->end());
Chris Lattner1aeadac2008-12-09 06:58:04 +0000857 }
Chris Lattner12a7db32009-01-22 07:04:01 +0000858 DEBUG(AssertSorted(*Cache));
Chris Lattner9e59c642008-12-15 03:35:32 +0000859 return false;
Chris Lattner6290f5c2008-12-07 08:50:20 +0000860}
861
862/// RemoveCachedNonLocalPointerDependencies - If P exists in
863/// CachedNonLocalPointerInfo, remove it.
864void MemoryDependenceAnalysis::
865RemoveCachedNonLocalPointerDependencies(ValueIsLoadPair P) {
866 CachedNonLocalPointerInfo::iterator It =
867 NonLocalPointerDeps.find(P);
868 if (It == NonLocalPointerDeps.end()) return;
869
870 // Remove all of the entries in the BB->val map. This involves removing
871 // instructions from the reverse map.
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000872 NonLocalDepInfo &PInfo = It->second.second;
Chris Lattner6290f5c2008-12-07 08:50:20 +0000873
874 for (unsigned i = 0, e = PInfo.size(); i != e; ++i) {
875 Instruction *Target = PInfo[i].second.getInst();
876 if (Target == 0) continue; // Ignore non-local dep results.
Chris Lattner5a45bf12008-12-09 22:45:32 +0000877 assert(Target->getParent() == PInfo[i].first);
Chris Lattner6290f5c2008-12-07 08:50:20 +0000878
879 // Eliminating the dirty entry from 'Cache', so update the reverse info.
Chris Lattnerd44745d2008-12-07 18:39:13 +0000880 RemoveFromReverseMap(ReverseNonLocalPtrDeps, Target, P.getOpaqueValue());
Chris Lattner6290f5c2008-12-07 08:50:20 +0000881 }
882
883 // Remove P from NonLocalPointerDeps (which deletes NonLocalDepInfo).
884 NonLocalPointerDeps.erase(It);
Chris Lattner7ebcf032008-12-07 02:15:47 +0000885}
886
887
Chris Lattnerbc99be12008-12-09 22:06:23 +0000888/// invalidateCachedPointerInfo - This method is used to invalidate cached
889/// information about the specified pointer, because it may be too
890/// conservative in memdep. This is an optional call that can be used when
891/// the client detects an equivalence between the pointer and some other
892/// value and replaces the other value with ptr. This can make Ptr available
893/// in more places that cached info does not necessarily keep.
894void MemoryDependenceAnalysis::invalidateCachedPointerInfo(Value *Ptr) {
895 // If Ptr isn't really a pointer, just ignore it.
896 if (!isa<PointerType>(Ptr->getType())) return;
897 // Flush store info for the pointer.
898 RemoveCachedNonLocalPointerDependencies(ValueIsLoadPair(Ptr, false));
899 // Flush load info for the pointer.
900 RemoveCachedNonLocalPointerDependencies(ValueIsLoadPair(Ptr, true));
901}
902
Owen Anderson78e02f72007-07-06 23:14:35 +0000903/// removeInstruction - Remove an instruction from the dependence analysis,
904/// updating the dependence of instructions that previously depended on it.
Owen Anderson642a9e32007-08-08 22:26:03 +0000905/// This method attempts to keep the cache coherent using the reverse map.
Chris Lattner5f589dc2008-11-28 22:04:47 +0000906void MemoryDependenceAnalysis::removeInstruction(Instruction *RemInst) {
Chris Lattner5f589dc2008-11-28 22:04:47 +0000907 // Walk through the Non-local dependencies, removing this one as the value
908 // for any cached queries.
Chris Lattnerf68f3102008-11-30 02:28:25 +0000909 NonLocalDepMapType::iterator NLDI = NonLocalDeps.find(RemInst);
910 if (NLDI != NonLocalDeps.end()) {
Chris Lattnerbf145d62008-12-01 01:15:42 +0000911 NonLocalDepInfo &BlockMap = NLDI->second.first;
Chris Lattner25f4b2b2008-11-30 02:30:50 +0000912 for (NonLocalDepInfo::iterator DI = BlockMap.begin(), DE = BlockMap.end();
913 DI != DE; ++DI)
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000914 if (Instruction *Inst = DI->second.getInst())
Chris Lattnerd44745d2008-12-07 18:39:13 +0000915 RemoveFromReverseMap(ReverseNonLocalDeps, Inst, RemInst);
Chris Lattnerf68f3102008-11-30 02:28:25 +0000916 NonLocalDeps.erase(NLDI);
917 }
Owen Anderson5fc4aba2007-12-08 01:37:09 +0000918
Chris Lattner5f589dc2008-11-28 22:04:47 +0000919 // If we have a cached local dependence query for this instruction, remove it.
Chris Lattnerbaad8882008-11-28 22:28:27 +0000920 //
Chris Lattner39f372e2008-11-29 01:43:36 +0000921 LocalDepMapType::iterator LocalDepEntry = LocalDeps.find(RemInst);
922 if (LocalDepEntry != LocalDeps.end()) {
Chris Lattner125ce362008-11-30 01:09:30 +0000923 // Remove us from DepInst's reverse set now that the local dep info is gone.
Chris Lattnerd44745d2008-12-07 18:39:13 +0000924 if (Instruction *Inst = LocalDepEntry->second.getInst())
925 RemoveFromReverseMap(ReverseLocalDeps, Inst, RemInst);
Chris Lattner125ce362008-11-30 01:09:30 +0000926
Chris Lattnerbaad8882008-11-28 22:28:27 +0000927 // Remove this local dependency info.
Chris Lattner39f372e2008-11-29 01:43:36 +0000928 LocalDeps.erase(LocalDepEntry);
Chris Lattner6290f5c2008-12-07 08:50:20 +0000929 }
930
931 // If we have any cached pointer dependencies on this instruction, remove
932 // them. If the instruction has non-pointer type, then it can't be a pointer
933 // base.
934
935 // Remove it from both the load info and the store info. The instruction
936 // can't be in either of these maps if it is non-pointer.
937 if (isa<PointerType>(RemInst->getType())) {
938 RemoveCachedNonLocalPointerDependencies(ValueIsLoadPair(RemInst, false));
939 RemoveCachedNonLocalPointerDependencies(ValueIsLoadPair(RemInst, true));
940 }
Chris Lattnerbaad8882008-11-28 22:28:27 +0000941
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000942 // Loop over all of the things that depend on the instruction we're removing.
943 //
Chris Lattner4f8c18c2008-11-29 23:30:39 +0000944 SmallVector<std::pair<Instruction*, Instruction*>, 8> ReverseDepsToAdd;
Chris Lattner0655f732008-12-07 18:42:51 +0000945
946 // If we find RemInst as a clobber or Def in any of the maps for other values,
947 // we need to replace its entry with a dirty version of the instruction after
948 // it. If RemInst is a terminator, we use a null dirty value.
949 //
950 // Using a dirty version of the instruction after RemInst saves having to scan
951 // the entire block to get to this point.
952 MemDepResult NewDirtyVal;
953 if (!RemInst->isTerminator())
954 NewDirtyVal = MemDepResult::getDirty(++BasicBlock::iterator(RemInst));
Chris Lattner4f8c18c2008-11-29 23:30:39 +0000955
Chris Lattner8c465272008-11-29 09:20:15 +0000956 ReverseDepMapType::iterator ReverseDepIt = ReverseLocalDeps.find(RemInst);
957 if (ReverseDepIt != ReverseLocalDeps.end()) {
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000958 SmallPtrSet<Instruction*, 4> &ReverseDeps = ReverseDepIt->second;
Chris Lattner6290f5c2008-12-07 08:50:20 +0000959 // RemInst can't be the terminator if it has local stuff depending on it.
Chris Lattner125ce362008-11-30 01:09:30 +0000960 assert(!ReverseDeps.empty() && !isa<TerminatorInst>(RemInst) &&
961 "Nothing can locally depend on a terminator");
962
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000963 for (SmallPtrSet<Instruction*, 4>::iterator I = ReverseDeps.begin(),
964 E = ReverseDeps.end(); I != E; ++I) {
965 Instruction *InstDependingOnRemInst = *I;
Chris Lattnerf68f3102008-11-30 02:28:25 +0000966 assert(InstDependingOnRemInst != RemInst &&
967 "Already removed our local dep info");
Chris Lattner125ce362008-11-30 01:09:30 +0000968
Chris Lattner0655f732008-12-07 18:42:51 +0000969 LocalDeps[InstDependingOnRemInst] = NewDirtyVal;
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000970
Chris Lattner125ce362008-11-30 01:09:30 +0000971 // Make sure to remember that new things depend on NewDepInst.
Chris Lattner0655f732008-12-07 18:42:51 +0000972 assert(NewDirtyVal.getInst() && "There is no way something else can have "
973 "a local dep on this if it is a terminator!");
974 ReverseDepsToAdd.push_back(std::make_pair(NewDirtyVal.getInst(),
Chris Lattner125ce362008-11-30 01:09:30 +0000975 InstDependingOnRemInst));
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000976 }
Chris Lattner4f8c18c2008-11-29 23:30:39 +0000977
978 ReverseLocalDeps.erase(ReverseDepIt);
979
980 // Add new reverse deps after scanning the set, to avoid invalidating the
981 // 'ReverseDeps' reference.
982 while (!ReverseDepsToAdd.empty()) {
983 ReverseLocalDeps[ReverseDepsToAdd.back().first]
984 .insert(ReverseDepsToAdd.back().second);
985 ReverseDepsToAdd.pop_back();
986 }
Owen Anderson78e02f72007-07-06 23:14:35 +0000987 }
Owen Anderson4d13de42007-08-16 21:27:05 +0000988
Chris Lattner8c465272008-11-29 09:20:15 +0000989 ReverseDepIt = ReverseNonLocalDeps.find(RemInst);
990 if (ReverseDepIt != ReverseNonLocalDeps.end()) {
Chris Lattner6290f5c2008-12-07 08:50:20 +0000991 SmallPtrSet<Instruction*, 4> &Set = ReverseDepIt->second;
992 for (SmallPtrSet<Instruction*, 4>::iterator I = Set.begin(), E = Set.end();
Chris Lattnerf68f3102008-11-30 02:28:25 +0000993 I != E; ++I) {
994 assert(*I != RemInst && "Already removed NonLocalDep info for RemInst");
995
Chris Lattner4a69bad2008-11-30 02:52:26 +0000996 PerInstNLInfo &INLD = NonLocalDeps[*I];
Chris Lattner4a69bad2008-11-30 02:52:26 +0000997 // The information is now dirty!
Chris Lattnerbf145d62008-12-01 01:15:42 +0000998 INLD.second = true;
Chris Lattnerf68f3102008-11-30 02:28:25 +0000999
Chris Lattnerbf145d62008-12-01 01:15:42 +00001000 for (NonLocalDepInfo::iterator DI = INLD.first.begin(),
1001 DE = INLD.first.end(); DI != DE; ++DI) {
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +00001002 if (DI->second.getInst() != RemInst) continue;
Chris Lattnerf68f3102008-11-30 02:28:25 +00001003
1004 // Convert to a dirty entry for the subsequent instruction.
Chris Lattner0655f732008-12-07 18:42:51 +00001005 DI->second = NewDirtyVal;
1006
1007 if (Instruction *NextI = NewDirtyVal.getInst())
Chris Lattnerf68f3102008-11-30 02:28:25 +00001008 ReverseDepsToAdd.push_back(std::make_pair(NextI, *I));
Chris Lattnerf68f3102008-11-30 02:28:25 +00001009 }
1010 }
Chris Lattner4f8c18c2008-11-29 23:30:39 +00001011
1012 ReverseNonLocalDeps.erase(ReverseDepIt);
1013
Chris Lattner0ec48dd2008-11-29 22:02:15 +00001014 // Add new reverse deps after scanning the set, to avoid invalidating 'Set'
1015 while (!ReverseDepsToAdd.empty()) {
1016 ReverseNonLocalDeps[ReverseDepsToAdd.back().first]
1017 .insert(ReverseDepsToAdd.back().second);
1018 ReverseDepsToAdd.pop_back();
1019 }
Owen Anderson4d13de42007-08-16 21:27:05 +00001020 }
Owen Anderson5fc4aba2007-12-08 01:37:09 +00001021
Chris Lattner6290f5c2008-12-07 08:50:20 +00001022 // If the instruction is in ReverseNonLocalPtrDeps then it appears as a
1023 // value in the NonLocalPointerDeps info.
1024 ReverseNonLocalPtrDepTy::iterator ReversePtrDepIt =
1025 ReverseNonLocalPtrDeps.find(RemInst);
1026 if (ReversePtrDepIt != ReverseNonLocalPtrDeps.end()) {
1027 SmallPtrSet<void*, 4> &Set = ReversePtrDepIt->second;
1028 SmallVector<std::pair<Instruction*, ValueIsLoadPair>,8> ReversePtrDepsToAdd;
1029
1030 for (SmallPtrSet<void*, 4>::iterator I = Set.begin(), E = Set.end();
1031 I != E; ++I) {
1032 ValueIsLoadPair P;
1033 P.setFromOpaqueValue(*I);
1034 assert(P.getPointer() != RemInst &&
1035 "Already removed NonLocalPointerDeps info for RemInst");
1036
Chris Lattner11dcd8d2008-12-08 07:31:50 +00001037 NonLocalDepInfo &NLPDI = NonLocalPointerDeps[P].second;
1038
1039 // The cache is not valid for any specific block anymore.
Chris Lattner9e59c642008-12-15 03:35:32 +00001040 NonLocalPointerDeps[P].first = BBSkipFirstBlockPair();
Chris Lattner6290f5c2008-12-07 08:50:20 +00001041
Chris Lattner6290f5c2008-12-07 08:50:20 +00001042 // Update any entries for RemInst to use the instruction after it.
1043 for (NonLocalDepInfo::iterator DI = NLPDI.begin(), DE = NLPDI.end();
1044 DI != DE; ++DI) {
1045 if (DI->second.getInst() != RemInst) continue;
1046
1047 // Convert to a dirty entry for the subsequent instruction.
1048 DI->second = NewDirtyVal;
1049
1050 if (Instruction *NewDirtyInst = NewDirtyVal.getInst())
1051 ReversePtrDepsToAdd.push_back(std::make_pair(NewDirtyInst, P));
1052 }
Chris Lattner95900f22009-01-23 07:12:16 +00001053
1054 // Re-sort the NonLocalDepInfo. Changing the dirty entry to its
1055 // subsequent value may invalidate the sortedness.
1056 std::sort(NLPDI.begin(), NLPDI.end());
Chris Lattner6290f5c2008-12-07 08:50:20 +00001057 }
1058
1059 ReverseNonLocalPtrDeps.erase(ReversePtrDepIt);
1060
1061 while (!ReversePtrDepsToAdd.empty()) {
1062 ReverseNonLocalPtrDeps[ReversePtrDepsToAdd.back().first]
1063 .insert(ReversePtrDepsToAdd.back().second.getOpaqueValue());
1064 ReversePtrDepsToAdd.pop_back();
1065 }
1066 }
1067
1068
Chris Lattnerf68f3102008-11-30 02:28:25 +00001069 assert(!NonLocalDeps.count(RemInst) && "RemInst got reinserted?");
Chris Lattnerd777d402008-11-30 19:24:31 +00001070 AA->deleteValue(RemInst);
Chris Lattner5f589dc2008-11-28 22:04:47 +00001071 DEBUG(verifyRemoved(RemInst));
Owen Anderson78e02f72007-07-06 23:14:35 +00001072}
Chris Lattner729b2372008-11-29 21:25:10 +00001073/// verifyRemoved - Verify that the specified instruction does not occur
1074/// in our internal data structures.
1075void MemoryDependenceAnalysis::verifyRemoved(Instruction *D) const {
1076 for (LocalDepMapType::const_iterator I = LocalDeps.begin(),
1077 E = LocalDeps.end(); I != E; ++I) {
1078 assert(I->first != D && "Inst occurs in data structures");
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +00001079 assert(I->second.getInst() != D &&
Chris Lattner729b2372008-11-29 21:25:10 +00001080 "Inst occurs in data structures");
1081 }
1082
Chris Lattner6290f5c2008-12-07 08:50:20 +00001083 for (CachedNonLocalPointerInfo::const_iterator I =NonLocalPointerDeps.begin(),
1084 E = NonLocalPointerDeps.end(); I != E; ++I) {
1085 assert(I->first.getPointer() != D && "Inst occurs in NLPD map key");
Chris Lattner11dcd8d2008-12-08 07:31:50 +00001086 const NonLocalDepInfo &Val = I->second.second;
Chris Lattner6290f5c2008-12-07 08:50:20 +00001087 for (NonLocalDepInfo::const_iterator II = Val.begin(), E = Val.end();
1088 II != E; ++II)
1089 assert(II->second.getInst() != D && "Inst occurs as NLPD value");
1090 }
1091
Chris Lattner729b2372008-11-29 21:25:10 +00001092 for (NonLocalDepMapType::const_iterator I = NonLocalDeps.begin(),
1093 E = NonLocalDeps.end(); I != E; ++I) {
1094 assert(I->first != D && "Inst occurs in data structures");
Chris Lattner4a69bad2008-11-30 02:52:26 +00001095 const PerInstNLInfo &INLD = I->second;
Chris Lattnerbf145d62008-12-01 01:15:42 +00001096 for (NonLocalDepInfo::const_iterator II = INLD.first.begin(),
1097 EE = INLD.first.end(); II != EE; ++II)
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +00001098 assert(II->second.getInst() != D && "Inst occurs in data structures");
Chris Lattner729b2372008-11-29 21:25:10 +00001099 }
1100
1101 for (ReverseDepMapType::const_iterator I = ReverseLocalDeps.begin(),
Chris Lattnerf68f3102008-11-30 02:28:25 +00001102 E = ReverseLocalDeps.end(); I != E; ++I) {
1103 assert(I->first != D && "Inst occurs in data structures");
Chris Lattner729b2372008-11-29 21:25:10 +00001104 for (SmallPtrSet<Instruction*, 4>::const_iterator II = I->second.begin(),
1105 EE = I->second.end(); II != EE; ++II)
1106 assert(*II != D && "Inst occurs in data structures");
Chris Lattnerf68f3102008-11-30 02:28:25 +00001107 }
Chris Lattner729b2372008-11-29 21:25:10 +00001108
1109 for (ReverseDepMapType::const_iterator I = ReverseNonLocalDeps.begin(),
1110 E = ReverseNonLocalDeps.end();
Chris Lattnerf68f3102008-11-30 02:28:25 +00001111 I != E; ++I) {
1112 assert(I->first != D && "Inst occurs in data structures");
Chris Lattner729b2372008-11-29 21:25:10 +00001113 for (SmallPtrSet<Instruction*, 4>::const_iterator II = I->second.begin(),
1114 EE = I->second.end(); II != EE; ++II)
1115 assert(*II != D && "Inst occurs in data structures");
Chris Lattnerf68f3102008-11-30 02:28:25 +00001116 }
Chris Lattner6290f5c2008-12-07 08:50:20 +00001117
1118 for (ReverseNonLocalPtrDepTy::const_iterator
1119 I = ReverseNonLocalPtrDeps.begin(),
1120 E = ReverseNonLocalPtrDeps.end(); I != E; ++I) {
1121 assert(I->first != D && "Inst occurs in rev NLPD map");
1122
1123 for (SmallPtrSet<void*, 4>::const_iterator II = I->second.begin(),
1124 E = I->second.end(); II != E; ++II)
1125 assert(*II != ValueIsLoadPair(D, false).getOpaqueValue() &&
1126 *II != ValueIsLoadPair(D, true).getOpaqueValue() &&
1127 "Inst occurs in ReverseNonLocalPtrDeps map");
1128 }
1129
Chris Lattner729b2372008-11-29 21:25:10 +00001130}