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

#include <ThreadCallGraph.h>

Inheritance diagram for SVF::ThreadCallGraph:
SVF::CallGraph SVF::GenericGraph< NodeTy, EdgeTy >

Public Types

typedef Set< const CallICFGNode * > InstSet
 
typedef InstSet CallSiteSet
 
typedef Set< CallSiteSet * > CtxSet
 
typedef ThreadForkEdge::ForkEdgeSet ForkEdgeSet
 
typedef Map< const CallICFGNode *, ForkEdgeSetCallInstToForkEdgesMap
 
typedef ThreadJoinEdge::JoinEdgeSet JoinEdgeSet
 
typedef Map< const CallICFGNode *, JoinEdgeSetCallInstToJoinEdgesMap
 
typedef HareParForEdge::ParForEdgeSet ParForEdgeSet
 
typedef Map< const CallICFGNode *, ParForEdgeSetCallInstToParForEdgesMap
 
- Public Types inherited from SVF::CallGraph
enum  CGEK { NormCallGraph , ThdCallGraph }
 
typedef CallGraphEdge::CallGraphEdgeSet CallGraphEdgeSet
 
typedef Map< const FunObjVar *, CallGraphNode * > FunToCallGraphNodeMap
 
typedef Map< const CallICFGNode *, CallGraphEdgeSetCallInstToCallGraphEdgesMap
 
typedef std::pair< const CallICFGNode *, const FunObjVar * > CallSitePair
 
typedef Map< CallSitePair, CallSiteIDCallSiteToIdMap
 
typedef Map< CallSiteID, CallSitePairIdToCallSiteMap
 
typedef Set< const FunObjVar * > FunctionSet
 
typedef OrderedMap< const CallICFGNode *, FunctionSetCallEdgeMap
 
typedef CallGraphEdgeSet::iterator CallGraphEdgeIter
 
typedef CallGraphEdgeSet::const_iterator CallGraphEdgeConstIter
 
- Public Types inherited from SVF::GenericGraph< NodeTy, EdgeTy >
typedef NodeTy NodeType
 
typedef EdgeTy EdgeType
 
typedef OrderedMap< NodeID, NodeType * > IDToNodeMapTy
 NodeID to GenericNode map.
 
typedef IDToNodeMapTy::iterator iterator
 Node Iterators.
 
typedef IDToNodeMapTy::const_iterator const_iterator
 

Public Member Functions

 ThreadCallGraph (const CallGraph &cg)
 Constructor.
 
 ThreadCallGraph (ThreadCallGraph &cg)=delete
 
virtual ~ThreadCallGraph ()
 Destructor.
 
void updateCallGraph (PointerAnalysis *pta)
 Update call graph using pointer results.
 
void updateJoinEdge (PointerAnalysis *pta)
 Update join edge using pointer analysis results.
 
bool hasThreadForkEdge (const CallICFGNode *cs) const
 Get call graph edge via call instruction.
 
ForkEdgeSet::const_iterator getForkEdgeBegin (const CallICFGNode *cs) const
 
ForkEdgeSet::const_iterator getForkEdgeEnd (const CallICFGNode *cs) const
 
bool hasThreadJoinEdge (const CallICFGNode *cs) const
 Get call graph edge via call instruction.
 
JoinEdgeSet::const_iterator getJoinEdgeBegin (const CallICFGNode *cs) const
 
JoinEdgeSet::const_iterator getJoinEdgeEnd (const CallICFGNode *cs) const
 
void getJoinSites (const CallGraphNode *routine, InstSet &csSet)
 
- Public Member Functions inherited from SVF::CallGraph
 CallGraph (CGEK k=NormCallGraph)
 Constructor.
 
 CallGraph (const CallGraph &other)
 Copy constructor.
 
virtual ~CallGraph ()
 Destructor.
 
CGEK getKind () const
 Return type of this callgraph.
 
CallEdgeMapgetIndCallMap ()
 Get callees from an indirect callsite.
 
bool hasIndCSCallees (const CallICFGNode *cs) const
 
const FunctionSetgetIndCSCallees (const CallICFGNode *cs) const
 
u32_t getTotalCallSiteNumber () const
 
u32_t getNumOfResolvedIndCallEdge () const
 
const CallInstToCallGraphEdgesMapgetCallInstToCallGraphEdgesMap () const
 
void verifyCallGraph ()
 Issue a warning if the function which has indirect call sites can not be reached from program entry.
 
void addDirectCallGraphEdge (const CallICFGNode *call, const FunObjVar *callerFun, const FunObjVar *calleeFun)
 Add direct call edges.
 
void addCallGraphNode (const FunObjVar *fun)
 
const CallGraphNodegetCallGraphNode (const std::string &name)
 Get call graph node.
 
CallGraphNodegetCallGraphNode (NodeID id) const
 
CallGraphNodegetCallGraphNode (const FunObjVar *fun) const
 
CallSiteID getCallSiteID (const CallICFGNode *cs, const FunObjVar *callee) const
 Get CallSiteID.
 
bool hasCallSiteID (const CallICFGNode *cs, const FunObjVar *callee) const
 
const CallSitePairgetCallSitePair (CallSiteID id) const
 
const CallICFGNodegetCallSite (CallSiteID id) const
 
const FunObjVargetCallerOfCallSite (CallSiteID id) const
 
const FunObjVargetCalleeOfCallSite (CallSiteID id) const
 
CallGraphEdgehasGraphEdge (CallGraphNode *src, CallGraphNode *dst, CallGraphEdge::CEDGEK kind, CallSiteID csId) const
 Whether we have already created this call graph edge.
 
CallGraphEdgegetGraphEdge (CallGraphNode *src, CallGraphNode *dst, CallGraphEdge::CEDGEK kind, CallSiteID csId)
 Get call graph edge via nodes.
 
void getCallees (const CallICFGNode *cs, FunctionSet &callees)
 Get all callees for a callsite.
 
bool hasCallGraphEdge (const CallICFGNode *inst) const
 Get call graph edge via call instruction.
 
CallGraphEdgeSet::const_iterator getCallEdgeBegin (const CallICFGNode *inst) const
 
CallGraphEdgeSet::const_iterator getCallEdgeEnd (const CallICFGNode *inst) const
 
void addIndirectCallGraphEdge (const CallICFGNode *cs, const FunObjVar *callerFun, const FunObjVar *calleeFun)
 Add indirect call edges.
 
void getAllCallSitesInvokingCallee (const FunObjVar *callee, CallGraphEdge::CallInstSet &csSet)
 Get callsites invoking the callee.
 
void getDirCallSitesInvokingCallee (const FunObjVar *callee, CallGraphEdge::CallInstSet &csSet)
 
void getIndCallSitesInvokingCallee (const FunObjVar *callee, CallGraphEdge::CallInstSet &csSet)
 
bool isReachableBetweenFunctions (const FunObjVar *srcFn, const FunObjVar *dstFn) const
 Whether its reachable between two functions.
 
void dump (const std::string &filename)
 Dump the graph.
 
void view ()
 View the graph from the debugger.
 
- Public Member Functions inherited from SVF::GenericGraph< NodeTy, EdgeTy >
 GenericGraph ()
 Constructor.
 
virtual ~GenericGraph ()
 Destructor.
 
void destroy ()
 Release memory.
 
iterator begin ()
 Iterators.
 
iterator end ()
 
const_iterator begin () const
 
const_iterator end () const
 
void addGNode (NodeID id, NodeType *node)
 Add a Node.
 
NodeTypegetGNode (NodeID id) const
 Get a node.
 
bool hasGNode (NodeID id) const
 Has a node.
 
void removeGNode (NodeType *node)
 Delete a node.
 
u32_t getTotalNodeNum () const
 Get total number of node/edge.
 
u32_t getTotalEdgeNum () const
 
void incNodeNum ()
 Increase number of node/edge.
 
void incEdgeNum ()
 

Static Public Member Functions

static bool classof (const ThreadCallGraph *)
 ClassOf.
 
static bool classof (const CallGraph *g)
 
ThreadAPItdAPI
 Thread API.
 
CallSiteSet forksites
 all thread fork sites
 
CallSiteSet joinsites
 all thread fork sites
 
CallSiteSet parForSites
 all parallel for sites
 
CallInstToForkEdgesMap callinstToThreadForkEdgesMap
 Map a call instruction to its corresponding fork edges.
 
CallInstToJoinEdgesMap callinstToThreadJoinEdgesMap
 Map a call instruction to its corresponding join edges.
 
CallInstToParForEdgesMap callinstToHareParForEdgesMap
 Map a call instruction to its corresponding hare_parallel_for edges.
 
bool isForksite (const CallICFGNode *csInst)
 
bool isJoinsite (const CallICFGNode *csInst)
 
bool isParForSite (const CallICFGNode *csInst)
 
CallSiteSet::const_iterator forksitesBegin () const
 Fork sites iterators.
 
CallSiteSet::const_iterator forksitesEnd () const
 
CallSiteSet::const_iterator joinsitesBegin () const
 Join sites iterators.
 
CallSiteSet::const_iterator joinsitesEnd () const
 
CallSiteSet::const_iterator parForSitesBegin () const
 hare_parallel_for sites iterators
 
CallSiteSet::const_iterator parForSitesEnd () const
 
u32_t getNumOfForksite () const
 Num of fork/join sites.
 
u32_t getNumOfJoinsite () const
 
u32_t getNumOfParForSite () const
 
ThreadAPIgetThreadAPI () const
 Thread API.
 
bool addForksite (const CallICFGNode *cs)
 Add fork sites which directly or indirectly create a thread.
 
bool addJoinsite (const CallICFGNode *cs)
 
bool addParForSite (const CallICFGNode *cs)
 
bool addDirectForkEdge (const CallICFGNode *cs)
 Add direct/indirect thread fork edges.
 
bool addIndirectForkEdge (const CallICFGNode *cs, const FunObjVar *callee)
 
void addDirectJoinEdge (const CallICFGNode *cs, const CallSiteSet &forksite)
 Add thread join edges.
 
void addThreadForkEdgeSetMap (const CallICFGNode *cs, ThreadForkEdge *edge)
 map call instruction to its PTACallGraphEdge map
 
void addThreadJoinEdgeSetMap (const CallICFGNode *cs, ThreadJoinEdge *edge)
 map call instruction to its PTACallGraphEdge map
 
void addHareParForEdgeSetMap (const CallICFGNode *cs, HareParForEdge *edge)
 map call instruction to its PTACallGraphEdge map
 
ThreadJoinEdgehasThreadJoinEdge (const CallICFGNode *call, CallGraphNode *joinFunNode, CallGraphNode *threadRoutineFunNode, CallSiteID csId) const
 has thread join edge
 

Additional Inherited Members

- Public Attributes inherited from SVF::GenericGraph< NodeTy, EdgeTy >
u32_t edgeNum
 total num of node
 
u32_t nodeNum
 total num of edge
 
- Protected Member Functions inherited from SVF::CallGraph
void destroy ()
 Clean up memory.
 
CallSiteID addCallSite (const CallICFGNode *cs, const FunObjVar *callee)
 Add CallSiteID.
 
void addEdge (CallGraphEdge *edge)
 Add call graph edge.
 
- Protected Attributes inherited from SVF::CallGraph
FunToCallGraphNodeMap funToCallGraphNodeMap
 Call Graph node map.
 
CallInstToCallGraphEdgesMap callinstToCallGraphEdgesMap
 Map a call instruction to its corresponding call edges.
 
NodeID callGraphNodeNum
 
u32_t numOfResolvedIndCallEdge
 
CGEK kind
 
- Protected Attributes inherited from SVF::GenericGraph< NodeTy, EdgeTy >
IDToNodeMapTy IDToNodeMap
 node map
 

Detailed Description

Thread sensitive call graph

Definition at line 141 of file ThreadCallGraph.h.

Member Typedef Documentation

◆ CallInstToForkEdgesMap

Definition at line 149 of file ThreadCallGraph.h.

◆ CallInstToJoinEdgesMap

Definition at line 151 of file ThreadCallGraph.h.

◆ CallInstToParForEdgesMap

Definition at line 153 of file ThreadCallGraph.h.

◆ CallSiteSet

Definition at line 146 of file ThreadCallGraph.h.

◆ CtxSet

Definition at line 147 of file ThreadCallGraph.h.

◆ ForkEdgeSet

Definition at line 148 of file ThreadCallGraph.h.

◆ InstSet

Definition at line 145 of file ThreadCallGraph.h.

◆ JoinEdgeSet

Definition at line 150 of file ThreadCallGraph.h.

◆ ParForEdgeSet

Definition at line 152 of file ThreadCallGraph.h.

Constructor & Destructor Documentation

◆ ThreadCallGraph() [1/2]

ThreadCallGraph::ThreadCallGraph ( const CallGraph cg)

Constructor.

Constructor

Definition at line 42 of file ThreadCallGraph.cpp.

42 :
44{
46 DBOUT(DGENERAL, outs() << SVFUtil::pasMsg("Building ThreadCallGraph\n"));
47}
#define DBOUT(TYPE, X)
LLVM debug macros, define type of your DBUG model of each pass.
Definition SVFType.h:498
#define DGENERAL
Definition SVFType.h:504
static ThreadAPI * getThreadAPI()
Return a static reference.
Definition ThreadAPI.h:98
ThreadAPI * tdAPI
Thread API.
std::string pasMsg(const std::string &msg)
Print each pass/phase message by converting a string into blue string output.
Definition SVFUtil.cpp:101
std::ostream & outs()
Overwrite llvm::outs()
Definition SVFUtil.h:52
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

◆ ThreadCallGraph() [2/2]

SVF::ThreadCallGraph::ThreadCallGraph ( ThreadCallGraph cg)
delete

◆ ~ThreadCallGraph()

virtual SVF::ThreadCallGraph::~ThreadCallGraph ( )
inlinevirtual

Destructor.

Definition at line 161 of file ThreadCallGraph.h.

162 {
163 }

Member Function Documentation

◆ addDirectForkEdge()

bool ThreadCallGraph::addDirectForkEdge ( const CallICFGNode cs)

Add direct/indirect thread fork edges.

Add direct fork edges

Definition at line 146 of file ThreadCallGraph.cpp.

147{
148
150 const FunValVar* funValvar = SVFUtil::dyn_cast<FunValVar>(tdAPI->getForkedFun(cs));
152 assert(forkee && "callee does not exist");
153 CallGraphNode* callee = getCallGraphNode(forkee->getDefFunForMultipleModule());
154 CallSiteID csId = addCallSite(cs, callee->getFunction());
155
157 {
158 assert(cs->getCaller() == caller->getFunction() && "callee instruction not inside caller??");
159
161 edge->addDirectCallSite(cs);
162
163 addEdge(edge);
165 return true;
166 }
167 else
168 return false;
169}
CallGraphEdge * hasGraphEdge(CallGraphNode *src, CallGraphNode *dst, CallGraphEdge::CEDGEK kind, CallSiteID csId) const
Whether we have already created this call graph edge.
void addEdge(CallGraphEdge *edge)
Add call graph edge.
Definition CallGraph.h:292
CallSiteID addCallSite(const CallICFGNode *cs, const FunObjVar *callee)
Add CallSiteID.
Definition CallGraph.h:276
const CallGraphNode * getCallGraphNode(const std::string &name)
Get call graph node.
const FunObjVar * getCaller() const
Return callsite.
Definition ICFGNode.h:464
virtual const FunObjVar * getFunction() const
Get containing function, or null for globals/constants.
const ValVar * getForkedFun(const CallICFGNode *inst) const
void addThreadForkEdgeSetMap(const CallICFGNode *cs, ThreadForkEdge *edge)
map call instruction to its PTACallGraphEdge map
unsigned CallSiteID
Definition GeneralType.h:58

◆ addDirectJoinEdge()

void ThreadCallGraph::addDirectJoinEdge ( const CallICFGNode cs,
const CallSiteSet forkset 
)

Add thread join edges.

Add direct fork edges As join edge is a special return which is back to join site(s) rather than its fork site A ThreadJoinEdge is created from the functions where join sites reside in to the start routine function But we don't invoke addEdge() method to add the edge to src and dst, otherwise it makes a scc cycle

Definition at line 202 of file ThreadCallGraph.cpp.

203{
204
206
207 for (CallSiteSet::const_iterator it = forkset.begin(), eit = forkset.end(); it != eit; ++it)
208 {
209
211 SVFUtil::dyn_cast<FunValVar>(tdAPI->getForkedFun(*it))->getFunction();
212 assert(threadRoutineFun && "thread routine function does not exist");
215
217 {
218 assert(cs->getCaller() == joinFunNode->getFunction() && "callee instruction not inside caller??");
220 edge->addDirectCallSite(cs);
221
223 }
224 }
225}
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

◆ addForksite()

bool SVF::ThreadCallGraph::addForksite ( const CallICFGNode cs)
inline

Add fork sites which directly or indirectly create a thread.

Definition at line 314 of file ThreadCallGraph.h.

315 {
317 return forksites.insert(cs).second;
318 }
CallSiteSet forksites
all thread fork sites
CallInstToForkEdgesMap callinstToThreadForkEdgesMap
Map a call instruction to its corresponding fork edges.

◆ addHareParForEdgeSetMap()

void SVF::ThreadCallGraph::addHareParForEdgeSetMap ( const CallICFGNode cs,
HareParForEdge edge 
)
inline

map call instruction to its PTACallGraphEdge map

Definition at line 364 of file ThreadCallGraph.h.

365 {
366 if(edge!=nullptr)
367 {
370 }
371 }
CallInstToCallGraphEdgesMap callinstToCallGraphEdgesMap
Map a call instruction to its corresponding call edges.
Definition CallGraph.h:265
CallInstToParForEdgesMap callinstToHareParForEdgesMap
Map a call instruction to its corresponding hare_parallel_for edges.

◆ addIndirectForkEdge()

bool ThreadCallGraph::addIndirectForkEdge ( const CallICFGNode cs,
const FunObjVar calleefun 
)

Add indirect fork edge to update call graph

Definition at line 174 of file ThreadCallGraph.cpp.

175{
178
179 CallSiteID csId = addCallSite(cs, callee->getFunction());
180
182 {
183 assert(cs->getCaller() == caller->getFunction() && "callee instruction not inside caller??");
184
186 edge->addInDirectCallSite(cs);
187
188 addEdge(edge);
190 return true;
191 }
192 else
193 return false;
194}

◆ addJoinsite()

bool SVF::ThreadCallGraph::addJoinsite ( const CallICFGNode cs)
inline

Definition at line 319 of file ThreadCallGraph.h.

320 {
322 return joinsites.insert(cs).second;
323 }
CallSiteSet joinsites
all thread fork sites
CallInstToJoinEdgesMap callinstToThreadJoinEdgesMap
Map a call instruction to its corresponding join edges.

◆ addParForSite()

bool SVF::ThreadCallGraph::addParForSite ( const CallICFGNode cs)
inline

Definition at line 324 of file ThreadCallGraph.h.

325 {
327 return parForSites.insert(cs).second;
328 }
CallSiteSet parForSites
all parallel for sites

◆ addThreadForkEdgeSetMap()

void SVF::ThreadCallGraph::addThreadForkEdgeSetMap ( const CallICFGNode cs,
ThreadForkEdge edge 
)
inline

map call instruction to its PTACallGraphEdge map

Definition at line 344 of file ThreadCallGraph.h.

345 {
346 if(edge!=nullptr)
347 {
350 }
351 }

◆ addThreadJoinEdgeSetMap()

void SVF::ThreadCallGraph::addThreadJoinEdgeSetMap ( const CallICFGNode cs,
ThreadJoinEdge edge 
)
inline

map call instruction to its PTACallGraphEdge map

Definition at line 354 of file ThreadCallGraph.h.

355 {
356 if(edge!=nullptr)
357 {
360 }
361 }

◆ classof() [1/2]

static bool SVF::ThreadCallGraph::classof ( const CallGraph g)
inlinestatic

Definition at line 171 of file ThreadCallGraph.h.

172 {
173 return g->getKind() == CallGraph::ThdCallGraph;
174 }

◆ classof() [2/2]

static bool SVF::ThreadCallGraph::classof ( const ThreadCallGraph )
inlinestatic

ClassOf.

Definition at line 167 of file ThreadCallGraph.h.

168 {
169 return true;
170 }

◆ forksitesBegin()

CallSiteSet::const_iterator SVF::ThreadCallGraph::forksitesBegin ( ) const
inline

Fork sites iterators.

Definition at line 256 of file ThreadCallGraph.h.

257 {
258 return forksites.begin();
259 }

◆ forksitesEnd()

CallSiteSet::const_iterator SVF::ThreadCallGraph::forksitesEnd ( ) const
inline

Definition at line 260 of file ThreadCallGraph.h.

261 {
262 return forksites.end();
263 }

◆ getForkEdgeBegin()

ForkEdgeSet::const_iterator SVF::ThreadCallGraph::getForkEdgeBegin ( const CallICFGNode cs) const
inline

Definition at line 191 of file ThreadCallGraph.h.

192 {
193 CallInstToForkEdgesMap::const_iterator it = callinstToThreadForkEdgesMap.find(cs);
194 assert(it != callinstToThreadForkEdgesMap.end() && "call instruction not found");
195 return it->second.begin();
196 }

◆ getForkEdgeEnd()

ForkEdgeSet::const_iterator SVF::ThreadCallGraph::getForkEdgeEnd ( const CallICFGNode cs) const
inline

Definition at line 197 of file ThreadCallGraph.h.

198 {
199 CallInstToForkEdgesMap::const_iterator it = callinstToThreadForkEdgesMap.find(cs);
200 assert(it != callinstToThreadForkEdgesMap.end() && "call instruction not found");
201 return it->second.end();
202 }

◆ getJoinEdgeBegin()

JoinEdgeSet::const_iterator SVF::ThreadCallGraph::getJoinEdgeBegin ( const CallICFGNode cs) const
inline

Definition at line 211 of file ThreadCallGraph.h.

212 {
213 CallInstToJoinEdgesMap::const_iterator it = callinstToThreadJoinEdgesMap.find(cs);
214 assert(it != callinstToThreadJoinEdgesMap.end() && "call instruction does not have a valid callee");
215 return it->second.begin();
216 }

◆ getJoinEdgeEnd()

JoinEdgeSet::const_iterator SVF::ThreadCallGraph::getJoinEdgeEnd ( const CallICFGNode cs) const
inline

Definition at line 217 of file ThreadCallGraph.h.

218 {
219 CallInstToJoinEdgesMap::const_iterator it = callinstToThreadJoinEdgesMap.find(cs);
220 assert(it != callinstToThreadJoinEdgesMap.end() && "call instruction does not have a valid callee");
221 return it->second.end();
222 }

◆ getJoinSites()

void SVF::ThreadCallGraph::getJoinSites ( const CallGraphNode routine,
InstSet csSet 
)
inline

Definition at line 223 of file ThreadCallGraph.h.

224 {
225 for(CallInstToJoinEdgesMap::const_iterator it = callinstToThreadJoinEdgesMap.begin(), eit = callinstToThreadJoinEdgesMap.end(); it!=eit; ++it)
226 {
227 for(JoinEdgeSet::const_iterator jit = it->second.begin(), ejit = it->second.end(); jit!=ejit; ++jit)
228 {
229 if((*jit)->getDstNode() == routine)
230 {
231 csSet.insert(it->first);
232 }
233 }
234 }
235 }

◆ getNumOfForksite()

u32_t SVF::ThreadCallGraph::getNumOfForksite ( ) const
inline

Num of fork/join sites.

Definition at line 292 of file ThreadCallGraph.h.

293 {
294 return forksites.size();
295 }

◆ getNumOfJoinsite()

u32_t SVF::ThreadCallGraph::getNumOfJoinsite ( ) const
inline

Definition at line 296 of file ThreadCallGraph.h.

297 {
298 return joinsites.size();
299 }

◆ getNumOfParForSite()

u32_t SVF::ThreadCallGraph::getNumOfParForSite ( ) const
inline

Definition at line 300 of file ThreadCallGraph.h.

301 {
302 return parForSites.size();
303 }

◆ getThreadAPI()

ThreadAPI * SVF::ThreadCallGraph::getThreadAPI ( ) const
inline

Thread API.

Definition at line 307 of file ThreadCallGraph.h.

308 {
309 return tdAPI;
310 }

◆ hasThreadForkEdge()

bool SVF::ThreadCallGraph::hasThreadForkEdge ( const CallICFGNode cs) const
inline

Get call graph edge via call instruction.

whether this call instruction has a valid call graph edge

Definition at line 186 of file ThreadCallGraph.h.

187 {
188 return callinstToThreadForkEdgesMap.find(cs) !=
190 }

◆ hasThreadJoinEdge() [1/2]

ThreadJoinEdge * SVF::ThreadCallGraph::hasThreadJoinEdge ( const CallICFGNode call,
CallGraphNode joinFunNode,
CallGraphNode threadRoutineFunNode,
CallSiteID  csId 
) const
inline

has thread join edge

Definition at line 374 of file ThreadCallGraph.h.

375 {
376 ThreadJoinEdge joinEdge(joinFunNode,threadRoutineFunNode, csId);
377 CallInstToJoinEdgesMap::const_iterator it = callinstToThreadJoinEdgesMap.find(call);
379 {
380 JoinEdgeSet::const_iterator jit = it->second.find(&joinEdge);
381 if(jit!=it->second.end())
382 return *jit;
383 }
384 return nullptr;
385 }

◆ hasThreadJoinEdge() [2/2]

bool SVF::ThreadCallGraph::hasThreadJoinEdge ( const CallICFGNode cs) const
inline

Get call graph edge via call instruction.

whether this call instruction has a valid call graph edge

Definition at line 207 of file ThreadCallGraph.h.

208 {
210 }

◆ isForksite()

bool SVF::ThreadCallGraph::isForksite ( const CallICFGNode csInst)
inline

Whether a callsite is a fork or join or hare_parallel_for

Definition at line 240 of file ThreadCallGraph.h.

241 {
242 return forksites.find(csInst) != forksites.end();
243 }

◆ isJoinsite()

bool SVF::ThreadCallGraph::isJoinsite ( const CallICFGNode csInst)
inline

Definition at line 244 of file ThreadCallGraph.h.

245 {
246 return joinsites.find(csInst) != joinsites.end();
247 }

◆ isParForSite()

bool SVF::ThreadCallGraph::isParForSite ( const CallICFGNode csInst)
inline

Definition at line 248 of file ThreadCallGraph.h.

249 {
250 return parForSites.find(csInst) != parForSites.end();
251 }

◆ joinsitesBegin()

CallSiteSet::const_iterator SVF::ThreadCallGraph::joinsitesBegin ( ) const
inline

Join sites iterators.

Definition at line 268 of file ThreadCallGraph.h.

269 {
270 return joinsites.begin();
271 }

◆ joinsitesEnd()

CallSiteSet::const_iterator SVF::ThreadCallGraph::joinsitesEnd ( ) const
inline

Definition at line 272 of file ThreadCallGraph.h.

273 {
274 return joinsites.end();
275 }

◆ parForSitesBegin()

CallSiteSet::const_iterator SVF::ThreadCallGraph::parForSitesBegin ( ) const
inline

hare_parallel_for sites iterators

Definition at line 280 of file ThreadCallGraph.h.

281 {
282 return parForSites.begin();
283 }

◆ parForSitesEnd()

CallSiteSet::const_iterator SVF::ThreadCallGraph::parForSitesEnd ( ) const
inline

Definition at line 284 of file ThreadCallGraph.h.

285 {
286 return parForSites.end();
287 }

◆ updateCallGraph()

void ThreadCallGraph::updateCallGraph ( PointerAnalysis pta)

Update call graph using pointer results.

Definition at line 77 of file ThreadCallGraph.cpp.

78{
79
80 PointerAnalysis::CallEdgeMap::const_iterator iter = pta->getIndCallMap().begin();
81 PointerAnalysis::CallEdgeMap::const_iterator eiter = pta->getIndCallMap().end();
82 for (; iter != eiter; iter++)
83 {
84 const CallICFGNode* cs = iter->first;
85 const CallGraph::FunctionSet &functions = iter->second;
86 for (CallGraph::FunctionSet::const_iterator func_iter =
87 functions.begin(); func_iter != functions.end(); func_iter++)
88 {
89 const FunObjVar* callee = *func_iter;
91 }
92 }
93
94 // Fork sites
95 for (CallSiteSet::const_iterator it = forksitesBegin(), eit = forksitesEnd(); it != eit; ++it)
96 {
98 if(SVFUtil::dyn_cast<FunValVar>(forkedval)==nullptr)
99 {
100 SVFIR* pag = pta->getPAG();
101 const NodeBS targets = pta->getPts(forkedval->getId()).toNodeBS();
102 for (NodeBS::iterator ii = targets.begin(), ie = targets.end(); ii != ie; ii++)
103 {
104 if(ObjVar* objPN = SVFUtil::dyn_cast<ObjVar>(pag->getGNode(*ii)))
105 {
106 const BaseObjVar* obj = pag->getBaseObject(objPN->getId());
107 if(obj->isFunction())
108 {
109 const FunObjVar* svfCallee = SVFUtil::cast<FunObjVar>(obj)->getFunction();
111 }
112 }
113 }
114 }
115 }
116}
void addIndirectCallGraphEdge(const CallICFGNode *cs, const FunObjVar *callerFun, const FunObjVar *calleeFun)
Add indirect call edges.
Set< const FunObjVar * > FunctionSet
Definition CallGraph.h:244
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.
SVFIR * getPAG() const
CallEdgeMap & getIndCallMap()
Get callees from an indirect callsite.
NodeBS toNodeBS() const
Returns this points-to set as a NodeBS.
Definition PointsTo.cpp:313
const BaseObjVar * getBaseObject(NodeID id) const
Definition SVFIR.h:423
CallSiteSet::const_iterator forksitesEnd() const
CallSiteSet::const_iterator forksitesBegin() const
Fork sites iterators.
bool addIndirectForkEdge(const CallICFGNode *cs, const FunObjVar *callee)

◆ updateJoinEdge()

void ThreadCallGraph::updateJoinEdge ( PointerAnalysis pta)

Update join edge using pointer analysis results.

Update join edge using pointer analysis results

Definition at line 122 of file ThreadCallGraph.cpp.

123{
124
125 for (CallSiteSet::const_iterator it = joinsitesBegin(), eit = joinsitesEnd(); it != eit; ++it)
126 {
128 // find its corresponding fork sites first
130 for (CallSiteSet::const_iterator it = forksitesBegin(), eit = forksitesEnd(); it != eit; ++it)
131 {
133 if (pta->alias(jointhread->getId(), forkthread->getId()))
134 {
135 forkset.insert(*it);
136 }
137 }
138 assert(!forkset.empty() && "Can't find a forksite for this join!!");
140 }
141}
virtual AliasResult alias(const SVFVar *V1, const SVFVar *V2)=0
Interface exposed to users of our pointer analysis, given Value infos.
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 joinsitesEnd() const
void addDirectJoinEdge(const CallICFGNode *cs, const CallSiteSet &forksite)
Add thread join edges.
CallSiteSet::const_iterator joinsitesBegin() const
Join sites iterators.

Member Data Documentation

◆ callinstToHareParForEdgesMap

CallInstToParForEdgesMap SVF::ThreadCallGraph::callinstToHareParForEdgesMap
private

Map a call instruction to its corresponding hare_parallel_for edges.

Definition at line 394 of file ThreadCallGraph.h.

◆ callinstToThreadForkEdgesMap

CallInstToForkEdgesMap SVF::ThreadCallGraph::callinstToThreadForkEdgesMap
private

Map a call instruction to its corresponding fork edges.

Definition at line 392 of file ThreadCallGraph.h.

◆ callinstToThreadJoinEdgesMap

CallInstToJoinEdgesMap SVF::ThreadCallGraph::callinstToThreadJoinEdgesMap
private

Map a call instruction to its corresponding join edges.

Definition at line 393 of file ThreadCallGraph.h.

◆ forksites

CallSiteSet SVF::ThreadCallGraph::forksites
private

all thread fork sites

Definition at line 389 of file ThreadCallGraph.h.

◆ joinsites

CallSiteSet SVF::ThreadCallGraph::joinsites
private

all thread fork sites

Definition at line 390 of file ThreadCallGraph.h.

◆ parForSites

CallSiteSet SVF::ThreadCallGraph::parForSites
private

all parallel for sites

Definition at line 391 of file ThreadCallGraph.h.

◆ tdAPI

ThreadAPI* SVF::ThreadCallGraph::tdAPI
private

Thread API.

Definition at line 388 of file ThreadCallGraph.h.


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