37using namespace SVFUtil;
53 rawstr <<
"ThreadForkEdge ";
64 rawstr <<
"ThreadJoinEdge ";
86 for (CallGraph::FunctionSet::const_iterator
func_iter =
98 if(SVFUtil::dyn_cast<FunValVar>(
forkedval)==
nullptr)
107 if(
obj->isFunction())
138 assert(!
forkset.empty() &&
"Can't find a forksite for this join!!");
161 edge->addDirectCallSite(cs);
186 edge->addInDirectCallSite(cs);
220 edge->addDirectCallSite(cs);
#define DBOUT(TYPE, X)
LLVM debug macros, define type of your DBUG model of each pass.
CallSiteID getCallSiteID() const
Get direct and indirect calls.
CallGraphEdge * hasGraphEdge(CallGraphNode *src, CallGraphNode *dst, CallGraphEdge::CEDGEK kind, CallSiteID csId) const
Whether we have already created this call graph edge.
void addIndirectCallGraphEdge(const CallICFGNode *cs, const FunObjVar *callerFun, const FunObjVar *calleeFun)
Add indirect call edges.
void addEdge(CallGraphEdge *edge)
Add call graph edge.
CallSiteID addCallSite(const CallICFGNode *cs, const FunObjVar *callee)
Add CallSiteID.
Set< const FunObjVar * > FunctionSet
const CallGraphNode * getCallGraphNode(const std::string &name)
Get call graph node.
const FunObjVar * getCaller() const
Return callsite.
virtual const FunObjVar * getFunction() const
Get containing function, or null for globals/constants.
NodeType * getSrcNode() const
NodeType * getDstNode() const
NodeID getSrcID() const
get methods of the components
NodeType * getGNode(NodeID id) const
Get a node.
virtual const PointsTo & getPts(NodeID ptr)=0
Get points-to targets of a pointer. It needs to be implemented in child class.
virtual AliasResult alias(const SVFVar *V1, const SVFVar *V2)=0
Interface exposed to users of our pointer analysis, given Value infos.
CallEdgeMap & getIndCallMap()
Get callees from an indirect callsite.
NodeBS toNodeBS() const
Returns this points-to set as a NodeBS.
const BaseObjVar * getBaseObject(NodeID id) const
const ValVar * getForkedFun(const CallICFGNode *inst) const
const ValVar * getForkedThread(const CallICFGNode *inst) const
Return arguments/attributes of pthread_create / hare_parallel_for.
const SVFVar * getJoinedThread(const CallICFGNode *inst) const
Return arguments/attributes of pthread_join.
CallSiteSet::const_iterator forksitesEnd() const
bool addDirectForkEdge(const CallICFGNode *cs)
Add direct/indirect thread fork edges.
CallSiteSet::const_iterator forksitesBegin() const
Fork sites iterators.
void updateJoinEdge(PointerAnalysis *pta)
Update join edge using pointer analysis results.
CallSiteSet::const_iterator joinsitesEnd() const
bool hasThreadJoinEdge(const CallICFGNode *cs) const
Get call graph edge via call instruction.
void addThreadJoinEdgeSetMap(const CallICFGNode *cs, ThreadJoinEdge *edge)
map call instruction to its PTACallGraphEdge map
void addDirectJoinEdge(const CallICFGNode *cs, const CallSiteSet &forksite)
Add thread join edges.
bool addIndirectForkEdge(const CallICFGNode *cs, const FunObjVar *callee)
CallSiteSet::const_iterator joinsitesBegin() const
Join sites iterators.
void addThreadForkEdgeSetMap(const CallICFGNode *cs, ThreadForkEdge *edge)
map call instruction to its PTACallGraphEdge map
void updateCallGraph(PointerAnalysis *pta)
Update call graph using pointer results.
ThreadCallGraph(const CallGraph &cg)
Constructor.
ThreadAPI * tdAPI
Thread API.
virtual const std::string toString() const
virtual const std::string toString() const
std::string pasMsg(const std::string &msg)
Print each pass/phase message by converting a string into blue string output.
std::ostream & outs()
Overwrite llvm::outs()
llvm::IRBuilder IRBuilder