Static Value-Flow Analysis
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Protected Member Functions | Protected Attributes | Private Attributes | Static Private Attributes | List of all members
SVF::CallGraph Class Reference

#include <CallGraph.h>

Inheritance diagram for SVF::CallGraph:
SVF::GenericGraph< NodeTy, EdgeTy > SVF::ThreadCallGraph

Public Types

enum  CGEK { NormCallGraph , ThdCallGraph }
 
typedef CallGraphEdge::CallGraphEdgeSet CallGraphEdgeSet
 
typedef Map< const FunObjVar *, CallGraphNode * > FunToCallGraphNodeMap
 
typedef Map< const CallICFGNode *, CallGraphEdgeSetCallInstToCallGraphEdgesMap
 
typedef std::pair< const CallICFGNode *, const FunObjVar * > CallSitePair
 
typedef Map< CallSitePair, CallSiteIDCallSiteToIdMap
 
typedef Map< CallSiteID, CallSitePairIdToCallSiteMap
 
typedef Set< const FunObjVar * > FunctionSet
 
typedef OrderedMap< const CallICFGNode *, FunctionSetCallEdgeMap
 
typedef CallGraphEdgeSet::iterator CallGraphEdgeIter
 
typedef CallGraphEdgeSet::const_iterator CallGraphEdgeConstIter
 
- Public Types inherited from SVF::GenericGraph< NodeTy, EdgeTy >
typedef NodeTy NodeType
 
typedef EdgeTy EdgeType
 
typedef OrderedMap< NodeID, NodeType * > IDToNodeMapTy
 NodeID to GenericNode map.
 
typedef IDToNodeMapTy::iterator iterator
 Node Iterators.
 
typedef IDToNodeMapTy::const_iterator const_iterator
 

Public Member Functions

 CallGraph (CGEK k=NormCallGraph)
 Constructor.
 
 CallGraph (const CallGraph &other)
 Copy constructor.
 
virtual ~CallGraph ()
 Destructor.
 
CGEK getKind () const
 Return type of this callgraph.
 
CallEdgeMapgetIndCallMap ()
 Get callees from an indirect callsite.
 
bool hasIndCSCallees (const CallICFGNode *cs) const
 
const FunctionSetgetIndCSCallees (const CallICFGNode *cs) const
 
u32_t getTotalCallSiteNumber () const
 
u32_t getNumOfResolvedIndCallEdge () const
 
const CallInstToCallGraphEdgesMapgetCallInstToCallGraphEdgesMap () const
 
void verifyCallGraph ()
 Issue a warning if the function which has indirect call sites can not be reached from program entry.
 
void addDirectCallGraphEdge (const CallICFGNode *call, const FunObjVar *callerFun, const FunObjVar *calleeFun)
 Add direct call edges.
 
void addCallGraphNode (const FunObjVar *fun)
 
const CallGraphNodegetCallGraphNode (const std::string &name)
 Get call graph node.
 
CallGraphNodegetCallGraphNode (NodeID id) const
 
CallGraphNodegetCallGraphNode (const FunObjVar *fun) const
 
CallSiteID getCallSiteID (const CallICFGNode *cs, const FunObjVar *callee) const
 Get CallSiteID.
 
bool hasCallSiteID (const CallICFGNode *cs, const FunObjVar *callee) const
 
const CallSitePairgetCallSitePair (CallSiteID id) const
 
const CallICFGNodegetCallSite (CallSiteID id) const
 
const FunObjVargetCallerOfCallSite (CallSiteID id) const
 
const FunObjVargetCalleeOfCallSite (CallSiteID id) const
 
CallGraphEdgehasGraphEdge (CallGraphNode *src, CallGraphNode *dst, CallGraphEdge::CEDGEK kind, CallSiteID csId) const
 Whether we have already created this call graph edge.
 
CallGraphEdgegetGraphEdge (CallGraphNode *src, CallGraphNode *dst, CallGraphEdge::CEDGEK kind, CallSiteID csId)
 Get call graph edge via nodes.
 
void getCallees (const CallICFGNode *cs, FunctionSet &callees)
 Get all callees for a callsite.
 
bool hasCallGraphEdge (const CallICFGNode *inst) const
 Get call graph edge via call instruction.
 
CallGraphEdgeSet::const_iterator getCallEdgeBegin (const CallICFGNode *inst) const
 
CallGraphEdgeSet::const_iterator getCallEdgeEnd (const CallICFGNode *inst) const
 
void addIndirectCallGraphEdge (const CallICFGNode *cs, const FunObjVar *callerFun, const FunObjVar *calleeFun)
 Add indirect call edges.
 
void getAllCallSitesInvokingCallee (const FunObjVar *callee, CallGraphEdge::CallInstSet &csSet)
 Get callsites invoking the callee.
 
void getDirCallSitesInvokingCallee (const FunObjVar *callee, CallGraphEdge::CallInstSet &csSet)
 
void getIndCallSitesInvokingCallee (const FunObjVar *callee, CallGraphEdge::CallInstSet &csSet)
 
bool isReachableBetweenFunctions (const FunObjVar *srcFn, const FunObjVar *dstFn) const
 Whether its reachable between two functions.
 
void dump (const std::string &filename)
 Dump the graph.
 
void view ()
 View the graph from the debugger.
 
- Public Member Functions inherited from SVF::GenericGraph< NodeTy, EdgeTy >
 GenericGraph ()
 Constructor.
 
virtual ~GenericGraph ()
 Destructor.
 
void destroy ()
 Release memory.
 
iterator begin ()
 Iterators.
 
iterator end ()
 
const_iterator begin () const
 
const_iterator end () const
 
void addGNode (NodeID id, NodeType *node)
 Add a Node.
 
NodeTypegetGNode (NodeID id) const
 Get a node.
 
bool hasGNode (NodeID id) const
 Has a node.
 
void removeGNode (NodeType *node)
 Delete a node.
 
u32_t getTotalNodeNum () const
 Get total number of node/edge.
 
u32_t getTotalEdgeNum () const
 
void incNodeNum ()
 Increase number of node/edge.
 
void incEdgeNum ()
 

Protected Member Functions

void destroy ()
 Clean up memory.
 
CallSiteID addCallSite (const CallICFGNode *cs, const FunObjVar *callee)
 Add CallSiteID.
 
void addEdge (CallGraphEdge *edge)
 Add call graph edge.
 

Protected Attributes

FunToCallGraphNodeMap funToCallGraphNodeMap
 Call Graph node map.
 
CallInstToCallGraphEdgesMap callinstToCallGraphEdgesMap
 Map a call instruction to its corresponding call edges.
 
NodeID callGraphNodeNum
 
u32_t numOfResolvedIndCallEdge
 
CGEK kind
 
- Protected Attributes inherited from SVF::GenericGraph< NodeTy, EdgeTy >
IDToNodeMapTy IDToNodeMap
 node map
 

Private Attributes

CallEdgeMap indirectCallMap
 Indirect call map.
 

Static Private Attributes

static CallSiteToIdMap csToIdMap
 Call site information.
 
static IdToCallSiteMap idToCSMap
 Map a callsite ID to a pair of call instruction and callee.
 
static CallSiteID totalCallSiteNum =1
 CallSiteIDs, start from 1;.
 

Additional Inherited Members

- Public Attributes inherited from SVF::GenericGraph< NodeTy, EdgeTy >
u32_t edgeNum
 total num of node
 
u32_t nodeNum
 total num of edge
 

Detailed Description

Definition at line 234 of file CallGraph.h.

Member Typedef Documentation

◆ CallEdgeMap

Definition at line 245 of file CallGraph.h.

◆ CallGraphEdgeConstIter

typedef CallGraphEdgeSet::const_iterator SVF::CallGraph::CallGraphEdgeConstIter

Definition at line 247 of file CallGraph.h.

◆ CallGraphEdgeIter

typedef CallGraphEdgeSet::iterator SVF::CallGraph::CallGraphEdgeIter

Definition at line 246 of file CallGraph.h.

◆ CallGraphEdgeSet

Definition at line 238 of file CallGraph.h.

◆ CallInstToCallGraphEdgesMap

Definition at line 240 of file CallGraph.h.

◆ CallSitePair

Definition at line 241 of file CallGraph.h.

◆ CallSiteToIdMap

Definition at line 242 of file CallGraph.h.

◆ FunctionSet

Definition at line 244 of file CallGraph.h.

◆ FunToCallGraphNodeMap

Definition at line 239 of file CallGraph.h.

◆ IdToCallSiteMap

Definition at line 243 of file CallGraph.h.

Member Enumeration Documentation

◆ CGEK

Enumerator
NormCallGraph 
ThdCallGraph 

Definition at line 249 of file CallGraph.h.

Constructor & Destructor Documentation

◆ CallGraph() [1/2]

CallGraph::CallGraph ( CGEK  k = NormCallGraph)

Constructor.

Definition at line 121 of file CallGraph.cpp.

121 : kind(k)
122{
125}
NodeID callGraphNodeNum
Definition CallGraph.h:267
u32_t numOfResolvedIndCallEdge
Definition CallGraph.h:268
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

◆ CallGraph() [2/2]

CallGraph::CallGraph ( const CallGraph other)

Copy constructor.

copy call graph nodes

copy edges

Definition at line 128 of file CallGraph.cpp.

129{
130 callGraphNodeNum = other.getTotalNodeNum();
133
135 for (const auto& item : other)
136 {
137 const CallGraphNode* cgn = item.second;
138 CallGraphNode* callGraphNode = new CallGraphNode(cgn->getId(), cgn->getFunction());
139 addGNode(cgn->getId(),callGraphNode);
140 funToCallGraphNodeMap[cgn->getFunction()] = callGraphNode;
141 }
142
144 for (const auto& item : other.callinstToCallGraphEdgesMap)
145 {
146 const CallICFGNode* cs = item.first;
147 for (const CallGraphEdge* edge : item.second)
148 {
149 CallGraphNode* src = getCallGraphNode(edge->getSrcID());
150 CallGraphNode* dst = getCallGraphNode(edge->getDstID());
151 CallSiteID csId = addCallSite(cs, dst->getFunction());
152
154 newEdge->addDirectCallSite(cs);
157 }
158 }
159
160}
cJSON * item
Definition cJSON.h:222
const FunObjVar * getFunction() const
Get function of this call node.
Definition CallGraph.h:191
CallInstToCallGraphEdgesMap callinstToCallGraphEdgesMap
Map a call instruction to its corresponding call edges.
Definition CallGraph.h:265
void addEdge(CallGraphEdge *edge)
Add call graph edge.
Definition CallGraph.h:292
CallSiteID addCallSite(const CallICFGNode *cs, const FunObjVar *callee)
Add CallSiteID.
Definition CallGraph.h:276
FunToCallGraphNodeMap funToCallGraphNodeMap
Call Graph node map.
Definition CallGraph.h:264
const CallGraphNode * getCallGraphNode(const std::string &name)
Get call graph node.
void addGNode(NodeID id, NodeType *node)
Add a Node.
unsigned CallSiteID
Definition GeneralType.h:58

◆ ~CallGraph()

virtual SVF::CallGraph::~CallGraph ( )
inlinevirtual

Destructor.

Definition at line 306 of file CallGraph.h.

307 {
308 destroy();
309 }
void destroy()
Clean up memory.

Member Function Documentation

◆ addCallGraphNode()

void CallGraph::addCallGraphNode ( const FunObjVar fun)

Add call graph node

Definition at line 358 of file CallGraph.cpp.

359{
361 CallGraphNode*callGraphNode = new CallGraphNode(id, fun);
362 addGNode(id, callGraphNode);
363 funToCallGraphNodeMap[callGraphNode->getFunction()] = callGraphNode;
365}
u32_t NodeID
Definition GeneralType.h:56

◆ addCallSite()

CallSiteID SVF::CallGraph::addCallSite ( const CallICFGNode cs,
const FunObjVar callee 
)
inlineprotected

Add CallSiteID.

Definition at line 276 of file CallGraph.h.

277 {
278 std::pair<const CallICFGNode*, const FunObjVar*> newCS(std::make_pair(cs, callee));
279 CallSiteToIdMap::const_iterator it = csToIdMap.find(newCS);
280 //assert(it == csToIdMap.end() && "cannot add a callsite twice");
281 if(it == csToIdMap.end())
282 {
284 csToIdMap.insert(std::make_pair(newCS, id));
285 idToCSMap.insert(std::make_pair(id, newCS));
286 return id;
287 }
288 return it->second;
289 }
static IdToCallSiteMap idToCSMap
Map a callsite ID to a pair of call instruction and callee.
Definition CallGraph.h:260
static CallSiteID totalCallSiteNum
CallSiteIDs, start from 1;.
Definition CallGraph.h:261
static CallSiteToIdMap csToIdMap
Call site information.
Definition CallGraph.h:259

◆ addDirectCallGraphEdge()

void CallGraph::addDirectCallGraphEdge ( const CallICFGNode cs,
const FunObjVar callerFun,
const FunObjVar calleeFun 
)

Add direct call edges.

Add direct call edges

Definition at line 380 of file CallGraph.cpp.

381{
382
385 CallSiteID csId = addCallSite(cs, calleeFun);
386
388 {
390 edge->addDirectCallSite(cs);
391 addEdge(edge);
393 }
394}
CallGraphEdge * hasGraphEdge(CallGraphNode *src, CallGraphNode *dst, CallGraphEdge::CEDGEK kind, CallSiteID csId) const
Whether we have already created this call graph edge.

◆ addEdge()

void SVF::CallGraph::addEdge ( CallGraphEdge edge)
inlineprotected

Add call graph edge.

Definition at line 292 of file CallGraph.h.

293 {
294 edge->getDstNode()->addIncomingEdge(edge);
295 edge->getSrcNode()->addOutgoingEdge(edge);
296 }

◆ addIndirectCallGraphEdge()

void CallGraph::addIndirectCallGraphEdge ( const CallICFGNode cs,
const FunObjVar callerFun,
const FunObjVar calleeFun 
)

Add indirect call edges.

Add indirect call edge to update call graph

Definition at line 209 of file CallGraph.cpp.

210{
211
214
216
217 CallSiteID csId = addCallSite(cs, callee->getFunction());
218
220 {
222 edge->addInDirectCallSite(cs);
223 addEdge(edge);
225 }
226}

◆ destroy()

void CallGraph::destroy ( )
protected

Clean up memory.

Memory has been cleaned up at GenericGraph

Definition at line 165 of file CallGraph.cpp.

166{
167}

◆ dump()

void CallGraph::dump ( const std::string &  filename)

Dump the graph.

Dump call graph into dot file

Definition at line 344 of file CallGraph.cpp.

345{
347}
static void WriteGraphToFile(SVF::OutStream &O, const std::string &GraphName, const GraphType &GT, bool simple=false)
std::ostream & outs()
Overwrite llvm::outs()
Definition SVFUtil.h:52

◆ getAllCallSitesInvokingCallee()

void CallGraph::getAllCallSitesInvokingCallee ( const FunObjVar callee,
CallGraphEdge::CallInstSet csSet 
)

Get callsites invoking the callee.

Get all callsite invoking this callee

Definition at line 231 of file CallGraph.cpp.

232{
233 CallGraphNode* callGraphNode = getCallGraphNode(callee);
234 for(CallGraphNode::iterator it = callGraphNode->InEdgeBegin(), eit = callGraphNode->InEdgeEnd();
235 it!=eit; ++it)
236 {
237 for(CallGraphEdge::CallInstSet::const_iterator cit = (*it)->directCallsBegin(),
238 ecit = (*it)->directCallsEnd(); cit!=ecit; ++cit)
239 {
240 csSet.insert((*cit));
241 }
242 for(CallGraphEdge::CallInstSet::const_iterator cit = (*it)->indirectCallsBegin(),
243 ecit = (*it)->indirectCallsEnd(); cit!=ecit; ++cit)
244 {
245 csSet.insert((*cit));
246 }
247 }
248}
GEdgeSetTy::iterator iterator
iterator InEdgeBegin()
iterator InEdgeEnd()

◆ getCallEdgeBegin()

CallGraphEdgeSet::const_iterator SVF::CallGraph::getCallEdgeBegin ( const CallICFGNode inst) const
inline

Definition at line 433 of file CallGraph.h.

434 {
435 CallInstToCallGraphEdgesMap::const_iterator it = callinstToCallGraphEdgesMap.find(inst);
437 && "call instruction does not have a valid callee");
438 return it->second.begin();
439 }

◆ getCallEdgeEnd()

CallGraphEdgeSet::const_iterator SVF::CallGraph::getCallEdgeEnd ( const CallICFGNode inst) const
inline

Definition at line 440 of file CallGraph.h.

441 {
442 CallInstToCallGraphEdgesMap::const_iterator it = callinstToCallGraphEdgesMap.find(inst);
444 && "call instruction does not have a valid callee");
445 return it->second.end();
446 }

◆ getCalleeOfCallSite()

const FunObjVar * SVF::CallGraph::getCalleeOfCallSite ( CallSiteID  id) const
inline

Definition at line 401 of file CallGraph.h.

402 {
403 return getCallSitePair(id).second;
404 }
const CallSitePair & getCallSitePair(CallSiteID id) const
Definition CallGraph.h:390

◆ getCallees()

void SVF::CallGraph::getCallees ( const CallICFGNode cs,
FunctionSet callees 
)
inline

Get all callees for a callsite.

Definition at line 414 of file CallGraph.h.

415 {
416 if(hasCallGraphEdge(cs))
417 {
418 for (CallGraphEdgeSet::const_iterator it = getCallEdgeBegin(cs), eit =
419 getCallEdgeEnd(cs); it != eit; ++it)
420 {
421 callees.insert((*it)->getDstNode()->getFunction());
422 }
423 }
424 }
CallGraphEdgeSet::const_iterator getCallEdgeBegin(const CallICFGNode *inst) const
Definition CallGraph.h:433
bool hasCallGraphEdge(const CallICFGNode *inst) const
Get call graph edge via call instruction.
Definition CallGraph.h:429
CallGraphEdgeSet::const_iterator getCallEdgeEnd(const CallICFGNode *inst) const
Definition CallGraph.h:440

◆ getCallerOfCallSite()

const FunObjVar * CallGraph::getCallerOfCallSite ( CallSiteID  id) const

Definition at line 88 of file CallGraph.cpp.

89{
90 return getCallSite(id)->getCaller();
91}
const CallICFGNode * getCallSite(CallSiteID id) const
Definition CallGraph.h:396
const FunObjVar * getCaller() const
Return callsite.
Definition ICFGNode.h:464

◆ getCallGraphNode() [1/3]

CallGraphNode * SVF::CallGraph::getCallGraphNode ( const FunObjVar fun) const
inline

Definition at line 366 of file CallGraph.h.

367 {
368 FunToCallGraphNodeMap::const_iterator it = funToCallGraphNodeMap.find(fun);
369 assert(it!=funToCallGraphNodeMap.end() && "call graph node not found!!");
370 return it->second;
371 }

◆ getCallGraphNode() [2/3]

const CallGraphNode * CallGraph::getCallGraphNode ( const std::string &  name)

Get call graph node.

Definition at line 367 of file CallGraph.cpp.

368{
369 for (const auto& item : *this)
370 {
371 if (item.second->getName() == name)
372 return item.second;
373 }
374 return nullptr;
375}
const char *const name
Definition cJSON.h:264

◆ getCallGraphNode() [3/3]

CallGraphNode * SVF::CallGraph::getCallGraphNode ( NodeID  id) const
inline

Definition at line 362 of file CallGraph.h.

363 {
364 return getGNode(id);
365 }
NodeType * getGNode(NodeID id) const
Get a node.

◆ getCallInstToCallGraphEdgesMap()

const CallInstToCallGraphEdgesMap & SVF::CallGraph::getCallInstToCallGraphEdgesMap ( ) const
inline

Definition at line 344 of file CallGraph.h.

345 {
347 }

◆ getCallSite()

const CallICFGNode * SVF::CallGraph::getCallSite ( CallSiteID  id) const
inline

Definition at line 396 of file CallGraph.h.

397 {
398 return getCallSitePair(id).first;
399 }

◆ getCallSiteID()

CallSiteID SVF::CallGraph::getCallSiteID ( const CallICFGNode cs,
const FunObjVar callee 
) const
inline

Get CallSiteID.

Definition at line 377 of file CallGraph.h.

378 {
379 CallSitePair newCS(std::make_pair(cs, callee));
380 CallSiteToIdMap::const_iterator it = csToIdMap.find(newCS);
381 assert(it != csToIdMap.end() && "callsite id not found! This maybe a partially resolved callgraph, please check the indCallEdge limit");
382 return it->second;
383 }
std::pair< const CallICFGNode *, const FunObjVar * > CallSitePair
Definition CallGraph.h:241

◆ getCallSitePair()

const CallSitePair & SVF::CallGraph::getCallSitePair ( CallSiteID  id) const
inline

Definition at line 390 of file CallGraph.h.

391 {
392 IdToCallSiteMap::const_iterator it = idToCSMap.find(id);
393 assert(it != idToCSMap.end() && "cannot find call site for this CallSiteID");
394 return (it->second);
395 }

◆ getDirCallSitesInvokingCallee()

void CallGraph::getDirCallSitesInvokingCallee ( const FunObjVar callee,
CallGraphEdge::CallInstSet csSet 
)

Get direct callsite invoking this callee

Definition at line 253 of file CallGraph.cpp.

254{
255 CallGraphNode* callGraphNode = getCallGraphNode(callee);
256 for(CallGraphNode::iterator it = callGraphNode->InEdgeBegin(), eit = callGraphNode->InEdgeEnd();
257 it!=eit; ++it)
258 {
259 for(CallGraphEdge::CallInstSet::const_iterator cit = (*it)->directCallsBegin(),
260 ecit = (*it)->directCallsEnd(); cit!=ecit; ++cit)
261 {
262 csSet.insert((*cit));
263 }
264 }
265}

◆ getGraphEdge()

CallGraphEdge * CallGraph::getGraphEdge ( CallGraphNode src,
CallGraphNode dst,
CallGraphEdge::CEDGEK  kind,
CallSiteID  csId 
)

Get call graph edge via nodes.

get PTACallGraph edge via nodes

Definition at line 191 of file CallGraph.cpp.

194{
195 for (CallGraphEdge::CallGraphEdgeSet::iterator iter = src->OutEdgeBegin();
196 iter != src->OutEdgeEnd(); ++iter)
197 {
198 CallGraphEdge* edge = (*iter);
199 if (edge->getEdgeKind() == kind && edge->getDstID() == dst->getId())
200 return edge;
201 }
202 return nullptr;
203}
iterator OutEdgeEnd()
iterator OutEdgeBegin()
iterators
NodeID getId() const
Get ID.
Definition SVFValue.h:158

◆ getIndCallMap()

CallEdgeMap & SVF::CallGraph::getIndCallMap ( )
inline

Get callees from an indirect callsite.

Definition at line 319 of file CallGraph.h.

320 {
321 return indirectCallMap;
322 }
CallEdgeMap indirectCallMap
Indirect call map.
Definition CallGraph.h:256

◆ getIndCallSitesInvokingCallee()

void CallGraph::getIndCallSitesInvokingCallee ( const FunObjVar callee,
CallGraphEdge::CallInstSet csSet 
)

Get indirect callsite invoking this callee

Definition at line 270 of file CallGraph.cpp.

271{
272 CallGraphNode* callGraphNode = getCallGraphNode(callee);
273 for(CallGraphNode::iterator it = callGraphNode->InEdgeBegin(), eit = callGraphNode->InEdgeEnd();
274 it!=eit; ++it)
275 {
276 for(CallGraphEdge::CallInstSet::const_iterator cit = (*it)->indirectCallsBegin(),
277 ecit = (*it)->indirectCallsEnd(); cit!=ecit; ++cit)
278 {
279 csSet.insert((*cit));
280 }
281 }
282}

◆ getIndCSCallees()

const FunctionSet & SVF::CallGraph::getIndCSCallees ( const CallICFGNode cs) const
inline

Definition at line 327 of file CallGraph.h.

328 {
329 CallEdgeMap::const_iterator it = indirectCallMap.find(cs);
330 assert(it!=indirectCallMap.end() && "not an indirect callsite!");
331 return it->second;
332 }

◆ getKind()

CGEK SVF::CallGraph::getKind ( ) const
inline

Return type of this callgraph.

Definition at line 312 of file CallGraph.h.

313 {
314 return kind;
315 }

◆ getNumOfResolvedIndCallEdge()

u32_t SVF::CallGraph::getNumOfResolvedIndCallEdge ( ) const
inline

Definition at line 339 of file CallGraph.h.

340 {
342 }

◆ getTotalCallSiteNumber()

u32_t SVF::CallGraph::getTotalCallSiteNumber ( ) const
inline

Definition at line 334 of file CallGraph.h.

335 {
336 return totalCallSiteNum;
337 }

◆ hasCallGraphEdge()

bool SVF::CallGraph::hasCallGraphEdge ( const CallICFGNode inst) const
inline

Get call graph edge via call instruction.

whether this call instruction has a valid call graph edge

Definition at line 429 of file CallGraph.h.

430 {
432 }

◆ hasCallSiteID()

bool SVF::CallGraph::hasCallSiteID ( const CallICFGNode cs,
const FunObjVar callee 
) const
inline

Definition at line 384 of file CallGraph.h.

385 {
386 CallSitePair newCS(std::make_pair(cs, callee));
387 CallSiteToIdMap::const_iterator it = csToIdMap.find(newCS);
388 return it != csToIdMap.end();
389 }

◆ hasGraphEdge()

CallGraphEdge * CallGraph::hasGraphEdge ( CallGraphNode src,
CallGraphNode dst,
CallGraphEdge::CEDGEK  kind,
CallSiteID  csId 
) const

Whether we have already created this call graph edge.

Whether we have already created this call graph edge

Definition at line 172 of file CallGraph.cpp.

175{
176 CallGraphEdge edge(src,dst,kind,csId);
179 if (outEdge && inEdge)
180 {
181 assert(outEdge == inEdge && "edges not match");
182 return outEdge;
183 }
184 else
185 return nullptr;
186}
bool hasIncomingEdge() const
Has incoming/outgoing edge set.
bool hasOutgoingEdge() const

◆ hasIndCSCallees()

bool SVF::CallGraph::hasIndCSCallees ( const CallICFGNode cs) const
inline

Definition at line 323 of file CallGraph.h.

324 {
325 return (indirectCallMap.find(cs) != indirectCallMap.end());
326 }

◆ isReachableBetweenFunctions()

bool CallGraph::isReachableBetweenFunctions ( const FunObjVar srcFn,
const FunObjVar dstFn 
) const

Whether its reachable between two functions.

Whether its reachable between two functions

Definition at line 313 of file CallGraph.cpp.

314{
316
317 std::stack<const CallGraphNode*> nodeStack;
319 nodeStack.push(dstNode);
320 visitedNodes.set(dstNode->getId());
321
322 while (nodeStack.empty() == false)
323 {
324 CallGraphNode* node = const_cast<CallGraphNode*>(nodeStack.top());
325 nodeStack.pop();
326
327 if (node->getFunction() == srcFn)
328 return true;
329
330 for (CallGraphEdgeConstIter it = node->InEdgeBegin(), eit = node->InEdgeEnd(); it != eit; ++it)
331 {
333 if (visitedNodes.test_and_set(edge->getSrcID()))
334 nodeStack.push(edge->getSrcNode());
335 }
336 }
337
338 return false;
339}
CallGraphEdgeSet::const_iterator CallGraphEdgeConstIter
Definition CallGraph.h:247
void set(unsigned Idx)

◆ verifyCallGraph()

void CallGraph::verifyCallGraph ( )

Issue a warning if the function which has indirect call sites can not be reached from program entry.

Issue a warning if the function which has indirect call sites can not be reached from program entry.

Definition at line 287 of file CallGraph.cpp.

288{
290 return;
291
294 CallEdgeMap::const_iterator it = indirectCallMap.begin();
295 CallEdgeMap::const_iterator eit = indirectCallMap.end();
296 for (; it != eit; ++it)
297 {
298 const FunctionSet& targets = it->second;
299 if (targets.empty() == false)
300 {
301 const CallICFGNode* cs = it->first;
302 const FunObjVar* func = cs->getCaller();
304 isReachableFromProgEntry(reachableFromEntry, visitedNodes) == false)
305 writeWrnMsg(func->getName() + " has indirect call site but not reachable from main");
306 }
307 }
308}
Set< const FunObjVar * > FunctionSet
Definition CallGraph.h:244
static const Option< bool > DisableWarn
Definition Options.h:205
iterator begin() const
void writeWrnMsg(const std::string &msg)
Writes a message run through wrnMsg.
Definition SVFUtil.cpp:68

◆ view()

void CallGraph::view ( )

View the graph from the debugger.

Definition at line 349 of file CallGraph.cpp.

350{
351 SVF::ViewGraph(this, "Call Graph");
352}
void ViewGraph(const GraphType &G, const std::string &name, bool ShortNames=false, GraphProgram::Name Program=GraphProgram::DOT)

Member Data Documentation

◆ callGraphNodeNum

NodeID SVF::CallGraph::callGraphNodeNum
protected

Definition at line 267 of file CallGraph.h.

◆ callinstToCallGraphEdgesMap

CallInstToCallGraphEdgesMap SVF::CallGraph::callinstToCallGraphEdgesMap
protected

Map a call instruction to its corresponding call edges.

Definition at line 265 of file CallGraph.h.

◆ csToIdMap

CallGraph::CallSiteToIdMap CallGraph::csToIdMap
staticprivate

Call site information.

Map a pair of call instruction and callee to a callsite ID

Definition at line 259 of file CallGraph.h.

◆ funToCallGraphNodeMap

FunToCallGraphNodeMap SVF::CallGraph::funToCallGraphNodeMap
protected

Call Graph node map.

Definition at line 264 of file CallGraph.h.

◆ idToCSMap

CallGraph::IdToCallSiteMap CallGraph::idToCSMap
staticprivate

Map a callsite ID to a pair of call instruction and callee.

Definition at line 260 of file CallGraph.h.

◆ indirectCallMap

CallEdgeMap SVF::CallGraph::indirectCallMap
private

Indirect call map.

Definition at line 256 of file CallGraph.h.

◆ kind

CGEK SVF::CallGraph::kind
protected

Definition at line 269 of file CallGraph.h.

◆ numOfResolvedIndCallEdge

u32_t SVF::CallGraph::numOfResolvedIndCallEdge
protected

Definition at line 268 of file CallGraph.h.

◆ totalCallSiteNum

CallSiteID CallGraph::totalCallSiteNum =1
staticprivate

CallSiteIDs, start from 1;.

Definition at line 261 of file CallGraph.h.


The documentation for this class was generated from the following files: