blob: c42633bac1d86ba55fa7ff79b210ec014f316c5e [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"
Owen Anderson4beedbd2007-07-24 21:52:37 +000024#include "llvm/Support/CFG.h"
Chris Lattner0e575f42008-11-28 21:45:17 +000025#include "llvm/Support/Debug.h"
Owen Anderson78e02f72007-07-06 23:14:35 +000026#include "llvm/Target/TargetData.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
48/// getAnalysisUsage - Does not modify anything. It uses Alias Analysis.
49///
50void MemoryDependenceAnalysis::getAnalysisUsage(AnalysisUsage &AU) const {
51 AU.setPreservesAll();
52 AU.addRequiredTransitive<AliasAnalysis>();
53 AU.addRequiredTransitive<TargetData>();
54}
55
Chris Lattnerd777d402008-11-30 19:24:31 +000056bool MemoryDependenceAnalysis::runOnFunction(Function &) {
57 AA = &getAnalysis<AliasAnalysis>();
58 TD = &getAnalysis<TargetData>();
59 return false;
60}
61
Chris Lattnerd44745d2008-12-07 18:39:13 +000062/// RemoveFromReverseMap - This is a helper function that removes Val from
63/// 'Inst's set in ReverseMap. If the set becomes empty, remove Inst's entry.
64template <typename KeyTy>
65static void RemoveFromReverseMap(DenseMap<Instruction*,
66 SmallPtrSet<KeyTy*, 4> > &ReverseMap,
67 Instruction *Inst, KeyTy *Val) {
68 typename DenseMap<Instruction*, SmallPtrSet<KeyTy*, 4> >::iterator
69 InstIt = ReverseMap.find(Inst);
70 assert(InstIt != ReverseMap.end() && "Reverse map out of sync?");
71 bool Found = InstIt->second.erase(Val);
72 assert(Found && "Invalid reverse map!"); Found=Found;
73 if (InstIt->second.empty())
74 ReverseMap.erase(InstIt);
75}
76
Chris Lattnerbf145d62008-12-01 01:15:42 +000077
Chris Lattner8ef57c52008-12-07 00:35:51 +000078/// getCallSiteDependencyFrom - Private helper for finding the local
79/// dependencies of a call site.
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +000080MemDepResult MemoryDependenceAnalysis::
Chris Lattner8ef57c52008-12-07 00:35:51 +000081getCallSiteDependencyFrom(CallSite CS, BasicBlock::iterator ScanIt,
82 BasicBlock *BB) {
Owen Anderson642a9e32007-08-08 22:26:03 +000083 // Walk backwards through the block, looking for dependencies
Chris Lattner5391a1d2008-11-29 03:47:00 +000084 while (ScanIt != BB->begin()) {
85 Instruction *Inst = --ScanIt;
Owen Anderson5f323202007-07-10 17:59:22 +000086
87 // If this inst is a memory op, get the pointer it accessed
Chris Lattner00314b32008-11-29 09:15:21 +000088 Value *Pointer = 0;
89 uint64_t PointerSize = 0;
90 if (StoreInst *S = dyn_cast<StoreInst>(Inst)) {
91 Pointer = S->getPointerOperand();
Chris Lattnerd777d402008-11-30 19:24:31 +000092 PointerSize = TD->getTypeStoreSize(S->getOperand(0)->getType());
Chris Lattner00314b32008-11-29 09:15:21 +000093 } else if (VAArgInst *V = dyn_cast<VAArgInst>(Inst)) {
94 Pointer = V->getOperand(0);
Chris Lattnerd777d402008-11-30 19:24:31 +000095 PointerSize = TD->getTypeStoreSize(V->getType());
Chris Lattner00314b32008-11-29 09:15:21 +000096 } else if (FreeInst *F = dyn_cast<FreeInst>(Inst)) {
97 Pointer = F->getPointerOperand();
Owen Anderson5f323202007-07-10 17:59:22 +000098
99 // FreeInsts erase the entire structure
Chris Lattner6290f5c2008-12-07 08:50:20 +0000100 PointerSize = ~0ULL;
Chris Lattner00314b32008-11-29 09:15:21 +0000101 } else if (isa<CallInst>(Inst) || isa<InvokeInst>(Inst)) {
Chris Lattnerb51deb92008-12-05 21:04:20 +0000102 CallSite InstCS = CallSite::get(Inst);
103 // If these two calls do not interfere, look past it.
104 if (AA->getModRefInfo(CS, InstCS) == AliasAnalysis::NoModRef)
Chris Lattner00314b32008-11-29 09:15:21 +0000105 continue;
Chris Lattnerb51deb92008-12-05 21:04:20 +0000106
107 // FIXME: If this is a ref/ref result, we should ignore it!
108 // X = strlen(P);
109 // Y = strlen(Q);
110 // Z = strlen(P); // Z = X
111
112 // If they interfere, we generally return clobber. However, if they are
113 // calls to the same read-only functions we return Def.
114 if (!AA->onlyReadsMemory(CS) || CS.getCalledFunction() == 0 ||
115 CS.getCalledFunction() != InstCS.getCalledFunction())
116 return MemDepResult::getClobber(Inst);
117 return MemDepResult::getDef(Inst);
Chris Lattnercfbb6342008-11-30 01:44:00 +0000118 } else {
119 // Non-memory instruction.
Owen Anderson202da142007-07-10 20:39:07 +0000120 continue;
Chris Lattnercfbb6342008-11-30 01:44:00 +0000121 }
Owen Anderson5f323202007-07-10 17:59:22 +0000122
Chris Lattnerb51deb92008-12-05 21:04:20 +0000123 if (AA->getModRefInfo(CS, Pointer, PointerSize) != AliasAnalysis::NoModRef)
124 return MemDepResult::getClobber(Inst);
Owen Anderson5f323202007-07-10 17:59:22 +0000125 }
126
Chris Lattner7ebcf032008-12-07 02:15:47 +0000127 // No dependence found. If this is the entry block of the function, it is a
128 // clobber, otherwise it is non-local.
129 if (BB != &BB->getParent()->getEntryBlock())
130 return MemDepResult::getNonLocal();
131 return MemDepResult::getClobber(ScanIt);
Owen Anderson5f323202007-07-10 17:59:22 +0000132}
133
Chris Lattnere79be942008-12-07 01:50:16 +0000134/// getPointerDependencyFrom - Return the instruction on which a memory
135/// location depends. If isLoad is true, this routine ignore may-aliases with
136/// read-only operations.
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000137MemDepResult MemoryDependenceAnalysis::
Chris Lattnere79be942008-12-07 01:50:16 +0000138getPointerDependencyFrom(Value *MemPtr, uint64_t MemSize, bool isLoad,
139 BasicBlock::iterator ScanIt, BasicBlock *BB) {
Chris Lattner7ebcf032008-12-07 02:15:47 +0000140
Chris Lattner6290f5c2008-12-07 08:50:20 +0000141 // Walk backwards through the basic block, looking for dependencies.
Chris Lattner5391a1d2008-11-29 03:47:00 +0000142 while (ScanIt != BB->begin()) {
143 Instruction *Inst = --ScanIt;
Chris Lattnera161ab02008-11-29 09:09:48 +0000144
Chris Lattnercfbb6342008-11-30 01:44:00 +0000145 // Values depend on loads if the pointers are must aliased. This means that
146 // a load depends on another must aliased load from the same value.
Chris Lattnerb51deb92008-12-05 21:04:20 +0000147 if (LoadInst *LI = dyn_cast<LoadInst>(Inst)) {
Chris Lattnerb51deb92008-12-05 21:04:20 +0000148 Value *Pointer = LI->getPointerOperand();
149 uint64_t PointerSize = TD->getTypeStoreSize(LI->getType());
150
151 // If we found a pointer, check if it could be the same as our pointer.
Chris Lattnera161ab02008-11-29 09:09:48 +0000152 AliasAnalysis::AliasResult R =
Chris Lattnerd777d402008-11-30 19:24:31 +0000153 AA->alias(Pointer, PointerSize, MemPtr, MemSize);
Chris Lattnera161ab02008-11-29 09:09:48 +0000154 if (R == AliasAnalysis::NoAlias)
155 continue;
156
157 // May-alias loads don't depend on each other without a dependence.
Chris Lattnere79be942008-12-07 01:50:16 +0000158 if (isLoad && R == AliasAnalysis::MayAlias)
Chris Lattnera161ab02008-11-29 09:09:48 +0000159 continue;
Chris Lattner6290f5c2008-12-07 08:50:20 +0000160 // Stores depend on may and must aliased loads, loads depend on must-alias
161 // loads.
Chris Lattnerb51deb92008-12-05 21:04:20 +0000162 return MemDepResult::getDef(Inst);
163 }
164
165 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
Chris Lattnerb51deb92008-12-05 21:04:20 +0000166 Value *Pointer = SI->getPointerOperand();
167 uint64_t PointerSize = TD->getTypeStoreSize(SI->getOperand(0)->getType());
168
169 // If we found a pointer, check if it could be the same as our pointer.
170 AliasAnalysis::AliasResult R =
171 AA->alias(Pointer, PointerSize, MemPtr, MemSize);
172
173 if (R == AliasAnalysis::NoAlias)
174 continue;
175 if (R == AliasAnalysis::MayAlias)
176 return MemDepResult::getClobber(Inst);
177 return MemDepResult::getDef(Inst);
Owen Anderson78e02f72007-07-06 23:14:35 +0000178 }
Chris Lattner237a8282008-11-30 01:39:32 +0000179
180 // If this is an allocation, and if we know that the accessed pointer is to
Chris Lattnerb51deb92008-12-05 21:04:20 +0000181 // the allocation, return Def. This means that there is no dependence and
Chris Lattner237a8282008-11-30 01:39:32 +0000182 // the access can be optimized based on that. For example, a load could
183 // turn into undef.
Chris Lattnera161ab02008-11-29 09:09:48 +0000184 if (AllocationInst *AI = dyn_cast<AllocationInst>(Inst)) {
Chris Lattner237a8282008-11-30 01:39:32 +0000185 Value *AccessPtr = MemPtr->getUnderlyingObject();
Owen Anderson78e02f72007-07-06 23:14:35 +0000186
Chris Lattner237a8282008-11-30 01:39:32 +0000187 if (AccessPtr == AI ||
Chris Lattnerd777d402008-11-30 19:24:31 +0000188 AA->alias(AI, 1, AccessPtr, 1) == AliasAnalysis::MustAlias)
Chris Lattnerb51deb92008-12-05 21:04:20 +0000189 return MemDepResult::getDef(AI);
Chris Lattner237a8282008-11-30 01:39:32 +0000190 continue;
Chris Lattnera161ab02008-11-29 09:09:48 +0000191 }
Chris Lattnera161ab02008-11-29 09:09:48 +0000192
Chris Lattnerb51deb92008-12-05 21:04:20 +0000193 // See if this instruction (e.g. a call or vaarg) mod/ref's the pointer.
Chris Lattnere79be942008-12-07 01:50:16 +0000194 // FIXME: If this is a load, we should ignore readonly calls!
Chris Lattnerb51deb92008-12-05 21:04:20 +0000195 if (AA->getModRefInfo(Inst, MemPtr, MemSize) == AliasAnalysis::NoModRef)
Chris Lattner25a08142008-11-29 08:51:16 +0000196 continue;
Chris Lattnera161ab02008-11-29 09:09:48 +0000197
198 // Otherwise, there is a dependence.
Chris Lattnerb51deb92008-12-05 21:04:20 +0000199 return MemDepResult::getClobber(Inst);
Owen Anderson78e02f72007-07-06 23:14:35 +0000200 }
201
Chris Lattner7ebcf032008-12-07 02:15:47 +0000202 // No dependence found. If this is the entry block of the function, it is a
203 // clobber, otherwise it is non-local.
204 if (BB != &BB->getParent()->getEntryBlock())
205 return MemDepResult::getNonLocal();
206 return MemDepResult::getClobber(ScanIt);
Owen Anderson78e02f72007-07-06 23:14:35 +0000207}
208
Chris Lattner5391a1d2008-11-29 03:47:00 +0000209/// getDependency - Return the instruction on which a memory operation
210/// depends.
211MemDepResult MemoryDependenceAnalysis::getDependency(Instruction *QueryInst) {
212 Instruction *ScanPos = QueryInst;
213
214 // Check for a cached result
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000215 MemDepResult &LocalCache = LocalDeps[QueryInst];
Chris Lattner5391a1d2008-11-29 03:47:00 +0000216
Chris Lattner0ec48dd2008-11-29 22:02:15 +0000217 // If the cached entry is non-dirty, just return it. Note that this depends
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000218 // on MemDepResult's default constructing to 'dirty'.
219 if (!LocalCache.isDirty())
220 return LocalCache;
Chris Lattner5391a1d2008-11-29 03:47:00 +0000221
222 // Otherwise, if we have a dirty entry, we know we can start the scan at that
223 // instruction, which may save us some work.
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000224 if (Instruction *Inst = LocalCache.getInst()) {
Chris Lattner5391a1d2008-11-29 03:47:00 +0000225 ScanPos = Inst;
Chris Lattner4a69bad2008-11-30 02:52:26 +0000226
Chris Lattnerd44745d2008-12-07 18:39:13 +0000227 RemoveFromReverseMap(ReverseLocalDeps, Inst, QueryInst);
Chris Lattner4a69bad2008-11-30 02:52:26 +0000228 }
Chris Lattner5391a1d2008-11-29 03:47:00 +0000229
Chris Lattnere79be942008-12-07 01:50:16 +0000230 BasicBlock *QueryParent = QueryInst->getParent();
231
232 Value *MemPtr = 0;
233 uint64_t MemSize = 0;
234
Chris Lattner5391a1d2008-11-29 03:47:00 +0000235 // Do the scan.
Chris Lattnere79be942008-12-07 01:50:16 +0000236 if (BasicBlock::iterator(QueryInst) == QueryParent->begin()) {
Chris Lattner7ebcf032008-12-07 02:15:47 +0000237 // No dependence found. If this is the entry block of the function, it is a
238 // clobber, otherwise it is non-local.
239 if (QueryParent != &QueryParent->getParent()->getEntryBlock())
240 LocalCache = MemDepResult::getNonLocal();
241 else
242 LocalCache = MemDepResult::getClobber(QueryInst);
Chris Lattnere79be942008-12-07 01:50:16 +0000243 } else if (StoreInst *SI = dyn_cast<StoreInst>(QueryInst)) {
244 // If this is a volatile store, don't mess around with it. Just return the
245 // previous instruction as a clobber.
246 if (SI->isVolatile())
247 LocalCache = MemDepResult::getClobber(--BasicBlock::iterator(ScanPos));
248 else {
249 MemPtr = SI->getPointerOperand();
250 MemSize = TD->getTypeStoreSize(SI->getOperand(0)->getType());
251 }
252 } else if (LoadInst *LI = dyn_cast<LoadInst>(QueryInst)) {
253 // If this is a volatile load, don't mess around with it. Just return the
254 // previous instruction as a clobber.
255 if (LI->isVolatile())
256 LocalCache = MemDepResult::getClobber(--BasicBlock::iterator(ScanPos));
257 else {
258 MemPtr = LI->getPointerOperand();
259 MemSize = TD->getTypeStoreSize(LI->getType());
260 }
261 } else if (isa<CallInst>(QueryInst) || isa<InvokeInst>(QueryInst)) {
Chris Lattnerd8dd9342008-12-07 01:21:14 +0000262 LocalCache = getCallSiteDependencyFrom(CallSite::get(QueryInst), ScanPos,
Chris Lattnere79be942008-12-07 01:50:16 +0000263 QueryParent);
264 } else if (FreeInst *FI = dyn_cast<FreeInst>(QueryInst)) {
265 MemPtr = FI->getPointerOperand();
266 // FreeInsts erase the entire structure, not just a field.
267 MemSize = ~0UL;
268 } else {
269 // Non-memory instruction.
270 LocalCache = MemDepResult::getClobber(--BasicBlock::iterator(ScanPos));
271 }
272
273 // If we need to do a pointer scan, make it happen.
274 if (MemPtr)
275 LocalCache = getPointerDependencyFrom(MemPtr, MemSize,
276 isa<LoadInst>(QueryInst),
277 ScanPos, QueryParent);
Chris Lattner5391a1d2008-11-29 03:47:00 +0000278
279 // Remember the result!
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000280 if (Instruction *I = LocalCache.getInst())
Chris Lattner8c465272008-11-29 09:20:15 +0000281 ReverseLocalDeps[I].insert(QueryInst);
Chris Lattner5391a1d2008-11-29 03:47:00 +0000282
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000283 return LocalCache;
Chris Lattner5391a1d2008-11-29 03:47:00 +0000284}
285
Chris Lattner37d041c2008-11-30 01:18:27 +0000286/// getNonLocalDependency - Perform a full dependency query for the
287/// specified instruction, returning the set of blocks that the value is
288/// potentially live across. The returned set of results will include a
289/// "NonLocal" result for all blocks where the value is live across.
290///
291/// This method assumes the instruction returns a "nonlocal" dependency
292/// within its own block.
293///
Chris Lattnerbf145d62008-12-01 01:15:42 +0000294const MemoryDependenceAnalysis::NonLocalDepInfo &
295MemoryDependenceAnalysis::getNonLocalDependency(Instruction *QueryInst) {
Chris Lattner7ebcf032008-12-07 02:15:47 +0000296 // FIXME: Make this only be for callsites in the future.
Chris Lattnere79be942008-12-07 01:50:16 +0000297 assert(isa<CallInst>(QueryInst) || isa<InvokeInst>(QueryInst) ||
298 isa<LoadInst>(QueryInst) || isa<StoreInst>(QueryInst));
Chris Lattner37d041c2008-11-30 01:18:27 +0000299 assert(getDependency(QueryInst).isNonLocal() &&
300 "getNonLocalDependency should only be used on insts with non-local deps!");
Chris Lattner4a69bad2008-11-30 02:52:26 +0000301 PerInstNLInfo &CacheP = NonLocalDeps[QueryInst];
Chris Lattnerbf145d62008-12-01 01:15:42 +0000302 NonLocalDepInfo &Cache = CacheP.first;
Chris Lattner37d041c2008-11-30 01:18:27 +0000303
304 /// DirtyBlocks - This is the set of blocks that need to be recomputed. In
305 /// the cached case, this can happen due to instructions being deleted etc. In
306 /// the uncached case, this starts out as the set of predecessors we care
307 /// about.
308 SmallVector<BasicBlock*, 32> DirtyBlocks;
309
310 if (!Cache.empty()) {
Chris Lattnerbf145d62008-12-01 01:15:42 +0000311 // Okay, we have a cache entry. If we know it is not dirty, just return it
312 // with no computation.
313 if (!CacheP.second) {
314 NumCacheNonLocal++;
315 return Cache;
316 }
317
Chris Lattner37d041c2008-11-30 01:18:27 +0000318 // If we already have a partially computed set of results, scan them to
Chris Lattnerbf145d62008-12-01 01:15:42 +0000319 // determine what is dirty, seeding our initial DirtyBlocks worklist.
320 for (NonLocalDepInfo::iterator I = Cache.begin(), E = Cache.end();
321 I != E; ++I)
322 if (I->second.isDirty())
323 DirtyBlocks.push_back(I->first);
Chris Lattner37d041c2008-11-30 01:18:27 +0000324
Chris Lattnerbf145d62008-12-01 01:15:42 +0000325 // Sort the cache so that we can do fast binary search lookups below.
326 std::sort(Cache.begin(), Cache.end());
Chris Lattner37d041c2008-11-30 01:18:27 +0000327
Chris Lattnerbf145d62008-12-01 01:15:42 +0000328 ++NumCacheDirtyNonLocal;
Chris Lattner37d041c2008-11-30 01:18:27 +0000329 //cerr << "CACHED CASE: " << DirtyBlocks.size() << " dirty: "
330 // << Cache.size() << " cached: " << *QueryInst;
331 } else {
332 // Seed DirtyBlocks with each of the preds of QueryInst's block.
333 BasicBlock *QueryBB = QueryInst->getParent();
334 DirtyBlocks.append(pred_begin(QueryBB), pred_end(QueryBB));
335 NumUncacheNonLocal++;
336 }
337
Chris Lattnerbf145d62008-12-01 01:15:42 +0000338 // Visited checked first, vector in sorted order.
339 SmallPtrSet<BasicBlock*, 64> Visited;
340
341 unsigned NumSortedEntries = Cache.size();
342
Chris Lattner37d041c2008-11-30 01:18:27 +0000343 // Iterate while we still have blocks to update.
344 while (!DirtyBlocks.empty()) {
345 BasicBlock *DirtyBB = DirtyBlocks.back();
346 DirtyBlocks.pop_back();
347
Chris Lattnerbf145d62008-12-01 01:15:42 +0000348 // Already processed this block?
349 if (!Visited.insert(DirtyBB))
350 continue;
Chris Lattner37d041c2008-11-30 01:18:27 +0000351
Chris Lattnerbf145d62008-12-01 01:15:42 +0000352 // Do a binary search to see if we already have an entry for this block in
353 // the cache set. If so, find it.
354 NonLocalDepInfo::iterator Entry =
355 std::upper_bound(Cache.begin(), Cache.begin()+NumSortedEntries,
356 std::make_pair(DirtyBB, MemDepResult()));
357 if (Entry != Cache.begin() && (&*Entry)[-1].first == DirtyBB)
358 --Entry;
359
360 MemDepResult *ExistingResult = 0;
361 if (Entry != Cache.begin()+NumSortedEntries &&
362 Entry->first == DirtyBB) {
363 // If we already have an entry, and if it isn't already dirty, the block
364 // is done.
365 if (!Entry->second.isDirty())
366 continue;
367
368 // Otherwise, remember this slot so we can update the value.
369 ExistingResult = &Entry->second;
370 }
371
Chris Lattner37d041c2008-11-30 01:18:27 +0000372 // If the dirty entry has a pointer, start scanning from it so we don't have
373 // to rescan the entire block.
374 BasicBlock::iterator ScanPos = DirtyBB->end();
Chris Lattnerbf145d62008-12-01 01:15:42 +0000375 if (ExistingResult) {
376 if (Instruction *Inst = ExistingResult->getInst()) {
377 ScanPos = Inst;
Chris Lattnerbf145d62008-12-01 01:15:42 +0000378 // We're removing QueryInst's use of Inst.
Chris Lattnerd44745d2008-12-07 18:39:13 +0000379 RemoveFromReverseMap(ReverseNonLocalDeps, Inst, QueryInst);
Chris Lattnerbf145d62008-12-01 01:15:42 +0000380 }
Chris Lattnerf68f3102008-11-30 02:28:25 +0000381 }
Chris Lattner37d041c2008-11-30 01:18:27 +0000382
Chris Lattner73ec3cd2008-11-30 01:26:32 +0000383 // Find out if this block has a local dependency for QueryInst.
Chris Lattnerd8dd9342008-12-07 01:21:14 +0000384 MemDepResult Dep;
Chris Lattnere79be942008-12-07 01:50:16 +0000385
386 Value *MemPtr = 0;
387 uint64_t MemSize = 0;
388
Chris Lattner7ebcf032008-12-07 02:15:47 +0000389 if (ScanPos == DirtyBB->begin()) {
390 // No dependence found. If this is the entry block of the function, it is a
391 // clobber, otherwise it is non-local.
392 if (DirtyBB != &DirtyBB->getParent()->getEntryBlock())
393 Dep = MemDepResult::getNonLocal();
394 else
395 Dep = MemDepResult::getClobber(ScanPos);
Chris Lattnere79be942008-12-07 01:50:16 +0000396 } else if (StoreInst *SI = dyn_cast<StoreInst>(QueryInst)) {
397 // If this is a volatile store, don't mess around with it. Just return the
398 // previous instruction as a clobber.
399 if (SI->isVolatile())
400 Dep = MemDepResult::getClobber(--BasicBlock::iterator(ScanPos));
401 else {
402 MemPtr = SI->getPointerOperand();
403 MemSize = TD->getTypeStoreSize(SI->getOperand(0)->getType());
404 }
405 } else if (LoadInst *LI = dyn_cast<LoadInst>(QueryInst)) {
406 // If this is a volatile load, don't mess around with it. Just return the
407 // previous instruction as a clobber.
408 if (LI->isVolatile())
409 Dep = MemDepResult::getClobber(--BasicBlock::iterator(ScanPos));
410 else {
411 MemPtr = LI->getPointerOperand();
412 MemSize = TD->getTypeStoreSize(LI->getType());
413 }
414 } else {
415 assert(isa<CallInst>(QueryInst) || isa<InvokeInst>(QueryInst));
Chris Lattnerd8dd9342008-12-07 01:21:14 +0000416 Dep = getCallSiteDependencyFrom(CallSite::get(QueryInst), ScanPos,
417 DirtyBB);
Chris Lattnere79be942008-12-07 01:50:16 +0000418 }
419
420 if (MemPtr)
421 Dep = getPointerDependencyFrom(MemPtr, MemSize, isa<LoadInst>(QueryInst),
422 ScanPos, DirtyBB);
Chris Lattnerbf145d62008-12-01 01:15:42 +0000423
424 // If we had a dirty entry for the block, update it. Otherwise, just add
425 // a new entry.
426 if (ExistingResult)
427 *ExistingResult = Dep;
428 else
429 Cache.push_back(std::make_pair(DirtyBB, Dep));
430
Chris Lattner37d041c2008-11-30 01:18:27 +0000431 // If the block has a dependency (i.e. it isn't completely transparent to
Chris Lattnerbf145d62008-12-01 01:15:42 +0000432 // the value), remember the association!
433 if (!Dep.isNonLocal()) {
Chris Lattner37d041c2008-11-30 01:18:27 +0000434 // Keep the ReverseNonLocalDeps map up to date so we can efficiently
435 // update this when we remove instructions.
Chris Lattnerbf145d62008-12-01 01:15:42 +0000436 if (Instruction *Inst = Dep.getInst())
Chris Lattner37d041c2008-11-30 01:18:27 +0000437 ReverseNonLocalDeps[Inst].insert(QueryInst);
Chris Lattnerbf145d62008-12-01 01:15:42 +0000438 } else {
Chris Lattner37d041c2008-11-30 01:18:27 +0000439
Chris Lattnerbf145d62008-12-01 01:15:42 +0000440 // If the block *is* completely transparent to the load, we need to check
441 // the predecessors of this block. Add them to our worklist.
442 DirtyBlocks.append(pred_begin(DirtyBB), pred_end(DirtyBB));
443 }
Chris Lattner37d041c2008-11-30 01:18:27 +0000444 }
445
Chris Lattnerbf145d62008-12-01 01:15:42 +0000446 return Cache;
Chris Lattner37d041c2008-11-30 01:18:27 +0000447}
448
Chris Lattner7ebcf032008-12-07 02:15:47 +0000449/// getNonLocalPointerDependency - Perform a full dependency query for an
450/// access to the specified (non-volatile) memory location, returning the
451/// set of instructions that either define or clobber the value.
452///
453/// This method assumes the pointer has a "NonLocal" dependency within its
454/// own block.
455///
456void MemoryDependenceAnalysis::
457getNonLocalPointerDependency(Value *Pointer, bool isLoad, BasicBlock *FromBB,
458 SmallVectorImpl<NonLocalDepEntry> &Result) {
Chris Lattner3f7eb5b2008-12-07 18:45:15 +0000459 assert(isa<PointerType>(Pointer->getType()) &&
460 "Can't get pointer deps of a non-pointer!");
Chris Lattner9a193fd2008-12-07 02:56:57 +0000461 Result.clear();
462
Chris Lattner7ebcf032008-12-07 02:15:47 +0000463 // We know that the pointer value is live into FromBB find the def/clobbers
464 // from presecessors.
Chris Lattner7ebcf032008-12-07 02:15:47 +0000465 const Type *EltTy = cast<PointerType>(Pointer->getType())->getElementType();
466 uint64_t PointeeSize = TD->getTypeStoreSize(EltTy);
467
468 // While we have blocks to analyze, get their values.
469 SmallPtrSet<BasicBlock*, 64> Visited;
Chris Lattner9a193fd2008-12-07 02:56:57 +0000470
471 for (pred_iterator PI = pred_begin(FromBB), E = pred_end(FromBB); PI != E;
472 ++PI) {
473 // TODO: PHI TRANSLATE.
474 getNonLocalPointerDepInternal(Pointer, PointeeSize, isLoad, *PI,
475 Result, Visited);
476 }
477}
478
479void MemoryDependenceAnalysis::
480getNonLocalPointerDepInternal(Value *Pointer, uint64_t PointeeSize,
481 bool isLoad, BasicBlock *StartBB,
482 SmallVectorImpl<NonLocalDepEntry> &Result,
483 SmallPtrSet<BasicBlock*, 64> &Visited) {
Chris Lattner6290f5c2008-12-07 08:50:20 +0000484 // Look up the cached info for Pointer.
485 ValueIsLoadPair CacheKey(Pointer, isLoad);
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000486
487 std::pair<BasicBlock*, NonLocalDepInfo> &CacheInfo =
488 NonLocalPointerDeps[CacheKey];
489 NonLocalDepInfo *Cache = &CacheInfo.second;
490
491 // If we have valid cached information for exactly the block we are
492 // investigating, just return it with no recomputation.
493 if (CacheInfo.first == StartBB) {
494 for (NonLocalDepInfo::iterator I = Cache->begin(), E = Cache->end();
495 I != E; ++I)
496 if (!I->second.isNonLocal())
497 Result.push_back(*I);
498 ++NumCacheCompleteNonLocalPtr;
499 return;
500 }
501
502 // Otherwise, either this is a new block, a block with an invalid cache
503 // pointer or one that we're about to invalidate by putting more info into it
504 // than its valid cache info. If empty, the result will be valid cache info,
505 // otherwise it isn't.
506 CacheInfo.first = Cache->empty() ? StartBB : 0;
507
508 SmallVector<BasicBlock*, 32> Worklist;
509 Worklist.push_back(StartBB);
Chris Lattner6290f5c2008-12-07 08:50:20 +0000510
511 // Keep track of the entries that we know are sorted. Previously cached
512 // entries will all be sorted. The entries we add we only sort on demand (we
513 // don't insert every element into its sorted position). We know that we
514 // won't get any reuse from currently inserted values, because we don't
515 // revisit blocks after we insert info for them.
516 unsigned NumSortedEntries = Cache->size();
517
Chris Lattner7ebcf032008-12-07 02:15:47 +0000518 while (!Worklist.empty()) {
Chris Lattner9a193fd2008-12-07 02:56:57 +0000519 BasicBlock *BB = Worklist.pop_back_val();
Chris Lattner7ebcf032008-12-07 02:15:47 +0000520
521 // Analyze the dependency of *Pointer in FromBB. See if we already have
522 // been here.
Chris Lattner9a193fd2008-12-07 02:56:57 +0000523 if (!Visited.insert(BB))
Chris Lattner7ebcf032008-12-07 02:15:47 +0000524 continue;
Chris Lattner6290f5c2008-12-07 08:50:20 +0000525
526 // Get the dependency info for Pointer in BB. If we have cached
527 // information, we will use it, otherwise we compute it.
Chris Lattner7ebcf032008-12-07 02:15:47 +0000528
Chris Lattner6290f5c2008-12-07 08:50:20 +0000529 // Do a binary search to see if we already have an entry for this block in
530 // the cache set. If so, find it.
531 NonLocalDepInfo::iterator Entry =
532 std::upper_bound(Cache->begin(), Cache->begin()+NumSortedEntries,
533 std::make_pair(BB, MemDepResult()));
534 if (Entry != Cache->begin() && (&*Entry)[-1].first == BB)
535 --Entry;
Chris Lattner7ebcf032008-12-07 02:15:47 +0000536
Chris Lattner6290f5c2008-12-07 08:50:20 +0000537 MemDepResult *ExistingResult = 0;
538 if (Entry != Cache->begin()+NumSortedEntries && Entry->first == BB)
539 ExistingResult = &Entry->second;
540
541 // If we have a cached entry, and it is non-dirty, use it as the value for
542 // this dependency.
543 MemDepResult Dep;
544 if (ExistingResult && !ExistingResult->isDirty()) {
545 Dep = *ExistingResult;
546 ++NumCacheNonLocalPtr;
547 } else {
548 // Otherwise, we have to scan for the value. If we have a dirty cache
549 // entry, start scanning from its position, otherwise we scan from the end
550 // of the block.
551 BasicBlock::iterator ScanPos = BB->end();
552 if (ExistingResult && ExistingResult->getInst()) {
553 assert(ExistingResult->getInst()->getParent() == BB &&
554 "Instruction invalidated?");
555 ++NumCacheDirtyNonLocalPtr;
556 ScanPos = ExistingResult->getInst();
557
558 // Eliminating the dirty entry from 'Cache', so update the reverse info.
Chris Lattnerd44745d2008-12-07 18:39:13 +0000559 RemoveFromReverseMap(ReverseNonLocalPtrDeps, ScanPos,
560 CacheKey.getOpaqueValue());
Chris Lattner6290f5c2008-12-07 08:50:20 +0000561 } else {
562 ++NumUncacheNonLocalPtr;
563 }
564
565 // Scan the block for the dependency.
566 Dep = getPointerDependencyFrom(Pointer, PointeeSize, isLoad, ScanPos, BB);
567
568 // If we had a dirty entry for the block, update it. Otherwise, just add
569 // a new entry.
570 if (ExistingResult)
571 *ExistingResult = Dep;
572 else
573 Cache->push_back(std::make_pair(BB, Dep));
574
575 // If the block has a dependency (i.e. it isn't completely transparent to
576 // the value), remember the reverse association because we just added it
577 // to Cache!
578 if (!Dep.isNonLocal()) {
579 // Keep the ReverseNonLocalPtrDeps map up to date so we can efficiently
580 // update MemDep when we remove instructions.
581 Instruction *Inst = Dep.getInst();
582 assert(Inst && "Didn't depend on anything?");
583 ReverseNonLocalPtrDeps[Inst].insert(CacheKey.getOpaqueValue());
584 }
585 }
Chris Lattner7ebcf032008-12-07 02:15:47 +0000586
587 // If we got a Def or Clobber, add this to the list of results.
588 if (!Dep.isNonLocal()) {
Chris Lattner9a193fd2008-12-07 02:56:57 +0000589 Result.push_back(NonLocalDepEntry(BB, Dep));
Chris Lattner7ebcf032008-12-07 02:15:47 +0000590 continue;
591 }
592
593 // Otherwise, we have to process all the predecessors of this block to scan
594 // them as well.
Chris Lattner9a193fd2008-12-07 02:56:57 +0000595 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
Chris Lattner7ebcf032008-12-07 02:15:47 +0000596 // TODO: PHI TRANSLATE.
Chris Lattner9a193fd2008-12-07 02:56:57 +0000597 Worklist.push_back(*PI);
598 }
Chris Lattner7ebcf032008-12-07 02:15:47 +0000599 }
Chris Lattner6290f5c2008-12-07 08:50:20 +0000600
601 // If we computed new values, re-sort Cache.
602 if (NumSortedEntries != Cache->size())
603 std::sort(Cache->begin(), Cache->end());
604}
605
606/// RemoveCachedNonLocalPointerDependencies - If P exists in
607/// CachedNonLocalPointerInfo, remove it.
608void MemoryDependenceAnalysis::
609RemoveCachedNonLocalPointerDependencies(ValueIsLoadPair P) {
610 CachedNonLocalPointerInfo::iterator It =
611 NonLocalPointerDeps.find(P);
612 if (It == NonLocalPointerDeps.end()) return;
613
614 // Remove all of the entries in the BB->val map. This involves removing
615 // instructions from the reverse map.
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000616 NonLocalDepInfo &PInfo = It->second.second;
Chris Lattner6290f5c2008-12-07 08:50:20 +0000617
618 for (unsigned i = 0, e = PInfo.size(); i != e; ++i) {
619 Instruction *Target = PInfo[i].second.getInst();
620 if (Target == 0) continue; // Ignore non-local dep results.
621 assert(Target->getParent() == PInfo[i].first && Target != P.getPointer());
622
623 // Eliminating the dirty entry from 'Cache', so update the reverse info.
Chris Lattnerd44745d2008-12-07 18:39:13 +0000624 RemoveFromReverseMap(ReverseNonLocalPtrDeps, Target, P.getOpaqueValue());
Chris Lattner6290f5c2008-12-07 08:50:20 +0000625 }
626
627 // Remove P from NonLocalPointerDeps (which deletes NonLocalDepInfo).
628 NonLocalPointerDeps.erase(It);
Chris Lattner7ebcf032008-12-07 02:15:47 +0000629}
630
631
Owen Anderson78e02f72007-07-06 23:14:35 +0000632/// removeInstruction - Remove an instruction from the dependence analysis,
633/// updating the dependence of instructions that previously depended on it.
Owen Anderson642a9e32007-08-08 22:26:03 +0000634/// This method attempts to keep the cache coherent using the reverse map.
Chris Lattner5f589dc2008-11-28 22:04:47 +0000635void MemoryDependenceAnalysis::removeInstruction(Instruction *RemInst) {
Chris Lattner5f589dc2008-11-28 22:04:47 +0000636 // Walk through the Non-local dependencies, removing this one as the value
637 // for any cached queries.
Chris Lattnerf68f3102008-11-30 02:28:25 +0000638 NonLocalDepMapType::iterator NLDI = NonLocalDeps.find(RemInst);
639 if (NLDI != NonLocalDeps.end()) {
Chris Lattnerbf145d62008-12-01 01:15:42 +0000640 NonLocalDepInfo &BlockMap = NLDI->second.first;
Chris Lattner25f4b2b2008-11-30 02:30:50 +0000641 for (NonLocalDepInfo::iterator DI = BlockMap.begin(), DE = BlockMap.end();
642 DI != DE; ++DI)
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000643 if (Instruction *Inst = DI->second.getInst())
Chris Lattnerd44745d2008-12-07 18:39:13 +0000644 RemoveFromReverseMap(ReverseNonLocalDeps, Inst, RemInst);
Chris Lattnerf68f3102008-11-30 02:28:25 +0000645 NonLocalDeps.erase(NLDI);
646 }
Owen Anderson5fc4aba2007-12-08 01:37:09 +0000647
Chris Lattner5f589dc2008-11-28 22:04:47 +0000648 // If we have a cached local dependence query for this instruction, remove it.
Chris Lattnerbaad8882008-11-28 22:28:27 +0000649 //
Chris Lattner39f372e2008-11-29 01:43:36 +0000650 LocalDepMapType::iterator LocalDepEntry = LocalDeps.find(RemInst);
651 if (LocalDepEntry != LocalDeps.end()) {
Chris Lattner125ce362008-11-30 01:09:30 +0000652 // Remove us from DepInst's reverse set now that the local dep info is gone.
Chris Lattnerd44745d2008-12-07 18:39:13 +0000653 if (Instruction *Inst = LocalDepEntry->second.getInst())
654 RemoveFromReverseMap(ReverseLocalDeps, Inst, RemInst);
Chris Lattner125ce362008-11-30 01:09:30 +0000655
Chris Lattnerbaad8882008-11-28 22:28:27 +0000656 // Remove this local dependency info.
Chris Lattner39f372e2008-11-29 01:43:36 +0000657 LocalDeps.erase(LocalDepEntry);
Chris Lattner6290f5c2008-12-07 08:50:20 +0000658 }
659
660 // If we have any cached pointer dependencies on this instruction, remove
661 // them. If the instruction has non-pointer type, then it can't be a pointer
662 // base.
663
664 // Remove it from both the load info and the store info. The instruction
665 // can't be in either of these maps if it is non-pointer.
666 if (isa<PointerType>(RemInst->getType())) {
667 RemoveCachedNonLocalPointerDependencies(ValueIsLoadPair(RemInst, false));
668 RemoveCachedNonLocalPointerDependencies(ValueIsLoadPair(RemInst, true));
669 }
Chris Lattnerbaad8882008-11-28 22:28:27 +0000670
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000671 // Loop over all of the things that depend on the instruction we're removing.
672 //
Chris Lattner4f8c18c2008-11-29 23:30:39 +0000673 SmallVector<std::pair<Instruction*, Instruction*>, 8> ReverseDepsToAdd;
Chris Lattner0655f732008-12-07 18:42:51 +0000674
675 // If we find RemInst as a clobber or Def in any of the maps for other values,
676 // we need to replace its entry with a dirty version of the instruction after
677 // it. If RemInst is a terminator, we use a null dirty value.
678 //
679 // Using a dirty version of the instruction after RemInst saves having to scan
680 // the entire block to get to this point.
681 MemDepResult NewDirtyVal;
682 if (!RemInst->isTerminator())
683 NewDirtyVal = MemDepResult::getDirty(++BasicBlock::iterator(RemInst));
Chris Lattner4f8c18c2008-11-29 23:30:39 +0000684
Chris Lattner8c465272008-11-29 09:20:15 +0000685 ReverseDepMapType::iterator ReverseDepIt = ReverseLocalDeps.find(RemInst);
686 if (ReverseDepIt != ReverseLocalDeps.end()) {
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000687 SmallPtrSet<Instruction*, 4> &ReverseDeps = ReverseDepIt->second;
Chris Lattner6290f5c2008-12-07 08:50:20 +0000688 // RemInst can't be the terminator if it has local stuff depending on it.
Chris Lattner125ce362008-11-30 01:09:30 +0000689 assert(!ReverseDeps.empty() && !isa<TerminatorInst>(RemInst) &&
690 "Nothing can locally depend on a terminator");
691
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000692 for (SmallPtrSet<Instruction*, 4>::iterator I = ReverseDeps.begin(),
693 E = ReverseDeps.end(); I != E; ++I) {
694 Instruction *InstDependingOnRemInst = *I;
Chris Lattnerf68f3102008-11-30 02:28:25 +0000695 assert(InstDependingOnRemInst != RemInst &&
696 "Already removed our local dep info");
Chris Lattner125ce362008-11-30 01:09:30 +0000697
Chris Lattner0655f732008-12-07 18:42:51 +0000698 LocalDeps[InstDependingOnRemInst] = NewDirtyVal;
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000699
Chris Lattner125ce362008-11-30 01:09:30 +0000700 // Make sure to remember that new things depend on NewDepInst.
Chris Lattner0655f732008-12-07 18:42:51 +0000701 assert(NewDirtyVal.getInst() && "There is no way something else can have "
702 "a local dep on this if it is a terminator!");
703 ReverseDepsToAdd.push_back(std::make_pair(NewDirtyVal.getInst(),
Chris Lattner125ce362008-11-30 01:09:30 +0000704 InstDependingOnRemInst));
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000705 }
Chris Lattner4f8c18c2008-11-29 23:30:39 +0000706
707 ReverseLocalDeps.erase(ReverseDepIt);
708
709 // Add new reverse deps after scanning the set, to avoid invalidating the
710 // 'ReverseDeps' reference.
711 while (!ReverseDepsToAdd.empty()) {
712 ReverseLocalDeps[ReverseDepsToAdd.back().first]
713 .insert(ReverseDepsToAdd.back().second);
714 ReverseDepsToAdd.pop_back();
715 }
Owen Anderson78e02f72007-07-06 23:14:35 +0000716 }
Owen Anderson4d13de42007-08-16 21:27:05 +0000717
Chris Lattner8c465272008-11-29 09:20:15 +0000718 ReverseDepIt = ReverseNonLocalDeps.find(RemInst);
719 if (ReverseDepIt != ReverseNonLocalDeps.end()) {
Chris Lattner6290f5c2008-12-07 08:50:20 +0000720 SmallPtrSet<Instruction*, 4> &Set = ReverseDepIt->second;
721 for (SmallPtrSet<Instruction*, 4>::iterator I = Set.begin(), E = Set.end();
Chris Lattnerf68f3102008-11-30 02:28:25 +0000722 I != E; ++I) {
723 assert(*I != RemInst && "Already removed NonLocalDep info for RemInst");
724
Chris Lattner4a69bad2008-11-30 02:52:26 +0000725 PerInstNLInfo &INLD = NonLocalDeps[*I];
Chris Lattner4a69bad2008-11-30 02:52:26 +0000726 // The information is now dirty!
Chris Lattnerbf145d62008-12-01 01:15:42 +0000727 INLD.second = true;
Chris Lattnerf68f3102008-11-30 02:28:25 +0000728
Chris Lattnerbf145d62008-12-01 01:15:42 +0000729 for (NonLocalDepInfo::iterator DI = INLD.first.begin(),
730 DE = INLD.first.end(); DI != DE; ++DI) {
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000731 if (DI->second.getInst() != RemInst) continue;
Chris Lattnerf68f3102008-11-30 02:28:25 +0000732
733 // Convert to a dirty entry for the subsequent instruction.
Chris Lattner0655f732008-12-07 18:42:51 +0000734 DI->second = NewDirtyVal;
735
736 if (Instruction *NextI = NewDirtyVal.getInst())
Chris Lattnerf68f3102008-11-30 02:28:25 +0000737 ReverseDepsToAdd.push_back(std::make_pair(NextI, *I));
Chris Lattnerf68f3102008-11-30 02:28:25 +0000738 }
739 }
Chris Lattner4f8c18c2008-11-29 23:30:39 +0000740
741 ReverseNonLocalDeps.erase(ReverseDepIt);
742
Chris Lattner0ec48dd2008-11-29 22:02:15 +0000743 // Add new reverse deps after scanning the set, to avoid invalidating 'Set'
744 while (!ReverseDepsToAdd.empty()) {
745 ReverseNonLocalDeps[ReverseDepsToAdd.back().first]
746 .insert(ReverseDepsToAdd.back().second);
747 ReverseDepsToAdd.pop_back();
748 }
Owen Anderson4d13de42007-08-16 21:27:05 +0000749 }
Owen Anderson5fc4aba2007-12-08 01:37:09 +0000750
Chris Lattner6290f5c2008-12-07 08:50:20 +0000751 // If the instruction is in ReverseNonLocalPtrDeps then it appears as a
752 // value in the NonLocalPointerDeps info.
753 ReverseNonLocalPtrDepTy::iterator ReversePtrDepIt =
754 ReverseNonLocalPtrDeps.find(RemInst);
755 if (ReversePtrDepIt != ReverseNonLocalPtrDeps.end()) {
756 SmallPtrSet<void*, 4> &Set = ReversePtrDepIt->second;
757 SmallVector<std::pair<Instruction*, ValueIsLoadPair>,8> ReversePtrDepsToAdd;
758
759 for (SmallPtrSet<void*, 4>::iterator I = Set.begin(), E = Set.end();
760 I != E; ++I) {
761 ValueIsLoadPair P;
762 P.setFromOpaqueValue(*I);
763 assert(P.getPointer() != RemInst &&
764 "Already removed NonLocalPointerDeps info for RemInst");
765
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000766 NonLocalDepInfo &NLPDI = NonLocalPointerDeps[P].second;
767
768 // The cache is not valid for any specific block anymore.
769 NonLocalPointerDeps[P].first = 0;
Chris Lattner6290f5c2008-12-07 08:50:20 +0000770
Chris Lattner6290f5c2008-12-07 08:50:20 +0000771 // Update any entries for RemInst to use the instruction after it.
772 for (NonLocalDepInfo::iterator DI = NLPDI.begin(), DE = NLPDI.end();
773 DI != DE; ++DI) {
774 if (DI->second.getInst() != RemInst) continue;
775
776 // Convert to a dirty entry for the subsequent instruction.
777 DI->second = NewDirtyVal;
778
779 if (Instruction *NewDirtyInst = NewDirtyVal.getInst())
780 ReversePtrDepsToAdd.push_back(std::make_pair(NewDirtyInst, P));
781 }
782 }
783
784 ReverseNonLocalPtrDeps.erase(ReversePtrDepIt);
785
786 while (!ReversePtrDepsToAdd.empty()) {
787 ReverseNonLocalPtrDeps[ReversePtrDepsToAdd.back().first]
788 .insert(ReversePtrDepsToAdd.back().second.getOpaqueValue());
789 ReversePtrDepsToAdd.pop_back();
790 }
791 }
792
793
Chris Lattnerf68f3102008-11-30 02:28:25 +0000794 assert(!NonLocalDeps.count(RemInst) && "RemInst got reinserted?");
Chris Lattnerd777d402008-11-30 19:24:31 +0000795 AA->deleteValue(RemInst);
Chris Lattner5f589dc2008-11-28 22:04:47 +0000796 DEBUG(verifyRemoved(RemInst));
Owen Anderson78e02f72007-07-06 23:14:35 +0000797}
Chris Lattner729b2372008-11-29 21:25:10 +0000798
799/// verifyRemoved - Verify that the specified instruction does not occur
800/// in our internal data structures.
801void MemoryDependenceAnalysis::verifyRemoved(Instruction *D) const {
802 for (LocalDepMapType::const_iterator I = LocalDeps.begin(),
803 E = LocalDeps.end(); I != E; ++I) {
804 assert(I->first != D && "Inst occurs in data structures");
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000805 assert(I->second.getInst() != D &&
Chris Lattner729b2372008-11-29 21:25:10 +0000806 "Inst occurs in data structures");
807 }
808
Chris Lattner6290f5c2008-12-07 08:50:20 +0000809 for (CachedNonLocalPointerInfo::const_iterator I =NonLocalPointerDeps.begin(),
810 E = NonLocalPointerDeps.end(); I != E; ++I) {
811 assert(I->first.getPointer() != D && "Inst occurs in NLPD map key");
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000812 const NonLocalDepInfo &Val = I->second.second;
Chris Lattner6290f5c2008-12-07 08:50:20 +0000813 for (NonLocalDepInfo::const_iterator II = Val.begin(), E = Val.end();
814 II != E; ++II)
815 assert(II->second.getInst() != D && "Inst occurs as NLPD value");
816 }
817
Chris Lattner729b2372008-11-29 21:25:10 +0000818 for (NonLocalDepMapType::const_iterator I = NonLocalDeps.begin(),
819 E = NonLocalDeps.end(); I != E; ++I) {
820 assert(I->first != D && "Inst occurs in data structures");
Chris Lattner4a69bad2008-11-30 02:52:26 +0000821 const PerInstNLInfo &INLD = I->second;
Chris Lattnerbf145d62008-12-01 01:15:42 +0000822 for (NonLocalDepInfo::const_iterator II = INLD.first.begin(),
823 EE = INLD.first.end(); II != EE; ++II)
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000824 assert(II->second.getInst() != D && "Inst occurs in data structures");
Chris Lattner729b2372008-11-29 21:25:10 +0000825 }
826
827 for (ReverseDepMapType::const_iterator I = ReverseLocalDeps.begin(),
Chris Lattnerf68f3102008-11-30 02:28:25 +0000828 E = ReverseLocalDeps.end(); I != E; ++I) {
829 assert(I->first != D && "Inst occurs in data structures");
Chris Lattner729b2372008-11-29 21:25:10 +0000830 for (SmallPtrSet<Instruction*, 4>::const_iterator II = I->second.begin(),
831 EE = I->second.end(); II != EE; ++II)
832 assert(*II != D && "Inst occurs in data structures");
Chris Lattnerf68f3102008-11-30 02:28:25 +0000833 }
Chris Lattner729b2372008-11-29 21:25:10 +0000834
835 for (ReverseDepMapType::const_iterator I = ReverseNonLocalDeps.begin(),
836 E = ReverseNonLocalDeps.end();
Chris Lattnerf68f3102008-11-30 02:28:25 +0000837 I != E; ++I) {
838 assert(I->first != D && "Inst occurs in data structures");
Chris Lattner729b2372008-11-29 21:25:10 +0000839 for (SmallPtrSet<Instruction*, 4>::const_iterator II = I->second.begin(),
840 EE = I->second.end(); II != EE; ++II)
841 assert(*II != D && "Inst occurs in data structures");
Chris Lattnerf68f3102008-11-30 02:28:25 +0000842 }
Chris Lattner6290f5c2008-12-07 08:50:20 +0000843
844 for (ReverseNonLocalPtrDepTy::const_iterator
845 I = ReverseNonLocalPtrDeps.begin(),
846 E = ReverseNonLocalPtrDeps.end(); I != E; ++I) {
847 assert(I->first != D && "Inst occurs in rev NLPD map");
848
849 for (SmallPtrSet<void*, 4>::const_iterator II = I->second.begin(),
850 E = I->second.end(); II != E; ++II)
851 assert(*II != ValueIsLoadPair(D, false).getOpaqueValue() &&
852 *II != ValueIsLoadPair(D, true).getOpaqueValue() &&
853 "Inst occurs in ReverseNonLocalPtrDeps map");
854 }
855
Chris Lattner729b2372008-11-29 21:25:10 +0000856}