Static Value-Flow Analysis
Loading...
Searching...
No Matches
CallGraphBuilder.cpp
Go to the documentation of this file.
1//===- CallGraphBuilder.cpp ----------------------------------------------------------------//
2//
3// SVF: Static Value-Flow Analysis
4//
5// Copyright (C) <2013-> <Yulei Sui>
6//
7
8// This program is free software: you can redistribute it and/or modify
9// it under the terms of the GNU Affero General Public License as published by
10// the Free Software Foundation, either version 3 of the License, or
11// (at your option) any later version.
12
13// This program is distributed in the hope that it will be useful,
14// but WITHOUT ANY WARRANTY; without even the implied warranty of
15// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16// GNU Affero General Public License for more details.
17
18// You should have received a copy of the GNU Affero General Public License
19// along with this program. If not, see <http://www.gnu.org/licenses/>.
20//
21//===----------------------------------------------------------------------===//
22
23
24/*
25 * CallGraphBuilder.cpp
26 *
27 * Created on:
28 * Author: Yulei
29 */
30
31#include "Util/SVFUtil.h"
33#include "Graphs/ICFG.h"
34#include "SVFIR/SVFIR.h"
35#include "Graphs/CallGraph.h"
37
38using namespace SVF;
39using namespace SVFUtil;
40
41CallGraph* CallGraphBuilder::buildSVFIRCallGraph(const std::vector<const FunObjVar*>& funset)
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}
69
75
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}
cJSON * item
Definition cJSON.h:222
CallGraph * buildPTACallGraph()
Buidl PTA callgraoh.
CallGraph * buildSVFIRCallGraph(const std::vector< const FunObjVar * > &funset)
Buidl SVFIR callgraoh.
ThreadCallGraph * buildThreadCallGraph()
Build thread-aware callgraph.
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
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
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
bool isNonInstricCallSite(const ICFGNode *inst)
Whether an instruction is a callsite in the application code, excluding llvm intrinsic calls.
Definition SVFUtil.h:182
for isBitcode
Definition BasicTypes.h:68
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74