Static Value-Flow Analysis
Loading...
Searching...
No Matches
SVFStatements.h
Go to the documentation of this file.
1//===- SVFStatements.h -- SVF statements-------------------------------------------//
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/*
25 * SVFStatements.h
26 *
27 * Created on: Nov 10, 2013
28 * Author: Yulei Sui
29 */
30
31#ifndef INCLUDE_SVFIR_SVFSTATEMENT_H_
32#define INCLUDE_SVFIR_SVFSTATEMENT_H_
33
34#include "Graphs/GenericGraph.h"
36
37namespace SVF
38{
39
40class SVFVar;
41class ICFGNode;
42class IntraICFGNode;
43class CallICFGNode;
44class FunEntryICFGNode;
45class FunExitICFGNode;
46class SVFBasicBlock;
47
48/*
49 * SVFIR program statements (PAGEdges)
50 */
53{
54 friend class SVFIRWriter;
55 friend class SVFIRReader;
56
57public:
80
81private:
82 const SVFVar* value;
86
87protected:
90 : GenericPAGEdgeTy({}, {}, k), value{}, basicBlock{}, icfgNode{}
91 {
92 }
93
94public:
96
98 SVFStmt(SVFVar* s, SVFVar* d, GEdgeFlag k, bool real = true);
101
103
104 static inline bool classof(const SVFStmt*)
105 {
106 return true;
107 }
108 static inline bool classof(const GenericPAGEdgeTy* edge)
109 {
110 return edge->getEdgeKind() == SVFStmt::Addr ||
111 edge->getEdgeKind() == SVFStmt::Copy ||
112 edge->getEdgeKind() == SVFStmt::Store ||
113 edge->getEdgeKind() == SVFStmt::Load ||
114 edge->getEdgeKind() == SVFStmt::Call ||
115 edge->getEdgeKind() == SVFStmt::Ret ||
116 edge->getEdgeKind() == SVFStmt::Gep ||
117 edge->getEdgeKind() == SVFStmt::Phi ||
118 edge->getEdgeKind() == SVFStmt::Select ||
119 edge->getEdgeKind() == SVFStmt::Cmp ||
120 edge->getEdgeKind() == SVFStmt::BinaryOp ||
121 edge->getEdgeKind() == SVFStmt::UnaryOp ||
122 edge->getEdgeKind() == SVFStmt::Branch ||
123 edge->getEdgeKind() == SVFStmt::ThreadFork ||
124 edge->getEdgeKind() == SVFStmt::ThreadJoin;
125 }
127
129 inline EdgeID getEdgeID() const
130 {
131 return edgeId;
132 }
134 bool isPTAEdge() const;
135
137
138
139 inline void setValue(const SVFVar* val)
140 {
141 value = val;
142 }
143 inline const SVFVar* getValue() const
144 {
145 return value;
146 }
147
148 inline void setBB(const SVFBasicBlock* bb)
149 {
150 basicBlock = bb;
151 }
152 inline const SVFBasicBlock* getBB() const
153 {
154 return basicBlock;
155 }
156 inline void setICFGNode(ICFGNode* node)
157 {
158 icfgNode = node;
159 }
160 inline ICFGNode* getICFGNode() const
161 {
162 return icfgNode;
163 }
165
169 const SVFVar* var)
170 {
172 if (it_inserted.second)
174 u64_t label = it_inserted.first->second;
175 return (label << EdgeKindMaskBits) | k;
176 }
177
181 const ICFGNode* cs)
182 {
184 if (it_inserted.second)
186 u64_t label = it_inserted.first->second;
187 return (label << EdgeKindMaskBits) | k;
188 }
189
193 const ICFGNode* store)
194 {
195 auto it_inserted = inst2LabelMap.emplace(store, storeEdgeLabelCounter);
196 if (it_inserted.second)
198 u64_t label = it_inserted.first->second;
199 return (label << EdgeKindMaskBits) | k;
200 }
201
202 virtual const std::string toString() const;
203
205
208 {
209 o << edge.toString();
210 return o;
211 }
213
218
219private:
227};
228
229/*
230 Parent class of Addr, Copy, Store, Load, Call, Ret, NormalGep, VariantGep, ThreadFork, ThreadJoin
231 connecting RHS expression and LHS expression with an assignment (e.g., LHSExpr = RHSExpr)
232 Only one operand on the right hand side of an assignment
233*/
234class AssignStmt : public SVFStmt
235{
236 friend class SVFIRWriter;
237 friend class SVFIRReader;
238
239private:
242 void operator=(const AssignStmt &);
247
248protected:
253
254public:
256
257 static inline bool classof(const AssignStmt*)
258 {
259 return true;
260 }
261 static inline bool classof(const SVFStmt* edge)
262 {
263 return edge->getEdgeKind() == SVFStmt::Addr ||
264 edge->getEdgeKind() == SVFStmt::Copy ||
265 edge->getEdgeKind() == SVFStmt::Store ||
266 edge->getEdgeKind() == SVFStmt::Load ||
267 edge->getEdgeKind() == SVFStmt::Call ||
268 edge->getEdgeKind() == SVFStmt::Ret ||
269 edge->getEdgeKind() == SVFStmt::Gep ||
270 edge->getEdgeKind() == SVFStmt::ThreadFork ||
271 edge->getEdgeKind() == SVFStmt::ThreadJoin;
272 }
273 static inline bool classof(const GenericPAGEdgeTy* edge)
274 {
275 return edge->getEdgeKind() == SVFStmt::Addr ||
276 edge->getEdgeKind() == SVFStmt::Copy ||
277 edge->getEdgeKind() == SVFStmt::Store ||
278 edge->getEdgeKind() == SVFStmt::Load ||
279 edge->getEdgeKind() == SVFStmt::Call ||
280 edge->getEdgeKind() == SVFStmt::Ret ||
281 edge->getEdgeKind() == SVFStmt::Gep ||
282 edge->getEdgeKind() == SVFStmt::ThreadFork ||
283 edge->getEdgeKind() == SVFStmt::ThreadJoin;
284 }
286
287 inline SVFVar* getRHSVar() const
288 {
289 return SVFStmt::getSrcNode();
290 }
291 inline SVFVar* getLHSVar() const
292 {
293 return SVFStmt::getDstNode();
294 }
295 inline NodeID getRHSVarID() const
296 {
297 return SVFStmt::getSrcID();
298 }
299 inline NodeID getLHSVarID() const
300 {
301 return SVFStmt::getDstID();
302 }
303
304 virtual const std::string toString() const = 0;
305};
306
310class AddrStmt: public AssignStmt
311{
312 friend class SVFIRWriter;
313 friend class SVFIRReader;
314
315private:
319 void operator=(const AddrStmt&);
320
321 std::vector<SVFVar*> arrSize;
322
323public:
325
326 static inline bool classof(const AddrStmt*)
327 {
328 return true;
329 }
330 static inline bool classof(const SVFStmt* edge)
331 {
332 return edge->getEdgeKind() == SVFStmt::Addr;
333 }
334 static inline bool classof(const GenericPAGEdgeTy* edge)
335 {
336 return edge->getEdgeKind() == SVFStmt::Addr;
337 }
339
342
343 virtual const std::string toString() const override;
344
345 inline void addArrSize(SVFVar* size) //TODO:addSizeVar
346 {
347 arrSize.push_back(size);
348 }
349
351 inline const std::vector<SVFVar*>& getArrSize() const //TODO:getSizeVars
352 {
353 return arrSize;
354 }
355
356};
357
361class CopyStmt: public AssignStmt
362{
363 friend class SVFIRWriter;
364 friend class SVFIRReader;
365private:
369 void operator=(const CopyStmt&);
370public:
372 {
373 COPYVAL, // Value copies (default one)
374 ZEXT, // Zero extend integers
375 SEXT, // Sign extend integers
376 BITCAST, // Type cast
377 TRUNC, // Truncate integers
378 FPTRUNC, // Truncate floating point
379 FPTOUI, // floating point -> UInt
380 FPTOSI, // floating point -> SInt
381 UITOFP, // UInt -> floating point
382 SITOFP, // SInt -> floating point
383 INTTOPTR, // Integer -> Pointer
384 PTRTOINT // Pointer -> Integer
385 };
387
388 static inline bool classof(const CopyStmt*)
389 {
390 return true;
391 }
392 static inline bool classof(const SVFStmt* edge)
393 {
394 return edge->getEdgeKind() == SVFStmt::Copy;
395 }
396 static inline bool classof(const GenericPAGEdgeTy* edge)
397 {
398 return edge->getEdgeKind() == SVFStmt::Copy;
399 }
401
403 inline u32_t getCopyKind() const
404 {
405 return copyKind;
406 }
407
408 inline bool isBitCast() const
409 {
410 return copyKind == BITCAST;
411 }
412
413 inline bool isValueCopy() const
414 {
415 return copyKind == COPYVAL;
416 }
417
418 inline bool isInt2Ptr() const
419 {
420 return copyKind == INTTOPTR;
421 }
422
423 inline bool isPtr2Int() const
424 {
425 return copyKind == PTRTOINT;
426 }
427
428 inline bool isZext() const
429 {
430 return copyKind == ZEXT;
431 }
432
433 inline bool isSext() const
434 {
435 return copyKind == SEXT;
436 }
437
440
441 virtual const std::string toString() const override;
442private:
444};
445
450{
451 friend class SVFIRWriter;
452 friend class SVFIRReader;
453
454private:
458 void operator=(const StoreStmt&);
459
460public:
462
463 static inline bool classof(const StoreStmt*)
464 {
465 return true;
466 }
467 static inline bool classof(const SVFStmt* edge)
468 {
469 return edge->getEdgeKind() == SVFStmt::Store;
470 }
471 static inline bool classof(const GenericPAGEdgeTy* edge)
472 {
473 return edge->getEdgeKind() == SVFStmt::Store;
474 }
476
478 StoreStmt(SVFVar* s, SVFVar* d, const ICFGNode* st);
479
480 virtual const std::string toString() const override;
481};
482
486class LoadStmt: public AssignStmt
487{
488 friend class SVFIRWriter;
489 friend class SVFIRReader;
490
491private:
495 void operator=(const LoadStmt&);
496
497public:
499
500 static inline bool classof(const LoadStmt*)
501 {
502 return true;
503 }
504 static inline bool classof(const SVFStmt* edge)
505 {
506 return edge->getEdgeKind() == SVFStmt::Load;
507 }
508 static inline bool classof(const GenericPAGEdgeTy* edge)
509 {
510 return edge->getEdgeKind() == SVFStmt::Load;
511 }
513
516
517 virtual const std::string toString() const override;
518};
519
523class GepStmt: public AssignStmt
524{
525 friend class SVFIRWriter;
526 friend class SVFIRReader;
527
528private:
531 GepStmt(const GepStmt &);
532 void operator=(const GepStmt &);
533
536public:
538
539 static inline bool classof(const GepStmt*)
540 {
541 return true;
542 }
543 static inline bool classof(const SVFStmt* edge)
544 {
545 return edge->getEdgeKind() == SVFStmt::Gep;
546 }
547 static inline bool classof(const GenericPAGEdgeTy* edge)
548 {
549 return edge->getEdgeKind() == SVFStmt::Gep;
550 }
552
553 inline const AccessPath& getAccessPath() const
554 {
555 return ap;
556 }
562 inline bool isConstantOffset() const
563 {
565 }
566
576
579 {
581 }
584 {
585 assert(isVariantFieldGep()==false && "Can't retrieve the AccessPath if using a variable field index (pointer arithmetic) for struct field access ");
587 }
589 inline bool isVariantFieldGep() const
590 {
591 return variantField;
592 }
593
595 GepStmt(SVFVar* s, SVFVar* d, const AccessPath& ap, bool varfld = false)
597 {
598 }
599
600 virtual const std::string toString() const;
601
602};
603
604
608class CallPE: public AssignStmt
609{
610 friend class SVFIRWriter;
611 friend class SVFIRReader;
612
613private:
614 CallPE(const CallPE&);
615 void operator=(const CallPE&);
616
619protected:
622
623public:
625
626 static inline bool classof(const CallPE*)
627 {
628 return true;
629 }
630 static inline bool classof(const SVFStmt* edge)
631 {
632 return edge->getEdgeKind() == SVFStmt::Call ||
633 edge->getEdgeKind() == SVFStmt::ThreadFork;
634 }
635 static inline bool classof(const GenericPAGEdgeTy* edge)
636 {
637 return edge->getEdgeKind() == SVFStmt::Call ||
638 edge->getEdgeKind() == SVFStmt::ThreadFork;
639 }
641
643 CallPE(SVFVar* s, SVFVar* d, const CallICFGNode* i,
645
647
648 inline const CallICFGNode* getCallInst() const
649 {
650 return call;
651 }
652 inline const CallICFGNode* getCallSite() const
653 {
654 return call;
655 }
657 {
658 return entry;
659 }
661
662 virtual const std::string toString() const override;
663};
664
668class RetPE: public AssignStmt
669{
670 friend class SVFIRWriter;
671 friend class SVFIRReader;
672
673private:
674 RetPE(const RetPE&);
675 void operator=(const RetPE&);
676
679
680protected:
683
684public:
686
687 static inline bool classof(const RetPE*)
688 {
689 return true;
690 }
691 static inline bool classof(const SVFStmt* edge)
692 {
693 return edge->getEdgeKind() == SVFStmt::Ret ||
694 edge->getEdgeKind() == SVFStmt::ThreadJoin;
695 }
696 static inline bool classof(const GenericPAGEdgeTy* edge)
697 {
698 return edge->getEdgeKind() == SVFStmt::Ret ||
699 edge->getEdgeKind() == SVFStmt::ThreadJoin;
700 }
702
704 RetPE(SVFVar* s, SVFVar* d, const CallICFGNode* i, const FunExitICFGNode* e,
706
708
709 inline const CallICFGNode* getCallInst() const
710 {
711 return call;
712 }
713 inline const CallICFGNode* getCallSite() const
714 {
715 return call;
716 }
718 {
719 return exit;
720 }
722
723 virtual const std::string toString() const override;
724};
725
726/*
727* Program statements with multiple operands including BinaryOPStmt, CmpStmt and PhiStmt
728*/
729class MultiOpndStmt : public SVFStmt
730{
731 friend class SVFIRWriter;
732 friend class SVFIRReader;
733
734public:
735 typedef std::vector<SVFVar*> OPVars;
736
737private:
745
746protected:
752
753public:
755
756 static inline bool classof(const MultiOpndStmt*)
757 {
758 return true;
759 }
760 static inline bool classof(const SVFStmt* node)
761 {
762 return node->getEdgeKind() == Phi || node->getEdgeKind() == Select ||
763 node->getEdgeKind() == BinaryOp || node->getEdgeKind() == Cmp;
764 }
765 static inline bool classof(const GenericPAGEdgeTy* node)
766 {
767 return node->getEdgeKind() == Phi || node->getEdgeKind() == Select ||
768 node->getEdgeKind() == BinaryOp || node->getEdgeKind() == Cmp;
769 }
771
773
774
775 inline const SVFVar* getOpVar(u32_t pos) const
776 {
777 return opVars.at(pos);
778 }
780 inline const SVFVar* getRes() const
781 {
782 return SVFStmt::getDstNode();
783 }
784
785 NodeID getOpVarID(u32_t pos) const;
786 NodeID getResID() const;
787
788 inline u32_t getOpVarNum() const
789 {
790 return opVars.size();
791 }
792 inline const OPVars& getOpndVars() const
793 {
794 return opVars;
795 }
796 inline OPVars::const_iterator opVarBegin() const
797 {
798 return opVars.begin();
799 }
800 inline OPVars::const_iterator opVerEnd() const
801 {
802 return opVars.end();
803 }
805};
806
812{
813 friend class SVFIRWriter;
814 friend class SVFIRReader;
815
816public:
817 typedef std::vector<const ICFGNode*> OpICFGNodeVec;
818
819private:
822 PhiStmt(const PhiStmt&);
823 void operator=(const PhiStmt&);
824
826
827public:
829
830 static inline bool classof(const PhiStmt*)
831 {
832 return true;
833 }
834 static inline bool classof(const SVFStmt* edge)
835 {
836 return edge->getEdgeKind() == SVFStmt::Phi;
837 }
838 static inline bool classof(const MultiOpndStmt* edge)
839 {
840 return edge->getEdgeKind() == SVFStmt::Phi;
841 }
842 static inline bool classof(const GenericPAGEdgeTy* edge)
843 {
844 return edge->getEdgeKind() == SVFStmt::Phi;
845 }
847
849 PhiStmt(SVFVar* s, const OPVars& opnds, const OpICFGNodeVec& icfgNodes)
850 : MultiOpndStmt(s, opnds, SVFStmt::Phi), opICFGNodes(icfgNodes)
851 {
852 assert(opnds.size() == icfgNodes.size() &&
853 "Numbers of operands and their ICFGNodes are not consistent?");
854 }
856 {
857 opVars.push_back(op);
858 opICFGNodes.push_back(inode);
859 assert(opVars.size() == opICFGNodes.size() &&
860 "Numbers of operands and their ICFGNodes are not consistent?");
861 }
862
864 inline const ICFGNode* getOpICFGNode(u32_t op_idx) const
865 {
866 return opICFGNodes.at(op_idx);
867 }
868
871 bool isFunctionRetPhi() const;
872
873 virtual const std::string toString() const override;
874};
875
880{
881 friend class SVFIRWriter;
882 friend class SVFIRReader;
883
884private:
888 void operator=(const SelectStmt&);
889
891
892public:
894
895 static inline bool classof(const SelectStmt*)
896 {
897 return true;
898 }
899 static inline bool classof(const SVFStmt* edge)
900 {
901 return edge->getEdgeKind() == SVFStmt::Select;
902 }
903 static inline bool classof(const MultiOpndStmt* edge)
904 {
905 return edge->getEdgeKind() == SVFStmt::Select;
906 }
907 static inline bool classof(const GenericPAGEdgeTy* edge)
908 {
909 return edge->getEdgeKind() == SVFStmt::Select;
910 }
912
914 SelectStmt(SVFVar* s, const OPVars& opnds, const SVFVar* cond);
915 virtual const std::string toString() const override;
916
917 inline const SVFVar* getCondition() const
918 {
919 return condition;
920 }
921 inline const SVFVar* getTrueValue() const
922 {
923 return getOpVar(0);
924 }
925 inline const SVFVar* getFalseValue() const
926 {
927 return getOpVar(1);
928 }
929};
930
935{
936 friend class SVFIRWriter;
937 friend class SVFIRReader;
938
939private:
942 CmpStmt(const CmpStmt&);
943 void operator=(const CmpStmt&);
944
946
947public:
985
987
988 static inline bool classof(const CmpStmt*)
989 {
990 return true;
991 }
992 static inline bool classof(const SVFStmt* edge)
993 {
994 return edge->getEdgeKind() == SVFStmt::Cmp;
995 }
996 static inline bool classof(const MultiOpndStmt* edge)
997 {
998 return edge->getEdgeKind() == SVFStmt::Cmp;
999 }
1000 static inline bool classof(const GenericPAGEdgeTy* edge)
1001 {
1002 return edge->getEdgeKind() == SVFStmt::Cmp;
1003 }
1005
1007 CmpStmt(SVFVar* s, const OPVars& opnds, u32_t pre);
1008
1010 {
1011 return predicate;
1012 }
1013
1014 virtual const std::string toString() const override;
1015};
1016
1021{
1022 friend class SVFIRWriter;
1023 friend class SVFIRReader;
1024
1025private:
1031
1032public:
1034 enum OpCode : unsigned
1035 {
1036 Add = 13, // Sum of integers
1037 FAdd = 14, // Sum of floats
1038 Sub = 15, // Subtraction of integers
1039 FSub = 16, // Subtraction of floats
1040 Mul = 17, // Product of integers.
1041 FMul = 18, // Product of floats.
1042 UDiv = 19, // Unsigned division.
1043 SDiv = 20, // Signed division.
1044 FDiv = 21, // Float division.
1045 URem = 22, // Unsigned remainder
1046 SRem = 23, // Signed remainder
1047 FRem = 24, // Float remainder
1048 Shl = 25, // Shift left (logical)
1049 LShr = 26, // Shift right (logical)
1050 AShr = 27, // Shift right (arithmetic)
1051 And = 28, // Logical and
1052 Or = 29, // Logical or
1053 Xor = 30 // Logical xor
1055
1057
1058 static inline bool classof(const BinaryOPStmt*)
1059 {
1060 return true;
1061 }
1062 static inline bool classof(const SVFStmt* edge)
1063 {
1064 return edge->getEdgeKind() == SVFStmt::BinaryOp;
1065 }
1066 static inline bool classof(const MultiOpndStmt* edge)
1067 {
1068 return edge->getEdgeKind() == SVFStmt::BinaryOp;
1069 }
1070 static inline bool classof(const GenericPAGEdgeTy* edge)
1071 {
1072 return edge->getEdgeKind() == SVFStmt::BinaryOp;
1073 }
1075
1078
1080 {
1081 return opcode;
1082 }
1083
1084 virtual const std::string toString() const override;
1085};
1086
1091{
1092 friend class SVFIRWriter;
1093 friend class SVFIRReader;
1094
1095private:
1099 void operator=(const UnaryOPStmt&);
1104
1106
1107public:
1109 enum OpCode : unsigned
1110 {
1111 FNeg = 12
1113
1115
1116 static inline bool classof(const UnaryOPStmt*)
1117 {
1118 return true;
1119 }
1120 static inline bool classof(const SVFStmt* edge)
1121 {
1122 return edge->getEdgeKind() == SVFStmt::UnaryOp;
1123 }
1124 static inline bool classof(const GenericPAGEdgeTy* edge)
1125 {
1126 return edge->getEdgeKind() == SVFStmt::UnaryOp;
1127 }
1129
1133 {
1134 }
1135
1137 {
1138 return opcode;
1139 }
1140 inline const SVFVar* getOpVar() const
1141 {
1142 return SVFStmt::getSrcNode();
1143 }
1144 inline const SVFVar* getRes() const
1145 {
1146 return SVFStmt::getDstNode();
1147 }
1148 NodeID getOpVarID() const;
1149 NodeID getResID() const;
1150
1151 virtual const std::string toString() const override;
1152};
1153
1157class BranchStmt: public SVFStmt
1158{
1159 friend class SVFIRWriter;
1160 friend class SVFIRReader;
1161
1162public:
1163 typedef std::vector<std::pair<const ICFGNode*, s32_t>> SuccAndCondPairVec;
1164
1165private:
1169 void operator=(const BranchStmt&);
1174
1176 const SVFVar* cond;
1178
1179public:
1181
1182 static inline bool classof(const BranchStmt*)
1183 {
1184 return true;
1185 }
1186 static inline bool classof(const SVFStmt* edge)
1187 {
1188 return edge->getEdgeKind() == SVFStmt::Branch;
1189 }
1190 static inline bool classof(const GenericPAGEdgeTy* edge)
1191 {
1192 return edge->getEdgeKind() == SVFStmt::Branch;
1193 }
1195
1198 : SVFStmt(c, inst, SVFStmt::Branch), successors(succs), cond(c),
1199 brInst(inst)
1200 {
1201 }
1202
1204 bool isUnconditional() const;
1206 bool isConditional() const;
1208 const SVFVar* getCondition() const;
1209 const SVFVar* getBranchInst() const
1210 {
1211 return brInst;
1212 }
1213
1217
1221
1225 {
1226 return successors.size();
1227 }
1229 {
1230 return successors;
1231 }
1233 {
1234 return successors.at(i).first;
1235 }
1237 {
1238 return successors.at(i).second;
1239 }
1241 virtual const std::string toString() const override;
1242};
1243
1247class TDForkPE: public CallPE
1248{
1249 friend class SVFIRWriter;
1250 friend class SVFIRReader;
1251
1252private:
1256 void operator=(const TDForkPE&);
1257
1258public:
1260
1261 static inline bool classof(const TDForkPE*)
1262 {
1263 return true;
1264 }
1265 static inline bool classof(const SVFStmt* edge)
1266 {
1267 return edge->getEdgeKind() == SVFStmt::ThreadFork;
1268 }
1269 static inline bool classof(const GenericPAGEdgeTy* edge)
1270 {
1271 return edge->getEdgeKind() == SVFStmt::ThreadFork;
1272 }
1274
1277 const FunEntryICFGNode* entry)
1279 {
1280 }
1281
1282 virtual const std::string toString() const;
1283};
1284
1288class TDJoinPE: public RetPE
1289{
1290 friend class SVFIRWriter;
1291 friend class SVFIRReader;
1292
1293private:
1297 void operator=(const TDJoinPE&);
1298
1299public:
1301
1302 static inline bool classof(const TDJoinPE*)
1303 {
1304 return true;
1305 }
1306 static inline bool classof(const SVFStmt* edge)
1307 {
1308 return edge->getEdgeKind() == SVFStmt::ThreadJoin;
1309 }
1310 static inline bool classof(const GenericPAGEdgeTy* edge)
1311 {
1312 return edge->getEdgeKind() == SVFStmt::ThreadJoin;
1313 }
1315
1318 const FunExitICFGNode* e)
1319 : RetPE(s, d, i, e, SVFStmt::ThreadJoin)
1320 {
1321 }
1322
1323 virtual const std::string toString() const;
1324};
1325
1326} // End namespace SVF
1327
1328#endif /* INCLUDE_SVFIR_SVFSTATEMENT_H_ */
std::vector< IdxOperandPair > IdxOperandPairs
Definition AccessPath.h:64
bool isConstantOffset() const
Return TRUE if this is a constant location set.
APOffset computeConstantByteOffset() const
APOffset getConstantStructFldIdx() const
Get methods.
Definition AccessPath.h:99
const IdxOperandPairs & getIdxOperandPairVec() const
Definition AccessPath.h:107
APOffset computeConstantOffset() const
For example,.
AddrStmt()
Constructs empty AddrStmt (for SVFIRReader/serialization)
void operator=(const AddrStmt &)
place holder
AddrStmt(const AddrStmt &)
place holder
void addArrSize(SVFVar *size)
get array size of the allocated memory
static bool classof(const AddrStmt *)
Methods for support type inquiry through isa, cast, and dyn_cast:
AddrStmt(SVFVar *s, SVFVar *d)
constructor
static bool classof(const GenericPAGEdgeTy *edge)
friend class SVFIRReader
virtual const std::string toString() const override
friend class SVFIRWriter
std::vector< SVFVar * > arrSize
Array size of the allocated memory.
const std::vector< SVFVar * > & getArrSize() const
static bool classof(const SVFStmt *edge)
AssignStmt(GEdgeFlag k)
Constructor to create empty AssignStmt (for SVFIRReader/serialization)
SVFVar * getSrcNode()
not allowed, use getRHSVar() instead
SVFVar * getDstNode()
not allowed, use getLHSVar() instead
AssignStmt(const AssignStmt &)
place holder
NodeID getRHSVarID() const
static bool classof(const AssignStmt *)
Methods for support type inquiry through isa, cast, and dyn_cast:
static bool classof(const GenericPAGEdgeTy *edge)
friend class SVFIRReader
NodeID getLHSVarID() const
NodeID getDstID()
not allowed, use getLHSVarID() instead
NodeID getSrcID()
not allowed, use getRHSVarID() instead
SVFVar * getLHSVar() const
virtual const std::string toString() const =0
AssignStmt()
place holder
friend class SVFIRWriter
SVFVar * getRHSVar() const
void operator=(const AssignStmt &)
place holder
static bool classof(const SVFStmt *edge)
AssignStmt(SVFVar *s, SVFVar *d, GEdgeFlag k)
constructor
virtual const std::string toString() const override
OpCode
OpCode for BinaryOPStmt, enum value is same to llvm BinaryOperator (llvm/IR/Instruction....
BinaryOPStmt()
Constructs empty BinaryOPStmt (for SVFIRReader/serialization)
static bool classof(const MultiOpndStmt *edge)
friend class SVFIRReader
void operator=(const BinaryOPStmt &)
place holder
BinaryOPStmt(const BinaryOPStmt &)
place holder
static bool classof(const BinaryOPStmt *)
Methods for support type inquiry through isa, cast, and dyn_cast:
static bool classof(const SVFStmt *edge)
friend class SVFIRWriter
static bool classof(const GenericPAGEdgeTy *edge)
u32_t getOpcode() const
u32_t getNumSuccessors() const
bool isUnconditional() const
The branch is unconditional if cond is a null value.
const ICFGNode * getSuccessor(u32_t i) const
const SVFVar * brInst
SuccAndCondPairVec successors
void operator=(const BranchStmt &)
place holder
static bool classof(const SVFStmt *edge)
BranchStmt(SVFVar *inst, SVFVar *c, const SuccAndCondPairVec &succs)
constructor
std::vector< std::pair< const ICFGNode *, s32_t > > SuccAndCondPairVec
BranchStmt(const BranchStmt &)
place holder
bool isConditional() const
The branch is conditional if cond is not a null value.
static bool classof(const BranchStmt *)
Methods for support type inquiry through isa, cast, and dyn_cast:
s64_t getSuccessorCondValue(u32_t i) const
BranchStmt()
Constructs empty BranchStmt (for SVFIRReader/serialization)
SVFVar * getDstNode()
place holder, not allowed
const SVFVar * getCondition() const
Return the condition.
NodeID getSrcID()
place holder, use getOpVarID(pos) instead
friend class SVFIRReader
const SVFVar * getBranchInst() const
SVFVar * getSrcNode()
place holder, not allowed
const SuccAndCondPairVec & getSuccessors() const
friend class SVFIRWriter
NodeID getDstID()
place holder, use getResID() instead
const SVFVar * cond
static bool classof(const GenericPAGEdgeTy *edge)
virtual const std::string toString() const override
static bool classof(const GenericPAGEdgeTy *edge)
CallPE(GEdgeFlag k=SVFStmt::Call)
the function exit statement calling to
static bool classof(const SVFStmt *edge)
CallPE(const CallPE &)
place holder
const CallICFGNode * getCallSite() const
const FunEntryICFGNode * getFunEntryICFGNode() const
static bool classof(const CallPE *)
Methods for support type inquiry through isa, cast, and dyn_cast:
const FunEntryICFGNode * entry
the callsite statement calling from
friend class SVFIRReader
void operator=(const CallPE &)
place holder
friend class SVFIRWriter
const CallICFGNode * call
const CallICFGNode * getCallInst() const
Get method for the call instruction.
virtual const std::string toString() const override
static bool classof(const SVFStmt *edge)
virtual const std::string toString() const override
static bool classof(const MultiOpndStmt *edge)
CmpStmt()
Constructs empty CmpStmt (for SVFIRReader/serialization)
void operator=(const CmpStmt &)
place holder
friend class SVFIRReader
u32_t getPredicate() const
CmpStmt(const CmpStmt &)
place holder
friend class SVFIRWriter
Predicate
OpCode for CmpStmt, enum value is same to llvm CmpInst.
@ ICMP_SGT
signed greater than
@ FCMP_UEQ
1 0 0 1 True if unordered or equal
@ FCMP_ONE
0 1 1 0 True if ordered and operands are unequal
@ ICMP_UGE
unsigned greater or equal
@ FCMP_UGT
1 0 1 0 True if unordered or greater than
@ ICMP_ULE
unsigned less or equal
@ FCMP_OGE
0 0 1 1 True if ordered and greater than or equal
@ FCMP_OLT
0 1 0 0 True if ordered and less than
@ FCMP_OGT
0 0 1 0 True if ordered and greater than
@ ICMP_NE
not equal
@ FCMP_TRUE
1 1 1 1 Always true (always folded)
@ ICMP_ULT
unsigned less than
@ FCMP_ULE
1 1 0 1 True if unordered, less than, or equal
@ ICMP_SLT
signed less than
@ ICMP_UGT
unsigned greater than
@ FCMP_OEQ
0 0 0 1 True if ordered and equal
@ FCMP_ORD
0 1 1 1 True if ordered (no nans)
@ FCMP_OLE
0 1 0 1 True if ordered and less than or equal
@ FCMP_FALSE
0 0 0 0 Always false (always folded)
@ FCMP_ULT
1 1 0 0 True if unordered or less than
@ FCMP_UNO
1 0 0 0 True if unordered: isnan(X) | isnan(Y)
@ FCMP_UGE
1 0 1 1 True if unordered, greater than, or equal
@ ICMP_SGE
signed greater or equal
@ FCMP_UNE
1 1 1 0 True if unordered or not equal
@ ICMP_SLE
signed less or equal
static bool classof(const CmpStmt *)
Methods for support type inquiry through isa, cast, and dyn_cast:
static bool classof(const GenericPAGEdgeTy *edge)
static bool classof(const GenericPAGEdgeTy *edge)
static bool classof(const CopyStmt *)
Methods for support type inquiry through isa, cast, and dyn_cast:
CopyStmt(SVFVar *s, SVFVar *d, CopyKind k)
constructor
u32_t getCopyKind() const
Return the kind of the copy statement.
bool isZext() const
bool isPtr2Int() const
static bool classof(const SVFStmt *edge)
CopyStmt()
Constructs empty CopyStmt (for SVFIRReader/serialization)
bool isBitCast() const
void operator=(const CopyStmt &)
place holder
friend class SVFIRReader
CopyStmt(const CopyStmt &)
place holder
bool isValueCopy() const
friend class SVFIRWriter
virtual const std::string toString() const override
bool isInt2Ptr() const
bool isSext() const
NodeType * getSrcNode() const
NodeType * getDstNode() const
GEdgeKind getEdgeKind() const
NodeID getDstID() const
NodeID getSrcID() const
get methods of the components
static constexpr unsigned char EdgeKindMaskBits
We use the lower 8 bits to denote edge kind.
OrderedSet< EdgeType *, typename EdgeType::equalGEdge > GEdgeSetTy
Edge kind.
bool isVariantFieldGep() const
Gep statement with a variant field index (pointer arithmetic) for struct field access.
APOffset accumulateConstantOffset() const
Return accumulated constant offset (when accessing array or struct) if this offset is a constant.
APOffset accumulateConstantByteOffset() const
const AccessPath::IdxOperandPairs getOffsetVarAndGepTypePairVec() const
static bool classof(const GepStmt *)
Methods for support type inquiry through isa, cast, and dyn_cast:
APOffset getConstantStructFldIdx() const
Field index of the gep statement if it access the field of a struct.
GepStmt(const GepStmt &)
place holder
GepStmt(SVFVar *s, SVFVar *d, const AccessPath &ap, bool varfld=false)
constructor
static bool classof(const SVFStmt *edge)
const AccessPath & getAccessPath() const
friend class SVFIRReader
GepStmt()
Constructs empty GepStmt (for SVFIRReader/serialization)
void operator=(const GepStmt &)
place holder
bool isConstantOffset() const
Return TRUE if this is a constant location set.
static bool classof(const GenericPAGEdgeTy *edge)
friend class SVFIRWriter
virtual const std::string toString() const
AccessPath ap
Access path of the GEP edge.
bool variantField
Gep statement with a variant field index (pointer arithmetic) for struct field access (e....
static bool classof(const LoadStmt *)
Methods for support type inquiry through isa, cast, and dyn_cast:
LoadStmt(const LoadStmt &)
place holder
LoadStmt()
Constructs empty LoadStmt (for SVFIRReader/serialization)
virtual const std::string toString() const override
LoadStmt(SVFVar *s, SVFVar *d)
constructor
friend class SVFIRReader
static bool classof(const GenericPAGEdgeTy *edge)
static bool classof(const SVFStmt *edge)
friend class SVFIRWriter
void operator=(const LoadStmt &)
place holder
const OPVars & getOpndVars() const
const SVFVar * getRes() const
Result SVFVar.
NodeID getDstID()
not allowed, use getResID() instead
NodeID getOpVarID(u32_t pos) const
static bool classof(const SVFStmt *node)
MultiOpndStmt()
place holder
MultiOpndStmt(const MultiOpndStmt &)
place holder
NodeID getResID() const
SVFVar * getSrcNode()
not allowed, use getOpVar(idx) instead
friend class SVFIRReader
MultiOpndStmt(GEdgeFlag k)
Constructs empty MultiOpndStmt (for SVFIRReader/serialization)
static bool classof(const MultiOpndStmt *)
Methods for support type inquiry through isa, cast, and dyn_cast:
const SVFVar * getOpVar(u32_t pos) const
Operand SVFVars.
OPVars::const_iterator opVarBegin() const
friend class SVFIRWriter
SVFVar * getDstNode()
not allowed, use getRes() instead
NodeID getSrcID()
not allowed, use getOpVarID(idx) instead
std::vector< SVFVar * > OPVars
static bool classof(const GenericPAGEdgeTy *node)
OPVars::const_iterator opVerEnd() const
u32_t getOpVarNum() const
void operator=(const MultiOpndStmt &)
place holder
virtual const std::string toString() const override
const ICFGNode * getOpICFGNode(u32_t op_idx) const
Return the corresponding ICFGNode of this operand.
void operator=(const PhiStmt &)
place holder
std::vector< const ICFGNode * > OpICFGNodeVec
OpICFGNodeVec opICFGNodes
PhiStmt()
Constructs empty PhiStmt (for SVFIRReader/serialization)
PhiStmt(const PhiStmt &)
place holder
bool isFunctionRetPhi() const
static bool classof(const GenericPAGEdgeTy *edge)
friend class SVFIRReader
static bool classof(const PhiStmt *)
Methods for support type inquiry through isa, cast, and dyn_cast:
static bool classof(const SVFStmt *edge)
PhiStmt(SVFVar *s, const OPVars &opnds, const OpICFGNodeVec &icfgNodes)
constructor
void addOpVar(SVFVar *op, const ICFGNode *inode)
friend class SVFIRWriter
static bool classof(const MultiOpndStmt *edge)
RetPE(const RetPE &)
place holder
const CallICFGNode * getCallSite() const
static bool classof(const GenericPAGEdgeTy *edge)
static bool classof(const RetPE *)
Methods for support type inquiry through isa, cast, and dyn_cast:
const CallICFGNode * getCallInst() const
Get method for call instruction at caller.
virtual const std::string toString() const override
const FunExitICFGNode * exit
the callsite statement returning to
RetPE(GEdgeFlag k=SVFStmt::Ret)
the function exit statement returned from
const FunExitICFGNode * getFunExitICFGNode() const
friend class SVFIRReader
static bool classof(const SVFStmt *edge)
const CallICFGNode * call
friend class SVFIRWriter
void operator=(const RetPE &)
place holder
static bool classof(const GenericPAGEdgeTy *edge)
ICFGNode * getICFGNode() const
bool isPTAEdge() const
Whether src and dst nodes are both of pointer type.
void setBB(const SVFBasicBlock *bb)
friend OutStream & operator<<(OutStream &o, const SVFStmt &edge)
Overloading operator << for dumping SVFVar value.
const SVFVar * getValue() const
void setValue(const SVFVar *val)
Get/set methods for llvm instruction.
Map< EdgeID, SVFStmtSetTy > PAGEdgeToSetMapTy
static u64_t callEdgeLabelCounter
Call site Instruction counter.
static Var2LabelMap var2LabelMap
Second operand of MultiOpndStmt to label map.
SVFStmtSetTy PAGEdgeSetTy
static GEdgeFlag makeEdgeFlagWithAddionalOpnd(GEdgeKind k, const SVFVar *var)
const SVFBasicBlock * getBB() const
static GEdgeFlag makeEdgeFlagWithCallInst(GEdgeKind k, const ICFGNode *cs)
SVFStmt(GEdgeFlag k)
Private constructor for reading SVFIR from file without side-effect.
ICFGNode * icfgNode
ICFGNode.
static u64_t storeEdgeLabelCounter
Store Instruction counter.
EdgeID edgeId
Edge ID.
Map< const ICFGNode *, u32_t > Inst2LabelMap
const SVFBasicBlock * basicBlock
LLVM BasicBlock.
GenericNode< SVFVar, SVFStmt >::GEdgeSetTy SVFStmtSetTy
PAGEdgeToSetMapTy KindToSVFStmtMapTy
friend class SVFIRReader
static u64_t multiOpndLabelCounter
MultiOpndStmt counter.
~SVFStmt()
Destructor.
static Inst2LabelMap inst2LabelMap
Call site Instruction to label map.
static bool classof(const SVFStmt *)
ClassOf.
friend class SVFIRWriter
virtual const std::string toString() const
Map< const SVFVar *, u32_t > Var2LabelMap
static GEdgeFlag makeEdgeFlagWithStoreInst(GEdgeKind k, const ICFGNode *store)
const SVFVar * value
LLVM value.
void setICFGNode(ICFGNode *node)
static u32_t totalEdgeNum
Total edge number.
EdgeID getEdgeID() const
Return Edge ID.
static bool classof(const MultiOpndStmt *edge)
const SVFVar * getCondition() const
const SVFVar * condition
const SVFVar * getTrueValue() const
static bool classof(const SVFStmt *edge)
virtual const std::string toString() const override
const SVFVar * getFalseValue() const
static bool classof(const SelectStmt *)
Methods for support type inquiry through isa, cast, and dyn_cast:
friend class SVFIRReader
SelectStmt()
Constructs empty SelectStmt (for SVFIRReader/serialization)
static bool classof(const GenericPAGEdgeTy *edge)
friend class SVFIRWriter
SelectStmt(const SelectStmt &)
place holder
void operator=(const SelectStmt &)
place holder
StoreStmt(const StoreStmt &)
place holder
static bool classof(const SVFStmt *edge)
virtual const std::string toString() const override
friend class SVFIRReader
static bool classof(const GenericPAGEdgeTy *edge)
void operator=(const StoreStmt &)
place holder
friend class SVFIRWriter
StoreStmt()
Constructs empty StoreStmt (for SVFIRReader/serialization)
static bool classof(const StoreStmt *)
Methods for support type inquiry through isa, cast, and dyn_cast:
void operator=(const TDForkPE &)
place holder
static bool classof(const SVFStmt *edge)
static bool classof(const TDForkPE *)
Methods for support type inquiry through isa, cast, and dyn_cast:
TDForkPE()
Constructs empty TDForkPE (for SVFIRReader/serialization)
friend class SVFIRReader
static bool classof(const GenericPAGEdgeTy *edge)
virtual const std::string toString() const
friend class SVFIRWriter
TDForkPE(const TDForkPE &)
place holder
TDForkPE(SVFVar *s, SVFVar *d, const CallICFGNode *i, const FunEntryICFGNode *entry)
constructor
static bool classof(const SVFStmt *edge)
static bool classof(const GenericPAGEdgeTy *edge)
TDJoinPE()
Constructs empty TDJoinPE (for SVFIRReader/serialization)
void operator=(const TDJoinPE &)
place holder
TDJoinPE(const TDJoinPE &)
place holder
friend class SVFIRReader
friend class SVFIRWriter
virtual const std::string toString() const
static bool classof(const TDJoinPE *)
Methods for support type inquiry through isa, cast, and dyn_cast:
TDJoinPE(SVFVar *s, SVFVar *d, const CallICFGNode *i, const FunExitICFGNode *e)
Constructor.
UnaryOPStmt()
Constructs empty UnaryOPStmt (for SVFIRReader/serialization)
virtual const std::string toString() const override
static bool classof(const SVFStmt *edge)
UnaryOPStmt(SVFVar *s, SVFVar *d, u32_t oc)
constructor
NodeID getSrcID()
place holder, use getOpVarID(pos) instead
const SVFVar * getOpVar() const
void operator=(const UnaryOPStmt &)
place holder
SVFVar * getSrcNode()
place holder, use getOpVar() instead
NodeID getOpVarID() const
SVFVar * getDstNode()
place holder, use getRes() instead
friend class SVFIRReader
UnaryOPStmt(const UnaryOPStmt &)
place holder
NodeID getDstID()
place holder, use getResID() instead
static bool classof(const UnaryOPStmt *)
Methods for support type inquiry through isa, cast, and dyn_cast:
const SVFVar * getRes() const
friend class SVFIRWriter
OpCode
OpCode for UnaryOPStmt, enum value is same to llvm::UnaryOperator.
static bool classof(const GenericPAGEdgeTy *edge)
NodeID getResID() const
u32_t getOpcode() const
for isBitcode
Definition BasicTypes.h:68
unsigned long long u64_t
Definition GeneralType.h:49
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
GenericEdge< SVFVar > GenericPAGEdgeTy
unsigned u32_t
Definition GeneralType.h:47
signed long long s64_t
Definition GeneralType.h:50
u32_t EdgeID
Definition GeneralType.h:57