Add interfaces for ResolveCallSiteModRefInfo

llvm-svn: 4601
This commit is contained in:
Chris Lattner 2002-11-07 07:11:49 +00:00
parent 5e865cdbe2
commit 58f10cb88d
1 changed files with 6 additions and 1 deletions

View File

@ -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<const DSNode*, DSNodeHandle> &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;