1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

New method to allow more efficient clients

llvm-svn: 12829
This commit is contained in:
Chris Lattner 2004-04-11 16:35:30 +00:00
parent ca1428e01c
commit d0345fb4a1

View File

@ -152,6 +152,15 @@ public:
///
virtual ModRefResult getModRefInfo(CallSite CS1, CallSite CS2);
/// hasNoModRefInfoForCalls - Return true if the analysis has no mod/ref
/// information for function calls other than "pure" and "const" functions.
/// This can be used by clients to avoid many pointless queries. Remember
/// that if you override this and chain to another analysis, you must make
/// sure that it doesn't have mod/ref info either.
///
virtual bool hasNoModRefInfoForCalls() const { return false; }
/// Convenience functions...
ModRefResult getModRefInfo(LoadInst *L, Value *P, unsigned Size);
ModRefResult getModRefInfo(StoreInst *S, Value *P, unsigned Size);