blob: ce1915d8812286432e34574deb03c8fbf2499a4f [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- MemoryDependenceAnalysis.cpp - Mem Deps Implementation --*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Andersonafe840e2007-08-08 22:01:54 +000012// alias analysis information, and tries to provide a lazy, caching interface to
Dan Gohmanf17a25c2007-07-18 16:29:46 +000013// a common kind of alias information query.
14//
15//===----------------------------------------------------------------------===//
16
Chris Lattner969470c2008-11-28 21:45:17 +000017#define DEBUG_TYPE "memdep"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000018#include "llvm/Analysis/MemoryDependenceAnalysis.h"
19#include "llvm/Constants.h"
20#include "llvm/Instructions.h"
21#include "llvm/Function.h"
22#include "llvm/Analysis/AliasAnalysis.h"
Chris Lattner52638032008-11-28 22:28:27 +000023#include "llvm/ADT/Statistic.h"
24#include "llvm/ADT/STLExtras.h"
Owen Anderson4c295472007-07-24 21:52:37 +000025#include "llvm/Support/CFG.h"
Tanya Lattner8edb2b72008-02-06 00:54:55 +000026#include "llvm/Support/CommandLine.h"
Chris Lattner969470c2008-11-28 21:45:17 +000027#include "llvm/Support/Debug.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000028#include "llvm/Target/TargetData.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000029using namespace llvm;
30
Owen Andersond6c7fea2007-09-09 21:43:49 +000031STATISTIC(NumCacheNonlocal, "Number of cached non-local responses");
32STATISTIC(NumUncacheNonlocal, "Number of uncached non-local responses");
33
Dan Gohmanf17a25c2007-07-18 16:29:46 +000034char MemoryDependenceAnalysis::ID = 0;
35
Dan Gohmanf17a25c2007-07-18 16:29:46 +000036// Register this pass...
37static RegisterPass<MemoryDependenceAnalysis> X("memdep",
Chris Lattner969470c2008-11-28 21:45:17 +000038 "Memory Dependence Analysis", false, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000039
Chris Lattner969470c2008-11-28 21:45:17 +000040/// verifyRemoved - Verify that the specified instruction does not occur
41/// in our internal data structures.
Chris Lattner48b24692008-11-28 21:42:09 +000042void MemoryDependenceAnalysis::verifyRemoved(Instruction *D) const {
Chris Lattnerfd9b56d2008-11-29 01:43:36 +000043 for (LocalDepMapType::const_iterator I = LocalDeps.begin(),
44 E = LocalDeps.end(); I != E; ++I) {
Chris Lattner969470c2008-11-28 21:45:17 +000045 assert(I->first != D && "Inst occurs in data structures");
Chris Lattnercb53af02008-11-29 03:22:12 +000046 assert(I->second.getPointer() != D &&
Chris Lattnerfd9b56d2008-11-29 01:43:36 +000047 "Inst occurs in data structures");
Owen Andersonc772be72007-12-08 01:37:09 +000048 }
49
Chris Lattner83c1a7c2008-11-29 09:20:15 +000050 for (NonLocalDepMapType::const_iterator I = NonLocalDeps.begin(),
51 E = NonLocalDeps.end(); I != E; ++I) {
Chris Lattner969470c2008-11-28 21:45:17 +000052 assert(I->first != D && "Inst occurs in data structures");
Chris Lattnerfd9b56d2008-11-29 01:43:36 +000053 for (DenseMap<BasicBlock*, DepResultTy>::iterator II = I->second.begin(),
Owen Andersonc8f33362008-06-01 20:51:41 +000054 EE = I->second.end(); II != EE; ++II)
Chris Lattnerfd9b56d2008-11-29 01:43:36 +000055 assert(II->second.getPointer() != D && "Inst occurs in data structures");
Owen Andersonc772be72007-12-08 01:37:09 +000056 }
57
Chris Lattner83c1a7c2008-11-29 09:20:15 +000058 for (ReverseDepMapType::const_iterator I = ReverseLocalDeps.begin(),
59 E = ReverseLocalDeps.end(); I != E; ++I)
Chris Lattner48b24692008-11-28 21:42:09 +000060 for (SmallPtrSet<Instruction*, 4>::const_iterator II = I->second.begin(),
61 EE = I->second.end(); II != EE; ++II)
Chris Lattner969470c2008-11-28 21:45:17 +000062 assert(*II != D && "Inst occurs in data structures");
Owen Andersonc772be72007-12-08 01:37:09 +000063
Chris Lattner83c1a7c2008-11-29 09:20:15 +000064 for (ReverseDepMapType::const_iterator I = ReverseNonLocalDeps.begin(),
65 E = ReverseNonLocalDeps.end();
Owen Andersonc772be72007-12-08 01:37:09 +000066 I != E; ++I)
Chris Lattner48b24692008-11-28 21:42:09 +000067 for (SmallPtrSet<Instruction*, 4>::const_iterator II = I->second.begin(),
68 EE = I->second.end(); II != EE; ++II)
Chris Lattner969470c2008-11-28 21:45:17 +000069 assert(*II != D && "Inst occurs in data structures");
Owen Andersonc772be72007-12-08 01:37:09 +000070}
71
Dan Gohmanf17a25c2007-07-18 16:29:46 +000072/// getAnalysisUsage - Does not modify anything. It uses Alias Analysis.
73///
74void MemoryDependenceAnalysis::getAnalysisUsage(AnalysisUsage &AU) const {
75 AU.setPreservesAll();
76 AU.addRequiredTransitive<AliasAnalysis>();
77 AU.addRequiredTransitive<TargetData>();
78}
79
Owen Anderson3de3c532007-08-08 22:26:03 +000080/// getCallSiteDependency - Private helper for finding the local dependencies
81/// of a call site.
Chris Lattner12cafbf2008-11-29 02:29:27 +000082MemDepResult MemoryDependenceAnalysis::
Chris Lattnera5a36c12008-11-29 03:47:00 +000083getCallSiteDependency(CallSite C, BasicBlock::iterator ScanIt,
84 BasicBlock *BB) {
Chris Lattnercb53af02008-11-29 03:22:12 +000085 AliasAnalysis &AA = getAnalysis<AliasAnalysis>();
86 TargetData &TD = getAnalysis<TargetData>();
Owen Andersone84f4bc2007-08-07 00:33:45 +000087
Owen Anderson3de3c532007-08-08 22:26:03 +000088 // Walk backwards through the block, looking for dependencies
Chris Lattnera5a36c12008-11-29 03:47:00 +000089 while (ScanIt != BB->begin()) {
90 Instruction *Inst = --ScanIt;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000091
92 // If this inst is a memory op, get the pointer it accessed
Chris Lattner18bd2452008-11-29 09:15:21 +000093 Value *Pointer = 0;
94 uint64_t PointerSize = 0;
95 if (StoreInst *S = dyn_cast<StoreInst>(Inst)) {
96 Pointer = S->getPointerOperand();
97 PointerSize = TD.getTypeStoreSize(S->getOperand(0)->getType());
98 } else if (AllocationInst *AI = dyn_cast<AllocationInst>(Inst)) {
99 Pointer = AI;
100 if (ConstantInt *C = dyn_cast<ConstantInt>(AI->getArraySize()))
Chris Lattnerade40a22008-11-29 21:22:42 +0000101 // Use ABI size (size between elements), not store size (size of one
102 // element without padding).
Chris Lattner18bd2452008-11-29 09:15:21 +0000103 PointerSize = C->getZExtValue() *
Chris Lattnerade40a22008-11-29 21:22:42 +0000104 TD.getABITypeSize(AI->getAllocatedType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000105 else
Chris Lattner18bd2452008-11-29 09:15:21 +0000106 PointerSize = ~0UL;
107 } else if (VAArgInst *V = dyn_cast<VAArgInst>(Inst)) {
108 Pointer = V->getOperand(0);
109 PointerSize = TD.getTypeStoreSize(V->getType());
110 } else if (FreeInst *F = dyn_cast<FreeInst>(Inst)) {
111 Pointer = F->getPointerOperand();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000112
113 // FreeInsts erase the entire structure
Chris Lattner18bd2452008-11-29 09:15:21 +0000114 PointerSize = ~0UL;
115 } else if (isa<CallInst>(Inst) || isa<InvokeInst>(Inst)) {
116 if (AA.getModRefBehavior(CallSite::get(Inst)) ==
Chris Lattnera5a36c12008-11-29 03:47:00 +0000117 AliasAnalysis::DoesNotAccessMemory)
Chris Lattner18bd2452008-11-29 09:15:21 +0000118 continue;
119 return MemDepResult::get(Inst);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000120 } else
121 continue;
122
Chris Lattner18bd2452008-11-29 09:15:21 +0000123 if (AA.getModRefInfo(C, Pointer, PointerSize) != AliasAnalysis::NoModRef)
Chris Lattnera5a36c12008-11-29 03:47:00 +0000124 return MemDepResult::get(Inst);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000125 }
126
Chris Lattnera5a36c12008-11-29 03:47:00 +0000127 // No dependence found.
Chris Lattner12cafbf2008-11-29 02:29:27 +0000128 return MemDepResult::getNonLocal();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000129}
130
Chris Lattnerade40a22008-11-29 21:22:42 +0000131/// getNonLocalDependency - Perform a full dependency query for the
132/// specified instruction, returning the set of blocks that the value is
133/// potentially live across. The returned set of results will include a
134/// "NonLocal" result for all blocks where the value is live across.
135///
136/// This method assumes the instruction returns a "nonlocal" dependency
137/// within its own block.
138///
139void MemoryDependenceAnalysis::getNonLocalDependency(Instruction *QueryInst,
140 DenseMap<BasicBlock*, MemDepResult> &Result) {
141 assert(getDependency(QueryInst).isNonLocal() &&
142 "getNonLocalDependency should only be used on insts with non-local deps!");
143 DenseMap<BasicBlock*, DepResultTy> &Cache = NonLocalDeps[QueryInst];
Owen Anderson4c295472007-07-24 21:52:37 +0000144
Chris Lattnerade40a22008-11-29 21:22:42 +0000145 /// DirtyBlocks - This is the set of blocks that need to be recomputed. This
146 /// can happen due to instructions being deleted etc.
147 SmallVector<BasicBlock*, 32> DirtyBlocks;
148
149 if (!Cache.empty()) {
150 // If we already have a partially computed set of results, scan them to
151 // determine what is dirty, seeding our initial DirtyBlocks worklist.
152 // FIXME: In the "don't need to be updated" case, this is expensive, why not
153 // have a per-"cache" flag saying it is undirty?
154 for (DenseMap<BasicBlock*, DepResultTy>::iterator I = Cache.begin(),
155 E = Cache.end(); I != E; ++I)
Chris Lattnerfd9b56d2008-11-29 01:43:36 +0000156 if (I->second.getInt() == Dirty)
Chris Lattnerade40a22008-11-29 21:22:42 +0000157 DirtyBlocks.push_back(I->first);
Owen Anderson05749072007-09-21 03:53:52 +0000158
Chris Lattnerade40a22008-11-29 21:22:42 +0000159 NumCacheNonlocal++;
160 } else {
161 // Seed DirtyBlocks with each of the preds of QueryInst's block.
162 BasicBlock *QueryBB = QueryInst->getParent();
163 // FIXME: use range insertion/append.
164 for (pred_iterator PI = pred_begin(QueryBB), E = pred_end(QueryBB);
165 PI != E; ++PI)
166 DirtyBlocks.push_back(*PI);
167 NumUncacheNonlocal++;
Chris Lattner12cafbf2008-11-29 02:29:27 +0000168 }
Chris Lattner12cafbf2008-11-29 02:29:27 +0000169
Chris Lattnerade40a22008-11-29 21:22:42 +0000170 // Iterate while we still have blocks to update.
171 while (!DirtyBlocks.empty()) {
172 BasicBlock *DirtyBB = DirtyBlocks.back();
173 DirtyBlocks.pop_back();
174
175 // Get the entry for this block. Note that this relies on DepResultTy
176 // default initializing to Dirty.
177 DepResultTy &DirtyBBEntry = Cache[DirtyBB];
178
179 // If DirtyBBEntry isn't dirty, it ended up on the worklist multiple times.
180 if (DirtyBBEntry.getInt() != Dirty) continue;
181
182 // Find out if this block has a local dependency for QueryInst.
183 // FIXME: If the dirty entry has an instruction pointer, scan from it!
184 // FIXME: Don't convert back and forth for MemDepResult <-> DepResultTy.
185 DirtyBBEntry = ConvFromResult(getDependencyFrom(QueryInst, DirtyBB->end(),
186 DirtyBB));
187
188 // If the block has a dependency (i.e. it isn't completely transparent to
189 // the value), remember it!
190 if (DirtyBBEntry.getInt() != NonLocal) {
191 // Keep the ReverseNonLocalDeps map up to date so we can efficiently
192 // update this when we remove instructions.
193 if (Instruction *Inst = DirtyBBEntry.getPointer())
194 ReverseNonLocalDeps[Inst].insert(QueryInst);
195 continue;
196 }
197
198 // If the block *is* completely transparent to the load, we need to check
199 // the predecessors of this block. Add them to our worklist.
200 for (pred_iterator I = pred_begin(DirtyBB), E = pred_end(DirtyBB);
201 I != E; ++I)
202 DirtyBlocks.push_back(*I);
Owen Anderson2bd46a52007-08-16 21:27:05 +0000203 }
Chris Lattnerade40a22008-11-29 21:22:42 +0000204
205 // Copy the result into the output set.
206 for (DenseMap<BasicBlock*, DepResultTy>::iterator I = Cache.begin(),
207 E = Cache.end(); I != E; ++I)
208 Result[I->first] = ConvToResult(I->second);
Owen Anderson4c295472007-07-24 21:52:37 +0000209}
210
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000211/// getDependency - Return the instruction on which a memory operation
Dan Gohmanf1f99a22008-04-10 23:02:38 +0000212/// depends. The local parameter indicates if the query should only
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000213/// evaluate dependencies within the same basic block.
Chris Lattnera5a36c12008-11-29 03:47:00 +0000214MemDepResult MemoryDependenceAnalysis::
215getDependencyFrom(Instruction *QueryInst, BasicBlock::iterator ScanIt,
216 BasicBlock *BB) {
217 AliasAnalysis &AA = getAnalysis<AliasAnalysis>();
218 TargetData &TD = getAnalysis<TargetData>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000219
220 // Get the pointer value for which dependence will be determined
Chris Lattnerac5d6e92008-11-29 08:51:16 +0000221 Value *MemPtr = 0;
222 uint64_t MemSize = 0;
223 bool MemVolatile = false;
Chris Lattnera5a36c12008-11-29 03:47:00 +0000224
225 if (StoreInst* S = dyn_cast<StoreInst>(QueryInst)) {
Chris Lattnerac5d6e92008-11-29 08:51:16 +0000226 MemPtr = S->getPointerOperand();
227 MemSize = TD.getTypeStoreSize(S->getOperand(0)->getType());
228 MemVolatile = S->isVolatile();
Chris Lattnera5a36c12008-11-29 03:47:00 +0000229 } else if (LoadInst* L = dyn_cast<LoadInst>(QueryInst)) {
Chris Lattnerac5d6e92008-11-29 08:51:16 +0000230 MemPtr = L->getPointerOperand();
231 MemSize = TD.getTypeStoreSize(L->getType());
232 MemVolatile = L->isVolatile();
Chris Lattnera5a36c12008-11-29 03:47:00 +0000233 } else if (VAArgInst* V = dyn_cast<VAArgInst>(QueryInst)) {
Chris Lattnerac5d6e92008-11-29 08:51:16 +0000234 MemPtr = V->getOperand(0);
235 MemSize = TD.getTypeStoreSize(V->getType());
Chris Lattnera5a36c12008-11-29 03:47:00 +0000236 } else if (FreeInst* F = dyn_cast<FreeInst>(QueryInst)) {
Chris Lattnerac5d6e92008-11-29 08:51:16 +0000237 MemPtr = F->getPointerOperand();
238 // FreeInsts erase the entire structure, not just a field.
239 MemSize = ~0UL;
240 } else if (isa<CallInst>(QueryInst) || isa<InvokeInst>(QueryInst))
Chris Lattnera5a36c12008-11-29 03:47:00 +0000241 return getCallSiteDependency(CallSite::get(QueryInst), ScanIt, BB);
Chris Lattnerac5d6e92008-11-29 08:51:16 +0000242 else // Non-memory instructions depend on nothing.
Chris Lattner12cafbf2008-11-29 02:29:27 +0000243 return MemDepResult::getNone();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000244
Owen Anderson3de3c532007-08-08 22:26:03 +0000245 // Walk backwards through the basic block, looking for dependencies
Chris Lattnera5a36c12008-11-29 03:47:00 +0000246 while (ScanIt != BB->begin()) {
247 Instruction *Inst = --ScanIt;
Chris Lattner4103c3c2008-11-29 09:09:48 +0000248
249 // If the access is volatile and this is a volatile load/store, return a
250 // dependence.
251 if (MemVolatile &&
252 ((isa<LoadInst>(Inst) && cast<LoadInst>(Inst)->isVolatile()) ||
253 (isa<StoreInst>(Inst) && cast<StoreInst>(Inst)->isVolatile())))
Chris Lattnerac5d6e92008-11-29 08:51:16 +0000254 return MemDepResult::get(Inst);
Chris Lattner4103c3c2008-11-29 09:09:48 +0000255
256 // MemDep is broken w.r.t. loads: it says that two loads of the same pointer
257 // depend on each other. :(
258 // FIXME: ELIMINATE THIS!
259 if (LoadInst *L = dyn_cast<LoadInst>(Inst)) {
260 Value *Pointer = L->getPointerOperand();
261 uint64_t PointerSize = TD.getTypeStoreSize(L->getType());
262
263 // If we found a pointer, check if it could be the same as our pointer
264 AliasAnalysis::AliasResult R =
265 AA.alias(Pointer, PointerSize, MemPtr, MemSize);
266
267 if (R == AliasAnalysis::NoAlias)
268 continue;
269
270 // May-alias loads don't depend on each other without a dependence.
271 if (isa<LoadInst>(QueryInst) && R == AliasAnalysis::MayAlias)
272 continue;
273 return MemDepResult::get(Inst);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000274 }
275
Chris Lattner4103c3c2008-11-29 09:09:48 +0000276 // FIXME: This claims that an access depends on the allocation. This may
277 // make sense, but is dubious at best. It would be better to fix GVN to
278 // handle a 'None' Query.
279 if (AllocationInst *AI = dyn_cast<AllocationInst>(Inst)) {
280 Value *Pointer = AI;
281 uint64_t PointerSize;
282 if (ConstantInt *C = dyn_cast<ConstantInt>(AI->getArraySize()))
Chris Lattnerade40a22008-11-29 21:22:42 +0000283 // Use ABI size (size between elements), not store size (size of one
284 // element without padding).
Chris Lattner4103c3c2008-11-29 09:09:48 +0000285 PointerSize = C->getZExtValue() *
Chris Lattnerade40a22008-11-29 21:22:42 +0000286 TD.getABITypeSize(AI->getAllocatedType());
Chris Lattner4103c3c2008-11-29 09:09:48 +0000287 else
288 PointerSize = ~0UL;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000289
Chris Lattner4103c3c2008-11-29 09:09:48 +0000290 AliasAnalysis::AliasResult R =
291 AA.alias(Pointer, PointerSize, MemPtr, MemSize);
292
293 if (R == AliasAnalysis::NoAlias)
294 continue;
295 return MemDepResult::get(Inst);
296 }
297
298
299 // See if this instruction mod/ref's the pointer.
300 AliasAnalysis::ModRefResult MRR = AA.getModRefInfo(Inst, MemPtr, MemSize);
301
302 if (MRR == AliasAnalysis::NoModRef)
Chris Lattnerac5d6e92008-11-29 08:51:16 +0000303 continue;
304
Chris Lattner4103c3c2008-11-29 09:09:48 +0000305 // Loads don't depend on read-only instructions.
306 if (isa<LoadInst>(QueryInst) && MRR == AliasAnalysis::Ref)
Chris Lattnerac5d6e92008-11-29 08:51:16 +0000307 continue;
Chris Lattner4103c3c2008-11-29 09:09:48 +0000308
309 // Otherwise, there is a dependence.
Chris Lattnerac5d6e92008-11-29 08:51:16 +0000310 return MemDepResult::get(Inst);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000311 }
312
Chris Lattnera5a36c12008-11-29 03:47:00 +0000313 // If we found nothing, return the non-local flag.
Chris Lattner12cafbf2008-11-29 02:29:27 +0000314 return MemDepResult::getNonLocal();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000315}
316
Chris Lattnera5a36c12008-11-29 03:47:00 +0000317/// getDependency - Return the instruction on which a memory operation
318/// depends.
319MemDepResult MemoryDependenceAnalysis::getDependency(Instruction *QueryInst) {
320 Instruction *ScanPos = QueryInst;
321
322 // Check for a cached result
323 DepResultTy &LocalCache = LocalDeps[QueryInst];
324
325 // If the cached entry is non-dirty, just return it.
326 if (LocalCache.getInt() != Dirty)
327 return ConvToResult(LocalCache);
328
329 // Otherwise, if we have a dirty entry, we know we can start the scan at that
330 // instruction, which may save us some work.
331 if (Instruction *Inst = LocalCache.getPointer())
332 ScanPos = Inst;
333
334 // Do the scan.
335 MemDepResult Res =
336 getDependencyFrom(QueryInst, ScanPos, QueryInst->getParent());
337
338 // Remember the result!
339 // FIXME: Don't convert back and forth! Make a shared helper function.
340 LocalCache = ConvFromResult(Res);
341 if (Instruction *I = Res.getInst())
Chris Lattner83c1a7c2008-11-29 09:20:15 +0000342 ReverseLocalDeps[I].insert(QueryInst);
Chris Lattnera5a36c12008-11-29 03:47:00 +0000343
344 return Res;
345}
346
347
Owen Anderson8d272d52008-02-12 21:15:18 +0000348/// dropInstruction - Remove an instruction from the analysis, making
349/// absolutely conservative assumptions when updating the cache. This is
350/// useful, for example when an instruction is changed rather than removed.
351void MemoryDependenceAnalysis::dropInstruction(Instruction* drop) {
Chris Lattnerfd9b56d2008-11-29 01:43:36 +0000352 LocalDepMapType::iterator depGraphEntry = LocalDeps.find(drop);
353 if (depGraphEntry != LocalDeps.end())
Chris Lattnercb53af02008-11-29 03:22:12 +0000354 if (Instruction *Inst = depGraphEntry->second.getPointer())
Chris Lattner83c1a7c2008-11-29 09:20:15 +0000355 ReverseLocalDeps[Inst].erase(drop);
Owen Anderson8d272d52008-02-12 21:15:18 +0000356
357 // Drop dependency information for things that depended on this instr
Chris Lattner83c1a7c2008-11-29 09:20:15 +0000358 SmallPtrSet<Instruction*, 4>& set = ReverseLocalDeps[drop];
Owen Anderson8d272d52008-02-12 21:15:18 +0000359 for (SmallPtrSet<Instruction*, 4>::iterator I = set.begin(), E = set.end();
360 I != E; ++I)
Chris Lattnerfd9b56d2008-11-29 01:43:36 +0000361 LocalDeps.erase(*I);
Owen Anderson8d272d52008-02-12 21:15:18 +0000362
Chris Lattnerfd9b56d2008-11-29 01:43:36 +0000363 LocalDeps.erase(drop);
Chris Lattner83c1a7c2008-11-29 09:20:15 +0000364 ReverseLocalDeps.erase(drop);
Owen Anderson8d272d52008-02-12 21:15:18 +0000365
Chris Lattnerfd9b56d2008-11-29 01:43:36 +0000366 for (DenseMap<BasicBlock*, DepResultTy>::iterator DI =
Chris Lattner83c1a7c2008-11-29 09:20:15 +0000367 NonLocalDeps[drop].begin(), DE = NonLocalDeps[drop].end();
Owen Anderson8d272d52008-02-12 21:15:18 +0000368 DI != DE; ++DI)
Chris Lattnercb53af02008-11-29 03:22:12 +0000369 if (Instruction *Inst = DI->second.getPointer())
Chris Lattner83c1a7c2008-11-29 09:20:15 +0000370 ReverseNonLocalDeps[Inst].erase(drop);
Owen Anderson8d272d52008-02-12 21:15:18 +0000371
Chris Lattner83c1a7c2008-11-29 09:20:15 +0000372 if (ReverseNonLocalDeps.count(drop)) {
Chris Lattnerfd9b56d2008-11-29 01:43:36 +0000373 SmallPtrSet<Instruction*, 4>& set =
Chris Lattner83c1a7c2008-11-29 09:20:15 +0000374 ReverseNonLocalDeps[drop];
Owen Anderson8d272d52008-02-12 21:15:18 +0000375 for (SmallPtrSet<Instruction*, 4>::iterator I = set.begin(), E = set.end();
376 I != E; ++I)
Chris Lattnerfd9b56d2008-11-29 01:43:36 +0000377 for (DenseMap<BasicBlock*, DepResultTy>::iterator DI =
Chris Lattner83c1a7c2008-11-29 09:20:15 +0000378 NonLocalDeps[*I].begin(), DE = NonLocalDeps[*I].end();
Owen Anderson8d272d52008-02-12 21:15:18 +0000379 DI != DE; ++DI)
Chris Lattnerfd9b56d2008-11-29 01:43:36 +0000380 if (DI->second == DepResultTy(drop, Normal))
Chris Lattnercb53af02008-11-29 03:22:12 +0000381 // FIXME: Why not remember the old insertion point??
Chris Lattnerfd9b56d2008-11-29 01:43:36 +0000382 DI->second = DepResultTy(0, Dirty);
Owen Anderson8d272d52008-02-12 21:15:18 +0000383 }
384
Chris Lattner83c1a7c2008-11-29 09:20:15 +0000385 ReverseNonLocalDeps.erase(drop);
386 NonLocalDeps.erase(drop);
Owen Anderson8d272d52008-02-12 21:15:18 +0000387}
388
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000389/// removeInstruction - Remove an instruction from the dependence analysis,
390/// updating the dependence of instructions that previously depended on it.
Owen Anderson3de3c532007-08-08 22:26:03 +0000391/// This method attempts to keep the cache coherent using the reverse map.
Chris Lattner1b185de2008-11-28 22:04:47 +0000392void MemoryDependenceAnalysis::removeInstruction(Instruction *RemInst) {
Chris Lattner1b185de2008-11-28 22:04:47 +0000393 // Walk through the Non-local dependencies, removing this one as the value
394 // for any cached queries.
Chris Lattnerfd9b56d2008-11-29 01:43:36 +0000395 for (DenseMap<BasicBlock*, DepResultTy>::iterator DI =
Chris Lattner83c1a7c2008-11-29 09:20:15 +0000396 NonLocalDeps[RemInst].begin(), DE = NonLocalDeps[RemInst].end();
Owen Andersonc772be72007-12-08 01:37:09 +0000397 DI != DE; ++DI)
Chris Lattnercb53af02008-11-29 03:22:12 +0000398 if (Instruction *Inst = DI->second.getPointer())
Chris Lattner83c1a7c2008-11-29 09:20:15 +0000399 ReverseNonLocalDeps[Inst].erase(RemInst);
Owen Andersonc772be72007-12-08 01:37:09 +0000400
Chris Lattner52638032008-11-28 22:28:27 +0000401 // Shortly after this, we will look for things that depend on RemInst. In
402 // order to update these, we'll need a new dependency to base them on. We
403 // could completely delete any entries that depend on this, but it is better
404 // to make a more accurate approximation where possible. Compute that better
405 // approximation if we can.
Chris Lattnerfd9b56d2008-11-29 01:43:36 +0000406 DepResultTy NewDependency;
Chris Lattner52638032008-11-28 22:28:27 +0000407
Chris Lattner1b185de2008-11-28 22:04:47 +0000408 // If we have a cached local dependence query for this instruction, remove it.
Chris Lattner52638032008-11-28 22:28:27 +0000409 //
Chris Lattnerfd9b56d2008-11-29 01:43:36 +0000410 LocalDepMapType::iterator LocalDepEntry = LocalDeps.find(RemInst);
411 if (LocalDepEntry != LocalDeps.end()) {
Chris Lattnercb53af02008-11-29 03:22:12 +0000412 DepResultTy LocalDep = LocalDepEntry->second;
Owen Anderson25296a22008-01-30 01:24:05 +0000413
Chris Lattner52638032008-11-28 22:28:27 +0000414 // Remove this local dependency info.
Chris Lattnerfd9b56d2008-11-29 01:43:36 +0000415 LocalDeps.erase(LocalDepEntry);
Chris Lattner1b185de2008-11-28 22:04:47 +0000416
Chris Lattner52638032008-11-28 22:28:27 +0000417 // Remove us from DepInst's reverse set now that the local dep info is gone.
Chris Lattnercb53af02008-11-29 03:22:12 +0000418 if (Instruction *Inst = LocalDep.getPointer())
Chris Lattner83c1a7c2008-11-29 09:20:15 +0000419 ReverseLocalDeps[Inst].erase(RemInst);
Chris Lattner52638032008-11-28 22:28:27 +0000420
421 // If we have unconfirmed info, don't trust it.
Chris Lattnercb53af02008-11-29 03:22:12 +0000422 if (LocalDep.getInt() != Dirty) {
Chris Lattner52638032008-11-28 22:28:27 +0000423 // If we have a confirmed non-local flag, use it.
Chris Lattnerfd9b56d2008-11-29 01:43:36 +0000424 if (LocalDep.getInt() == NonLocal || LocalDep.getInt() == None) {
Chris Lattner89fbbe72008-11-28 22:51:08 +0000425 // The only time this dependency is confirmed is if it is non-local.
Chris Lattnerfd9b56d2008-11-29 01:43:36 +0000426 NewDependency = LocalDep;
Chris Lattner52638032008-11-28 22:28:27 +0000427 } else {
428 // If we have dep info for RemInst, set them to it.
Chris Lattnerfd9b56d2008-11-29 01:43:36 +0000429 Instruction *NDI = next(BasicBlock::iterator(LocalDep.getPointer()));
430 if (NDI != RemInst) // Don't use RemInst for the new dependency!
Chris Lattnercb53af02008-11-29 03:22:12 +0000431 NewDependency = DepResultTy(NDI, Dirty);
Chris Lattner52638032008-11-28 22:28:27 +0000432 }
David Greene701171c2007-07-31 20:01:27 +0000433 }
Owen Anderson6487cf52008-02-05 04:34:03 +0000434 }
435
Chris Lattner52638032008-11-28 22:28:27 +0000436 // If we don't already have a local dependency answer for this instruction,
437 // use the immediate successor of RemInst. We use the successor because
438 // getDependence starts by checking the immediate predecessor of what is in
439 // the cache.
Chris Lattnercb53af02008-11-29 03:22:12 +0000440 if (NewDependency == DepResultTy(0, Dirty))
441 NewDependency = DepResultTy(next(BasicBlock::iterator(RemInst)), Dirty);
Chris Lattner52638032008-11-28 22:28:27 +0000442
Chris Lattner89fbbe72008-11-28 22:51:08 +0000443 // Loop over all of the things that depend on the instruction we're removing.
444 //
Chris Lattner83c1a7c2008-11-29 09:20:15 +0000445 ReverseDepMapType::iterator ReverseDepIt = ReverseLocalDeps.find(RemInst);
446 if (ReverseDepIt != ReverseLocalDeps.end()) {
Chris Lattner89fbbe72008-11-28 22:51:08 +0000447 SmallPtrSet<Instruction*, 4> &ReverseDeps = ReverseDepIt->second;
448 for (SmallPtrSet<Instruction*, 4>::iterator I = ReverseDeps.begin(),
449 E = ReverseDeps.end(); I != E; ++I) {
450 Instruction *InstDependingOnRemInst = *I;
451
452 // If we thought the instruction depended on itself (possible for
453 // unconfirmed dependencies) ignore the update.
454 if (InstDependingOnRemInst == RemInst) continue;
455
456 // Insert the new dependencies.
Chris Lattnercb53af02008-11-29 03:22:12 +0000457 LocalDeps[InstDependingOnRemInst] = NewDependency;
Chris Lattner89fbbe72008-11-28 22:51:08 +0000458
459 // If our NewDependency is an instruction, make sure to remember that new
460 // things depend on it.
Chris Lattnercb53af02008-11-29 03:22:12 +0000461 if (Instruction *Inst = NewDependency.getPointer())
Chris Lattner83c1a7c2008-11-29 09:20:15 +0000462 ReverseLocalDeps[Inst].insert(InstDependingOnRemInst);
Chris Lattner89fbbe72008-11-28 22:51:08 +0000463 }
Chris Lattner83c1a7c2008-11-29 09:20:15 +0000464 ReverseLocalDeps.erase(RemInst);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000465 }
Owen Anderson2bd46a52007-08-16 21:27:05 +0000466
Chris Lattner83c1a7c2008-11-29 09:20:15 +0000467 ReverseDepIt = ReverseNonLocalDeps.find(RemInst);
468 if (ReverseDepIt != ReverseNonLocalDeps.end()) {
Chris Lattner89fbbe72008-11-28 22:51:08 +0000469 SmallPtrSet<Instruction*, 4>& set = ReverseDepIt->second;
Owen Anderson2bd46a52007-08-16 21:27:05 +0000470 for (SmallPtrSet<Instruction*, 4>::iterator I = set.begin(), E = set.end();
471 I != E; ++I)
Chris Lattner83c1a7c2008-11-29 09:20:15 +0000472 for (DenseMap<BasicBlock*, DepResultTy>::iterator
473 DI = NonLocalDeps[*I].begin(), DE = NonLocalDeps[*I].end();
Owen Anderson05749072007-09-21 03:53:52 +0000474 DI != DE; ++DI)
Chris Lattnerfd9b56d2008-11-29 01:43:36 +0000475 if (DI->second == DepResultTy(RemInst, Normal))
Chris Lattnercb53af02008-11-29 03:22:12 +0000476 // FIXME: Why not remember the old insertion point??
Chris Lattnerfd9b56d2008-11-29 01:43:36 +0000477 DI->second = DepResultTy(0, Dirty);
Chris Lattner83c1a7c2008-11-29 09:20:15 +0000478 ReverseNonLocalDeps.erase(ReverseDepIt);
Owen Anderson2bd46a52007-08-16 21:27:05 +0000479 }
Owen Andersonc772be72007-12-08 01:37:09 +0000480
Chris Lattner83c1a7c2008-11-29 09:20:15 +0000481 NonLocalDeps.erase(RemInst);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000482
Chris Lattner1b185de2008-11-28 22:04:47 +0000483 getAnalysis<AliasAnalysis>().deleteValue(RemInst);
Chris Lattner969470c2008-11-28 21:45:17 +0000484
Chris Lattner1b185de2008-11-28 22:04:47 +0000485 DEBUG(verifyRemoved(RemInst));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000486}