mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-04 21:31:03 +00:00
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
This commit is contained in:
parent
61186cd3a3
commit
2033097b1f
@ -145,6 +145,14 @@ public:
|
|||||||
///
|
///
|
||||||
virtual void releaseMemory();
|
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
|
/// verifyAnalysis() - This member can be implemented by a analysis pass to
|
||||||
/// check state of analysis information.
|
/// check state of analysis information.
|
||||||
virtual void verifyAnalysis() const;
|
virtual void verifyAnalysis() const;
|
||||||
|
@ -153,6 +153,16 @@ namespace {
|
|||||||
|
|
||||||
virtual void deleteValue(Value *V) {}
|
virtual void deleteValue(Value *V) {}
|
||||||
virtual void copyValue(Value *From, Value *To) {}
|
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
|
} // End of anonymous namespace
|
||||||
|
|
||||||
@ -192,6 +202,16 @@ namespace {
|
|||||||
/// global) or not.
|
/// global) or not.
|
||||||
bool pointsToConstantMemory(const Value *P);
|
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:
|
private:
|
||||||
// VisitedPHIs - Track PHI nodes visited by a aliasCheck() call.
|
// VisitedPHIs - Track PHI nodes visited by a aliasCheck() call.
|
||||||
SmallPtrSet<const Value*, 16> VisitedPHIs;
|
SmallPtrSet<const Value*, 16> VisitedPHIs;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user