Static Value-Flow Analysis
Loading...
Searching...
No Matches
ICFGNode.h
Go to the documentation of this file.
1//===- ICFGNode.h -- ICFG node------------------------------------------------//
2//
3// SVF: Static Value-Flow Analysis
4//
5// Copyright (C) <2013-2018> <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 * ICFGNode.h
25 *
26 * Created on: Sep 11, 2018
27 * Author: Yulei
28 */
29
30#ifndef ICFGNODE_H_
31#define ICFGNODE_H_
32
33#include "Util/SVFUtil.h"
34#include "Graphs/GenericGraph.h"
35#include "Graphs/ICFGEdge.h"
36
37namespace SVF
38{
39
40class ICFGNode;
41class RetICFGNode;
42class CallPE;
43class RetPE;
44class SVFStmt;
45class SVFVar;
46class VFGNode;
47
53
55{
56 friend class SVFIRWriter;
57 friend class SVFIRReader;
58
59public:
60
61 typedef ICFGEdge::ICFGEdgeSetTy::iterator iterator;
62 typedef ICFGEdge::ICFGEdgeSetTy::const_iterator const_iterator;
65 typedef std::list<const VFGNode*> VFGNodeList;
66 typedef std::list<const SVFStmt*> SVFStmtList;
68
69public:
74
76 virtual const FunObjVar* getFun() const
77 {
78 return fun;
79 }
80
82 virtual const SVFBasicBlock* getBB() const
83 {
84 return bb;
85 }
86
87
89
90 friend OutStream &operator<<(OutStream &o, const ICFGNode &node)
91 {
92 o << node.toString();
93 return o;
94 }
96
99 inline void addVFGNode(const VFGNode *vfgNode)
100 {
101 VFGNodes.push_back(vfgNode);
102 }
103
104 inline const VFGNodeList& getVFGNodes() const
105 {
106 return VFGNodes;
107 }
109
112 inline void addSVFStmt(const SVFStmt *edge)
113 {
114 pagEdges.push_back(edge);
115 }
116
117 inline const SVFStmtList& getSVFStmts() const
118 {
119 return pagEdges;
120 }
122
123 virtual const std::string toString() const;
124
125
126
127 void dump() const;
128
129
130 static inline bool classof(const ICFGNode *)
131 {
132 return true;
133 }
134
135 static inline bool classof(const GenericICFGNodeTy* node)
136 {
137 return isICFGNodeKinds(node->getNodeKind());
138 }
139
140 static inline bool classof(const SVFValue* node)
141 {
142 return isICFGNodeKinds(node->getNodeKind());
143 }
144
145
146
147protected:
150 VFGNodeList VFGNodes; //< a list of VFGNodes
151 SVFStmtList pagEdges; //< a list of PAGEdges
152
153};
154
159{
160
161public:
165
167
168 static inline bool classof(const GlobalICFGNode *)
169 {
170 return true;
171 }
172
173 static inline bool classof(const ICFGNode *node)
174 {
175 return node->getNodeKind() == GlobalBlock;
176 }
177
178 static inline bool classof(const GenericICFGNodeTy *node)
179 {
180 return node->getNodeKind() == GlobalBlock;
181 }
183
184 const std::string toString() const override;
185
186 const std::string getSourceLoc() const override
187 {
188 return "Global ICFGNode";
189 }
190};
191
196{
197 friend class SVFIRWriter;
198 friend class SVFIRReader;
199private:
200 bool isRet;
201
204
205public:
207 {
208 fun = b->getFunction();
209 bb = b;
210 }
211
213
214 static inline bool classof(const IntraICFGNode *)
215 {
216 return true;
217 }
218
219 static inline bool classof(const ICFGNode *node)
220 {
221 return node->getNodeKind() == IntraBlock;
222 }
223
224 static inline bool classof(const GenericICFGNodeTy *node)
225 {
226 return node->getNodeKind() == IntraBlock;
227 }
229
230 const std::string toString() const override;
231
232 inline bool isRetInst() const
233 {
234 return isRet;
235 }
236};
237
239{
240
241public:
246
248
249 static inline bool classof(const InterICFGNode *)
250 {
251 return true;
252 }
253
254 static inline bool classof(const ICFGNode* node)
255 {
256 return isInterICFGNodeKind(node->getNodeKind());
257 }
258
259 static inline bool classof(const GenericICFGNodeTy* node)
260 {
261 return isInterICFGNodeKind(node->getNodeKind());
262 }
263
264 static inline bool classof(const SVFValue* node)
265 {
266 return isInterICFGNodeKind(node->getNodeKind());
267 }
268
270};
271
272
273
274
279{
280 friend class SVFIRWriter;
281 friend class SVFIRReader;
282
283public:
284 typedef std::vector<const SVFVar *> FormalParmNodeVec;
285private:
287
290
291public:
293
295 inline const FunObjVar* getFun() const override
296 {
297 return fun;
298 }
299
301 inline const FormalParmNodeVec &getFormalParms() const
302 {
303 return FPNodes;
304 }
305
307 inline void addFormalParms(const SVFVar *fp)
308 {
309 FPNodes.push_back(fp);
310 }
311
313
314 static inline bool classof(const FunEntryICFGNode *)
315 {
316 return true;
317 }
318
319 static inline bool classof(const InterICFGNode *node)
320 {
321 return node->getNodeKind() == FunEntryBlock;
322 }
323
324 static inline bool classof(const ICFGNode *node)
325 {
326 return node->getNodeKind() == FunEntryBlock;
327 }
328
329 static inline bool classof(const GenericICFGNodeTy *node)
330 {
331 return node->getNodeKind() == FunEntryBlock;
332 }
333
334 static inline bool classof(const SVFValue*node)
335 {
336 return node->getNodeKind() == FunEntryBlock;
337 }
339
340 const std::string toString() const override;
341
342 const std::string getSourceLoc() const override;
343};
344
349{
350 friend class SVFIRWriter;
351 friend class SVFIRReader;
352
353private:
355
358
359public:
360 FunExitICFGNode(NodeID id, const FunObjVar* f);
361
363 inline const FunObjVar* getFun() const override
364 {
365 return fun;
366 }
367
369 inline const SVFVar *getFormalRet() const
370 {
371 return formalRet;
372 }
373
375 inline void addFormalRet(const SVFVar *fr)
376 {
377 formalRet = fr;
378 }
379
381
382 static inline bool classof(const FunEntryICFGNode *)
383 {
384 return true;
385 }
386
387 static inline bool classof(const ICFGNode *node)
388 {
389 return node->getNodeKind() == FunExitBlock;
390 }
391
392 static inline bool classof(const InterICFGNode *node)
393 {
394 return node->getNodeKind() == FunExitBlock;
395 }
396
397 static inline bool classof(const GenericICFGNodeTy *node)
398 {
399 return node->getNodeKind() == FunExitBlock;
400 }
401
402 static inline bool classof(const SVFValue*node)
403 {
404 return node->getNodeKind() == FunExitBlock;
405 }
407
408 const std::string toString() const override;
409
410 const std::string getSourceLoc() const override;
411};
412
417{
418 friend class SVFIRWriter;
419 friend class SVFIRReader;
420
421public:
422 typedef std::vector<const ValVar *> ActualParmNodeVec;
423
424protected:
428 bool isvararg;
432 std::string funNameOfVcall;
433
436
437public:
439 const FunObjVar* cf, bool iv, bool ivc, s32_t vfi,
440 const std::string& fnv)
444 {
445 fun = b->getFunction();
446 bb = b;
447 type = ty;
448 }
449
451 inline const RetICFGNode* getRetICFGNode() const
452 {
453 assert(ret && "RetICFGNode not set?");
454 return ret;
455 }
456
458 inline void setRetICFGNode(const RetICFGNode* r)
459 {
460 ret = r;
461 }
462
464 inline const FunObjVar* getCaller() const
465 {
466 return getFun();
467 }
468
470 inline const SVFBasicBlock* getParent() const
471 {
472 return getBB();
473 }
474
476 inline bool isIndirectCall() const
477 {
478 return nullptr == calledFunc;
479 }
480
482 inline const ActualParmNodeVec &getActualParms() const
483 {
484 return APNodes;
485 }
486
488 inline void addActualParms(const ValVar *ap)
489 {
490 APNodes.push_back(ap);
491 }
493
494 inline const ValVar* getArgument(u32_t ArgNo) const
495 {
496 return getActualParms()[ArgNo];
497 }
498
499 inline u32_t arg_size() const
500 {
501 return APNodes.size();
502 }
503 inline bool arg_empty() const
504 {
505 return APNodes.empty();
506 }
507
509 {
510 return arg_size();
511 }
512 inline const FunObjVar* getCalledFunction() const
513 {
514 return calledFunc;
515 }
516
517 inline bool isVarArg() const
518 {
519 return isvararg;
520 }
521 inline bool isVirtualCall() const
522 {
523 return isVirCallInst;
524 }
525
526 inline void setVtablePtr(SVFVar* v)
527 {
528 vtabPtr = v;
529 }
530
531 inline const SVFVar* getVtablePtr() const
532 {
533 assert(isVirtualCall() && "not a virtual call?");
534 return vtabPtr;
535 }
536
537
539 {
540 assert(isVirtualCall() && "not a virtual call?");
541 assert(virtualFunIdx >=0 && "virtual function idx is less than 0? not set yet?");
542 return virtualFunIdx;
543 }
544
545 inline const std::string& getFunNameOfVirtualCall() const
546 {
547 assert(isVirtualCall() && "not a virtual call?");
548 return funNameOfVcall;
549 }
551
553
554 static inline bool classof(const CallICFGNode *)
555 {
556 return true;
557 }
558
559 static inline bool classof(const ICFGNode *node)
560 {
561 return node->getNodeKind() == FunCallBlock;
562 }
563
564 static inline bool classof(const InterICFGNode *node)
565 {
566 return node->getNodeKind() == FunCallBlock;
567 }
568
569 static inline bool classof(const GenericICFGNodeTy *node)
570 {
571 return node->getNodeKind() == FunCallBlock;
572 }
573
574 static inline bool classof(const SVFValue*node)
575 {
576 return node->getNodeKind() == FunCallBlock;
577 }
579
580 const std::string toString() const override;
581
582 const std::string getSourceLoc() const override
583 {
584 return "CallICFGNode: " + ICFGNode::getSourceLoc();
585 }
586};
587
588
593{
594 friend class SVFIRWriter;
595 friend class SVFIRReader;
596
597private:
600
606
607public:
610 {
611 fun = cb->getFun();
612 bb = cb->getBB();
613 type = cb->getType();
614 }
615
616 inline const CallICFGNode* getCallICFGNode() const
617 {
618 return callBlockNode;
619 }
621 inline const SVFVar *getActualRet() const
622 {
623 return actualRet;
624 }
625
627 inline void addActualRet(const SVFVar *ar)
628 {
629 actualRet = ar;
630 }
631
633
634 static inline bool classof(const RetICFGNode *)
635 {
636 return true;
637 }
638
639 static inline bool classof(const InterICFGNode *node)
640 {
641 return node->getNodeKind() == FunRetBlock;
642 }
643
644 static inline bool classof(const ICFGNode *node)
645 {
646 return node->getNodeKind() == FunRetBlock;
647 }
648
649 static inline bool classof(const GenericICFGNodeTy *node)
650 {
651 return node->getNodeKind() == FunRetBlock;
652 }
653 static inline bool classof(const SVFValue*node)
654 {
655 return node->getNodeKind() == FunRetBlock;
656 }
658
659 const std::string toString() const override;
660
661 const std::string getSourceLoc() const override
662 {
663 return "RetICFGNode: " + ICFGNode::getSourceLoc();
664 }
665};
666
667} // End namespace SVF
668
669#endif /* ICFGNode_H_ */
#define false
Definition cJSON.cpp:70
const cJSON *const b
Definition cJSON.h:255
const std::string toString() const override
Definition ICFG.cpp:139
bool isVirCallInst
is variable argument
Definition ICFGNode.h:429
CallICFGNode(NodeID id, const SVFBasicBlock *b, const SVFType *ty, const FunObjVar *cf, bool iv, bool ivc, s32_t vfi, const std::string &fnv)
Definition ICFGNode.h:438
ActualParmNodeVec APNodes
Definition ICFGNode.h:426
const ValVar * getArgument(u32_t ArgNo) const
Parameter operations.
Definition ICFGNode.h:494
const SVFVar * getVtablePtr() const
Definition ICFGNode.h:531
std::vector< const ValVar * > ActualParmNodeVec
Definition ICFGNode.h:422
static bool classof(const GenericICFGNodeTy *node)
Definition ICFGNode.h:569
const FunObjVar * calledFunc
arguments
Definition ICFGNode.h:427
void addActualParms(const ValVar *ap)
Add actual parameters.
Definition ICFGNode.h:488
bool isVarArg() const
Definition ICFGNode.h:517
const FunObjVar * getCalledFunction() const
Definition ICFGNode.h:512
const RetICFGNode * getRetICFGNode() const
Return callsite.
Definition ICFGNode.h:451
static bool classof(const InterICFGNode *node)
Definition ICFGNode.h:564
const RetICFGNode * ret
Definition ICFGNode.h:425
const std::string getSourceLoc() const override
Definition ICFGNode.h:582
SVFVar * vtabPtr
is virtual call inst
Definition ICFGNode.h:430
u32_t getNumArgOperands() const
Definition ICFGNode.h:508
void setRetICFGNode(const RetICFGNode *r)
Return callsite.
Definition ICFGNode.h:458
friend class SVFIRReader
Definition ICFGNode.h:419
bool isIndirectCall() const
Return true if this is an indirect call.
Definition ICFGNode.h:476
bool arg_empty() const
Definition ICFGNode.h:503
s32_t virtualFunIdx
virtual table pointer
Definition ICFGNode.h:431
const ActualParmNodeVec & getActualParms() const
Return the set of actual parameters.
Definition ICFGNode.h:482
static bool classof(const SVFValue *node)
Definition ICFGNode.h:574
bool isVirtualCall() const
Definition ICFGNode.h:521
void setVtablePtr(SVFVar *v)
Definition ICFGNode.h:526
std::string funNameOfVcall
virtual function index of the virtual table(s) at a virtual call
Definition ICFGNode.h:432
const SVFBasicBlock * getParent() const
Return Basic Block.
Definition ICFGNode.h:470
bool isvararg
called function
Definition ICFGNode.h:428
s32_t getFunIdxInVtable() const
Definition ICFGNode.h:538
friend class SVFIRWriter
Definition ICFGNode.h:418
const FunObjVar * getCaller() const
Return callsite.
Definition ICFGNode.h:464
static bool classof(const ICFGNode *node)
Definition ICFGNode.h:559
u32_t arg_size() const
Definition ICFGNode.h:499
const std::string & getFunNameOfVirtualCall() const
Definition ICFGNode.h:545
CallICFGNode(NodeID id)
the function name of this virtual call
Definition ICFGNode.h:435
static bool classof(const CallICFGNode *)
Methods for support type inquiry through isa, cast, and dyn_cast:
Definition ICFGNode.h:554
std::vector< const SVFVar * > FormalParmNodeVec
Definition ICFGNode.h:284
static bool classof(const InterICFGNode *node)
Definition ICFGNode.h:319
FormalParmNodeVec FPNodes
Definition ICFGNode.h:286
static bool classof(const ICFGNode *node)
Definition ICFGNode.h:324
static bool classof(const GenericICFGNodeTy *node)
Definition ICFGNode.h:329
FunEntryICFGNode(NodeID id)
Constructor to create empty FunEntryICFGNode (for SVFIRReader/deserialization)
Definition ICFGNode.h:289
static bool classof(const SVFValue *node)
Definition ICFGNode.h:334
friend class SVFIRReader
Definition ICFGNode.h:281
const FunObjVar * getFun() const override
Return function.
Definition ICFGNode.h:295
friend class SVFIRWriter
Definition ICFGNode.h:280
static bool classof(const FunEntryICFGNode *)
Methods for support type inquiry through isa, cast, and dyn_cast:
Definition ICFGNode.h:314
const std::string toString() const override
Definition ICFG.cpp:98
const FormalParmNodeVec & getFormalParms() const
Return the set of formal parameters.
Definition ICFGNode.h:301
void addFormalParms(const SVFVar *fp)
Add formal parameters.
Definition ICFGNode.h:307
const std::string getSourceLoc() const override
Definition ICFG.cpp:112
void addFormalRet(const SVFVar *fr)
Add formal return parameter.
Definition ICFGNode.h:375
const std::string toString() const override
Definition ICFG.cpp:117
FunExitICFGNode(NodeID id)
Constructor to create empty FunExitICFGNode (for SVFIRReader/deserialization)
Definition ICFGNode.h:357
friend class SVFIRReader
Definition ICFGNode.h:351
static bool classof(const InterICFGNode *node)
Definition ICFGNode.h:392
const FunObjVar * getFun() const override
Return function.
Definition ICFGNode.h:363
const std::string getSourceLoc() const override
Definition ICFG.cpp:134
const SVFVar * getFormalRet() const
Return formal return parameter.
Definition ICFGNode.h:369
static bool classof(const FunEntryICFGNode *)
Methods for support type inquiry through isa, cast, and dyn_cast:
Definition ICFGNode.h:382
static bool classof(const GenericICFGNodeTy *node)
Definition ICFGNode.h:397
const SVFVar * formalRet
Definition ICFGNode.h:354
friend class SVFIRWriter
Definition ICFGNode.h:350
static bool classof(const ICFGNode *node)
Definition ICFGNode.h:387
static bool classof(const SVFValue *node)
Definition ICFGNode.h:402
GlobalICFGNode(NodeID id)
Definition ICFGNode.h:162
static bool classof(const GlobalICFGNode *)
Methods for support type inquiry through isa, cast, and dyn_cast:
Definition ICFGNode.h:168
static bool classof(const ICFGNode *node)
Definition ICFGNode.h:173
const std::string getSourceLoc() const override
Definition ICFGNode.h:186
const std::string toString() const override
Definition ICFG.cpp:73
static bool classof(const GenericICFGNodeTy *node)
Definition ICFGNode.h:178
friend OutStream & operator<<(OutStream &o, const ICFGNode &node)
Overloading operator << for dumping ICFG node ID.
Definition ICFGNode.h:90
const SVFBasicBlock * bb
Definition ICFGNode.h:149
SVFStmtList pagEdges
Definition ICFGNode.h:151
static bool classof(const ICFGNode *)
Definition ICFGNode.h:130
Set< const RetPE * > RetPESet
Definition ICFGNode.h:64
static bool classof(const SVFValue *node)
Definition ICFGNode.h:140
void dump() const
Definition ICFG.cpp:68
std::list< const VFGNode * > VFGNodeList
Definition ICFGNode.h:65
VFGNodeList VFGNodes
Definition ICFGNode.h:150
ICFGEdge::ICFGEdgeSetTy::iterator iterator
Definition ICFGNode.h:61
virtual const FunObjVar * getFun() const
Return the function of this ICFGNode.
Definition ICFGNode.h:76
static bool classof(const GenericICFGNodeTy *node)
Definition ICFGNode.h:135
void addSVFStmt(const SVFStmt *edge)
Definition ICFGNode.h:112
friend class SVFIRReader
Definition ICFGNode.h:57
const VFGNodeList & getVFGNodes() const
Definition ICFGNode.h:104
virtual const SVFBasicBlock * getBB() const
Return the basic block of this ICFGNode.
Definition ICFGNode.h:82
std::list< const SVFStmt * > SVFStmtList
Definition ICFGNode.h:66
const FunObjVar * fun
Definition ICFGNode.h:148
Set< const CallPE * > CallPESet
Definition ICFGNode.h:63
ICFGNode(NodeID i, GNodeK k)
Constructor.
Definition ICFGNode.h:71
ICFGEdge::ICFGEdgeSetTy::const_iterator const_iterator
Definition ICFGNode.h:62
friend class SVFIRWriter
Definition ICFGNode.h:56
GNodeK ICFGNodeK
Definition ICFGNode.h:67
virtual const std::string toString() const
Definition ICFG.cpp:60
const SVFStmtList & getSVFStmts() const
Definition ICFGNode.h:117
void addVFGNode(const VFGNode *vfgNode)
Definition ICFGNode.h:99
InterICFGNode(NodeID id, ICFGNodeK k)
Constructor.
Definition ICFGNode.h:243
static bool classof(const InterICFGNode *)
Methods for support type inquiry through isa, cast, and dyn_cast:
Definition ICFGNode.h:249
static bool classof(const GenericICFGNodeTy *node)
Definition ICFGNode.h:259
static bool classof(const SVFValue *node)
Definition ICFGNode.h:264
static bool classof(const ICFGNode *node)
Definition ICFGNode.h:254
static bool classof(const GenericICFGNodeTy *node)
Definition ICFGNode.h:224
static bool classof(const IntraICFGNode *)
Methods for support type inquiry through isa, cast, and dyn_cast:
Definition ICFGNode.h:214
IntraICFGNode(NodeID id)
Constructor to create empty IntraICFGNode (for SVFIRReader/deserialization)
Definition ICFGNode.h:203
friend class SVFIRReader
Definition ICFGNode.h:198
IntraICFGNode(NodeID id, const SVFBasicBlock *b, bool isReturn)
Definition ICFGNode.h:206
static bool classof(const ICFGNode *node)
Definition ICFGNode.h:219
const std::string toString() const override
Definition ICFG.cpp:84
friend class SVFIRWriter
Definition ICFGNode.h:197
bool isRetInst() const
Definition ICFGNode.h:232
const CallICFGNode * callBlockNode
Definition ICFGNode.h:599
static bool classof(const RetICFGNode *)
Methods for support type inquiry through isa, cast, and dyn_cast:
Definition ICFGNode.h:634
const SVFVar * getActualRet() const
Return actual return parameter.
Definition ICFGNode.h:621
RetICFGNode(NodeID id)
Constructor to create empty RetICFGNode (for SVFIRReader/deserialization)
Definition ICFGNode.h:602
static bool classof(const ICFGNode *node)
Definition ICFGNode.h:644
const std::string toString() const override
Definition ICFG.cpp:152
const std::string getSourceLoc() const override
Definition ICFGNode.h:661
friend class SVFIRReader
Definition ICFGNode.h:595
static bool classof(const GenericICFGNodeTy *node)
Definition ICFGNode.h:649
const SVFVar * actualRet
Definition ICFGNode.h:598
RetICFGNode(NodeID id, CallICFGNode *cb)
Definition ICFGNode.h:608
static bool classof(const InterICFGNode *node)
Definition ICFGNode.h:639
friend class SVFIRWriter
Definition ICFGNode.h:594
void addActualRet(const SVFVar *ar)
Add actual return parameter.
Definition ICFGNode.h:627
const CallICFGNode * getCallICFGNode() const
Definition ICFGNode.h:616
static bool classof(const SVFValue *node)
Definition ICFGNode.h:653
static bool isInterICFGNodeKind(GNodeK n)
Definition SVFValue.h:220
GNodeK getNodeKind() const
Get node kind.
Definition SVFValue.h:164
NodeID id
Node ID.
Definition SVFValue.h:203
virtual const std::string getSourceLoc() const
Definition SVFValue.h:194
static bool isICFGNodeKinds(GNodeK n)
Helper functions to check node kinds.
Definition SVFValue.h:212
const SVFType * type
SVF type.
Definition SVFValue.h:205
for isBitcode
Definition BasicTypes.h:68
u32_t NodeID
Definition GeneralType.h:56
std::ostream OutStream
Definition GeneralType.h:46
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74
signed s32_t
Definition GeneralType.h:48
unsigned u32_t
Definition GeneralType.h:47
GenericNode< ICFGNode, ICFGEdge > GenericICFGNodeTy
Definition ICFGNode.h:52