Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | //===- 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 Anderson | afe840e | 2007-08-08 22:01:54 +0000 | [diff] [blame] | 12 | // alias analysis information, and tries to provide a lazy, caching interface to |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 13 | // 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 Anderson | 4c29547 | 2007-07-24 21:52:37 +0000 | [diff] [blame] | 22 | #include "llvm/Support/CFG.h" |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 23 | #include "llvm/Target/TargetData.h" |
Owen Anderson | d6c7fea | 2007-09-09 21:43:49 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/Statistic.h" |
| 25 | |
| 26 | #define DEBUG_TYPE "memdep" |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 27 | |
| 28 | using namespace llvm; |
| 29 | |
Owen Anderson | d6c7fea | 2007-09-09 21:43:49 +0000 | [diff] [blame] | 30 | STATISTIC(NumCacheNonlocal, "Number of cached non-local responses"); |
| 31 | STATISTIC(NumUncacheNonlocal, "Number of uncached non-local responses"); |
| 32 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 33 | char MemoryDependenceAnalysis::ID = 0; |
| 34 | |
Owen Anderson | 935e39b | 2007-08-09 04:42:44 +0000 | [diff] [blame] | 35 | Instruction* const MemoryDependenceAnalysis::NonLocal = (Instruction*)-3; |
| 36 | Instruction* const MemoryDependenceAnalysis::None = (Instruction*)-4; |
Owen Anderson | 7e44756 | 2007-09-19 16:13:57 +0000 | [diff] [blame] | 37 | Instruction* const MemoryDependenceAnalysis::Dirty = (Instruction*)-5; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 38 | |
| 39 | // Register this pass... |
| 40 | static RegisterPass<MemoryDependenceAnalysis> X("memdep", |
| 41 | "Memory Dependence Analysis"); |
| 42 | |
| 43 | /// getAnalysisUsage - Does not modify anything. It uses Alias Analysis. |
| 44 | /// |
| 45 | void MemoryDependenceAnalysis::getAnalysisUsage(AnalysisUsage &AU) const { |
| 46 | AU.setPreservesAll(); |
| 47 | AU.addRequiredTransitive<AliasAnalysis>(); |
| 48 | AU.addRequiredTransitive<TargetData>(); |
| 49 | } |
| 50 | |
Owen Anderson | 3de3c53 | 2007-08-08 22:26:03 +0000 | [diff] [blame] | 51 | /// getCallSiteDependency - Private helper for finding the local dependencies |
| 52 | /// of a call site. |
Owen Anderson | 935e39b | 2007-08-09 04:42:44 +0000 | [diff] [blame] | 53 | Instruction* MemoryDependenceAnalysis::getCallSiteDependency(CallSite C, |
Owen Anderson | afe840e | 2007-08-08 22:01:54 +0000 | [diff] [blame] | 54 | Instruction* start, |
| 55 | BasicBlock* block) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 56 | |
| 57 | AliasAnalysis& AA = getAnalysis<AliasAnalysis>(); |
| 58 | TargetData& TD = getAnalysis<TargetData>(); |
| 59 | BasicBlock::iterator blockBegin = C.getInstruction()->getParent()->begin(); |
| 60 | BasicBlock::iterator QI = C.getInstruction(); |
| 61 | |
Owen Anderson | 3de3c53 | 2007-08-08 22:26:03 +0000 | [diff] [blame] | 62 | // If the starting point was specifiy, use it |
Owen Anderson | e84f4bc | 2007-08-07 00:33:45 +0000 | [diff] [blame] | 63 | if (start) { |
| 64 | QI = start; |
| 65 | blockBegin = start->getParent()->end(); |
Owen Anderson | 3de3c53 | 2007-08-08 22:26:03 +0000 | [diff] [blame] | 66 | // If the starting point wasn't specified, but the block was, use it |
Owen Anderson | e84f4bc | 2007-08-07 00:33:45 +0000 | [diff] [blame] | 67 | } else if (!start && block) { |
| 68 | QI = block->end(); |
| 69 | blockBegin = block->end(); |
| 70 | } |
| 71 | |
Owen Anderson | 3de3c53 | 2007-08-08 22:26:03 +0000 | [diff] [blame] | 72 | // Walk backwards through the block, looking for dependencies |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 73 | while (QI != blockBegin) { |
| 74 | --QI; |
| 75 | |
| 76 | // If this inst is a memory op, get the pointer it accessed |
| 77 | Value* pointer = 0; |
| 78 | uint64_t pointerSize = 0; |
| 79 | if (StoreInst* S = dyn_cast<StoreInst>(QI)) { |
| 80 | pointer = S->getPointerOperand(); |
Duncan Sands | f99fdc6 | 2007-11-01 20:53:16 +0000 | [diff] [blame] | 81 | pointerSize = TD.getTypeStoreSize(S->getOperand(0)->getType()); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 82 | } else if (AllocationInst* AI = dyn_cast<AllocationInst>(QI)) { |
| 83 | pointer = AI; |
| 84 | if (ConstantInt* C = dyn_cast<ConstantInt>(AI->getArraySize())) |
Owen Anderson | afe840e | 2007-08-08 22:01:54 +0000 | [diff] [blame] | 85 | pointerSize = C->getZExtValue() * \ |
Duncan Sands | f99fdc6 | 2007-11-01 20:53:16 +0000 | [diff] [blame] | 86 | TD.getABITypeSize(AI->getAllocatedType()); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 87 | else |
| 88 | pointerSize = ~0UL; |
| 89 | } else if (VAArgInst* V = dyn_cast<VAArgInst>(QI)) { |
| 90 | pointer = V->getOperand(0); |
Duncan Sands | f99fdc6 | 2007-11-01 20:53:16 +0000 | [diff] [blame] | 91 | pointerSize = TD.getTypeStoreSize(V->getType()); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 92 | } else if (FreeInst* F = dyn_cast<FreeInst>(QI)) { |
| 93 | pointer = F->getPointerOperand(); |
| 94 | |
| 95 | // FreeInsts erase the entire structure |
| 96 | pointerSize = ~0UL; |
Owen Anderson | 4746c62 | 2007-11-26 03:27:38 +0000 | [diff] [blame] | 97 | } else if (CallSite::get(QI).getInstruction() != 0 && |
| 98 | cast<CallInst>(QI)->getCalledFunction()) { |
Owen Anderson | 8b6f04e | 2007-11-26 02:26:36 +0000 | [diff] [blame] | 99 | AliasAnalysis::ModRefBehavior result = |
| 100 | AA.getModRefBehavior(cast<CallInst>(QI)->getCalledFunction(), |
| 101 | CallSite::get(QI)); |
| 102 | if (result != AliasAnalysis::DoesNotAccessMemory && |
| 103 | result != AliasAnalysis::OnlyReadsMemory) { |
Owen Anderson | e84f4bc | 2007-08-07 00:33:45 +0000 | [diff] [blame] | 104 | if (!start && !block) { |
| 105 | depGraphLocal.insert(std::make_pair(C.getInstruction(), |
| 106 | std::make_pair(QI, true))); |
| 107 | reverseDep[QI].insert(C.getInstruction()); |
| 108 | } |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 109 | return QI; |
| 110 | } else { |
| 111 | continue; |
| 112 | } |
| 113 | } else |
| 114 | continue; |
| 115 | |
| 116 | if (AA.getModRefInfo(C, pointer, pointerSize) != AliasAnalysis::NoModRef) { |
Owen Anderson | e84f4bc | 2007-08-07 00:33:45 +0000 | [diff] [blame] | 117 | if (!start && !block) { |
| 118 | depGraphLocal.insert(std::make_pair(C.getInstruction(), |
| 119 | std::make_pair(QI, true))); |
| 120 | reverseDep[QI].insert(C.getInstruction()); |
| 121 | } |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 122 | return QI; |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | // No dependence found |
Owen Anderson | afe840e | 2007-08-08 22:01:54 +0000 | [diff] [blame] | 127 | depGraphLocal.insert(std::make_pair(C.getInstruction(), |
| 128 | std::make_pair(NonLocal, true))); |
Owen Anderson | e84f4bc | 2007-08-07 00:33:45 +0000 | [diff] [blame] | 129 | reverseDep[NonLocal].insert(C.getInstruction()); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 130 | return NonLocal; |
| 131 | } |
| 132 | |
Owen Anderson | 3de3c53 | 2007-08-08 22:26:03 +0000 | [diff] [blame] | 133 | /// nonLocalHelper - Private helper used to calculate non-local dependencies |
| 134 | /// by doing DFS on the predecessors of a block to find its dependencies |
Owen Anderson | 3f75d12 | 2007-08-01 22:01:54 +0000 | [diff] [blame] | 135 | void MemoryDependenceAnalysis::nonLocalHelper(Instruction* query, |
Owen Anderson | 5d72a42 | 2007-07-25 19:57:03 +0000 | [diff] [blame] | 136 | BasicBlock* block, |
Owen Anderson | afe840e | 2007-08-08 22:01:54 +0000 | [diff] [blame] | 137 | DenseMap<BasicBlock*, Value*>& resp) { |
Owen Anderson | 3de3c53 | 2007-08-08 22:26:03 +0000 | [diff] [blame] | 138 | // Set of blocks that we've already visited in our DFS |
Owen Anderson | 3f75d12 | 2007-08-01 22:01:54 +0000 | [diff] [blame] | 139 | SmallPtrSet<BasicBlock*, 4> visited; |
Owen Anderson | 0574907 | 2007-09-21 03:53:52 +0000 | [diff] [blame] | 140 | // If we're updating a dirtied cache entry, we don't need to reprocess |
| 141 | // already computed entries. |
| 142 | for (DenseMap<BasicBlock*, Value*>::iterator I = resp.begin(), |
| 143 | E = resp.end(); I != E; ++I) |
| 144 | if (I->second != Dirty) |
| 145 | visited.insert(I->first); |
| 146 | |
Owen Anderson | 3de3c53 | 2007-08-08 22:26:03 +0000 | [diff] [blame] | 147 | // Current stack of the DFS |
Owen Anderson | 3f75d12 | 2007-08-01 22:01:54 +0000 | [diff] [blame] | 148 | SmallVector<BasicBlock*, 4> stack; |
| 149 | stack.push_back(block); |
Owen Anderson | 4c29547 | 2007-07-24 21:52:37 +0000 | [diff] [blame] | 150 | |
Owen Anderson | 3de3c53 | 2007-08-08 22:26:03 +0000 | [diff] [blame] | 151 | // Do a basic DFS |
Owen Anderson | 3f75d12 | 2007-08-01 22:01:54 +0000 | [diff] [blame] | 152 | while (!stack.empty()) { |
| 153 | BasicBlock* BB = stack.back(); |
| 154 | |
Owen Anderson | 3de3c53 | 2007-08-08 22:26:03 +0000 | [diff] [blame] | 155 | // If we've already visited this block, no need to revist |
Owen Anderson | c6a31b9 | 2007-08-02 17:56:05 +0000 | [diff] [blame] | 156 | if (visited.count(BB)) { |
Owen Anderson | 3f75d12 | 2007-08-01 22:01:54 +0000 | [diff] [blame] | 157 | stack.pop_back(); |
| 158 | continue; |
| 159 | } |
| 160 | |
Owen Anderson | 3de3c53 | 2007-08-08 22:26:03 +0000 | [diff] [blame] | 161 | // If we find a new block with a local dependency for query, |
| 162 | // then we insert the new dependency and backtrack. |
Owen Anderson | 3f75d12 | 2007-08-01 22:01:54 +0000 | [diff] [blame] | 163 | if (BB != block) { |
Owen Anderson | c6a31b9 | 2007-08-02 17:56:05 +0000 | [diff] [blame] | 164 | visited.insert(BB); |
| 165 | |
Owen Anderson | 935e39b | 2007-08-09 04:42:44 +0000 | [diff] [blame] | 166 | Instruction* localDep = getDependency(query, 0, BB); |
Owen Anderson | 3f75d12 | 2007-08-01 22:01:54 +0000 | [diff] [blame] | 167 | if (localDep != NonLocal) { |
Owen Anderson | 935e39b | 2007-08-09 04:42:44 +0000 | [diff] [blame] | 168 | resp.insert(std::make_pair(BB, localDep)); |
Owen Anderson | c6a31b9 | 2007-08-02 17:56:05 +0000 | [diff] [blame] | 169 | stack.pop_back(); |
| 170 | |
Owen Anderson | 3f75d12 | 2007-08-01 22:01:54 +0000 | [diff] [blame] | 171 | continue; |
| 172 | } |
Owen Anderson | 3de3c53 | 2007-08-08 22:26:03 +0000 | [diff] [blame] | 173 | // If we re-encounter the starting block, we still need to search it |
| 174 | // because there might be a dependency in the starting block AFTER |
| 175 | // the position of the query. This is necessary to get loops right. |
Owen Anderson | c6a31b9 | 2007-08-02 17:56:05 +0000 | [diff] [blame] | 176 | } else if (BB == block && stack.size() > 1) { |
| 177 | visited.insert(BB); |
| 178 | |
Owen Anderson | 935e39b | 2007-08-09 04:42:44 +0000 | [diff] [blame] | 179 | Instruction* localDep = getDependency(query, 0, BB); |
Owen Anderson | c6a31b9 | 2007-08-02 17:56:05 +0000 | [diff] [blame] | 180 | if (localDep != query) |
Owen Anderson | 935e39b | 2007-08-09 04:42:44 +0000 | [diff] [blame] | 181 | resp.insert(std::make_pair(BB, localDep)); |
Owen Anderson | c6a31b9 | 2007-08-02 17:56:05 +0000 | [diff] [blame] | 182 | |
| 183 | stack.pop_back(); |
| 184 | |
| 185 | continue; |
Owen Anderson | 3f75d12 | 2007-08-01 22:01:54 +0000 | [diff] [blame] | 186 | } |
| 187 | |
Owen Anderson | 3de3c53 | 2007-08-08 22:26:03 +0000 | [diff] [blame] | 188 | // If we didn't find anything, recurse on the precessors of this block |
Owen Anderson | 3f75d12 | 2007-08-01 22:01:54 +0000 | [diff] [blame] | 189 | bool predOnStack = false; |
| 190 | bool inserted = false; |
| 191 | for (pred_iterator PI = pred_begin(BB), PE = pred_end(BB); |
| 192 | PI != PE; ++PI) |
| 193 | if (!visited.count(*PI)) { |
| 194 | stack.push_back(*PI); |
| 195 | inserted = true; |
| 196 | } else |
| 197 | predOnStack = true; |
| 198 | |
Owen Anderson | 3de3c53 | 2007-08-08 22:26:03 +0000 | [diff] [blame] | 199 | // If we inserted a new predecessor, then we'll come back to this block |
Owen Anderson | 3f75d12 | 2007-08-01 22:01:54 +0000 | [diff] [blame] | 200 | if (inserted) |
| 201 | continue; |
Owen Anderson | 3de3c53 | 2007-08-08 22:26:03 +0000 | [diff] [blame] | 202 | // If we didn't insert because we have no predecessors, then this |
| 203 | // query has no dependency at all. |
Owen Anderson | 3f75d12 | 2007-08-01 22:01:54 +0000 | [diff] [blame] | 204 | else if (!inserted && !predOnStack) { |
Owen Anderson | 935e39b | 2007-08-09 04:42:44 +0000 | [diff] [blame] | 205 | resp.insert(std::make_pair(BB, None)); |
Owen Anderson | 3de3c53 | 2007-08-08 22:26:03 +0000 | [diff] [blame] | 206 | // If we didn't insert because our predecessors are already on the stack, |
| 207 | // then we might still have a dependency, but it will be discovered during |
| 208 | // backtracking. |
Owen Anderson | 3f75d12 | 2007-08-01 22:01:54 +0000 | [diff] [blame] | 209 | } else if (!inserted && predOnStack){ |
Owen Anderson | 935e39b | 2007-08-09 04:42:44 +0000 | [diff] [blame] | 210 | resp.insert(std::make_pair(BB, NonLocal)); |
Owen Anderson | 3f75d12 | 2007-08-01 22:01:54 +0000 | [diff] [blame] | 211 | } |
| 212 | |
| 213 | stack.pop_back(); |
Owen Anderson | 4c29547 | 2007-07-24 21:52:37 +0000 | [diff] [blame] | 214 | } |
Owen Anderson | 4c29547 | 2007-07-24 21:52:37 +0000 | [diff] [blame] | 215 | } |
| 216 | |
Owen Anderson | afe840e | 2007-08-08 22:01:54 +0000 | [diff] [blame] | 217 | /// getNonLocalDependency - Fills the passed-in map with the non-local |
| 218 | /// dependencies of the queries. The map will contain NonLocal for |
| 219 | /// blocks between the query and its dependencies. |
Owen Anderson | 3f75d12 | 2007-08-01 22:01:54 +0000 | [diff] [blame] | 220 | void MemoryDependenceAnalysis::getNonLocalDependency(Instruction* query, |
Owen Anderson | afe840e | 2007-08-08 22:01:54 +0000 | [diff] [blame] | 221 | DenseMap<BasicBlock*, Value*>& resp) { |
Owen Anderson | 2bd46a5 | 2007-08-16 21:27:05 +0000 | [diff] [blame] | 222 | if (depGraphNonLocal.count(query)) { |
Owen Anderson | 0574907 | 2007-09-21 03:53:52 +0000 | [diff] [blame] | 223 | DenseMap<BasicBlock*, Value*>& cached = depGraphNonLocal[query]; |
Owen Anderson | d6c7fea | 2007-09-09 21:43:49 +0000 | [diff] [blame] | 224 | NumCacheNonlocal++; |
Owen Anderson | 0574907 | 2007-09-21 03:53:52 +0000 | [diff] [blame] | 225 | |
| 226 | SmallVector<BasicBlock*, 4> dirtied; |
| 227 | for (DenseMap<BasicBlock*, Value*>::iterator I = cached.begin(), |
| 228 | E = cached.end(); I != E; ++I) |
| 229 | if (I->second == Dirty) |
| 230 | dirtied.push_back(I->first); |
| 231 | |
| 232 | for (SmallVector<BasicBlock*, 4>::iterator I = dirtied.begin(), |
| 233 | E = dirtied.end(); I != E; ++I) { |
| 234 | Instruction* localDep = getDependency(query, 0, *I); |
| 235 | if (localDep != NonLocal) |
| 236 | cached[*I] = localDep; |
| 237 | else { |
| 238 | cached.erase(*I); |
| 239 | nonLocalHelper(query, *I, cached); |
| 240 | } |
| 241 | } |
| 242 | |
| 243 | resp = cached; |
| 244 | |
Owen Anderson | 2bd46a5 | 2007-08-16 21:27:05 +0000 | [diff] [blame] | 245 | return; |
Owen Anderson | d6c7fea | 2007-09-09 21:43:49 +0000 | [diff] [blame] | 246 | } else |
| 247 | NumUncacheNonlocal++; |
Owen Anderson | 2bd46a5 | 2007-08-16 21:27:05 +0000 | [diff] [blame] | 248 | |
Owen Anderson | d6c7fea | 2007-09-09 21:43:49 +0000 | [diff] [blame] | 249 | // If not, go ahead and search for non-local deps. |
Owen Anderson | 3f75d12 | 2007-08-01 22:01:54 +0000 | [diff] [blame] | 250 | nonLocalHelper(query, query->getParent(), resp); |
Owen Anderson | 2bd46a5 | 2007-08-16 21:27:05 +0000 | [diff] [blame] | 251 | |
| 252 | // Update the non-local dependency cache |
| 253 | for (DenseMap<BasicBlock*, Value*>::iterator I = resp.begin(), E = resp.end(); |
| 254 | I != E; ++I) { |
| 255 | depGraphNonLocal[query].insert(*I); |
| 256 | reverseDepNonLocal[I->second].insert(query); |
| 257 | } |
Owen Anderson | 4c29547 | 2007-07-24 21:52:37 +0000 | [diff] [blame] | 258 | } |
| 259 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 260 | /// getDependency - Return the instruction on which a memory operation |
| 261 | /// depends. The local paramter indicates if the query should only |
| 262 | /// evaluate dependencies within the same basic block. |
Owen Anderson | 935e39b | 2007-08-09 04:42:44 +0000 | [diff] [blame] | 263 | Instruction* MemoryDependenceAnalysis::getDependency(Instruction* query, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 264 | Instruction* start, |
Owen Anderson | 4c29547 | 2007-07-24 21:52:37 +0000 | [diff] [blame] | 265 | BasicBlock* block) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 266 | // Start looking for dependencies with the queried inst |
| 267 | BasicBlock::iterator QI = query; |
| 268 | |
| 269 | // Check for a cached result |
Owen Anderson | 935e39b | 2007-08-09 04:42:44 +0000 | [diff] [blame] | 270 | std::pair<Instruction*, bool> cachedResult = depGraphLocal[query]; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 271 | // If we have a _confirmed_ cached entry, return it |
| 272 | if (cachedResult.second) |
| 273 | return cachedResult.first; |
Owen Anderson | 5d72a42 | 2007-07-25 19:57:03 +0000 | [diff] [blame] | 274 | else if (cachedResult.first && cachedResult.first != NonLocal) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 275 | // If we have an unconfirmed cached entry, we can start our search from there |
Owen Anderson | 935e39b | 2007-08-09 04:42:44 +0000 | [diff] [blame] | 276 | QI = cachedResult.first; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 277 | |
| 278 | if (start) |
| 279 | QI = start; |
Owen Anderson | 5d72a42 | 2007-07-25 19:57:03 +0000 | [diff] [blame] | 280 | else if (!start && block) |
| 281 | QI = block->end(); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 282 | |
| 283 | AliasAnalysis& AA = getAnalysis<AliasAnalysis>(); |
| 284 | TargetData& TD = getAnalysis<TargetData>(); |
| 285 | |
| 286 | // Get the pointer value for which dependence will be determined |
| 287 | Value* dependee = 0; |
| 288 | uint64_t dependeeSize = 0; |
| 289 | bool queryIsVolatile = false; |
| 290 | if (StoreInst* S = dyn_cast<StoreInst>(query)) { |
| 291 | dependee = S->getPointerOperand(); |
Duncan Sands | f99fdc6 | 2007-11-01 20:53:16 +0000 | [diff] [blame] | 292 | dependeeSize = TD.getTypeStoreSize(S->getOperand(0)->getType()); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 293 | queryIsVolatile = S->isVolatile(); |
| 294 | } else if (LoadInst* L = dyn_cast<LoadInst>(query)) { |
| 295 | dependee = L->getPointerOperand(); |
Duncan Sands | f99fdc6 | 2007-11-01 20:53:16 +0000 | [diff] [blame] | 296 | dependeeSize = TD.getTypeStoreSize(L->getType()); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 297 | queryIsVolatile = L->isVolatile(); |
| 298 | } else if (VAArgInst* V = dyn_cast<VAArgInst>(query)) { |
| 299 | dependee = V->getOperand(0); |
Duncan Sands | f99fdc6 | 2007-11-01 20:53:16 +0000 | [diff] [blame] | 300 | dependeeSize = TD.getTypeStoreSize(V->getType()); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 301 | } else if (FreeInst* F = dyn_cast<FreeInst>(query)) { |
| 302 | dependee = F->getPointerOperand(); |
| 303 | |
| 304 | // FreeInsts erase the entire structure, not just a field |
| 305 | dependeeSize = ~0UL; |
| 306 | } else if (CallSite::get(query).getInstruction() != 0) |
Owen Anderson | e84f4bc | 2007-08-07 00:33:45 +0000 | [diff] [blame] | 307 | return getCallSiteDependency(CallSite::get(query), start, block); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 308 | else if (isa<AllocationInst>(query)) |
| 309 | return None; |
| 310 | else |
| 311 | return None; |
| 312 | |
Owen Anderson | 4c29547 | 2007-07-24 21:52:37 +0000 | [diff] [blame] | 313 | BasicBlock::iterator blockBegin = block ? block->begin() |
| 314 | : query->getParent()->begin(); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 315 | |
Owen Anderson | 3de3c53 | 2007-08-08 22:26:03 +0000 | [diff] [blame] | 316 | // Walk backwards through the basic block, looking for dependencies |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 317 | while (QI != blockBegin) { |
| 318 | --QI; |
| 319 | |
| 320 | // If this inst is a memory op, get the pointer it accessed |
| 321 | Value* pointer = 0; |
| 322 | uint64_t pointerSize = 0; |
| 323 | if (StoreInst* S = dyn_cast<StoreInst>(QI)) { |
| 324 | // All volatile loads/stores depend on each other |
| 325 | if (queryIsVolatile && S->isVolatile()) { |
Owen Anderson | e84f4bc | 2007-08-07 00:33:45 +0000 | [diff] [blame] | 326 | if (!start && !block) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 327 | depGraphLocal.insert(std::make_pair(query, std::make_pair(S, true))); |
Owen Anderson | e84f4bc | 2007-08-07 00:33:45 +0000 | [diff] [blame] | 328 | reverseDep[S].insert(query); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 329 | } |
| 330 | |
| 331 | return S; |
| 332 | } |
| 333 | |
| 334 | pointer = S->getPointerOperand(); |
Duncan Sands | f99fdc6 | 2007-11-01 20:53:16 +0000 | [diff] [blame] | 335 | pointerSize = TD.getTypeStoreSize(S->getOperand(0)->getType()); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 336 | } else if (LoadInst* L = dyn_cast<LoadInst>(QI)) { |
| 337 | // All volatile loads/stores depend on each other |
| 338 | if (queryIsVolatile && L->isVolatile()) { |
Owen Anderson | e84f4bc | 2007-08-07 00:33:45 +0000 | [diff] [blame] | 339 | if (!start && !block) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 340 | depGraphLocal.insert(std::make_pair(query, std::make_pair(L, true))); |
Owen Anderson | e84f4bc | 2007-08-07 00:33:45 +0000 | [diff] [blame] | 341 | reverseDep[L].insert(query); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 342 | } |
| 343 | |
| 344 | return L; |
| 345 | } |
| 346 | |
| 347 | pointer = L->getPointerOperand(); |
Duncan Sands | f99fdc6 | 2007-11-01 20:53:16 +0000 | [diff] [blame] | 348 | pointerSize = TD.getTypeStoreSize(L->getType()); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 349 | } else if (AllocationInst* AI = dyn_cast<AllocationInst>(QI)) { |
| 350 | pointer = AI; |
| 351 | if (ConstantInt* C = dyn_cast<ConstantInt>(AI->getArraySize())) |
Owen Anderson | afe840e | 2007-08-08 22:01:54 +0000 | [diff] [blame] | 352 | pointerSize = C->getZExtValue() * \ |
Duncan Sands | f99fdc6 | 2007-11-01 20:53:16 +0000 | [diff] [blame] | 353 | TD.getABITypeSize(AI->getAllocatedType()); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 354 | else |
| 355 | pointerSize = ~0UL; |
| 356 | } else if (VAArgInst* V = dyn_cast<VAArgInst>(QI)) { |
| 357 | pointer = V->getOperand(0); |
Duncan Sands | f99fdc6 | 2007-11-01 20:53:16 +0000 | [diff] [blame] | 358 | pointerSize = TD.getTypeStoreSize(V->getType()); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 359 | } else if (FreeInst* F = dyn_cast<FreeInst>(QI)) { |
| 360 | pointer = F->getPointerOperand(); |
| 361 | |
| 362 | // FreeInsts erase the entire structure |
| 363 | pointerSize = ~0UL; |
| 364 | } else if (CallSite::get(QI).getInstruction() != 0) { |
Owen Anderson | afe840e | 2007-08-08 22:01:54 +0000 | [diff] [blame] | 365 | // Call insts need special handling. Check if they can modify our pointer |
Owen Anderson | 151f769 | 2007-08-06 23:26:03 +0000 | [diff] [blame] | 366 | AliasAnalysis::ModRefResult MR = AA.getModRefInfo(CallSite::get(QI), |
| 367 | dependee, dependeeSize); |
| 368 | |
| 369 | if (MR != AliasAnalysis::NoModRef) { |
| 370 | // Loads don't depend on read-only calls |
| 371 | if (isa<LoadInst>(query) && MR == AliasAnalysis::Ref) |
| 372 | continue; |
| 373 | |
Owen Anderson | e84f4bc | 2007-08-07 00:33:45 +0000 | [diff] [blame] | 374 | if (!start && !block) { |
Owen Anderson | afe840e | 2007-08-08 22:01:54 +0000 | [diff] [blame] | 375 | depGraphLocal.insert(std::make_pair(query, |
| 376 | std::make_pair(QI, true))); |
Owen Anderson | e84f4bc | 2007-08-07 00:33:45 +0000 | [diff] [blame] | 377 | reverseDep[QI].insert(query); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 378 | } |
| 379 | |
| 380 | return QI; |
| 381 | } else { |
| 382 | continue; |
| 383 | } |
| 384 | } |
| 385 | |
| 386 | // If we found a pointer, check if it could be the same as our pointer |
| 387 | if (pointer) { |
| 388 | AliasAnalysis::AliasResult R = AA.alias(pointer, pointerSize, |
| 389 | dependee, dependeeSize); |
| 390 | |
| 391 | if (R != AliasAnalysis::NoAlias) { |
Owen Anderson | 151f769 | 2007-08-06 23:26:03 +0000 | [diff] [blame] | 392 | // May-alias loads don't depend on each other |
| 393 | if (isa<LoadInst>(query) && isa<LoadInst>(QI) && |
| 394 | R == AliasAnalysis::MayAlias) |
| 395 | continue; |
| 396 | |
Owen Anderson | e84f4bc | 2007-08-07 00:33:45 +0000 | [diff] [blame] | 397 | if (!start && !block) { |
Owen Anderson | afe840e | 2007-08-08 22:01:54 +0000 | [diff] [blame] | 398 | depGraphLocal.insert(std::make_pair(query, |
| 399 | std::make_pair(QI, true))); |
Owen Anderson | e84f4bc | 2007-08-07 00:33:45 +0000 | [diff] [blame] | 400 | reverseDep[QI].insert(query); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 401 | } |
| 402 | |
| 403 | return QI; |
| 404 | } |
| 405 | } |
| 406 | } |
| 407 | |
| 408 | // If we found nothing, return the non-local flag |
Owen Anderson | e84f4bc | 2007-08-07 00:33:45 +0000 | [diff] [blame] | 409 | if (!start && !block) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 410 | depGraphLocal.insert(std::make_pair(query, |
| 411 | std::make_pair(NonLocal, true))); |
Owen Anderson | e84f4bc | 2007-08-07 00:33:45 +0000 | [diff] [blame] | 412 | reverseDep[NonLocal].insert(query); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 413 | } |
| 414 | |
| 415 | return NonLocal; |
| 416 | } |
| 417 | |
| 418 | /// removeInstruction - Remove an instruction from the dependence analysis, |
| 419 | /// updating the dependence of instructions that previously depended on it. |
Owen Anderson | 3de3c53 | 2007-08-08 22:26:03 +0000 | [diff] [blame] | 420 | /// This method attempts to keep the cache coherent using the reverse map. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 421 | void MemoryDependenceAnalysis::removeInstruction(Instruction* rem) { |
| 422 | // Figure out the new dep for things that currently depend on rem |
Owen Anderson | 935e39b | 2007-08-09 04:42:44 +0000 | [diff] [blame] | 423 | Instruction* newDep = NonLocal; |
David Greene | 701171c | 2007-07-31 20:01:27 +0000 | [diff] [blame] | 424 | |
| 425 | depMapType::iterator depGraphEntry = depGraphLocal.find(rem); |
David Greene | 701171c | 2007-07-31 20:01:27 +0000 | [diff] [blame] | 426 | |
| 427 | if (depGraphEntry != depGraphLocal.end()) { |
| 428 | if (depGraphEntry->second.first != NonLocal && |
| 429 | depGraphEntry->second.second) { |
| 430 | // If we have dep info for rem, set them to it |
Owen Anderson | 935e39b | 2007-08-09 04:42:44 +0000 | [diff] [blame] | 431 | BasicBlock::iterator RI = depGraphEntry->second.first; |
David Greene | 701171c | 2007-07-31 20:01:27 +0000 | [diff] [blame] | 432 | RI++; |
| 433 | newDep = RI; |
| 434 | } else if (depGraphEntry->second.first == NonLocal && |
| 435 | depGraphEntry->second.second ) { |
| 436 | // If we have a confirmed non-local flag, use it |
| 437 | newDep = NonLocal; |
| 438 | } else { |
| 439 | // Otherwise, use the immediate successor of rem |
Owen Anderson | afe840e | 2007-08-08 22:01:54 +0000 | [diff] [blame] | 440 | // NOTE: This is because, when getDependence is called, it will first |
| 441 | // check the immediate predecessor of what is in the cache. |
David Greene | 701171c | 2007-07-31 20:01:27 +0000 | [diff] [blame] | 442 | BasicBlock::iterator RI = rem; |
| 443 | RI++; |
| 444 | newDep = RI; |
| 445 | } |
| 446 | |
Owen Anderson | e84f4bc | 2007-08-07 00:33:45 +0000 | [diff] [blame] | 447 | SmallPtrSet<Instruction*, 4>& set = reverseDep[rem]; |
| 448 | for (SmallPtrSet<Instruction*, 4>::iterator I = set.begin(), E = set.end(); |
| 449 | I != E; ++I) { |
David Greene | 701171c | 2007-07-31 20:01:27 +0000 | [diff] [blame] | 450 | // Insert the new dependencies |
| 451 | // Mark it as unconfirmed as long as it is not the non-local flag |
Owen Anderson | e84f4bc | 2007-08-07 00:33:45 +0000 | [diff] [blame] | 452 | depGraphLocal[*I] = std::make_pair(newDep, !newDep); |
David Greene | 701171c | 2007-07-31 20:01:27 +0000 | [diff] [blame] | 453 | } |
Owen Anderson | 2bd46a5 | 2007-08-16 21:27:05 +0000 | [diff] [blame] | 454 | |
Owen Anderson | e84f4bc | 2007-08-07 00:33:45 +0000 | [diff] [blame] | 455 | reverseDep.erase(rem); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 456 | } |
Owen Anderson | 2bd46a5 | 2007-08-16 21:27:05 +0000 | [diff] [blame] | 457 | |
Owen Anderson | 0ceeca5 | 2007-09-11 04:31:00 +0000 | [diff] [blame] | 458 | if (reverseDepNonLocal.count(rem)) { |
Owen Anderson | 2bd46a5 | 2007-08-16 21:27:05 +0000 | [diff] [blame] | 459 | SmallPtrSet<Instruction*, 4>& set = reverseDepNonLocal[rem]; |
| 460 | for (SmallPtrSet<Instruction*, 4>::iterator I = set.begin(), E = set.end(); |
| 461 | I != E; ++I) |
Owen Anderson | 0574907 | 2007-09-21 03:53:52 +0000 | [diff] [blame] | 462 | for (DenseMap<BasicBlock*, Value*>::iterator DI = |
| 463 | depGraphNonLocal[*I].begin(), DE = depGraphNonLocal[*I].end(); |
| 464 | DI != DE; ++DI) |
| 465 | if (DI->second == rem) |
| 466 | DI->second = Dirty; |
Owen Anderson | 2bd46a5 | 2007-08-16 21:27:05 +0000 | [diff] [blame] | 467 | |
| 468 | reverseDepNonLocal.erase(rem); |
| 469 | } |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 470 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 471 | getAnalysis<AliasAnalysis>().deleteValue(rem); |
| 472 | } |