summaryrefslogtreecommitdiff
path: root/include/llvm/Pass.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-01-20 19:26:14 +0000
committerChris Lattner <sabre@nondot.org>2010-01-20 19:26:14 +0000
commit2033097b1f5b1889a5d801febbc7848c7b8ca439 (patch)
treea77d205728869f753695bdd1b385a09ff995fde1 /include/llvm/Pass.h
parent61186cd3a350b7dacac25552e658e7890062b917 (diff)
downloadllvm-2033097b1f5b1889a5d801febbc7848c7b8ca439.tar.gz
llvm-2033097b1f5b1889a5d801febbc7848c7b8ca439.tar.bz2
llvm-2033097b1f5b1889a5d801febbc7848c7b8ca439.tar.xz
add some new methods to adjust this pointers. Not used yet.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94013 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Pass.h')
-rw-r--r--include/llvm/Pass.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/llvm/Pass.h b/include/llvm/Pass.h
index f3e4dfd7ae..8178598985 100644
--- a/include/llvm/Pass.h
+++ b/include/llvm/Pass.h
@@ -145,6 +145,14 @@ public:
///
virtual void releaseMemory();
+ /// getAdjustedAnalysisPointer - This method is used when a pass implements
+ /// an analysis interface through multiple inheritance. If needed, it should
+ /// override this to adjust the this pointer as needed for the specified pass
+ /// info.
+ virtual void *getAdjustedAnalysisPointer(const PassInfo *PI) {
+ return this;
+ }
+
/// verifyAnalysis() - This member can be implemented by a analysis pass to
/// check state of analysis information.
virtual void verifyAnalysis() const;