blob: 44119d7b6b782399ebeb24c6eae8ea49c21e7f7f [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"
24#include "llvm/ADT/STLExtras.h"
Owen Anderson4beedbd2007-07-24 21:52:37 +000025#include "llvm/Support/CFG.h"
Tanya Lattner63aa1602008-02-06 00:54:55 +000026#include "llvm/Support/CommandLine.h"
Chris Lattner0e575f42008-11-28 21:45:17 +000027#include "llvm/Support/Debug.h"
Owen Anderson78e02f72007-07-06 23:14:35 +000028#include "llvm/Target/TargetData.h"
Owen Anderson78e02f72007-07-06 23:14:35 +000029using namespace llvm;
30
Chris Lattnerbf145d62008-12-01 01:15:42 +000031STATISTIC(NumCacheNonLocal, "Number of fully cached non-local responses");
32STATISTIC(NumCacheDirtyNonLocal, "Number of dirty cached non-local responses");
Chris Lattner0ec48dd2008-11-29 22:02:15 +000033STATISTIC(NumUncacheNonLocal, "Number of uncached non-local responses");
Owen Anderson78e02f72007-07-06 23:14:35 +000034char MemoryDependenceAnalysis::ID = 0;
35
Owen Anderson78e02f72007-07-06 23:14:35 +000036// Register this pass...
Owen Anderson776ee1f2007-07-10 20:21:08 +000037static RegisterPass<MemoryDependenceAnalysis> X("memdep",
Chris Lattner0e575f42008-11-28 21:45:17 +000038 "Memory Dependence Analysis", false, true);
Owen Anderson78e02f72007-07-06 23:14:35 +000039
40/// getAnalysisUsage - Does not modify anything. It uses Alias Analysis.
41///
42void MemoryDependenceAnalysis::getAnalysisUsage(AnalysisUsage &AU) const {
43 AU.setPreservesAll();
44 AU.addRequiredTransitive<AliasAnalysis>();
45 AU.addRequiredTransitive<TargetData>();
46}
47
Chris Lattnerd777d402008-11-30 19:24:31 +000048bool MemoryDependenceAnalysis::runOnFunction(Function &) {
49 AA = &getAnalysis<AliasAnalysis>();
50 TD = &getAnalysis<TargetData>();
51 return false;
52}
53
Chris Lattnerbf145d62008-12-01 01:15:42 +000054
Owen Anderson642a9e32007-08-08 22:26:03 +000055/// getCallSiteDependency - Private helper for finding the local dependencies
56/// of a call site.
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +000057MemDepResult MemoryDependenceAnalysis::
Chris Lattnerb51deb92008-12-05 21:04:20 +000058getCallSiteDependency(CallSite CS, BasicBlock::iterator ScanIt, BasicBlock *BB) {
Owen Anderson642a9e32007-08-08 22:26:03 +000059 // Walk backwards through the block, looking for dependencies
Chris Lattner5391a1d2008-11-29 03:47:00 +000060 while (ScanIt != BB->begin()) {
61 Instruction *Inst = --ScanIt;
Owen Anderson5f323202007-07-10 17:59:22 +000062
63 // If this inst is a memory op, get the pointer it accessed
Chris Lattner00314b32008-11-29 09:15:21 +000064 Value *Pointer = 0;
65 uint64_t PointerSize = 0;
66 if (StoreInst *S = dyn_cast<StoreInst>(Inst)) {
67 Pointer = S->getPointerOperand();
Chris Lattnerd777d402008-11-30 19:24:31 +000068 PointerSize = TD->getTypeStoreSize(S->getOperand(0)->getType());
Chris Lattner00314b32008-11-29 09:15:21 +000069 } else if (VAArgInst *V = dyn_cast<VAArgInst>(Inst)) {
70 Pointer = V->getOperand(0);
Chris Lattnerd777d402008-11-30 19:24:31 +000071 PointerSize = TD->getTypeStoreSize(V->getType());
Chris Lattner00314b32008-11-29 09:15:21 +000072 } else if (FreeInst *F = dyn_cast<FreeInst>(Inst)) {
73 Pointer = F->getPointerOperand();
Owen Anderson5f323202007-07-10 17:59:22 +000074
75 // FreeInsts erase the entire structure
Chris Lattner00314b32008-11-29 09:15:21 +000076 PointerSize = ~0UL;
77 } else if (isa<CallInst>(Inst) || isa<InvokeInst>(Inst)) {
Chris Lattnerb51deb92008-12-05 21:04:20 +000078 CallSite InstCS = CallSite::get(Inst);
79 // If these two calls do not interfere, look past it.
80 if (AA->getModRefInfo(CS, InstCS) == AliasAnalysis::NoModRef)
Chris Lattner00314b32008-11-29 09:15:21 +000081 continue;
Chris Lattnerb51deb92008-12-05 21:04:20 +000082
83 // FIXME: If this is a ref/ref result, we should ignore it!
84 // X = strlen(P);
85 // Y = strlen(Q);
86 // Z = strlen(P); // Z = X
87
88 // If they interfere, we generally return clobber. However, if they are
89 // calls to the same read-only functions we return Def.
90 if (!AA->onlyReadsMemory(CS) || CS.getCalledFunction() == 0 ||
91 CS.getCalledFunction() != InstCS.getCalledFunction())
92 return MemDepResult::getClobber(Inst);
93 return MemDepResult::getDef(Inst);
Chris Lattnercfbb6342008-11-30 01:44:00 +000094 } else {
95 // Non-memory instruction.
Owen Anderson202da142007-07-10 20:39:07 +000096 continue;
Chris Lattnercfbb6342008-11-30 01:44:00 +000097 }
Owen Anderson5f323202007-07-10 17:59:22 +000098
Chris Lattnerb51deb92008-12-05 21:04:20 +000099 if (AA->getModRefInfo(CS, Pointer, PointerSize) != AliasAnalysis::NoModRef)
100 return MemDepResult::getClobber(Inst);
Owen Anderson5f323202007-07-10 17:59:22 +0000101 }
102
Chris Lattner5391a1d2008-11-29 03:47:00 +0000103 // No dependence found.
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000104 return MemDepResult::getNonLocal();
Owen Anderson5f323202007-07-10 17:59:22 +0000105}
106
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000107/// getDependencyFrom - Return the instruction on which a memory operation
108/// depends.
109MemDepResult MemoryDependenceAnalysis::
110getDependencyFrom(Instruction *QueryInst, BasicBlock::iterator ScanIt,
111 BasicBlock *BB) {
Owen Anderson78e02f72007-07-06 23:14:35 +0000112 // Get the pointer value for which dependence will be determined
Chris Lattner25a08142008-11-29 08:51:16 +0000113 Value *MemPtr = 0;
114 uint64_t MemSize = 0;
115 bool MemVolatile = false;
Chris Lattner5391a1d2008-11-29 03:47:00 +0000116
117 if (StoreInst* S = dyn_cast<StoreInst>(QueryInst)) {
Chris Lattner25a08142008-11-29 08:51:16 +0000118 MemPtr = S->getPointerOperand();
Chris Lattnerd777d402008-11-30 19:24:31 +0000119 MemSize = TD->getTypeStoreSize(S->getOperand(0)->getType());
Chris Lattner25a08142008-11-29 08:51:16 +0000120 MemVolatile = S->isVolatile();
Chris Lattnerb51deb92008-12-05 21:04:20 +0000121 } else if (LoadInst* LI = dyn_cast<LoadInst>(QueryInst)) {
122 MemPtr = LI->getPointerOperand();
123 MemSize = TD->getTypeStoreSize(LI->getType());
124 MemVolatile = LI->isVolatile();
Chris Lattner5391a1d2008-11-29 03:47:00 +0000125 } else if (VAArgInst* V = dyn_cast<VAArgInst>(QueryInst)) {
Chris Lattner25a08142008-11-29 08:51:16 +0000126 MemPtr = V->getOperand(0);
Chris Lattnerd777d402008-11-30 19:24:31 +0000127 MemSize = TD->getTypeStoreSize(V->getType());
Chris Lattner5391a1d2008-11-29 03:47:00 +0000128 } else if (FreeInst* F = dyn_cast<FreeInst>(QueryInst)) {
Chris Lattner25a08142008-11-29 08:51:16 +0000129 MemPtr = F->getPointerOperand();
130 // FreeInsts erase the entire structure, not just a field.
131 MemSize = ~0UL;
Chris Lattner69513812008-12-05 18:46:19 +0000132 } else {
133 assert((isa<CallInst>(QueryInst) || isa<InvokeInst>(QueryInst)) &&
134 "Can only get dependency info for memory instructions!");
Chris Lattner5391a1d2008-11-29 03:47:00 +0000135 return getCallSiteDependency(CallSite::get(QueryInst), ScanIt, BB);
Chris Lattner69513812008-12-05 18:46:19 +0000136 }
Owen Anderson78e02f72007-07-06 23:14:35 +0000137
Owen Anderson642a9e32007-08-08 22:26:03 +0000138 // Walk backwards through the basic block, looking for dependencies
Chris Lattner5391a1d2008-11-29 03:47:00 +0000139 while (ScanIt != BB->begin()) {
140 Instruction *Inst = --ScanIt;
Chris Lattnera161ab02008-11-29 09:09:48 +0000141
Chris Lattnercfbb6342008-11-30 01:44:00 +0000142 // Values depend on loads if the pointers are must aliased. This means that
143 // a load depends on another must aliased load from the same value.
Chris Lattnerb51deb92008-12-05 21:04:20 +0000144 if (LoadInst *LI = dyn_cast<LoadInst>(Inst)) {
145 // If the access is volatile and this is volatile, return a dependence.
146 if (MemVolatile && LI->isVolatile())
147 return MemDepResult::getClobber(LI);
Chris Lattnera161ab02008-11-29 09:09:48 +0000148
Chris Lattnerb51deb92008-12-05 21:04:20 +0000149 Value *Pointer = LI->getPointerOperand();
150 uint64_t PointerSize = TD->getTypeStoreSize(LI->getType());
151
152 // If we found a pointer, check if it could be the same as our pointer.
Chris Lattnera161ab02008-11-29 09:09:48 +0000153 AliasAnalysis::AliasResult R =
Chris Lattnerd777d402008-11-30 19:24:31 +0000154 AA->alias(Pointer, PointerSize, MemPtr, MemSize);
Chris Lattnera161ab02008-11-29 09:09:48 +0000155 if (R == AliasAnalysis::NoAlias)
156 continue;
157
158 // May-alias loads don't depend on each other without a dependence.
159 if (isa<LoadInst>(QueryInst) && R == AliasAnalysis::MayAlias)
160 continue;
Chris Lattnerb51deb92008-12-05 21:04:20 +0000161 return MemDepResult::getDef(Inst);
162 }
163
164 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
165 // If the access is volatile and this is volatile, return a dependence.
166 if (MemVolatile && SI->isVolatile())
167 return MemDepResult::getClobber(SI);
168
169 Value *Pointer = SI->getPointerOperand();
170 uint64_t PointerSize = TD->getTypeStoreSize(SI->getOperand(0)->getType());
171
172 // If we found a pointer, check if it could be the same as our pointer.
173 AliasAnalysis::AliasResult R =
174 AA->alias(Pointer, PointerSize, MemPtr, MemSize);
175
176 if (R == AliasAnalysis::NoAlias)
177 continue;
178 if (R == AliasAnalysis::MayAlias)
179 return MemDepResult::getClobber(Inst);
180 return MemDepResult::getDef(Inst);
Owen Anderson78e02f72007-07-06 23:14:35 +0000181 }
Chris Lattner237a8282008-11-30 01:39:32 +0000182
183 // If this is an allocation, and if we know that the accessed pointer is to
Chris Lattnerb51deb92008-12-05 21:04:20 +0000184 // the allocation, return Def. This means that there is no dependence and
Chris Lattner237a8282008-11-30 01:39:32 +0000185 // the access can be optimized based on that. For example, a load could
186 // turn into undef.
Chris Lattnera161ab02008-11-29 09:09:48 +0000187 if (AllocationInst *AI = dyn_cast<AllocationInst>(Inst)) {
Chris Lattner237a8282008-11-30 01:39:32 +0000188 Value *AccessPtr = MemPtr->getUnderlyingObject();
Owen Anderson78e02f72007-07-06 23:14:35 +0000189
Chris Lattner237a8282008-11-30 01:39:32 +0000190 if (AccessPtr == AI ||
Chris Lattnerd777d402008-11-30 19:24:31 +0000191 AA->alias(AI, 1, AccessPtr, 1) == AliasAnalysis::MustAlias)
Chris Lattnerb51deb92008-12-05 21:04:20 +0000192 return MemDepResult::getDef(AI);
Chris Lattner237a8282008-11-30 01:39:32 +0000193 continue;
Chris Lattnera161ab02008-11-29 09:09:48 +0000194 }
Chris Lattnera161ab02008-11-29 09:09:48 +0000195
Chris Lattnerb51deb92008-12-05 21:04:20 +0000196 // See if this instruction (e.g. a call or vaarg) mod/ref's the pointer.
197 if (AA->getModRefInfo(Inst, MemPtr, MemSize) == AliasAnalysis::NoModRef)
Chris Lattner25a08142008-11-29 08:51:16 +0000198 continue;
Chris Lattnera161ab02008-11-29 09:09:48 +0000199
200 // Otherwise, there is a dependence.
Chris Lattnerb51deb92008-12-05 21:04:20 +0000201 return MemDepResult::getClobber(Inst);
Owen Anderson78e02f72007-07-06 23:14:35 +0000202 }
203
Chris Lattner5391a1d2008-11-29 03:47:00 +0000204 // If we found nothing, return the non-local flag.
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000205 return MemDepResult::getNonLocal();
Owen Anderson78e02f72007-07-06 23:14:35 +0000206}
207
Chris Lattner5391a1d2008-11-29 03:47:00 +0000208/// getDependency - Return the instruction on which a memory operation
209/// depends.
210MemDepResult MemoryDependenceAnalysis::getDependency(Instruction *QueryInst) {
211 Instruction *ScanPos = QueryInst;
212
213 // Check for a cached result
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000214 MemDepResult &LocalCache = LocalDeps[QueryInst];
Chris Lattner5391a1d2008-11-29 03:47:00 +0000215
Chris Lattner0ec48dd2008-11-29 22:02:15 +0000216 // If the cached entry is non-dirty, just return it. Note that this depends
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000217 // on MemDepResult's default constructing to 'dirty'.
218 if (!LocalCache.isDirty())
219 return LocalCache;
Chris Lattner5391a1d2008-11-29 03:47:00 +0000220
221 // Otherwise, if we have a dirty entry, we know we can start the scan at that
222 // instruction, which may save us some work.
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000223 if (Instruction *Inst = LocalCache.getInst()) {
Chris Lattner5391a1d2008-11-29 03:47:00 +0000224 ScanPos = Inst;
Chris Lattner4a69bad2008-11-30 02:52:26 +0000225
226 SmallPtrSet<Instruction*, 4> &InstMap = ReverseLocalDeps[Inst];
227 InstMap.erase(QueryInst);
228 if (InstMap.empty())
229 ReverseLocalDeps.erase(Inst);
230 }
Chris Lattner5391a1d2008-11-29 03:47:00 +0000231
232 // Do the scan.
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000233 LocalCache = getDependencyFrom(QueryInst, ScanPos, QueryInst->getParent());
Chris Lattner5391a1d2008-11-29 03:47:00 +0000234
235 // Remember the result!
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000236 if (Instruction *I = LocalCache.getInst())
Chris Lattner8c465272008-11-29 09:20:15 +0000237 ReverseLocalDeps[I].insert(QueryInst);
Chris Lattner5391a1d2008-11-29 03:47:00 +0000238
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000239 return LocalCache;
Chris Lattner5391a1d2008-11-29 03:47:00 +0000240}
241
Chris Lattner37d041c2008-11-30 01:18:27 +0000242/// getNonLocalDependency - Perform a full dependency query for the
243/// specified instruction, returning the set of blocks that the value is
244/// potentially live across. The returned set of results will include a
245/// "NonLocal" result for all blocks where the value is live across.
246///
247/// This method assumes the instruction returns a "nonlocal" dependency
248/// within its own block.
249///
Chris Lattnerbf145d62008-12-01 01:15:42 +0000250const MemoryDependenceAnalysis::NonLocalDepInfo &
251MemoryDependenceAnalysis::getNonLocalDependency(Instruction *QueryInst) {
Chris Lattner37d041c2008-11-30 01:18:27 +0000252 assert(getDependency(QueryInst).isNonLocal() &&
253 "getNonLocalDependency should only be used on insts with non-local deps!");
Chris Lattner4a69bad2008-11-30 02:52:26 +0000254 PerInstNLInfo &CacheP = NonLocalDeps[QueryInst];
Chris Lattnerf68f3102008-11-30 02:28:25 +0000255
Chris Lattnerbf145d62008-12-01 01:15:42 +0000256 NonLocalDepInfo &Cache = CacheP.first;
Chris Lattner37d041c2008-11-30 01:18:27 +0000257
258 /// DirtyBlocks - This is the set of blocks that need to be recomputed. In
259 /// the cached case, this can happen due to instructions being deleted etc. In
260 /// the uncached case, this starts out as the set of predecessors we care
261 /// about.
262 SmallVector<BasicBlock*, 32> DirtyBlocks;
263
264 if (!Cache.empty()) {
Chris Lattnerbf145d62008-12-01 01:15:42 +0000265 // Okay, we have a cache entry. If we know it is not dirty, just return it
266 // with no computation.
267 if (!CacheP.second) {
268 NumCacheNonLocal++;
269 return Cache;
270 }
271
Chris Lattner37d041c2008-11-30 01:18:27 +0000272 // If we already have a partially computed set of results, scan them to
Chris Lattnerbf145d62008-12-01 01:15:42 +0000273 // determine what is dirty, seeding our initial DirtyBlocks worklist.
274 for (NonLocalDepInfo::iterator I = Cache.begin(), E = Cache.end();
275 I != E; ++I)
276 if (I->second.isDirty())
277 DirtyBlocks.push_back(I->first);
Chris Lattner37d041c2008-11-30 01:18:27 +0000278
Chris Lattnerbf145d62008-12-01 01:15:42 +0000279 // Sort the cache so that we can do fast binary search lookups below.
280 std::sort(Cache.begin(), Cache.end());
Chris Lattner37d041c2008-11-30 01:18:27 +0000281
Chris Lattnerbf145d62008-12-01 01:15:42 +0000282 ++NumCacheDirtyNonLocal;
Chris Lattner37d041c2008-11-30 01:18:27 +0000283 //cerr << "CACHED CASE: " << DirtyBlocks.size() << " dirty: "
284 // << Cache.size() << " cached: " << *QueryInst;
285 } else {
286 // Seed DirtyBlocks with each of the preds of QueryInst's block.
287 BasicBlock *QueryBB = QueryInst->getParent();
288 DirtyBlocks.append(pred_begin(QueryBB), pred_end(QueryBB));
289 NumUncacheNonLocal++;
290 }
291
Chris Lattnerbf145d62008-12-01 01:15:42 +0000292 // Visited checked first, vector in sorted order.
293 SmallPtrSet<BasicBlock*, 64> Visited;
294
295 unsigned NumSortedEntries = Cache.size();
296
Chris Lattner37d041c2008-11-30 01:18:27 +0000297 // Iterate while we still have blocks to update.
298 while (!DirtyBlocks.empty()) {
299 BasicBlock *DirtyBB = DirtyBlocks.back();
300 DirtyBlocks.pop_back();
301
Chris Lattnerbf145d62008-12-01 01:15:42 +0000302 // Already processed this block?
303 if (!Visited.insert(DirtyBB))
304 continue;
Chris Lattner37d041c2008-11-30 01:18:27 +0000305
Chris Lattnerbf145d62008-12-01 01:15:42 +0000306 // Do a binary search to see if we already have an entry for this block in
307 // the cache set. If so, find it.
308 NonLocalDepInfo::iterator Entry =
309 std::upper_bound(Cache.begin(), Cache.begin()+NumSortedEntries,
310 std::make_pair(DirtyBB, MemDepResult()));
311 if (Entry != Cache.begin() && (&*Entry)[-1].first == DirtyBB)
312 --Entry;
313
314 MemDepResult *ExistingResult = 0;
315 if (Entry != Cache.begin()+NumSortedEntries &&
316 Entry->first == DirtyBB) {
317 // If we already have an entry, and if it isn't already dirty, the block
318 // is done.
319 if (!Entry->second.isDirty())
320 continue;
321
322 // Otherwise, remember this slot so we can update the value.
323 ExistingResult = &Entry->second;
324 }
325
Chris Lattner37d041c2008-11-30 01:18:27 +0000326 // If the dirty entry has a pointer, start scanning from it so we don't have
327 // to rescan the entire block.
328 BasicBlock::iterator ScanPos = DirtyBB->end();
Chris Lattnerbf145d62008-12-01 01:15:42 +0000329 if (ExistingResult) {
330 if (Instruction *Inst = ExistingResult->getInst()) {
331 ScanPos = Inst;
Chris Lattnerf68f3102008-11-30 02:28:25 +0000332
Chris Lattnerbf145d62008-12-01 01:15:42 +0000333 // We're removing QueryInst's use of Inst.
334 SmallPtrSet<Instruction*, 4> &InstMap = ReverseNonLocalDeps[Inst];
335 InstMap.erase(QueryInst);
336 if (InstMap.empty()) ReverseNonLocalDeps.erase(Inst);
337 }
Chris Lattnerf68f3102008-11-30 02:28:25 +0000338 }
Chris Lattner37d041c2008-11-30 01:18:27 +0000339
Chris Lattner73ec3cd2008-11-30 01:26:32 +0000340 // Find out if this block has a local dependency for QueryInst.
Chris Lattnerbf145d62008-12-01 01:15:42 +0000341 MemDepResult Dep = getDependencyFrom(QueryInst, ScanPos, DirtyBB);
342
343 // If we had a dirty entry for the block, update it. Otherwise, just add
344 // a new entry.
345 if (ExistingResult)
346 *ExistingResult = Dep;
347 else
348 Cache.push_back(std::make_pair(DirtyBB, Dep));
349
Chris Lattner37d041c2008-11-30 01:18:27 +0000350 // If the block has a dependency (i.e. it isn't completely transparent to
Chris Lattnerbf145d62008-12-01 01:15:42 +0000351 // the value), remember the association!
352 if (!Dep.isNonLocal()) {
Chris Lattner37d041c2008-11-30 01:18:27 +0000353 // Keep the ReverseNonLocalDeps map up to date so we can efficiently
354 // update this when we remove instructions.
Chris Lattnerbf145d62008-12-01 01:15:42 +0000355 if (Instruction *Inst = Dep.getInst())
Chris Lattner37d041c2008-11-30 01:18:27 +0000356 ReverseNonLocalDeps[Inst].insert(QueryInst);
Chris Lattnerbf145d62008-12-01 01:15:42 +0000357 } else {
Chris Lattner37d041c2008-11-30 01:18:27 +0000358
Chris Lattnerbf145d62008-12-01 01:15:42 +0000359 // If the block *is* completely transparent to the load, we need to check
360 // the predecessors of this block. Add them to our worklist.
361 DirtyBlocks.append(pred_begin(DirtyBB), pred_end(DirtyBB));
362 }
Chris Lattner37d041c2008-11-30 01:18:27 +0000363 }
364
Chris Lattnerbf145d62008-12-01 01:15:42 +0000365 return Cache;
Chris Lattner37d041c2008-11-30 01:18:27 +0000366}
367
Owen Anderson78e02f72007-07-06 23:14:35 +0000368/// removeInstruction - Remove an instruction from the dependence analysis,
369/// updating the dependence of instructions that previously depended on it.
Owen Anderson642a9e32007-08-08 22:26:03 +0000370/// This method attempts to keep the cache coherent using the reverse map.
Chris Lattner5f589dc2008-11-28 22:04:47 +0000371void MemoryDependenceAnalysis::removeInstruction(Instruction *RemInst) {
Chris Lattner5f589dc2008-11-28 22:04:47 +0000372 // Walk through the Non-local dependencies, removing this one as the value
373 // for any cached queries.
Chris Lattnerf68f3102008-11-30 02:28:25 +0000374 NonLocalDepMapType::iterator NLDI = NonLocalDeps.find(RemInst);
375 if (NLDI != NonLocalDeps.end()) {
Chris Lattnerbf145d62008-12-01 01:15:42 +0000376 NonLocalDepInfo &BlockMap = NLDI->second.first;
Chris Lattner25f4b2b2008-11-30 02:30:50 +0000377 for (NonLocalDepInfo::iterator DI = BlockMap.begin(), DE = BlockMap.end();
378 DI != DE; ++DI)
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000379 if (Instruction *Inst = DI->second.getInst())
Chris Lattnerf68f3102008-11-30 02:28:25 +0000380 ReverseNonLocalDeps[Inst].erase(RemInst);
Chris Lattnerf68f3102008-11-30 02:28:25 +0000381 NonLocalDeps.erase(NLDI);
382 }
Owen Anderson5fc4aba2007-12-08 01:37:09 +0000383
Chris Lattner5f589dc2008-11-28 22:04:47 +0000384 // If we have a cached local dependence query for this instruction, remove it.
Chris Lattnerbaad8882008-11-28 22:28:27 +0000385 //
Chris Lattner39f372e2008-11-29 01:43:36 +0000386 LocalDepMapType::iterator LocalDepEntry = LocalDeps.find(RemInst);
387 if (LocalDepEntry != LocalDeps.end()) {
Chris Lattner125ce362008-11-30 01:09:30 +0000388 // Remove us from DepInst's reverse set now that the local dep info is gone.
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000389 if (Instruction *Inst = LocalDepEntry->second.getInst()) {
Chris Lattner125ce362008-11-30 01:09:30 +0000390 SmallPtrSet<Instruction*, 4> &RLD = ReverseLocalDeps[Inst];
391 RLD.erase(RemInst);
392 if (RLD.empty())
393 ReverseLocalDeps.erase(Inst);
394 }
395
Chris Lattnerbaad8882008-11-28 22:28:27 +0000396 // Remove this local dependency info.
Chris Lattner39f372e2008-11-29 01:43:36 +0000397 LocalDeps.erase(LocalDepEntry);
Chris Lattner125ce362008-11-30 01:09:30 +0000398 }
Chris Lattnerbaad8882008-11-28 22:28:27 +0000399
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000400 // Loop over all of the things that depend on the instruction we're removing.
401 //
Chris Lattner4f8c18c2008-11-29 23:30:39 +0000402 SmallVector<std::pair<Instruction*, Instruction*>, 8> ReverseDepsToAdd;
403
Chris Lattner8c465272008-11-29 09:20:15 +0000404 ReverseDepMapType::iterator ReverseDepIt = ReverseLocalDeps.find(RemInst);
405 if (ReverseDepIt != ReverseLocalDeps.end()) {
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000406 SmallPtrSet<Instruction*, 4> &ReverseDeps = ReverseDepIt->second;
Chris Lattner125ce362008-11-30 01:09:30 +0000407 // RemInst can't be the terminator if it has stuff depending on it.
408 assert(!ReverseDeps.empty() && !isa<TerminatorInst>(RemInst) &&
409 "Nothing can locally depend on a terminator");
410
411 // Anything that was locally dependent on RemInst is now going to be
412 // dependent on the instruction after RemInst. It will have the dirty flag
413 // set so it will rescan. This saves having to scan the entire block to get
414 // to this point.
415 Instruction *NewDepInst = next(BasicBlock::iterator(RemInst));
416
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000417 for (SmallPtrSet<Instruction*, 4>::iterator I = ReverseDeps.begin(),
418 E = ReverseDeps.end(); I != E; ++I) {
419 Instruction *InstDependingOnRemInst = *I;
Chris Lattnerf68f3102008-11-30 02:28:25 +0000420 assert(InstDependingOnRemInst != RemInst &&
421 "Already removed our local dep info");
Chris Lattner125ce362008-11-30 01:09:30 +0000422
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000423 LocalDeps[InstDependingOnRemInst] = MemDepResult::getDirty(NewDepInst);
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000424
Chris Lattner125ce362008-11-30 01:09:30 +0000425 // Make sure to remember that new things depend on NewDepInst.
426 ReverseDepsToAdd.push_back(std::make_pair(NewDepInst,
427 InstDependingOnRemInst));
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000428 }
Chris Lattner4f8c18c2008-11-29 23:30:39 +0000429
430 ReverseLocalDeps.erase(ReverseDepIt);
431
432 // Add new reverse deps after scanning the set, to avoid invalidating the
433 // 'ReverseDeps' reference.
434 while (!ReverseDepsToAdd.empty()) {
435 ReverseLocalDeps[ReverseDepsToAdd.back().first]
436 .insert(ReverseDepsToAdd.back().second);
437 ReverseDepsToAdd.pop_back();
438 }
Owen Anderson78e02f72007-07-06 23:14:35 +0000439 }
Owen Anderson4d13de42007-08-16 21:27:05 +0000440
Chris Lattner8c465272008-11-29 09:20:15 +0000441 ReverseDepIt = ReverseNonLocalDeps.find(RemInst);
442 if (ReverseDepIt != ReverseNonLocalDeps.end()) {
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000443 SmallPtrSet<Instruction*, 4>& set = ReverseDepIt->second;
Owen Anderson4d13de42007-08-16 21:27:05 +0000444 for (SmallPtrSet<Instruction*, 4>::iterator I = set.begin(), E = set.end();
Chris Lattnerf68f3102008-11-30 02:28:25 +0000445 I != E; ++I) {
446 assert(*I != RemInst && "Already removed NonLocalDep info for RemInst");
447
Chris Lattner4a69bad2008-11-30 02:52:26 +0000448 PerInstNLInfo &INLD = NonLocalDeps[*I];
Chris Lattner4a69bad2008-11-30 02:52:26 +0000449 // The information is now dirty!
Chris Lattnerbf145d62008-12-01 01:15:42 +0000450 INLD.second = true;
Chris Lattnerf68f3102008-11-30 02:28:25 +0000451
Chris Lattnerbf145d62008-12-01 01:15:42 +0000452 for (NonLocalDepInfo::iterator DI = INLD.first.begin(),
453 DE = INLD.first.end(); DI != DE; ++DI) {
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000454 if (DI->second.getInst() != RemInst) continue;
Chris Lattnerf68f3102008-11-30 02:28:25 +0000455
456 // Convert to a dirty entry for the subsequent instruction.
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000457 Instruction *NextI = 0;
458 if (!RemInst->isTerminator()) {
459 NextI = next(BasicBlock::iterator(RemInst));
Chris Lattnerf68f3102008-11-30 02:28:25 +0000460 ReverseDepsToAdd.push_back(std::make_pair(NextI, *I));
Chris Lattner0ec48dd2008-11-29 22:02:15 +0000461 }
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000462 DI->second = MemDepResult::getDirty(NextI);
Chris Lattnerf68f3102008-11-30 02:28:25 +0000463 }
464 }
Chris Lattner4f8c18c2008-11-29 23:30:39 +0000465
466 ReverseNonLocalDeps.erase(ReverseDepIt);
467
Chris Lattner0ec48dd2008-11-29 22:02:15 +0000468 // Add new reverse deps after scanning the set, to avoid invalidating 'Set'
469 while (!ReverseDepsToAdd.empty()) {
470 ReverseNonLocalDeps[ReverseDepsToAdd.back().first]
471 .insert(ReverseDepsToAdd.back().second);
472 ReverseDepsToAdd.pop_back();
473 }
Owen Anderson4d13de42007-08-16 21:27:05 +0000474 }
Owen Anderson5fc4aba2007-12-08 01:37:09 +0000475
Chris Lattnerf68f3102008-11-30 02:28:25 +0000476 assert(!NonLocalDeps.count(RemInst) && "RemInst got reinserted?");
Chris Lattnerd777d402008-11-30 19:24:31 +0000477 AA->deleteValue(RemInst);
Chris Lattner5f589dc2008-11-28 22:04:47 +0000478 DEBUG(verifyRemoved(RemInst));
Owen Anderson78e02f72007-07-06 23:14:35 +0000479}
Chris Lattner729b2372008-11-29 21:25:10 +0000480
481/// verifyRemoved - Verify that the specified instruction does not occur
482/// in our internal data structures.
483void MemoryDependenceAnalysis::verifyRemoved(Instruction *D) const {
484 for (LocalDepMapType::const_iterator I = LocalDeps.begin(),
485 E = LocalDeps.end(); I != E; ++I) {
486 assert(I->first != D && "Inst occurs in data structures");
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000487 assert(I->second.getInst() != D &&
Chris Lattner729b2372008-11-29 21:25:10 +0000488 "Inst occurs in data structures");
489 }
490
491 for (NonLocalDepMapType::const_iterator I = NonLocalDeps.begin(),
492 E = NonLocalDeps.end(); I != E; ++I) {
493 assert(I->first != D && "Inst occurs in data structures");
Chris Lattner4a69bad2008-11-30 02:52:26 +0000494 const PerInstNLInfo &INLD = I->second;
Chris Lattnerbf145d62008-12-01 01:15:42 +0000495 for (NonLocalDepInfo::const_iterator II = INLD.first.begin(),
496 EE = INLD.first.end(); II != EE; ++II)
Chris Lattnerfd3dcbe2008-11-30 23:17:19 +0000497 assert(II->second.getInst() != D && "Inst occurs in data structures");
Chris Lattner729b2372008-11-29 21:25:10 +0000498 }
499
500 for (ReverseDepMapType::const_iterator I = ReverseLocalDeps.begin(),
Chris Lattnerf68f3102008-11-30 02:28:25 +0000501 E = ReverseLocalDeps.end(); I != E; ++I) {
502 assert(I->first != D && "Inst occurs in data structures");
Chris Lattner729b2372008-11-29 21:25:10 +0000503 for (SmallPtrSet<Instruction*, 4>::const_iterator II = I->second.begin(),
504 EE = I->second.end(); II != EE; ++II)
505 assert(*II != D && "Inst occurs in data structures");
Chris Lattnerf68f3102008-11-30 02:28:25 +0000506 }
Chris Lattner729b2372008-11-29 21:25:10 +0000507
508 for (ReverseDepMapType::const_iterator I = ReverseNonLocalDeps.begin(),
509 E = ReverseNonLocalDeps.end();
Chris Lattnerf68f3102008-11-30 02:28:25 +0000510 I != E; ++I) {
511 assert(I->first != D && "Inst occurs in data structures");
Chris Lattner729b2372008-11-29 21:25:10 +0000512 for (SmallPtrSet<Instruction*, 4>::const_iterator II = I->second.begin(),
513 EE = I->second.end(); II != EE; ++II)
514 assert(*II != D && "Inst occurs in data structures");
Chris Lattnerf68f3102008-11-30 02:28:25 +0000515 }
Chris Lattner729b2372008-11-29 21:25:10 +0000516}