Static Value-Flow Analysis
Loading...
Searching...
No Matches
IRGraph.h
Go to the documentation of this file.
1//===- SVFIR.h -- SVF IR Graph or PAG (Program Assignment Graph)--------------//
2//
3// SVF: Static Value-Flow Analysis
4//
5// Copyright (C) <2013-2017> <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 * IRGraph.h
25 *
26 * Created on: Nov 1, 2013
27 * Author: Yulei Sui
28 */
29
30
31#ifndef IRGRAPH_H_
32#define IRGRAPH_H_
33
34#include "SVFIR/SVFStatements.h"
35#include "SVFIR/SVFVariables.h"
37#include "Util/SVFUtil.h"
38#include "Graphs/ICFG.h"
39
40namespace SVF
41{
44
45class ObjTypeInfo;
46
47/*
48 * Graph representation of SVF IR.
49 * It can be seen as a program assignment graph (PAG).
50 */
51class IRGraph : public GenericGraph<SVFVar, SVFStmt>
52{
53 friend class SVFIRWriter;
54 friend class SVFIRReader;
55 friend class SVFIRBuilder;
56 friend class SymbolTableBuilder;
57
58public:
59
72
74 //{@
77
80
84
85private:
89
96
99
102
103 void destorySymTable();
104
105public:
107
108protected:
111 bool fromFile;
116
118 inline NodeID addNode(SVFVar* node)
119 {
120 assert(node && "cannot add a null node");
121 addGNode(node->getId(),node);
122 return node->getId();
123 }
125 bool addEdge(SVFVar* src, SVFVar* dst, SVFStmt* edge);
126
133 const ICFGNode* cs);
137 const SVFVar* op2);
138
139public:
145
146 virtual ~IRGraph();
147
148
150 inline bool isBuiltFromFile()
151 {
152 return fromFile;
153 }
154
156 // @{
157 static inline bool isBlkPtr(NodeID id)
158 {
159 return (id == BlkPtr);
160 }
161 static inline bool isNullPtr(NodeID id)
162 {
163 return (id == NullPtr);
164 }
165 static inline bool isBlkObj(NodeID id)
166 {
167 return (id == BlackHole);
168 }
169 static inline bool isConstantSym(NodeID id)
170 {
171 return (id == ConstantObj);
172 }
173 static inline bool isBlkObjOrConstantObj(NodeID id)
174 {
175 return (isBlkObj(id) || isConstantSym(id));
176 }
177
178 inline NodeID blkPtrSymID() const
179 {
180 return BlkPtr;
181 }
182
183 inline NodeID nullPtrSymID() const
184 {
185 return NullPtr;
186 }
187
188 inline NodeID constantSymID() const
189 {
190 return ConstantObj;
191 }
192
193 inline NodeID blackholeSymID() const
194 {
195 return BlackHole;
196 }
197
199
200 inline u32_t getTotalSymNum() const
201 {
202 return totalSymNum;
203 }
204 inline u32_t getMaxStructSize() const
205 {
206 return maxStSize;
207 }
209
211
213 {
214 return objTypeInfoMap;
215 }
216
218 {
219 return objTypeInfoMap;
220 }
221
223 {
224 return returnFunObjSymMap;
225 }
226
228 {
229 return varargFunObjSymMap;
230 }
231
233
235 {
236 IDToTypeInfoMapTy::const_iterator iter = objTypeInfoMap.find(id);
237 assert(iter!=objTypeInfoMap.end() && "obj type info not found");
238 return iter->second;
239 }
240
242 NodeID getReturnNode(const FunObjVar*func) const;
243
245 NodeID getVarargNode(const FunObjVar*func) const;
246
248 {
249 return blackholeSymID();
250 }
251 inline NodeID getConstantNode() const
252 {
253 return constantSymID();
254 }
255 inline NodeID getBlkPtr() const
256 {
257 return blkPtrSymID();
258 }
259 inline NodeID getNullPtr() const
260 {
261 return nullPtrSymID();
262 }
263
265
267
269
270 inline const SVFTypeSet& getSVFTypes() const
271 {
272 return svfTypes;
273 }
274
275 inline const Set<const StInfo*>& getStInfos() const
276 {
277 return stInfos;
278 }
280
281 virtual APOffset getModulusOffset(const BaseObjVar* baseObj, const APOffset& apOffset);
283
284
285 const StInfo* getTypeInfo(const SVFType* T) const;
286 inline bool hasSVFTypeInfo(const SVFType* T)
287 {
288 return svfTypes.find(T) != svfTypes.end();
289 }
290
293
295
308
310 void printFlattenFields(const SVFType* type);
311
312
314 {
316 }
321
322 inline u32_t getPAGNodeNum() const
323 {
324 return nodeNum;
325 }
326 inline u32_t getPAGEdgeNum() const
327 {
328 return edgeNum;
329 }
330 inline u32_t getPTAPAGEdgeNum() const
331 {
332 return totalPTAPAGEdge;
333 }
335 inline std::string getGraphName() const
336 {
337 return "SVFIR";
338 }
339
341
343 void dump(std::string name);
344
346 void view();
347
348
349
352
355
356 inline void addTypeInfo(const SVFType* ty)
357 {
358 bool inserted = svfTypes.insert(ty).second;
359 if(!inserted)
360 assert(false && "this type info has been added before");
361 }
362
363 inline void addStInfo(StInfo* stInfo)
364 {
365 stInfos.insert(stInfo);
366 }
367
368protected:
369
371 const std::vector<const SVFType*>& getFlattenFieldTypes(const SVFStructType *T);
372};
373
374}
375
376namespace SVF
377{
378
379/* !
380 * GenericGraphTraits specializations of SVFIR to be used for the generic graph algorithms.
381 * Provide graph traits for traversing from a SVFIR node using standard graph traversals.
382 */
383template<> struct GenericGraphTraits<SVF::SVFVar*> : public GenericGraphTraits<SVF::GenericNode<SVF::SVFVar,SVF::SVFStmt>* >
384{
385};
386
388template<> struct GenericGraphTraits<Inverse<SVF::SVFVar *> > : public GenericGraphTraits<Inverse<SVF::GenericNode<SVF::SVFVar,SVF::SVFStmt>* > >
389{
390};
391
392template<> struct GenericGraphTraits<SVF::IRGraph*> : public GenericGraphTraits<SVF::GenericGraph<SVF::SVFVar,SVF::SVFStmt>* >
393{
395};
396
397} // End namespace llvm
398#endif /* IRGRAPH_H_ */
newitem type
Definition cJSON.cpp:2739
const char *const name
Definition cJSON.h:264
void addGNode(NodeID id, NodeType *node)
Add a Node.
NodeID constantSymID() const
Definition IRGraph.h:188
u32_t getFlattenedElemIdx(const SVFType *T, u32_t origId)
Flattened element idx of an array or struct by considering stride.
Definition IRGraph.cpp:144
const Set< const StInfo * > & getStInfos() const
Definition IRGraph.h:275
u32_t getNodeNumAfterPAGBuild() const
Definition IRGraph.h:313
u32_t getNumOfFlattenElements(const SVFType *T)
Definition IRGraph.cpp:169
const std::vector< const SVFType * > & getFlattenFieldTypes(const SVFStructType *T)
Return the flattened field type for struct type only.
Definition IRGraph.cpp:118
void destorySymTable()
Definition IRGraph.cpp:36
u32_t getMaxStructSize() const
Definition IRGraph.h:204
const SVFType * maxStruct
The struct type with the most fields.
Definition IRGraph.h:351
SVFStmt * hasLabeledEdge(SVFVar *src, SVFVar *dst, SVFStmt::PEDGEK kind, const ICFGNode *cs)
Definition IRGraph.cpp:296
void printFlattenFields(const SVFType *type)
Debug method.
Definition IRGraph.cpp:73
void dump(std::string name)
Dump SVFIR.
Definition IRGraph.cpp:310
virtual ~IRGraph()
Definition IRGraph.cpp:54
Set< const StInfo * > stInfos
(owned) All StInfo
Definition IRGraph.h:98
u32_t getObjectNodeNum()
Definition IRGraph.cpp:337
Set< const SVFStmt * > SVFStmtSet
Definition IRGraph.h:106
NodeID addNode(SVFVar *node)
Add a node into the graph.
Definition IRGraph.h:118
void addStInfo(StInfo *stInfo)
Definition IRGraph.h:363
FunObjVarToIDMapTy & retFunObjSyms()
Definition IRGraph.h:222
IRGraph(bool buildFromFile)
Definition IRGraph.h:140
static bool isNullPtr(NodeID id)
Definition IRGraph.h:161
void dumpSymTable()
void view()
View graph from the debugger.
Definition IRGraph.cpp:318
NodeID getBlkPtr() const
Definition IRGraph.h:255
NodeID blkPtrSymID() const
Definition IRGraph.h:178
NodeID getBlackHoleNode() const
Definition IRGraph.h:247
virtual APOffset getModulusOffset(const BaseObjVar *baseObj, const APOffset &apOffset)
Given an offset from a Gep Instruction, return it modulus offset by considering memory layout.
Definition IRGraph.cpp:188
SVFStmt::KindToSVFStmtMapTy KindToSVFStmtSetMap
SVFIR edge map containing all PAGEdges.
Definition IRGraph.h:109
NodeID getNullPtr() const
Definition IRGraph.h:259
bool isBuiltFromFile()
Whether this SVFIR built from a txt file.
Definition IRGraph.h:150
const SVFType * getFlatternedElemType(const SVFType *baseType, u32_t flatten_idx)
Return the type of a flattened element given a flattened index.
Definition IRGraph.cpp:123
NodeID nullPtrSymID() const
Definition IRGraph.h:183
void addTypeInfo(const SVFType *ty)
Definition IRGraph.h:356
const SVFTypeSet & getSVFTypes() const
Constant reader that won't change the state of the symbol table.
Definition IRGraph.h:270
ObjTypeInfo * createObjTypeInfo(const SVFType *type)
Create an objectInfo based on LLVM type (value is null, and type could be null, representing a dummy ...
Definition IRGraph.cpp:231
u32_t getTotalSymNum() const
Statistics.
Definition IRGraph.h:200
u32_t getPTAPAGEdgeNum() const
Definition IRGraph.h:330
SYMTYPE
Symbol types.
Definition IRGraph.h:62
static bool isBlkObj(NodeID id)
Definition IRGraph.h:165
std::string getGraphName() const
Return graph name.
Definition IRGraph.h:335
FunObjVarToIDMapTy varargFunObjSymMap
vararg map
Definition IRGraph.h:87
NodeID getReturnNode(const FunObjVar *func) const
GetReturnNode - Return the unique node representing the return value of a function.
Definition IRGraph.cpp:60
const SVFType * getOriginalElemType(const SVFType *baseType, u32_t origId) const
Definition IRGraph.cpp:139
u32_t valVarNum
Definition IRGraph.h:114
void setNodeNumAfterPAGBuild(u32_t num)
Definition IRGraph.h:317
static bool isBlkObjOrConstantObj(NodeID id)
Definition IRGraph.h:173
IDToTypeInfoMapTy objTypeInfoMap
map a memory sym id to its obj
Definition IRGraph.h:88
bool addEdge(SVFVar *src, SVFVar *dst, SVFStmt *edge)
Add an edge into the graph.
Definition IRGraph.cpp:253
bool fromFile
Whether the SVFIR is built according to user specified data from a txt file.
Definition IRGraph.h:111
const IDToTypeInfoMapTy & idToObjTypeInfoMap() const
Definition IRGraph.h:217
NodeID nodeNumAfterPAGBuild
initial node number after building SVFIR, excluding later added nodes, e.g., gepobj nodes
Definition IRGraph.h:112
u32_t getPAGEdgeNum() const
Definition IRGraph.h:326
OrderedMap< const FunObjVar *, NodeID > FunObjVarToIDMapTy
function to sym id map
Definition IRGraph.h:79
NodeID totalSymNum
total number of symbols
Definition IRGraph.h:101
friend class SVFIRReader
Definition IRGraph.h:54
u32_t objVarNum
Definition IRGraph.h:115
u32_t totalPTAPAGEdge
Definition IRGraph.h:113
NodeID getVarargNode(const FunObjVar *func) const
getVarargNode - Return the unique node representing the variadic argument of a variadic function.
Definition IRGraph.cpp:67
static bool isConstantSym(NodeID id)
Definition IRGraph.h:169
NodeID blackholeSymID() const
Definition IRGraph.h:193
SVFStmt * hasNonlabeledEdge(SVFVar *src, SVFVar *dst, SVFStmt::PEDGEK kind)
Definition IRGraph.cpp:268
u32_t maxStSize
The number of fields in max_struct.
Definition IRGraph.h:354
ObjTypeInfo * getObjTypeInfo(NodeID id) const
Definition IRGraph.h:234
u32_t getValueNodeNum()
Definition IRGraph.cpp:324
NodeID getConstantNode() const
Definition IRGraph.h:251
friend class SVFIRWriter
Definition IRGraph.h:53
SVFTypeSet svfTypes
Definition IRGraph.h:95
const StInfo * getTypeInfo(const SVFType *T) const
Get struct info.
Definition IRGraph.cpp:242
static bool isBlkPtr(NodeID id)
special value
Definition IRGraph.h:157
FunObjVarToIDMapTy returnFunObjSymMap
return map
Definition IRGraph.h:86
SVFStmt::KindToSVFStmtMapTy KindToPTASVFStmtSetMap
SVFIR edge map containing only pointer-related edges, i.e., both LHS and RHS are of pointer type.
Definition IRGraph.h:110
const ObjTypeInfo * createDummyObjTypeInfo(NodeID symId, const SVFType *type)
Definition IRGraph.cpp:177
OrderedMap< NodeID, ObjTypeInfo * > IDToTypeInfoMapTy
various maps defined
Definition IRGraph.h:76
FunObjVarToIDMapTy & varargFunObjSyms()
Definition IRGraph.h:227
u32_t getPAGNodeNum() const
Definition IRGraph.h:322
Set< const SVFType * > SVFTypeSet
struct type to struct info map
Definition IRGraph.h:82
IDToTypeInfoMapTy & idToObjTypeInfoMap()
Get different kinds of syms maps.
Definition IRGraph.h:212
bool hasSVFTypeInfo(const SVFType *T)
Definition IRGraph.h:286
PAGEdgeToSetMapTy KindToSVFStmtMapTy
NodeID getId() const
Get ID.
Definition SVFValue.h:158
for isBitcode
Definition BasicTypes.h:68
u32_t NodeID
Definition GeneralType.h:56
s64_t APOffset
Definition GeneralType.h:60
SVFVar PAGNode
Definition IRGraph.h:42
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74
unsigned u32_t
Definition GeneralType.h:47
SVFStmt PAGEdge
Definition IRGraph.h:43