Static Value-Flow Analysis
Loading...
Searching...
No Matches
Public Member Functions | List of all members
SVF::CallGraphBuilder Class Reference

#include <CallGraphBuilder.h>

Public Member Functions

 CallGraphBuilder ()=default
 
CallGraphbuildSVFIRCallGraph (const std::vector< const FunObjVar * > &funset)
 Buidl SVFIR callgraoh.
 
CallGraphbuildPTACallGraph ()
 Buidl PTA callgraoh.
 
ThreadCallGraphbuildThreadCallGraph ()
 Build thread-aware callgraph.
 

Detailed Description

Definition at line 43 of file CallGraphBuilder.h.

Constructor & Destructor Documentation

◆ CallGraphBuilder()

SVF::CallGraphBuilder::CallGraphBuilder ( )
default

Member Function Documentation

◆ buildPTACallGraph()

CallGraph * CallGraphBuilder::buildPTACallGraph ( )

Buidl PTA callgraoh.

Definition at line 70 of file CallGraphBuilder.cpp.

71{
73 return new CallGraph(*svfirCallGraph);
74}
CallGraph * getCallGraph()
Definition SVFIR.h:184
static SVFIR * getPAG(bool buildFromFile=false)
Singleton design here to make sure we only have one instance during any analysis.
Definition SVFIR.h:116
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

◆ buildSVFIRCallGraph()

CallGraph * CallGraphBuilder::buildSVFIRCallGraph ( const std::vector< const FunObjVar * > &  funset)

Buidl SVFIR callgraoh.

Definition at line 41 of file CallGraphBuilder.cpp.

42{
43 CallGraph* callgraph = new CallGraph();
44 for (const FunObjVar* svfFunc: funset)
45 {
46 callgraph->addCallGraphNode(svfFunc);
47 }
48
49 for (const auto& item : *callgraph)
50 {
51 for (auto it : *(item.second)->getFunction())
52 {
53 const SVFBasicBlock* svfbb = it.second;
54 for (const ICFGNode* inst : svfbb->getICFGNodeList())
55 {
57 {
58 const CallICFGNode* callBlockNode = cast<CallICFGNode>(inst);
59 if(const FunObjVar* callee = callBlockNode->getCalledFunction())
60 {
61 callgraph->addDirectCallGraphEdge(callBlockNode,(item.second)->getFunction(),callee);
62 }
63 }
64 }
65 }
66 }
67 return callgraph;
68}
cJSON * item
Definition cJSON.h:222
void addCallGraphNode(const FunObjVar *fun)
void addDirectCallGraphEdge(const CallICFGNode *call, const FunObjVar *callerFun, const FunObjVar *calleeFun)
Add direct call edges.
const FunObjVar * getCalledFunction() const
Definition ICFGNode.h:512
bool isNonInstricCallSite(const ICFGNode *inst)
Whether an instruction is a callsite in the application code, excluding llvm intrinsic calls.
Definition SVFUtil.h:182

◆ buildThreadCallGraph()

ThreadCallGraph * CallGraphBuilder::buildThreadCallGraph ( )

Build thread-aware callgraph.

Definition at line 76 of file CallGraphBuilder.cpp.

77{
80
82 for (const auto& item: *svfirCallGraph)
83 {
84 for (auto it : *(item.second)->getFunction())
85 {
86 const SVFBasicBlock* svfbb = it.second;
87 for (const ICFGNode* inst : svfbb->getICFGNodeList())
88 {
89 if (SVFUtil::isa<CallICFGNode>(inst) && tdAPI->isTDFork(SVFUtil::cast<CallICFGNode>(inst)))
90 {
91 const CallICFGNode* cs = cast<CallICFGNode>(inst);
92 cg->addForksite(cs);
93 const ValVar* svfVar = tdAPI->getForkedFun(cs);
94 if (SVFUtil::isa<FunValVar>(svfVar))
95 {
96 cg->addDirectForkEdge(cs);
97 }
98 // indirect call to the start routine function
99 else
100 {
101 cg->addThreadForkEdgeSetMap(cs, nullptr);
102 }
103 }
104 }
105 }
106 }
107 // record join sites
108 for (const auto& item: *svfirCallGraph)
109 {
110 for (auto it : *(item.second)->getFunction())
111 {
112 const SVFBasicBlock* svfbb = it.second;
113 for (const ICFGNode* node : svfbb->getICFGNodeList())
114 {
115 if (SVFUtil::isa<CallICFGNode>(node) && tdAPI->isTDJoin(SVFUtil::cast<CallICFGNode>(node)))
116 {
117 const CallICFGNode* cs = SVFUtil::cast<CallICFGNode>(node);
118 cg->addJoinsite(cs);
119 }
120 }
121 }
122 }
123
124 return cg;
125}
const ValVar * getForkedFun(const CallICFGNode *inst) const
bool isTDFork(const CallICFGNode *inst) const
Return true if this call create a new thread.
bool isTDJoin(const CallICFGNode *inst) const
Return true if this call wait for a worker thread.
static ThreadAPI * getThreadAPI()
Return a static reference.
Definition ThreadAPI.h:98

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