Static Value-Flow Analysis
Loading...
Searching...
No Matches
SVFVariables.h
Go to the documentation of this file.
1//===- SVFSymbols.h -- SVF Variables------------------------//
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 * SVFVariables.h
25 *
26 * Created on: Nov 11, 2013
27 * Author: Yulei Sui
28 */
29
30#ifndef INCLUDE_SVFIR_SVFVARIABLE_H_
31#define INCLUDE_SVFIR_SVFVARIABLE_H_
32
33#include "Graphs/GenericGraph.h"
34#include "SVFIR/ObjTypeInfo.h"
35#include "SVFIR/SVFStatements.h"
36
37namespace SVF
38{
39
40class SVFVar;
41/*
42 * Program variables in SVFIR (based on PAG nodes)
43 * These represent variables in the program analysis graph
44 */
47{
48 friend class SVFIRWriter;
49 friend class SVFIRReader;
50 friend class SVFIRBuilder;
51 friend class IRGraph;
52 friend class SVFIR;
53 friend class VFG;
54
55public:
65 typedef GNodeK PNODEK;
67
68protected:
72
75
76
77public:
80
82 virtual ~SVFVar() {}
83
85 virtual inline bool isPointer() const
86 {
87 assert(type && "type is null?");
88 return type->isPointerTy();
89 }
90
93 {
94 return false;
95 }
96
98 virtual bool isIsolatedNode() const;
99
101 virtual const std::string getValueName() const = 0;
102
104 virtual inline const FunObjVar* getFunction() const
105 {
106 return nullptr;
107 }
108
110
115
120
121 inline bool hasIncomingEdges(SVFStmt::PEDGEK kind) const
122 {
123 SVFStmt::KindToSVFStmtMapTy::const_iterator it = InEdgeKindToSetMap.find(kind);
124 if (it != InEdgeKindToSetMap.end())
125 return (!it->second.empty());
126 else
127 return false;
128 }
129
130 inline bool hasOutgoingEdges(SVFStmt::PEDGEK kind) const
131 {
132 SVFStmt::KindToSVFStmtMapTy::const_iterator it = OutEdgeKindToSetMap.find(kind);
133 if (it != OutEdgeKindToSetMap.end())
134 return (!it->second.empty());
135 else
136 return false;
137 }
138
140 inline SVFStmt::SVFStmtSetTy::iterator getIncomingEdgesBegin(SVFStmt::PEDGEK kind) const
141 {
142 SVFStmt::KindToSVFStmtMapTy::const_iterator it = InEdgeKindToSetMap.find(kind);
143 assert(it!=InEdgeKindToSetMap.end() && "Edge kind not found");
144 return it->second.begin();
145 }
146
147 inline SVFStmt::SVFStmtSetTy::iterator getIncomingEdgesEnd(SVFStmt::PEDGEK kind) const
148 {
149 SVFStmt::KindToSVFStmtMapTy::const_iterator it = InEdgeKindToSetMap.find(kind);
150 assert(it!=InEdgeKindToSetMap.end() && "Edge kind not found");
151 return it->second.end();
152 }
153
154 inline SVFStmt::SVFStmtSetTy::iterator getOutgoingEdgesBegin(SVFStmt::PEDGEK kind) const
155 {
156 SVFStmt::KindToSVFStmtMapTy::const_iterator it = OutEdgeKindToSetMap.find(kind);
157 assert(it!=OutEdgeKindToSetMap.end() && "Edge kind not found");
158 return it->second.begin();
159 }
160
161 inline SVFStmt::SVFStmtSetTy::iterator getOutgoingEdgesEnd(SVFStmt::PEDGEK kind) const
162 {
163 SVFStmt::KindToSVFStmtMapTy::const_iterator it = OutEdgeKindToSetMap.find(kind);
164 assert(it!=OutEdgeKindToSetMap.end() && "Edge kind not found");
165 return it->second.end();
166 }
168
170 static inline bool classof(const SVFVar *)
171 {
172 return true;
173 }
174
175 static inline bool classof(const GenericPAGNodeTy * node)
176 {
177 return isSVFVarKind(node->getNodeKind());
178 }
179
180 static inline bool classof(const SVFValue* node)
181 {
182 return isSVFVarKind(node->getNodeKind());
183 }
184
186 virtual bool ptrInUncalledFunction() const;
187
189 virtual bool isConstDataOrAggData() const
190 {
191 return false;
192 }
193
194
195private:
197
199 {
200 GEdgeKind kind = inEdge->getEdgeKind();
201 InEdgeKindToSetMap[kind].insert(inEdge);
203 }
204
206 {
207 GEdgeKind kind = outEdge->getEdgeKind();
208 OutEdgeKindToSetMap[kind].insert(outEdge);
210 }
211
213 inline bool hasIncomingVariantGepEdge() const
214 {
215 SVFStmt::KindToSVFStmtMapTy::const_iterator it = InEdgeKindToSetMap.find(SVFStmt::Gep);
216 if (it != InEdgeKindToSetMap.end())
217 {
218 for(auto gep : it->second)
219 {
220 if(SVFUtil::cast<GepStmt>(gep)->isVariantFieldGep())
221 return true;
222 }
223 }
224 return false;
225 }
226
227public:
229 virtual const std::string toString() const;
230
232 void dump() const;
233
235 friend OutStream& operator<< (OutStream &o, const SVFVar &node)
236 {
237 o << node.toString();
238 return o;
239 }
240};
241
242
243
244/*
245 * Value (Pointer) variable
246 */
247class ValVar: public SVFVar
248{
249 friend class SVFIRWriter;
250 friend class SVFIRReader;
251
252private:
253 const ICFGNode* icfgNode; // icfgnode related to valvar
254protected:
257
258public:
260
261 static inline bool classof(const ValVar*)
262 {
263 return true;
264 }
265 static inline bool classof(const SVFVar* node)
266 {
267 return isValVarKinds(node->getNodeKind());
268 }
269 static inline bool classof(const GenericPAGNodeTy* node)
270 {
271 return isValVarKinds(node->getNodeKind());
272 }
273 static inline bool classof(const SVFValue* node)
274 {
275 return isValVarKinds(node->getNodeKind());
276 }
278
281 : SVFVar(i, svfType, ty), icfgNode(node)
282 {
283 }
285 inline const std::string getValueName() const
286 {
287 return getName();
288 }
289
290 const ICFGNode* getICFGNode() const
291 {
292 return icfgNode;
293 }
294
295 virtual const FunObjVar* getFunction() const;
296
297 virtual const std::string toString() const;
298};
299
300/*
301 * Memory Object variable
302 */
303class ObjVar: public SVFVar
304{
305 friend class SVFIRWriter;
306 friend class SVFIRReader;
307
308protected:
313 SVFVar(i, svfType, ty)
314 {
315 }
316public:
318
319 static inline bool classof(const ObjVar*)
320 {
321 return true;
322 }
323 static inline bool classof(const SVFVar* node)
324 {
325 return isObjVarKinds(node->getNodeKind());
326 }
327 static inline bool classof(const GenericPAGNodeTy* node)
328 {
329 return isObjVarKinds(node->getNodeKind());
330 }
331 static inline bool classof(const SVFValue* node)
332 {
333 return isObjVarKinds(node->getNodeKind());
334 }
336
338 virtual const std::string getValueName() const
339 {
340 return getName();
341 }
342
343 virtual const std::string toString() const;
344};
345
346
353class ArgValVar: public ValVar
354{
355 friend class SVFIRWriter;
356 friend class SVFIRReader;
357
358private:
361
362protected:
365
366public:
368
369 static inline bool classof(const ArgValVar*)
370 {
371 return true;
372 }
373 static inline bool classof(const ValVar* node)
374 {
375 return node->getNodeKind() == ArgValNode;
376 }
377 static inline bool classof(const SVFVar* node)
378 {
379 return node->getNodeKind() == ArgValNode;
380 }
381 static inline bool classof(const GenericPAGNodeTy* node)
382 {
383 return node->getNodeKind() == ArgValNode;
384 }
385 static inline bool classof(const SVFValue* node)
386 {
387 return node->getNodeKind() == ArgValNode;
388 }
390
392 ArgValVar(NodeID i, u32_t argNo, const ICFGNode* icn, const FunObjVar* callGraphNode,
393 const SVFType* svfType);
394
396 inline const std::string getValueName() const
397 {
398 return getName() + " (argument valvar)";
399 }
400
401 virtual const FunObjVar* getFunction() const;
402
403 const FunObjVar* getParent() const;
404
407 inline u32_t getArgNo() const
408 {
409 return argNo;
410 }
411
412 bool isArgOfUncalledFunction() const;
413
414 virtual bool isPointer() const;
415
416 virtual const std::string toString() const;
417};
418
419
420/*
421 * Gep Value (Pointer) variable, this variable can be dynamic generated for field sensitive analysis
422 * e.g. memcpy, temp gep value variable needs to be created
423 * Each Gep Value variable is connected to base value variable via gep edge
424 */
425class GepValVar: public ValVar
426{
427 friend class SVFIRWriter;
428 friend class SVFIRReader;
429
430private:
431 AccessPath ap; // AccessPath
432 const ValVar* base; // base node
434
437
438public:
440
441 static inline bool classof(const GepValVar *)
442 {
443 return true;
444 }
445 static inline bool classof(const ValVar * node)
446 {
447 return node->getNodeKind() == SVFVar::GepValNode;
448 }
449 static inline bool classof(const SVFVar *node)
450 {
451 return node->getNodeKind() == SVFVar::GepValNode;
452 }
453 static inline bool classof(const GenericPAGNodeTy *node)
454 {
455 return node->getNodeKind() == SVFVar::GepValNode;
456 }
457 static inline bool classof(const SVFValue* node)
458 {
459 return node->getNodeKind() == SVFVar::GepValNode;
460 }
462
464 GepValVar(const ValVar* baseNode, NodeID i, const AccessPath& ap,
465 const SVFType* ty, const ICFGNode* node);
466
469 {
471 }
472
474 inline const ValVar* getBaseNode(void) const
475 {
476 return base;
477 }
478
480 inline const std::string getValueName() const
481 {
482 return getName() + "_" +
483 std::to_string(getConstantFieldIdx());
484 }
485
486 virtual bool isPointer() const
487 {
488 return base->isPointer();
489 }
490
491 inline const SVFType* getType() const
492 {
493 return gepValType;
494 }
495
496 virtual const FunObjVar* getFunction() const
497 {
498 return base->getFunction();
499 }
500
501 virtual const std::string toString() const;
502
504 {
506 }
507 virtual inline bool ptrInUncalledFunction() const
508 {
509 return base->ptrInUncalledFunction();
510 }
511
512 virtual inline bool isConstDataOrAggData() const
513 {
514 return base->isConstDataOrAggData();
515 }
516};
517
518/*
519 * Base memory object variable (address-taken variables in LLVM-based languages)
520 */
521class BaseObjVar : public ObjVar
522{
523 friend class SVFIRWriter;
524 friend class SVFIRReader;
525 friend class SVFIRBuilder;
526private:
528
530
531protected:
534
535public:
537
538 static inline bool classof(const BaseObjVar*)
539 {
540 return true;
541 }
542 static inline bool classof(const ObjVar* node)
543 {
544 return isBaseObjVarKinds(node->getNodeKind());
545 }
546 static inline bool classof(const SVFVar* node)
547 {
548 return isBaseObjVarKinds(node->getNodeKind());
549 }
550 static inline bool classof(const GenericPAGNodeTy* node)
551 {
552 return isBaseObjVarKinds(node->getNodeKind());
553 }
554 static inline bool classof(const SVFValue* node)
555 {
556 return isBaseObjVarKinds(node->getNodeKind());
557 }
559
562 const SVFType* svfType, const ICFGNode* node, PNODEK ty = BaseObjNode)
563 : ObjVar(i, svfType, ty), typeInfo(ti), icfgNode(node)
564 {
565 }
566
567 virtual const BaseObjVar* getBaseMemObj() const
568 {
569 return this;
570 }
571
573 inline const ICFGNode* getICFGNode() const
574 {
575 return icfgNode;
576 }
577
579 inline const std::string getValueName() const
580 {
581 return getName() + " (base object)";
582 }
583
584 virtual const std::string toString() const;
585
587 inline NodeID getId() const
588 {
589 return id;
590 }
591
593 const SVFType* getType() const
594 {
595 return typeInfo->getType();
596 }
597
600 {
601 return typeInfo->getNumOfElements();
602 }
603
606 {
608 }
609
615
616
619 {
620 return getMaxFieldOffsetLimit() == 0;
621 }
622
628
629
635
637 bool isBlackHoleObj() const;
638
641 {
642 return typeInfo->getByteSizeOfObj();
643 }
644
647 {
649 }
650
651
653
654 bool isFunction() const
655 {
656 return typeInfo->isFunction();
657 }
658 bool isGlobalObj() const
659 {
660 return typeInfo->isGlobalObj();
661 }
662 bool isStaticObj() const
663 {
664 return typeInfo->isStaticObj();
665 }
666 bool isStack() const
667 {
668 return typeInfo->isStack();
669 }
670 bool isHeap() const
671 {
672 return typeInfo->isHeap();
673 }
674 bool isStruct() const
675 {
676 return typeInfo->isStruct();
677 }
678 bool isArray() const
679 {
680 return typeInfo->isArray();
681 }
682 bool isVarStruct() const
683 {
684 return typeInfo->isVarStruct();
685 }
686 bool isVarArray() const
687 {
688 return typeInfo->isVarArray();
689 }
690 bool isConstantStruct() const
691 {
692 return typeInfo->isConstantStruct();
693 }
694 bool isConstantArray() const
695 {
696 return typeInfo->isConstantArray();
697 }
699 {
701 }
702 virtual inline bool isConstDataOrAggData() const
703 {
705 }
707
709 void destroy()
710 {
711 delete typeInfo;
712 typeInfo = nullptr;
713 }
714
715 virtual const FunObjVar* getFunction() const;
716
717};
718
719
720/*
721 * Gep Obj variable, this is dynamic generated for field sensitive analysis
722 * Each gep obj variable is one field of a BaseObjVar (base)
723 */
724class GepObjVar: public ObjVar
725{
726 friend class SVFIRWriter;
727 friend class SVFIRReader;
728
729private:
731
733
735 // only for reading from file when we don't have BaseObjVar*
737
738public:
740
741 static inline bool classof(const GepObjVar*)
742 {
743 return true;
744 }
745 static inline bool classof(const ObjVar* node)
746 {
747 return node->getNodeKind() == SVFVar::GepObjNode;
748 }
749 static inline bool classof(const SVFVar* node)
750 {
751 return node->getNodeKind() == SVFVar::GepObjNode;
752 }
753 static inline bool classof(const GenericPAGNodeTy* node)
754 {
755 return node->getNodeKind() == SVFVar::GepObjNode;
756 }
757 static inline bool classof(const SVFValue* node)
758 {
759 return node->getNodeKind() == SVFVar::GepObjNode;
760 }
762
769
772 {
773 return apOffset;
774 }
775
777 inline NodeID getBaseNode(void) const
778 {
779 return base->getId();
780 }
781
782 inline const BaseObjVar* getBaseObj() const
783 {
784 return base;
785 }
786
788 inline virtual const SVFType* getType() const;
789
790
792 inline const std::string getValueName() const
793 {
794 return getName() + "_" + std::to_string(apOffset);
795 }
796
797 virtual const FunObjVar* getFunction() const
798 {
799 return base->getFunction();
800 }
801
802 virtual const std::string toString() const;
803
804 virtual inline bool ptrInUncalledFunction() const
805 {
806 return base->ptrInUncalledFunction();
807 }
808
809 virtual inline bool isConstDataOrAggData() const
810 {
811 return base->isConstDataOrAggData();
812 }
813
815 {
817 }
818
819 virtual bool isPointer() const
820 {
821 return base->isPointer();
822 }
823};
824
825
826
834{
835
836 friend class SVFIRWriter;
837 friend class SVFIRReader;
838
839protected:
841 HeapObjVar(NodeID i, const ICFGNode* node) : BaseObjVar(i, node, HeapObjNode) {}
842
843public:
845
846 static inline bool classof(const HeapObjVar*)
847 {
848 return true;
849 }
850 static inline bool classof(const BaseObjVar* node)
851 {
852 return node->getNodeKind() == HeapObjNode;
853 }
854 static inline bool classof(const ObjVar* node)
855 {
856 return node->getNodeKind() == HeapObjNode;
857 }
858 static inline bool classof(const SVFVar* node)
859 {
860 return node->getNodeKind() == HeapObjNode;
861 }
862 static inline bool classof(const GenericPAGNodeTy* node)
863 {
864 return node->getNodeKind() == HeapObjNode;
865 }
866 static inline bool classof(const SVFValue* node)
867 {
868 return node->getNodeKind() == HeapObjNode;
869 }
871
875 {
876 }
877
879 inline const std::string getValueName() const
880 {
881 return " (heap base object)";
882 }
883
884 virtual const std::string toString() const;
885};
886
887
897{
898
899 friend class SVFIRWriter;
900 friend class SVFIRReader;
901
902protected:
905
906public:
908
909 static inline bool classof(const StackObjVar*)
910 {
911 return true;
912 }
913 static inline bool classof(const BaseObjVar* node)
914 {
915 return node->getNodeKind() == StackObjNode;
916 }
917 static inline bool classof(const ObjVar* node)
918 {
919 return node->getNodeKind() == StackObjNode;
920 }
921 static inline bool classof(const SVFVar* node)
922 {
923 return node->getNodeKind() == StackObjNode;
924 }
925 static inline bool classof(const GenericPAGNodeTy* node)
926 {
927 return node->getNodeKind() == StackObjNode;
928 }
929 static inline bool classof(const SVFValue* node)
930 {
931 return node->getNodeKind() == StackObjNode;
932 }
934
938 {
939 }
940
942 inline const std::string getValueName() const
943 {
944 return " (stack base object)";
945 }
946
947 virtual const std::string toString() const;
948};
949
950
951class CallGraphNode;
952
953class FunObjVar : public BaseObjVar
954{
955 friend class SVFIRWriter;
956 friend class SVFIRReader;
957 friend class SVFIRBuilder;
958 friend class LLVMModuleSet;
959
960public:
964
965 typedef BasicBlockGraph::IDToNodeMapTy::const_iterator const_bb_iterator;
966
967
968private:
969 bool isDecl;
973 bool isNotRet;
979 std::vector<const ArgValVar*> allArgs;
981
982
983private:
985 FunObjVar(NodeID i, const ICFGNode* node) : BaseObjVar(i,node, FunObjNode) {}
986
987public:
989
990 static inline bool classof(const FunObjVar*)
991 {
992 return true;
993 }
994 static inline bool classof(const BaseObjVar* node)
995 {
996 return node->getNodeKind() == FunObjNode;
997 }
998 static inline bool classof(const ObjVar* node)
999 {
1000 return node->getNodeKind() == FunObjNode;
1001 }
1002 static inline bool classof(const SVFVar* node)
1003 {
1004 return node->getNodeKind() == FunObjNode;
1005 }
1006 static inline bool classof(const GenericPAGNodeTy* node)
1007 {
1008 return node->getNodeKind() == FunObjNode;
1009 }
1010 static inline bool classof(const SVFValue* node)
1011 {
1012 return node->getNodeKind() == FunObjNode;
1013 }
1015
1017 FunObjVar(NodeID i, ObjTypeInfo* ti, const SVFType* svfType, const ICFGNode* node);
1018
1019
1020 virtual ~FunObjVar()
1021 {
1022 delete loopAndDom;
1023 delete bbGraph;
1024 }
1025
1026 void initFunObjVar(bool decl, bool intrinc, bool addr, bool uncalled, bool notret, bool vararg, const SVFFunctionType *ft,
1028 const std::vector<const ArgValVar *> &allarg, const SVFBasicBlock *exit);
1029
1031 {
1032 realDefFun = real;
1033 }
1034
1035 virtual const FunObjVar*getFunction() const;
1036
1037 inline void addArgument(const ArgValVar *arg)
1038 {
1039 allArgs.push_back(arg);
1040 }
1041 inline bool isDeclaration() const
1042 {
1043 return isDecl;
1044 }
1045
1046 inline bool isIntrinsic() const
1047 {
1048 return intrinsic;
1049 }
1050
1051 inline bool hasAddressTaken() const
1052 {
1053 return isAddrTaken;
1054 }
1055
1056 inline bool isVarArg() const
1057 {
1058 return supVarArg;
1059 }
1060
1061 inline bool isUncalledFunction() const
1062 {
1063 return isUncalled;
1064 }
1065
1066 inline bool hasReturn() const
1067 {
1068 return !isNotRet;
1069 }
1070
1072 inline const SVFFunctionType* getFunctionType() const
1073 {
1074 return funcType;
1075 }
1076
1078 inline const SVFType* getReturnType() const
1079 {
1080 return funcType->getReturnType();
1081 }
1082
1084 {
1085 return loopAndDom;
1086 }
1087
1088 inline const std::vector<const SVFBasicBlock*>& getReachableBBs() const
1089 {
1090 return loopAndDom->getReachableBBs();
1091 }
1092
1093 inline void getExitBlocksOfLoop(const SVFBasicBlock* bb, BBList& exitbbs) const
1094 {
1096 }
1097
1098 inline bool hasLoopInfo(const SVFBasicBlock* bb) const
1099 {
1100 return loopAndDom->hasLoopInfo(bb);
1101 }
1102
1103 const LoopBBs& getLoopInfo(const SVFBasicBlock* bb) const
1104 {
1105 return loopAndDom->getLoopInfo(bb);
1106 }
1107
1108 inline const SVFBasicBlock* getLoopHeader(const BBList& lp) const
1109 {
1110 return loopAndDom->getLoopHeader(lp);
1111 }
1112
1113 inline bool loopContainsBB(const BBList& lp, const SVFBasicBlock* bb) const
1114 {
1115 return loopAndDom->loopContainsBB(lp,bb);
1116 }
1117
1119 {
1120 return loopAndDom->getDomTreeMap();
1121 }
1122
1124 {
1125 return loopAndDom->getDomFrontierMap();
1126 }
1127
1128 inline bool isLoopHeader(const SVFBasicBlock* bb) const
1129 {
1130 return loopAndDom->isLoopHeader(bb);
1131 }
1132
1133 inline bool dominate(const SVFBasicBlock* bbKey, const SVFBasicBlock* bbValue) const
1134 {
1136 }
1137
1138 inline bool postDominate(const SVFBasicBlock* bbKey, const SVFBasicBlock* bbValue) const
1139 {
1141 }
1142
1144 {
1145 if(realDefFun==nullptr)
1146 return this;
1147 return realDefFun;
1148 }
1149
1151 {
1152 this->bbGraph = graph;
1153 }
1154
1156 {
1157 return bbGraph;
1158 }
1159
1161 {
1162 return bbGraph;
1163 }
1164
1165 inline bool hasBasicBlock() const
1166 {
1167 return bbGraph && bbGraph->begin() != bbGraph->end();
1168 }
1169
1170 inline const SVFBasicBlock* getEntryBlock() const
1171 {
1172 assert(hasBasicBlock() && "function does not have any Basicblock, external function?");
1173 assert(bbGraph->begin()->second->getInEdges().size() == 0 && "the first basic block is not entry block");
1174 return bbGraph->begin()->second;
1175 }
1176
1177 inline const SVFBasicBlock* getExitBB() const
1178 {
1179 assert(hasBasicBlock() && "function does not have any Basicblock, external function?");
1180 assert(exitBlock && "must have an exitBlock");
1181 return exitBlock;
1182 }
1183
1185 {
1186 assert(!exitBlock && "have already set exit Basicblock!");
1187 exitBlock = bb;
1188 }
1189
1190
1191 u32_t inline arg_size() const
1192 {
1193 return allArgs.size();
1194 }
1195
1196 inline const ArgValVar* getArg(u32_t idx) const
1197 {
1198 assert (idx < allArgs.size() && "getArg() out of range!");
1199 return allArgs[idx];
1200 }
1201
1202 inline const SVFBasicBlock* front() const
1203 {
1204 return getEntryBlock();
1205 }
1206
1207 inline const SVFBasicBlock* back() const
1208 {
1209 assert(hasBasicBlock() && "function does not have any Basicblock, external function?");
1213 return std::prev(bbGraph->end())->second;
1214 }
1215
1217 {
1218 return bbGraph->begin();
1219 }
1220
1221 inline const_bb_iterator end() const
1222 {
1223 return bbGraph->end();
1224 }
1225
1226 virtual bool isIsolatedNode() const;
1227
1228 virtual const std::string toString() const;
1229};
1230class FunValVar : public ValVar
1231{
1232 friend class SVFIRWriter;
1233 friend class SVFIRReader;
1234private:
1236
1237public:
1239
1240 static inline bool classof(const FunValVar*)
1241 {
1242 return true;
1243 }
1244 static inline bool classof(const ValVar* node)
1245 {
1246 return node->getNodeKind() == FunValNode;
1247 }
1248 static inline bool classof(const SVFVar* node)
1249 {
1250 return node->getNodeKind() == FunValNode;
1251 }
1252 static inline bool classof(const GenericPAGNodeTy* node)
1253 {
1254 return node->getNodeKind() == FunValNode;
1255 }
1256 static inline bool classof(const SVFValue* node)
1257 {
1258 return node->getNodeKind() == FunValNode;
1259 }
1261
1262 inline virtual const FunObjVar* getFunction() const
1263 {
1264 return funObjVar->getFunction();
1265 }
1266
1268 FunValVar(NodeID i, const ICFGNode* icn, const FunObjVar* cgn, const SVFType* svfType);
1269
1270
1271 virtual bool isPointer() const
1272 {
1273 return true;
1274 }
1275
1276 virtual const std::string toString() const;
1277};
1278
1279
1280
1281class GlobalValVar : public ValVar
1282{
1283 friend class SVFIRWriter;
1284 friend class SVFIRReader;
1285
1286public:
1288
1289 static inline bool classof(const GlobalValVar*)
1290 {
1291 return true;
1292 }
1293 static inline bool classof(const ValVar* node)
1294 {
1295 return node->getNodeKind() == GlobalValNode;
1296 }
1297 static inline bool classof(const SVFVar* node)
1298 {
1299 return node->getNodeKind() == GlobalValNode;
1300 }
1301 static inline bool classof(const GenericPAGNodeTy* node)
1302 {
1303 return node->getNodeKind() == GlobalValNode;
1304 }
1305 static inline bool classof(const SVFValue* node)
1306 {
1307 return node->getNodeKind() == GlobalValNode;
1308 }
1310
1314 {
1315 type = svfType;
1316 }
1317
1318
1319 virtual const std::string toString() const;
1320};
1321
1323{
1324 friend class SVFIRWriter;
1325 friend class SVFIRReader;
1326
1327public:
1329
1330 static inline bool classof(const ConstAggValVar*)
1331 {
1332 return true;
1333 }
1334 static inline bool classof(const ValVar* node)
1335 {
1336 return node->getNodeKind() == ConstAggValNode;
1337 }
1338 static inline bool classof(const SVFVar* node)
1339 {
1340 return node->getNodeKind() == ConstAggValNode;
1341 }
1342 static inline bool classof(const GenericPAGNodeTy* node)
1343 {
1344 return node->getNodeKind() == ConstAggValNode;
1345 }
1346 static inline bool classof(const SVFValue* node)
1347 {
1348 return node->getNodeKind() == ConstAggValNode;
1349 }
1351
1355 {
1356 type = svfTy;
1357 }
1358
1359
1360 virtual bool isConstDataOrAggData() const
1361 {
1362 return true;
1363 }
1364
1366 {
1367 return true;
1368 }
1369
1370 virtual const std::string toString() const;
1371};
1372
1373
1375{
1376 friend class SVFIRWriter;
1377 friend class SVFIRReader;
1378
1379public:
1381
1382 static inline bool classof(const ConstDataValVar*)
1383 {
1384 return true;
1385 }
1386 static inline bool classof(const ValVar* node)
1387 {
1388 return isConstantDataValVar(node->getNodeKind());
1389 }
1390 static inline bool classof(const SVFVar* node)
1391 {
1392 return isConstantDataValVar(node->getNodeKind());
1393 }
1394 static inline bool classof(const GenericPAGNodeTy* node)
1395 {
1396 return isConstantDataValVar(node->getNodeKind());
1397 }
1398 static inline bool classof(const SVFValue* node)
1399 {
1400 return isConstantDataValVar(node->getNodeKind());
1401 }
1403
1407 : ValVar(i, svfType, icn, ty)
1408 {
1409
1410 }
1411
1412 virtual bool isConstDataOrAggData() const
1413 {
1414 return true;
1415 }
1416
1418 {
1419 return true;
1420 }
1421
1422 virtual const std::string toString() const;
1423};
1424
1426{
1427 friend class SVFIRWriter;
1428 friend class SVFIRReader;
1429
1430public:
1432
1433 static inline bool classof(const BlackHoleValVar*)
1434 {
1435 return true;
1436 }
1437 static inline bool classof(const ConstDataValVar* node)
1438 {
1439 return node->getNodeKind() == BlackHoleValNode;
1440 }
1441 static inline bool classof(const ValVar* node)
1442 {
1443 return node->getNodeKind() == BlackHoleValNode;
1444 }
1445 static inline bool classof(const SVFVar* node)
1446 {
1447 return node->getNodeKind() == BlackHoleValNode;
1448 }
1449 static inline bool classof(const GenericPAGNodeTy* node)
1450 {
1451 return node->getNodeKind() == BlackHoleValNode;
1452 }
1453 static inline bool classof(const SVFValue* node)
1454 {
1455 return node->getNodeKind() == BlackHoleValNode;
1456 }
1458
1465
1467 {
1468 return false;
1469 }
1470
1471 virtual const std::string toString() const
1472 {
1473 return "BlackHoleValVar";
1474 }
1475};
1476
1478{
1479 friend class SVFIRWriter;
1480 friend class SVFIRReader;
1481private:
1482 double dval;
1483
1484public:
1486
1487 static inline bool classof(const ConstFPValVar*)
1488 {
1489 return true;
1490 }
1491 static inline bool classof(const ConstDataValVar* node)
1492 {
1493 return node->getNodeKind() == ConstFPValNode;
1494 }
1495 static inline bool classof(const ValVar* node)
1496 {
1497 return node->getNodeKind() == ConstFPValNode;
1498 }
1499 static inline bool classof(const SVFVar* node)
1500 {
1501 return node->getNodeKind() == ConstFPValNode;
1502 }
1503 static inline bool classof(const GenericPAGNodeTy* node)
1504 {
1505 return node->getNodeKind() == ConstFPValNode;
1506 }
1507 static inline bool classof(const SVFValue* node)
1508 {
1509 return node->getNodeKind() == ConstFPValNode;
1510 }
1512
1513 inline double getFPValue() const
1514 {
1515 return dval;
1516 }
1517
1520 const ICFGNode* icn, const SVFType* svfType)
1522 {
1523 }
1524
1525 virtual const std::string toString() const;
1526};
1527
1529{
1530 friend class SVFIRWriter;
1531 friend class SVFIRReader;
1532private:
1535
1536public:
1538
1539 static inline bool classof(const ConstIntValVar*)
1540 {
1541 return true;
1542 }
1543 static inline bool classof(const ConstDataValVar* node)
1544 {
1545 return node->getNodeKind() == ConstIntValNode;
1546 }
1547 static inline bool classof(const ValVar* node)
1548 {
1549 return node->getNodeKind() == ConstIntValNode;
1550 }
1551 static inline bool classof(const SVFVar* node)
1552 {
1553 return node->getNodeKind() == ConstIntValNode;
1554 }
1555 static inline bool classof(const GenericPAGNodeTy* node)
1556 {
1557 return node->getNodeKind() == ConstIntValNode;
1558 }
1559 static inline bool classof(const SVFValue* node)
1560 {
1561 return node->getNodeKind() == ConstIntValNode;
1562 }
1564
1566 {
1567 return sval;
1568 }
1569
1570
1572 {
1573 return zval;
1574 }
1575
1582 virtual const std::string toString() const;
1583};
1584
1586{
1587 friend class SVFIRWriter;
1588 friend class SVFIRReader;
1589
1590public:
1592
1593 static inline bool classof(const ConstNullPtrValVar*)
1594 {
1595 return true;
1596 }
1597 static inline bool classof(const ConstDataValVar* node)
1598 {
1599 return node->getNodeKind() == ConstNullptrValNode;
1600 }
1601 static inline bool classof(const ValVar* node)
1602 {
1603 return node->getNodeKind() == ConstNullptrValNode;
1604 }
1605 static inline bool classof(const SVFVar* node)
1606 {
1607 return node->getNodeKind() == ConstNullptrValNode;
1608 }
1609 static inline bool classof(const GenericPAGNodeTy* node)
1610 {
1611 return node->getNodeKind() == ConstNullptrValNode;
1612 }
1613 static inline bool classof(const SVFValue* node)
1614 {
1615 return node->getNodeKind() == ConstNullptrValNode;
1616 }
1618
1625
1627 {
1628 return false;
1629 }
1630
1631 virtual const std::string toString() const;
1632};
1633
1635{
1636 friend class SVFIRWriter;
1637 friend class SVFIRReader;
1638
1639private:
1642
1643public:
1645
1646 static inline bool classof(const GlobalObjVar*)
1647 {
1648 return true;
1649 }
1650 static inline bool classof(const BaseObjVar* node)
1651 {
1652 return node->getNodeKind() == GlobalObjNode;
1653 }
1654 static inline bool classof(const ObjVar* node)
1655 {
1656 return node->getNodeKind() == GlobalObjNode;
1657 }
1658 static inline bool classof(const SVFVar* node)
1659 {
1660 return node->getNodeKind() == GlobalObjNode;
1661 }
1662 static inline bool classof(const GenericPAGNodeTy* node)
1663 {
1664 return node->getNodeKind() == GlobalObjNode;
1665 }
1666 static inline bool classof(const SVFValue* node)
1667 {
1668 return node->getNodeKind() == GlobalObjNode;
1669 }
1671
1675 {
1676
1677 }
1678
1679
1680 virtual const std::string toString() const;
1681};
1682
1684{
1685 friend class SVFIRWriter;
1686 friend class SVFIRReader;
1687
1688public:
1690
1691 static inline bool classof(const ConstAggObjVar*)
1692 {
1693 return true;
1694 }
1695 static inline bool classof(const BaseObjVar* node)
1696 {
1697 return node->getNodeKind() == ConstAggObjNode;
1698 }
1699
1700 static inline bool classof(const ObjVar* node)
1701 {
1702 return node->getNodeKind() == ConstAggObjNode;
1703 }
1704 static inline bool classof(const SVFVar* node)
1705 {
1706 return node->getNodeKind() == ConstAggObjNode;
1707 }
1708 static inline bool classof(const GenericPAGNodeTy* node)
1709 {
1710 return node->getNodeKind() == ConstAggObjNode;
1711 }
1712 static inline bool classof(const SVFValue* node)
1713 {
1714 return node->getNodeKind() == ConstAggObjNode;
1715 }
1717
1721 {
1722
1723 }
1724
1725 virtual bool isConstDataOrAggData() const
1726 {
1727 return true;
1728 }
1729
1731 {
1732 return true;
1733 }
1734
1735 virtual const std::string toString() const;
1736};
1737
1739{
1740 friend class SVFIRWriter;
1741 friend class SVFIRReader;
1742
1743protected:
1746
1747public:
1749 static inline bool classof(const ConstDataObjVar*)
1750 {
1751 return true;
1752 }
1753 static inline bool classof(const BaseObjVar* node)
1754 {
1755 return isConstantDataObjVarKinds(node->getNodeKind());
1756 }
1757 static inline bool classof(const SVFVar* node)
1758 {
1759 return isConstantDataObjVarKinds(node->getNodeKind());
1760 }
1761 static inline bool classof(const ObjVar* node)
1762 {
1763 return isConstantDataObjVarKinds(node->getNodeKind());
1764 }
1765 static inline bool classof(const GenericPAGNodeTy* node)
1766 {
1767 return isConstantDataObjVarKinds(node->getNodeKind());
1768 }
1769
1770 static inline bool classof(const SVFValue* node)
1771 {
1772 return isConstantDataObjVarKinds(node->getNodeKind());
1773 }
1775
1778 : BaseObjVar(i, ti, svfType, node, ty)
1779 {
1780 }
1781
1782 virtual bool isConstDataOrAggData() const
1783 {
1784 return true;
1785 }
1786
1788 {
1789 return true;
1790 }
1791
1792 virtual const std::string toString() const;
1793};
1794
1796{
1797 friend class SVFIRWriter;
1798 friend class SVFIRReader;
1799
1800private:
1803
1804private:
1805 float dval;
1806
1807public:
1809 static inline bool classof(const ConstFPObjVar*)
1810 {
1811 return true;
1812 }
1813 static inline bool classof(const ConstDataObjVar* node)
1814 {
1815 return node->getNodeKind() == SVFVar::ConstFPObjNode;
1816 }
1817 static inline bool classof(const BaseObjVar* node)
1818 {
1819 return node->getNodeKind() == SVFVar::ConstFPObjNode;
1820 }
1821
1822 static inline bool classof(const SVFVar* node)
1823 {
1824 return node->getNodeKind() == SVFVar::ConstFPObjNode;
1825 }
1826
1827 static inline bool classof(const ObjVar* node)
1828 {
1829 return node->getNodeKind() == SVFVar::ConstFPObjNode;
1830 }
1831
1832 static inline bool classof(const GenericPAGNodeTy* node)
1833 {
1834 return node->getNodeKind() == SVFVar::ConstFPObjNode;
1835 }
1836
1837 static inline bool classof(const SVFValue* node)
1838 {
1839 return node->getNodeKind() == SVFVar::ConstFPObjNode;
1840 }
1842
1846 {
1847 }
1848
1849 inline double getFPValue() const
1850 {
1851 return dval;
1852 }
1853
1854
1855 virtual const std::string toString() const;
1856};
1857
1859{
1860 friend class SVFIRWriter;
1861 friend class SVFIRReader;
1862
1863private:
1866
1867private:
1870
1871public:
1873 static inline bool classof(const ConstIntObjVar*)
1874 {
1875 return true;
1876 }
1877
1878 static inline bool classof(const ConstDataObjVar* node)
1879 {
1880 return node->getNodeKind() == SVFVar::ConstIntObjNode;
1881 }
1882
1883 static inline bool classof(const BaseObjVar* node)
1884 {
1885 return node->getNodeKind() == SVFVar::ConstIntObjNode;
1886 }
1887
1888 static inline bool classof(const SVFVar* node)
1889 {
1890 return node->getNodeKind() == SVFVar::ConstIntObjNode;
1891 }
1892 static inline bool classof(const ObjVar* node)
1893 {
1894 return node->getNodeKind() == SVFVar::ConstIntObjNode;
1895 }
1896 static inline bool classof(const GenericPAGNodeTy* node)
1897 {
1898 return node->getNodeKind() == SVFVar::ConstIntObjNode;
1899 }
1900
1901 static inline bool classof(const SVFValue* node)
1902 {
1903 return node->getNodeKind() == SVFVar::ConstIntObjNode;
1904 }
1905
1907 {
1908 return sval;
1909 }
1910
1911
1913 {
1914 return zval;
1915 }
1917
1923
1924
1925 virtual const std::string toString() const;
1926};
1927
1929{
1930 friend class SVFIRWriter;
1931 friend class SVFIRReader;
1932
1933private:
1936
1937public:
1939 static inline bool classof(const ConstNullPtrObjVar*)
1940 {
1941 return true;
1942 }
1943
1944 static inline bool classof(const ConstDataObjVar* node)
1945 {
1946 return node->getNodeKind() == SVFVar::ConstNullptrObjNode;
1947 }
1948
1949 static inline bool classof(const BaseObjVar* node)
1950 {
1951 return node->getNodeKind() == SVFVar::ConstNullptrObjNode;
1952 }
1953
1954 static inline bool classof(const SVFVar* node)
1955 {
1956 return node->getNodeKind() == SVFVar::ConstNullptrObjNode;
1957 }
1958 static inline bool classof(const ObjVar* node)
1959 {
1960 return node->getNodeKind() == SVFVar::ConstNullptrObjNode;
1961 }
1962 static inline bool classof(const GenericPAGNodeTy* node)
1963 {
1964 return node->getNodeKind() == SVFVar::ConstNullptrObjNode;
1965 }
1966
1967 static inline bool classof(const SVFValue* node)
1968 {
1969 return node->getNodeKind() == SVFVar::ConstNullptrObjNode;
1970 }
1972
1979 {
1980 return false;
1981 }
1982 virtual const std::string toString() const;
1983};
1984/*
1985 * Unique Return node of a procedure
1986 */
1987class RetValPN : public ValVar
1988{
1989 friend class SVFIRWriter;
1990 friend class SVFIRReader;
1991
1992private:
1994private:
1997
1998public:
2000 static inline bool classof(const RetValPN*)
2001 {
2002 return true;
2003 }
2004 static inline bool classof(const SVFVar* node)
2005 {
2006 return node->getNodeKind() == SVFVar::RetValNode;
2007 }
2008 static inline bool classof(const ValVar* node)
2009 {
2010 return node->getNodeKind() == SVFVar::RetValNode;
2011 }
2012 static inline bool classof(const GenericPAGNodeTy* node)
2013 {
2014 return node->getNodeKind() == SVFVar::RetValNode;
2015 }
2016 static inline bool classof(const SVFValue* node)
2017 {
2018 return node->getNodeKind() == SVFVar::RetValNode;
2019 }
2021
2022
2024 RetValPN(NodeID i, const FunObjVar* node, const SVFType* svfType, const ICFGNode* icn);
2025
2026 inline const FunObjVar* getCallGraphNode() const
2027 {
2028 return callGraphNode;
2029 }
2030
2031 virtual const FunObjVar* getFunction() const;
2032
2033 virtual bool isPointer() const;
2034
2036 const std::string getValueName() const;
2037
2038 virtual const std::string toString() const;
2039};
2040
2041/*
2042 * Unique vararg node of a procedure
2043 */
2044class VarArgValPN : public ValVar
2045{
2046 friend class SVFIRWriter;
2047 friend class SVFIRReader;
2048private:
2050
2051private:
2054
2055public:
2057 static inline bool classof(const VarArgValPN*)
2058 {
2059 return true;
2060 }
2061 static inline bool classof(const SVFVar* node)
2062 {
2063 return node->getNodeKind() == SVFVar::VarargValNode;
2064 }
2065 static inline bool classof(const ValVar* node)
2066 {
2067 return node->getNodeKind() == SVFVar::VarargValNode;
2068 }
2069 static inline bool classof(const GenericPAGNodeTy* node)
2070 {
2071 return node->getNodeKind() == SVFVar::VarargValNode;
2072 }
2073 static inline bool classof(const SVFValue* node)
2074 {
2075 return node->getNodeKind() == SVFVar::VarargValNode;
2076 }
2078
2080 VarArgValPN(NodeID i, const FunObjVar* node, const SVFType* svfType, const ICFGNode* icn)
2082 {
2083 }
2084
2085 virtual const FunObjVar* getFunction() const;
2086
2088 const std::string getValueName() const;
2089
2090 virtual bool isPointer() const
2091 {
2092 return true;
2093 }
2094 virtual const std::string toString() const;
2095};
2096
2097/*
2098 * Dummy variable without any LLVM value
2099 */
2100class DummyValVar: public ValVar
2101{
2102 friend class SVFIRWriter;
2103 friend class SVFIRReader;
2104
2105public:
2107 static inline bool classof(const DummyValVar*)
2108 {
2109 return true;
2110 }
2111 static inline bool classof(const SVFVar* node)
2112 {
2113 return node->getNodeKind() == SVFVar::DummyValNode;
2114 }
2115 static inline bool classof(const ValVar* node)
2116 {
2117 return node->getNodeKind() == SVFVar::DummyValNode;
2118 }
2119 static inline bool classof(const GenericPAGNodeTy* node)
2120 {
2121 return node->getNodeKind() == SVFVar::DummyValNode;
2122 }
2123 static inline bool classof(const SVFValue* node)
2124 {
2125 return node->getNodeKind() == SVFVar::DummyValNode;
2126 }
2128
2131 : ValVar(i, svfType, node, DummyValNode)
2132 {
2133 }
2134
2136 inline const std::string getValueName() const
2137 {
2138 return "dummyVal";
2139 }
2140
2141 virtual bool isPointer() const
2142 {
2143 return true;
2144 }
2145
2146 virtual const std::string toString() const;
2147};
2148
2149/*
2150 * Dummy object variable
2151 */
2153{
2154 friend class SVFIRWriter;
2155 friend class SVFIRReader;
2156
2157private:
2160
2161public:
2163 static inline bool classof(const DummyObjVar*)
2164 {
2165 return true;
2166 }
2167 static inline bool classof(const BaseObjVar* node)
2168 {
2169 return node->getNodeKind() == SVFVar::DummyObjNode;
2170 }
2171 static inline bool classof(const SVFVar* node)
2172 {
2173 return node->getNodeKind() == SVFVar::DummyObjNode;
2174 }
2175 static inline bool classof(const ObjVar* node)
2176 {
2177 return node->getNodeKind() == SVFVar::DummyObjNode;
2178 }
2179 static inline bool classof(const GenericPAGNodeTy* node)
2180 {
2181 return node->getNodeKind() == SVFVar::DummyObjNode;
2182 }
2183
2184 static inline bool classof(const SVFValue* node)
2185 {
2186 return node->getNodeKind() == SVFVar::DummyObjNode;
2187 }
2189
2195
2197 inline const std::string getValueName() const
2198 {
2199 return "dummyObj";
2200 }
2201
2202 virtual bool isPointer() const
2203 {
2204 return true;
2205 }
2206
2207 virtual const std::string toString() const;
2208};
2209
2210} // End namespace SVF
2211
2212#endif /* INCLUDE_SVFIR_SVFVARIABLE_H_ */
APOffset getConstantStructFldIdx() const
Get methods.
Definition AccessPath.h:99
Class representing a function argument variable in the SVFIR.
static bool classof(const SVFValue *node)
bool isArgOfUncalledFunction() const
u32_t getArgNo() const
const FunObjVar * cgNode
ArgValVar(NodeID i, PNODEK ty=ArgValNode)
Constructor to create function argument (for SVFIRReader/deserialization)
static bool classof(const GenericPAGNodeTy *node)
static bool classof(const SVFVar *node)
virtual const FunObjVar * getFunction() const
Get containing function, or null for globals/constants.
friend class SVFIRReader
virtual bool isPointer() const
Check if this variable represents a pointer.
const FunObjVar * getParent() const
friend class SVFIRWriter
static bool classof(const ValVar *node)
static bool classof(const ArgValVar *)
Methods for support type inquiry through isa, cast, and dyn_cast:
const std::string getValueName() const
Return name of a LLVM value.
virtual const std::string toString() const
Get string representation.
bool isFunction() const
object attributes methods
void destroy()
Clean up memory.
bool isConstDataOrConstGlobal() const
u32_t getNumOfElements() const
Get the number of elements of this object.
const ICFGNode * icfgNode
virtual bool isConstDataOrAggData() const
Check if this variable represents constant/aggregate data.
bool isGlobalObj() const
bool isConstantStruct() const
bool isStack() const
void setNumOfElements(u32_t num)
Set the number of elements of this object.
void setFieldInsensitive()
Set the memory object to be field insensitive.
bool isHeap() const
bool isArray() const
bool isStaticObj() const
const std::string getValueName() const
Return name of a LLVM value.
virtual const std::string toString() const
Get string representation.
void setFieldSensitive()
Set the memory object to be field sensitive (up to max field limit)
static bool classof(const SVFValue *node)
bool isVarStruct() const
static bool classof(const ObjVar *node)
virtual const BaseObjVar * getBaseMemObj() const
NodeID getId() const
Get the memory object id.
u32_t getMaxFieldOffsetLimit() const
Get max field offset limit.
const ICFGNode * getICFGNode() const
Get the ICFGNode related to the creation of this object.
friend class SVFIRReader
bool isConstantByteSize() const
Check if byte size is a const value.
u32_t getByteSizeOfObj() const
Get the byte size of this object.
ObjTypeInfo * typeInfo
BaseObjVar(NodeID i, ObjTypeInfo *ti, const SVFType *svfType, const ICFGNode *node, PNODEK ty=BaseObjNode)
Constructor.
BaseObjVar(NodeID i, const ICFGNode *node, PNODEK ty=BaseObjNode)
ICFGNode related to the creation of this object.
bool isBlackHoleObj() const
Whether it is a black hole object.
friend class SVFIRWriter
bool isStruct() const
static bool classof(const BaseObjVar *)
Methods for support type inquiry through isa, cast, and dyn_cast:
virtual const FunObjVar * getFunction() const
Get containing function, or null for globals/constants.
bool isVarArray() const
static bool classof(const SVFVar *node)
bool isFieldInsensitive() const
Return true if its field limit is 0.
const SVFType * getType() const
Get obj type.
bool isConstantArray() const
static bool classof(const GenericPAGNodeTy *node)
virtual const std::string toString() const
Get string representation.
virtual bool isConstDataOrAggDataButNotNullPtr() const
Check if this variable represents constant data/metadata but not null pointer.
BlackHoleValVar(NodeID i, const SVFType *svfType, PNODEK ty=BlackHoleValNode)
Constructor.
static bool classof(const ValVar *node)
static bool classof(const GenericPAGNodeTy *node)
friend class SVFIRReader
static bool classof(const SVFVar *node)
static bool classof(const ConstDataValVar *node)
static bool classof(const BlackHoleValVar *)
Methods for support type inquiry through isa, cast, and dyn_cast:
friend class SVFIRWriter
static bool classof(const SVFValue *node)
static bool classof(const BaseObjVar *node)
virtual const std::string toString() const
Get string representation.
static bool classof(const SVFVar *node)
virtual bool isConstDataOrAggData() const
Check if this variable represents constant/aggregate data.
static bool classof(const ObjVar *node)
static bool classof(const ConstAggObjVar *)
Methods for support type inquiry through isa, cast, and dyn_cast:
static bool classof(const SVFValue *node)
static bool classof(const GenericPAGNodeTy *node)
friend class SVFIRReader
friend class SVFIRWriter
ConstAggObjVar(NodeID i, ObjTypeInfo *ti, const SVFType *svfType, const ICFGNode *node)
Constructor.
virtual bool isConstDataOrAggDataButNotNullPtr() const
Check if this variable represents constant data/metadata but not null pointer.
static bool classof(const GenericPAGNodeTy *node)
virtual bool isConstDataOrAggData() const
Check if this variable represents constant/aggregate data.
friend class SVFIRReader
static bool classof(const SVFVar *node)
static bool classof(const ValVar *node)
static bool classof(const ConstAggValVar *)
Methods for support type inquiry through isa, cast, and dyn_cast:
virtual bool isConstDataOrAggDataButNotNullPtr() const
Check if this variable represents constant data/metadata but not null pointer.
friend class SVFIRWriter
virtual const std::string toString() const
Get string representation.
static bool classof(const SVFValue *node)
ConstAggValVar(NodeID i, const ICFGNode *icn, const SVFType *svfTy)
Constructor.
static bool classof(const ObjVar *node)
static bool classof(const SVFValue *node)
virtual const std::string toString() const
Get string representation.
static bool classof(const BaseObjVar *node)
virtual bool isConstDataOrAggDataButNotNullPtr() const
Check if this variable represents constant data/metadata but not null pointer.
static bool classof(const GenericPAGNodeTy *node)
friend class SVFIRReader
ConstDataObjVar(NodeID i, const ICFGNode *node)
Constructor to create empty DummyObjVar (for SVFIRReader/deserialization)
virtual bool isConstDataOrAggData() const
Check if this variable represents constant/aggregate data.
friend class SVFIRWriter
static bool classof(const ConstDataObjVar *)
static bool classof(const SVFVar *node)
ConstDataObjVar(NodeID i, ObjTypeInfo *ti, const SVFType *svfType, const ICFGNode *node, PNODEK ty=ConstDataObjNode)
Constructor.
static bool classof(const GenericPAGNodeTy *node)
static bool classof(const ConstDataValVar *)
Methods for support type inquiry through isa, cast, and dyn_cast:
virtual bool isConstDataOrAggDataButNotNullPtr() const
Check if this variable represents constant data/metadata but not null pointer.
static bool classof(const ValVar *node)
static bool classof(const SVFValue *node)
ConstDataValVar(NodeID i, const ICFGNode *icn, const SVFType *svfType, PNODEK ty=ConstDataValNode)
Constructor.
virtual const std::string toString() const
Get string representation.
friend class SVFIRReader
friend class SVFIRWriter
static bool classof(const SVFVar *node)
virtual bool isConstDataOrAggData() const
Check if this variable represents constant/aggregate data.
static bool classof(const ObjVar *node)
ConstFPObjVar(NodeID i, double dv, ObjTypeInfo *ti, const SVFType *svfType, const ICFGNode *node)
Constructor.
static bool classof(const BaseObjVar *node)
static bool classof(const ConstFPObjVar *)
virtual const std::string toString() const
Get string representation.
friend class SVFIRReader
static bool classof(const GenericPAGNodeTy *node)
static bool classof(const ConstDataObjVar *node)
friend class SVFIRWriter
double getFPValue() const
static bool classof(const SVFValue *node)
ConstFPObjVar(NodeID i, const ICFGNode *node)
Constructor to create empty DummyObjVar (for SVFIRReader/deserialization)
static bool classof(const SVFVar *node)
virtual const std::string toString() const
Get string representation.
static bool classof(const ValVar *node)
static bool classof(const SVFValue *node)
static bool classof(const ConstDataValVar *node)
static bool classof(const SVFVar *node)
friend class SVFIRReader
static bool classof(const ConstFPValVar *)
Methods for support type inquiry through isa, cast, and dyn_cast:
static bool classof(const GenericPAGNodeTy *node)
double getFPValue() const
friend class SVFIRWriter
ConstFPValVar(NodeID i, double dv, const ICFGNode *icn, const SVFType *svfType)
Constructor.
ConstIntObjVar(NodeID i, s64_t sv, u64_t zv, ObjTypeInfo *ti, const SVFType *svfType, const ICFGNode *node)
Constructor.
virtual const std::string toString() const
Get string representation.
static bool classof(const SVFValue *node)
static bool classof(const SVFVar *node)
static bool classof(const ConstDataObjVar *node)
s64_t getSExtValue() const
static bool classof(const ConstIntObjVar *)
friend class SVFIRReader
static bool classof(const ObjVar *node)
u64_t getZExtValue() const
static bool classof(const GenericPAGNodeTy *node)
friend class SVFIRWriter
ConstIntObjVar(NodeID i, const ICFGNode *node)
Constructor to create empty DummyObjVar (for SVFIRReader/deserialization)
static bool classof(const BaseObjVar *node)
static bool classof(const ValVar *node)
u64_t getZExtValue() const
virtual const std::string toString() const
Get string representation.
static bool classof(const SVFValue *node)
s64_t getSExtValue() const
static bool classof(const ConstDataValVar *node)
friend class SVFIRReader
friend class SVFIRWriter
static bool classof(const ConstIntValVar *)
Methods for support type inquiry through isa, cast, and dyn_cast:
static bool classof(const SVFVar *node)
ConstIntValVar(NodeID i, s64_t sv, u64_t zv, const ICFGNode *icn, const SVFType *svfType)
Constructor.
static bool classof(const GenericPAGNodeTy *node)
static bool classof(const BaseObjVar *node)
static bool classof(const GenericPAGNodeTy *node)
static bool classof(const ConstNullPtrObjVar *)
static bool classof(const ConstDataObjVar *node)
static bool classof(const ObjVar *node)
static bool classof(const SVFVar *node)
virtual const std::string toString() const
Get string representation.
ConstNullPtrObjVar(NodeID i, ObjTypeInfo *ti, const SVFType *svfType, const ICFGNode *node)
Constructor.
static bool classof(const SVFValue *node)
ConstNullPtrObjVar(NodeID i, const ICFGNode *node)
Constructor to create empty DummyObjVar (for SVFIRReader/deserialization)
virtual bool isConstDataOrAggDataButNotNullPtr() const
Check if this variable represents constant data/metadata but not null pointer.
ConstNullPtrValVar(NodeID i, const ICFGNode *icn, const SVFType *svfType)
Constructor.
static bool classof(const ConstNullPtrValVar *)
Methods for support type inquiry through isa, cast, and dyn_cast:
static bool classof(const SVFValue *node)
virtual const std::string toString() const
Get string representation.
static bool classof(const SVFVar *node)
static bool classof(const GenericPAGNodeTy *node)
virtual bool isConstDataOrAggDataButNotNullPtr() const
Check if this variable represents constant data/metadata but not null pointer.
static bool classof(const ValVar *node)
static bool classof(const ConstDataValVar *node)
virtual const std::string toString() const
Get string representation.
virtual bool isPointer() const
Check if this variable represents a pointer.
static bool classof(const DummyObjVar *)
static bool classof(const GenericPAGNodeTy *node)
static bool classof(const SVFVar *node)
DummyObjVar(NodeID i, ObjTypeInfo *ti, const ICFGNode *node, const SVFType *svfType=SVFType::getSVFPtrType())
Constructor.
friend class SVFIRReader
DummyObjVar(NodeID i, const ICFGNode *node)
Constructor to create empty DummyObjVar (for SVFIRReader/deserialization)
static bool classof(const ObjVar *node)
friend class SVFIRWriter
static bool classof(const BaseObjVar *node)
static bool classof(const SVFValue *node)
const std::string getValueName() const
Return name of this node.
static bool classof(const DummyValVar *)
const std::string getValueName() const
Return name of this node.
static bool classof(const ValVar *node)
virtual const std::string toString() const
Get string representation.
DummyValVar(NodeID i, const ICFGNode *node, const SVFType *svfType=SVFType::getSVFPtrType())
Constructor.
friend class SVFIRReader
virtual bool isPointer() const
Check if this variable represents a pointer.
static bool classof(const GenericPAGNodeTy *node)
static bool classof(const SVFVar *node)
friend class SVFIRWriter
static bool classof(const SVFValue *node)
BasicBlockGraph::IDToNodeMapTy::const_iterator const_bb_iterator
const BasicBlockGraph * getBasicBlockGraph() const
const ArgValVar * getArg(u32_t idx) const
virtual const std::string toString() const
Get string representation.
SVFLoopAndDomInfo::BBList BBList
BasicBlockGraph * getBasicBlockGraph()
virtual const FunObjVar * getFunction() const
Get containing function, or null for globals/constants.
virtual ~FunObjVar()
const SVFBasicBlock * getLoopHeader(const BBList &lp) const
u32_t arg_size() const
const Map< const SVFBasicBlock *, BBSet > & getDomFrontierMap() const
const FunObjVar * getDefFunForMultipleModule() const
void getExitBlocksOfLoop(const SVFBasicBlock *bb, BBList &exitbbs) const
virtual bool isIsolatedNode() const
Check if this node is isolated (no edges) in the SVFIR graph.
bool isAddrTaken
return true if this function is an intrinsic function (e.g., llvm.dbg), which does not reside in the ...
bool hasAddressTaken() const
const Map< const SVFBasicBlock *, BBSet > & getDomTreeMap() const
static bool classof(const SVFVar *node)
SVFLoopAndDomInfo::LoopBBs LoopBBs
bool isNotRet
return true if this function is never called
SVFLoopAndDomInfo * loopAndDom
FunctionType, which is different from the type (PointerType) of this SVF Function.
void addArgument(const ArgValVar *arg)
bool postDominate(const SVFBasicBlock *bbKey, const SVFBasicBlock *bbValue) const
const SVFType * getReturnType() const
Returns the FunctionType.
const LoopBBs & getLoopInfo(const SVFBasicBlock *bb) const
bool dominate(const SVFBasicBlock *bbKey, const SVFBasicBlock *bbValue) const
const_bb_iterator begin() const
FunObjVar(NodeID i, const ICFGNode *node)
a 'single' basic block having no successors and containing return instruction in a function
static bool classof(const BaseObjVar *node)
std::vector< const ArgValVar * > allArgs
the basic block graph of this function
const SVFBasicBlock * back() const
bool supVarArg
return true if this function never returns
const SVFBasicBlock * getEntryBlock() const
const SVFBasicBlock * exitBlock
all formal arguments of this function
SVFLoopAndDomInfo::BBSet BBSet
bool isUncalledFunction() const
static bool classof(const SVFValue *node)
friend class SVFIRReader
static bool classof(const GenericPAGNodeTy *node)
const SVFFunctionType * funcType
return true if this function supports variable arguments
const SVFFunctionType * getFunctionType() const
Returns the FunctionType.
bool isLoopHeader(const SVFBasicBlock *bb) const
bool intrinsic
return true if this function does not have a body
const SVFBasicBlock * front() const
static bool classof(const FunObjVar *)
Methods for support type inquiry through isa, cast, and dyn_cast:
const FunObjVar * realDefFun
the loop and dominate information
friend class SVFIRWriter
void setBasicBlockGraph(BasicBlockGraph *graph)
bool isUncalled
return true if this function is address-taken (for indirect call purposes)
bool isIntrinsic() const
const_bb_iterator end() const
bool loopContainsBB(const BBList &lp, const SVFBasicBlock *bb) const
void setExitBlock(SVFBasicBlock *bb)
SVFLoopAndDomInfo * getLoopAndDomInfo() const
bool isVarArg() const
static bool classof(const ObjVar *node)
void setRelDefFun(const FunObjVar *real)
void initFunObjVar(bool decl, bool intrinc, bool addr, bool uncalled, bool notret, bool vararg, const SVFFunctionType *ft, SVFLoopAndDomInfo *ld, const FunObjVar *real, BasicBlockGraph *bbg, const std::vector< const ArgValVar * > &allarg, const SVFBasicBlock *exit)
const std::vector< const SVFBasicBlock * > & getReachableBBs() const
const SVFBasicBlock * getExitBB() const
bool hasBasicBlock() const
BasicBlockGraph * bbGraph
the definition of a function across multiple modules
bool isDeclaration() const
bool hasReturn() const
bool hasLoopInfo(const SVFBasicBlock *bb) const
static bool classof(const FunValVar *)
Methods for support type inquiry through isa, cast, and dyn_cast:
static bool classof(const SVFValue *node)
virtual const std::string toString() const
Get string representation.
static bool classof(const SVFVar *node)
static bool classof(const GenericPAGNodeTy *node)
virtual bool isPointer() const
Check if this variable represents a pointer.
friend class SVFIRReader
static bool classof(const ValVar *node)
const FunObjVar * funObjVar
friend class SVFIRWriter
virtual const FunObjVar * getFunction() const
Get containing function, or null for globals/constants.
iterator begin()
Iterators.
bool addIncomingEdge(EdgeType *inEdge)
Add incoming and outgoing edges.
bool addOutgoingEdge(EdgeType *outEdge)
APOffset getConstantFieldIdx() const
offset of the mem object
const BaseObjVar * getBaseObj() const
virtual bool isConstDataOrAggDataButNotNullPtr() const
Check if this variable represents constant data/metadata but not null pointer.
const BaseObjVar * base
virtual bool isConstDataOrAggData() const
Check if this variable represents constant/aggregate data.
GepObjVar(NodeID i, PNODEK ty=GepObjNode)
Constructor to create empty GepObjVar (for SVFIRReader/deserialization)
NodeID getBaseNode(void) const
Return the base object from which this GEP node came from.
const std::string getValueName() const
Return name of a LLVM value.
virtual const FunObjVar * getFunction() const
Get containing function, or null for globals/constants.
static bool classof(const SVFValue *node)
friend class SVFIRReader
virtual bool isPointer() const
Check if this variable represents a pointer.
virtual const std::string toString() const
Get string representation.
static bool classof(const GepObjVar *)
Methods for support type inquiry through isa, cast, and dyn_cast:
static bool classof(const ObjVar *node)
static bool classof(const GenericPAGNodeTy *node)
friend class SVFIRWriter
static bool classof(const SVFVar *node)
virtual bool ptrInUncalledFunction() const
Check if this pointer is in an uncalled function.
GepObjVar(const BaseObjVar *baseObj, NodeID i, const APOffset &apOffset, PNODEK ty=GepObjNode)
Constructor.
APOffset apOffset
virtual const SVFType * getType() const
Return the type of this gep object.
const ValVar * getBaseNode(void) const
Return the base object from which this GEP node came from.
AccessPath ap
static bool classof(const GenericPAGNodeTy *node)
virtual bool isConstDataOrAggDataButNotNullPtr() const
Check if this variable represents constant data/metadata but not null pointer.
static bool classof(const SVFValue *node)
static bool classof(const GepValVar *)
Methods for support type inquiry through isa, cast, and dyn_cast:
const SVFType * getType() const
const SVFType * gepValType
virtual bool ptrInUncalledFunction() const
Check if this pointer is in an uncalled function.
virtual bool isConstDataOrAggData() const
Check if this variable represents constant/aggregate data.
const ValVar * base
static bool classof(const SVFVar *node)
virtual bool isPointer() const
Check if this variable represents a pointer.
friend class SVFIRReader
virtual const FunObjVar * getFunction() const
Get containing function, or null for globals/constants.
GepValVar(NodeID i)
Constructor to create empty GeValVar (for SVFIRReader/deserialization)
friend class SVFIRWriter
virtual const std::string toString() const
Get string representation.
APOffset getConstantFieldIdx() const
offset of the base value variable
const std::string getValueName() const
Return name of a LLVM value.
static bool classof(const ValVar *node)
GlobalObjVar(NodeID i, ObjTypeInfo *ti, const SVFType *svfType, const ICFGNode *node, PNODEK ty=GlobalObjNode)
Constructor.
static bool classof(const BaseObjVar *node)
static bool classof(const GenericPAGNodeTy *node)
friend class SVFIRReader
virtual const std::string toString() const
Get string representation.
static bool classof(const SVFVar *node)
static bool classof(const GlobalObjVar *)
Methods for support type inquiry through isa, cast, and dyn_cast:
friend class SVFIRWriter
static bool classof(const ObjVar *node)
static bool classof(const SVFValue *node)
GlobalObjVar(NodeID i, const ICFGNode *node)
Constructor to create empty ObjVar (for SVFIRReader/deserialization)
GlobalValVar(NodeID i, const ICFGNode *icn, const SVFType *svfType)
Constructor.
static bool classof(const GlobalValVar *)
Methods for support type inquiry through isa, cast, and dyn_cast:
virtual const std::string toString() const
Get string representation.
static bool classof(const ValVar *node)
static bool classof(const GenericPAGNodeTy *node)
friend class SVFIRReader
static bool classof(const SVFValue *node)
friend class SVFIRWriter
static bool classof(const SVFVar *node)
Class representing a heap object variable in the SVFIR.
HeapObjVar(NodeID i, ObjTypeInfo *ti, const SVFType *svfType, const ICFGNode *node)
Constructor.
static bool classof(const HeapObjVar *)
Methods for support type inquiry through isa, cast, and dyn_cast:
static bool classof(const SVFVar *node)
HeapObjVar(NodeID i, const ICFGNode *node)
Constructor to create heap object var.
static bool classof(const GenericPAGNodeTy *node)
static bool classof(const SVFValue *node)
const std::string getValueName() const
Return name of a LLVM value.
friend class SVFIRReader
static bool classof(const ObjVar *node)
virtual const std::string toString() const
Get string representation.
friend class SVFIRWriter
static bool classof(const BaseObjVar *node)
bool isConstantStruct()
bool isConstDataOrAggData()
u32_t getMaxFieldOffsetLimit()
Get max field offset limit.
bool isConstDataOrConstGlobal()
u32_t getNumOfElements() const
Get the number of elements of this object.
const SVFType * getType() const
Get LLVM type.
Definition ObjTypeInfo.h:98
bool isConstantByteSize() const
Check if byte size is a const value.
void setMaxFieldOffsetLimit(u32_t limit)
Get max field offset limit.
bool isFunction()
Object attributes.
u32_t getByteSizeOfObj() const
Get the byte size of this object.
void setNumOfElements(u32_t num)
Set the number of elements of this object.
ObjVar(NodeID i, PNODEK ty=ObjNode)
Constructor to create an empty ObjVar (for SVFIRReader/deserialization)
virtual const std::string toString() const
Get string representation.
static bool classof(const SVFValue *node)
static bool classof(const GenericPAGNodeTy *node)
static bool classof(const SVFVar *node)
friend class SVFIRReader
ObjVar(NodeID i, const SVFType *svfType, PNODEK ty=ObjNode)
Constructor.
static bool classof(const ObjVar *)
Methods for support type inquiry through isa, cast, and dyn_cast:
virtual const std::string getValueName() const
Return name of a LLVM value.
friend class SVFIRWriter
const FunObjVar * callGraphNode
static bool classof(const ValVar *node)
static bool classof(const GenericPAGNodeTy *node)
static bool classof(const SVFValue *node)
const FunObjVar * getCallGraphNode() const
virtual bool isPointer() const
Check if this variable represents a pointer.
static bool classof(const SVFVar *node)
friend class SVFIRReader
const std::string getValueName() const
Return name of a LLVM value.
friend class SVFIRWriter
RetValPN(NodeID i)
Constructor to create empty RetValPN (for SVFIRReader/deserialization)
virtual const std::string toString() const
Get string representation.
static bool classof(const RetValPN *)
virtual const FunObjVar * getFunction() const
Get containing function, or null for globals/constants.
const SVFType * getReturnType() const
Definition SVFType.h:339
const LoopBBs & getLoopInfo(const SVFBasicBlock *bb) const
Definition SVFValue.cpp:39
const Map< const SVFBasicBlock *, BBSet > & getDomFrontierMap() const
Map< const SVFBasicBlock *, BBSet > & getDomTreeMap()
std::vector< const SVFBasicBlock * > BBList
bool dominate(const SVFBasicBlock *bbKey, const SVFBasicBlock *bbValue) const
Definition SVFValue.cpp:65
bool isLoopHeader(const SVFBasicBlock *bb) const
Definition SVFValue.cpp:152
void getExitBlocksOfLoop(const SVFBasicBlock *bb, BBList &exitbbs) const
Definition SVFValue.cpp:46
const BBList & getReachableBBs() const
const SVFBasicBlock * getLoopHeader(const LoopBBs &lp) const
bool hasLoopInfo(const SVFBasicBlock *bb) const
Set< const SVFBasicBlock * > BBSet
bool loopContainsBB(const LoopBBs &lp, const SVFBasicBlock *bb) const
bool postDominate(const SVFBasicBlock *bbKey, const SVFBasicBlock *bbValue) const
Definition SVFValue.cpp:96
GenericNode< SVFVar, SVFStmt >::GEdgeSetTy SVFStmtSetTy
PAGEdgeToSetMapTy KindToSVFStmtMapTy
static SVFType * getSVFPtrType()
Definition SVFType.h:178
bool isPointerTy() const
Definition SVFType.h:249
@ ConstNullptrObjNode
Definition SVFValue.h:97
@ ConstNullptrValNode
Definition SVFValue.h:78
static bool isConstantDataValVar(GNodeK n)
Definition SVFValue.h:246
static bool isObjVarKinds(GNodeK n)
Definition SVFValue.h:254
static bool isBaseObjVarKinds(GNodeK n)
Definition SVFValue.h:262
GNodeK getNodeKind() const
Get node kind.
Definition SVFValue.h:164
NodeID id
Node ID.
Definition SVFValue.h:203
virtual const std::string & getName() const
Definition SVFValue.h:184
static bool isConstantDataObjVarKinds(GNodeK n)
Definition SVFValue.h:270
static bool isValVarKinds(GNodeK n)
Definition SVFValue.h:237
static bool isSVFVarKind(GNodeK n)
Definition SVFValue.h:228
const SVFType * type
SVF type.
Definition SVFValue.h:205
SVFStmt::SVFStmtSetTy & getOutgoingEdges(SVFStmt::PEDGEK kind)
SVFStmt::KindToSVFStmtMapTy InEdgeKindToSetMap
Maps tracking incoming and outgoing edges by kind.
static bool classof(const SVFValue *node)
void addOutEdge(SVFStmt *outEdge)
friend OutStream & operator<<(OutStream &o, const SVFVar &node)
Stream operator overload for output.
SVFStmt::KindToSVFStmtMapTy OutEdgeKindToSetMap
virtual bool isConstDataOrAggDataButNotNullPtr() const
Check if this variable represents constant data/metadata but not null pointer.
virtual bool isPointer() const
Check if this variable represents a pointer.
SVFVar(NodeID i, PNODEK k)
Empty constructor for deserialization.
virtual bool ptrInUncalledFunction() const
Check if this pointer is in an uncalled function.
virtual const std::string getValueName() const =0
Get string name of the represented LLVM value.
bool hasIncomingVariantGepEdge() const
Check for incoming variable field GEP edges.
bool hasIncomingEdges(SVFStmt::PEDGEK kind) const
SVFStmt::SVFStmtSetTy & getIncomingEdges(SVFStmt::PEDGEK kind)
Edge accessors and checkers.
GNodeK PNODEK
SVFStmt::SVFStmtSetTy::iterator getIncomingEdgesBegin(SVFStmt::PEDGEK kind) const
Edge iterators.
void addInEdge(SVFStmt *inEdge)
Edge management methods.
friend class SVFIRReader
bool hasOutgoingEdges(SVFStmt::PEDGEK kind) const
SVFStmt::SVFStmtSetTy::iterator getOutgoingEdgesBegin(SVFStmt::PEDGEK kind) const
virtual const FunObjVar * getFunction() const
Get containing function, or null for globals/constants.
void dump() const
Debug dump to console.
SVFStmt::SVFStmtSetTy::iterator getOutgoingEdgesEnd(SVFStmt::PEDGEK kind) const
virtual ~SVFVar()
Virtual destructor.
friend class SVFIRWriter
static bool classof(const SVFVar *)
Type checking support for LLVM-style RTTI.
virtual bool isIsolatedNode() const
Check if this node is isolated (no edges) in the SVFIR graph.
virtual const std::string toString() const
Get string representation.
virtual bool isConstDataOrAggData() const
Check if this variable represents constant/aggregate data.
s64_t GEdgeKind
SVFStmt::SVFStmtSetTy::iterator getIncomingEdgesEnd(SVFStmt::PEDGEK kind) const
static bool classof(const GenericPAGNodeTy *node)
Represents a stack-allocated object variable in the SVFIR (SVF Intermediate Representation) @inherits...
const std::string getValueName() const
Return name of a LLVM value.
static bool classof(const SVFVar *node)
StackObjVar(NodeID i, ObjTypeInfo *ti, const SVFType *svfType, const ICFGNode *node)
Constructor.
static bool classof(const ObjVar *node)
static bool classof(const BaseObjVar *node)
static bool classof(const GenericPAGNodeTy *node)
friend class SVFIRReader
friend class SVFIRWriter
static bool classof(const SVFValue *node)
StackObjVar(NodeID i, const ICFGNode *node)
Constructor to create stack object var.
virtual const std::string toString() const
Get string representation.
static bool classof(const StackObjVar *)
Methods for support type inquiry through isa, cast, and dyn_cast:
Definition VFG.h:51
const ICFGNode * getICFGNode() const
static bool classof(const GenericPAGNodeTy *node)
virtual const std::string toString() const
Get string representation.
virtual const FunObjVar * getFunction() const
Get containing function, or null for globals/constants.
ValVar(NodeID i, PNODEK ty=ValNode)
Constructor to create an empty ValVar (for SVFIRReader/deserialization)
static bool classof(const SVFVar *node)
friend class SVFIRReader
ValVar(NodeID i, const SVFType *svfType, const ICFGNode *node, PNODEK ty=ValNode)
Constructor.
friend class SVFIRWriter
static bool classof(const SVFValue *node)
static bool classof(const ValVar *)
Methods for support type inquiry through isa, cast, and dyn_cast:
const ICFGNode * icfgNode
const std::string getValueName() const
Return name of a LLVM value.
virtual bool isPointer() const
Check if this variable represents a pointer.
VarArgValPN(NodeID i)
Constructor to create empty VarArgValPN (for SVFIRReader/deserialization)
VarArgValPN(NodeID i, const FunObjVar *node, const SVFType *svfType, const ICFGNode *icn)
Constructor.
static bool classof(const SVFValue *node)
static bool classof(const GenericPAGNodeTy *node)
virtual const std::string toString() const
Get string representation.
static bool classof(const VarArgValPN *)
static bool classof(const SVFVar *node)
const FunObjVar * callGraphNode
const std::string getValueName() const
Return name of a LLVM value.
friend class SVFIRReader
friend class SVFIRWriter
virtual const FunObjVar * getFunction() const
Get containing function, or null for globals/constants.
static bool classof(const ValVar *node)
for isBitcode
Definition BasicTypes.h:68
unsigned long long u64_t
Definition GeneralType.h:49
GenericNode< SVFVar, SVFStmt > GenericPAGNodeTy
u32_t NodeID
Definition GeneralType.h:56
s64_t APOffset
Definition GeneralType.h:60
std::ostream OutStream
Definition GeneralType.h:46
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74
unsigned u32_t
Definition GeneralType.h:47
signed long long s64_t
Definition GeneralType.h:50