Static Value-Flow Analysis
Loading...
Searching...
No Matches
VFGNode.h
Go to the documentation of this file.
1//===- VFGNode.h ----------------------------------------------------------------//
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 * VFGNode.h
25 *
26 * Created on: 18 Sep. 2018
27 * Author: Yulei Sui
28 */
29
30#ifndef INCLUDE_UTIL_VFGNODE_H_
31#define INCLUDE_UTIL_VFGNODE_H_
32
33#include "Graphs/GenericGraph.h"
34#include "Graphs/SVFGEdge.h"
35#include "Graphs/ICFGNode.h"
36#include "SVFIR/SVFIR.h"
37
38namespace SVF
39{
40
47{
48
49public:
53
54 typedef VFGEdge::VFGEdgeSetTy::iterator iterator;
55 typedef VFGEdge::VFGEdgeSetTy::const_iterator const_iterator;
58
59public:
65
67 virtual const ICFGNode* getICFGNode() const
68 {
69 return icfgNode;
70 }
71
73 virtual void setICFGNode(const ICFGNode* node )
74 {
75 icfgNode = node;
76 }
77
79 virtual const FunObjVar* getFun() const
80 {
81 return icfgNode->getFun();
82 }
83
85 virtual const SVFVar* getValue() const
86 {
87 return nullptr;
88 }
89
91 virtual const NodeBS getDefSVFVars() const = 0;
92
94
95 friend OutStream& operator<< (OutStream &o, const VFGNode &node)
96 {
97 o << node.toString();
98 return o;
99 }
101
102 virtual const std::string toString() const;
103
104 static inline bool classof(const VFGNode *)
105 {
106 return true;
107 }
108
109 static inline bool classof(const GenericVFGNodeTy * node)
110 {
111 return isVFGNodeKinds(node->getNodeKind());
112 }
113
114
115 static inline bool classof(const SVFValue* node)
116 {
117 return isVFGNodeKinds(node->getNodeKind());
118 }
119
120protected:
122};
123
127class StmtVFGNode : public VFGNode
128{
129
130private:
132
133public:
136 {
137 }
138
140 inline bool isPTANode() const
141 {
142 return pagEdge->isPTAEdge();
143 }
144
147 inline const PAGEdge* getPAGEdge() const
148 {
149 return pagEdge;
150 }
151
152 inline NodeID getPAGSrcNodeID() const
153 {
154 return pagEdge->getSrcID();
155 }
156
157 inline NodeID getPAGDstNodeID() const
158 {
159 return pagEdge->getDstID();
160 }
161
162 inline PAGNode* getPAGSrcNode() const
163 {
164 return pagEdge->getSrcNode();
165 }
166
167 inline PAGNode* getPAGDstNode() const
168 {
169 return pagEdge->getDstNode();
170 }
172
174
175 static inline bool classof(const StmtVFGNode *)
176 {
177 return true;
178 }
179 static inline bool classof(const VFGNode *node)
180 {
181 return isStmtVFGNodeKinds(node->getNodeKind());
182 }
183 static inline bool classof(const GenericVFGNodeTy *node)
184 {
185 return isStmtVFGNodeKinds(node->getNodeKind());
186 }
187 static inline bool classof(const SVFValue*node)
188 {
189 return isStmtVFGNodeKinds(node->getNodeKind());
190 }
192
193 const SVFVar* getValue() const override;
194 const std::string toString() const override;
195};
196
201{
202private:
205 void operator=(const LoadVFGNode &);
206
207public:
210 {
211
212 }
214
215 static inline bool classof(const LoadVFGNode *)
216 {
217 return true;
218 }
219 static inline bool classof(const StmtVFGNode *node)
220 {
221 return node->getNodeKind() == Load;
222 }
223 static inline bool classof(const VFGNode *node)
224 {
225 return node->getNodeKind() == Load;
226 }
227 static inline bool classof(const GenericVFGNodeTy *node)
228 {
229 return node->getNodeKind() == Load;
230 }
231 static inline bool classof(const SVFValue*node)
232 {
233 return node->getNodeKind() == Load;
234 }
236
237 const NodeBS getDefSVFVars() const override;
238
239 const std::string toString() const override;
240};
241
246{
247private:
250 void operator=(const StoreVFGNode &);
251
252public:
255 {
256
257 }
259
260 static inline bool classof(const StoreVFGNode *)
261 {
262 return true;
263 }
264 static inline bool classof(const StmtVFGNode *node)
265 {
266 return node->getNodeKind() == Store;
267 }
268 static inline bool classof(const VFGNode *node)
269 {
270 return node->getNodeKind() == Store;
271 }
272 static inline bool classof(const GenericVFGNodeTy *node)
273 {
274 return node->getNodeKind() == Store;
275 }
276 static inline bool classof(const SVFValue*node)
277 {
278 return node->getNodeKind() == Store;
279 }
281
282 const NodeBS getDefSVFVars() const override;
283
284 const std::string toString() const override;
285};
286
291{
292private:
295 void operator=(const CopyVFGNode &);
296
297public:
300 {
301
302 }
304
305 static inline bool classof(const CopyVFGNode *)
306 {
307 return true;
308 }
309 static inline bool classof(const StmtVFGNode *node)
310 {
311 return node->getNodeKind() == Copy;
312 }
313 static inline bool classof(const VFGNode *node)
314 {
315 return node->getNodeKind() == Copy;
316 }
317 static inline bool classof(const GenericVFGNodeTy *node)
318 {
319 return node->getNodeKind() == Copy;
320 }
321 static inline bool classof(const SVFValue*node)
322 {
323 return node->getNodeKind() == Copy;
324 }
326
327 const NodeBS getDefSVFVars() const override;
328
329 const std::string toString() const override;
330};
331
332
337class CmpVFGNode: public VFGNode
338{
339public:
341protected:
342 const PAGNode* res;
344
345private:
348 void operator=(const CmpVFGNode &);
349
350public:
354
355 static inline bool classof(const CmpVFGNode *)
356 {
357 return true;
358 }
359 static inline bool classof(const VFGNode *node)
360 {
361 return node->getNodeKind() == Cmp;
362 }
363 static inline bool classof(const GenericVFGNodeTy *node)
364 {
365 return node->getNodeKind() == Cmp;
366 }
367 static inline bool classof(const SVFValue*node)
368 {
369 return node->getNodeKind() == Cmp;
370 }
372
374 inline const PAGNode* getOpVer(u32_t pos) const
375 {
376 OPVers::const_iterator it = opVers.find(pos);
377 assert(it!=opVers.end() && "version is nullptr, did not rename?");
378 return it->second;
379 }
380 inline void setOpVer(u32_t pos, const PAGNode* node)
381 {
382 opVers[pos] = node;
383 }
384 inline const PAGNode* getRes() const
385 {
386 return res;
387 }
388 inline u32_t getOpVerNum() const
389 {
390 return opVers.size();
391 }
392 inline OPVers::const_iterator opVerBegin() const
393 {
394 return opVers.begin();
395 }
396 inline OPVers::const_iterator opVerEnd() const
397 {
398 return opVers.end();
399 }
401
402 const NodeBS getDefSVFVars() const override;
403
404 const SVFVar* getValue() const override;
405
406
407 const std::string toString() const override;
408};
409
410
415{
416public:
418protected:
419 const PAGNode* res;
421
422private:
426
427public:
431
432 static inline bool classof(const BinaryOPVFGNode *)
433 {
434 return true;
435 }
436 static inline bool classof(const VFGNode *node)
437 {
438 return node->getNodeKind() == BinaryOp;
439 }
440 static inline bool classof(const GenericVFGNodeTy *node)
441 {
442 return node->getNodeKind() == BinaryOp;
443 }
444 static inline bool classof(const SVFValue*node)
445 {
446 return node->getNodeKind() == BinaryOp;
447 }
449
451 inline const PAGNode* getOpVer(u32_t pos) const
452 {
453 OPVers::const_iterator it = opVers.find(pos);
454 assert(it!=opVers.end() && "version is nullptr, did not rename?");
455 return it->second;
456 }
457 inline void setOpVer(u32_t pos, const PAGNode* node)
458 {
459 opVers[pos] = node;
460 }
461 inline const PAGNode* getRes() const
462 {
463 return res;
464 }
465 inline u32_t getOpVerNum() const
466 {
467 return opVers.size();
468 }
469 inline OPVers::const_iterator opVerBegin() const
470 {
471 return opVers.begin();
472 }
473 inline OPVers::const_iterator opVerEnd() const
474 {
475 return opVers.end();
476 }
478
479 const NodeBS getDefSVFVars() const override;
480
481 const SVFVar* getValue() const override;
482 const std::string toString() const override;
483};
484
489{
490public:
492protected:
493 const PAGNode* res;
495
496private:
499 void operator=(const UnaryOPVFGNode &);
500
501public:
505
506 static inline bool classof(const UnaryOPVFGNode *)
507 {
508 return true;
509 }
510 static inline bool classof(const VFGNode *node)
511 {
512 return node->getNodeKind() == UnaryOp;
513 }
514 static inline bool classof(const GenericVFGNodeTy *node)
515 {
516 return node->getNodeKind() == UnaryOp;
517 }
518 static inline bool classof(const SVFValue*node)
519 {
520 return node->getNodeKind() == UnaryOp;
521 }
523
525 inline const PAGNode* getOpVer(u32_t pos) const
526 {
527 OPVers::const_iterator it = opVers.find(pos);
528 assert(it!=opVers.end() && "version is nullptr, did not rename?");
529 return it->second;
530 }
531 inline void setOpVer(u32_t pos, const PAGNode* node)
532 {
533 opVers[pos] = node;
534 }
535 inline const PAGNode* getRes() const
536 {
537 return res;
538 }
539 inline const PAGNode* getOpVar() const
540 {
541 assert(getOpVerNum()==1 && "UnaryNode can only have one operand!");
542 return getOpVer(0);
543 }
544 inline u32_t getOpVerNum() const
545 {
546 return opVers.size();
547 }
548 inline OPVers::const_iterator opVerBegin() const
549 {
550 return opVers.begin();
551 }
552 inline OPVers::const_iterator opVerEnd() const
553 {
554 return opVers.end();
555 }
557
558 const NodeBS getDefSVFVars() const override;
559
560 virtual const std::string toString() const override;
561};
562
563/*
564* Branch VFGNode including if/else and switch statements
565*/
567{
568private:
571 void operator=(const BranchVFGNode &);
573public:
577
578 static inline bool classof(const BranchVFGNode *)
579 {
580 return true;
581 }
582 static inline bool classof(const VFGNode *node)
583 {
584 return node->getNodeKind() == Branch;
585 }
586 static inline bool classof(const GenericVFGNodeTy *node)
587 {
588 return node->getNodeKind() == Branch;
589 }
590 static inline bool classof(const SVFValue*node)
591 {
592 return node->getNodeKind() == Branch;
593 }
595
598 {
599 return brstmt;
600 }
604 {
605 return brstmt->getNumSuccessors();
606 }
608 {
609 return brstmt->getSuccessors();
610 }
612 {
613 return brstmt->getSuccessor(i);
614 }
616
617 const NodeBS getDefSVFVars() const override;
618
619 virtual const std::string toString() const override;
620};
621
626{
627private:
630 void operator=(const GepVFGNode &);
631
632public:
635 {
636
637 }
639
640 static inline bool classof(const GepVFGNode *)
641 {
642 return true;
643 }
644 static inline bool classof(const StmtVFGNode *node)
645 {
646 return node->getNodeKind() == Gep;
647 }
648 static inline bool classof(const VFGNode *node)
649 {
650 return node->getNodeKind() == Gep;
651 }
652 static inline bool classof(const GenericVFGNodeTy *node)
653 {
654 return node->getNodeKind() == Gep;
655 }
656 static inline bool classof(const SVFValue*node)
657 {
658 return node->getNodeKind() == Gep;
659 }
661
662 const NodeBS getDefSVFVars() const override;
663
664 const std::string toString() const override;
665};
666
667/*
668 * ICFG Node stands for a top level pointer ssa phi node or a formal parameter or a return parameter
669 */
670class PHIVFGNode : public VFGNode
671{
672
673public:
675protected:
676 const PAGNode* res;
678
679public:
681 PHIVFGNode(NodeID id, const PAGNode* r,VFGNodeK k = TPhi);
682
684 inline bool isPTANode() const
685 {
686 return res->isPointer();
687 }
688
690
691 inline const PAGNode* getOpVer(u32_t pos) const
692 {
693 OPVers::const_iterator it = opVers.find(pos);
694 assert(it!=opVers.end() && "version is nullptr, did not rename?");
695 return it->second;
696 }
697 inline void setOpVer(u32_t pos, const PAGNode* node)
698 {
699 opVers[pos] = node;
700 }
701 inline const PAGNode* getRes() const
702 {
703 return res;
704 }
705 inline u32_t getOpVerNum() const
706 {
707 return opVers.size();
708 }
709 inline OPVers::const_iterator opVerBegin() const
710 {
711 return opVers.begin();
712 }
713 inline OPVers::const_iterator opVerEnd() const
714 {
715 return opVers.end();
716 }
718
720
721 static inline bool classof(const PHIVFGNode *)
722 {
723 return true;
724 }
725 static inline bool classof(const VFGNode *node)
726 {
727 return isPHIVFGNodeKinds(node->getNodeKind());
728 }
729 static inline bool classof(const GenericVFGNodeTy *node)
730 {
731 return isPHIVFGNodeKinds(node->getNodeKind());
732 }
733 static inline bool classof(const SVFValue*node)
734 {
735 return isPHIVFGNodeKinds(node->getNodeKind());
736 }
738
739 const NodeBS getDefSVFVars() const override;
740
741 const SVFVar* getValue() const override;
742 const std::string toString() const override;
743};
744
745
746/*
747 * Intra LLVM PHI Node
748 */
750{
751
752public:
754
755private:
757public:
760 {
761 }
762
763 inline const ICFGNode* getOpIncomingBB(u32_t pos) const
764 {
765 OPIncomingBBs::const_iterator it = opIncomingBBs.find(pos);
766 assert(it!=opIncomingBBs.end() && "version is nullptr, did not rename?");
767 return it->second;
768 }
769 inline void setOpVerAndBB(u32_t pos, const PAGNode* node, const ICFGNode* bb)
770 {
771 opVers[pos] = node;
772 opIncomingBBs[pos] = bb;
773 }
774
776
777 static inline bool classof(const IntraPHIVFGNode*)
778 {
779 return true;
780 }
781 static inline bool classof(const PHIVFGNode *node)
782 {
783 return node->getNodeKind() == TIntraPhi;
784 }
785 static inline bool classof(const VFGNode *node)
786 {
787 return node->getNodeKind() == TIntraPhi;
788 }
789 static inline bool classof(const GenericVFGNodeTy *node)
790 {
791 return node->getNodeKind() == TIntraPhi;
792 }
793 static inline bool classof(const SVFValue*node)
794 {
795 return node->getNodeKind() == TIntraPhi;
796 }
798
799 const std::string toString() const override;
800};
801
802
804{
805private:
808 void operator=(const AddrVFGNode &);
809
810public:
813 {
814
815 }
817
818 static inline bool classof(const AddrVFGNode *)
819 {
820 return true;
821 }
822 static inline bool classof(const StmtVFGNode *node)
823 {
824 return node->getNodeKind() == Addr;
825 }
826 static inline bool classof(const VFGNode *node)
827 {
828 return node->getNodeKind() == Addr;
829 }
830 static inline bool classof(const GenericVFGNodeTy *node)
831 {
832 return node->getNodeKind() == Addr;
833 }
834 static inline bool classof(const SVFValue*node)
835 {
836 return node->getNodeKind() == Addr;
837 }
839
840 const NodeBS getDefSVFVars() const override;
841
842 const std::string toString() const override;
843};
844
845
847{
848
849protected:
851
852public:
855 {
856 }
857
859 inline bool isPTANode() const
860 {
861 return param->isPointer();
862 }
863
865
866 static inline bool classof(const ArgumentVFGNode *)
867 {
868 return true;
869 }
870 static inline bool classof(const VFGNode *node)
871 {
872 return isArgumentVFGNodeKinds(node->getNodeKind());
873 }
874 static inline bool classof(const GenericVFGNodeTy *node)
875 {
876 return isArgumentVFGNodeKinds(node->getNodeKind());
877 }
878 static inline bool classof(const SVFValue*node)
879 {
880 return isArgumentVFGNodeKinds(node->getNodeKind());
881 }
883
884 const SVFVar* getValue() const override;
885 const std::string toString() const override;
886};
887
888/*
889 * ICFG Node stands for actual parameter node (top level pointers)
890 */
892{
893private:
895public:
899 {
900 }
901
903 inline const CallICFGNode* getCallSite() const
904 {
905 return cs;
906 }
907
909 inline const PAGNode* getParam() const
910 {
911 return param;
912 }
913
915
916 static inline bool classof(const ActualParmVFGNode *)
917 {
918 return true;
919 }
920 static inline bool classof(const ArgumentVFGNode *node)
921 {
922 return node->getNodeKind() == AParm;
923 }
924 static inline bool classof(const VFGNode *node)
925 {
926 return node->getNodeKind() == AParm;
927 }
928 static inline bool classof(const GenericVFGNodeTy *node)
929 {
930 return node->getNodeKind() == AParm;
931 }
932 static inline bool classof(const SVFValue*node)
933 {
934 return node->getNodeKind() == AParm;
935 }
937
938 const NodeBS getDefSVFVars() const override;
939
940 const std::string toString() const override;
941};
942
943
944/*
945 * ICFG Node stands for formal parameter node (top level pointers)
946 */
948{
949private:
952
953public:
957 {
958 }
959
961 inline const PAGNode* getParam() const
962 {
963 return param;
964 }
965
967 inline const FunObjVar* getFun() const override
968 {
969 return fun;
970 }
972 inline void addCallPE(const CallPE* call)
973 {
974 callPEs.insert(call);
975 }
978 inline CallPESet::const_iterator callPEBegin() const
979 {
980 return callPEs.begin();
981 }
982 inline CallPESet::const_iterator callPEEnd() const
983 {
984 return callPEs.end();
985 }
987
989
990 static inline bool classof(const FormalParmVFGNode *)
991 {
992 return true;
993 }
994 static inline bool classof(const VFGNode *node)
995 {
996 return node->getNodeKind() == FParm;
997 }
998 static inline bool classof(const ArgumentVFGNode *node)
999 {
1000 return node->getNodeKind() == FParm;
1001 }
1002 static inline bool classof(const GenericVFGNodeTy *node)
1003 {
1004 return node->getNodeKind() == FParm;
1005 }
1006 static inline bool classof(const SVFValue*node)
1007 {
1008 return node->getNodeKind() == FParm;
1009 }
1011
1012 const NodeBS getDefSVFVars() const override;
1013
1014 const std::string toString() const override;
1015};
1016
1021{
1022private:
1024
1028
1029public:
1033 {
1034 }
1036 inline const CallICFGNode* getCallSite() const
1037 {
1038 return cs;
1039 }
1041 inline const FunObjVar* getCaller() const
1042 {
1043 return cs->getCaller();
1044 }
1046 inline const PAGNode* getRev() const
1047 {
1048 return param;
1049 }
1051
1052 static inline bool classof(const ActualRetVFGNode *)
1053 {
1054 return true;
1055 }
1056 static inline bool classof(const ArgumentVFGNode *node)
1057 {
1058 return node->getNodeKind() == ARet;
1059 }
1060 static inline bool classof(const VFGNode *node)
1061 {
1062 return node->getNodeKind() == ARet;
1063 }
1064 static inline bool classof(const GenericVFGNodeTy *node)
1065 {
1066 return node->getNodeKind() == ARet;
1067 }
1068 static inline bool classof(const SVFValue*node)
1069 {
1070 return node->getNodeKind() == ARet;
1071 }
1073
1074 const NodeBS getDefSVFVars() const override;
1075
1076 const std::string toString() const override;
1077};
1078
1083{
1084private:
1087
1091
1092public:
1094 FormalRetVFGNode(NodeID id, const PAGNode* n, const FunObjVar* f);
1095
1097 inline const PAGNode* getRet() const
1098 {
1099 return param;
1100 }
1102 inline const FunObjVar* getFun() const override
1103 {
1104 return fun;
1105 }
1107 inline void addRetPE(const RetPE* retPE)
1108 {
1109 retPEs.insert(retPE);
1110 }
1112 inline RetPESet::const_iterator retPEBegin() const
1113 {
1114 return retPEs.begin();
1115 }
1116 inline RetPESet::const_iterator retPEEnd() const
1117 {
1118 return retPEs.end();
1119 }
1121
1122 static inline bool classof(const FormalRetVFGNode )
1123 {
1124 return true;
1125 }
1126 static inline bool classof(const VFGNode *node)
1127 {
1128 return node->getNodeKind() == FRet;
1129 }
1130 static inline bool classof(const ArgumentVFGNode *node)
1131 {
1132 return node->getNodeKind() == FRet;
1133 }
1134 static inline bool classof(const GenericVFGNodeTy *node)
1135 {
1136 return node->getNodeKind() == FRet;
1137 }
1138 static inline bool classof(const SVFValue*node)
1139 {
1140 return node->getNodeKind() == FRet;
1141 }
1143
1144 const NodeBS getDefSVFVars() const override;
1145
1146 const std::string toString() const override;
1147};
1148
1149/*
1150 * Inter LLVM PHI node (formal parameter)
1151 */
1153{
1154
1155public:
1159 InterPHIVFGNode(NodeID id, const ActualRetVFGNode* ar) : PHIVFGNode(id, ar->getRev(), TInterPhi), fun(ar->getCaller()),callInst(ar->getCallSite()) {}
1160
1161 inline bool isFormalParmPHI() const
1162 {
1163 return (fun!=nullptr) && (callInst == nullptr);
1164 }
1165
1166 inline bool isActualRetPHI() const
1167 {
1168 return (fun!=nullptr) && (callInst != nullptr);
1169 }
1170
1171 inline const FunObjVar* getFun() const override
1172 {
1173 assert((isFormalParmPHI() || isActualRetPHI()) && "expect a formal parameter phi");
1174 return fun;
1175 }
1176
1177 inline const CallICFGNode* getCallSite() const
1178 {
1179 assert(isActualRetPHI() && "expect a actual return phi");
1180 return callInst;
1181 }
1182
1184
1185 static inline bool classof(const InterPHIVFGNode*)
1186 {
1187 return true;
1188 }
1189 static inline bool classof(const PHIVFGNode *node)
1190 {
1191 return node->getNodeKind() == TInterPhi;
1192 }
1193 static inline bool classof(const VFGNode *node)
1194 {
1195 return node->getNodeKind() == TInterPhi;
1196 }
1197 static inline bool classof(const GenericVFGNodeTy *node)
1198 {
1199 return node->getNodeKind() == TInterPhi;
1200 }
1201 static inline bool classof(const SVFValue*node)
1202 {
1203 return node->getNodeKind() == TInterPhi;
1204 }
1206
1207 const std::string toString() const override;
1208
1209private:
1212};
1213
1214
1215
1220{
1221private:
1223public:
1226 {
1227
1228 }
1230 inline bool isPTANode() const
1231 {
1232 return node->isPointer();
1233 }
1235 const PAGNode* getPAGNode() const
1236 {
1237 return node;
1238 }
1240
1241 static inline bool classof(const NullPtrVFGNode *)
1242 {
1243 return true;
1244 }
1245 static inline bool classof(const VFGNode *node)
1246 {
1247 return node->getNodeKind() == NPtr;
1248 }
1249 static inline bool classof(const GenericVFGNodeTy *node)
1250 {
1251 return node->getNodeKind() == NPtr;
1252 }
1253 static inline bool classof(const SVFValue*node)
1254 {
1255 return node->getNodeKind() == NPtr;
1256 }
1258
1259 const NodeBS getDefSVFVars() const override;
1260
1261 const std::string toString() const override;
1262};
1263
1264} // End namespace SVF
1265
1266#endif /* INCLUDE_UTIL_VFGNODE_H_ */
cJSON * p
Definition cJSON.cpp:2559
copy
Definition cJSON.cpp:414
cJSON * n
Definition cJSON.cpp:2558
static bool classof(const SVFValue *node)
Definition VFGNode.h:932
static bool classof(const ActualParmVFGNode *)
Methods for support type inquiry through isa, cast, and dyn_cast:
Definition VFGNode.h:916
const std::string toString() const override
Definition VFG.cpp:272
const CallICFGNode * cs
Definition VFGNode.h:894
ActualParmVFGNode(NodeID id, const PAGNode *n, const CallICFGNode *c)
Constructor.
Definition VFGNode.h:897
static bool classof(const GenericVFGNodeTy *node)
Definition VFGNode.h:928
const PAGNode * getParam() const
Return parameter.
Definition VFGNode.h:909
static bool classof(const ArgumentVFGNode *node)
Definition VFGNode.h:920
const NodeBS getDefSVFVars() const override
Return the left hand side SVF Vars.
Definition VFG.cpp:265
static bool classof(const VFGNode *node)
Definition VFGNode.h:924
const CallICFGNode * getCallSite() const
Return callsite.
Definition VFGNode.h:903
static bool classof(const ArgumentVFGNode *node)
Definition VFGNode.h:1056
const CallICFGNode * getCallSite() const
Return callsite.
Definition VFGNode.h:1036
const FunObjVar * getCaller() const
Receive parameter at callsite.
Definition VFGNode.h:1041
ActualRetVFGNode(const ActualRetVFGNode &)
place holder
ActualRetVFGNode(NodeID id, const PAGNode *n, const CallICFGNode *c)
Constructor.
Definition VFGNode.h:1031
void operator=(const ActualRetVFGNode &)
place holder
const std::string toString() const override
Definition VFG.cpp:306
static bool classof(const GenericVFGNodeTy *node)
Definition VFGNode.h:1064
const NodeBS getDefSVFVars() const override
Return the left hand side SVF Vars.
Definition VFG.cpp:299
const PAGNode * getRev() const
Receive parameter at callsite.
Definition VFGNode.h:1046
static bool classof(const ActualRetVFGNode *)
Methods for support type inquiry through isa, cast, and dyn_cast:
Definition VFGNode.h:1052
static bool classof(const SVFValue *node)
Definition VFGNode.h:1068
ActualRetVFGNode()
place holder
const CallICFGNode * cs
Definition VFGNode.h:1023
static bool classof(const VFGNode *node)
Definition VFGNode.h:1060
static bool classof(const VFGNode *node)
Definition VFGNode.h:826
static bool classof(const StmtVFGNode *node)
Definition VFGNode.h:822
static bool classof(const AddrVFGNode *)
Methods for support type inquiry through isa, cast, and dyn_cast:
Definition VFGNode.h:818
static bool classof(const SVFValue *node)
Definition VFGNode.h:834
const NodeBS getDefSVFVars() const override
Return the left hand side SVF Vars.
Definition VFG.cpp:239
const std::string toString() const override
Definition VFG.cpp:246
AddrVFGNode(NodeID id, const AddrStmt *edge)
Constructor.
Definition VFGNode.h:812
AddrVFGNode(const AddrVFGNode &)
place holder
void operator=(const AddrVFGNode &)
place holder
AddrVFGNode()
place holder
static bool classof(const GenericVFGNodeTy *node)
Definition VFGNode.h:830
ArgumentVFGNode(NodeID id, const PAGNode *p, VFGNodeK k)
Constructor.
Definition VFGNode.h:854
const std::string toString() const override
Definition VFG.cpp:256
static bool classof(const SVFValue *node)
Definition VFGNode.h:878
static bool classof(const GenericVFGNodeTy *node)
Definition VFGNode.h:874
static bool classof(const ArgumentVFGNode *)
Methods for support type inquiry through isa, cast, and dyn_cast:
Definition VFGNode.h:866
bool isPTANode() const
Whether this argument node is of pointer type (used for pointer analysis).
Definition VFGNode.h:859
static bool classof(const VFGNode *node)
Definition VFGNode.h:870
const SVFVar * getValue() const override
Return the corresponding LLVM value, if possible, nullptr otherwise.
Definition VFG.cpp:1080
const PAGNode * param
Definition VFGNode.h:850
const PAGNode * res
Definition VFGNode.h:419
u32_t getOpVerNum() const
Definition VFGNode.h:465
BinaryOPVFGNode()
place holder
const PAGNode * getOpVer(u32_t pos) const
Operands at a BinaryNode.
Definition VFGNode.h:451
const PAGNode * getRes() const
Definition VFGNode.h:461
void operator=(const BinaryOPVFGNode &)
place holder
static bool classof(const BinaryOPVFGNode *)
Methods for support type inquiry through isa, cast, and dyn_cast:
Definition VFGNode.h:432
void setOpVer(u32_t pos, const PAGNode *node)
Definition VFGNode.h:457
static bool classof(const SVFValue *node)
Definition VFGNode.h:444
const NodeBS getDefSVFVars() const override
Return the left hand side SVF Vars.
Definition VFG.cpp:131
Map< u32_t, const PAGNode * > OPVers
Definition VFGNode.h:417
const SVFVar * getValue() const override
Return the corresponding LLVM value, if possible, nullptr otherwise.
Definition VFG.cpp:1070
static bool classof(const GenericVFGNodeTy *node)
Definition VFGNode.h:440
BinaryOPVFGNode(const BinaryOPVFGNode &)
place holder
const std::string toString() const override
Definition VFG.cpp:138
OPVers::const_iterator opVerBegin() const
Definition VFGNode.h:469
static bool classof(const VFGNode *node)
Definition VFGNode.h:436
OPVers::const_iterator opVerEnd() const
Definition VFGNode.h:473
BinaryOPVFGNode(NodeID id, const PAGNode *r)
Constructor.
Definition VFGNode.h:429
u32_t getNumSuccessors() const
const ICFGNode * getSuccessor(u32_t i) const
std::vector< std::pair< const ICFGNode *, s32_t > > SuccAndCondPairVec
const SuccAndCondPairVec & getSuccessors() const
virtual const std::string toString() const override
Definition VFG.cpp:178
const BranchStmt::SuccAndCondPairVec & getSuccessors() const
Definition VFGNode.h:607
const BranchStmt * getBranchStmt() const
Return the branch statement.
Definition VFGNode.h:597
BranchVFGNode(NodeID id, const BranchStmt *r)
Constructor.
Definition VFGNode.h:575
void operator=(const BranchVFGNode &)
place holder
static bool classof(const SVFValue *node)
Definition VFGNode.h:590
static bool classof(const GenericVFGNodeTy *node)
Definition VFGNode.h:586
const NodeBS getDefSVFVars() const override
Return the left hand side SVF Vars.
Definition VFG.cpp:173
static bool classof(const VFGNode *node)
Definition VFGNode.h:582
const ICFGNode * getSuccessor(u32_t i) const
Definition VFGNode.h:611
const BranchStmt * brstmt
Definition VFGNode.h:572
static bool classof(const BranchVFGNode *)
Methods for support type inquiry through isa, cast, and dyn_cast:
Definition VFGNode.h:578
u32_t getNumSuccessors() const
Definition VFGNode.h:603
BranchVFGNode()
place holder
BranchVFGNode(const BranchVFGNode &)
place holder
const FunObjVar * getCaller() const
Return callsite.
Definition ICFGNode.h:464
CmpVFGNode(const CmpVFGNode &)
place holder
Map< u32_t, const PAGNode * > OPVers
Definition VFGNode.h:340
static bool classof(const VFGNode *node)
Definition VFGNode.h:359
static bool classof(const SVFValue *node)
Definition VFGNode.h:367
void setOpVer(u32_t pos, const PAGNode *node)
Definition VFGNode.h:380
OPVers::const_iterator opVerBegin() const
Definition VFGNode.h:392
const PAGNode * getOpVer(u32_t pos) const
Operands at a BinaryNode.
Definition VFGNode.h:374
const PAGNode * res
Definition VFGNode.h:342
const std::string toString() const override
Definition VFG.cpp:117
const PAGNode * getRes() const
Definition VFGNode.h:384
OPVers opVers
Definition VFGNode.h:343
static bool classof(const CmpVFGNode *)
Methods for support type inquiry through isa, cast, and dyn_cast:
Definition VFGNode.h:355
u32_t getOpVerNum() const
Definition VFGNode.h:388
const NodeBS getDefSVFVars() const override
Return the left hand side SVF Vars.
Definition VFG.cpp:110
CmpVFGNode()
place holder
static bool classof(const GenericVFGNodeTy *node)
Definition VFGNode.h:363
void operator=(const CmpVFGNode &)
place holder
OPVers::const_iterator opVerEnd() const
Definition VFGNode.h:396
CmpVFGNode(NodeID id, const PAGNode *r)
Constructor.
Definition VFGNode.h:352
const SVFVar * getValue() const override
Return the corresponding LLVM value, if possible, nullptr otherwise.
Definition VFG.cpp:1065
const NodeBS getDefSVFVars() const override
Return the left hand side SVF Vars.
Definition VFG.cpp:94
CopyVFGNode()
place holder
static bool classof(const GenericVFGNodeTy *node)
Definition VFGNode.h:317
static bool classof(const SVFValue *node)
Definition VFGNode.h:321
void operator=(const CopyVFGNode &)
place holder
CopyVFGNode(const CopyVFGNode &)
place holder
const std::string toString() const override
Definition VFG.cpp:101
static bool classof(const CopyVFGNode *)
Methods for support type inquiry through isa, cast, and dyn_cast:
Definition VFGNode.h:305
static bool classof(const VFGNode *node)
Definition VFGNode.h:313
CopyVFGNode(NodeID id, const CopyStmt *copy)
Constructor.
Definition VFGNode.h:299
static bool classof(const StmtVFGNode *node)
Definition VFGNode.h:309
FormalParmVFGNode(NodeID id, const PAGNode *n, const FunObjVar *f)
Constructor.
Definition VFGNode.h:955
const FunObjVar * getFun() const override
Return function.
Definition VFGNode.h:967
static bool classof(const GenericVFGNodeTy *node)
Definition VFGNode.h:1002
const NodeBS getDefSVFVars() const override
Return the left hand side SVF Vars.
Definition VFG.cpp:282
static bool classof(const SVFValue *node)
Definition VFGNode.h:1006
CallPESet::const_iterator callPEBegin() const
Definition VFGNode.h:978
const std::string toString() const override
Definition VFG.cpp:289
const FunObjVar * fun
Definition VFGNode.h:950
static bool classof(const ArgumentVFGNode *node)
Definition VFGNode.h:998
static bool classof(const VFGNode *node)
Definition VFGNode.h:994
CallPESet::const_iterator callPEEnd() const
Definition VFGNode.h:982
void addCallPE(const CallPE *call)
Return call edge.
Definition VFGNode.h:972
static bool classof(const FormalParmVFGNode *)
Methods for support type inquiry through isa, cast, and dyn_cast:
Definition VFGNode.h:990
const PAGNode * getParam() const
Return parameter.
Definition VFGNode.h:961
FormalRetVFGNode()
place holder
static bool classof(const SVFValue *node)
Definition VFGNode.h:1138
void addRetPE(const RetPE *retPE)
RetPE.
Definition VFGNode.h:1107
const FunObjVar * fun
Definition VFGNode.h:1085
static bool classof(const GenericVFGNodeTy *node)
Definition VFGNode.h:1134
const FunObjVar * getFun() const override
Function.
Definition VFGNode.h:1102
FormalRetVFGNode(const FormalRetVFGNode &)
place holder
void operator=(const FormalRetVFGNode &)
place holder
static bool classof(const ArgumentVFGNode *node)
Definition VFGNode.h:1130
const NodeBS getDefSVFVars() const override
Return the left hand side SVF Vars.
Definition VFG.cpp:317
const std::string toString() const override
Definition VFG.cpp:324
static bool classof(const VFGNode *node)
Definition VFGNode.h:1126
RetPESet::const_iterator retPEBegin() const
RetPE iterators.
Definition VFGNode.h:1112
RetPESet::const_iterator retPEEnd() const
Definition VFGNode.h:1116
const PAGNode * getRet() const
Return value at callee.
Definition VFGNode.h:1097
static bool classof(const FormalRetVFGNode)
Methods for support type inquiry through isa, cast, and dyn_cast:
Definition VFGNode.h:1122
NodeType * getSrcNode() const
NodeType * getDstNode() const
NodeID getDstID() const
NodeID getSrcID() const
get methods of the components
GepVFGNode()
place holder
GepVFGNode(const GepVFGNode &)
place holder
GepVFGNode(NodeID id, const GepStmt *edge)
Constructor.
Definition VFGNode.h:634
static bool classof(const SVFValue *node)
Definition VFGNode.h:656
static bool classof(const GenericVFGNodeTy *node)
Definition VFGNode.h:652
static bool classof(const GepVFGNode *)
Methods for support type inquiry through isa, cast, and dyn_cast:
Definition VFGNode.h:640
static bool classof(const VFGNode *node)
Definition VFGNode.h:648
static bool classof(const StmtVFGNode *node)
Definition VFGNode.h:644
const NodeBS getDefSVFVars() const override
Return the left hand side SVF Vars.
Definition VFG.cpp:187
void operator=(const GepVFGNode &)
place holder
const std::string toString() const override
Definition VFG.cpp:194
virtual const FunObjVar * getFun() const
Return the function of this ICFGNode.
Definition ICFGNode.h:76
bool isFormalParmPHI() const
Definition VFGNode.h:1161
const CallICFGNode * callInst
Definition VFGNode.h:1211
static bool classof(const VFGNode *node)
Definition VFGNode.h:1193
static bool classof(const SVFValue *node)
Definition VFGNode.h:1201
InterPHIVFGNode(NodeID id, const FormalParmVFGNode *fp)
Constructor interPHI for formal parameter.
Definition VFGNode.h:1157
static bool classof(const PHIVFGNode *node)
Definition VFGNode.h:1189
const FunObjVar * getFun() const override
Get the function of this SVFGNode.
Definition VFGNode.h:1171
bool isActualRetPHI() const
Definition VFGNode.h:1166
static bool classof(const GenericVFGNodeTy *node)
Definition VFGNode.h:1197
const FunObjVar * fun
Definition VFGNode.h:1210
static bool classof(const InterPHIVFGNode *)
Methods for support type inquiry through isa, cast, and dyn_cast:
Definition VFGNode.h:1185
InterPHIVFGNode(NodeID id, const ActualRetVFGNode *ar)
Constructor interPHI for actual return.
Definition VFGNode.h:1159
const CallICFGNode * getCallSite() const
Definition VFGNode.h:1177
const std::string toString() const override
Definition VFG.cpp:335
const std::string toString() const override
Definition VFG.cpp:225
const ICFGNode * getOpIncomingBB(u32_t pos) const
Definition VFGNode.h:763
static bool classof(const IntraPHIVFGNode *)
Methods for support type inquiry through isa, cast, and dyn_cast:
Definition VFGNode.h:777
static bool classof(const VFGNode *node)
Definition VFGNode.h:785
IntraPHIVFGNode(NodeID id, const PAGNode *r)
Constructor.
Definition VFGNode.h:759
Map< u32_t, const ICFGNode * > OPIncomingBBs
Definition VFGNode.h:753
static bool classof(const SVFValue *node)
Definition VFGNode.h:793
OPIncomingBBs opIncomingBBs
Definition VFGNode.h:756
static bool classof(const GenericVFGNodeTy *node)
Definition VFGNode.h:789
void setOpVerAndBB(u32_t pos, const PAGNode *node, const ICFGNode *bb)
Definition VFGNode.h:769
static bool classof(const PHIVFGNode *node)
Definition VFGNode.h:781
static bool classof(const LoadVFGNode *)
Methods for support type inquiry through isa, cast, and dyn_cast:
Definition VFGNode.h:215
static bool classof(const GenericVFGNodeTy *node)
Definition VFGNode.h:227
static bool classof(const StmtVFGNode *node)
Definition VFGNode.h:219
LoadVFGNode(NodeID id, const LoadStmt *edge)
Constructor.
Definition VFGNode.h:209
void operator=(const LoadVFGNode &)
place holder
static bool classof(const SVFValue *node)
Definition VFGNode.h:231
static bool classof(const VFGNode *node)
Definition VFGNode.h:223
const std::string toString() const override
Definition VFG.cpp:63
const NodeBS getDefSVFVars() const override
Return the left hand side SVF Vars.
Definition VFG.cpp:56
LoadVFGNode()
place holder
LoadVFGNode(const LoadVFGNode &)
place holder
static bool classof(const SVFValue *node)
Definition VFGNode.h:1253
bool isPTANode() const
Whether this node is of pointer type (used for pointer analysis).
Definition VFGNode.h:1230
NullPtrVFGNode(NodeID id, const PAGNode *n)
Constructor.
Definition VFGNode.h:1225
const std::string toString() const override
Definition VFG.cpp:353
static bool classof(const VFGNode *node)
Definition VFGNode.h:1245
static bool classof(const GenericVFGNodeTy *node)
Definition VFGNode.h:1249
static bool classof(const NullPtrVFGNode *)
Methods for support type inquiry through isa, cast, and dyn_cast:
Definition VFGNode.h:1241
const PAGNode * node
Definition VFGNode.h:1222
const NodeBS getDefSVFVars() const override
Return the left hand side SVF Vars.
Definition VFG.cpp:346
const PAGNode * getPAGNode() const
Return corresponding PAGNode.
Definition VFGNode.h:1235
OPVers opVers
Definition VFGNode.h:677
bool isPTANode() const
Whether this phi node is of pointer type (used for pointer analysis).
Definition VFGNode.h:684
static bool classof(const GenericVFGNodeTy *node)
Definition VFGNode.h:729
OPVers::const_iterator opVerBegin() const
Definition VFGNode.h:709
void setOpVer(u32_t pos, const PAGNode *node)
Definition VFGNode.h:697
Map< u32_t, const PAGNode * > OPVers
Definition VFGNode.h:674
static bool classof(const VFGNode *node)
Definition VFGNode.h:725
const PAGNode * getRes() const
Definition VFGNode.h:701
const PAGNode * res
Definition VFGNode.h:676
static bool classof(const PHIVFGNode *)
Methods for support type inquiry through isa, cast, and dyn_cast:
Definition VFGNode.h:721
const NodeBS getDefSVFVars() const override
Return the left hand side SVF Vars.
Definition VFG.cpp:203
const std::string toString() const override
Definition VFG.cpp:210
const PAGNode * getOpVer(u32_t pos) const
Operands at a llvm PHINode.
Definition VFGNode.h:691
u32_t getOpVerNum() const
Definition VFGNode.h:705
static bool classof(const SVFValue *node)
Definition VFGNode.h:733
OPVers::const_iterator opVerEnd() const
Definition VFGNode.h:713
const SVFVar * getValue() const override
Return the corresponding LLVM value, if possible, nullptr otherwise.
Definition VFG.cpp:1075
bool isPTAEdge() const
Whether src and dst nodes are both of pointer type.
static bool isArgumentVFGNodeKinds(GNodeK n)
Definition SVFValue.h:286
GNodeK getNodeKind() const
Get node kind.
Definition SVFValue.h:164
NodeID id
Node ID.
Definition SVFValue.h:203
static bool isPHIVFGNodeKinds(GNodeK n)
Definition SVFValue.h:302
static bool isVFGNodeKinds(GNodeK n)
Definition SVFValue.h:278
static bool isStmtVFGNodeKinds(GNodeK n)
Definition SVFValue.h:294
virtual bool isPointer() const
Check if this variable represents a pointer.
StmtVFGNode(NodeID id, const PAGEdge *e, VFGNodeK k)
Constructor.
Definition VFGNode.h:135
NodeID getPAGDstNodeID() const
Definition VFGNode.h:157
static bool classof(const VFGNode *node)
Definition VFGNode.h:179
PAGNode * getPAGSrcNode() const
Definition VFGNode.h:162
PAGNode * getPAGDstNode() const
Definition VFGNode.h:167
static bool classof(const GenericVFGNodeTy *node)
Definition VFGNode.h:183
const PAGEdge * getPAGEdge() const
Definition VFGNode.h:147
const SVFVar * getValue() const override
Return the corresponding LLVM value, if possible, nullptr otherwise.
Definition VFG.cpp:1060
NodeID getPAGSrcNodeID() const
Definition VFGNode.h:152
bool isPTANode() const
Whether this node is used for pointer analysis. Both src and dst PAGNodes are of ptr type.
Definition VFGNode.h:140
const std::string toString() const override
Definition VFG.cpp:47
const PAGEdge * pagEdge
Definition VFGNode.h:131
static bool classof(const SVFValue *node)
Definition VFGNode.h:187
static bool classof(const StmtVFGNode *)
Methods for support type inquiry through isa, cast, and dyn_cast:
Definition VFGNode.h:175
static bool classof(const GenericVFGNodeTy *node)
Definition VFGNode.h:272
StoreVFGNode(const StoreVFGNode &)
place holder
static bool classof(const VFGNode *node)
Definition VFGNode.h:268
static bool classof(const StoreVFGNode *)
Methods for support type inquiry through isa, cast, and dyn_cast:
Definition VFGNode.h:260
void operator=(const StoreVFGNode &)
place holder
const NodeBS getDefSVFVars() const override
Return the left hand side SVF Vars.
Definition VFG.cpp:72
StoreVFGNode()
place holder
const std::string toString() const override
Definition VFG.cpp:85
static bool classof(const StmtVFGNode *node)
Definition VFGNode.h:264
StoreVFGNode(NodeID id, const StoreStmt *edge)
Constructor.
Definition VFGNode.h:254
static bool classof(const SVFValue *node)
Definition VFGNode.h:276
static bool classof(const UnaryOPVFGNode *)
Methods for support type inquiry through isa, cast, and dyn_cast:
Definition VFGNode.h:506
static bool classof(const VFGNode *node)
Definition VFGNode.h:510
static bool classof(const GenericVFGNodeTy *node)
Definition VFGNode.h:514
void operator=(const UnaryOPVFGNode &)
place holder
static bool classof(const SVFValue *node)
Definition VFGNode.h:518
void setOpVer(u32_t pos, const PAGNode *node)
Definition VFGNode.h:531
const PAGNode * res
Definition VFGNode.h:493
const NodeBS getDefSVFVars() const override
Return the left hand side SVF Vars.
Definition VFG.cpp:152
UnaryOPVFGNode(const UnaryOPVFGNode &)
place holder
OPVers::const_iterator opVerBegin() const
Definition VFGNode.h:548
const PAGNode * getOpVer(u32_t pos) const
Operands at a UnaryNode.
Definition VFGNode.h:525
UnaryOPVFGNode(NodeID id, const PAGNode *r)
Constructor.
Definition VFGNode.h:503
virtual const std::string toString() const override
Definition VFG.cpp:159
const PAGNode * getRes() const
Definition VFGNode.h:535
const PAGNode * getOpVar() const
Definition VFGNode.h:539
UnaryOPVFGNode()
place holder
u32_t getOpVerNum() const
Definition VFGNode.h:544
OPVers::const_iterator opVerEnd() const
Definition VFGNode.h:552
Map< u32_t, const PAGNode * > OPVers
Definition VFGNode.h:491
virtual const std::string toString() const
Definition VFG.cpp:39
Set< const RetPE * > RetPESet
Definition VFGNode.h:57
virtual const SVFVar * getValue() const
Return the corresponding LLVM value, if possible, nullptr otherwise.
Definition VFGNode.h:85
VFGEdge::VFGEdgeSetTy::const_iterator const_iterator
Definition VFGNode.h:55
static bool classof(const GenericVFGNodeTy *node)
Definition VFGNode.h:109
Set< const CallPE * > CallPESet
Definition VFGNode.h:56
const ICFGNode * icfgNode
Definition VFGNode.h:121
virtual const FunObjVar * getFun() const
Get the function of this SVFGNode.
Definition VFGNode.h:79
friend OutStream & operator<<(OutStream &o, const VFGNode &node)
Overloading operator << for dumping ICFG node ID.
Definition VFGNode.h:95
VFGNode(NodeID i, VFGNodeK k)
Constructor.
Definition VFGNode.h:61
GNodeK VFGNodeK
Definition VFGNode.h:52
VFGEdge::VFGEdgeSetTy::iterator iterator
Definition VFGNode.h:54
static bool classof(const SVFValue *node)
Definition VFGNode.h:115
virtual void setICFGNode(const ICFGNode *node)
Set corresponding ICFG node.
Definition VFGNode.h:73
static bool classof(const VFGNode *)
Definition VFGNode.h:104
virtual const NodeBS getDefSVFVars() const =0
Return the left hand side SVF Vars.
virtual const ICFGNode * getICFGNode() const
Return corresponding ICFG node.
Definition VFGNode.h:67
for isBitcode
Definition BasicTypes.h:68
GenericNode< VFGNode, VFGEdge > GenericVFGNodeTy
Definition VFGNode.h:45
u32_t NodeID
Definition GeneralType.h:56
std::ostream OutStream
Definition GeneralType.h:46
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74
unsigned u32_t
Definition GeneralType.h:47