blob: e29781af4b9f617004fcfec108ea2c4c439e7e1b [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"
Chris Lattner4012fdd2008-12-09 06:28:49 +000024#include "llvm/Support/PredIteratorCache.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
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>();
72 AU.addRequiredTransitive<TargetData>();
73}
74
Chris Lattnerd777d402008-11-30 19:24:31 +000075bool MemoryDependenceAnalysis::runOnFunction(Function &) {
76 AA = &getAnalysis<AliasAnalysis>();
77 TD = &getAnalysis<TargetData>();
Chris Lattner4012fdd2008-12-09 06:28:49 +000078 if (PredCache == 0)
79 PredCache.reset(new PredIteratorCache());
Chris Lattnerd777d402008-11-30 19:24:31 +000080 return false;
81}
82
Chris Lattnerd44745d2008-12-07 18:39:13 +000083/// RemoveFromReverseMap - This is a helper function that removes Val from
84/// 'Inst's set in ReverseMap. If the set becomes empty, remove Inst's entry.
85template <typename KeyTy>
86static void RemoveFromReverseMap(DenseMap<Instruction*,
87 SmallPtrSet<KeyTy*, 4> > &ReverseMap,
88 Instruction *Inst, KeyTy *Val) {
89 typename DenseMap<Instruction*, SmallPtrSet<KeyTy*, 4> >::iterator
90 InstIt = ReverseMap.find(Inst);
91 assert(InstIt != ReverseMap.end() && "Reverse map out of sync?");
92 bool Found = InstIt->second.erase(Val);
93 assert(Found && "Invalid reverse map!"); Found=Found;
94 if (InstIt->second.empty())
95 ReverseMap.erase(InstIt);
96}
97
Chris Lattnerbf145d62008-12-01 01:15:42 +000098
Chris Lattner8ef57c52008-12-07 00:35:51 +000099/// getCallSiteDependencyFrom - Private helper for finding the local
100/// dependencies of a call site.
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000101MemDepResult MemoryDependenceAnalysis::
Chris Lattner8ef57c52008-12-07 00:35:51 +0000102getCallSiteDependencyFrom(CallSite CS, BasicBlock::iterator ScanIt,
103 BasicBlock *BB) {
Owen Anderson642a9e32007-08-08 22:26:03 +0000104 // Walk backwards through the block, looking for dependencies
Chris Lattner5391a1d2008-11-29 03:47:00 +0000105 while (ScanIt != BB->begin()) {
106 Instruction *Inst = --ScanIt;
Owen Anderson5f323202007-07-10 17:59:22 +0000107
108 // If this inst is a memory op, get the pointer it accessed
Chris Lattner00314b32008-11-29 09:15:21 +0000109 Value *Pointer = 0;
110 uint64_t PointerSize = 0;
111 if (StoreInst *S = dyn_cast<StoreInst>(Inst)) {
112 Pointer = S->getPointerOperand();
Chris Lattnerd777d402008-11-30 19:24:31 +0000113 PointerSize = TD->getTypeStoreSize(S->getOperand(0)->getType());
Chris Lattner00314b32008-11-29 09:15:21 +0000114 } else if (VAArgInst *V = dyn_cast<VAArgInst>(Inst)) {
115 Pointer = V->getOperand(0);
Chris Lattnerd777d402008-11-30 19:24:31 +0000116 PointerSize = TD->getTypeStoreSize(V->getType());
Chris Lattner00314b32008-11-29 09:15:21 +0000117 } else if (FreeInst *F = dyn_cast<FreeInst>(Inst)) {
118 Pointer = F->getPointerOperand();
Owen Anderson5f323202007-07-10 17:59:22 +0000119
120 // FreeInsts erase the entire structure
Chris Lattner6290f5c2008-12-07 08:50:20 +0000121 PointerSize = ~0ULL;
Chris Lattner00314b32008-11-29 09:15:21 +0000122 } else if (isa<CallInst>(Inst) || isa<InvokeInst>(Inst)) {
Chris Lattnerb51deb92008-12-05 21:04:20 +0000123 CallSite InstCS = CallSite::get(Inst);
124 // If these two calls do not interfere, look past it.
125 if (AA->getModRefInfo(CS, InstCS) == AliasAnalysis::NoModRef)
Chris Lattner00314b32008-11-29 09:15:21 +0000126 continue;
Chris Lattnerb51deb92008-12-05 21:04:20 +0000127
128 // FIXME: If this is a ref/ref result, we should ignore it!
129 // X = strlen(P);
130 // Y = strlen(Q);
131 // Z = strlen(P); // Z = X
132
133 // If they interfere, we generally return clobber. However, if they are
134 // calls to the same read-only functions we return Def.
135 if (!AA->onlyReadsMemory(CS) || CS.getCalledFunction() == 0 ||
136 CS.getCalledFunction() != InstCS.getCalledFunction())
137 return MemDepResult::getClobber(Inst);
138 return MemDepResult::getDef(Inst);
Chris Lattnercfbb6342008-11-30 01:44:00 +0000139 } else {
140 // Non-memory instruction.
Owen Anderson202da142007-07-10 20:39:07 +0000141 continue;
Chris Lattnercfbb6342008-11-30 01:44:00 +0000142 }
Owen Anderson5f323202007-07-10 17:59:22 +0000143
Chris Lattnerb51deb92008-12-05 21:04:20 +0000144 if (AA->getModRefInfo(CS, Pointer, PointerSize) != AliasAnalysis::NoModRef)
145 return MemDepResult::getClobber(Inst);
Owen Anderson5f323202007-07-10 17:59:22 +0000146 }
147
Chris Lattner7ebcf032008-12-07 02:15:47 +0000148 // No dependence found. If this is the entry block of the function, it is a
149 // clobber, otherwise it is non-local.
150 if (BB != &BB->getParent()->getEntryBlock())
151 return MemDepResult::getNonLocal();
152 return MemDepResult::getClobber(ScanIt);
Owen Anderson5f323202007-07-10 17:59:22 +0000153}
154
Chris Lattnere79be942008-12-07 01:50:16 +0000155/// getPointerDependencyFrom - Return the instruction on which a memory
156/// location depends. If isLoad is true, this routine ignore may-aliases with
157/// read-only operations.
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000158MemDepResult MemoryDependenceAnalysis::
Chris Lattnere79be942008-12-07 01:50:16 +0000159getPointerDependencyFrom(Value *MemPtr, uint64_t MemSize, bool isLoad,
160 BasicBlock::iterator ScanIt, BasicBlock *BB) {
Chris Lattner7ebcf032008-12-07 02:15:47 +0000161
Chris Lattner6290f5c2008-12-07 08:50:20 +0000162 // Walk backwards through the basic block, looking for dependencies.
Chris Lattner5391a1d2008-11-29 03:47:00 +0000163 while (ScanIt != BB->begin()) {
164 Instruction *Inst = --ScanIt;
Chris Lattnera161ab02008-11-29 09:09:48 +0000165
Chris Lattnercfbb6342008-11-30 01:44:00 +0000166 // Values depend on loads if the pointers are must aliased. This means that
167 // a load depends on another must aliased load from the same value.
Chris Lattnerb51deb92008-12-05 21:04:20 +0000168 if (LoadInst *LI = dyn_cast<LoadInst>(Inst)) {
Chris Lattnerb51deb92008-12-05 21:04:20 +0000169 Value *Pointer = LI->getPointerOperand();
170 uint64_t PointerSize = TD->getTypeStoreSize(LI->getType());
171
172 // If we found a pointer, check if it could be the same as our pointer.
Chris Lattnera161ab02008-11-29 09:09:48 +0000173 AliasAnalysis::AliasResult R =
Chris Lattnerd777d402008-11-30 19:24:31 +0000174 AA->alias(Pointer, PointerSize, MemPtr, MemSize);
Chris Lattnera161ab02008-11-29 09:09:48 +0000175 if (R == AliasAnalysis::NoAlias)
176 continue;
177
178 // May-alias loads don't depend on each other without a dependence.
Chris Lattnere79be942008-12-07 01:50:16 +0000179 if (isLoad && R == AliasAnalysis::MayAlias)
Chris Lattnera161ab02008-11-29 09:09:48 +0000180 continue;
Chris Lattner6290f5c2008-12-07 08:50:20 +0000181 // Stores depend on may and must aliased loads, loads depend on must-alias
182 // loads.
Chris Lattnerb51deb92008-12-05 21:04:20 +0000183 return MemDepResult::getDef(Inst);
184 }
185
186 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
Chris Lattnerb51deb92008-12-05 21:04:20 +0000187 Value *Pointer = SI->getPointerOperand();
188 uint64_t PointerSize = TD->getTypeStoreSize(SI->getOperand(0)->getType());
189
190 // If we found a pointer, check if it could be the same as our pointer.
191 AliasAnalysis::AliasResult R =
192 AA->alias(Pointer, PointerSize, MemPtr, MemSize);
193
194 if (R == AliasAnalysis::NoAlias)
195 continue;
196 if (R == AliasAnalysis::MayAlias)
197 return MemDepResult::getClobber(Inst);
198 return MemDepResult::getDef(Inst);
Owen Anderson78e02f72007-07-06 23:14:35 +0000199 }
Chris Lattner237a8282008-11-30 01:39:32 +0000200
201 // If this is an allocation, and if we know that the accessed pointer is to
Chris Lattnerb51deb92008-12-05 21:04:20 +0000202 // the allocation, return Def. This means that there is no dependence and
Chris Lattner237a8282008-11-30 01:39:32 +0000203 // the access can be optimized based on that. For example, a load could
204 // turn into undef.
Chris Lattnera161ab02008-11-29 09:09:48 +0000205 if (AllocationInst *AI = dyn_cast<AllocationInst>(Inst)) {
Chris Lattner237a8282008-11-30 01:39:32 +0000206 Value *AccessPtr = MemPtr->getUnderlyingObject();
Owen Anderson78e02f72007-07-06 23:14:35 +0000207
Chris Lattner237a8282008-11-30 01:39:32 +0000208 if (AccessPtr == AI ||
Chris Lattnerd777d402008-11-30 19:24:31 +0000209 AA->alias(AI, 1, AccessPtr, 1) == AliasAnalysis::MustAlias)
Chris Lattnerb51deb92008-12-05 21:04:20 +0000210 return MemDepResult::getDef(AI);
Chris Lattner237a8282008-11-30 01:39:32 +0000211 continue;
Chris Lattnera161ab02008-11-29 09:09:48 +0000212 }
Chris Lattnera161ab02008-11-29 09:09:48 +0000213
Chris Lattnerb51deb92008-12-05 21:04:20 +0000214 // See if this instruction (e.g. a call or vaarg) mod/ref's the pointer.
Chris Lattnere79be942008-12-07 01:50:16 +0000215 // FIXME: If this is a load, we should ignore readonly calls!
Chris Lattnerb51deb92008-12-05 21:04:20 +0000216 if (AA->getModRefInfo(Inst, MemPtr, MemSize) == AliasAnalysis::NoModRef)
Chris Lattner25a08142008-11-29 08:51:16 +0000217 continue;
Chris Lattnera161ab02008-11-29 09:09:48 +0000218
219 // Otherwise, there is a dependence.
Chris Lattnerb51deb92008-12-05 21:04:20 +0000220 return MemDepResult::getClobber(Inst);
Owen Anderson78e02f72007-07-06 23:14:35 +0000221 }
222
Chris Lattner7ebcf032008-12-07 02:15:47 +0000223 // No dependence found. If this is the entry block of the function, it is a
224 // clobber, otherwise it is non-local.
225 if (BB != &BB->getParent()->getEntryBlock())
226 return MemDepResult::getNonLocal();
227 return MemDepResult::getClobber(ScanIt);
Owen Anderson78e02f72007-07-06 23:14:35 +0000228}
229
Chris Lattner5391a1d2008-11-29 03:47:00 +0000230/// getDependency - Return the instruction on which a memory operation
231/// depends.
232MemDepResult MemoryDependenceAnalysis::getDependency(Instruction *QueryInst) {
233 Instruction *ScanPos = QueryInst;
234
235 // Check for a cached result
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000236 MemDepResult &LocalCache = LocalDeps[QueryInst];
Chris Lattner5391a1d2008-11-29 03:47:00 +0000237
Chris Lattner0ec48dd2008-11-29 22:02:15 +0000238 // If the cached entry is non-dirty, just return it. Note that this depends
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000239 // on MemDepResult's default constructing to 'dirty'.
240 if (!LocalCache.isDirty())
241 return LocalCache;
Chris Lattner5391a1d2008-11-29 03:47:00 +0000242
243 // Otherwise, if we have a dirty entry, we know we can start the scan at that
244 // instruction, which may save us some work.
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000245 if (Instruction *Inst = LocalCache.getInst()) {
Chris Lattner5391a1d2008-11-29 03:47:00 +0000246 ScanPos = Inst;
Chris Lattner4a69bad2008-11-30 02:52:26 +0000247
Chris Lattnerd44745d2008-12-07 18:39:13 +0000248 RemoveFromReverseMap(ReverseLocalDeps, Inst, QueryInst);
Chris Lattner4a69bad2008-11-30 02:52:26 +0000249 }
Chris Lattner5391a1d2008-11-29 03:47:00 +0000250
Chris Lattnere79be942008-12-07 01:50:16 +0000251 BasicBlock *QueryParent = QueryInst->getParent();
252
253 Value *MemPtr = 0;
254 uint64_t MemSize = 0;
255
Chris Lattner5391a1d2008-11-29 03:47:00 +0000256 // Do the scan.
Chris Lattnere79be942008-12-07 01:50:16 +0000257 if (BasicBlock::iterator(QueryInst) == QueryParent->begin()) {
Chris Lattner7ebcf032008-12-07 02:15:47 +0000258 // No dependence found. If this is the entry block of the function, it is a
259 // clobber, otherwise it is non-local.
260 if (QueryParent != &QueryParent->getParent()->getEntryBlock())
261 LocalCache = MemDepResult::getNonLocal();
262 else
263 LocalCache = MemDepResult::getClobber(QueryInst);
Chris Lattnere79be942008-12-07 01:50:16 +0000264 } else if (StoreInst *SI = dyn_cast<StoreInst>(QueryInst)) {
265 // If this is a volatile store, don't mess around with it. Just return the
266 // previous instruction as a clobber.
267 if (SI->isVolatile())
268 LocalCache = MemDepResult::getClobber(--BasicBlock::iterator(ScanPos));
269 else {
270 MemPtr = SI->getPointerOperand();
271 MemSize = TD->getTypeStoreSize(SI->getOperand(0)->getType());
272 }
273 } else if (LoadInst *LI = dyn_cast<LoadInst>(QueryInst)) {
274 // If this is a volatile load, don't mess around with it. Just return the
275 // previous instruction as a clobber.
276 if (LI->isVolatile())
277 LocalCache = MemDepResult::getClobber(--BasicBlock::iterator(ScanPos));
278 else {
279 MemPtr = LI->getPointerOperand();
280 MemSize = TD->getTypeStoreSize(LI->getType());
281 }
282 } else if (isa<CallInst>(QueryInst) || isa<InvokeInst>(QueryInst)) {
Chris Lattnerd8dd9342008-12-07 01:21:14 +0000283 LocalCache = getCallSiteDependencyFrom(CallSite::get(QueryInst), ScanPos,
Chris Lattnere79be942008-12-07 01:50:16 +0000284 QueryParent);
285 } else if (FreeInst *FI = dyn_cast<FreeInst>(QueryInst)) {
286 MemPtr = FI->getPointerOperand();
287 // FreeInsts erase the entire structure, not just a field.
288 MemSize = ~0UL;
289 } else {
290 // Non-memory instruction.
291 LocalCache = MemDepResult::getClobber(--BasicBlock::iterator(ScanPos));
292 }
293
294 // If we need to do a pointer scan, make it happen.
295 if (MemPtr)
296 LocalCache = getPointerDependencyFrom(MemPtr, MemSize,
297 isa<LoadInst>(QueryInst),
298 ScanPos, QueryParent);
Chris Lattner5391a1d2008-11-29 03:47:00 +0000299
300 // Remember the result!
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000301 if (Instruction *I = LocalCache.getInst())
Chris Lattner8c465272008-11-29 09:20:15 +0000302 ReverseLocalDeps[I].insert(QueryInst);
Chris Lattner5391a1d2008-11-29 03:47:00 +0000303
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000304 return LocalCache;
Chris Lattner5391a1d2008-11-29 03:47:00 +0000305}
306
Chris Lattner37d041c2008-11-30 01:18:27 +0000307/// getNonLocalDependency - Perform a full dependency query for the
308/// specified instruction, returning the set of blocks that the value is
309/// potentially live across. The returned set of results will include a
310/// "NonLocal" result for all blocks where the value is live across.
311///
312/// This method assumes the instruction returns a "nonlocal" dependency
313/// within its own block.
314///
Chris Lattnerbf145d62008-12-01 01:15:42 +0000315const MemoryDependenceAnalysis::NonLocalDepInfo &
316MemoryDependenceAnalysis::getNonLocalDependency(Instruction *QueryInst) {
Chris Lattner7ebcf032008-12-07 02:15:47 +0000317 // FIXME: Make this only be for callsites in the future.
Chris Lattnere79be942008-12-07 01:50:16 +0000318 assert(isa<CallInst>(QueryInst) || isa<InvokeInst>(QueryInst) ||
319 isa<LoadInst>(QueryInst) || isa<StoreInst>(QueryInst));
Chris Lattner37d041c2008-11-30 01:18:27 +0000320 assert(getDependency(QueryInst).isNonLocal() &&
321 "getNonLocalDependency should only be used on insts with non-local deps!");
Chris Lattner4a69bad2008-11-30 02:52:26 +0000322 PerInstNLInfo &CacheP = NonLocalDeps[QueryInst];
Chris Lattnerbf145d62008-12-01 01:15:42 +0000323 NonLocalDepInfo &Cache = CacheP.first;
Chris Lattner37d041c2008-11-30 01:18:27 +0000324
325 /// DirtyBlocks - This is the set of blocks that need to be recomputed. In
326 /// the cached case, this can happen due to instructions being deleted etc. In
327 /// the uncached case, this starts out as the set of predecessors we care
328 /// about.
329 SmallVector<BasicBlock*, 32> DirtyBlocks;
330
331 if (!Cache.empty()) {
Chris Lattnerbf145d62008-12-01 01:15:42 +0000332 // Okay, we have a cache entry. If we know it is not dirty, just return it
333 // with no computation.
334 if (!CacheP.second) {
335 NumCacheNonLocal++;
336 return Cache;
337 }
338
Chris Lattner37d041c2008-11-30 01:18:27 +0000339 // If we already have a partially computed set of results, scan them to
Chris Lattnerbf145d62008-12-01 01:15:42 +0000340 // determine what is dirty, seeding our initial DirtyBlocks worklist.
341 for (NonLocalDepInfo::iterator I = Cache.begin(), E = Cache.end();
342 I != E; ++I)
343 if (I->second.isDirty())
344 DirtyBlocks.push_back(I->first);
Chris Lattner37d041c2008-11-30 01:18:27 +0000345
Chris Lattnerbf145d62008-12-01 01:15:42 +0000346 // Sort the cache so that we can do fast binary search lookups below.
347 std::sort(Cache.begin(), Cache.end());
Chris Lattner37d041c2008-11-30 01:18:27 +0000348
Chris Lattnerbf145d62008-12-01 01:15:42 +0000349 ++NumCacheDirtyNonLocal;
Chris Lattner37d041c2008-11-30 01:18:27 +0000350 //cerr << "CACHED CASE: " << DirtyBlocks.size() << " dirty: "
351 // << Cache.size() << " cached: " << *QueryInst;
352 } else {
353 // Seed DirtyBlocks with each of the preds of QueryInst's block.
354 BasicBlock *QueryBB = QueryInst->getParent();
Chris Lattner511b36c2008-12-09 06:44:17 +0000355 for (BasicBlock **PI = PredCache->GetPreds(QueryBB); *PI; ++PI)
356 DirtyBlocks.push_back(*PI);
Chris Lattner37d041c2008-11-30 01:18:27 +0000357 NumUncacheNonLocal++;
358 }
359
Chris Lattnerbf145d62008-12-01 01:15:42 +0000360 // Visited checked first, vector in sorted order.
361 SmallPtrSet<BasicBlock*, 64> Visited;
362
363 unsigned NumSortedEntries = Cache.size();
364
Chris Lattner37d041c2008-11-30 01:18:27 +0000365 // Iterate while we still have blocks to update.
366 while (!DirtyBlocks.empty()) {
367 BasicBlock *DirtyBB = DirtyBlocks.back();
368 DirtyBlocks.pop_back();
369
Chris Lattnerbf145d62008-12-01 01:15:42 +0000370 // Already processed this block?
371 if (!Visited.insert(DirtyBB))
372 continue;
Chris Lattner37d041c2008-11-30 01:18:27 +0000373
Chris Lattnerbf145d62008-12-01 01:15:42 +0000374 // Do a binary search to see if we already have an entry for this block in
375 // the cache set. If so, find it.
376 NonLocalDepInfo::iterator Entry =
377 std::upper_bound(Cache.begin(), Cache.begin()+NumSortedEntries,
378 std::make_pair(DirtyBB, MemDepResult()));
379 if (Entry != Cache.begin() && (&*Entry)[-1].first == DirtyBB)
380 --Entry;
381
382 MemDepResult *ExistingResult = 0;
383 if (Entry != Cache.begin()+NumSortedEntries &&
384 Entry->first == DirtyBB) {
385 // If we already have an entry, and if it isn't already dirty, the block
386 // is done.
387 if (!Entry->second.isDirty())
388 continue;
389
390 // Otherwise, remember this slot so we can update the value.
391 ExistingResult = &Entry->second;
392 }
393
Chris Lattner37d041c2008-11-30 01:18:27 +0000394 // If the dirty entry has a pointer, start scanning from it so we don't have
395 // to rescan the entire block.
396 BasicBlock::iterator ScanPos = DirtyBB->end();
Chris Lattnerbf145d62008-12-01 01:15:42 +0000397 if (ExistingResult) {
398 if (Instruction *Inst = ExistingResult->getInst()) {
399 ScanPos = Inst;
Chris Lattnerbf145d62008-12-01 01:15:42 +0000400 // We're removing QueryInst's use of Inst.
Chris Lattnerd44745d2008-12-07 18:39:13 +0000401 RemoveFromReverseMap(ReverseNonLocalDeps, Inst, QueryInst);
Chris Lattnerbf145d62008-12-01 01:15:42 +0000402 }
Chris Lattnerf68f3102008-11-30 02:28:25 +0000403 }
Chris Lattner37d041c2008-11-30 01:18:27 +0000404
Chris Lattner73ec3cd2008-11-30 01:26:32 +0000405 // Find out if this block has a local dependency for QueryInst.
Chris Lattnerd8dd9342008-12-07 01:21:14 +0000406 MemDepResult Dep;
Chris Lattnere79be942008-12-07 01:50:16 +0000407
408 Value *MemPtr = 0;
409 uint64_t MemSize = 0;
410
Chris Lattner7ebcf032008-12-07 02:15:47 +0000411 if (ScanPos == DirtyBB->begin()) {
412 // No dependence found. If this is the entry block of the function, it is a
413 // clobber, otherwise it is non-local.
414 if (DirtyBB != &DirtyBB->getParent()->getEntryBlock())
415 Dep = MemDepResult::getNonLocal();
416 else
417 Dep = MemDepResult::getClobber(ScanPos);
Chris Lattnere79be942008-12-07 01:50:16 +0000418 } else if (StoreInst *SI = dyn_cast<StoreInst>(QueryInst)) {
419 // If this is a volatile store, don't mess around with it. Just return the
420 // previous instruction as a clobber.
421 if (SI->isVolatile())
422 Dep = MemDepResult::getClobber(--BasicBlock::iterator(ScanPos));
423 else {
424 MemPtr = SI->getPointerOperand();
425 MemSize = TD->getTypeStoreSize(SI->getOperand(0)->getType());
426 }
427 } else if (LoadInst *LI = dyn_cast<LoadInst>(QueryInst)) {
428 // If this is a volatile load, don't mess around with it. Just return the
429 // previous instruction as a clobber.
430 if (LI->isVolatile())
431 Dep = MemDepResult::getClobber(--BasicBlock::iterator(ScanPos));
432 else {
433 MemPtr = LI->getPointerOperand();
434 MemSize = TD->getTypeStoreSize(LI->getType());
435 }
436 } else {
437 assert(isa<CallInst>(QueryInst) || isa<InvokeInst>(QueryInst));
Chris Lattnerd8dd9342008-12-07 01:21:14 +0000438 Dep = getCallSiteDependencyFrom(CallSite::get(QueryInst), ScanPos,
439 DirtyBB);
Chris Lattnere79be942008-12-07 01:50:16 +0000440 }
441
442 if (MemPtr)
443 Dep = getPointerDependencyFrom(MemPtr, MemSize, isa<LoadInst>(QueryInst),
444 ScanPos, DirtyBB);
Chris Lattnerbf145d62008-12-01 01:15:42 +0000445
446 // If we had a dirty entry for the block, update it. Otherwise, just add
447 // a new entry.
448 if (ExistingResult)
449 *ExistingResult = Dep;
450 else
451 Cache.push_back(std::make_pair(DirtyBB, Dep));
452
Chris Lattner37d041c2008-11-30 01:18:27 +0000453 // If the block has a dependency (i.e. it isn't completely transparent to
Chris Lattnerbf145d62008-12-01 01:15:42 +0000454 // the value), remember the association!
455 if (!Dep.isNonLocal()) {
Chris Lattner37d041c2008-11-30 01:18:27 +0000456 // Keep the ReverseNonLocalDeps map up to date so we can efficiently
457 // update this when we remove instructions.
Chris Lattnerbf145d62008-12-01 01:15:42 +0000458 if (Instruction *Inst = Dep.getInst())
Chris Lattner37d041c2008-11-30 01:18:27 +0000459 ReverseNonLocalDeps[Inst].insert(QueryInst);
Chris Lattnerbf145d62008-12-01 01:15:42 +0000460 } else {
Chris Lattner37d041c2008-11-30 01:18:27 +0000461
Chris Lattnerbf145d62008-12-01 01:15:42 +0000462 // If the block *is* completely transparent to the load, we need to check
463 // the predecessors of this block. Add them to our worklist.
Chris Lattner511b36c2008-12-09 06:44:17 +0000464 for (BasicBlock **PI = PredCache->GetPreds(DirtyBB); *PI; ++PI)
465 DirtyBlocks.push_back(*PI);
Chris Lattnerbf145d62008-12-01 01:15:42 +0000466 }
Chris Lattner37d041c2008-11-30 01:18:27 +0000467 }
468
Chris Lattnerbf145d62008-12-01 01:15:42 +0000469 return Cache;
Chris Lattner37d041c2008-11-30 01:18:27 +0000470}
471
Chris Lattner7ebcf032008-12-07 02:15:47 +0000472/// getNonLocalPointerDependency - Perform a full dependency query for an
473/// access to the specified (non-volatile) memory location, returning the
474/// set of instructions that either define or clobber the value.
475///
476/// This method assumes the pointer has a "NonLocal" dependency within its
477/// own block.
478///
479void MemoryDependenceAnalysis::
480getNonLocalPointerDependency(Value *Pointer, bool isLoad, BasicBlock *FromBB,
481 SmallVectorImpl<NonLocalDepEntry> &Result) {
Chris Lattner3f7eb5b2008-12-07 18:45:15 +0000482 assert(isa<PointerType>(Pointer->getType()) &&
483 "Can't get pointer deps of a non-pointer!");
Chris Lattner9a193fd2008-12-07 02:56:57 +0000484 Result.clear();
485
Chris Lattner7ebcf032008-12-07 02:15:47 +0000486 // We know that the pointer value is live into FromBB find the def/clobbers
487 // from presecessors.
Chris Lattner7ebcf032008-12-07 02:15:47 +0000488 const Type *EltTy = cast<PointerType>(Pointer->getType())->getElementType();
489 uint64_t PointeeSize = TD->getTypeStoreSize(EltTy);
490
491 // While we have blocks to analyze, get their values.
492 SmallPtrSet<BasicBlock*, 64> Visited;
Chris Lattner9a193fd2008-12-07 02:56:57 +0000493
Chris Lattner4012fdd2008-12-09 06:28:49 +0000494 for (BasicBlock **PI = PredCache->GetPreds(FromBB); *PI; ++PI) {
Chris Lattner9a193fd2008-12-07 02:56:57 +0000495 // TODO: PHI TRANSLATE.
Chris Lattner9863c3f2008-12-09 07:47:11 +0000496 getNonLocalPointerDepFromBB(Pointer, PointeeSize, isLoad, *PI,
497 Result, Visited);
Chris Lattner9a193fd2008-12-07 02:56:57 +0000498 }
499}
500
Chris Lattner9863c3f2008-12-09 07:47:11 +0000501/// GetNonLocalInfoForBlock - Compute the memdep value for BB with
502/// Pointer/PointeeSize using either cached information in Cache or by doing a
503/// lookup (which may use dirty cache info if available). If we do a lookup,
504/// add the result to the cache.
505MemDepResult MemoryDependenceAnalysis::
506GetNonLocalInfoForBlock(Value *Pointer, uint64_t PointeeSize,
507 bool isLoad, BasicBlock *BB,
508 NonLocalDepInfo *Cache, unsigned NumSortedEntries) {
509
510 // Do a binary search to see if we already have an entry for this block in
511 // the cache set. If so, find it.
512 NonLocalDepInfo::iterator Entry =
513 std::upper_bound(Cache->begin(), Cache->begin()+NumSortedEntries,
514 std::make_pair(BB, MemDepResult()));
515 if (Entry != Cache->begin() && (&*Entry)[-1].first == BB)
516 --Entry;
517
518 MemDepResult *ExistingResult = 0;
519 if (Entry != Cache->begin()+NumSortedEntries && Entry->first == BB)
520 ExistingResult = &Entry->second;
521
522 // If we have a cached entry, and it is non-dirty, use it as the value for
523 // this dependency.
524 if (ExistingResult && !ExistingResult->isDirty()) {
525 ++NumCacheNonLocalPtr;
526 return *ExistingResult;
527 }
528
529 // Otherwise, we have to scan for the value. If we have a dirty cache
530 // entry, start scanning from its position, otherwise we scan from the end
531 // of the block.
532 BasicBlock::iterator ScanPos = BB->end();
533 if (ExistingResult && ExistingResult->getInst()) {
534 assert(ExistingResult->getInst()->getParent() == BB &&
535 "Instruction invalidated?");
536 ++NumCacheDirtyNonLocalPtr;
537 ScanPos = ExistingResult->getInst();
538
539 // Eliminating the dirty entry from 'Cache', so update the reverse info.
540 ValueIsLoadPair CacheKey(Pointer, isLoad);
541 RemoveFromReverseMap(ReverseNonLocalPtrDeps, ScanPos,
542 CacheKey.getOpaqueValue());
543 } else {
544 ++NumUncacheNonLocalPtr;
545 }
546
547 // Scan the block for the dependency.
548 MemDepResult Dep = getPointerDependencyFrom(Pointer, PointeeSize, isLoad,
549 ScanPos, BB);
550
551 // If we had a dirty entry for the block, update it. Otherwise, just add
552 // a new entry.
553 if (ExistingResult)
554 *ExistingResult = Dep;
555 else
556 Cache->push_back(std::make_pair(BB, Dep));
557
558 // If the block has a dependency (i.e. it isn't completely transparent to
559 // the value), remember the reverse association because we just added it
560 // to Cache!
561 if (Dep.isNonLocal())
562 return Dep;
563
564 // Keep the ReverseNonLocalPtrDeps map up to date so we can efficiently
565 // update MemDep when we remove instructions.
566 Instruction *Inst = Dep.getInst();
567 assert(Inst && "Didn't depend on anything?");
568 ValueIsLoadPair CacheKey(Pointer, isLoad);
569 ReverseNonLocalPtrDeps[Inst].insert(CacheKey.getOpaqueValue());
570 return Dep;
571}
572
573
574/// getNonLocalPointerDepFromBB -
Chris Lattner9a193fd2008-12-07 02:56:57 +0000575void MemoryDependenceAnalysis::
Chris Lattner9863c3f2008-12-09 07:47:11 +0000576getNonLocalPointerDepFromBB(Value *Pointer, uint64_t PointeeSize,
577 bool isLoad, BasicBlock *StartBB,
578 SmallVectorImpl<NonLocalDepEntry> &Result,
579 SmallPtrSet<BasicBlock*, 64> &Visited) {
Chris Lattner6290f5c2008-12-07 08:50:20 +0000580 // Look up the cached info for Pointer.
581 ValueIsLoadPair CacheKey(Pointer, isLoad);
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000582
583 std::pair<BasicBlock*, NonLocalDepInfo> &CacheInfo =
584 NonLocalPointerDeps[CacheKey];
585 NonLocalDepInfo *Cache = &CacheInfo.second;
586
587 // If we have valid cached information for exactly the block we are
588 // investigating, just return it with no recomputation.
589 if (CacheInfo.first == StartBB) {
590 for (NonLocalDepInfo::iterator I = Cache->begin(), E = Cache->end();
591 I != E; ++I)
592 if (!I->second.isNonLocal())
593 Result.push_back(*I);
594 ++NumCacheCompleteNonLocalPtr;
595 return;
596 }
597
598 // Otherwise, either this is a new block, a block with an invalid cache
599 // pointer or one that we're about to invalidate by putting more info into it
600 // than its valid cache info. If empty, the result will be valid cache info,
601 // otherwise it isn't.
602 CacheInfo.first = Cache->empty() ? StartBB : 0;
603
604 SmallVector<BasicBlock*, 32> Worklist;
605 Worklist.push_back(StartBB);
Chris Lattner6290f5c2008-12-07 08:50:20 +0000606
607 // Keep track of the entries that we know are sorted. Previously cached
608 // entries will all be sorted. The entries we add we only sort on demand (we
609 // don't insert every element into its sorted position). We know that we
610 // won't get any reuse from currently inserted values, because we don't
611 // revisit blocks after we insert info for them.
612 unsigned NumSortedEntries = Cache->size();
613
Chris Lattner7ebcf032008-12-07 02:15:47 +0000614 while (!Worklist.empty()) {
Chris Lattner9a193fd2008-12-07 02:56:57 +0000615 BasicBlock *BB = Worklist.pop_back_val();
Chris Lattner7ebcf032008-12-07 02:15:47 +0000616
617 // Analyze the dependency of *Pointer in FromBB. See if we already have
618 // been here.
Chris Lattner9a193fd2008-12-07 02:56:57 +0000619 if (!Visited.insert(BB))
Chris Lattner7ebcf032008-12-07 02:15:47 +0000620 continue;
Chris Lattner6290f5c2008-12-07 08:50:20 +0000621
622 // Get the dependency info for Pointer in BB. If we have cached
623 // information, we will use it, otherwise we compute it.
Chris Lattner9863c3f2008-12-09 07:47:11 +0000624 MemDepResult Dep = GetNonLocalInfoForBlock(Pointer, PointeeSize, isLoad,
625 BB, Cache, NumSortedEntries);
Chris Lattner7ebcf032008-12-07 02:15:47 +0000626
627 // If we got a Def or Clobber, add this to the list of results.
628 if (!Dep.isNonLocal()) {
Chris Lattner9a193fd2008-12-07 02:56:57 +0000629 Result.push_back(NonLocalDepEntry(BB, Dep));
Chris Lattner7ebcf032008-12-07 02:15:47 +0000630 continue;
631 }
632
633 // Otherwise, we have to process all the predecessors of this block to scan
634 // them as well.
Chris Lattner4012fdd2008-12-09 06:28:49 +0000635 for (BasicBlock **PI = PredCache->GetPreds(BB); *PI; ++PI) {
Chris Lattner7ebcf032008-12-07 02:15:47 +0000636 // TODO: PHI TRANSLATE.
Chris Lattner9a193fd2008-12-07 02:56:57 +0000637 Worklist.push_back(*PI);
638 }
Chris Lattner7ebcf032008-12-07 02:15:47 +0000639 }
Chris Lattner6290f5c2008-12-07 08:50:20 +0000640
Chris Lattner9863c3f2008-12-09 07:47:11 +0000641 // Okay, we're done now. If we added new values to the cache, re-sort it.
Chris Lattnerba4dacc2008-12-09 07:05:45 +0000642 switch (Cache->size()-NumSortedEntries) {
643 case 0:
Chris Lattner1aeadac2008-12-09 06:58:04 +0000644 // done, no new entries.
Chris Lattnerba4dacc2008-12-09 07:05:45 +0000645 break;
646 case 2: {
647 // Two new entries, insert the last one into place.
648 NonLocalDepEntry Val = Cache->back();
649 Cache->pop_back();
650 NonLocalDepInfo::iterator Entry =
651 std::upper_bound(Cache->begin(), Cache->end()-1, Val);
652 Cache->insert(Entry, Val);
653 // FALL THROUGH.
654 }
655 case 1: {
Chris Lattner1aeadac2008-12-09 06:58:04 +0000656 // One new entry, Just insert the new value at the appropriate position.
657 NonLocalDepEntry Val = Cache->back();
658 Cache->pop_back();
659 NonLocalDepInfo::iterator Entry =
660 std::upper_bound(Cache->begin(), Cache->end(), Val);
661 Cache->insert(Entry, Val);
Chris Lattnerba4dacc2008-12-09 07:05:45 +0000662 break;
663 }
664 default:
Chris Lattner1aeadac2008-12-09 06:58:04 +0000665 // Added many values, do a full scale sort.
Chris Lattner6290f5c2008-12-07 08:50:20 +0000666 std::sort(Cache->begin(), Cache->end());
Chris Lattner1aeadac2008-12-09 06:58:04 +0000667 }
Chris Lattner6290f5c2008-12-07 08:50:20 +0000668}
669
670/// RemoveCachedNonLocalPointerDependencies - If P exists in
671/// CachedNonLocalPointerInfo, remove it.
672void MemoryDependenceAnalysis::
673RemoveCachedNonLocalPointerDependencies(ValueIsLoadPair P) {
674 CachedNonLocalPointerInfo::iterator It =
675 NonLocalPointerDeps.find(P);
676 if (It == NonLocalPointerDeps.end()) return;
677
678 // Remove all of the entries in the BB->val map. This involves removing
679 // instructions from the reverse map.
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000680 NonLocalDepInfo &PInfo = It->second.second;
Chris Lattner6290f5c2008-12-07 08:50:20 +0000681
682 for (unsigned i = 0, e = PInfo.size(); i != e; ++i) {
683 Instruction *Target = PInfo[i].second.getInst();
684 if (Target == 0) continue; // Ignore non-local dep results.
685 assert(Target->getParent() == PInfo[i].first && Target != P.getPointer());
686
687 // Eliminating the dirty entry from 'Cache', so update the reverse info.
Chris Lattnerd44745d2008-12-07 18:39:13 +0000688 RemoveFromReverseMap(ReverseNonLocalPtrDeps, Target, P.getOpaqueValue());
Chris Lattner6290f5c2008-12-07 08:50:20 +0000689 }
690
691 // Remove P from NonLocalPointerDeps (which deletes NonLocalDepInfo).
692 NonLocalPointerDeps.erase(It);
Chris Lattner7ebcf032008-12-07 02:15:47 +0000693}
694
695
Owen Anderson78e02f72007-07-06 23:14:35 +0000696/// removeInstruction - Remove an instruction from the dependence analysis,
697/// updating the dependence of instructions that previously depended on it.
Owen Anderson642a9e32007-08-08 22:26:03 +0000698/// This method attempts to keep the cache coherent using the reverse map.
Chris Lattner5f589dc2008-11-28 22:04:47 +0000699void MemoryDependenceAnalysis::removeInstruction(Instruction *RemInst) {
Chris Lattner5f589dc2008-11-28 22:04:47 +0000700 // Walk through the Non-local dependencies, removing this one as the value
701 // for any cached queries.
Chris Lattnerf68f3102008-11-30 02:28:25 +0000702 NonLocalDepMapType::iterator NLDI = NonLocalDeps.find(RemInst);
703 if (NLDI != NonLocalDeps.end()) {
Chris Lattnerbf145d62008-12-01 01:15:42 +0000704 NonLocalDepInfo &BlockMap = NLDI->second.first;
Chris Lattner25f4b2b2008-11-30 02:30:50 +0000705 for (NonLocalDepInfo::iterator DI = BlockMap.begin(), DE = BlockMap.end();
706 DI != DE; ++DI)
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000707 if (Instruction *Inst = DI->second.getInst())
Chris Lattnerd44745d2008-12-07 18:39:13 +0000708 RemoveFromReverseMap(ReverseNonLocalDeps, Inst, RemInst);
Chris Lattnerf68f3102008-11-30 02:28:25 +0000709 NonLocalDeps.erase(NLDI);
710 }
Owen Anderson5fc4aba2007-12-08 01:37:09 +0000711
Chris Lattner5f589dc2008-11-28 22:04:47 +0000712 // If we have a cached local dependence query for this instruction, remove it.
Chris Lattnerbaad8882008-11-28 22:28:27 +0000713 //
Chris Lattner39f372e2008-11-29 01:43:36 +0000714 LocalDepMapType::iterator LocalDepEntry = LocalDeps.find(RemInst);
715 if (LocalDepEntry != LocalDeps.end()) {
Chris Lattner125ce362008-11-30 01:09:30 +0000716 // Remove us from DepInst's reverse set now that the local dep info is gone.
Chris Lattnerd44745d2008-12-07 18:39:13 +0000717 if (Instruction *Inst = LocalDepEntry->second.getInst())
718 RemoveFromReverseMap(ReverseLocalDeps, Inst, RemInst);
Chris Lattner125ce362008-11-30 01:09:30 +0000719
Chris Lattnerbaad8882008-11-28 22:28:27 +0000720 // Remove this local dependency info.
Chris Lattner39f372e2008-11-29 01:43:36 +0000721 LocalDeps.erase(LocalDepEntry);
Chris Lattner6290f5c2008-12-07 08:50:20 +0000722 }
723
724 // If we have any cached pointer dependencies on this instruction, remove
725 // them. If the instruction has non-pointer type, then it can't be a pointer
726 // base.
727
728 // Remove it from both the load info and the store info. The instruction
729 // can't be in either of these maps if it is non-pointer.
730 if (isa<PointerType>(RemInst->getType())) {
731 RemoveCachedNonLocalPointerDependencies(ValueIsLoadPair(RemInst, false));
732 RemoveCachedNonLocalPointerDependencies(ValueIsLoadPair(RemInst, true));
733 }
Chris Lattnerbaad8882008-11-28 22:28:27 +0000734
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000735 // Loop over all of the things that depend on the instruction we're removing.
736 //
Chris Lattner4f8c18c2008-11-29 23:30:39 +0000737 SmallVector<std::pair<Instruction*, Instruction*>, 8> ReverseDepsToAdd;
Chris Lattner0655f732008-12-07 18:42:51 +0000738
739 // If we find RemInst as a clobber or Def in any of the maps for other values,
740 // we need to replace its entry with a dirty version of the instruction after
741 // it. If RemInst is a terminator, we use a null dirty value.
742 //
743 // Using a dirty version of the instruction after RemInst saves having to scan
744 // the entire block to get to this point.
745 MemDepResult NewDirtyVal;
746 if (!RemInst->isTerminator())
747 NewDirtyVal = MemDepResult::getDirty(++BasicBlock::iterator(RemInst));
Chris Lattner4f8c18c2008-11-29 23:30:39 +0000748
Chris Lattner8c465272008-11-29 09:20:15 +0000749 ReverseDepMapType::iterator ReverseDepIt = ReverseLocalDeps.find(RemInst);
750 if (ReverseDepIt != ReverseLocalDeps.end()) {
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000751 SmallPtrSet<Instruction*, 4> &ReverseDeps = ReverseDepIt->second;
Chris Lattner6290f5c2008-12-07 08:50:20 +0000752 // RemInst can't be the terminator if it has local stuff depending on it.
Chris Lattner125ce362008-11-30 01:09:30 +0000753 assert(!ReverseDeps.empty() && !isa<TerminatorInst>(RemInst) &&
754 "Nothing can locally depend on a terminator");
755
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000756 for (SmallPtrSet<Instruction*, 4>::iterator I = ReverseDeps.begin(),
757 E = ReverseDeps.end(); I != E; ++I) {
758 Instruction *InstDependingOnRemInst = *I;
Chris Lattnerf68f3102008-11-30 02:28:25 +0000759 assert(InstDependingOnRemInst != RemInst &&
760 "Already removed our local dep info");
Chris Lattner125ce362008-11-30 01:09:30 +0000761
Chris Lattner0655f732008-12-07 18:42:51 +0000762 LocalDeps[InstDependingOnRemInst] = NewDirtyVal;
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000763
Chris Lattner125ce362008-11-30 01:09:30 +0000764 // Make sure to remember that new things depend on NewDepInst.
Chris Lattner0655f732008-12-07 18:42:51 +0000765 assert(NewDirtyVal.getInst() && "There is no way something else can have "
766 "a local dep on this if it is a terminator!");
767 ReverseDepsToAdd.push_back(std::make_pair(NewDirtyVal.getInst(),
Chris Lattner125ce362008-11-30 01:09:30 +0000768 InstDependingOnRemInst));
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000769 }
Chris Lattner4f8c18c2008-11-29 23:30:39 +0000770
771 ReverseLocalDeps.erase(ReverseDepIt);
772
773 // Add new reverse deps after scanning the set, to avoid invalidating the
774 // 'ReverseDeps' reference.
775 while (!ReverseDepsToAdd.empty()) {
776 ReverseLocalDeps[ReverseDepsToAdd.back().first]
777 .insert(ReverseDepsToAdd.back().second);
778 ReverseDepsToAdd.pop_back();
779 }
Owen Anderson78e02f72007-07-06 23:14:35 +0000780 }
Owen Anderson4d13de42007-08-16 21:27:05 +0000781
Chris Lattner8c465272008-11-29 09:20:15 +0000782 ReverseDepIt = ReverseNonLocalDeps.find(RemInst);
783 if (ReverseDepIt != ReverseNonLocalDeps.end()) {
Chris Lattner6290f5c2008-12-07 08:50:20 +0000784 SmallPtrSet<Instruction*, 4> &Set = ReverseDepIt->second;
785 for (SmallPtrSet<Instruction*, 4>::iterator I = Set.begin(), E = Set.end();
Chris Lattnerf68f3102008-11-30 02:28:25 +0000786 I != E; ++I) {
787 assert(*I != RemInst && "Already removed NonLocalDep info for RemInst");
788
Chris Lattner4a69bad2008-11-30 02:52:26 +0000789 PerInstNLInfo &INLD = NonLocalDeps[*I];
Chris Lattner4a69bad2008-11-30 02:52:26 +0000790 // The information is now dirty!
Chris Lattnerbf145d62008-12-01 01:15:42 +0000791 INLD.second = true;
Chris Lattnerf68f3102008-11-30 02:28:25 +0000792
Chris Lattnerbf145d62008-12-01 01:15:42 +0000793 for (NonLocalDepInfo::iterator DI = INLD.first.begin(),
794 DE = INLD.first.end(); DI != DE; ++DI) {
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000795 if (DI->second.getInst() != RemInst) continue;
Chris Lattnerf68f3102008-11-30 02:28:25 +0000796
797 // Convert to a dirty entry for the subsequent instruction.
Chris Lattner0655f732008-12-07 18:42:51 +0000798 DI->second = NewDirtyVal;
799
800 if (Instruction *NextI = NewDirtyVal.getInst())
Chris Lattnerf68f3102008-11-30 02:28:25 +0000801 ReverseDepsToAdd.push_back(std::make_pair(NextI, *I));
Chris Lattnerf68f3102008-11-30 02:28:25 +0000802 }
803 }
Chris Lattner4f8c18c2008-11-29 23:30:39 +0000804
805 ReverseNonLocalDeps.erase(ReverseDepIt);
806
Chris Lattner0ec48dd2008-11-29 22:02:15 +0000807 // Add new reverse deps after scanning the set, to avoid invalidating 'Set'
808 while (!ReverseDepsToAdd.empty()) {
809 ReverseNonLocalDeps[ReverseDepsToAdd.back().first]
810 .insert(ReverseDepsToAdd.back().second);
811 ReverseDepsToAdd.pop_back();
812 }
Owen Anderson4d13de42007-08-16 21:27:05 +0000813 }
Owen Anderson5fc4aba2007-12-08 01:37:09 +0000814
Chris Lattner6290f5c2008-12-07 08:50:20 +0000815 // If the instruction is in ReverseNonLocalPtrDeps then it appears as a
816 // value in the NonLocalPointerDeps info.
817 ReverseNonLocalPtrDepTy::iterator ReversePtrDepIt =
818 ReverseNonLocalPtrDeps.find(RemInst);
819 if (ReversePtrDepIt != ReverseNonLocalPtrDeps.end()) {
820 SmallPtrSet<void*, 4> &Set = ReversePtrDepIt->second;
821 SmallVector<std::pair<Instruction*, ValueIsLoadPair>,8> ReversePtrDepsToAdd;
822
823 for (SmallPtrSet<void*, 4>::iterator I = Set.begin(), E = Set.end();
824 I != E; ++I) {
825 ValueIsLoadPair P;
826 P.setFromOpaqueValue(*I);
827 assert(P.getPointer() != RemInst &&
828 "Already removed NonLocalPointerDeps info for RemInst");
829
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000830 NonLocalDepInfo &NLPDI = NonLocalPointerDeps[P].second;
831
832 // The cache is not valid for any specific block anymore.
833 NonLocalPointerDeps[P].first = 0;
Chris Lattner6290f5c2008-12-07 08:50:20 +0000834
Chris Lattner6290f5c2008-12-07 08:50:20 +0000835 // Update any entries for RemInst to use the instruction after it.
836 for (NonLocalDepInfo::iterator DI = NLPDI.begin(), DE = NLPDI.end();
837 DI != DE; ++DI) {
838 if (DI->second.getInst() != RemInst) continue;
839
840 // Convert to a dirty entry for the subsequent instruction.
841 DI->second = NewDirtyVal;
842
843 if (Instruction *NewDirtyInst = NewDirtyVal.getInst())
844 ReversePtrDepsToAdd.push_back(std::make_pair(NewDirtyInst, P));
845 }
846 }
847
848 ReverseNonLocalPtrDeps.erase(ReversePtrDepIt);
849
850 while (!ReversePtrDepsToAdd.empty()) {
851 ReverseNonLocalPtrDeps[ReversePtrDepsToAdd.back().first]
852 .insert(ReversePtrDepsToAdd.back().second.getOpaqueValue());
853 ReversePtrDepsToAdd.pop_back();
854 }
855 }
856
857
Chris Lattnerf68f3102008-11-30 02:28:25 +0000858 assert(!NonLocalDeps.count(RemInst) && "RemInst got reinserted?");
Chris Lattnerd777d402008-11-30 19:24:31 +0000859 AA->deleteValue(RemInst);
Chris Lattner5f589dc2008-11-28 22:04:47 +0000860 DEBUG(verifyRemoved(RemInst));
Owen Anderson78e02f72007-07-06 23:14:35 +0000861}
Chris Lattner729b2372008-11-29 21:25:10 +0000862
863/// verifyRemoved - Verify that the specified instruction does not occur
864/// in our internal data structures.
865void MemoryDependenceAnalysis::verifyRemoved(Instruction *D) const {
866 for (LocalDepMapType::const_iterator I = LocalDeps.begin(),
867 E = LocalDeps.end(); I != E; ++I) {
868 assert(I->first != D && "Inst occurs in data structures");
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000869 assert(I->second.getInst() != D &&
Chris Lattner729b2372008-11-29 21:25:10 +0000870 "Inst occurs in data structures");
871 }
872
Chris Lattner6290f5c2008-12-07 08:50:20 +0000873 for (CachedNonLocalPointerInfo::const_iterator I =NonLocalPointerDeps.begin(),
874 E = NonLocalPointerDeps.end(); I != E; ++I) {
875 assert(I->first.getPointer() != D && "Inst occurs in NLPD map key");
Chris Lattner11dcd8d2008-12-08 07:31:50 +0000876 const NonLocalDepInfo &Val = I->second.second;
Chris Lattner6290f5c2008-12-07 08:50:20 +0000877 for (NonLocalDepInfo::const_iterator II = Val.begin(), E = Val.end();
878 II != E; ++II)
879 assert(II->second.getInst() != D && "Inst occurs as NLPD value");
880 }
881
Chris Lattner729b2372008-11-29 21:25:10 +0000882 for (NonLocalDepMapType::const_iterator I = NonLocalDeps.begin(),
883 E = NonLocalDeps.end(); I != E; ++I) {
884 assert(I->first != D && "Inst occurs in data structures");
Chris Lattner4a69bad2008-11-30 02:52:26 +0000885 const PerInstNLInfo &INLD = I->second;
Chris Lattnerbf145d62008-12-01 01:15:42 +0000886 for (NonLocalDepInfo::const_iterator II = INLD.first.begin(),
887 EE = INLD.first.end(); II != EE; ++II)
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000888 assert(II->second.getInst() != D && "Inst occurs in data structures");
Chris Lattner729b2372008-11-29 21:25:10 +0000889 }
890
891 for (ReverseDepMapType::const_iterator I = ReverseLocalDeps.begin(),
Chris Lattnerf68f3102008-11-30 02:28:25 +0000892 E = ReverseLocalDeps.end(); I != E; ++I) {
893 assert(I->first != D && "Inst occurs in data structures");
Chris Lattner729b2372008-11-29 21:25:10 +0000894 for (SmallPtrSet<Instruction*, 4>::const_iterator II = I->second.begin(),
895 EE = I->second.end(); II != EE; ++II)
896 assert(*II != D && "Inst occurs in data structures");
Chris Lattnerf68f3102008-11-30 02:28:25 +0000897 }
Chris Lattner729b2372008-11-29 21:25:10 +0000898
899 for (ReverseDepMapType::const_iterator I = ReverseNonLocalDeps.begin(),
900 E = ReverseNonLocalDeps.end();
Chris Lattnerf68f3102008-11-30 02:28:25 +0000901 I != E; ++I) {
902 assert(I->first != D && "Inst occurs in data structures");
Chris Lattner729b2372008-11-29 21:25:10 +0000903 for (SmallPtrSet<Instruction*, 4>::const_iterator II = I->second.begin(),
904 EE = I->second.end(); II != EE; ++II)
905 assert(*II != D && "Inst occurs in data structures");
Chris Lattnerf68f3102008-11-30 02:28:25 +0000906 }
Chris Lattner6290f5c2008-12-07 08:50:20 +0000907
908 for (ReverseNonLocalPtrDepTy::const_iterator
909 I = ReverseNonLocalPtrDeps.begin(),
910 E = ReverseNonLocalPtrDeps.end(); I != E; ++I) {
911 assert(I->first != D && "Inst occurs in rev NLPD map");
912
913 for (SmallPtrSet<void*, 4>::const_iterator II = I->second.begin(),
914 E = I->second.end(); II != E; ++II)
915 assert(*II != ValueIsLoadPair(D, false).getOpaqueValue() &&
916 *II != ValueIsLoadPair(D, true).getOpaqueValue() &&
917 "Inst occurs in ReverseNonLocalPtrDeps map");
918 }
919
Chris Lattner729b2372008-11-29 21:25:10 +0000920}