39using namespace SVFUtil;
49 for (
const auto&
item : *callgraph)
51 for (
auto it : *(
item.second)->getFunction())
84 for (
auto it : *(
item.second)->getFunction())
89 if (SVFUtil::isa<CallICFGNode>(inst) && tdAPI->
isTDFork(SVFUtil::cast<CallICFGNode>(inst)))
94 if (SVFUtil::isa<FunValVar>(
svfVar))
96 cg->addDirectForkEdge(cs);
101 cg->addThreadForkEdgeSetMap(cs,
nullptr);
110 for (
auto it : *(
item.second)->getFunction())
115 if (SVFUtil::isa<CallICFGNode>(node) && tdAPI->
isTDJoin(SVFUtil::cast<CallICFGNode>(node)))
117 const CallICFGNode* cs = SVFUtil::cast<CallICFGNode>(node);
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
CallGraph * getCallGraph()
static SVFIR * getPAG(bool buildFromFile=false)
Singleton design here to make sure we only have one instance during any analysis.
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.
bool isNonInstricCallSite(const ICFGNode *inst)
Whether an instruction is a callsite in the application code, excluding llvm intrinsic calls.
llvm::IRBuilder IRBuilder