From: Chris Lattner Date: Thu, 7 Nov 2002 07:11:49 +0000 (+0000) Subject: Add interfaces for ResolveCallSiteModRefInfo X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=0ed8e2a862842c3f829b1bf6eb57102a870c56f4;p=oota-llvm.git Add interfaces for ResolveCallSiteModRefInfo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4601 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Analysis/IPModRef.h b/include/llvm/Analysis/IPModRef.h index 929b9b18797..52d5c7edc45 100644 --- a/include/llvm/Analysis/IPModRef.h +++ b/include/llvm/Analysis/IPModRef.h @@ -125,7 +125,7 @@ class FunctionModRefInfo { void computeModRef (const Function &func); void computeModRef (const CallInst& callInst); - DSGraph *ResolveCallSiteModRefInfo(const CallInst &CI, + DSGraph *ResolveCallSiteModRefInfo(CallInst &CI, std::map &NodeMap); public: @@ -203,6 +203,11 @@ public: return getFuncInfo(func); } + /// getBUDSGraph - This method returns the BU data structure graph for F + /// through the use of the BUDataStructures object. + /// + const DSGraph &getBUDSGraph(const Function &F); + // Debugging support methods // void print(std::ostream &O) const;