blob: 56128e689660f4182ecff7b7676b90623a55a6fe [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 Lattner0ec48dd2008-11-29 22:02:15 +000031STATISTIC(NumCacheNonLocal, "Number of cached non-local responses");
32STATISTIC(NumUncacheNonLocal, "Number of uncached non-local responses");
Owen Anderson7fad7e32007-09-09 21:43:49 +000033
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
Owen Anderson642a9e32007-08-08 22:26:03 +000048/// getCallSiteDependency - Private helper for finding the local dependencies
49/// of a call site.
Chris Lattner4c724002008-11-29 02:29:27 +000050MemDepResult MemoryDependenceAnalysis::
Chris Lattner5391a1d2008-11-29 03:47:00 +000051getCallSiteDependency(CallSite C, BasicBlock::iterator ScanIt,
52 BasicBlock *BB) {
Chris Lattner7f524222008-11-29 03:22:12 +000053 AliasAnalysis &AA = getAnalysis<AliasAnalysis>();
54 TargetData &TD = getAnalysis<TargetData>();
Owen Andersondbbe8162007-08-07 00:33:45 +000055
Owen Anderson642a9e32007-08-08 22:26:03 +000056 // Walk backwards through the block, looking for dependencies
Chris Lattner5391a1d2008-11-29 03:47:00 +000057 while (ScanIt != BB->begin()) {
58 Instruction *Inst = --ScanIt;
Owen Anderson5f323202007-07-10 17:59:22 +000059
60 // If this inst is a memory op, get the pointer it accessed
Chris Lattner00314b32008-11-29 09:15:21 +000061 Value *Pointer = 0;
62 uint64_t PointerSize = 0;
63 if (StoreInst *S = dyn_cast<StoreInst>(Inst)) {
64 Pointer = S->getPointerOperand();
65 PointerSize = TD.getTypeStoreSize(S->getOperand(0)->getType());
66 } else if (AllocationInst *AI = dyn_cast<AllocationInst>(Inst)) {
67 Pointer = AI;
68 if (ConstantInt *C = dyn_cast<ConstantInt>(AI->getArraySize()))
Chris Lattner86b29ef2008-11-29 21:22:42 +000069 // Use ABI size (size between elements), not store size (size of one
70 // element without padding).
Chris Lattner00314b32008-11-29 09:15:21 +000071 PointerSize = C->getZExtValue() *
Chris Lattner86b29ef2008-11-29 21:22:42 +000072 TD.getABITypeSize(AI->getAllocatedType());
Owen Anderson5f323202007-07-10 17:59:22 +000073 else
Chris Lattner00314b32008-11-29 09:15:21 +000074 PointerSize = ~0UL;
75 } else if (VAArgInst *V = dyn_cast<VAArgInst>(Inst)) {
76 Pointer = V->getOperand(0);
77 PointerSize = TD.getTypeStoreSize(V->getType());
78 } else if (FreeInst *F = dyn_cast<FreeInst>(Inst)) {
79 Pointer = F->getPointerOperand();
Owen Anderson5f323202007-07-10 17:59:22 +000080
81 // FreeInsts erase the entire structure
Chris Lattner00314b32008-11-29 09:15:21 +000082 PointerSize = ~0UL;
83 } else if (isa<CallInst>(Inst) || isa<InvokeInst>(Inst)) {
84 if (AA.getModRefBehavior(CallSite::get(Inst)) ==
Chris Lattner5391a1d2008-11-29 03:47:00 +000085 AliasAnalysis::DoesNotAccessMemory)
Chris Lattner00314b32008-11-29 09:15:21 +000086 continue;
87 return MemDepResult::get(Inst);
Owen Anderson202da142007-07-10 20:39:07 +000088 } else
89 continue;
Owen Anderson5f323202007-07-10 17:59:22 +000090
Chris Lattner00314b32008-11-29 09:15:21 +000091 if (AA.getModRefInfo(C, Pointer, PointerSize) != AliasAnalysis::NoModRef)
Chris Lattner5391a1d2008-11-29 03:47:00 +000092 return MemDepResult::get(Inst);
Owen Anderson5f323202007-07-10 17:59:22 +000093 }
94
Chris Lattner5391a1d2008-11-29 03:47:00 +000095 // No dependence found.
Chris Lattner4c724002008-11-29 02:29:27 +000096 return MemDepResult::getNonLocal();
Owen Anderson5f323202007-07-10 17:59:22 +000097}
98
Chris Lattner86b29ef2008-11-29 21:22:42 +000099/// getNonLocalDependency - Perform a full dependency query for the
100/// specified instruction, returning the set of blocks that the value is
101/// potentially live across. The returned set of results will include a
102/// "NonLocal" result for all blocks where the value is live across.
103///
104/// This method assumes the instruction returns a "nonlocal" dependency
105/// within its own block.
106///
Chris Lattner396a4a52008-11-29 21:33:22 +0000107void MemoryDependenceAnalysis::
108getNonLocalDependency(Instruction *QueryInst,
109 SmallVectorImpl<std::pair<BasicBlock*,
110 MemDepResult> > &Result) {
Chris Lattner86b29ef2008-11-29 21:22:42 +0000111 assert(getDependency(QueryInst).isNonLocal() &&
112 "getNonLocalDependency should only be used on insts with non-local deps!");
113 DenseMap<BasicBlock*, DepResultTy> &Cache = NonLocalDeps[QueryInst];
Owen Anderson4beedbd2007-07-24 21:52:37 +0000114
Chris Lattner0ec48dd2008-11-29 22:02:15 +0000115 /// DirtyBlocks - This is the set of blocks that need to be recomputed. In
116 /// the cached case, this can happen due to instructions being deleted etc. In
117 /// the uncached case, this starts out as the set of predecessors we care
118 /// about.
Chris Lattner86b29ef2008-11-29 21:22:42 +0000119 SmallVector<BasicBlock*, 32> DirtyBlocks;
120
121 if (!Cache.empty()) {
122 // If we already have a partially computed set of results, scan them to
123 // determine what is dirty, seeding our initial DirtyBlocks worklist.
124 // FIXME: In the "don't need to be updated" case, this is expensive, why not
125 // have a per-"cache" flag saying it is undirty?
126 for (DenseMap<BasicBlock*, DepResultTy>::iterator I = Cache.begin(),
127 E = Cache.end(); I != E; ++I)
Chris Lattner39f372e2008-11-29 01:43:36 +0000128 if (I->second.getInt() == Dirty)
Chris Lattner86b29ef2008-11-29 21:22:42 +0000129 DirtyBlocks.push_back(I->first);
Owen Andersonce4d88a2007-09-21 03:53:52 +0000130
Chris Lattner0ec48dd2008-11-29 22:02:15 +0000131 NumCacheNonLocal++;
132
133 //cerr << "CACHED CASE: " << DirtyBlocks.size() << " dirty: "
134 // << Cache.size() << " cached: " << *QueryInst;
Chris Lattner86b29ef2008-11-29 21:22:42 +0000135 } else {
136 // Seed DirtyBlocks with each of the preds of QueryInst's block.
137 BasicBlock *QueryBB = QueryInst->getParent();
Chris Lattner396a4a52008-11-29 21:33:22 +0000138 DirtyBlocks.append(pred_begin(QueryBB), pred_end(QueryBB));
Chris Lattner0ec48dd2008-11-29 22:02:15 +0000139 NumUncacheNonLocal++;
Chris Lattner4c724002008-11-29 02:29:27 +0000140 }
Chris Lattner4c724002008-11-29 02:29:27 +0000141
Chris Lattner86b29ef2008-11-29 21:22:42 +0000142 // Iterate while we still have blocks to update.
143 while (!DirtyBlocks.empty()) {
144 BasicBlock *DirtyBB = DirtyBlocks.back();
145 DirtyBlocks.pop_back();
146
147 // Get the entry for this block. Note that this relies on DepResultTy
148 // default initializing to Dirty.
149 DepResultTy &DirtyBBEntry = Cache[DirtyBB];
150
151 // If DirtyBBEntry isn't dirty, it ended up on the worklist multiple times.
152 if (DirtyBBEntry.getInt() != Dirty) continue;
153
154 // Find out if this block has a local dependency for QueryInst.
155 // FIXME: If the dirty entry has an instruction pointer, scan from it!
156 // FIXME: Don't convert back and forth for MemDepResult <-> DepResultTy.
Chris Lattner0ec48dd2008-11-29 22:02:15 +0000157
158 // If the dirty entry has a pointer, start scanning from it so we don't have
159 // to rescan the entire block.
160 BasicBlock::iterator ScanPos = DirtyBB->end();
161 if (Instruction *Inst = DirtyBBEntry.getPointer())
162 ScanPos = Inst;
163
164 DirtyBBEntry = ConvFromResult(getDependencyFrom(QueryInst, ScanPos,
Chris Lattner86b29ef2008-11-29 21:22:42 +0000165 DirtyBB));
166
167 // If the block has a dependency (i.e. it isn't completely transparent to
168 // the value), remember it!
169 if (DirtyBBEntry.getInt() != NonLocal) {
170 // Keep the ReverseNonLocalDeps map up to date so we can efficiently
171 // update this when we remove instructions.
172 if (Instruction *Inst = DirtyBBEntry.getPointer())
173 ReverseNonLocalDeps[Inst].insert(QueryInst);
174 continue;
175 }
176
177 // If the block *is* completely transparent to the load, we need to check
178 // the predecessors of this block. Add them to our worklist.
179 for (pred_iterator I = pred_begin(DirtyBB), E = pred_end(DirtyBB);
180 I != E; ++I)
181 DirtyBlocks.push_back(*I);
Owen Anderson4d13de42007-08-16 21:27:05 +0000182 }
Chris Lattner86b29ef2008-11-29 21:22:42 +0000183
184 // Copy the result into the output set.
185 for (DenseMap<BasicBlock*, DepResultTy>::iterator I = Cache.begin(),
186 E = Cache.end(); I != E; ++I)
Chris Lattner396a4a52008-11-29 21:33:22 +0000187 Result.push_back(std::make_pair(I->first, ConvToResult(I->second)));
Owen Anderson4beedbd2007-07-24 21:52:37 +0000188}
189
Owen Anderson78e02f72007-07-06 23:14:35 +0000190/// getDependency - Return the instruction on which a memory operation
Dan Gohmanc04575f2008-04-10 23:02:38 +0000191/// depends. The local parameter indicates if the query should only
Owen Anderson6b278fc2007-07-10 17:08:11 +0000192/// evaluate dependencies within the same basic block.
Chris Lattner5391a1d2008-11-29 03:47:00 +0000193MemDepResult MemoryDependenceAnalysis::
194getDependencyFrom(Instruction *QueryInst, BasicBlock::iterator ScanIt,
195 BasicBlock *BB) {
196 AliasAnalysis &AA = getAnalysis<AliasAnalysis>();
197 TargetData &TD = getAnalysis<TargetData>();
Owen Anderson78e02f72007-07-06 23:14:35 +0000198
199 // Get the pointer value for which dependence will be determined
Chris Lattner25a08142008-11-29 08:51:16 +0000200 Value *MemPtr = 0;
201 uint64_t MemSize = 0;
202 bool MemVolatile = false;
Chris Lattner5391a1d2008-11-29 03:47:00 +0000203
204 if (StoreInst* S = dyn_cast<StoreInst>(QueryInst)) {
Chris Lattner25a08142008-11-29 08:51:16 +0000205 MemPtr = S->getPointerOperand();
206 MemSize = TD.getTypeStoreSize(S->getOperand(0)->getType());
207 MemVolatile = S->isVolatile();
Chris Lattner5391a1d2008-11-29 03:47:00 +0000208 } else if (LoadInst* L = dyn_cast<LoadInst>(QueryInst)) {
Chris Lattner25a08142008-11-29 08:51:16 +0000209 MemPtr = L->getPointerOperand();
210 MemSize = TD.getTypeStoreSize(L->getType());
211 MemVolatile = L->isVolatile();
Chris Lattner5391a1d2008-11-29 03:47:00 +0000212 } else if (VAArgInst* V = dyn_cast<VAArgInst>(QueryInst)) {
Chris Lattner25a08142008-11-29 08:51:16 +0000213 MemPtr = V->getOperand(0);
214 MemSize = TD.getTypeStoreSize(V->getType());
Chris Lattner5391a1d2008-11-29 03:47:00 +0000215 } else if (FreeInst* F = dyn_cast<FreeInst>(QueryInst)) {
Chris Lattner25a08142008-11-29 08:51:16 +0000216 MemPtr = F->getPointerOperand();
217 // FreeInsts erase the entire structure, not just a field.
218 MemSize = ~0UL;
219 } else if (isa<CallInst>(QueryInst) || isa<InvokeInst>(QueryInst))
Chris Lattner5391a1d2008-11-29 03:47:00 +0000220 return getCallSiteDependency(CallSite::get(QueryInst), ScanIt, BB);
Chris Lattner25a08142008-11-29 08:51:16 +0000221 else // Non-memory instructions depend on nothing.
Chris Lattner4c724002008-11-29 02:29:27 +0000222 return MemDepResult::getNone();
Owen Anderson78e02f72007-07-06 23:14:35 +0000223
Owen Anderson642a9e32007-08-08 22:26:03 +0000224 // Walk backwards through the basic block, looking for dependencies
Chris Lattner5391a1d2008-11-29 03:47:00 +0000225 while (ScanIt != BB->begin()) {
226 Instruction *Inst = --ScanIt;
Chris Lattnera161ab02008-11-29 09:09:48 +0000227
228 // If the access is volatile and this is a volatile load/store, return a
229 // dependence.
230 if (MemVolatile &&
231 ((isa<LoadInst>(Inst) && cast<LoadInst>(Inst)->isVolatile()) ||
232 (isa<StoreInst>(Inst) && cast<StoreInst>(Inst)->isVolatile())))
Chris Lattner25a08142008-11-29 08:51:16 +0000233 return MemDepResult::get(Inst);
Chris Lattnera161ab02008-11-29 09:09:48 +0000234
235 // MemDep is broken w.r.t. loads: it says that two loads of the same pointer
236 // depend on each other. :(
237 // FIXME: ELIMINATE THIS!
238 if (LoadInst *L = dyn_cast<LoadInst>(Inst)) {
239 Value *Pointer = L->getPointerOperand();
240 uint64_t PointerSize = TD.getTypeStoreSize(L->getType());
241
242 // If we found a pointer, check if it could be the same as our pointer
243 AliasAnalysis::AliasResult R =
244 AA.alias(Pointer, PointerSize, MemPtr, MemSize);
245
246 if (R == AliasAnalysis::NoAlias)
247 continue;
248
249 // May-alias loads don't depend on each other without a dependence.
250 if (isa<LoadInst>(QueryInst) && R == AliasAnalysis::MayAlias)
251 continue;
252 return MemDepResult::get(Inst);
Owen Anderson78e02f72007-07-06 23:14:35 +0000253 }
254
Chris Lattnera161ab02008-11-29 09:09:48 +0000255 // FIXME: This claims that an access depends on the allocation. This may
256 // make sense, but is dubious at best. It would be better to fix GVN to
257 // handle a 'None' Query.
258 if (AllocationInst *AI = dyn_cast<AllocationInst>(Inst)) {
259 Value *Pointer = AI;
260 uint64_t PointerSize;
261 if (ConstantInt *C = dyn_cast<ConstantInt>(AI->getArraySize()))
Chris Lattner86b29ef2008-11-29 21:22:42 +0000262 // Use ABI size (size between elements), not store size (size of one
263 // element without padding).
Chris Lattnera161ab02008-11-29 09:09:48 +0000264 PointerSize = C->getZExtValue() *
Chris Lattner86b29ef2008-11-29 21:22:42 +0000265 TD.getABITypeSize(AI->getAllocatedType());
Chris Lattnera161ab02008-11-29 09:09:48 +0000266 else
267 PointerSize = ~0UL;
Owen Anderson78e02f72007-07-06 23:14:35 +0000268
Chris Lattnera161ab02008-11-29 09:09:48 +0000269 AliasAnalysis::AliasResult R =
270 AA.alias(Pointer, PointerSize, MemPtr, MemSize);
271
272 if (R == AliasAnalysis::NoAlias)
273 continue;
274 return MemDepResult::get(Inst);
275 }
276
277
278 // See if this instruction mod/ref's the pointer.
279 AliasAnalysis::ModRefResult MRR = AA.getModRefInfo(Inst, MemPtr, MemSize);
280
281 if (MRR == AliasAnalysis::NoModRef)
Chris Lattner25a08142008-11-29 08:51:16 +0000282 continue;
283
Chris Lattnera161ab02008-11-29 09:09:48 +0000284 // Loads don't depend on read-only instructions.
285 if (isa<LoadInst>(QueryInst) && MRR == AliasAnalysis::Ref)
Chris Lattner25a08142008-11-29 08:51:16 +0000286 continue;
Chris Lattnera161ab02008-11-29 09:09:48 +0000287
288 // Otherwise, there is a dependence.
Chris Lattner25a08142008-11-29 08:51:16 +0000289 return MemDepResult::get(Inst);
Owen Anderson78e02f72007-07-06 23:14:35 +0000290 }
291
Chris Lattner5391a1d2008-11-29 03:47:00 +0000292 // If we found nothing, return the non-local flag.
Chris Lattner4c724002008-11-29 02:29:27 +0000293 return MemDepResult::getNonLocal();
Owen Anderson78e02f72007-07-06 23:14:35 +0000294}
295
Chris Lattner5391a1d2008-11-29 03:47:00 +0000296/// getDependency - Return the instruction on which a memory operation
297/// depends.
298MemDepResult MemoryDependenceAnalysis::getDependency(Instruction *QueryInst) {
299 Instruction *ScanPos = QueryInst;
300
301 // Check for a cached result
302 DepResultTy &LocalCache = LocalDeps[QueryInst];
303
Chris Lattner0ec48dd2008-11-29 22:02:15 +0000304 // If the cached entry is non-dirty, just return it. Note that this depends
305 // on DepResultTy's default constructing to 'dirty'.
Chris Lattner5391a1d2008-11-29 03:47:00 +0000306 if (LocalCache.getInt() != Dirty)
307 return ConvToResult(LocalCache);
308
309 // Otherwise, if we have a dirty entry, we know we can start the scan at that
310 // instruction, which may save us some work.
311 if (Instruction *Inst = LocalCache.getPointer())
312 ScanPos = Inst;
313
314 // Do the scan.
315 MemDepResult Res =
316 getDependencyFrom(QueryInst, ScanPos, QueryInst->getParent());
317
318 // Remember the result!
319 // FIXME: Don't convert back and forth! Make a shared helper function.
320 LocalCache = ConvFromResult(Res);
321 if (Instruction *I = Res.getInst())
Chris Lattner8c465272008-11-29 09:20:15 +0000322 ReverseLocalDeps[I].insert(QueryInst);
Chris Lattner5391a1d2008-11-29 03:47:00 +0000323
324 return Res;
325}
326
327
Owen Anderson30b4bd42008-02-12 21:15:18 +0000328/// dropInstruction - Remove an instruction from the analysis, making
329/// absolutely conservative assumptions when updating the cache. This is
330/// useful, for example when an instruction is changed rather than removed.
331void MemoryDependenceAnalysis::dropInstruction(Instruction* drop) {
Chris Lattner39f372e2008-11-29 01:43:36 +0000332 LocalDepMapType::iterator depGraphEntry = LocalDeps.find(drop);
333 if (depGraphEntry != LocalDeps.end())
Chris Lattner7f524222008-11-29 03:22:12 +0000334 if (Instruction *Inst = depGraphEntry->second.getPointer())
Chris Lattner8c465272008-11-29 09:20:15 +0000335 ReverseLocalDeps[Inst].erase(drop);
Owen Anderson30b4bd42008-02-12 21:15:18 +0000336
337 // Drop dependency information for things that depended on this instr
Chris Lattner8c465272008-11-29 09:20:15 +0000338 SmallPtrSet<Instruction*, 4>& set = ReverseLocalDeps[drop];
Owen Anderson30b4bd42008-02-12 21:15:18 +0000339 for (SmallPtrSet<Instruction*, 4>::iterator I = set.begin(), E = set.end();
340 I != E; ++I)
Chris Lattner39f372e2008-11-29 01:43:36 +0000341 LocalDeps.erase(*I);
Owen Anderson30b4bd42008-02-12 21:15:18 +0000342
Chris Lattner39f372e2008-11-29 01:43:36 +0000343 LocalDeps.erase(drop);
Chris Lattner8c465272008-11-29 09:20:15 +0000344 ReverseLocalDeps.erase(drop);
Owen Anderson30b4bd42008-02-12 21:15:18 +0000345
Chris Lattner39f372e2008-11-29 01:43:36 +0000346 for (DenseMap<BasicBlock*, DepResultTy>::iterator DI =
Chris Lattner8c465272008-11-29 09:20:15 +0000347 NonLocalDeps[drop].begin(), DE = NonLocalDeps[drop].end();
Owen Anderson30b4bd42008-02-12 21:15:18 +0000348 DI != DE; ++DI)
Chris Lattner7f524222008-11-29 03:22:12 +0000349 if (Instruction *Inst = DI->second.getPointer())
Chris Lattner8c465272008-11-29 09:20:15 +0000350 ReverseNonLocalDeps[Inst].erase(drop);
Owen Anderson30b4bd42008-02-12 21:15:18 +0000351
Chris Lattner8c465272008-11-29 09:20:15 +0000352 if (ReverseNonLocalDeps.count(drop)) {
Chris Lattner0ec48dd2008-11-29 22:02:15 +0000353 SmallVector<std::pair<Instruction*, Instruction*>, 8> ReverseDepsToAdd;
354
Chris Lattner39f372e2008-11-29 01:43:36 +0000355 SmallPtrSet<Instruction*, 4>& set =
Chris Lattner8c465272008-11-29 09:20:15 +0000356 ReverseNonLocalDeps[drop];
Owen Anderson30b4bd42008-02-12 21:15:18 +0000357 for (SmallPtrSet<Instruction*, 4>::iterator I = set.begin(), E = set.end();
358 I != E; ++I)
Chris Lattner39f372e2008-11-29 01:43:36 +0000359 for (DenseMap<BasicBlock*, DepResultTy>::iterator DI =
Chris Lattner8c465272008-11-29 09:20:15 +0000360 NonLocalDeps[*I].begin(), DE = NonLocalDeps[*I].end();
Owen Anderson30b4bd42008-02-12 21:15:18 +0000361 DI != DE; ++DI)
Chris Lattner0ec48dd2008-11-29 22:02:15 +0000362 if (DI->second.getPointer() == drop) {
363 // Convert to a dirty entry for the subsequent instruction.
364 DI->second.setInt(Dirty);
365 if (drop->isTerminator())
366 DI->second.setPointer(0);
367 else {
368 Instruction *NextI = next(BasicBlock::iterator(drop));
369 DI->second.setPointer(NextI);
370 ReverseDepsToAdd.push_back(std::make_pair(NextI, *I));
371 }
372 }
373
374 // Add new reverse deps after scanning the set, to avoid invalidating 'Set'
375 while (!ReverseDepsToAdd.empty()) {
376 ReverseNonLocalDeps[ReverseDepsToAdd.back().first]
377 .insert(ReverseDepsToAdd.back().second);
378 ReverseDepsToAdd.pop_back();
379 }
Owen Anderson30b4bd42008-02-12 21:15:18 +0000380 }
381
Chris Lattner8c465272008-11-29 09:20:15 +0000382 ReverseNonLocalDeps.erase(drop);
383 NonLocalDeps.erase(drop);
Owen Anderson30b4bd42008-02-12 21:15:18 +0000384}
385
Owen Anderson78e02f72007-07-06 23:14:35 +0000386/// removeInstruction - Remove an instruction from the dependence analysis,
387/// updating the dependence of instructions that previously depended on it.
Owen Anderson642a9e32007-08-08 22:26:03 +0000388/// This method attempts to keep the cache coherent using the reverse map.
Chris Lattner5f589dc2008-11-28 22:04:47 +0000389void MemoryDependenceAnalysis::removeInstruction(Instruction *RemInst) {
Chris Lattner5f589dc2008-11-28 22:04:47 +0000390 // Walk through the Non-local dependencies, removing this one as the value
391 // for any cached queries.
Chris Lattner39f372e2008-11-29 01:43:36 +0000392 for (DenseMap<BasicBlock*, DepResultTy>::iterator DI =
Chris Lattner8c465272008-11-29 09:20:15 +0000393 NonLocalDeps[RemInst].begin(), DE = NonLocalDeps[RemInst].end();
Owen Anderson5fc4aba2007-12-08 01:37:09 +0000394 DI != DE; ++DI)
Chris Lattner7f524222008-11-29 03:22:12 +0000395 if (Instruction *Inst = DI->second.getPointer())
Chris Lattner8c465272008-11-29 09:20:15 +0000396 ReverseNonLocalDeps[Inst].erase(RemInst);
Owen Anderson5fc4aba2007-12-08 01:37:09 +0000397
Chris Lattnerbaad8882008-11-28 22:28:27 +0000398 // Shortly after this, we will look for things that depend on RemInst. In
399 // order to update these, we'll need a new dependency to base them on. We
400 // could completely delete any entries that depend on this, but it is better
401 // to make a more accurate approximation where possible. Compute that better
402 // approximation if we can.
Chris Lattner39f372e2008-11-29 01:43:36 +0000403 DepResultTy NewDependency;
Chris Lattnerbaad8882008-11-28 22:28:27 +0000404
Chris Lattner5f589dc2008-11-28 22:04:47 +0000405 // If we have a cached local dependence query for this instruction, remove it.
Chris Lattnerbaad8882008-11-28 22:28:27 +0000406 //
Chris Lattner39f372e2008-11-29 01:43:36 +0000407 LocalDepMapType::iterator LocalDepEntry = LocalDeps.find(RemInst);
408 if (LocalDepEntry != LocalDeps.end()) {
Chris Lattner7f524222008-11-29 03:22:12 +0000409 DepResultTy LocalDep = LocalDepEntry->second;
Owen Anderson9a8ff8c2008-01-30 01:24:05 +0000410
Chris Lattnerbaad8882008-11-28 22:28:27 +0000411 // Remove this local dependency info.
Chris Lattner39f372e2008-11-29 01:43:36 +0000412 LocalDeps.erase(LocalDepEntry);
Chris Lattner5f589dc2008-11-28 22:04:47 +0000413
Chris Lattnerbaad8882008-11-28 22:28:27 +0000414 // Remove us from DepInst's reverse set now that the local dep info is gone.
Chris Lattner7f524222008-11-29 03:22:12 +0000415 if (Instruction *Inst = LocalDep.getPointer())
Chris Lattner8c465272008-11-29 09:20:15 +0000416 ReverseLocalDeps[Inst].erase(RemInst);
Chris Lattnerbaad8882008-11-28 22:28:27 +0000417
418 // If we have unconfirmed info, don't trust it.
Chris Lattner7f524222008-11-29 03:22:12 +0000419 if (LocalDep.getInt() != Dirty) {
Chris Lattnerbaad8882008-11-28 22:28:27 +0000420 // If we have a confirmed non-local flag, use it.
Chris Lattner39f372e2008-11-29 01:43:36 +0000421 if (LocalDep.getInt() == NonLocal || LocalDep.getInt() == None) {
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000422 // The only time this dependency is confirmed is if it is non-local.
Chris Lattner39f372e2008-11-29 01:43:36 +0000423 NewDependency = LocalDep;
Chris Lattnerbaad8882008-11-28 22:28:27 +0000424 } else {
425 // If we have dep info for RemInst, set them to it.
Chris Lattner39f372e2008-11-29 01:43:36 +0000426 Instruction *NDI = next(BasicBlock::iterator(LocalDep.getPointer()));
427 if (NDI != RemInst) // Don't use RemInst for the new dependency!
Chris Lattner7f524222008-11-29 03:22:12 +0000428 NewDependency = DepResultTy(NDI, Dirty);
Chris Lattnerbaad8882008-11-28 22:28:27 +0000429 }
David Greenedf464192007-07-31 20:01:27 +0000430 }
Owen Andersona8701a62008-02-05 04:34:03 +0000431 }
432
Chris Lattnerbaad8882008-11-28 22:28:27 +0000433 // If we don't already have a local dependency answer for this instruction,
434 // use the immediate successor of RemInst. We use the successor because
435 // getDependence starts by checking the immediate predecessor of what is in
436 // the cache.
Chris Lattner7f524222008-11-29 03:22:12 +0000437 if (NewDependency == DepResultTy(0, Dirty))
438 NewDependency = DepResultTy(next(BasicBlock::iterator(RemInst)), Dirty);
Chris Lattnerbaad8882008-11-28 22:28:27 +0000439
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000440 // Loop over all of the things that depend on the instruction we're removing.
441 //
Chris Lattner8c465272008-11-29 09:20:15 +0000442 ReverseDepMapType::iterator ReverseDepIt = ReverseLocalDeps.find(RemInst);
443 if (ReverseDepIt != ReverseLocalDeps.end()) {
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000444 SmallPtrSet<Instruction*, 4> &ReverseDeps = ReverseDepIt->second;
445 for (SmallPtrSet<Instruction*, 4>::iterator I = ReverseDeps.begin(),
446 E = ReverseDeps.end(); I != E; ++I) {
447 Instruction *InstDependingOnRemInst = *I;
448
449 // If we thought the instruction depended on itself (possible for
450 // unconfirmed dependencies) ignore the update.
451 if (InstDependingOnRemInst == RemInst) continue;
452
453 // Insert the new dependencies.
Chris Lattner7f524222008-11-29 03:22:12 +0000454 LocalDeps[InstDependingOnRemInst] = NewDependency;
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000455
456 // If our NewDependency is an instruction, make sure to remember that new
457 // things depend on it.
Chris Lattner7f524222008-11-29 03:22:12 +0000458 if (Instruction *Inst = NewDependency.getPointer())
Chris Lattner8c465272008-11-29 09:20:15 +0000459 ReverseLocalDeps[Inst].insert(InstDependingOnRemInst);
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000460 }
Chris Lattner8c465272008-11-29 09:20:15 +0000461 ReverseLocalDeps.erase(RemInst);
Owen Anderson78e02f72007-07-06 23:14:35 +0000462 }
Owen Anderson4d13de42007-08-16 21:27:05 +0000463
Chris Lattner8c465272008-11-29 09:20:15 +0000464 ReverseDepIt = ReverseNonLocalDeps.find(RemInst);
465 if (ReverseDepIt != ReverseNonLocalDeps.end()) {
Chris Lattner0ec48dd2008-11-29 22:02:15 +0000466 SmallVector<std::pair<Instruction*, Instruction*>, 8> ReverseDepsToAdd;
467
Chris Lattnerd3d12ec2008-11-28 22:51:08 +0000468 SmallPtrSet<Instruction*, 4>& set = ReverseDepIt->second;
Owen Anderson4d13de42007-08-16 21:27:05 +0000469 for (SmallPtrSet<Instruction*, 4>::iterator I = set.begin(), E = set.end();
470 I != E; ++I)
Chris Lattner8c465272008-11-29 09:20:15 +0000471 for (DenseMap<BasicBlock*, DepResultTy>::iterator
472 DI = NonLocalDeps[*I].begin(), DE = NonLocalDeps[*I].end();
Owen Andersonce4d88a2007-09-21 03:53:52 +0000473 DI != DE; ++DI)
Chris Lattner0ec48dd2008-11-29 22:02:15 +0000474 if (DI->second.getPointer() == RemInst) {
475 // Convert to a dirty entry for the subsequent instruction.
476 DI->second.setInt(Dirty);
477 if (RemInst->isTerminator())
478 DI->second.setPointer(0);
479 else {
480 Instruction *NextI = next(BasicBlock::iterator(RemInst));
481 DI->second.setPointer(NextI);
482 ReverseDepsToAdd.push_back(std::make_pair(NextI, *I));
483 }
484 }
485
486 // Add new reverse deps after scanning the set, to avoid invalidating 'Set'
487 while (!ReverseDepsToAdd.empty()) {
488 ReverseNonLocalDeps[ReverseDepsToAdd.back().first]
489 .insert(ReverseDepsToAdd.back().second);
490 ReverseDepsToAdd.pop_back();
491 }
492
Chris Lattner8c465272008-11-29 09:20:15 +0000493 ReverseNonLocalDeps.erase(ReverseDepIt);
Owen Anderson4d13de42007-08-16 21:27:05 +0000494 }
Owen Anderson5fc4aba2007-12-08 01:37:09 +0000495
Chris Lattner8c465272008-11-29 09:20:15 +0000496 NonLocalDeps.erase(RemInst);
Owen Anderson78e02f72007-07-06 23:14:35 +0000497
Chris Lattner5f589dc2008-11-28 22:04:47 +0000498 getAnalysis<AliasAnalysis>().deleteValue(RemInst);
Chris Lattner0e575f42008-11-28 21:45:17 +0000499
Chris Lattner5f589dc2008-11-28 22:04:47 +0000500 DEBUG(verifyRemoved(RemInst));
Owen Anderson78e02f72007-07-06 23:14:35 +0000501}
Chris Lattner729b2372008-11-29 21:25:10 +0000502
503/// verifyRemoved - Verify that the specified instruction does not occur
504/// in our internal data structures.
505void MemoryDependenceAnalysis::verifyRemoved(Instruction *D) const {
506 for (LocalDepMapType::const_iterator I = LocalDeps.begin(),
507 E = LocalDeps.end(); I != E; ++I) {
508 assert(I->first != D && "Inst occurs in data structures");
509 assert(I->second.getPointer() != D &&
510 "Inst occurs in data structures");
511 }
512
513 for (NonLocalDepMapType::const_iterator I = NonLocalDeps.begin(),
514 E = NonLocalDeps.end(); I != E; ++I) {
515 assert(I->first != D && "Inst occurs in data structures");
516 for (DenseMap<BasicBlock*, DepResultTy>::iterator II = I->second.begin(),
517 EE = I->second.end(); II != EE; ++II)
518 assert(II->second.getPointer() != D && "Inst occurs in data structures");
519 }
520
521 for (ReverseDepMapType::const_iterator I = ReverseLocalDeps.begin(),
522 E = ReverseLocalDeps.end(); I != E; ++I)
523 for (SmallPtrSet<Instruction*, 4>::const_iterator II = I->second.begin(),
524 EE = I->second.end(); II != EE; ++II)
525 assert(*II != D && "Inst occurs in data structures");
526
527 for (ReverseDepMapType::const_iterator I = ReverseNonLocalDeps.begin(),
528 E = ReverseNonLocalDeps.end();
529 I != E; ++I)
530 for (SmallPtrSet<Instruction*, 4>::const_iterator II = I->second.begin(),
531 EE = I->second.end(); II != EE; ++II)
532 assert(*II != D && "Inst occurs in data structures");
533}