blob: 605dca1069ff4c897fd492171951e26f1ac32e67 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- MemoryDependenceAnalysis.cpp - Mem Deps Implementation --*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the Owen Anderson and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
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
17#include "llvm/Analysis/MemoryDependenceAnalysis.h"
18#include "llvm/Constants.h"
19#include "llvm/Instructions.h"
20#include "llvm/Function.h"
21#include "llvm/Analysis/AliasAnalysis.h"
Owen Anderson4c295472007-07-24 21:52:37 +000022#include "llvm/Support/CFG.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000023#include "llvm/Target/TargetData.h"
24
25using namespace llvm;
26
27char MemoryDependenceAnalysis::ID = 0;
28
Owen Anderson935e39b2007-08-09 04:42:44 +000029Instruction* const MemoryDependenceAnalysis::NonLocal = (Instruction*)-3;
30Instruction* const MemoryDependenceAnalysis::None = (Instruction*)-4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000031
32// Register this pass...
33static RegisterPass<MemoryDependenceAnalysis> X("memdep",
34 "Memory Dependence Analysis");
35
36/// getAnalysisUsage - Does not modify anything. It uses Alias Analysis.
37///
38void MemoryDependenceAnalysis::getAnalysisUsage(AnalysisUsage &AU) const {
39 AU.setPreservesAll();
40 AU.addRequiredTransitive<AliasAnalysis>();
41 AU.addRequiredTransitive<TargetData>();
42}
43
Owen Anderson3de3c532007-08-08 22:26:03 +000044/// getCallSiteDependency - Private helper for finding the local dependencies
45/// of a call site.
Owen Anderson935e39b2007-08-09 04:42:44 +000046Instruction* MemoryDependenceAnalysis::getCallSiteDependency(CallSite C,
Owen Andersonafe840e2007-08-08 22:01:54 +000047 Instruction* start,
48 BasicBlock* block) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000049
50 AliasAnalysis& AA = getAnalysis<AliasAnalysis>();
51 TargetData& TD = getAnalysis<TargetData>();
52 BasicBlock::iterator blockBegin = C.getInstruction()->getParent()->begin();
53 BasicBlock::iterator QI = C.getInstruction();
54
Owen Anderson3de3c532007-08-08 22:26:03 +000055 // If the starting point was specifiy, use it
Owen Andersone84f4bc2007-08-07 00:33:45 +000056 if (start) {
57 QI = start;
58 blockBegin = start->getParent()->end();
Owen Anderson3de3c532007-08-08 22:26:03 +000059 // If the starting point wasn't specified, but the block was, use it
Owen Andersone84f4bc2007-08-07 00:33:45 +000060 } else if (!start && block) {
61 QI = block->end();
62 blockBegin = block->end();
63 }
64
Owen Anderson3de3c532007-08-08 22:26:03 +000065 // Walk backwards through the block, looking for dependencies
Dan Gohmanf17a25c2007-07-18 16:29:46 +000066 while (QI != blockBegin) {
67 --QI;
68
69 // If this inst is a memory op, get the pointer it accessed
70 Value* pointer = 0;
71 uint64_t pointerSize = 0;
72 if (StoreInst* S = dyn_cast<StoreInst>(QI)) {
73 pointer = S->getPointerOperand();
74 pointerSize = TD.getTypeSize(S->getOperand(0)->getType());
75 } else if (LoadInst* L = dyn_cast<LoadInst>(QI)) {
76 pointer = L->getPointerOperand();
77 pointerSize = TD.getTypeSize(L->getType());
78 } else if (AllocationInst* AI = dyn_cast<AllocationInst>(QI)) {
79 pointer = AI;
80 if (ConstantInt* C = dyn_cast<ConstantInt>(AI->getArraySize()))
Owen Andersonafe840e2007-08-08 22:01:54 +000081 pointerSize = C->getZExtValue() * \
82 TD.getTypeSize(AI->getAllocatedType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +000083 else
84 pointerSize = ~0UL;
85 } else if (VAArgInst* V = dyn_cast<VAArgInst>(QI)) {
86 pointer = V->getOperand(0);
87 pointerSize = TD.getTypeSize(V->getType());
88 } else if (FreeInst* F = dyn_cast<FreeInst>(QI)) {
89 pointer = F->getPointerOperand();
90
91 // FreeInsts erase the entire structure
92 pointerSize = ~0UL;
93 } else if (CallSite::get(QI).getInstruction() != 0) {
94 if (AA.getModRefInfo(C, CallSite::get(QI)) != AliasAnalysis::NoModRef) {
Owen Andersone84f4bc2007-08-07 00:33:45 +000095 if (!start && !block) {
96 depGraphLocal.insert(std::make_pair(C.getInstruction(),
97 std::make_pair(QI, true)));
98 reverseDep[QI].insert(C.getInstruction());
99 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000100 return QI;
101 } else {
102 continue;
103 }
104 } else
105 continue;
106
107 if (AA.getModRefInfo(C, pointer, pointerSize) != AliasAnalysis::NoModRef) {
Owen Andersone84f4bc2007-08-07 00:33:45 +0000108 if (!start && !block) {
109 depGraphLocal.insert(std::make_pair(C.getInstruction(),
110 std::make_pair(QI, true)));
111 reverseDep[QI].insert(C.getInstruction());
112 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000113 return QI;
114 }
115 }
116
117 // No dependence found
Owen Andersonafe840e2007-08-08 22:01:54 +0000118 depGraphLocal.insert(std::make_pair(C.getInstruction(),
119 std::make_pair(NonLocal, true)));
Owen Andersone84f4bc2007-08-07 00:33:45 +0000120 reverseDep[NonLocal].insert(C.getInstruction());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000121 return NonLocal;
122}
123
Owen Anderson3de3c532007-08-08 22:26:03 +0000124/// nonLocalHelper - Private helper used to calculate non-local dependencies
125/// by doing DFS on the predecessors of a block to find its dependencies
Owen Anderson3f75d122007-08-01 22:01:54 +0000126void MemoryDependenceAnalysis::nonLocalHelper(Instruction* query,
Owen Anderson5d72a422007-07-25 19:57:03 +0000127 BasicBlock* block,
Owen Andersonafe840e2007-08-08 22:01:54 +0000128 DenseMap<BasicBlock*, Value*>& resp) {
Owen Anderson3de3c532007-08-08 22:26:03 +0000129 // Set of blocks that we've already visited in our DFS
Owen Anderson3f75d122007-08-01 22:01:54 +0000130 SmallPtrSet<BasicBlock*, 4> visited;
Owen Anderson3de3c532007-08-08 22:26:03 +0000131 // Current stack of the DFS
Owen Anderson3f75d122007-08-01 22:01:54 +0000132 SmallVector<BasicBlock*, 4> stack;
133 stack.push_back(block);
Owen Anderson4c295472007-07-24 21:52:37 +0000134
Owen Anderson3de3c532007-08-08 22:26:03 +0000135 // Do a basic DFS
Owen Anderson3f75d122007-08-01 22:01:54 +0000136 while (!stack.empty()) {
137 BasicBlock* BB = stack.back();
138
Owen Anderson3de3c532007-08-08 22:26:03 +0000139 // If we've already visited this block, no need to revist
Owen Andersonc6a31b92007-08-02 17:56:05 +0000140 if (visited.count(BB)) {
Owen Anderson3f75d122007-08-01 22:01:54 +0000141 stack.pop_back();
142 continue;
143 }
144
Owen Anderson3de3c532007-08-08 22:26:03 +0000145 // If we find a new block with a local dependency for query,
146 // then we insert the new dependency and backtrack.
Owen Anderson3f75d122007-08-01 22:01:54 +0000147 if (BB != block) {
Owen Andersonc6a31b92007-08-02 17:56:05 +0000148 visited.insert(BB);
149
Owen Anderson935e39b2007-08-09 04:42:44 +0000150 Instruction* localDep = getDependency(query, 0, BB);
Owen Anderson3f75d122007-08-01 22:01:54 +0000151 if (localDep != NonLocal) {
Owen Anderson935e39b2007-08-09 04:42:44 +0000152 resp.insert(std::make_pair(BB, localDep));
Owen Andersonc6a31b92007-08-02 17:56:05 +0000153 stack.pop_back();
154
Owen Anderson3f75d122007-08-01 22:01:54 +0000155 continue;
156 }
Owen Anderson3de3c532007-08-08 22:26:03 +0000157 // If we re-encounter the starting block, we still need to search it
158 // because there might be a dependency in the starting block AFTER
159 // the position of the query. This is necessary to get loops right.
Owen Andersonc6a31b92007-08-02 17:56:05 +0000160 } else if (BB == block && stack.size() > 1) {
161 visited.insert(BB);
162
Owen Anderson935e39b2007-08-09 04:42:44 +0000163 Instruction* localDep = getDependency(query, 0, BB);
Owen Andersonc6a31b92007-08-02 17:56:05 +0000164 if (localDep != query)
Owen Anderson935e39b2007-08-09 04:42:44 +0000165 resp.insert(std::make_pair(BB, localDep));
Owen Andersonc6a31b92007-08-02 17:56:05 +0000166
167 stack.pop_back();
168
169 continue;
Owen Anderson3f75d122007-08-01 22:01:54 +0000170 }
171
Owen Anderson3de3c532007-08-08 22:26:03 +0000172 // If we didn't find anything, recurse on the precessors of this block
Owen Anderson3f75d122007-08-01 22:01:54 +0000173 bool predOnStack = false;
174 bool inserted = false;
175 for (pred_iterator PI = pred_begin(BB), PE = pred_end(BB);
176 PI != PE; ++PI)
177 if (!visited.count(*PI)) {
178 stack.push_back(*PI);
179 inserted = true;
180 } else
181 predOnStack = true;
182
Owen Anderson3de3c532007-08-08 22:26:03 +0000183 // If we inserted a new predecessor, then we'll come back to this block
Owen Anderson3f75d122007-08-01 22:01:54 +0000184 if (inserted)
185 continue;
Owen Anderson3de3c532007-08-08 22:26:03 +0000186 // If we didn't insert because we have no predecessors, then this
187 // query has no dependency at all.
Owen Anderson3f75d122007-08-01 22:01:54 +0000188 else if (!inserted && !predOnStack) {
Owen Anderson935e39b2007-08-09 04:42:44 +0000189 resp.insert(std::make_pair(BB, None));
Owen Anderson3de3c532007-08-08 22:26:03 +0000190 // If we didn't insert because our predecessors are already on the stack,
191 // then we might still have a dependency, but it will be discovered during
192 // backtracking.
Owen Anderson3f75d122007-08-01 22:01:54 +0000193 } else if (!inserted && predOnStack){
Owen Anderson935e39b2007-08-09 04:42:44 +0000194 resp.insert(std::make_pair(BB, NonLocal));
Owen Anderson3f75d122007-08-01 22:01:54 +0000195 }
196
197 stack.pop_back();
Owen Anderson4c295472007-07-24 21:52:37 +0000198 }
Owen Anderson4c295472007-07-24 21:52:37 +0000199}
200
Owen Andersonafe840e2007-08-08 22:01:54 +0000201/// getNonLocalDependency - Fills the passed-in map with the non-local
202/// dependencies of the queries. The map will contain NonLocal for
203/// blocks between the query and its dependencies.
Owen Anderson3f75d122007-08-01 22:01:54 +0000204void MemoryDependenceAnalysis::getNonLocalDependency(Instruction* query,
Owen Andersonafe840e2007-08-08 22:01:54 +0000205 DenseMap<BasicBlock*, Value*>& resp) {
Owen Anderson3de3c532007-08-08 22:26:03 +0000206 // First check that we don't actually have a local dependency.
Owen Anderson935e39b2007-08-09 04:42:44 +0000207 Instruction* localDep = getDependency(query);
Owen Anderson4c295472007-07-24 21:52:37 +0000208 if (localDep != NonLocal) {
Owen Anderson935e39b2007-08-09 04:42:44 +0000209 resp.insert(std::make_pair(query->getParent(),localDep));
Owen Anderson3f75d122007-08-01 22:01:54 +0000210 return;
Owen Anderson4c295472007-07-24 21:52:37 +0000211 }
212
Owen Anderson3de3c532007-08-08 22:26:03 +0000213 // If not, go ahead and search for non-local ones.
Owen Anderson3f75d122007-08-01 22:01:54 +0000214 nonLocalHelper(query, query->getParent(), resp);
Owen Anderson4c295472007-07-24 21:52:37 +0000215}
216
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000217/// getDependency - Return the instruction on which a memory operation
218/// depends. The local paramter indicates if the query should only
219/// evaluate dependencies within the same basic block.
Owen Anderson935e39b2007-08-09 04:42:44 +0000220Instruction* MemoryDependenceAnalysis::getDependency(Instruction* query,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000221 Instruction* start,
Owen Anderson4c295472007-07-24 21:52:37 +0000222 BasicBlock* block) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000223 // Start looking for dependencies with the queried inst
224 BasicBlock::iterator QI = query;
225
226 // Check for a cached result
Owen Anderson935e39b2007-08-09 04:42:44 +0000227 std::pair<Instruction*, bool> cachedResult = depGraphLocal[query];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000228 // If we have a _confirmed_ cached entry, return it
229 if (cachedResult.second)
230 return cachedResult.first;
Owen Anderson5d72a422007-07-25 19:57:03 +0000231 else if (cachedResult.first && cachedResult.first != NonLocal)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000232 // If we have an unconfirmed cached entry, we can start our search from there
Owen Anderson935e39b2007-08-09 04:42:44 +0000233 QI = cachedResult.first;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000234
235 if (start)
236 QI = start;
Owen Anderson5d72a422007-07-25 19:57:03 +0000237 else if (!start && block)
238 QI = block->end();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000239
240 AliasAnalysis& AA = getAnalysis<AliasAnalysis>();
241 TargetData& TD = getAnalysis<TargetData>();
242
243 // Get the pointer value for which dependence will be determined
244 Value* dependee = 0;
245 uint64_t dependeeSize = 0;
246 bool queryIsVolatile = false;
247 if (StoreInst* S = dyn_cast<StoreInst>(query)) {
248 dependee = S->getPointerOperand();
249 dependeeSize = TD.getTypeSize(S->getOperand(0)->getType());
250 queryIsVolatile = S->isVolatile();
251 } else if (LoadInst* L = dyn_cast<LoadInst>(query)) {
252 dependee = L->getPointerOperand();
253 dependeeSize = TD.getTypeSize(L->getType());
254 queryIsVolatile = L->isVolatile();
255 } else if (VAArgInst* V = dyn_cast<VAArgInst>(query)) {
256 dependee = V->getOperand(0);
257 dependeeSize = TD.getTypeSize(V->getType());
258 } else if (FreeInst* F = dyn_cast<FreeInst>(query)) {
259 dependee = F->getPointerOperand();
260
261 // FreeInsts erase the entire structure, not just a field
262 dependeeSize = ~0UL;
263 } else if (CallSite::get(query).getInstruction() != 0)
Owen Andersone84f4bc2007-08-07 00:33:45 +0000264 return getCallSiteDependency(CallSite::get(query), start, block);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000265 else if (isa<AllocationInst>(query))
266 return None;
267 else
268 return None;
269
Owen Anderson4c295472007-07-24 21:52:37 +0000270 BasicBlock::iterator blockBegin = block ? block->begin()
271 : query->getParent()->begin();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000272
Owen Anderson3de3c532007-08-08 22:26:03 +0000273 // Walk backwards through the basic block, looking for dependencies
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000274 while (QI != blockBegin) {
275 --QI;
276
277 // If this inst is a memory op, get the pointer it accessed
278 Value* pointer = 0;
279 uint64_t pointerSize = 0;
280 if (StoreInst* S = dyn_cast<StoreInst>(QI)) {
281 // All volatile loads/stores depend on each other
282 if (queryIsVolatile && S->isVolatile()) {
Owen Andersone84f4bc2007-08-07 00:33:45 +0000283 if (!start && !block) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000284 depGraphLocal.insert(std::make_pair(query, std::make_pair(S, true)));
Owen Andersone84f4bc2007-08-07 00:33:45 +0000285 reverseDep[S].insert(query);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000286 }
287
288 return S;
289 }
290
291 pointer = S->getPointerOperand();
292 pointerSize = TD.getTypeSize(S->getOperand(0)->getType());
293 } else if (LoadInst* L = dyn_cast<LoadInst>(QI)) {
294 // All volatile loads/stores depend on each other
295 if (queryIsVolatile && L->isVolatile()) {
Owen Andersone84f4bc2007-08-07 00:33:45 +0000296 if (!start && !block) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000297 depGraphLocal.insert(std::make_pair(query, std::make_pair(L, true)));
Owen Andersone84f4bc2007-08-07 00:33:45 +0000298 reverseDep[L].insert(query);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000299 }
300
301 return L;
302 }
303
304 pointer = L->getPointerOperand();
305 pointerSize = TD.getTypeSize(L->getType());
306 } else if (AllocationInst* AI = dyn_cast<AllocationInst>(QI)) {
307 pointer = AI;
308 if (ConstantInt* C = dyn_cast<ConstantInt>(AI->getArraySize()))
Owen Andersonafe840e2007-08-08 22:01:54 +0000309 pointerSize = C->getZExtValue() * \
310 TD.getTypeSize(AI->getAllocatedType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000311 else
312 pointerSize = ~0UL;
313 } else if (VAArgInst* V = dyn_cast<VAArgInst>(QI)) {
314 pointer = V->getOperand(0);
315 pointerSize = TD.getTypeSize(V->getType());
316 } else if (FreeInst* F = dyn_cast<FreeInst>(QI)) {
317 pointer = F->getPointerOperand();
318
319 // FreeInsts erase the entire structure
320 pointerSize = ~0UL;
321 } else if (CallSite::get(QI).getInstruction() != 0) {
Owen Andersonafe840e2007-08-08 22:01:54 +0000322 // Call insts need special handling. Check if they can modify our pointer
Owen Anderson151f7692007-08-06 23:26:03 +0000323 AliasAnalysis::ModRefResult MR = AA.getModRefInfo(CallSite::get(QI),
324 dependee, dependeeSize);
325
326 if (MR != AliasAnalysis::NoModRef) {
327 // Loads don't depend on read-only calls
328 if (isa<LoadInst>(query) && MR == AliasAnalysis::Ref)
329 continue;
330
Owen Andersone84f4bc2007-08-07 00:33:45 +0000331 if (!start && !block) {
Owen Andersonafe840e2007-08-08 22:01:54 +0000332 depGraphLocal.insert(std::make_pair(query,
333 std::make_pair(QI, true)));
Owen Andersone84f4bc2007-08-07 00:33:45 +0000334 reverseDep[QI].insert(query);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000335 }
336
337 return QI;
338 } else {
339 continue;
340 }
341 }
342
343 // If we found a pointer, check if it could be the same as our pointer
344 if (pointer) {
345 AliasAnalysis::AliasResult R = AA.alias(pointer, pointerSize,
346 dependee, dependeeSize);
347
348 if (R != AliasAnalysis::NoAlias) {
Owen Anderson151f7692007-08-06 23:26:03 +0000349 // May-alias loads don't depend on each other
350 if (isa<LoadInst>(query) && isa<LoadInst>(QI) &&
351 R == AliasAnalysis::MayAlias)
352 continue;
353
Owen Andersone84f4bc2007-08-07 00:33:45 +0000354 if (!start && !block) {
Owen Andersonafe840e2007-08-08 22:01:54 +0000355 depGraphLocal.insert(std::make_pair(query,
356 std::make_pair(QI, true)));
Owen Andersone84f4bc2007-08-07 00:33:45 +0000357 reverseDep[QI].insert(query);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000358 }
359
360 return QI;
361 }
362 }
363 }
364
365 // If we found nothing, return the non-local flag
Owen Andersone84f4bc2007-08-07 00:33:45 +0000366 if (!start && !block) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000367 depGraphLocal.insert(std::make_pair(query,
368 std::make_pair(NonLocal, true)));
Owen Andersone84f4bc2007-08-07 00:33:45 +0000369 reverseDep[NonLocal].insert(query);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000370 }
371
372 return NonLocal;
373}
374
375/// removeInstruction - Remove an instruction from the dependence analysis,
376/// updating the dependence of instructions that previously depended on it.
Owen Anderson3de3c532007-08-08 22:26:03 +0000377/// This method attempts to keep the cache coherent using the reverse map.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000378void MemoryDependenceAnalysis::removeInstruction(Instruction* rem) {
379 // Figure out the new dep for things that currently depend on rem
Owen Anderson935e39b2007-08-09 04:42:44 +0000380 Instruction* newDep = NonLocal;
David Greene701171c2007-07-31 20:01:27 +0000381
382 depMapType::iterator depGraphEntry = depGraphLocal.find(rem);
383 // We assume here that it's not in the reverse map if it's not in
384 // the dep map. Checking it could be expensive, so don't do it.
385
386 if (depGraphEntry != depGraphLocal.end()) {
387 if (depGraphEntry->second.first != NonLocal &&
388 depGraphEntry->second.second) {
389 // If we have dep info for rem, set them to it
Owen Anderson935e39b2007-08-09 04:42:44 +0000390 BasicBlock::iterator RI = depGraphEntry->second.first;
David Greene701171c2007-07-31 20:01:27 +0000391 RI++;
392 newDep = RI;
393 } else if (depGraphEntry->second.first == NonLocal &&
394 depGraphEntry->second.second ) {
395 // If we have a confirmed non-local flag, use it
396 newDep = NonLocal;
397 } else {
398 // Otherwise, use the immediate successor of rem
Owen Andersonafe840e2007-08-08 22:01:54 +0000399 // NOTE: This is because, when getDependence is called, it will first
400 // check the immediate predecessor of what is in the cache.
David Greene701171c2007-07-31 20:01:27 +0000401 BasicBlock::iterator RI = rem;
402 RI++;
403 newDep = RI;
404 }
405
Owen Andersone84f4bc2007-08-07 00:33:45 +0000406 SmallPtrSet<Instruction*, 4>& set = reverseDep[rem];
407 for (SmallPtrSet<Instruction*, 4>::iterator I = set.begin(), E = set.end();
408 I != E; ++I) {
David Greene701171c2007-07-31 20:01:27 +0000409 // Insert the new dependencies
410 // Mark it as unconfirmed as long as it is not the non-local flag
Owen Andersone84f4bc2007-08-07 00:33:45 +0000411 depGraphLocal[*I] = std::make_pair(newDep, !newDep);
David Greene701171c2007-07-31 20:01:27 +0000412 }
Owen Andersone84f4bc2007-08-07 00:33:45 +0000413 reverseDep.erase(rem);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000414 }
415
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000416 getAnalysis<AliasAnalysis>().deleteValue(rem);
417}