blob: 2ac101e678d07c5a8b7f60d78196e99a0755529d [file] [log] [blame]
Owen Anderson78e02f72007-07-06 23:14:35 +00001//===- MemoryDependenceAnalysis.cpp - Mem Deps Implementation --*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Owen Anderson78e02f72007-07-06 23:14:35 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements an analysis that determines, for a given memory
11// operation, what preceding memory operations it depends on. It builds on
Owen Anderson80b1f092007-08-08 22:01:54 +000012// alias analysis information, and tries to provide a lazy, caching interface to
Owen Anderson78e02f72007-07-06 23:14:35 +000013// a common kind of alias information query.
14//
15//===----------------------------------------------------------------------===//
16
Chris Lattner0e575f42008-11-28 21:45:17 +000017#define DEBUG_TYPE "memdep"
Owen Anderson78e02f72007-07-06 23:14:35 +000018#include "llvm/Analysis/MemoryDependenceAnalysis.h"
19#include "llvm/Instructions.h"
Owen Andersonf6cec852009-03-09 05:12:38 +000020#include "llvm/IntrinsicInst.h"
Owen Anderson78e02f72007-07-06 23:14:35 +000021#include "llvm/Function.h"
22#include "llvm/Analysis/AliasAnalysis.h"
Chris 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 +000027using namespace llvm;
28
Chris Lattnerbf145d62008-12-01 01:15:42 +000029STATISTIC(NumCacheNonLocal, "Number of fully cached non-local responses");
30STATISTIC(NumCacheDirtyNonLocal, "Number of dirty cached non-local responses");
Chris Lattner0ec48dd2008-11-29 22:02:15 +000031STATISTIC(NumUncacheNonLocal, "Number of uncached non-local responses");
Chris Lattner6290f5c2008-12-07 08:50:20 +000032
33STATISTIC(NumCacheNonLocalPtr,
34 "Number of fully cached non-local ptr responses");
35STATISTIC(NumCacheDirtyNonLocalPtr,
36 "Number of cached, but dirty, non-local ptr responses");
37STATISTIC(NumUncacheNonLocalPtr,
38 "Number of uncached non-local ptr responses");
Chris Lattner11dcd8d2008-12-08 07:31:50 +000039STATISTIC(NumCacheCompleteNonLocalPtr,
40 "Number of block queries that were completely cached");
Chris Lattner6290f5c2008-12-07 08:50:20 +000041
Owen Anderson78e02f72007-07-06 23:14:35 +000042char MemoryDependenceAnalysis::ID = 0;
43
Owen Anderson78e02f72007-07-06 23:14:35 +000044// Register this pass...
Owen Anderson776ee1f2007-07-10 20:21:08 +000045static RegisterPass<MemoryDependenceAnalysis> X("memdep",
Chris Lattner0e575f42008-11-28 21:45:17 +000046 "Memory Dependence Analysis", false, true);
Owen Anderson78e02f72007-07-06 23:14:35 +000047
Chris Lattner4012fdd2008-12-09 06:28:49 +000048MemoryDependenceAnalysis::MemoryDependenceAnalysis()
49: FunctionPass(&ID), PredCache(0) {
50}
51MemoryDependenceAnalysis::~MemoryDependenceAnalysis() {
52}
53
54/// Clean up memory in between runs
55void MemoryDependenceAnalysis::releaseMemory() {
56 LocalDeps.clear();
57 NonLocalDeps.clear();
58 NonLocalPointerDeps.clear();
59 ReverseLocalDeps.clear();
60 ReverseNonLocalDeps.clear();
61 ReverseNonLocalPtrDeps.clear();
62 PredCache->clear();
63}
64
65
66
Owen Anderson78e02f72007-07-06 23:14:35 +000067/// getAnalysisUsage - Does not modify anything. It uses Alias Analysis.
68///
69void MemoryDependenceAnalysis::getAnalysisUsage(AnalysisUsage &AU) const {
70 AU.setPreservesAll();
71 AU.addRequiredTransitive<AliasAnalysis>();
Owen Anderson78e02f72007-07-06 23:14:35 +000072}
73
Chris Lattnerd777d402008-11-30 19:24:31 +000074bool MemoryDependenceAnalysis::runOnFunction(Function &) {
75 AA = &getAnalysis<AliasAnalysis>();
Chris Lattner4012fdd2008-12-09 06:28:49 +000076 if (PredCache == 0)
77 PredCache.reset(new PredIteratorCache());
Chris Lattnerd777d402008-11-30 19:24:31 +000078 return false;
79}
80
Chris Lattnerd44745d2008-12-07 18:39:13 +000081/// RemoveFromReverseMap - This is a helper function that removes Val from
82/// 'Inst's set in ReverseMap. If the set becomes empty, remove Inst's entry.
83template <typename KeyTy>
84static void RemoveFromReverseMap(DenseMap<Instruction*,
Chris Lattner6a0dcc12009-03-29 00:24:04 +000085 SmallPtrSet<KeyTy, 4> > &ReverseMap,
86 Instruction *Inst, KeyTy Val) {
87 typename DenseMap<Instruction*, SmallPtrSet<KeyTy, 4> >::iterator
Chris Lattnerd44745d2008-12-07 18:39:13 +000088 InstIt = ReverseMap.find(Inst);
89 assert(InstIt != ReverseMap.end() && "Reverse map out of sync?");
90 bool Found = InstIt->second.erase(Val);
91 assert(Found && "Invalid reverse map!"); Found=Found;
92 if (InstIt->second.empty())
93 ReverseMap.erase(InstIt);
94}
95
Chris Lattnerbf145d62008-12-01 01:15:42 +000096
Chris Lattner8ef57c52008-12-07 00:35:51 +000097/// getCallSiteDependencyFrom - Private helper for finding the local
98/// dependencies of a call site.
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +000099MemDepResult MemoryDependenceAnalysis::
Chris Lattner20d6f092008-12-09 21:19:42 +0000100getCallSiteDependencyFrom(CallSite CS, bool isReadOnlyCall,
101 BasicBlock::iterator ScanIt, BasicBlock *BB) {
Owen Anderson642a9e32007-08-08 22:26:03 +0000102 // Walk backwards through the block, looking for dependencies
Chris Lattner5391a1d2008-11-29 03:47:00 +0000103 while (ScanIt != BB->begin()) {
104 Instruction *Inst = --ScanIt;
Owen Anderson5f323202007-07-10 17:59:22 +0000105
106 // If this inst is a memory op, get the pointer it accessed
Chris Lattner00314b32008-11-29 09:15:21 +0000107 Value *Pointer = 0;
108 uint64_t PointerSize = 0;
109 if (StoreInst *S = dyn_cast<StoreInst>(Inst)) {
110 Pointer = S->getPointerOperand();
Dan Gohmanf5812132009-07-31 20:53:12 +0000111 PointerSize = AA->getTypeStoreSize(S->getOperand(0)->getType());
Chris Lattner00314b32008-11-29 09:15:21 +0000112 } else if (VAArgInst *V = dyn_cast<VAArgInst>(Inst)) {
113 Pointer = V->getOperand(0);
Dan Gohmanf5812132009-07-31 20:53:12 +0000114 PointerSize = AA->getTypeStoreSize(V->getType());
Chris Lattner00314b32008-11-29 09:15:21 +0000115 } else if (FreeInst *F = dyn_cast<FreeInst>(Inst)) {
116 Pointer = F->getPointerOperand();
Owen Anderson5f323202007-07-10 17:59:22 +0000117
118 // FreeInsts erase the entire structure
Chris Lattner6290f5c2008-12-07 08:50:20 +0000119 PointerSize = ~0ULL;
Chris Lattner00314b32008-11-29 09:15:21 +0000120 } else if (isa<CallInst>(Inst) || isa<InvokeInst>(Inst)) {
Owen Andersonf6cec852009-03-09 05:12:38 +0000121 // Debug intrinsics don't cause dependences.
Dale Johannesen497cb6f2009-03-11 21:13:01 +0000122 if (isa<DbgInfoIntrinsic>(Inst)) continue;
Chris Lattnerb51deb92008-12-05 21:04:20 +0000123 CallSite InstCS = CallSite::get(Inst);
124 // If these two calls do not interfere, look past it.
Chris Lattner20d6f092008-12-09 21:19:42 +0000125 switch (AA->getModRefInfo(CS, InstCS)) {
126 case AliasAnalysis::NoModRef:
127 // If the two calls don't interact (e.g. InstCS is readnone) keep
128 // scanning.
Chris Lattner00314b32008-11-29 09:15:21 +0000129 continue;
Chris Lattner20d6f092008-12-09 21:19:42 +0000130 case AliasAnalysis::Ref:
131 // If the two calls read the same memory locations and CS is a readonly
132 // function, then we have two cases: 1) the calls may not interfere with
133 // each other at all. 2) the calls may produce the same value. In case
134 // #1 we want to ignore the values, in case #2, we want to return Inst
135 // as a Def dependence. This allows us to CSE in cases like:
136 // X = strlen(P);
137 // memchr(...);
138 // Y = strlen(P); // Y = X
139 if (isReadOnlyCall) {
140 if (CS.getCalledFunction() != 0 &&
141 CS.getCalledFunction() == InstCS.getCalledFunction())
142 return MemDepResult::getDef(Inst);
143 // Ignore unrelated read/read call dependences.
144 continue;
145 }
146 // FALL THROUGH
147 default:
Chris Lattnerb51deb92008-12-05 21:04:20 +0000148 return MemDepResult::getClobber(Inst);
Chris Lattner20d6f092008-12-09 21:19:42 +0000149 }
Chris Lattnercfbb6342008-11-30 01:44:00 +0000150 } else {
151 // Non-memory instruction.
Owen Anderson202da142007-07-10 20:39:07 +0000152 continue;
Chris Lattnercfbb6342008-11-30 01:44:00 +0000153 }
Owen Anderson5f323202007-07-10 17:59:22 +0000154
Chris Lattnerb51deb92008-12-05 21:04:20 +0000155 if (AA->getModRefInfo(CS, Pointer, PointerSize) != AliasAnalysis::NoModRef)
156 return MemDepResult::getClobber(Inst);
Owen Anderson5f323202007-07-10 17:59:22 +0000157 }
158
Chris Lattner7ebcf032008-12-07 02:15:47 +0000159 // No dependence found. If this is the entry block of the function, it is a
160 // clobber, otherwise it is non-local.
161 if (BB != &BB->getParent()->getEntryBlock())
162 return MemDepResult::getNonLocal();
163 return MemDepResult::getClobber(ScanIt);
Owen Anderson5f323202007-07-10 17:59:22 +0000164}
165
Chris Lattnere79be942008-12-07 01:50:16 +0000166/// getPointerDependencyFrom - Return the instruction on which a memory
167/// location depends. If isLoad is true, this routine ignore may-aliases with
168/// read-only operations.
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000169MemDepResult MemoryDependenceAnalysis::
Chris Lattnere79be942008-12-07 01:50:16 +0000170getPointerDependencyFrom(Value *MemPtr, uint64_t MemSize, bool isLoad,
171 BasicBlock::iterator ScanIt, BasicBlock *BB) {
Chris Lattner7ebcf032008-12-07 02:15:47 +0000172
Chris Lattner6290f5c2008-12-07 08:50:20 +0000173 // Walk backwards through the basic block, looking for dependencies.
Chris Lattner5391a1d2008-11-29 03:47:00 +0000174 while (ScanIt != BB->begin()) {
175 Instruction *Inst = --ScanIt;
Chris Lattnera161ab02008-11-29 09:09:48 +0000176
Owen Andersonf6cec852009-03-09 05:12:38 +0000177 // Debug intrinsics don't cause dependences.
178 if (isa<DbgInfoIntrinsic>(Inst)) continue;
179
Chris Lattnercfbb6342008-11-30 01:44:00 +0000180 // Values depend on loads if the pointers are must aliased. This means that
181 // a load depends on another must aliased load from the same value.
Chris Lattnerb51deb92008-12-05 21:04:20 +0000182 if (LoadInst *LI = dyn_cast<LoadInst>(Inst)) {
Chris Lattnerb51deb92008-12-05 21:04:20 +0000183 Value *Pointer = LI->getPointerOperand();
Dan Gohmanf5812132009-07-31 20:53:12 +0000184 uint64_t PointerSize = AA->getTypeStoreSize(LI->getType());
Chris Lattnerb51deb92008-12-05 21:04:20 +0000185
186 // If we found a pointer, check if it could be the same as our pointer.
Chris Lattnera161ab02008-11-29 09:09:48 +0000187 AliasAnalysis::AliasResult R =
Chris Lattnerd777d402008-11-30 19:24:31 +0000188 AA->alias(Pointer, PointerSize, MemPtr, MemSize);
Chris Lattnera161ab02008-11-29 09:09:48 +0000189 if (R == AliasAnalysis::NoAlias)
190 continue;
191
192 // May-alias loads don't depend on each other without a dependence.
Chris Lattnere79be942008-12-07 01:50:16 +0000193 if (isLoad && R == AliasAnalysis::MayAlias)
Chris Lattnera161ab02008-11-29 09:09:48 +0000194 continue;
Chris Lattner6290f5c2008-12-07 08:50:20 +0000195 // Stores depend on may and must aliased loads, loads depend on must-alias
196 // loads.
Chris Lattnerb51deb92008-12-05 21:04:20 +0000197 return MemDepResult::getDef(Inst);
198 }
199
200 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
Chris Lattnerab9cf122009-05-25 21:28:56 +0000201 // If alias analysis can tell that this store is guaranteed to not modify
202 // the query pointer, ignore it. Use getModRefInfo to handle cases where
203 // the query pointer points to constant memory etc.
204 if (AA->getModRefInfo(SI, MemPtr, MemSize) == AliasAnalysis::NoModRef)
205 continue;
206
207 // Ok, this store might clobber the query pointer. Check to see if it is
208 // a must alias: in this case, we want to return this as a def.
Chris Lattnerb51deb92008-12-05 21:04:20 +0000209 Value *Pointer = SI->getPointerOperand();
Dan Gohmanf5812132009-07-31 20:53:12 +0000210 uint64_t PointerSize = AA->getTypeStoreSize(SI->getOperand(0)->getType());
Chris Lattnerab9cf122009-05-25 21:28:56 +0000211
Chris Lattnerb51deb92008-12-05 21:04:20 +0000212 // If we found a pointer, check if it could be the same as our pointer.
213 AliasAnalysis::AliasResult R =
214 AA->alias(Pointer, PointerSize, MemPtr, MemSize);
215
216 if (R == AliasAnalysis::NoAlias)
217 continue;
218 if (R == AliasAnalysis::MayAlias)
219 return MemDepResult::getClobber(Inst);
220 return MemDepResult::getDef(Inst);
Owen Anderson78e02f72007-07-06 23:14:35 +0000221 }
Chris Lattner237a8282008-11-30 01:39:32 +0000222
223 // If this is an allocation, and if we know that the accessed pointer is to
Chris Lattnerb51deb92008-12-05 21:04:20 +0000224 // the allocation, return Def. This means that there is no dependence and
Chris Lattner237a8282008-11-30 01:39:32 +0000225 // the access can be optimized based on that. For example, a load could
226 // turn into undef.
Chris Lattnera161ab02008-11-29 09:09:48 +0000227 if (AllocationInst *AI = dyn_cast<AllocationInst>(Inst)) {
Chris Lattner237a8282008-11-30 01:39:32 +0000228 Value *AccessPtr = MemPtr->getUnderlyingObject();
Owen Anderson78e02f72007-07-06 23:14:35 +0000229
Chris Lattner237a8282008-11-30 01:39:32 +0000230 if (AccessPtr == AI ||
Chris Lattnerd777d402008-11-30 19:24:31 +0000231 AA->alias(AI, 1, AccessPtr, 1) == AliasAnalysis::MustAlias)
Chris Lattnerb51deb92008-12-05 21:04:20 +0000232 return MemDepResult::getDef(AI);
Chris Lattner237a8282008-11-30 01:39:32 +0000233 continue;
Chris Lattnera161ab02008-11-29 09:09:48 +0000234 }
Chris Lattnera161ab02008-11-29 09:09:48 +0000235
Chris Lattnerb51deb92008-12-05 21:04:20 +0000236 // See if this instruction (e.g. a call or vaarg) mod/ref's the pointer.
Chris Lattner3579e442008-12-09 19:47:40 +0000237 switch (AA->getModRefInfo(Inst, MemPtr, MemSize)) {
238 case AliasAnalysis::NoModRef:
239 // If the call has no effect on the queried pointer, just ignore it.
Chris Lattner25a08142008-11-29 08:51:16 +0000240 continue;
Chris Lattner3579e442008-12-09 19:47:40 +0000241 case AliasAnalysis::Ref:
242 // If the call is known to never store to the pointer, and if this is a
243 // load query, we can safely ignore it (scan past it).
244 if (isLoad)
245 continue;
246 // FALL THROUGH.
247 default:
248 // Otherwise, there is a potential dependence. Return a clobber.
249 return MemDepResult::getClobber(Inst);
250 }
Owen Anderson78e02f72007-07-06 23:14:35 +0000251 }
252
Chris Lattner7ebcf032008-12-07 02:15:47 +0000253 // No dependence found. If this is the entry block of the function, it is a
254 // clobber, otherwise it is non-local.
255 if (BB != &BB->getParent()->getEntryBlock())
256 return MemDepResult::getNonLocal();
257 return MemDepResult::getClobber(ScanIt);
Owen Anderson78e02f72007-07-06 23:14:35 +0000258}
259
Chris Lattner5391a1d2008-11-29 03:47:00 +0000260/// getDependency - Return the instruction on which a memory operation
261/// depends.
262MemDepResult MemoryDependenceAnalysis::getDependency(Instruction *QueryInst) {
263 Instruction *ScanPos = QueryInst;
264
265 // Check for a cached result
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000266 MemDepResult &LocalCache = LocalDeps[QueryInst];
Chris Lattner5391a1d2008-11-29 03:47:00 +0000267
Chris Lattner0ec48dd2008-11-29 22:02:15 +0000268 // If the cached entry is non-dirty, just return it. Note that this depends
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000269 // on MemDepResult's default constructing to 'dirty'.
270 if (!LocalCache.isDirty())
271 return LocalCache;
Chris Lattner5391a1d2008-11-29 03:47:00 +0000272
273 // Otherwise, if we have a dirty entry, we know we can start the scan at that
274 // instruction, which may save us some work.
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000275 if (Instruction *Inst = LocalCache.getInst()) {
Chris Lattner5391a1d2008-11-29 03:47:00 +0000276 ScanPos = Inst;
Chris Lattner4a69bad2008-11-30 02:52:26 +0000277
Chris Lattnerd44745d2008-12-07 18:39:13 +0000278 RemoveFromReverseMap(ReverseLocalDeps, Inst, QueryInst);
Chris Lattner4a69bad2008-11-30 02:52:26 +0000279 }
Chris Lattner5391a1d2008-11-29 03:47:00 +0000280
Chris Lattnere79be942008-12-07 01:50:16 +0000281 BasicBlock *QueryParent = QueryInst->getParent();
282
283 Value *MemPtr = 0;
284 uint64_t MemSize = 0;
285
Chris Lattner5391a1d2008-11-29 03:47:00 +0000286 // Do the scan.
Chris Lattnere79be942008-12-07 01:50:16 +0000287 if (BasicBlock::iterator(QueryInst) == QueryParent->begin()) {
Chris Lattner7ebcf032008-12-07 02:15:47 +0000288 // No dependence found. If this is the entry block of the function, it is a
289 // clobber, otherwise it is non-local.
290 if (QueryParent != &QueryParent->getParent()->getEntryBlock())
291 LocalCache = MemDepResult::getNonLocal();
292 else
293 LocalCache = MemDepResult::getClobber(QueryInst);
Chris Lattnere79be942008-12-07 01:50:16 +0000294 } else if (StoreInst *SI = dyn_cast<StoreInst>(QueryInst)) {
295 // If this is a volatile store, don't mess around with it. Just return the
296 // previous instruction as a clobber.
297 if (SI->isVolatile())
298 LocalCache = MemDepResult::getClobber(--BasicBlock::iterator(ScanPos));
299 else {
300 MemPtr = SI->getPointerOperand();
Dan Gohmanf5812132009-07-31 20:53:12 +0000301 MemSize = AA->getTypeStoreSize(SI->getOperand(0)->getType());
Chris Lattnere79be942008-12-07 01:50:16 +0000302 }
303 } else if (LoadInst *LI = dyn_cast<LoadInst>(QueryInst)) {
304 // If this is a volatile load, don't mess around with it. Just return the
305 // previous instruction as a clobber.
306 if (LI->isVolatile())
307 LocalCache = MemDepResult::getClobber(--BasicBlock::iterator(ScanPos));
308 else {
309 MemPtr = LI->getPointerOperand();
Dan Gohmanf5812132009-07-31 20:53:12 +0000310 MemSize = AA->getTypeStoreSize(LI->getType());
Chris Lattnere79be942008-12-07 01:50:16 +0000311 }
312 } else if (isa<CallInst>(QueryInst) || isa<InvokeInst>(QueryInst)) {
Chris Lattner20d6f092008-12-09 21:19:42 +0000313 CallSite QueryCS = CallSite::get(QueryInst);
314 bool isReadOnly = AA->onlyReadsMemory(QueryCS);
315 LocalCache = getCallSiteDependencyFrom(QueryCS, isReadOnly, ScanPos,
Chris Lattnere79be942008-12-07 01:50:16 +0000316 QueryParent);
317 } else if (FreeInst *FI = dyn_cast<FreeInst>(QueryInst)) {
318 MemPtr = FI->getPointerOperand();
319 // FreeInsts erase the entire structure, not just a field.
320 MemSize = ~0UL;
321 } else {
322 // Non-memory instruction.
323 LocalCache = MemDepResult::getClobber(--BasicBlock::iterator(ScanPos));
324 }
325
326 // If we need to do a pointer scan, make it happen.
327 if (MemPtr)
328 LocalCache = getPointerDependencyFrom(MemPtr, MemSize,
329 isa<LoadInst>(QueryInst),
330 ScanPos, QueryParent);
Chris Lattner5391a1d2008-11-29 03:47:00 +0000331
332 // Remember the result!
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000333 if (Instruction *I = LocalCache.getInst())
Chris Lattner8c465272008-11-29 09:20:15 +0000334 ReverseLocalDeps[I].insert(QueryInst);
Chris Lattner5391a1d2008-11-29 03:47:00 +0000335
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000336 return LocalCache;
Chris Lattner5391a1d2008-11-29 03:47:00 +0000337}
338
Chris Lattner12a7db32009-01-22 07:04:01 +0000339#ifndef NDEBUG
340/// AssertSorted - This method is used when -debug is specified to verify that
341/// cache arrays are properly kept sorted.
342static void AssertSorted(MemoryDependenceAnalysis::NonLocalDepInfo &Cache,
343 int Count = -1) {
344 if (Count == -1) Count = Cache.size();
345 if (Count == 0) return;
346
347 for (unsigned i = 1; i != unsigned(Count); ++i)
348 assert(Cache[i-1] <= Cache[i] && "Cache isn't sorted!");
349}
350#endif
351
Chris Lattner1559b362008-12-09 19:38:05 +0000352/// getNonLocalCallDependency - Perform a full dependency query for the
353/// specified call, returning the set of blocks that the value is
Chris Lattner37d041c2008-11-30 01:18:27 +0000354/// potentially live across. The returned set of results will include a
355/// "NonLocal" result for all blocks where the value is live across.
356///
Chris Lattner1559b362008-12-09 19:38:05 +0000357/// This method assumes the instruction returns a "NonLocal" dependency
Chris Lattner37d041c2008-11-30 01:18:27 +0000358/// within its own block.
359///
Chris Lattner1559b362008-12-09 19:38:05 +0000360/// This returns a reference to an internal data structure that may be
361/// invalidated on the next non-local query or when an instruction is
362/// removed. Clients must copy this data if they want it around longer than
363/// that.
Chris Lattnerbf145d62008-12-01 01:15:42 +0000364const MemoryDependenceAnalysis::NonLocalDepInfo &
Chris Lattner1559b362008-12-09 19:38:05 +0000365MemoryDependenceAnalysis::getNonLocalCallDependency(CallSite QueryCS) {
366 assert(getDependency(QueryCS.getInstruction()).isNonLocal() &&
367 "getNonLocalCallDependency should only be used on calls with non-local deps!");
368 PerInstNLInfo &CacheP = NonLocalDeps[QueryCS.getInstruction()];
Chris Lattnerbf145d62008-12-01 01:15:42 +0000369 NonLocalDepInfo &Cache = CacheP.first;
Chris Lattner37d041c2008-11-30 01:18:27 +0000370
371 /// DirtyBlocks - This is the set of blocks that need to be recomputed. In
372 /// the cached case, this can happen due to instructions being deleted etc. In
373 /// the uncached case, this starts out as the set of predecessors we care
374 /// about.
375 SmallVector<BasicBlock*, 32> DirtyBlocks;
376
377 if (!Cache.empty()) {
Chris Lattnerbf145d62008-12-01 01:15:42 +0000378 // Okay, we have a cache entry. If we know it is not dirty, just return it
379 // with no computation.
380 if (!CacheP.second) {
381 NumCacheNonLocal++;
382 return Cache;
383 }
384
Chris Lattner37d041c2008-11-30 01:18:27 +0000385 // If we already have a partially computed set of results, scan them to
Chris Lattnerbf145d62008-12-01 01:15:42 +0000386 // determine what is dirty, seeding our initial DirtyBlocks worklist.
387 for (NonLocalDepInfo::iterator I = Cache.begin(), E = Cache.end();
388 I != E; ++I)
389 if (I->second.isDirty())
390 DirtyBlocks.push_back(I->first);
Chris Lattner37d041c2008-11-30 01:18:27 +0000391
Chris Lattnerbf145d62008-12-01 01:15:42 +0000392 // Sort the cache so that we can do fast binary search lookups below.
393 std::sort(Cache.begin(), Cache.end());
Chris Lattner37d041c2008-11-30 01:18:27 +0000394
Chris Lattnerbf145d62008-12-01 01:15:42 +0000395 ++NumCacheDirtyNonLocal;
Chris Lattner37d041c2008-11-30 01:18:27 +0000396 //cerr << "CACHED CASE: " << DirtyBlocks.size() << " dirty: "
397 // << Cache.size() << " cached: " << *QueryInst;
398 } else {
399 // Seed DirtyBlocks with each of the preds of QueryInst's block.
Chris Lattner1559b362008-12-09 19:38:05 +0000400 BasicBlock *QueryBB = QueryCS.getInstruction()->getParent();
Chris Lattner511b36c2008-12-09 06:44:17 +0000401 for (BasicBlock **PI = PredCache->GetPreds(QueryBB); *PI; ++PI)
402 DirtyBlocks.push_back(*PI);
Chris Lattner37d041c2008-11-30 01:18:27 +0000403 NumUncacheNonLocal++;
404 }
405
Chris Lattner20d6f092008-12-09 21:19:42 +0000406 // isReadonlyCall - If this is a read-only call, we can be more aggressive.
407 bool isReadonlyCall = AA->onlyReadsMemory(QueryCS);
Chris Lattner9e59c642008-12-15 03:35:32 +0000408
Chris Lattnerbf145d62008-12-01 01:15:42 +0000409 SmallPtrSet<BasicBlock*, 64> Visited;
410
411 unsigned NumSortedEntries = Cache.size();
Chris Lattner12a7db32009-01-22 07:04:01 +0000412 DEBUG(AssertSorted(Cache));
Chris Lattnerbf145d62008-12-01 01:15:42 +0000413
Chris Lattner37d041c2008-11-30 01:18:27 +0000414 // Iterate while we still have blocks to update.
415 while (!DirtyBlocks.empty()) {
416 BasicBlock *DirtyBB = DirtyBlocks.back();
417 DirtyBlocks.pop_back();
418
Chris Lattnerbf145d62008-12-01 01:15:42 +0000419 // Already processed this block?
420 if (!Visited.insert(DirtyBB))
421 continue;
Chris Lattner37d041c2008-11-30 01:18:27 +0000422
Chris Lattnerbf145d62008-12-01 01:15:42 +0000423 // Do a binary search to see if we already have an entry for this block in
424 // the cache set. If so, find it.
Chris Lattner12a7db32009-01-22 07:04:01 +0000425 DEBUG(AssertSorted(Cache, NumSortedEntries));
Chris Lattnerbf145d62008-12-01 01:15:42 +0000426 NonLocalDepInfo::iterator Entry =
427 std::upper_bound(Cache.begin(), Cache.begin()+NumSortedEntries,
428 std::make_pair(DirtyBB, MemDepResult()));
Duncan Sands7050f3d2008-12-10 09:38:36 +0000429 if (Entry != Cache.begin() && prior(Entry)->first == DirtyBB)
Chris Lattnerbf145d62008-12-01 01:15:42 +0000430 --Entry;
431
432 MemDepResult *ExistingResult = 0;
433 if (Entry != Cache.begin()+NumSortedEntries &&
434 Entry->first == DirtyBB) {
435 // If we already have an entry, and if it isn't already dirty, the block
436 // is done.
437 if (!Entry->second.isDirty())
438 continue;
439
440 // Otherwise, remember this slot so we can update the value.
441 ExistingResult = &Entry->second;
442 }
443
Chris Lattner37d041c2008-11-30 01:18:27 +0000444 // If the dirty entry has a pointer, start scanning from it so we don't have
445 // to rescan the entire block.
446 BasicBlock::iterator ScanPos = DirtyBB->end();
Chris Lattnerbf145d62008-12-01 01:15:42 +0000447 if (ExistingResult) {
448 if (Instruction *Inst = ExistingResult->getInst()) {
449 ScanPos = Inst;
Chris Lattnerbf145d62008-12-01 01:15:42 +0000450 // We're removing QueryInst's use of Inst.
Chris Lattner1559b362008-12-09 19:38:05 +0000451 RemoveFromReverseMap(ReverseNonLocalDeps, Inst,
452 QueryCS.getInstruction());
Chris Lattnerbf145d62008-12-01 01:15:42 +0000453 }
Chris Lattnerf68f3102008-11-30 02:28:25 +0000454 }
Chris Lattner37d041c2008-11-30 01:18:27 +0000455
Chris Lattner73ec3cd2008-11-30 01:26:32 +0000456 // Find out if this block has a local dependency for QueryInst.
Chris Lattnerd8dd9342008-12-07 01:21:14 +0000457 MemDepResult Dep;
Chris Lattnere79be942008-12-07 01:50:16 +0000458
Chris Lattner1559b362008-12-09 19:38:05 +0000459 if (ScanPos != DirtyBB->begin()) {
Chris Lattner20d6f092008-12-09 21:19:42 +0000460 Dep = getCallSiteDependencyFrom(QueryCS, isReadonlyCall,ScanPos, DirtyBB);
Chris Lattner1559b362008-12-09 19:38:05 +0000461 } else if (DirtyBB != &DirtyBB->getParent()->getEntryBlock()) {
462 // No dependence found. If this is the entry block of the function, it is
463 // a clobber, otherwise it is non-local.
464 Dep = MemDepResult::getNonLocal();
Chris Lattnere79be942008-12-07 01:50:16 +0000465 } else {
Chris Lattner1559b362008-12-09 19:38:05 +0000466 Dep = MemDepResult::getClobber(ScanPos);
Chris Lattnere79be942008-12-07 01:50:16 +0000467 }
468
Chris Lattnerbf145d62008-12-01 01:15:42 +0000469 // If we had a dirty entry for the block, update it. Otherwise, just add
470 // a new entry.
471 if (ExistingResult)
472 *ExistingResult = Dep;
473 else
474 Cache.push_back(std::make_pair(DirtyBB, Dep));
475
Chris Lattner37d041c2008-11-30 01:18:27 +0000476 // If the block has a dependency (i.e. it isn't completely transparent to
Chris Lattnerbf145d62008-12-01 01:15:42 +0000477 // the value), remember the association!
478 if (!Dep.isNonLocal()) {
Chris Lattner37d041c2008-11-30 01:18:27 +0000479 // Keep the ReverseNonLocalDeps map up to date so we can efficiently
480 // update this when we remove instructions.
Chris Lattnerbf145d62008-12-01 01:15:42 +0000481 if (Instruction *Inst = Dep.getInst())
Chris Lattner1559b362008-12-09 19:38:05 +0000482 ReverseNonLocalDeps[Inst].insert(QueryCS.getInstruction());
Chris Lattnerbf145d62008-12-01 01:15:42 +0000483 } else {
Chris Lattner37d041c2008-11-30 01:18:27 +0000484
Chris Lattnerbf145d62008-12-01 01:15:42 +0000485 // If the block *is* completely transparent to the load, we need to check
486 // the predecessors of this block. Add them to our worklist.
Chris Lattner511b36c2008-12-09 06:44:17 +0000487 for (BasicBlock **PI = PredCache->GetPreds(DirtyBB); *PI; ++PI)
488 DirtyBlocks.push_back(*PI);
Chris Lattnerbf145d62008-12-01 01:15:42 +0000489 }
Chris Lattner37d041c2008-11-30 01:18:27 +0000490 }
491
Chris Lattnerbf145d62008-12-01 01:15:42 +0000492 return Cache;
Chris Lattner37d041c2008-11-30 01:18:27 +0000493}
494
Chris Lattner7ebcf032008-12-07 02:15:47 +0000495/// getNonLocalPointerDependency - Perform a full dependency query for an
496/// access to the specified (non-volatile) memory location, returning the
497/// set of instructions that either define or clobber the value.
498///
499/// This method assumes the pointer has a "NonLocal" dependency within its
500/// own block.
501///
502void MemoryDependenceAnalysis::
503getNonLocalPointerDependency(Value *Pointer, bool isLoad, BasicBlock *FromBB,
504 SmallVectorImpl<NonLocalDepEntry> &Result) {
Chris Lattner3f7eb5b2008-12-07 18:45:15 +0000505 assert(isa<PointerType>(Pointer->getType()) &&
506 "Can't get pointer deps of a non-pointer!");
Chris Lattner9a193fd2008-12-07 02:56:57 +0000507 Result.clear();
508
Chris Lattner7ebcf032008-12-07 02:15:47 +0000509 // We know that the pointer value is live into FromBB find the def/clobbers
510 // from presecessors.
Chris Lattner7ebcf032008-12-07 02:15:47 +0000511 const Type *EltTy = cast<PointerType>(Pointer->getType())->getElementType();
Dan Gohmanf5812132009-07-31 20:53:12 +0000512 uint64_t PointeeSize = AA->getTypeStoreSize(EltTy);
Chris Lattner7ebcf032008-12-07 02:15:47 +0000513
Chris Lattner9e59c642008-12-15 03:35:32 +0000514 // This is the set of blocks we've inspected, and the pointer we consider in
515 // each block. Because of critical edges, we currently bail out if querying
516 // a block with multiple different pointers. This can happen during PHI
517 // translation.
518 DenseMap<BasicBlock*, Value*> Visited;
519 if (!getNonLocalPointerDepFromBB(Pointer, PointeeSize, isLoad, FromBB,
520 Result, Visited, true))
521 return;
Chris Lattner3af23f82008-12-15 04:58:29 +0000522 Result.clear();
Chris Lattner9e59c642008-12-15 03:35:32 +0000523 Result.push_back(std::make_pair(FromBB,
524 MemDepResult::getClobber(FromBB->begin())));
Chris Lattner9a193fd2008-12-07 02:56:57 +0000525}
526
Chris Lattner9863c3f2008-12-09 07:47:11 +0000527/// GetNonLocalInfoForBlock - Compute the memdep value for BB with
528/// Pointer/PointeeSize using either cached information in Cache or by doing a
529/// lookup (which may use dirty cache info if available). If we do a lookup,
530/// add the result to the cache.
531MemDepResult MemoryDependenceAnalysis::
532GetNonLocalInfoForBlock(Value *Pointer, uint64_t PointeeSize,
533 bool isLoad, BasicBlock *BB,
534 NonLocalDepInfo *Cache, unsigned NumSortedEntries) {
535
536 // Do a binary search to see if we already have an entry for this block in
537 // the cache set. If so, find it.
538 NonLocalDepInfo::iterator Entry =
539 std::upper_bound(Cache->begin(), Cache->begin()+NumSortedEntries,
540 std::make_pair(BB, MemDepResult()));
Duncan Sands7050f3d2008-12-10 09:38:36 +0000541 if (Entry != Cache->begin() && prior(Entry)->first == BB)
Chris Lattner9863c3f2008-12-09 07:47:11 +0000542 --Entry;
543
544 MemDepResult *ExistingResult = 0;
545 if (Entry != Cache->begin()+NumSortedEntries && Entry->first == BB)
546 ExistingResult = &Entry->second;
547
548 // If we have a cached entry, and it is non-dirty, use it as the value for
549 // this dependency.
550 if (ExistingResult && !ExistingResult->isDirty()) {
551 ++NumCacheNonLocalPtr;
552 return *ExistingResult;
553 }
554
555 // Otherwise, we have to scan for the value. If we have a dirty cache
556 // entry, start scanning from its position, otherwise we scan from the end
557 // of the block.
558 BasicBlock::iterator ScanPos = BB->end();
559 if (ExistingResult && ExistingResult->getInst()) {
560 assert(ExistingResult->getInst()->getParent() == BB &&
561 "Instruction invalidated?");
562 ++NumCacheDirtyNonLocalPtr;
563 ScanPos = ExistingResult->getInst();
564
565 // Eliminating the dirty entry from 'Cache', so update the reverse info.
566 ValueIsLoadPair CacheKey(Pointer, isLoad);
Chris Lattner6a0dcc12009-03-29 00:24:04 +0000567 RemoveFromReverseMap(ReverseNonLocalPtrDeps, ScanPos, CacheKey);
Chris Lattner9863c3f2008-12-09 07:47:11 +0000568 } else {
569 ++NumUncacheNonLocalPtr;
570 }
571
572 // Scan the block for the dependency.
573 MemDepResult Dep = getPointerDependencyFrom(Pointer, PointeeSize, isLoad,
574 ScanPos, BB);
575
576 // If we had a dirty entry for the block, update it. Otherwise, just add
577 // a new entry.
578 if (ExistingResult)
579 *ExistingResult = Dep;
580 else
581 Cache->push_back(std::make_pair(BB, Dep));
582
583 // If the block has a dependency (i.e. it isn't completely transparent to
584 // the value), remember the reverse association because we just added it
585 // to Cache!
586 if (Dep.isNonLocal())
587 return Dep;
588
589 // Keep the ReverseNonLocalPtrDeps map up to date so we can efficiently
590 // update MemDep when we remove instructions.
591 Instruction *Inst = Dep.getInst();
592 assert(Inst && "Didn't depend on anything?");
593 ValueIsLoadPair CacheKey(Pointer, isLoad);
Chris Lattner6a0dcc12009-03-29 00:24:04 +0000594 ReverseNonLocalPtrDeps[Inst].insert(CacheKey);
Chris Lattner9863c3f2008-12-09 07:47:11 +0000595 return Dep;
596}
597
Chris Lattnera2f55dd2009-07-13 17:20:05 +0000598/// SortNonLocalDepInfoCache - Sort the a NonLocalDepInfo cache, given a certain
599/// number of elements in the array that are already properly ordered. This is
600/// optimized for the case when only a few entries are added.
601static void
602SortNonLocalDepInfoCache(MemoryDependenceAnalysis::NonLocalDepInfo &Cache,
603 unsigned NumSortedEntries) {
604 switch (Cache.size() - NumSortedEntries) {
605 case 0:
606 // done, no new entries.
607 break;
608 case 2: {
609 // Two new entries, insert the last one into place.
610 MemoryDependenceAnalysis::NonLocalDepEntry Val = Cache.back();
611 Cache.pop_back();
612 MemoryDependenceAnalysis::NonLocalDepInfo::iterator Entry =
613 std::upper_bound(Cache.begin(), Cache.end()-1, Val);
614 Cache.insert(Entry, Val);
615 // FALL THROUGH.
616 }
617 case 1:
618 // One new entry, Just insert the new value at the appropriate position.
619 if (Cache.size() != 1) {
620 MemoryDependenceAnalysis::NonLocalDepEntry Val = Cache.back();
621 Cache.pop_back();
622 MemoryDependenceAnalysis::NonLocalDepInfo::iterator Entry =
623 std::upper_bound(Cache.begin(), Cache.end(), Val);
624 Cache.insert(Entry, Val);
625 }
626 break;
627 default:
628 // Added many values, do a full scale sort.
629 std::sort(Cache.begin(), Cache.end());
630 break;
631 }
632}
633
Chris Lattner9863c3f2008-12-09 07:47:11 +0000634
Chris Lattner9e59c642008-12-15 03:35:32 +0000635/// getNonLocalPointerDepFromBB - Perform a dependency query based on
636/// pointer/pointeesize starting at the end of StartBB. Add any clobber/def
637/// results to the results vector and keep track of which blocks are visited in
638/// 'Visited'.
639///
640/// This has special behavior for the first block queries (when SkipFirstBlock
641/// is true). In this special case, it ignores the contents of the specified
642/// block and starts returning dependence info for its predecessors.
643///
644/// This function returns false on success, or true to indicate that it could
645/// not compute dependence information for some reason. This should be treated
646/// as a clobber dependence on the first instruction in the predecessor block.
647bool MemoryDependenceAnalysis::
Chris Lattner9863c3f2008-12-09 07:47:11 +0000648getNonLocalPointerDepFromBB(Value *Pointer, uint64_t PointeeSize,
649 bool isLoad, BasicBlock *StartBB,
650 SmallVectorImpl<NonLocalDepEntry> &Result,
Chris Lattner9e59c642008-12-15 03:35:32 +0000651 DenseMap<BasicBlock*, Value*> &Visited,
652 bool SkipFirstBlock) {
653
Chris Lattner6290f5c2008-12-07 08:50:20 +0000654 // Look up the cached info for Pointer.
655 ValueIsLoadPair CacheKey(Pointer, isLoad);
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000656
Chris Lattner9e59c642008-12-15 03:35:32 +0000657 std::pair<BBSkipFirstBlockPair, NonLocalDepInfo> *CacheInfo =
658 &NonLocalPointerDeps[CacheKey];
659 NonLocalDepInfo *Cache = &CacheInfo->second;
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000660
661 // If we have valid cached information for exactly the block we are
662 // investigating, just return it with no recomputation.
Chris Lattner9e59c642008-12-15 03:35:32 +0000663 if (CacheInfo->first == BBSkipFirstBlockPair(StartBB, SkipFirstBlock)) {
Chris Lattnerf4789512008-12-16 07:10:09 +0000664 // We have a fully cached result for this query then we can just return the
665 // cached results and populate the visited set. However, we have to verify
666 // that we don't already have conflicting results for these blocks. Check
667 // to ensure that if a block in the results set is in the visited set that
668 // it was for the same pointer query.
669 if (!Visited.empty()) {
670 for (NonLocalDepInfo::iterator I = Cache->begin(), E = Cache->end();
671 I != E; ++I) {
672 DenseMap<BasicBlock*, Value*>::iterator VI = Visited.find(I->first);
673 if (VI == Visited.end() || VI->second == Pointer) continue;
674
675 // We have a pointer mismatch in a block. Just return clobber, saying
676 // that something was clobbered in this result. We could also do a
677 // non-fully cached query, but there is little point in doing this.
678 return true;
679 }
680 }
681
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000682 for (NonLocalDepInfo::iterator I = Cache->begin(), E = Cache->end();
Chris Lattnerf4789512008-12-16 07:10:09 +0000683 I != E; ++I) {
684 Visited.insert(std::make_pair(I->first, Pointer));
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000685 if (!I->second.isNonLocal())
686 Result.push_back(*I);
Chris Lattnerf4789512008-12-16 07:10:09 +0000687 }
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000688 ++NumCacheCompleteNonLocalPtr;
Chris Lattner9e59c642008-12-15 03:35:32 +0000689 return false;
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000690 }
691
692 // Otherwise, either this is a new block, a block with an invalid cache
693 // pointer or one that we're about to invalidate by putting more info into it
694 // than its valid cache info. If empty, the result will be valid cache info,
695 // otherwise it isn't.
Chris Lattner9e59c642008-12-15 03:35:32 +0000696 if (Cache->empty())
697 CacheInfo->first = BBSkipFirstBlockPair(StartBB, SkipFirstBlock);
698 else
699 CacheInfo->first = BBSkipFirstBlockPair();
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000700
701 SmallVector<BasicBlock*, 32> Worklist;
702 Worklist.push_back(StartBB);
Chris Lattner6290f5c2008-12-07 08:50:20 +0000703
704 // Keep track of the entries that we know are sorted. Previously cached
705 // entries will all be sorted. The entries we add we only sort on demand (we
706 // don't insert every element into its sorted position). We know that we
707 // won't get any reuse from currently inserted values, because we don't
708 // revisit blocks after we insert info for them.
709 unsigned NumSortedEntries = Cache->size();
Chris Lattner12a7db32009-01-22 07:04:01 +0000710 DEBUG(AssertSorted(*Cache));
Chris Lattner6290f5c2008-12-07 08:50:20 +0000711
Chris Lattner7ebcf032008-12-07 02:15:47 +0000712 while (!Worklist.empty()) {
Chris Lattner9a193fd2008-12-07 02:56:57 +0000713 BasicBlock *BB = Worklist.pop_back_val();
Chris Lattner7ebcf032008-12-07 02:15:47 +0000714
Chris Lattner65633712008-12-09 07:52:59 +0000715 // Skip the first block if we have it.
Chris Lattner9e59c642008-12-15 03:35:32 +0000716 if (!SkipFirstBlock) {
Chris Lattner65633712008-12-09 07:52:59 +0000717 // Analyze the dependency of *Pointer in FromBB. See if we already have
718 // been here.
Chris Lattner9e59c642008-12-15 03:35:32 +0000719 assert(Visited.count(BB) && "Should check 'visited' before adding to WL");
Chris Lattner6290f5c2008-12-07 08:50:20 +0000720
Chris Lattner65633712008-12-09 07:52:59 +0000721 // Get the dependency info for Pointer in BB. If we have cached
722 // information, we will use it, otherwise we compute it.
Chris Lattner12a7db32009-01-22 07:04:01 +0000723 DEBUG(AssertSorted(*Cache, NumSortedEntries));
Chris Lattner65633712008-12-09 07:52:59 +0000724 MemDepResult Dep = GetNonLocalInfoForBlock(Pointer, PointeeSize, isLoad,
725 BB, Cache, NumSortedEntries);
726
727 // If we got a Def or Clobber, add this to the list of results.
728 if (!Dep.isNonLocal()) {
729 Result.push_back(NonLocalDepEntry(BB, Dep));
730 continue;
731 }
Chris Lattner7ebcf032008-12-07 02:15:47 +0000732 }
733
Chris Lattner9e59c642008-12-15 03:35:32 +0000734 // If 'Pointer' is an instruction defined in this block, then we need to do
735 // phi translation to change it into a value live in the predecessor block.
736 // If phi translation fails, then we can't continue dependence analysis.
737 Instruction *PtrInst = dyn_cast<Instruction>(Pointer);
738 bool NeedsPHITranslation = PtrInst && PtrInst->getParent() == BB;
739
740 // If no PHI translation is needed, just add all the predecessors of this
741 // block to scan them as well.
742 if (!NeedsPHITranslation) {
743 SkipFirstBlock = false;
744 for (BasicBlock **PI = PredCache->GetPreds(BB); *PI; ++PI) {
745 // Verify that we haven't looked at this block yet.
746 std::pair<DenseMap<BasicBlock*,Value*>::iterator, bool>
747 InsertRes = Visited.insert(std::make_pair(*PI, Pointer));
748 if (InsertRes.second) {
749 // First time we've looked at *PI.
750 Worklist.push_back(*PI);
751 continue;
752 }
753
754 // If we have seen this block before, but it was with a different
755 // pointer then we have a phi translation failure and we have to treat
756 // this as a clobber.
757 if (InsertRes.first->second != Pointer)
758 goto PredTranslationFailure;
759 }
760 continue;
761 }
762
763 // If we do need to do phi translation, then there are a bunch of different
764 // cases, because we have to find a Value* live in the predecessor block. We
765 // know that PtrInst is defined in this block at least.
Chris Lattner6fbc1962009-07-13 17:14:23 +0000766
767 // We may have added values to the cache list before this PHI translation.
768 // If so, we haven't done anything to ensure that the cache remains sorted.
769 // Sort it now (if needed) so that recursive invocations of
770 // getNonLocalPointerDepFromBB and other routines that could reuse the cache
771 // value will only see properly sorted cache arrays.
772 if (Cache && NumSortedEntries != Cache->size()) {
Chris Lattnera2f55dd2009-07-13 17:20:05 +0000773 SortNonLocalDepInfoCache(*Cache, NumSortedEntries);
Chris Lattner6fbc1962009-07-13 17:14:23 +0000774 NumSortedEntries = Cache->size();
775 }
Chris Lattner9e59c642008-12-15 03:35:32 +0000776
777 // If this is directly a PHI node, just use the incoming values for each
778 // pred as the phi translated version.
779 if (PHINode *PtrPHI = dyn_cast<PHINode>(PtrInst)) {
Chris Lattner6fbc1962009-07-13 17:14:23 +0000780 Cache = 0;
781
Chris Lattner12a7db32009-01-22 07:04:01 +0000782 for (BasicBlock **PI = PredCache->GetPreds(BB); *PI; ++PI) {
Chris Lattner9e59c642008-12-15 03:35:32 +0000783 BasicBlock *Pred = *PI;
784 Value *PredPtr = PtrPHI->getIncomingValueForBlock(Pred);
785
786 // Check to see if we have already visited this pred block with another
787 // pointer. If so, we can't do this lookup. This failure can occur
788 // with PHI translation when a critical edge exists and the PHI node in
789 // the successor translates to a pointer value different than the
790 // pointer the block was first analyzed with.
791 std::pair<DenseMap<BasicBlock*,Value*>::iterator, bool>
792 InsertRes = Visited.insert(std::make_pair(Pred, PredPtr));
793
794 if (!InsertRes.second) {
795 // If the predecessor was visited with PredPtr, then we already did
796 // the analysis and can ignore it.
797 if (InsertRes.first->second == PredPtr)
798 continue;
799
800 // Otherwise, the block was previously analyzed with a different
801 // pointer. We can't represent the result of this case, so we just
802 // treat this as a phi translation failure.
803 goto PredTranslationFailure;
804 }
Chris Lattner12a7db32009-01-22 07:04:01 +0000805
Chris Lattner12a7db32009-01-22 07:04:01 +0000806 // FIXME: it is entirely possible that PHI translating will end up with
807 // the same value. Consider PHI translating something like:
808 // X = phi [x, bb1], [y, bb2]. PHI translating for bb1 doesn't *need*
809 // to recurse here, pedantically speaking.
Chris Lattner9e59c642008-12-15 03:35:32 +0000810
811 // If we have a problem phi translating, fall through to the code below
812 // to handle the failure condition.
813 if (getNonLocalPointerDepFromBB(PredPtr, PointeeSize, isLoad, Pred,
814 Result, Visited))
815 goto PredTranslationFailure;
816 }
Chris Lattner6fbc1962009-07-13 17:14:23 +0000817
Chris Lattner9e59c642008-12-15 03:35:32 +0000818 // Refresh the CacheInfo/Cache pointer so that it isn't invalidated.
819 CacheInfo = &NonLocalPointerDeps[CacheKey];
820 Cache = &CacheInfo->second;
Chris Lattner12a7db32009-01-22 07:04:01 +0000821 NumSortedEntries = Cache->size();
Chris Lattnerb54bfc22009-01-23 00:27:03 +0000822
Chris Lattner9e59c642008-12-15 03:35:32 +0000823 // Since we did phi translation, the "Cache" set won't contain all of the
824 // results for the query. This is ok (we can still use it to accelerate
825 // specific block queries) but we can't do the fastpath "return all
826 // results from the set" Clear out the indicator for this.
827 CacheInfo->first = BBSkipFirstBlockPair();
828 SkipFirstBlock = false;
829 continue;
830 }
831
832 // TODO: BITCAST, GEP.
833
834 // cerr << "MEMDEP: Could not PHI translate: " << *Pointer;
835 // if (isa<BitCastInst>(PtrInst) || isa<GetElementPtrInst>(PtrInst))
836 // cerr << "OP:\t\t\t\t" << *PtrInst->getOperand(0);
837 PredTranslationFailure:
838
Chris Lattner95900f22009-01-23 07:12:16 +0000839 if (Cache == 0) {
840 // Refresh the CacheInfo/Cache pointer if it got invalidated.
841 CacheInfo = &NonLocalPointerDeps[CacheKey];
842 Cache = &CacheInfo->second;
843 NumSortedEntries = Cache->size();
Chris Lattner95900f22009-01-23 07:12:16 +0000844 }
Chris Lattner6fbc1962009-07-13 17:14:23 +0000845
Chris Lattner9e59c642008-12-15 03:35:32 +0000846 // Since we did phi translation, the "Cache" set won't contain all of the
847 // results for the query. This is ok (we can still use it to accelerate
848 // specific block queries) but we can't do the fastpath "return all
849 // results from the set" Clear out the indicator for this.
850 CacheInfo->first = BBSkipFirstBlockPair();
851
852 // If *nothing* works, mark the pointer as being clobbered by the first
853 // instruction in this block.
854 //
855 // If this is the magic first block, return this as a clobber of the whole
856 // incoming value. Since we can't phi translate to one of the predecessors,
857 // we have to bail out.
858 if (SkipFirstBlock)
859 return true;
860
861 for (NonLocalDepInfo::reverse_iterator I = Cache->rbegin(); ; ++I) {
862 assert(I != Cache->rend() && "Didn't find current block??");
863 if (I->first != BB)
864 continue;
865
866 assert(I->second.isNonLocal() &&
867 "Should only be here with transparent block");
868 I->second = MemDepResult::getClobber(BB->begin());
Chris Lattner6a0dcc12009-03-29 00:24:04 +0000869 ReverseNonLocalPtrDeps[BB->begin()].insert(CacheKey);
Chris Lattner9e59c642008-12-15 03:35:32 +0000870 Result.push_back(*I);
871 break;
Chris Lattner9a193fd2008-12-07 02:56:57 +0000872 }
Chris Lattner7ebcf032008-12-07 02:15:47 +0000873 }
Chris Lattner95900f22009-01-23 07:12:16 +0000874
Chris Lattner9863c3f2008-12-09 07:47:11 +0000875 // Okay, we're done now. If we added new values to the cache, re-sort it.
Chris Lattnera2f55dd2009-07-13 17:20:05 +0000876 SortNonLocalDepInfoCache(*Cache, NumSortedEntries);
Chris Lattner12a7db32009-01-22 07:04:01 +0000877 DEBUG(AssertSorted(*Cache));
Chris Lattner9e59c642008-12-15 03:35:32 +0000878 return false;
Chris Lattner6290f5c2008-12-07 08:50:20 +0000879}
880
881/// RemoveCachedNonLocalPointerDependencies - If P exists in
882/// CachedNonLocalPointerInfo, remove it.
883void MemoryDependenceAnalysis::
884RemoveCachedNonLocalPointerDependencies(ValueIsLoadPair P) {
885 CachedNonLocalPointerInfo::iterator It =
886 NonLocalPointerDeps.find(P);
887 if (It == NonLocalPointerDeps.end()) return;
888
889 // Remove all of the entries in the BB->val map. This involves removing
890 // instructions from the reverse map.
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000891 NonLocalDepInfo &PInfo = It->second.second;
Chris Lattner6290f5c2008-12-07 08:50:20 +0000892
893 for (unsigned i = 0, e = PInfo.size(); i != e; ++i) {
894 Instruction *Target = PInfo[i].second.getInst();
895 if (Target == 0) continue; // Ignore non-local dep results.
Chris Lattner5a45bf12008-12-09 22:45:32 +0000896 assert(Target->getParent() == PInfo[i].first);
Chris Lattner6290f5c2008-12-07 08:50:20 +0000897
898 // Eliminating the dirty entry from 'Cache', so update the reverse info.
Chris Lattner6a0dcc12009-03-29 00:24:04 +0000899 RemoveFromReverseMap(ReverseNonLocalPtrDeps, Target, P);
Chris Lattner6290f5c2008-12-07 08:50:20 +0000900 }
901
902 // Remove P from NonLocalPointerDeps (which deletes NonLocalDepInfo).
903 NonLocalPointerDeps.erase(It);
Chris Lattner7ebcf032008-12-07 02:15:47 +0000904}
905
906
Chris Lattnerbc99be12008-12-09 22:06:23 +0000907/// invalidateCachedPointerInfo - This method is used to invalidate cached
908/// information about the specified pointer, because it may be too
909/// conservative in memdep. This is an optional call that can be used when
910/// the client detects an equivalence between the pointer and some other
911/// value and replaces the other value with ptr. This can make Ptr available
912/// in more places that cached info does not necessarily keep.
913void MemoryDependenceAnalysis::invalidateCachedPointerInfo(Value *Ptr) {
914 // If Ptr isn't really a pointer, just ignore it.
915 if (!isa<PointerType>(Ptr->getType())) return;
916 // Flush store info for the pointer.
917 RemoveCachedNonLocalPointerDependencies(ValueIsLoadPair(Ptr, false));
918 // Flush load info for the pointer.
919 RemoveCachedNonLocalPointerDependencies(ValueIsLoadPair(Ptr, true));
920}
921
Owen Anderson78e02f72007-07-06 23:14:35 +0000922/// removeInstruction - Remove an instruction from the dependence analysis,
923/// updating the dependence of instructions that previously depended on it.
Owen Anderson642a9e32007-08-08 22:26:03 +0000924/// This method attempts to keep the cache coherent using the reverse map.
Chris Lattner5f589dc2008-11-28 22:04:47 +0000925void MemoryDependenceAnalysis::removeInstruction(Instruction *RemInst) {
Chris Lattner5f589dc2008-11-28 22:04:47 +0000926 // Walk through the Non-local dependencies, removing this one as the value
927 // for any cached queries.
Chris Lattnerf68f3102008-11-30 02:28:25 +0000928 NonLocalDepMapType::iterator NLDI = NonLocalDeps.find(RemInst);
929 if (NLDI != NonLocalDeps.end()) {
Chris Lattnerbf145d62008-12-01 01:15:42 +0000930 NonLocalDepInfo &BlockMap = NLDI->second.first;
Chris Lattner25f4b2b2008-11-30 02:30:50 +0000931 for (NonLocalDepInfo::iterator DI = BlockMap.begin(), DE = BlockMap.end();
932 DI != DE; ++DI)
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000933 if (Instruction *Inst = DI->second.getInst())
Chris Lattnerd44745d2008-12-07 18:39:13 +0000934 RemoveFromReverseMap(ReverseNonLocalDeps, Inst, RemInst);
Chris Lattnerf68f3102008-11-30 02:28:25 +0000935 NonLocalDeps.erase(NLDI);
936 }
Owen Anderson5fc4aba2007-12-08 01:37:09 +0000937
Chris Lattner5f589dc2008-11-28 22:04:47 +0000938 // If we have a cached local dependence query for this instruction, remove it.
Chris Lattnerbaad8882008-11-28 22:28:27 +0000939 //
Chris Lattner39f372e2008-11-29 01:43:36 +0000940 LocalDepMapType::iterator LocalDepEntry = LocalDeps.find(RemInst);
941 if (LocalDepEntry != LocalDeps.end()) {
Chris Lattner125ce362008-11-30 01:09:30 +0000942 // Remove us from DepInst's reverse set now that the local dep info is gone.
Chris Lattnerd44745d2008-12-07 18:39:13 +0000943 if (Instruction *Inst = LocalDepEntry->second.getInst())
944 RemoveFromReverseMap(ReverseLocalDeps, Inst, RemInst);
Chris Lattner125ce362008-11-30 01:09:30 +0000945
Chris Lattnerbaad8882008-11-28 22:28:27 +0000946 // Remove this local dependency info.
Chris Lattner39f372e2008-11-29 01:43:36 +0000947 LocalDeps.erase(LocalDepEntry);
Chris Lattner6290f5c2008-12-07 08:50:20 +0000948 }
949
950 // If we have any cached pointer dependencies on this instruction, remove
951 // them. If the instruction has non-pointer type, then it can't be a pointer
952 // base.
953
954 // Remove it from both the load info and the store info. The instruction
955 // can't be in either of these maps if it is non-pointer.
956 if (isa<PointerType>(RemInst->getType())) {
957 RemoveCachedNonLocalPointerDependencies(ValueIsLoadPair(RemInst, false));
958 RemoveCachedNonLocalPointerDependencies(ValueIsLoadPair(RemInst, true));
959 }
Chris Lattnerbaad8882008-11-28 22:28:27 +0000960
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000961 // Loop over all of the things that depend on the instruction we're removing.
962 //
Chris Lattner4f8c18c2008-11-29 23:30:39 +0000963 SmallVector<std::pair<Instruction*, Instruction*>, 8> ReverseDepsToAdd;
Chris Lattner0655f732008-12-07 18:42:51 +0000964
965 // If we find RemInst as a clobber or Def in any of the maps for other values,
966 // we need to replace its entry with a dirty version of the instruction after
967 // it. If RemInst is a terminator, we use a null dirty value.
968 //
969 // Using a dirty version of the instruction after RemInst saves having to scan
970 // the entire block to get to this point.
971 MemDepResult NewDirtyVal;
972 if (!RemInst->isTerminator())
973 NewDirtyVal = MemDepResult::getDirty(++BasicBlock::iterator(RemInst));
Chris Lattner4f8c18c2008-11-29 23:30:39 +0000974
Chris Lattner8c465272008-11-29 09:20:15 +0000975 ReverseDepMapType::iterator ReverseDepIt = ReverseLocalDeps.find(RemInst);
976 if (ReverseDepIt != ReverseLocalDeps.end()) {
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000977 SmallPtrSet<Instruction*, 4> &ReverseDeps = ReverseDepIt->second;
Chris Lattner6290f5c2008-12-07 08:50:20 +0000978 // RemInst can't be the terminator if it has local stuff depending on it.
Chris Lattner125ce362008-11-30 01:09:30 +0000979 assert(!ReverseDeps.empty() && !isa<TerminatorInst>(RemInst) &&
980 "Nothing can locally depend on a terminator");
981
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000982 for (SmallPtrSet<Instruction*, 4>::iterator I = ReverseDeps.begin(),
983 E = ReverseDeps.end(); I != E; ++I) {
984 Instruction *InstDependingOnRemInst = *I;
Chris Lattnerf68f3102008-11-30 02:28:25 +0000985 assert(InstDependingOnRemInst != RemInst &&
986 "Already removed our local dep info");
Chris Lattner125ce362008-11-30 01:09:30 +0000987
Chris Lattner0655f732008-12-07 18:42:51 +0000988 LocalDeps[InstDependingOnRemInst] = NewDirtyVal;
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000989
Chris Lattner125ce362008-11-30 01:09:30 +0000990 // Make sure to remember that new things depend on NewDepInst.
Chris Lattner0655f732008-12-07 18:42:51 +0000991 assert(NewDirtyVal.getInst() && "There is no way something else can have "
992 "a local dep on this if it is a terminator!");
993 ReverseDepsToAdd.push_back(std::make_pair(NewDirtyVal.getInst(),
Chris Lattner125ce362008-11-30 01:09:30 +0000994 InstDependingOnRemInst));
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000995 }
Chris Lattner4f8c18c2008-11-29 23:30:39 +0000996
997 ReverseLocalDeps.erase(ReverseDepIt);
998
999 // Add new reverse deps after scanning the set, to avoid invalidating the
1000 // 'ReverseDeps' reference.
1001 while (!ReverseDepsToAdd.empty()) {
1002 ReverseLocalDeps[ReverseDepsToAdd.back().first]
1003 .insert(ReverseDepsToAdd.back().second);
1004 ReverseDepsToAdd.pop_back();
1005 }
Owen Anderson78e02f72007-07-06 23:14:35 +00001006 }
Owen Anderson4d13de42007-08-16 21:27:05 +00001007
Chris Lattner8c465272008-11-29 09:20:15 +00001008 ReverseDepIt = ReverseNonLocalDeps.find(RemInst);
1009 if (ReverseDepIt != ReverseNonLocalDeps.end()) {
Chris Lattner6290f5c2008-12-07 08:50:20 +00001010 SmallPtrSet<Instruction*, 4> &Set = ReverseDepIt->second;
1011 for (SmallPtrSet<Instruction*, 4>::iterator I = Set.begin(), E = Set.end();
Chris Lattnerf68f3102008-11-30 02:28:25 +00001012 I != E; ++I) {
1013 assert(*I != RemInst && "Already removed NonLocalDep info for RemInst");
1014
Chris Lattner4a69bad2008-11-30 02:52:26 +00001015 PerInstNLInfo &INLD = NonLocalDeps[*I];
Chris Lattner4a69bad2008-11-30 02:52:26 +00001016 // The information is now dirty!
Chris Lattnerbf145d62008-12-01 01:15:42 +00001017 INLD.second = true;
Chris Lattnerf68f3102008-11-30 02:28:25 +00001018
Chris Lattnerbf145d62008-12-01 01:15:42 +00001019 for (NonLocalDepInfo::iterator DI = INLD.first.begin(),
1020 DE = INLD.first.end(); DI != DE; ++DI) {
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +00001021 if (DI->second.getInst() != RemInst) continue;
Chris Lattnerf68f3102008-11-30 02:28:25 +00001022
1023 // Convert to a dirty entry for the subsequent instruction.
Chris Lattner0655f732008-12-07 18:42:51 +00001024 DI->second = NewDirtyVal;
1025
1026 if (Instruction *NextI = NewDirtyVal.getInst())
Chris Lattnerf68f3102008-11-30 02:28:25 +00001027 ReverseDepsToAdd.push_back(std::make_pair(NextI, *I));
Chris Lattnerf68f3102008-11-30 02:28:25 +00001028 }
1029 }
Chris Lattner4f8c18c2008-11-29 23:30:39 +00001030
1031 ReverseNonLocalDeps.erase(ReverseDepIt);
1032
Chris Lattner0ec48dd2008-11-29 22:02:15 +00001033 // Add new reverse deps after scanning the set, to avoid invalidating 'Set'
1034 while (!ReverseDepsToAdd.empty()) {
1035 ReverseNonLocalDeps[ReverseDepsToAdd.back().first]
1036 .insert(ReverseDepsToAdd.back().second);
1037 ReverseDepsToAdd.pop_back();
1038 }
Owen Anderson4d13de42007-08-16 21:27:05 +00001039 }
Owen Anderson5fc4aba2007-12-08 01:37:09 +00001040
Chris Lattner6290f5c2008-12-07 08:50:20 +00001041 // If the instruction is in ReverseNonLocalPtrDeps then it appears as a
1042 // value in the NonLocalPointerDeps info.
1043 ReverseNonLocalPtrDepTy::iterator ReversePtrDepIt =
1044 ReverseNonLocalPtrDeps.find(RemInst);
1045 if (ReversePtrDepIt != ReverseNonLocalPtrDeps.end()) {
Chris Lattner6a0dcc12009-03-29 00:24:04 +00001046 SmallPtrSet<ValueIsLoadPair, 4> &Set = ReversePtrDepIt->second;
Chris Lattner6290f5c2008-12-07 08:50:20 +00001047 SmallVector<std::pair<Instruction*, ValueIsLoadPair>,8> ReversePtrDepsToAdd;
1048
Chris Lattner6a0dcc12009-03-29 00:24:04 +00001049 for (SmallPtrSet<ValueIsLoadPair, 4>::iterator I = Set.begin(),
1050 E = Set.end(); I != E; ++I) {
1051 ValueIsLoadPair P = *I;
Chris Lattner6290f5c2008-12-07 08:50:20 +00001052 assert(P.getPointer() != RemInst &&
1053 "Already removed NonLocalPointerDeps info for RemInst");
1054
Chris Lattner11dcd8d2008-12-08 07:31:50 +00001055 NonLocalDepInfo &NLPDI = NonLocalPointerDeps[P].second;
1056
1057 // The cache is not valid for any specific block anymore.
Chris Lattner9e59c642008-12-15 03:35:32 +00001058 NonLocalPointerDeps[P].first = BBSkipFirstBlockPair();
Chris Lattner6290f5c2008-12-07 08:50:20 +00001059
Chris Lattner6290f5c2008-12-07 08:50:20 +00001060 // Update any entries for RemInst to use the instruction after it.
1061 for (NonLocalDepInfo::iterator DI = NLPDI.begin(), DE = NLPDI.end();
1062 DI != DE; ++DI) {
1063 if (DI->second.getInst() != RemInst) continue;
1064
1065 // Convert to a dirty entry for the subsequent instruction.
1066 DI->second = NewDirtyVal;
1067
1068 if (Instruction *NewDirtyInst = NewDirtyVal.getInst())
1069 ReversePtrDepsToAdd.push_back(std::make_pair(NewDirtyInst, P));
1070 }
Chris Lattner95900f22009-01-23 07:12:16 +00001071
1072 // Re-sort the NonLocalDepInfo. Changing the dirty entry to its
1073 // subsequent value may invalidate the sortedness.
1074 std::sort(NLPDI.begin(), NLPDI.end());
Chris Lattner6290f5c2008-12-07 08:50:20 +00001075 }
1076
1077 ReverseNonLocalPtrDeps.erase(ReversePtrDepIt);
1078
1079 while (!ReversePtrDepsToAdd.empty()) {
1080 ReverseNonLocalPtrDeps[ReversePtrDepsToAdd.back().first]
Chris Lattner6a0dcc12009-03-29 00:24:04 +00001081 .insert(ReversePtrDepsToAdd.back().second);
Chris Lattner6290f5c2008-12-07 08:50:20 +00001082 ReversePtrDepsToAdd.pop_back();
1083 }
1084 }
1085
1086
Chris Lattnerf68f3102008-11-30 02:28:25 +00001087 assert(!NonLocalDeps.count(RemInst) && "RemInst got reinserted?");
Chris Lattnerd777d402008-11-30 19:24:31 +00001088 AA->deleteValue(RemInst);
Chris Lattner5f589dc2008-11-28 22:04:47 +00001089 DEBUG(verifyRemoved(RemInst));
Owen Anderson78e02f72007-07-06 23:14:35 +00001090}
Chris Lattner729b2372008-11-29 21:25:10 +00001091/// verifyRemoved - Verify that the specified instruction does not occur
1092/// in our internal data structures.
1093void MemoryDependenceAnalysis::verifyRemoved(Instruction *D) const {
1094 for (LocalDepMapType::const_iterator I = LocalDeps.begin(),
1095 E = LocalDeps.end(); I != E; ++I) {
1096 assert(I->first != D && "Inst occurs in data structures");
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +00001097 assert(I->second.getInst() != D &&
Chris Lattner729b2372008-11-29 21:25:10 +00001098 "Inst occurs in data structures");
1099 }
1100
Chris Lattner6290f5c2008-12-07 08:50:20 +00001101 for (CachedNonLocalPointerInfo::const_iterator I =NonLocalPointerDeps.begin(),
1102 E = NonLocalPointerDeps.end(); I != E; ++I) {
1103 assert(I->first.getPointer() != D && "Inst occurs in NLPD map key");
Chris Lattner11dcd8d2008-12-08 07:31:50 +00001104 const NonLocalDepInfo &Val = I->second.second;
Chris Lattner6290f5c2008-12-07 08:50:20 +00001105 for (NonLocalDepInfo::const_iterator II = Val.begin(), E = Val.end();
1106 II != E; ++II)
1107 assert(II->second.getInst() != D && "Inst occurs as NLPD value");
1108 }
1109
Chris Lattner729b2372008-11-29 21:25:10 +00001110 for (NonLocalDepMapType::const_iterator I = NonLocalDeps.begin(),
1111 E = NonLocalDeps.end(); I != E; ++I) {
1112 assert(I->first != D && "Inst occurs in data structures");
Chris Lattner4a69bad2008-11-30 02:52:26 +00001113 const PerInstNLInfo &INLD = I->second;
Chris Lattnerbf145d62008-12-01 01:15:42 +00001114 for (NonLocalDepInfo::const_iterator II = INLD.first.begin(),
1115 EE = INLD.first.end(); II != EE; ++II)
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +00001116 assert(II->second.getInst() != D && "Inst occurs in data structures");
Chris Lattner729b2372008-11-29 21:25:10 +00001117 }
1118
1119 for (ReverseDepMapType::const_iterator I = ReverseLocalDeps.begin(),
Chris Lattnerf68f3102008-11-30 02:28:25 +00001120 E = ReverseLocalDeps.end(); I != E; ++I) {
1121 assert(I->first != D && "Inst occurs in data structures");
Chris Lattner729b2372008-11-29 21:25:10 +00001122 for (SmallPtrSet<Instruction*, 4>::const_iterator II = I->second.begin(),
1123 EE = I->second.end(); II != EE; ++II)
1124 assert(*II != D && "Inst occurs in data structures");
Chris Lattnerf68f3102008-11-30 02:28:25 +00001125 }
Chris Lattner729b2372008-11-29 21:25:10 +00001126
1127 for (ReverseDepMapType::const_iterator I = ReverseNonLocalDeps.begin(),
1128 E = ReverseNonLocalDeps.end();
Chris Lattnerf68f3102008-11-30 02:28:25 +00001129 I != E; ++I) {
1130 assert(I->first != D && "Inst occurs in data structures");
Chris Lattner729b2372008-11-29 21:25:10 +00001131 for (SmallPtrSet<Instruction*, 4>::const_iterator II = I->second.begin(),
1132 EE = I->second.end(); II != EE; ++II)
1133 assert(*II != D && "Inst occurs in data structures");
Chris Lattnerf68f3102008-11-30 02:28:25 +00001134 }
Chris Lattner6290f5c2008-12-07 08:50:20 +00001135
1136 for (ReverseNonLocalPtrDepTy::const_iterator
1137 I = ReverseNonLocalPtrDeps.begin(),
1138 E = ReverseNonLocalPtrDeps.end(); I != E; ++I) {
1139 assert(I->first != D && "Inst occurs in rev NLPD map");
1140
Chris Lattner6a0dcc12009-03-29 00:24:04 +00001141 for (SmallPtrSet<ValueIsLoadPair, 4>::const_iterator II = I->second.begin(),
Chris Lattner6290f5c2008-12-07 08:50:20 +00001142 E = I->second.end(); II != E; ++II)
Chris Lattner6a0dcc12009-03-29 00:24:04 +00001143 assert(*II != ValueIsLoadPair(D, false) &&
1144 *II != ValueIsLoadPair(D, true) &&
Chris Lattner6290f5c2008-12-07 08:50:20 +00001145 "Inst occurs in ReverseNonLocalPtrDeps map");
1146 }
1147
Chris Lattner729b2372008-11-29 21:25:10 +00001148}