#include <CallGraphBuilder.h>
Definition at line 43 of file CallGraphBuilder.h.
◆ CallGraphBuilder()
SVF::CallGraphBuilder::CallGraphBuilder |
( |
| ) |
|
|
default |
◆ buildPTACallGraph()
CallGraph * CallGraphBuilder::buildPTACallGraph |
( |
| ) |
|
Buidl PTA callgraoh.
Definition at line 70 of file CallGraphBuilder.cpp.
71{
74}
CallGraph * getCallGraph()
static SVFIR * getPAG(bool buildFromFile=false)
Singleton design here to make sure we only have one instance during any analysis.
llvm::IRBuilder IRBuilder
◆ buildSVFIRCallGraph()
Buidl SVFIR callgraoh.
Definition at line 41 of file CallGraphBuilder.cpp.
42{
45 {
47 }
48
49 for (
const auto&
item : *callgraph)
50 {
52 {
55 {
57 {
60 {
62 }
63 }
64 }
65 }
66 }
67 return callgraph;
68}
void addCallGraphNode(const FunObjVar *fun)
void addDirectCallGraphEdge(const CallICFGNode *call, const FunObjVar *callerFun, const FunObjVar *calleeFun)
Add direct call edges.
const FunObjVar * getCalledFunction() const
bool isNonInstricCallSite(const ICFGNode *inst)
Whether an instruction is a callsite in the application code, excluding llvm intrinsic calls.
◆ buildThreadCallGraph()
Build thread-aware callgraph.
Definition at line 76 of file CallGraphBuilder.cpp.
77{
80
83 {
85 {
88 {
89 if (SVFUtil::isa<CallICFGNode>(inst) && tdAPI->
isTDFork(SVFUtil::cast<CallICFGNode>(inst)))
90 {
94 if (SVFUtil::isa<FunValVar>(
svfVar))
95 {
96 cg->addDirectForkEdge(cs);
97 }
98
99 else
100 {
101 cg->addThreadForkEdgeSetMap(cs,
nullptr);
102 }
103 }
104 }
105 }
106 }
107
109 {
111 {
114 {
115 if (SVFUtil::isa<CallICFGNode>(node) && tdAPI->
isTDJoin(SVFUtil::cast<CallICFGNode>(node)))
116 {
117 const CallICFGNode* cs = SVFUtil::cast<CallICFGNode>(node);
119 }
120 }
121 }
122 }
123
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.
The documentation for this class was generated from the following files: