Static Value-Flow Analysis
Loading...
Searching...
No Matches
SymbolTableInfo.h
Go to the documentation of this file.
1//===- SymbolTableInfo.h -- Symbol information from IR------------------------//
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 * SymbolTableInfo.h
25 *
26 * Created on: Nov 11, 2013
27 * Author: Yulei Sui
28 */
29
30#ifndef INCLUDE_SVFIR_SYMBOLTABLEINFO_H_
31#define INCLUDE_SVFIR_SYMBOLTABLEINFO_H_
32
33
34#include "Util/SVFUtil.h"
36#include "SVFIR/SVFModule.h"
37namespace SVF
38{
39
40class ObjTypeInfo;
41class StInfo;
42class BaseObjVar;
43
48{
49 friend class SymbolTableBuilder;
50 friend class SVFIRWriter;
51 friend class SVFIRReader;
52
53public:
54
67
69 //{@
75
81
82private:
88
89 // Singleton pattern here to enable instance of SymbolTableInfo can only be created once.
91
94
96 void destroy();
97
100
103
104protected:
111
112public:
113
115
116 static SymbolTableInfo* SymbolInfo();
117
118 static void releaseSymbolInfo()
119 {
120 delete symInfo;
121 symInfo = nullptr;
122 }
124 {
125 destroy();
126 }
128
130
135 bool getModelConstants() const
136 {
137 return modelConstants;
138 }
140
143 {
144 return mod;
145 }
147 inline void setModule(SVFModule* m)
148 {
149 mod = m;
150 }
151
153 // @{
154 static inline bool isBlkPtr(NodeID id)
155 {
156 return (id == BlkPtr);
157 }
158 static inline bool isNullPtr(NodeID id)
159 {
160 return (id == NullPtr);
161 }
162 static inline bool isBlkObj(NodeID id)
163 {
164 return (id == BlackHole);
165 }
166 static inline bool isConstantObj(NodeID id)
167 {
168 return (id == ConstantObj);
169 }
170 static inline bool isBlkObjOrConstantObj(NodeID id)
171 {
172 return (isBlkObj(id) || isConstantObj(id));
173 }
174
175 inline SymID blkPtrSymID() const
176 {
177 return BlkPtr;
178 }
179
180 inline SymID nullPtrSymID() const
181 {
182 return NullPtr;
183 }
184
185 inline SymID constantSymID() const
186 {
187 return ConstantObj;
188 }
189
190 inline SymID blackholeSymID() const
191 {
192 return BlackHole;
193 }
194
196
197 SymID getValSym(const SVFValue* val);
198
199 bool hasValSym(const SVFValue* val);
200
201 inline SymID getObjSym(const SVFValue* val) const
202 {
203 const SVFValue* svfVal = val;
204 if(const SVFGlobalValue* g = SVFUtil::dyn_cast<SVFGlobalValue>(val))
205 svfVal = g->getDefGlobalForMultipleModule();
206 ValueToIDMapTy::const_iterator iter = objSymMap.find(svfVal);
207 assert(iter!=objSymMap.end() && "obj sym not found");
208 return iter->second;
209 }
210
212 {
213 IDToTypeInfoMapTy::const_iterator iter = objTypeInfoMap.find(id);
214 assert(iter!=objTypeInfoMap.end() && "obj type info not found");
215 return iter->second;
216 }
217
218 inline SymID getRetSym(const SVFFunction* val) const
219 {
220 FunToIDMapTy::const_iterator iter = returnSymMap.find(val);
221 assert(iter!=returnSymMap.end() && "ret sym not found");
222 return iter->second;
223 }
224
225 inline SymID getVarargSym(const SVFFunction* val) const
226 {
227 FunToIDMapTy::const_iterator iter = varargSymMap.find(val);
228 assert(iter!=varargSymMap.end() && "vararg sym not found");
229 return iter->second;
230 }
232
233
235
236 inline u32_t getTotalSymNum() const
237 {
238 return totalSymNum;
239 }
240 inline u32_t getMaxStructSize() const
241 {
242 return maxStSize;
243 }
245
247
249 {
250 return valSymMap;
251 }
252
254 {
255 return objSymMap;
256 }
257
259 {
260 return objTypeInfoMap;
261 }
262
264 {
265 return objTypeInfoMap;
266 }
267
269 {
270 return returnSymMap;
271 }
272
274 {
275 return varargSymMap;
276 }
277
279
281
282 inline const SVFTypeSet& getSVFTypes() const
283 {
284 return svfTypes;
285 }
286
287 inline const Set<const StInfo*>& getStInfos() const
288 {
289 return stInfos;
290 }
292
294
295
296 const StInfo* getTypeInfo(const SVFType* T) const;
297 inline bool hasSVFTypeInfo(const SVFType* T)
298 {
299 return svfTypes.find(T) != svfTypes.end();
300 }
301
304
306
319
321 void printFlattenFields(const SVFType* type);
322
323 static std::string toString(SYMTYPE symtype);
324
326 virtual void dump();
327
329 virtual APOffset getModulusOffset(const BaseObjVar* baseObj, const APOffset& apOffset);
330
333
336
337 inline void addTypeInfo(const SVFType* ty)
338 {
339 bool inserted = svfTypes.insert(ty).second;
340 if(!inserted)
341 assert(false && "this type info has been added before");
342 }
343
344 inline void addStInfo(StInfo* stInfo)
345 {
346 stInfos.insert(stInfo);
347 }
348
349protected:
350
352 const std::vector<const SVFType*>& getFlattenFieldTypes(const SVFStructType *T);
353
360
363};
364
365class SVFBaseNode;
366
371{
372 friend class SVFIRWriter;
373 friend class SVFIRReader;
374 friend class SymbolTableBuilder;
375
376public:
377 typedef enum
378 {
379 FUNCTION_OBJ = 0x1, // object is a function
380 GLOBVAR_OBJ = 0x2, // object is a global variable
381 STATIC_OBJ = 0x4, // object is a static variable allocated before main
382 STACK_OBJ = 0x8, // object is a stack variable
383 HEAP_OBJ = 0x10, // object is a heap variable
384 VAR_STRUCT_OBJ = 0x20, // object contains struct
385 VAR_ARRAY_OBJ = 0x40, // object contains array
386 CONST_STRUCT_OBJ = 0x80, // constant struct
387 CONST_ARRAY_OBJ = 0x100, // constant array
388 CONST_GLOBAL_OBJ = 0x200, // global constant object
389 CONST_DATA = 0x400, // constant object str e.g. 5, 10, 1.0
390 } MEMTYPE;
391
392private:
394 const SVFType* type;
403
406
408public:
409
411 ObjTypeInfo(const SVFType* t, u32_t max);
412
414 virtual ~ObjTypeInfo()
415 {
416 }
417
419 inline const SVFType* getType() const
420 {
421 return type;
422 }
423
426 {
427 return maxOffsetLimit;
428 }
429
432 {
434 }
435
438 {
439 elemNum = num;
441 }
442
444 inline u32_t getNumOfElements() const
445 {
446 return elemNum;
447 }
448
450 inline u32_t getByteSizeOfObj() const
451 {
452 assert(isConstantByteSize() && "This Obj's byte size is not constant.");
453 return byteSize;
454 }
455
457 inline void setByteSizeOfObj(u32_t size)
458 {
459 byteSize = size;
460 }
461
463 inline bool isConstantByteSize() const
464 {
465 return byteSize != 0;
466 }
467
469
470 inline void setFlag(MEMTYPE mask)
471 {
472 flags |= mask;
473 }
474 inline bool hasFlag(MEMTYPE mask)
475 {
476 return (flags & mask) == mask;
477 }
479
481
482 inline bool isFunction()
483 {
484 return hasFlag(FUNCTION_OBJ);
485 }
486 inline bool isGlobalObj()
487 {
488 return hasFlag(GLOBVAR_OBJ);
489 }
490 inline bool isStaticObj()
491 {
492 return hasFlag(STATIC_OBJ);
493 }
494 inline bool isStack()
495 {
496 return hasFlag(STACK_OBJ);
497 }
498 inline bool isHeap()
499 {
500 return hasFlag(HEAP_OBJ);
501 }
503
506
507 inline bool isVarStruct()
508 {
509 return hasFlag(VAR_STRUCT_OBJ);
510 }
511 inline bool isConstantStruct()
512 {
514 }
515 inline bool isStruct()
516 {
518 }
519 inline bool isVarArray()
520 {
521 return hasFlag(VAR_ARRAY_OBJ);
522 }
523 inline bool isConstantArray()
524 {
525 return hasFlag(CONST_ARRAY_OBJ);
526 }
527 inline bool isArray()
528 {
530 }
532 {
534 }
536 {
537 return hasFlag(CONST_DATA);
538 }
540};
541
542
543} // End namespace SVF
544
545#endif /* INCLUDE_SVFIR_SYMBOLTABLEINFO_H_ */
newitem type
Definition cJSON.cpp:2739
#define false
Definition cJSON.cpp:70
const SVFType * type
SVF type.
u32_t elemNum
Size of the object or number of elements.
u32_t getMaxFieldOffsetLimit()
Get max field offset limit.
bool hasFlag(MEMTYPE mask)
bool isConstDataOrConstGlobal()
u32_t getNumOfElements() const
Get the number of elements of this object.
friend class SVFIRReader
const SVFType * getType() const
Get LLVM type.
bool isConstantByteSize() const
Check if byte size is a const value.
void setMaxFieldOffsetLimit(u32_t limit)
Get max field offset limit.
u32_t byteSize
Byte size of object.
u32_t flags
Type flags.
void setByteSizeOfObj(u32_t size)
Set the byte size of this object.
friend class SVFIRWriter
bool isFunction()
Object attributes.
virtual ~ObjTypeInfo()
Destructor.
u32_t getByteSizeOfObj() const
Get the byte size of this object.
void setFlag(MEMTYPE mask)
Flag for this object type.
void resetTypeForHeapStaticObj(const SVFType *type)
void setNumOfElements(u32_t num)
Set the number of elements of this object.
IDToTypeInfoMapTy & idToObjTypeInfoMap()
ValueToIDMapTy & valSyms()
Get different kinds of syms maps.
SymID blackholeSymID() const
const SVFType * maxStruct
The struct type with the most fields.
SymID totalSymNum
total number of symbols
SymID blkPtrSymID() const
void printFlattenFields(const SVFType *type)
Debug method.
const std::vector< const SVFType * > & getFlattenFieldTypes(const SVFStructType *T)
Return the flattened field type for struct type only.
u32_t getFlattenedElemIdx(const SVFType *T, u32_t origId)
Flattened element idx of an array or struct by considering stride.
static SymbolTableInfo * SymbolInfo()
Singleton design here to make sure we only have one instance during any analysis.
u32_t getTotalSymNum() const
Statistics.
ObjTypeInfo * createObjTypeInfo(const SVFType *type)
Create an objectInfo based on LLVM type (value is null, and type could be null, representing a dummy ...
IDToTypeInfoMapTy objTypeInfoMap
map a memory sym id to its obj
ObjTypeInfo * getObjTypeInfo(SymID id) const
static bool isBlkObjOrConstantObj(NodeID id)
const SVFTypeSet & getSVFTypes() const
Constant reader that won't change the state of the symbol table.
FunToIDMapTy & varargSyms()
const ObjTypeInfo * createDummyObjTypeInfo(SymID symId, const SVFType *type)
ValueToIDMapTy & objSyms()
const SVFType * getOriginalElemType(const SVFType *baseType, u32_t origId) const
void setModelConstants(bool _modelConstants)
Set / Get modelConstants.
void setModule(SVFModule *m)
Module.
static SymbolTableInfo * symInfo
ValueToIDMapTy valSymMap
map a value to its sym id
ValueToIDMapTy objSymMap
map a obj reference to its sym id
const StInfo * getTypeInfo(const SVFType *T) const
Get struct info.
const Set< const StInfo * > & getStInfos() const
SymID getVarargSym(const SVFFunction *val) const
static bool isConstantObj(NodeID id)
void addStInfo(StInfo *stInfo)
SymID getValSym(const SVFValue *val)
Get different kinds of syms.
virtual APOffset getModulusOffset(const BaseObjVar *baseObj, const APOffset &apOffset)
Given an offset from a Gep Instruction, return it modulus offset by considering memory layout.
SymID getObjSym(const SVFValue *val) const
static std::string toString(SYMTYPE symtype)
const SVFType * getFlatternedElemType(const SVFType *baseType, u32_t flatten_idx)
Return the type of a flattened element given a flattened index.
u32_t getNumOfFlattenElements(const SVFType *T)
Number of flattened elements of an array or struct.
void destroy()
Clean up memory.
Set< const SVFType * > SVFTypeSet
struct type to struct info map
bool getModelConstants() const
void addTypeInfo(const SVFType *ty)
FunToIDMapTy varargSymMap
vararg map
Set< const StInfo * > stInfos
(owned) All StInfo
virtual void dump()
Another debug method.
static void releaseSymbolInfo()
FunToIDMapTy & retSyms()
SymID constantSymID() const
u32_t maxStSize
The number of fields in max_struct.
u32_t getMaxStructSize() const
static bool isBlkPtr(NodeID id)
special value
OrderedMap< const SVFFunction *, SymID > FunToIDMapTy
function to sym id map
static bool isNullPtr(NodeID id)
OrderedMap< const SVFValue *, SymID > ValueToIDMapTy
various maps defined
bool modelConstants
Whether to model constants.
static bool isBlkObj(NodeID id)
const IDToTypeInfoMapTy & idToObjTypeInfoMap() const
SymID nullPtrSymID() const
FunToIDMapTy returnSymMap
return map
SVFModule * getModule()
Module.
bool hasValSym(const SVFValue *val)
OrderedMap< SymID, ObjTypeInfo * > IDToTypeInfoMapTy
sym id to obj type info map
bool hasSVFTypeInfo(const SVFType *T)
SVFModule * mod
Module.
SymID getRetSym(const SVFFunction *val) const
SymbolTableInfo(void)
Constructor.
for isBitcode
Definition BasicTypes.h:68
u32_t NodeID
Definition GeneralType.h:55
s64_t APOffset
Definition GeneralType.h:60
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74
unsigned SymID
Definition GeneralType.h:57
unsigned u32_t
Definition GeneralType.h:46