30#ifndef PTACALLGRAPH_H_
31#define PTACALLGRAPH_H_
159 o <<
edge.toString();
164 virtual const std::string
toString()
const;
188 const std::string &
getName()
const;
209 virtual const std::string
toString()
const;
278 std::pair<const CallICFGNode*, const FunObjVar*>
newCS(std::make_pair(cs,
callee));
294 edge->getDstNode()->addIncomingEdge(
edge);
295 edge->getSrcNode()->addOutgoingEdge(
edge);
381 assert(
it !=
csToIdMap.end() &&
"callsite id not found! This maybe a partially resolved callgraph, please check the indCallEdge limit");
392 IdToCallSiteMap::const_iterator
it =
idToCSMap.find(
id);
421 callees.insert((*it)->getDstNode()->getFunction());
437 &&
"call instruction does not have a valid callee");
438 return it->second.begin();
444 &&
"call instruction does not have a valid callee");
445 return it->second.end();
static bool classof(const CallGraphEdge *)
ClassOf.
void addInDirectCallSite(const CallICFGNode *call)
void addDirectCallSite(const CallICFGNode *call)
Add direct and indirect callsite.
CallInstSet::const_iterator indirectCallsBegin() const
CallInstSet & getIndirectCalls()
virtual ~CallGraphEdge()
Destructor.
CallInstSet indirectCalls
GenericNode< CallGraphNode, CallGraphEdge >::GEdgeSetTy CallGraphEdgeSet
bool isIndirectCallEdge() const
CallInstSet & getDirectCalls()
CallGraphEdge(CallGraphNode *s, CallGraphNode *d, CEDGEK kind, CallSiteID cs)
Constructor.
static GEdgeFlag makeEdgeFlagWithInvokeID(GEdgeKind k, CallSiteID cs)
Compute the unique edgeFlag value from edge kind and CallSiteID.
virtual const std::string toString() const
CallInstSet::const_iterator directCallsEnd() const
const CallInstSet & getIndirectCalls() const
bool isDirectCallEdge() const
const CallInstSet & getDirectCalls() const
static bool classof(const GenericPTACallGraphEdgeTy *edge)
CallInstSet::const_iterator indirectCallsEnd() const
friend OutStream & operator<<(OutStream &o, const CallGraphEdge &edge)
Overloading operator << for dumping ICFG node ID.
Set< const CallICFGNode * > CallInstSet
CallInstSet::const_iterator directCallsBegin() const
Iterators for direct and indirect callsites.
CallSiteID getCallSiteID() const
Get direct and indirect calls.
CallGraphNode(NodeID i, const FunObjVar *f)
Constructor.
static bool classof(const GenericICFGNodeTy *node)
const FunObjVar * getFunction() const
Get function of this call node.
const std::string & getName() const
static bool classof(const SVFValue *node)
virtual const std::string toString() const
bool isReachableFromProgEntry(Map< NodeID, bool > &reachableFromEntry, NodeBS &visitedNodes) const
Return TRUE if this function can be reached from main.
friend OutStream & operator<<(OutStream &o, const CallGraphNode &node)
Overloading operator << for dumping ICFG node ID.
static bool classof(const CallGraphNode *)
Methods for support type inquiry through isa, cast, and dyn_cast:
CallGraphNode * getCallGraphNode(const FunObjVar *fun) const
CallInstToCallGraphEdgesMap callinstToCallGraphEdgesMap
Map a call instruction to its corresponding call edges.
void getAllCallSitesInvokingCallee(const FunObjVar *callee, CallGraphEdge::CallInstSet &csSet)
Get callsites invoking the callee.
Map< const CallICFGNode *, CallGraphEdgeSet > CallInstToCallGraphEdgesMap
CGEK getKind() const
Return type of this callgraph.
void addCallGraphNode(const FunObjVar *fun)
CallGraphEdge * hasGraphEdge(CallGraphNode *src, CallGraphNode *dst, CallGraphEdge::CEDGEK kind, CallSiteID csId) const
Whether we have already created this call graph edge.
void addIndirectCallGraphEdge(const CallICFGNode *cs, const FunObjVar *callerFun, const FunObjVar *calleeFun)
Add indirect call edges.
CallEdgeMap indirectCallMap
Indirect call map.
bool hasIndCSCallees(const CallICFGNode *cs) const
CallGraphEdgeSet::iterator CallGraphEdgeIter
void addEdge(CallGraphEdge *edge)
Add call graph edge.
const FunObjVar * getCallerOfCallSite(CallSiteID id) const
u32_t getNumOfResolvedIndCallEdge() const
void getIndCallSitesInvokingCallee(const FunObjVar *callee, CallGraphEdge::CallInstSet &csSet)
static IdToCallSiteMap idToCSMap
Map a callsite ID to a pair of call instruction and callee.
static CallSiteID totalCallSiteNum
CallSiteIDs, start from 1;.
Map< CallSiteID, CallSitePair > IdToCallSiteMap
const CallInstToCallGraphEdgesMap & getCallInstToCallGraphEdgesMap() const
void addDirectCallGraphEdge(const CallICFGNode *call, const FunObjVar *callerFun, const FunObjVar *calleeFun)
Add direct call edges.
Map< const FunObjVar *, CallGraphNode * > FunToCallGraphNodeMap
void destroy()
Clean up memory.
CallSiteID addCallSite(const CallICFGNode *cs, const FunObjVar *callee)
Add CallSiteID.
FunToCallGraphNodeMap funToCallGraphNodeMap
Call Graph node map.
OrderedMap< const CallICFGNode *, FunctionSet > CallEdgeMap
CallGraphEdgeSet::const_iterator CallGraphEdgeConstIter
CallGraphEdge::CallGraphEdgeSet CallGraphEdgeSet
CallGraphEdgeSet::const_iterator getCallEdgeBegin(const CallICFGNode *inst) const
CallGraphNode * getCallGraphNode(NodeID id) const
static CallSiteToIdMap csToIdMap
Call site information.
const CallICFGNode * getCallSite(CallSiteID id) const
bool isReachableBetweenFunctions(const FunObjVar *srcFn, const FunObjVar *dstFn) const
Whether its reachable between two functions.
const FunctionSet & getIndCSCallees(const CallICFGNode *cs) const
void view()
View the graph from the debugger.
void dump(const std::string &filename)
Dump the graph.
void getDirCallSitesInvokingCallee(const FunObjVar *callee, CallGraphEdge::CallInstSet &csSet)
u32_t getTotalCallSiteNumber() const
void verifyCallGraph()
Issue a warning if the function which has indirect call sites can not be reached from program entry.
u32_t numOfResolvedIndCallEdge
std::pair< const CallICFGNode *, const FunObjVar * > CallSitePair
CallGraphEdge * getGraphEdge(CallGraphNode *src, CallGraphNode *dst, CallGraphEdge::CEDGEK kind, CallSiteID csId)
Get call graph edge via nodes.
bool hasCallGraphEdge(const CallICFGNode *inst) const
Get call graph edge via call instruction.
void getCallees(const CallICFGNode *cs, FunctionSet &callees)
Get all callees for a callsite.
const FunObjVar * getCalleeOfCallSite(CallSiteID id) const
bool hasCallSiteID(const CallICFGNode *cs, const FunObjVar *callee) const
virtual ~CallGraph()
Destructor.
const CallSitePair & getCallSitePair(CallSiteID id) const
CallSiteID getCallSiteID(const CallICFGNode *cs, const FunObjVar *callee) const
Get CallSiteID.
Map< CallSitePair, CallSiteID > CallSiteToIdMap
CallEdgeMap & getIndCallMap()
Get callees from an indirect callsite.
Set< const FunObjVar * > FunctionSet
CallGraphEdgeSet::const_iterator getCallEdgeEnd(const CallICFGNode *inst) const
const CallGraphNode * getCallGraphNode(const std::string &name)
Get call graph node.
static constexpr unsigned char EdgeKindMaskBits
We use the lower 8 bits to denote edge kind.
NodeType * getGNode(NodeID id) const
Get a node.
OrderedSet< EdgeType *, typename EdgeType::equalGEdge > GEdgeSetTy
Edge kind.
GNodeK getNodeKind() const
Get node kind.
GenericEdge< CallGraphNode > GenericPTACallGraphEdgeTy
GenericNode< CallGraphNode, CallGraphEdge > GenericPTACallGraphNodeTy
llvm::IRBuilder IRBuilder
GenericGraph< CallGraphNode, CallGraphEdge > GenericPTACallGraphTy
SVF::CallGraphNode * NodeRef