From 4d13de4e3bfc5121207efd01e1b31caa6bb4e40b Mon Sep 17 00:00:00 2001 From: Owen Anderson Date: Thu, 16 Aug 2007 21:27:05 +0000 Subject: [PATCH] Cache non-local memory dependence analysis. This is a significant compile time performance win in most cases. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41126 91177308-0d34-0410-b5e6-96231b3b80d8 --- .../llvm/Analysis/MemoryDependenceAnalysis.h | 12 +++++++++- lib/Analysis/MemoryDependenceAnalysis.cpp | 24 +++++++++++++++++-- 2 files changed, 33 insertions(+), 3 deletions(-) diff --git a/include/llvm/Analysis/MemoryDependenceAnalysis.h b/include/llvm/Analysis/MemoryDependenceAnalysis.h index 0b8dec83105..067bbcb8bc9 100644 --- a/include/llvm/Analysis/MemoryDependenceAnalysis.h +++ b/include/llvm/Analysis/MemoryDependenceAnalysis.h @@ -37,12 +37,20 @@ class MemoryDependenceAnalysis : public FunctionPass { depMapType; depMapType depGraphLocal; + // A map from instructions to their non-local dependencies. + typedef DenseMap > + nonLocalDepMapType; + nonLocalDepMapType depGraphNonLocal; + // A reverse mapping form dependencies to the dependees. This is // used when removing instructions to keep the cache coherent. - typedef DenseMap > + typedef DenseMap > reverseDepMapType; reverseDepMapType reverseDep; + // A reverse mapping form dependencies to the non-local dependees. + reverseDepMapType reverseDepNonLocal; + public: // Special marker indicating that the query has no dependency // in the specified block. @@ -61,7 +69,9 @@ class MemoryDependenceAnalysis : public FunctionPass { /// Clean up memory in between runs void releaseMemory() { depGraphLocal.clear(); + depGraphNonLocal.clear(); reverseDep.clear(); + reverseDepNonLocal.clear(); } /// getAnalysisUsage - Does not modify anything. It uses Value Numbering diff --git a/lib/Analysis/MemoryDependenceAnalysis.cpp b/lib/Analysis/MemoryDependenceAnalysis.cpp index 605dca1069f..11a80091085 100644 --- a/lib/Analysis/MemoryDependenceAnalysis.cpp +++ b/lib/Analysis/MemoryDependenceAnalysis.cpp @@ -203,6 +203,11 @@ void MemoryDependenceAnalysis::nonLocalHelper(Instruction* query, /// blocks between the query and its dependencies. void MemoryDependenceAnalysis::getNonLocalDependency(Instruction* query, DenseMap& resp) { + if (depGraphNonLocal.count(query)) { + resp = depGraphNonLocal[query]; + return; + } + // First check that we don't actually have a local dependency. Instruction* localDep = getDependency(query); if (localDep != NonLocal) { @@ -212,6 +217,13 @@ void MemoryDependenceAnalysis::getNonLocalDependency(Instruction* query, // If not, go ahead and search for non-local ones. nonLocalHelper(query, query->getParent(), resp); + + // Update the non-local dependency cache + for (DenseMap::iterator I = resp.begin(), E = resp.end(); + I != E; ++I) { + depGraphNonLocal[query].insert(*I); + reverseDepNonLocal[I->second].insert(query); + } } /// getDependency - Return the instruction on which a memory operation @@ -380,8 +392,6 @@ void MemoryDependenceAnalysis::removeInstruction(Instruction* rem) { Instruction* newDep = NonLocal; depMapType::iterator depGraphEntry = depGraphLocal.find(rem); - // We assume here that it's not in the reverse map if it's not in - // the dep map. Checking it could be expensive, so don't do it. if (depGraphEntry != depGraphLocal.end()) { if (depGraphEntry->second.first != NonLocal && @@ -410,8 +420,18 @@ void MemoryDependenceAnalysis::removeInstruction(Instruction* rem) { // Mark it as unconfirmed as long as it is not the non-local flag depGraphLocal[*I] = std::make_pair(newDep, !newDep); } + reverseDep.erase(rem); } + + if (depGraphNonLocal.count(rem)) { + SmallPtrSet& set = reverseDepNonLocal[rem]; + for (SmallPtrSet::iterator I = set.begin(), E = set.end(); + I != E; ++I) + depGraphNonLocal.erase(*I); + + reverseDepNonLocal.erase(rem); + } getAnalysis().deleteValue(rem); }