Static Value-Flow Analysis
Loading...
Searching...
No Matches
TCT.h
Go to the documentation of this file.
1//===- TCT.h -- Thread creation tree-------------//
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 * TCT.h
25 *
26 * Created on: Jun 24, 2015
27 * Author: Yulei Sui, Peng Di
28 */
29
30#ifndef TCTNodeDetector_H_
31#define TCTNodeDetector_H_
32
33#include "Graphs/SCC.h"
35#include "Util/CxtStmt.h"
36#include "Util/SVFUtil.h"
37#include <set>
38#include <vector>
39
40namespace SVF
41{
42
43class TCTNode;
44
45
46/*
47 * Thread creation edge represents a spawning relation between two context sensitive threads
48 */
51{
52public:
53 enum CEDGEK
54 {
56 };
59 GenericTCTEdgeTy(s, d, kind)
60 {
61 }
63 virtual ~TCTEdge()
64 {
65 }
67
68 static inline bool classof(const TCTEdge*)
69 {
70 return true;
71 }
72 static inline bool classof(const GenericTCTEdgeTy *edge)
73 {
74 return edge->getEdgeKind() == TCTEdge::ThreadCreateEdge;
75 }
78
79};
80
81/*
82 * Each node represents a context-sensitive thread
83 */
86{
87
88public:
94
95 void dump()
96 {
97 SVFUtil::outs() << "---\ntid: " << this->getId() << " inloop:" << ctx.isInloop() << " incycle:" << ctx.isIncycle() << " multiforked:"<< isMultiforked();
98 }
99
101 inline const CxtThread& getCxtThread() const
102 {
103 return ctx;
104 }
105
107
108 inline bool isInloop() const
109 {
110 return ctx.isInloop();
111 }
112 inline bool isIncycle() const
113 {
114 return ctx.isIncycle();
115 }
116 inline void setMultiforked(bool value)
117 {
118 multiforked = value;
119 }
120 inline bool isMultiforked() const
121 {
122 return multiforked;
123 }
125
127
128 static inline bool classof(const TCTNode *)
129 {
130 return true;
131 }
132
133 static inline bool classof(const GenericTCTNodeTy *node)
134 {
135 return node->getNodeKind() == TCTNodeKd;
136 }
137 static inline bool classof(const SVFValue*node)
138 {
139 return node->getNodeKind() == TCTNodeKd;
140 }
142
143
144private:
147};
148
154{
155
156public:
159 typedef ThreadCreateEdgeSet::iterator TCTNodeIter;
161 typedef std::vector<const ICFGNode*> InstVec;
171
174 {
175 tcg = SVFUtil::cast<ThreadCallGraph>(pta->getCallGraph());
177 //tcg->updateJoinEdge(pta);
179 tcgSCC->find();
180 build();
181 }
182
184 virtual ~TCT()
185 {
186 destroy();
187 }
188
191 {
192 return tcg;
193 }
195 inline PointerAnalysis* getPTA() const
196 {
197 return pta;
198 }
200 inline TCTNode* getTCTNode(NodeID id) const
201 {
202 return getGNode(id);
203 }
205 TCTEdge* hasGraphEdge(TCTNode* src, TCTNode* dst, TCTEdge::CEDGEK kind) const;
208
210
211 inline ThreadCreateEdgeSet::const_iterator getChildrenBegin(const TCTNode* node) const
212 {
213 return node->OutEdgeBegin();
214 }
215 inline ThreadCreateEdgeSet::const_iterator getChildrenEnd(const TCTNode* node) const
216 {
217 return node->OutEdgeEnd();
218 }
219 inline ThreadCreateEdgeSet::const_iterator getParentsBegin(const TCTNode* node) const
220 {
221 return node->InEdgeBegin();
222 }
223 inline ThreadCreateEdgeSet::const_iterator getParentsEnd(const TCTNode* node) const
224 {
225 return node->InEdgeEnd();
226 }
228
230 inline const FunSet& getMakredProcs() const
231 {
232 return candidateFuncSet;
233 }
234
236 inline const FunSet& getEntryProcs() const
237 {
238 return entryFuncSet;
239 }
240
242
243 inline u32_t getTCTNodeNum() const
244 {
245 return TCTNodeNum;
246 }
247 inline u32_t getTCTEdgeNum() const
248 {
249 return TCTEdgeNum;
250 }
251 inline u32_t getMaxCxtSize() const
252 {
253 return MaxCxtSize;
254 }
256
258 inline bool isExtCall(const ICFGNode* inst)
259 {
260 if(const CallICFGNode* call = SVFUtil::dyn_cast<CallICFGNode>(inst))
261 return SVFUtil::isExtCall(call);
262 return false;
263 }
265 inline bool isCallSite(const ICFGNode* inst)
266 {
267 return SVFUtil::isa<CallICFGNode>(inst);
268 }
269
271
272 inline bool hasTCTNode(const CxtThread& ct) const
273 {
274 return ctpToNodeMap.find(ct)!=ctpToNodeMap.end();
275 }
276 inline TCTNode* getTCTNode(const CxtThread& ct) const
277 {
278 CxtThreadToNodeMap::const_iterator it = ctpToNodeMap.find(ct);
279 assert(it!=ctpToNodeMap.end() && "TCT node not found??");
280 return it->second;
281 }
283
286 {
287 for(CallGraph::FunctionSet::const_iterator cit = callees.begin(),
288 ecit = callees.end(); cit!=ecit; cit++)
289 {
290 if(candidateFuncSet.find((*cit))!=candidateFuncSet.end())
291 return true;
292 }
293 return false;
294 }
295 inline bool isCandidateFun(const FunObjVar* fun) const
296 {
297 return candidateFuncSet.find(fun)!=candidateFuncSet.end();
298 }
300 inline bool inSameCallGraphSCC(const CallGraphNode* src,const CallGraphNode* dst)
301 {
302 return (tcgSCC->repNode(src->getId()) == tcgSCC->repNode(dst->getId()));
303 }
304
306
307
308 inline bool hasParentThread(NodeID tid) const
309 {
310 const TCTNode* node = getTCTNode(tid);
311 return node->getInEdges().size()==1;
312 }
314 inline NodeID getParentThread(NodeID tid) const
315 {
316 const TCTNode* node = getTCTNode(tid);
317 assert(node->getInEdges().size()<=1 && "should have at most one parent thread");
318 assert(node->getInEdges().size()==1 && "does not have a parent thread");
319 const TCTEdge* edge = *(node->getInEdges().begin());
320 return edge->getSrcID();
321 }
324 {
325 NodeBS tds;
326 if(hasParentThread(tid) == false)
327 return tds;
328
329 FIFOWorkList<NodeID> worklist;
330 worklist.push(getParentThread(tid));
331
332 while(!worklist.empty())
333 {
334 NodeID t = worklist.pop();
335 if(tds.test_and_set(t))
336 {
337 if(hasParentThread(t))
338 worklist.push(getParentThread(t));
339 }
340 }
341 return tds;
342 }
344 inline const NodeBS getSiblingThread(NodeID tid) const
345 {
346 NodeBS tds;
347 if(hasParentThread(tid) == false)
348 return tds;
349
350 const TCTNode* node = getTCTNode(getParentThread(tid));
351 for(ThreadCreateEdgeSet::const_iterator it = getChildrenBegin(node), eit = getChildrenEnd(node); it!=eit; ++it)
352 {
353 NodeID child = (*it)->getDstNode()->getId();
354 if(child!=tid)
355 tds.set(child);
356 }
357
358 return tds;
359 }
361
364 {
365 CxtThreadToForkCxt::const_iterator it = ctToForkCxtMap.find(ct);
366 assert(it!=ctToForkCxtMap.end() && "Cxt Thread not found!!");
367 return it->second;
368 }
369
372 {
373 CxtThreadToFun::const_iterator it = ctToRoutineFunMap.find(ct);
374 assert(it!=ctToRoutineFunMap.end() && "Cxt Thread not found!!");
375 return it->second;
376 }
377
380 {
381 assert(tcg->getThreadAPI()->isTDJoin(join) && "not a join site");
382 InstToLoopMap::iterator it = joinSiteToLoopMap.find(join);
383 assert(it!=joinSiteToLoopMap.end() && "loop not found");
384 return it->second;
385 }
386
387 inline bool hasJoinLoop(const CallICFGNode* join) const
388 {
389 assert(tcg->getThreadAPI()->isTDJoin(join) && "not a join site");
390 InstToLoopMap::const_iterator it = joinSiteToLoopMap.find(join);
391 return it!=joinSiteToLoopMap.end();
392 }
393
394 bool hasLoop(const SVFBasicBlock* bb) const
395 {
396 const FunObjVar* fun = bb->getFunction();
397 return fun->hasLoopInfo(bb);
398 }
399 bool hasLoop(const ICFGNode* inst) const
400 {
401 return hasLoop(inst->getBB());
402 }
404 bool isJoinMustExecutedInLoop(const LoopBBs& lp,const ICFGNode* join);
406 const LoopBBs& getLoop(const ICFGNode* inst);
408 const LoopBBs& getLoop(const SVFBasicBlock* bb);
409
411 void pushCxt(CallStrCxt& cxt, const CallICFGNode* call, const FunObjVar* callee);
413 bool matchCxt(CallStrCxt& cxt, const CallICFGNode* call, const FunObjVar* callee);
414
415 inline void pushCxt(CallStrCxt& cxt, CallSiteID csId)
416 {
417 cxt.push_back(csId);
418 if (cxt.size() > MaxCxtSize)
419 MaxCxtSize = cxt.size();
420 }
422 inline bool isJoinSiteInRecursion(const CallICFGNode* join) const
423 {
424 assert(tcg->getThreadAPI()->isTDJoin(join) && "not a join site");
425 return inRecurJoinSites.find(join)!=inRecurJoinSites.end();
426 }
428 void dumpCxt(CallStrCxt& cxt);
429
431 void dump(const std::string& filename);
432
434 void print() const;
435
436private:
442
445 {
446 assert(ctpToNodeMap.find(ct)==ctpToNodeMap.end() && "Already has this node!!");
447 NodeID id = TCTNodeNum;
448 TCTNode* node = new TCTNode(id, ct);
449 addGNode(id, node);
450 TCTNodeNum++;
451 ctpToNodeMap[ct] = node;
452 return node;
453 }
455 inline bool addTCTEdge(TCTNode* src, TCTNode* dst)
456 {
458 {
460 dst->addIncomingEdge(edge);
461 src->addOutgoingEdge(edge);
462 TCTEdgeNum++;
463 return true;
464 }
465 return false;
466 }
467
469 void build();
470
472
473 void markRelProcs();
474 void markRelProcs(const FunObjVar* fun);
476
479
483
485
486
491 bool isLoopExitOfJoinLoop(const SVFBasicBlock* bb);
493
495
496
497 bool isInLoopInstruction(const ICFGNode* inst);
499 bool isInRecursion(const ICFGNode* inst) const;
501
504
506
508 {
509 CxtThread ct(cxt,fork);
510 CxtThreadToNodeMap::const_iterator it = ctpToNodeMap.find(ct);
511 if(it!=ctpToNodeMap.end())
512 {
513 return it->second;
514 }
515
518
520 return addTCTNode(ct);
521 }
523
526 {
528 if(ct.getThread() != nullptr)
529 {
530 const ICFGNode* svfInst = ct.getThread();
531 ct.setInloop(isInLoopInstruction(svfInst));
532 ct.setIncycle(isInRecursion(svfInst));
533 }
535 else
536 {
537 ct.setInloop(false);
538 ct.setIncycle(false);
539 }
540 }
541
543 void addCxtOfCxtThread(const CallStrCxt& cxt, const CxtThread& ct)
544 {
545 ctToForkCxtMap[ct] = cxt;
546 }
549 {
550 ctToRoutineFunMap[ct] = fun;
551 }
552
554
556 {
557 if(isVisitedCTPs(ctp)==false)
558 {
559 visitedCTPs.insert(ctp);
560 return ctpList.push(ctp);
561 }
562 return false;
563 }
565 {
567 return ctp;
568 }
569 inline bool isVisitedCTPs(const CxtThreadProc& ctp) const
570 {
571 return visitedCTPs.find(ctp)!=visitedCTPs.end();
572 }
574
575 inline void destroy()
576 {
577 if(tcgSCC)
578 delete tcgSCC;
579 tcgSCC=nullptr;
580 }
581
592};
593
594} // End namespace SVF
595
596namespace SVF
597{
598/* !
599 * GenericGraphTraits specializations for constraint graph so that they can be treated as
600 * graphs by the generic graph algorithms.
601 * Provide graph traits for traversing from a constraint node using standard graph traversals.
602 */
603template<> struct GenericGraphTraits<SVF::TCTNode*> : public GenericGraphTraits<SVF::GenericNode<SVF::TCTNode,SVF::TCTEdge>* >
604{
605};
606
608template<>
609struct GenericGraphTraits<Inverse<SVF::TCTNode *> > : public GenericGraphTraits<Inverse<SVF::GenericNode<SVF::TCTNode,SVF::TCTEdge>* > >
610{
611};
612
613template<> struct GenericGraphTraits<SVF::TCT*> : public GenericGraphTraits<SVF::GenericGraph<SVF::TCTNode,SVF::TCTEdge>* >
614{
616};
617
618} // End namespace llvm
619
620#endif /* TCTNodeDetector_H_ */
cJSON * p
Definition cJSON.cpp:2559
#define false
Definition cJSON.cpp:70
cJSON * child
Definition cJSON.cpp:2723
Set< const FunObjVar * > FunctionSet
Definition CallGraph.h:244
bool isInloop() const
Definition CxtStmt.h:264
bool isIncycle() const
Definition CxtStmt.h:272
bool push(const Data &data)
Definition WorkList.h:165
bool empty() const
Definition WorkList.h:146
bool hasLoopInfo(const SVFBasicBlock *bb) const
NodeID getSrcID() const
get methods of the components
void addGNode(NodeID id, NodeType *node)
Add a Node.
NodeType * getGNode(NodeID id) const
Get a node.
OrderedSet< EdgeType *, typename EdgeType::equalGEdge > GEdgeSetTy
Edge kind.
iterator OutEdgeEnd()
const GEdgeSetTy & getInEdges() const
bool addIncomingEdge(EdgeType *inEdge)
Add incoming and outgoing edges.
iterator OutEdgeBegin()
iterators
iterator InEdgeBegin()
bool addOutgoingEdge(EdgeType *outEdge)
iterator InEdgeEnd()
virtual const SVFBasicBlock * getBB() const
Return the basic block of this ICFGNode.
Definition ICFGNode.h:82
CallGraph * getCallGraph() const
Return call graph.
CallGraphSCC * getCallGraphSCC() const
Return call graph SCC.
const FunObjVar * getFunction() const
NodeID getId() const
Get ID.
Definition SVFValue.h:158
GNodeK getNodeKind() const
Get node kind.
Definition SVFValue.h:164
static bool classof(const GenericTCTEdgeTy *edge)
Definition TCT.h:72
@ ThreadCreateEdge
Definition TCT.h:55
GenericNode< TCTNode, TCTEdge >::GEdgeSetTy ThreadCreateEdgeSet
Definition TCT.h:77
TCTEdge(TCTNode *s, TCTNode *d, CEDGEK kind)
Constructor.
Definition TCT.h:58
static bool classof(const TCTEdge *)
Classof.
Definition TCT.h:68
virtual ~TCTEdge()
Destructor.
Definition TCT.h:63
const CxtThread & getCxtThread() const
Get CxtThread.
Definition TCT.h:101
void setMultiforked(bool value)
Definition TCT.h:116
bool multiforked
Definition TCT.h:146
bool isIncycle() const
Definition TCT.h:112
bool isInloop() const
inloop, incycle attributes
Definition TCT.h:108
void dump()
Definition TCT.h:95
bool isMultiforked() const
Definition TCT.h:120
const CxtThread ctx
Definition TCT.h:145
static bool classof(const TCTNode *)
Methods for support type inquiry through isa, cast, and dyn_cast:
Definition TCT.h:128
static bool classof(const SVFValue *node)
Definition TCT.h:137
static bool classof(const GenericTCTNodeTy *node)
Definition TCT.h:133
TCTNode(NodeID i, const CxtThread &cctx)
Constructor.
Definition TCT.h:90
bool pushToCTPWorkList(const CxtThreadProc &ctp)
WorkList helper functions.
Definition TCT.h:555
const FunSet & getMakredProcs() const
Get marked candidate functions.
Definition TCT.h:230
bool isInRecursion(const ICFGNode *inst) const
Whether an instruction is in a recursion.
Definition TCT.cpp:91
TCTNode * getTCTNode(NodeID id) const
Get TCT node.
Definition TCT.h:200
Set< CxtThreadProc > CxtThreadProcSet
Definition TCT.h:169
CxtThreadToNodeMap ctpToNodeMap
Record all visited ctps.
Definition TCT.h:587
bool isCandidateFun(const FunObjVar *fun) const
Definition TCT.h:295
Set< const ICFGNode * > InstSet
Definition TCT.h:162
void setMultiForkedAttrs(CxtThread &ct)
Set multi-forked thread attributes.
Definition TCT.h:525
FunSet entryFuncSet
Definition TCT.h:582
bool isJoinSiteInRecursion(const CallICFGNode *join) const
Whether a join site is in recursion.
Definition TCT.h:422
FIFOWorkList< CxtThreadProc > CxtThreadProcVec
Definition TCT.h:168
void collectLoopInfoForJoin()
Handle join site in loop.
Definition TCT.cpp:315
void addCxtOfCxtThread(const CallStrCxt &cxt, const CxtThread &ct)
Add context for a thread at its spawning site (fork site)
Definition TCT.h:543
bool isCallSite(const ICFGNode *inst)
Whether it is a callsite.
Definition TCT.h:265
ThreadCallGraphSCC * tcgSCC
Procedures we care about during call graph traversing when creating TCT.
Definition TCT.h:584
void collectEntryFunInCallGraph()
Get entry functions that are neither called by other functions nor extern functions.
Definition TCT.cpp:187
Map< CxtThread, CallStrCxt > CxtThreadToForkCxt
Definition TCT.h:165
CxtThreadToFun ctToRoutineFunMap
Map a CxtThread to the context at its spawning site (fork site).
Definition TCT.h:589
PointerAnalysis * getPTA() const
Get PTA.
Definition TCT.h:195
CxtThreadProcSet visitedCTPs
CxtThreadProc List.
Definition TCT.h:586
bool hasJoinLoop(const CallICFGNode *join) const
Definition TCT.h:387
u32_t getMaxCxtSize() const
Definition TCT.h:251
Set< const CallGraphNode * > PTACGNodeSet
Definition TCT.h:163
ThreadCreateEdgeSet::const_iterator getChildrenBegin(const TCTNode *node) const
Get children and parent nodes.
Definition TCT.h:211
NodeID getParentThread(NodeID tid) const
Get parent thread.
Definition TCT.h:314
u32_t TCTNodeNum
Definition TCT.h:439
Map< CxtThread, const FunObjVar * > CxtThreadToFun
Definition TCT.h:166
ThreadCallGraph * getThreadCallGraph() const
Get TCG.
Definition TCT.h:190
bool hasLoop(const ICFGNode *inst) const
Definition TCT.h:399
TCTNode * getOrCreateTCTNode(const CallStrCxt &cxt, const ICFGNode *fork, const CallStrCxt &oldCxt, const FunObjVar *routine)
Get or create a tct node based on CxtThread.
Definition TCT.h:507
InstToLoopMap joinSiteToLoopMap
Map a CxtThread to its start routine function.
Definition TCT.h:590
bool hasTCTNode(const CxtThread &ct) const
Find/Get TCT node.
Definition TCT.h:272
ThreadCreateEdgeSet::const_iterator getParentsEnd(const TCTNode *node) const
Definition TCT.h:223
const NodeBS getSiblingThread(NodeID tid) const
Get sibling threads.
Definition TCT.h:344
bool hasParentThread(NodeID tid) const
Get parent and sibling threads.
Definition TCT.h:308
bool isVisitedCTPs(const CxtThreadProc &ctp) const
Definition TCT.h:569
u32_t getTCTEdgeNum() const
Definition TCT.h:247
ThreadCreateEdgeSet::iterator TCTNodeIter
Definition TCT.h:159
void dump(const std::string &filename)
Dump the graph.
Definition TCT.cpp:514
FunSet candidateFuncSet
Procedures that are neither called by other functions nor extern functions.
Definition TCT.h:583
void addStartRoutineOfCxtThread(const FunObjVar *fun, const CxtThread &ct)
Add start routine function of a cxt thread.
Definition TCT.h:548
bool inSameCallGraphSCC(const CallGraphNode *src, const CallGraphNode *dst)
Whether two functions in the same callgraph scc.
Definition TCT.h:300
bool hasLoop(const SVFBasicBlock *bb) const
Definition TCT.h:394
TCTEdge * getGraphEdge(TCTNode *src, TCTNode *dst, TCTEdge::CEDGEK kind)
Get call graph edge via nodes.
Definition TCT.cpp:552
TCTEdge::ThreadCreateEdgeSet ThreadCreateEdgeSet
Definition TCT.h:158
TCTNode * addTCTNode(const CxtThread &ct)
Add TCT node.
Definition TCT.h:444
bool isCandidateFun(const CallGraph::FunctionSet &callees) const
Whether it is a candidate function for indirect call.
Definition TCT.h:285
CxtThreadProcVec ctpList
Thread call graph SCC.
Definition TCT.h:585
std::vector< const ICFGNode * > InstVec
Definition TCT.h:161
SCCDetection< CallGraph * > ThreadCallGraphSCC
Definition TCT.h:170
u32_t TCTEdgeNum
Definition TCT.h:440
bool isInLoopInstruction(const ICFGNode *inst)
Multi-forked threads.
Definition TCT.cpp:46
bool isJoinMustExecutedInLoop(const LoopBBs &lp, const ICFGNode *join)
Return true if a join instruction must be executed inside a loop.
Definition TCT.cpp:291
void markRelProcs()
Mark relevant procedures that are backward reachable from any fork/join site.
Definition TCT.cpp:133
const CallStrCxt & getCxtOfCxtThread(const CxtThread &ct) const
get the context of a thread at its spawning site (fork site)
Definition TCT.h:363
Set< const ICFGNode * > inRecurJoinSites
Fork or Join sites in recursions.
Definition TCT.h:591
TCT(PointerAnalysis *p)
Constructor.
Definition TCT.h:173
LoopBBs & getJoinLoop(const CallICFGNode *join)
Get loop for join site.
Definition TCT.h:379
PointerAnalysis * pta
Definition TCT.h:438
TCTNode * getTCTNode(const CxtThread &ct) const
Definition TCT.h:276
void destroy()
Clean up memory.
Definition TCT.h:575
void dumpCxt(CallStrCxt &cxt)
Dump calling context.
Definition TCT.cpp:496
bool addTCTEdge(TCTNode *src, TCTNode *dst)
Add TCT edge.
Definition TCT.h:455
void pushCxt(CallStrCxt &cxt, CallSiteID csId)
Definition TCT.h:415
u32_t MaxCxtSize
Definition TCT.h:441
const FunSet & getEntryProcs() const
Get marked candidate functions.
Definition TCT.h:236
bool isLoopHeaderOfJoinLoop(const SVFBasicBlock *bb)
Whether a given bb is a loop head of a inloop join site.
Definition TCT.cpp:340
void build()
Build TCT.
Definition TCT.cpp:384
void print() const
Print TCT information.
Definition TCT.cpp:523
void handleCallRelation(CxtThreadProc &ctp, const CallGraphEdge *cgEdge, const CallICFGNode *call)
Handle call relations.
Definition TCT.cpp:245
bool matchCxt(CallStrCxt &cxt, const CallICFGNode *call, const FunObjVar *callee)
Match context.
Definition TCT.cpp:466
ThreadCallGraph * tcg
Definition TCT.h:437
Map< const ICFGNode *, LoopBBs > InstToLoopMap
Definition TCT.h:167
void collectMultiForkedThreads()
Definition TCT.cpp:207
Set< const FunObjVar * > FunSet
Definition TCT.h:160
CxtThreadProc popFromCTPWorkList()
Definition TCT.h:564
TCTEdge * hasGraphEdge(TCTNode *src, TCTNode *dst, TCTEdge::CEDGEK kind) const
Whether we have already created this call graph edge.
Definition TCT.cpp:535
bool isLoopExitOfJoinLoop(const SVFBasicBlock *bb)
Whether a given bb is an exit of a inloop join site.
Definition TCT.cpp:354
CxtThreadToForkCxt ctToForkCxtMap
Map a ctp to its graph node.
Definition TCT.h:588
SVFLoopAndDomInfo::LoopBBs LoopBBs
Definition TCT.h:157
const NodeBS getAncestorThread(NodeID tid) const
Get all ancestor threads.
Definition TCT.h:323
bool isExtCall(const ICFGNode *inst)
Whether it is calling an external function.
Definition TCT.h:258
virtual ~TCT()
Destructor.
Definition TCT.h:184
u32_t getTCTNodeNum() const
Get Statistics.
Definition TCT.h:243
const LoopBBs & getLoop(const ICFGNode *inst)
Get loop for an instruction.
ThreadCreateEdgeSet::const_iterator getChildrenEnd(const TCTNode *node) const
Definition TCT.h:215
ThreadCreateEdgeSet::const_iterator getParentsBegin(const TCTNode *node) const
Definition TCT.h:219
void pushCxt(CallStrCxt &cxt, const CallICFGNode *call, const FunObjVar *callee)
Push calling context.
Definition TCT.cpp:445
Map< CxtThread, TCTNode * > CxtThreadToNodeMap
Definition TCT.h:164
const FunObjVar * getStartRoutineOfCxtThread(const CxtThread &ct) const
get the start routine function of a thread
Definition TCT.h:371
bool isTDJoin(const CallICFGNode *inst) const
Return true if this call wait for a worker thread.
ThreadAPI * getThreadAPI() const
Thread API.
void updateCallGraph(PointerAnalysis *pta)
Update call graph using pointer results.
bool isExtCall(const FunObjVar *fun)
Definition SVFUtil.cpp:437
std::ostream & outs()
Overwrite llvm::outs()
Definition SVFUtil.h:52
for isBitcode
Definition BasicTypes.h:68
unsigned CallSiteID
Definition GeneralType.h:58
GenericEdge< TCTNode > GenericTCTEdgeTy
Definition TCT.h:49
GenericNode< TCTNode, TCTEdge > GenericTCTNodeTy
Definition TCT.h:84
u32_t NodeID
Definition GeneralType.h:56
GenericGraph< TCTNode, TCTEdge > GenericThreadCreateTreeTy
Definition TCT.h:152
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74
std::vector< u32_t > CallStrCxt
unsigned u32_t
Definition GeneralType.h:47