diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-20 19:26:14 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-20 19:26:14 +0000 |
commit | 2033097b1f5b1889a5d801febbc7848c7b8ca439 (patch) | |
tree | a77d205728869f753695bdd1b385a09ff995fde1 /lib/Analysis | |
parent | 61186cd3a350b7dacac25552e658e7890062b917 (diff) | |
download | external_llvm-2033097b1f5b1889a5d801febbc7848c7b8ca439.zip external_llvm-2033097b1f5b1889a5d801febbc7848c7b8ca439.tar.gz external_llvm-2033097b1f5b1889a5d801febbc7848c7b8ca439.tar.bz2 |
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 'lib/Analysis')
-rw-r--r-- | lib/Analysis/BasicAliasAnalysis.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/Analysis/BasicAliasAnalysis.cpp b/lib/Analysis/BasicAliasAnalysis.cpp index b2983c7..36b831c 100644 --- a/lib/Analysis/BasicAliasAnalysis.cpp +++ b/lib/Analysis/BasicAliasAnalysis.cpp @@ -153,6 +153,16 @@ namespace { virtual void deleteValue(Value *V) {} virtual void copyValue(Value *From, Value *To) {} + + /// 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) { + if (PI->isPassID(&AliasAnalysis::ID)) + return (AliasAnalysis*)this; + return this; + } }; } // End of anonymous namespace @@ -192,6 +202,16 @@ namespace { /// global) or not. bool pointsToConstantMemory(const Value *P); + /// 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) { + if (PI->isPassID(&AliasAnalysis::ID)) + return (AliasAnalysis*)this; + return this; + } + private: // VisitedPHIs - Track PHI nodes visited by a aliasCheck() call. SmallPtrSet<const Value*, 16> VisitedPHIs; |