Static Value-Flow Analysis
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Static Public Member Functions | Public Attributes | Protected Member Functions | Protected Attributes | Private Member Functions | Private Attributes | Static Private Attributes | Friends | List of all members
SVF::SymbolTableInfo Class Reference

#include <SymbolTableInfo.h>

Public Types

enum  SYMTYPE {
  NullPtr , BlkPtr , BlackHole , ConstantObj ,
  ValSymbol , ObjSymbol , RetSymbol , VarargSymbol
}
 Symbol types. More...
 
typedef OrderedMap< const SVFValue *, SymIDValueToIDMapTy
 various maps defined
 
typedef OrderedMap< SymID, ObjTypeInfo * > IDToTypeInfoMapTy
 sym id to obj type info map
 
typedef OrderedMap< const SVFFunction *, SymIDFunToIDMapTy
 function to sym id map
 
typedef Set< const SVFType * > SVFTypeSet
 struct type to struct info map
 

Public Member Functions

virtual ~SymbolTableInfo ()
 
void setModelConstants (bool _modelConstants)
 Set / Get modelConstants.
 
bool getModelConstants () const
 
SVFModulegetModule ()
 Module.
 
void setModule (SVFModule *m)
 Module.
 
SymID blkPtrSymID () const
 
SymID nullPtrSymID () const
 
SymID constantSymID () const
 
SymID blackholeSymID () const
 
SymID getValSym (const SVFValue *val)
 Get different kinds of syms.
 
bool hasValSym (const SVFValue *val)
 
SymID getObjSym (const SVFValue *val) const
 
ObjTypeInfogetObjTypeInfo (SymID id) const
 
SymID getRetSym (const SVFFunction *val) const
 
SymID getVarargSym (const SVFFunction *val) const
 
u32_t getTotalSymNum () const
 Statistics.
 
u32_t getMaxStructSize () const
 
ValueToIDMapTyvalSyms ()
 Get different kinds of syms maps.
 
ValueToIDMapTyobjSyms ()
 
IDToTypeInfoMapTyidToObjTypeInfoMap ()
 
const IDToTypeInfoMapTyidToObjTypeInfoMap () const
 
FunToIDMapTyretSyms ()
 
FunToIDMapTyvarargSyms ()
 
const SVFTypeSetgetSVFTypes () const
 Constant reader that won't change the state of the symbol table.
 
const Set< const StInfo * > & getStInfos () const
 
const StInfogetTypeInfo (const SVFType *T) const
 Get struct info.
 
bool hasSVFTypeInfo (const SVFType *T)
 
ObjTypeInfocreateObjTypeInfo (const SVFType *type)
 Create an objectInfo based on LLVM type (value is null, and type could be null, representing a dummy object)
 
const ObjTypeInfocreateDummyObjTypeInfo (SymID symId, const SVFType *type)
 
u32_t getNumOfFlattenElements (const SVFType *T)
 Number of flattened elements of an array or struct.
 
u32_t getFlattenedElemIdx (const SVFType *T, u32_t origId)
 Flattened element idx of an array or struct by considering stride.
 
const SVFTypegetFlatternedElemType (const SVFType *baseType, u32_t flatten_idx)
 Return the type of a flattened element given a flattened index.
 
const SVFTypegetOriginalElemType (const SVFType *baseType, u32_t origId) const
 
void printFlattenFields (const SVFType *type)
 Debug method.
 
virtual void dump ()
 Another debug method.
 
virtual APOffset getModulusOffset (const BaseObjVar *baseObj, const APOffset &apOffset)
 Given an offset from a Gep Instruction, return it modulus offset by considering memory layout.
 
void addTypeInfo (const SVFType *ty)
 
void addStInfo (StInfo *stInfo)
 

Static Public Member Functions

static SymbolTableInfoSymbolInfo ()
 Singleton design here to make sure we only have one instance during any analysis.
 
static void releaseSymbolInfo ()
 
static bool isBlkPtr (NodeID id)
 special value
 
static bool isNullPtr (NodeID id)
 
static bool isBlkObj (NodeID id)
 
static bool isConstantObj (NodeID id)
 
static bool isBlkObjOrConstantObj (NodeID id)
 
static std::string toString (SYMTYPE symtype)
 

Public Attributes

const SVFTypemaxStruct
 The struct type with the most fields.
 
u32_t maxStSize
 The number of fields in max_struct.
 

Protected Member Functions

 SymbolTableInfo (void)
 Constructor.
 
const std::vector< const SVFType * > & getFlattenFieldTypes (const SVFStructType *T)
 Return the flattened field type for struct type only.
 

Protected Attributes

SVFTypeSet svfTypes
 
Set< const StInfo * > stInfos
 (owned) All StInfo
 

Private Member Functions

void destroy ()
 Clean up memory.
 

Private Attributes

ValueToIDMapTy valSymMap
 map a value to its sym id
 
ValueToIDMapTy objSymMap
 map a obj reference to its sym id
 
FunToIDMapTy returnSymMap
 return map
 
FunToIDMapTy varargSymMap
 vararg map
 
IDToTypeInfoMapTy objTypeInfoMap
 map a memory sym id to its obj
 
SVFModulemod
 Module.
 
bool modelConstants
 Whether to model constants.
 
SymID totalSymNum
 total number of symbols
 

Static Private Attributes

static SymbolTableInfosymInfo = nullptr
 

Friends

class SymbolTableBuilder
 
class SVFIRWriter
 
class SVFIRReader
 

Detailed Description

Symbol table of the memory model for analysis

Definition at line 47 of file SymbolTableInfo.h.

Member Typedef Documentation

◆ FunToIDMapTy

function to sym id map

Definition at line 77 of file SymbolTableInfo.h.

◆ IDToTypeInfoMapTy

sym id to obj type info map

Definition at line 74 of file SymbolTableInfo.h.

◆ SVFTypeSet

struct type to struct info map

Definition at line 79 of file SymbolTableInfo.h.

◆ ValueToIDMapTy

various maps defined

llvm value to sym id map local (%) and global (@) identifiers are pointer types which have a value node id.

Definition at line 72 of file SymbolTableInfo.h.

Member Enumeration Documentation

◆ SYMTYPE

Symbol types.

Enumerator
NullPtr 
BlkPtr 
BlackHole 
ConstantObj 
ValSymbol 
ObjSymbol 
RetSymbol 
VarargSymbol 

Definition at line 56 of file SymbolTableInfo.h.

Constructor & Destructor Documentation

◆ SymbolTableInfo()

SVF::SymbolTableInfo::SymbolTableInfo ( void  )
inlineprotected

Constructor.

Definition at line 106 of file SymbolTableInfo.h.

107 : mod(nullptr), modelConstants(false), totalSymNum(0),
108 maxStruct(nullptr), maxStSize(0)
109 {
110 }
const SVFType * maxStruct
The struct type with the most fields.
SymID totalSymNum
total number of symbols
u32_t maxStSize
The number of fields in max_struct.
bool modelConstants
Whether to model constants.
SVFModule * mod
Module.

◆ ~SymbolTableInfo()

virtual SVF::SymbolTableInfo::~SymbolTableInfo ( )
inlinevirtual

Definition at line 123 of file SymbolTableInfo.h.

124 {
125 destroy();
126 }
void destroy()
Clean up memory.

Member Function Documentation

◆ addStInfo()

void SVF::SymbolTableInfo::addStInfo ( StInfo stInfo)
inline

Definition at line 344 of file SymbolTableInfo.h.

345 {
346 stInfos.insert(stInfo);
347 }
Set< const StInfo * > stInfos
(owned) All StInfo
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

◆ addTypeInfo()

void SVF::SymbolTableInfo::addTypeInfo ( const SVFType ty)
inline

Definition at line 337 of file SymbolTableInfo.h.

338 {
339 bool inserted = svfTypes.insert(ty).second;
340 if(!inserted)
341 assert(false && "this type info has been added before");
342 }

◆ blackholeSymID()

SymID SVF::SymbolTableInfo::blackholeSymID ( ) const
inline

Definition at line 190 of file SymbolTableInfo.h.

191 {
192 return BlackHole;
193 }

◆ blkPtrSymID()

SymID SVF::SymbolTableInfo::blkPtrSymID ( ) const
inline

Definition at line 175 of file SymbolTableInfo.h.

176 {
177 return BlkPtr;
178 }

◆ constantSymID()

SymID SVF::SymbolTableInfo::constantSymID ( ) const
inline

Definition at line 185 of file SymbolTableInfo.h.

186 {
187 return ConstantObj;
188 }

◆ createDummyObjTypeInfo()

const ObjTypeInfo * SymbolTableInfo::createDummyObjTypeInfo ( SymID  symId,
const SVFType type 
)

Definition at line 163 of file SymbolTableInfo.cpp.

164{
165 if (objTypeInfoMap.find(symId)==objTypeInfoMap.end())
166 {
169 }
171 return ti;
172}
newitem type
Definition cJSON.cpp:2739
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

◆ createObjTypeInfo()

ObjTypeInfo * SymbolTableInfo::createObjTypeInfo ( const SVFType type)

Create an objectInfo based on LLVM type (value is null, and type could be null, representing a dummy object)

Definition at line 68 of file SymbolTableInfo.cpp.

69{
71 if(type && type->isPointerTy())
72 {
74 }
75 return typeInfo;
76}
void setFlag(MEMTYPE mask)
Flag for this object type.
static const Option< u32_t > MaxFieldLimit
Maximum number of field derivations for an object.
Definition Options.h:38

◆ destroy()

void SymbolTableInfo::destroy ( )
private

Clean up memory.

Destroy the memory for this symbol table after use

Definition at line 143 of file SymbolTableInfo.cpp.

144{
145
146 for (auto &pair: objTypeInfoMap)
147 {
148 if (ObjTypeInfo* ti = pair.second)
149 delete ti;
150 }
151
152 for (const SVFType* type : svfTypes)
153 delete type;
154 svfTypes.clear();
155
156 for (const StInfo* st : stInfos)
157 delete st;
158 stInfos.clear();
159
160 mod = nullptr;
161}

◆ dump()

void SymbolTableInfo::dump ( )
virtual

Another debug method.

Definition at line 329 of file SymbolTableInfo.cpp.

330{
332 for (ValueToIDMapTy::iterator iter = valSymMap.begin(); iter != valSymMap.end();
333 ++iter)
334 {
335 const SymID i = iter->second;
336 SVFValue* val = (SVFValue*) iter->first;
337 idmap[i] = val;
338 }
339 for (ValueToIDMapTy::iterator iter = objSymMap.begin(); iter != objSymMap.end();
340 ++iter)
341 {
342 const SymID i = iter->second;
343 SVFValue* val = (SVFValue*) iter->first;
344 idmap[i] = val;
345 }
346 for (FunToIDMapTy::iterator iter = returnSymMap.begin(); iter != returnSymMap.end();
347 ++iter)
348 {
349 const SymID i = iter->second;
350 SVFValue* val = (SVFValue*) iter->first;
351 idmap[i] = val;
352 }
353 for (FunToIDMapTy::iterator iter = varargSymMap.begin(); iter != varargSymMap.end();
354 ++iter)
355 {
356 const SymID i = iter->second;
357 SVFValue* val = (SVFValue*) iter->first;
358 idmap[i] = val;
359 }
360 outs() << "{SymbolTableInfo \n";
361 for (auto iter : idmap)
362 {
363 outs() << iter.first << " " << iter.second->toString() << "\n";
364 }
365 outs() << "}\n";
366}
ValueToIDMapTy valSymMap
map a value to its sym id
ValueToIDMapTy objSymMap
map a obj reference to its sym id
FunToIDMapTy varargSymMap
vararg map
FunToIDMapTy returnSymMap
return map
std::ostream & outs()
Overwrite llvm::outs()
Definition SVFUtil.h:50
unsigned SymID
Definition GeneralType.h:57

◆ getFlattenedElemIdx()

u32_t SymbolTableInfo::getFlattenedElemIdx ( const SVFType T,
u32_t  origId 
)

Flattened element idx of an array or struct by considering stride.

Flattened offset information of a struct or an array including its array fields.

When Options::ModelArrays is disabled, any element index Array is modeled as the base

Definition at line 184 of file SymbolTableInfo.cpp.

185{
187 {
188 const std::vector<u32_t>& so = getTypeInfo(T)->getFlattenedElemIdxVec();
189 assert ((unsigned)origId < so.size() && !so.empty() && "element index out of bounds, can't get flattened index!");
190 return so[origId];
191 }
192 else
193 {
194 if(SVFUtil::isa<SVFStructType>(T))
195 {
196 const std::vector<u32_t>& so = getTypeInfo(T)->getFlattenedFieldIdxVec();
197 assert ((unsigned)origId < so.size() && !so.empty() && "Struct index out of bounds, can't get flattened index!");
198 return so[origId];
199 }
200 else
201 {
203 assert(SVFUtil::isa<SVFArrayType>(T) && "Only accept struct or array type if Options::ModelArrays is disabled!");
204 return 0;
205 }
206 }
207}
static const Option< bool > ModelArrays
Definition Options.h:188
std::vector< u32_t > & getFlattenedElemIdxVec()
Definition SVFType.h:98
std::vector< u32_t > & getFlattenedFieldIdxVec()
Definition SVFType.h:94
const StInfo * getTypeInfo(const SVFType *T) const
Get struct info.

◆ getFlattenFieldTypes()

const std::vector< const SVFType * > & SymbolTableInfo::getFlattenFieldTypes ( const SVFStructType T)
protected

Return the flattened field type for struct type only.

Definition at line 232 of file SymbolTableInfo.cpp.

233{
235}
std::vector< const SVFType * > & getFlattenFieldTypes()
Definition SVFType.h:106

◆ getFlatternedElemType()

const SVFType * SymbolTableInfo::getFlatternedElemType ( const SVFType baseType,
u32_t  flatten_idx 
)

Return the type of a flattened element given a flattened index.

Definition at line 215 of file SymbolTableInfo.cpp.

216{
218 {
219 const std::vector<const SVFType*>& so = getTypeInfo(baseType)->getFlattenElementTypes();
220 assert (flatten_idx < so.size() && !so.empty() && "element index out of bounds or struct opaque type, can't get element type!");
221 return so[flatten_idx];
222 }
223 else
224 {
225 const std::vector<const SVFType*>& so = getTypeInfo(baseType)->getFlattenFieldTypes();
226 assert (flatten_idx < so.size() && !so.empty() && "element index out of bounds or struct opaque type, can't get element type!");
227 return so[flatten_idx];
228 }
229}
std::vector< const SVFType * > & getFlattenElementTypes()
Definition SVFType.h:102

◆ getMaxStructSize()

u32_t SVF::SymbolTableInfo::getMaxStructSize ( ) const
inline

Definition at line 240 of file SymbolTableInfo.h.

241 {
242 return maxStSize;
243 }

◆ getModelConstants()

bool SVF::SymbolTableInfo::getModelConstants ( ) const
inline

Definition at line 135 of file SymbolTableInfo.h.

136 {
137 return modelConstants;
138 }

◆ getModule()

SVFModule * SVF::SymbolTableInfo::getModule ( )
inline

Module.

Definition at line 142 of file SymbolTableInfo.h.

143 {
144 return mod;
145 }

◆ getModulusOffset()

APOffset SymbolTableInfo::getModulusOffset ( const BaseObjVar baseObj,
const APOffset apOffset 
)
virtual

Given an offset from a Gep Instruction, return it modulus offset by considering memory layout.

Get modulus offset given the type information

if the offset is negative, it's possible that we're looking for an obj node out of range of current struct. Make the offset positive so we can still get a node within current struct to represent this obj.

@offset: the index allocated to the newly generated field node; @Options::MaxFieldLimit(): preset upper bound of field number; @maxOffset: the max field number of the base object;

E.g., offset == 260, maxOffset == 270, Options::MaxFieldLimit() == 256 ==> offset = 4

E.g., offset == 100, maxOffset == 98, Options::MaxFieldLimit() == 256 ==> offset = 2

E.g., offset == 100, maxOffset == 98, Options::MaxFieldLimit() == 256 ==> offset = 97

Definition at line 94 of file SymbolTableInfo.cpp.

95{
96
100
101 APOffset offset = apOffset;
102 if(offset < 0)
103 {
104 writeWrnMsg("try to create a gep node with negative offset.");
105 offset = abs(offset);
106 }
107 u32_t maxOffset = baseObj->getMaxFieldOffsetLimit();
108
114 if (maxOffset == 0)
115 offset = 0;
121 else if ((u32_t)offset > maxOffset - 1)
122 {
128 else
132 offset = maxOffset - 1;
133 }
134
135 return offset;
136}
unsigned u32_t
Definition CommandLine.h:18
buffer offset
Definition cJSON.cpp:1113
static const Option< bool > CyclicFldIdx
Definition Options.h:189
void writeWrnMsg(const std::string &msg)
Writes a message run through wrnMsg.
Definition SVFUtil.cpp:67
s64_t APOffset
Definition GeneralType.h:60

◆ getNumOfFlattenElements()

u32_t SymbolTableInfo::getNumOfFlattenElements ( const SVFType T)

Number of flattened elements of an array or struct.

Get a reference to the components of struct_info. Number of flattened elements of an array or struct

Definition at line 175 of file SymbolTableInfo.cpp.

176{
179 else
181}
u32_t getNumOfFlattenElements() const
Return number of elements after flattening (including array elements)
Definition SVFType.h:139
u32_t getNumOfFlattenFields() const
Return the number of fields after flattening (ignoring array elements)
Definition SVFType.h:145

◆ getObjSym()

SymID SVF::SymbolTableInfo::getObjSym ( const SVFValue val) const
inline

Definition at line 201 of file SymbolTableInfo.h.

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 }

◆ getObjTypeInfo()

ObjTypeInfo * SVF::SymbolTableInfo::getObjTypeInfo ( SymID  id) const
inline

Definition at line 211 of file SymbolTableInfo.h.

212 {
213 IDToTypeInfoMapTy::const_iterator iter = objTypeInfoMap.find(id);
214 assert(iter!=objTypeInfoMap.end() && "obj type info not found");
215 return iter->second;
216 }

◆ getOriginalElemType()

const SVFType * SymbolTableInfo::getOriginalElemType ( const SVFType baseType,
u32_t  origId 
) const

struct A { int id; int salary; }; struct B { char name[20]; struct A a;} B b; OriginalElemType of b with field_idx 1 : Struct A FlatternedElemType of b with field_idx 1 : int

Definition at line 209 of file SymbolTableInfo.cpp.

210{
212}
const SVFType * getOriginalElemType(u32_t fldIdx) const
Definition SVFValue.cpp:20

◆ getRetSym()

SymID SVF::SymbolTableInfo::getRetSym ( const SVFFunction val) const
inline

Definition at line 218 of file SymbolTableInfo.h.

219 {
220 FunToIDMapTy::const_iterator iter = returnSymMap.find(val);
221 assert(iter!=returnSymMap.end() && "ret sym not found");
222 return iter->second;
223 }

◆ getStInfos()

const Set< const StInfo * > & SVF::SymbolTableInfo::getStInfos ( ) const
inline

Definition at line 287 of file SymbolTableInfo.h.

288 {
289 return stInfos;
290 }

◆ getSVFTypes()

const SVFTypeSet & SVF::SymbolTableInfo::getSVFTypes ( ) const
inline

Constant reader that won't change the state of the symbol table.

Definition at line 282 of file SymbolTableInfo.h.

283 {
284 return svfTypes;
285 }

◆ getTotalSymNum()

u32_t SVF::SymbolTableInfo::getTotalSymNum ( ) const
inline

Statistics.

Definition at line 236 of file SymbolTableInfo.h.

237 {
238 return totalSymNum;
239 }

◆ getTypeInfo()

const StInfo * SymbolTableInfo::getTypeInfo ( const SVFType T) const

Get struct info.

Get a reference to StructInfo.

Definition at line 57 of file SymbolTableInfo.cpp.

58{
59 assert(T);
60 SVFTypeSet::const_iterator it = svfTypes.find(T);
61 assert(it != svfTypes.end() && "type info not found? collect them first during SVFIR Building");
62 return (*it)->getTypeInfo();
63}

◆ getValSym()

SymID SymbolTableInfo::getValSym ( const SVFValue val)

Get different kinds of syms.

Definition at line 371 of file SymbolTableInfo.cpp.

372{
373
374 if(val->isNullPtr())
375 return nullPtrSymID();
376 else if (val->isblackHole())
377 return blkPtrSymID();
378 else
379 {
380 ValueToIDMapTy::const_iterator iter = valSymMap.find(val);
381 assert(iter!=valSymMap.end() &&"value sym not found");
382 return iter->second;
383 }
384}
SymID blkPtrSymID() const
SymID nullPtrSymID() const

◆ getVarargSym()

SymID SVF::SymbolTableInfo::getVarargSym ( const SVFFunction val) const
inline

Definition at line 225 of file SymbolTableInfo.h.

226 {
227 FunToIDMapTy::const_iterator iter = varargSymMap.find(val);
228 assert(iter!=varargSymMap.end() && "vararg sym not found");
229 return iter->second;
230 }

◆ hasSVFTypeInfo()

bool SVF::SymbolTableInfo::hasSVFTypeInfo ( const SVFType T)
inline

Definition at line 297 of file SymbolTableInfo.h.

298 {
299 return svfTypes.find(T) != svfTypes.end();
300 }

◆ hasValSym()

bool SymbolTableInfo::hasValSym ( const SVFValue val)

Definition at line 386 of file SymbolTableInfo.cpp.

387{
388 if (val->isNullPtr() || val->isblackHole())
389 return true;
390 else
391 return (valSymMap.find(val) != valSymMap.end());
392}

◆ idToObjTypeInfoMap() [1/2]

IDToTypeInfoMapTy & SVF::SymbolTableInfo::idToObjTypeInfoMap ( )
inline

Definition at line 258 of file SymbolTableInfo.h.

259 {
260 return objTypeInfoMap;
261 }

◆ idToObjTypeInfoMap() [2/2]

const IDToTypeInfoMapTy & SVF::SymbolTableInfo::idToObjTypeInfoMap ( ) const
inline

Definition at line 263 of file SymbolTableInfo.h.

264 {
265 return objTypeInfoMap;
266 }

◆ isBlkObj()

static bool SVF::SymbolTableInfo::isBlkObj ( NodeID  id)
inlinestatic

Definition at line 162 of file SymbolTableInfo.h.

163 {
164 return (id == BlackHole);
165 }

◆ isBlkObjOrConstantObj()

static bool SVF::SymbolTableInfo::isBlkObjOrConstantObj ( NodeID  id)
inlinestatic

Definition at line 170 of file SymbolTableInfo.h.

171 {
172 return (isBlkObj(id) || isConstantObj(id));
173 }
static bool isConstantObj(NodeID id)
static bool isBlkObj(NodeID id)

◆ isBlkPtr()

static bool SVF::SymbolTableInfo::isBlkPtr ( NodeID  id)
inlinestatic

special value

Definition at line 154 of file SymbolTableInfo.h.

155 {
156 return (id == BlkPtr);
157 }

◆ isConstantObj()

static bool SVF::SymbolTableInfo::isConstantObj ( NodeID  id)
inlinestatic

Definition at line 166 of file SymbolTableInfo.h.

167 {
168 return (id == ConstantObj);
169 }

◆ isNullPtr()

static bool SVF::SymbolTableInfo::isNullPtr ( NodeID  id)
inlinestatic

Definition at line 158 of file SymbolTableInfo.h.

159 {
160 return (id == NullPtr);
161 }

◆ nullPtrSymID()

SymID SVF::SymbolTableInfo::nullPtrSymID ( ) const
inline

Definition at line 180 of file SymbolTableInfo.h.

181 {
182 return NullPtr;
183 }

◆ objSyms()

ValueToIDMapTy & SVF::SymbolTableInfo::objSyms ( )
inline

Definition at line 253 of file SymbolTableInfo.h.

254 {
255 return objSymMap;
256 }

◆ printFlattenFields()

void SymbolTableInfo::printFlattenFields ( const SVFType type)

Debug method.

All rest types are scalar type?

Definition at line 240 of file SymbolTableInfo.cpp.

241{
242
243 if (const SVFArrayType* at = SVFUtil::dyn_cast<SVFArrayType>(type))
244 {
245 outs() << " {Type: " << *at << "}\n"
246 << "\tarray type "
247 << "\t [element size = " << getNumOfFlattenElements(at) << "]\n"
248 << "\n";
249 }
250 else if (const SVFStructType *st = SVFUtil::dyn_cast<SVFStructType>(type))
251 {
252 outs() <<" {Type: " << *st << "}\n";
253 const std::vector<const SVFType*>& finfo = getTypeInfo(st)->getFlattenFieldTypes();
254 int field_idx = 0;
255 for(const SVFType* type : finfo)
256 {
257 outs() << " \tField_idx = " << ++field_idx
258 << ", field type: " << *type << "\n";
259 }
260 outs() << "\n";
261 }
262 else if (const SVFPointerType* pt= SVFUtil::dyn_cast<SVFPointerType>(type))
263 {
264 outs() << *pt << "\n";
265 }
266 else if (const SVFFunctionType* fu =
267 SVFUtil::dyn_cast<SVFFunctionType>(type))
268 {
269 outs() << " {Type: " << *fu << "}\n\n";
270 }
271 else if (const SVFOtherType* ot = SVFUtil::dyn_cast<SVFOtherType>(type))
272 {
273 outs() << " {Type: "<< *ot << "(SVFOtherType)}\n\n";
274 }
275 else
276 {
277 assert(type->isSingleValueType() && "not a single value type, then what else!!");
280 outs() << " {Type: " << *type << "}\n"
281 << "\t [object size = " << eSize << "]\n"
282 << "\n";
283 }
284}
u32_t getNumOfFlattenElements(const SVFType *T)
Number of flattened elements of an array or struct.

◆ releaseSymbolInfo()

static void SVF::SymbolTableInfo::releaseSymbolInfo ( )
inlinestatic

Definition at line 118 of file SymbolTableInfo.h.

119 {
120 delete symInfo;
121 symInfo = nullptr;
122 }
static SymbolTableInfo * symInfo

◆ retSyms()

FunToIDMapTy & SVF::SymbolTableInfo::retSyms ( )
inline

Definition at line 268 of file SymbolTableInfo.h.

269 {
270 return returnSymMap;
271 }

◆ setModelConstants()

void SVF::SymbolTableInfo::setModelConstants ( bool  _modelConstants)
inline

Set / Get modelConstants.

Definition at line 131 of file SymbolTableInfo.h.

132 {
134 }

◆ setModule()

void SVF::SymbolTableInfo::setModule ( SVFModule m)
inline

Module.

Definition at line 147 of file SymbolTableInfo.h.

148 {
149 mod = m;
150 }

◆ SymbolInfo()

SymbolTableInfo * SymbolTableInfo::SymbolInfo ( )
static

Singleton design here to make sure we only have one instance during any analysis.

Get the symbol table instance

Definition at line 81 of file SymbolTableInfo.cpp.

82{
83 if (symInfo == nullptr)
84 {
87 }
88 return symInfo;
89}
static const Option< bool > ModelConsts
Definition Options.h:187
void setModelConstants(bool _modelConstants)
Set / Get modelConstants.
SymbolTableInfo(void)
Constructor.

◆ toString()

std::string SymbolTableInfo::toString ( SYMTYPE  symtype)
static

Definition at line 286 of file SymbolTableInfo.cpp.

287{
288 switch (symtype)
289 {
291 {
292 return "BlackHole";
293 }
295 {
296 return "ConstantObj";
297 }
298 case SYMTYPE::BlkPtr:
299 {
300 return "BlkPtr";
301 }
302 case SYMTYPE::NullPtr:
303 {
304 return "NullPtr";
305 }
307 {
308 return "ValSym";
309 }
311 {
312 return "ObjSym";
313 }
315 {
316 return "RetSym";
317 }
319 {
320 return "VarargSym";
321 }
322 default:
323 {
324 return "Invalid SYMTYPE";
325 }
326 }
327}

◆ valSyms()

ValueToIDMapTy & SVF::SymbolTableInfo::valSyms ( )
inline

Get different kinds of syms maps.

Definition at line 248 of file SymbolTableInfo.h.

249 {
250 return valSymMap;
251 }

◆ varargSyms()

FunToIDMapTy & SVF::SymbolTableInfo::varargSyms ( )
inline

Definition at line 273 of file SymbolTableInfo.h.

274 {
275 return varargSymMap;
276 }

Friends And Related Symbol Documentation

◆ SVFIRReader

friend class SVFIRReader
friend

Definition at line 51 of file SymbolTableInfo.h.

◆ SVFIRWriter

friend class SVFIRWriter
friend

Definition at line 50 of file SymbolTableInfo.h.

◆ SymbolTableBuilder

Definition at line 49 of file SymbolTableInfo.h.

Member Data Documentation

◆ maxStruct

const SVFType* SVF::SymbolTableInfo::maxStruct

The struct type with the most fields.

Definition at line 332 of file SymbolTableInfo.h.

◆ maxStSize

u32_t SVF::SymbolTableInfo::maxStSize

The number of fields in max_struct.

Definition at line 335 of file SymbolTableInfo.h.

◆ mod

SVFModule* SVF::SymbolTableInfo::mod
private

Module.

Definition at line 93 of file SymbolTableInfo.h.

◆ modelConstants

bool SVF::SymbolTableInfo::modelConstants
private

Whether to model constants.

Definition at line 99 of file SymbolTableInfo.h.

◆ objSymMap

ValueToIDMapTy SVF::SymbolTableInfo::objSymMap
private

map a obj reference to its sym id

Definition at line 84 of file SymbolTableInfo.h.

◆ objTypeInfoMap

IDToTypeInfoMapTy SVF::SymbolTableInfo::objTypeInfoMap
private

map a memory sym id to its obj

Definition at line 87 of file SymbolTableInfo.h.

◆ returnSymMap

FunToIDMapTy SVF::SymbolTableInfo::returnSymMap
private

return map

Definition at line 85 of file SymbolTableInfo.h.

◆ stInfos

Set<const StInfo*> SVF::SymbolTableInfo::stInfos
protected

(owned) All StInfo

Definition at line 362 of file SymbolTableInfo.h.

◆ svfTypes

SVFTypeSet SVF::SymbolTableInfo::svfTypes
protected

(owned) All SVF Types Every type T is mapped to StInfo which contains size (fsize) , offset(foffset) fsize[i] is the number of fields in the largest such struct, else fsize[i] = 1. fsize[0] is always the size of the expanded struct.

Definition at line 359 of file SymbolTableInfo.h.

◆ symInfo

SymbolTableInfo * SymbolTableInfo::symInfo = nullptr
staticprivate

Definition at line 90 of file SymbolTableInfo.h.

◆ totalSymNum

SymID SVF::SymbolTableInfo::totalSymNum
private

total number of symbols

Definition at line 102 of file SymbolTableInfo.h.

◆ valSymMap

ValueToIDMapTy SVF::SymbolTableInfo::valSymMap
private

map a value to its sym id

Definition at line 83 of file SymbolTableInfo.h.

◆ varargSymMap

FunToIDMapTy SVF::SymbolTableInfo::varargSymMap
private

vararg map

Definition at line 86 of file SymbolTableInfo.h.


The documentation for this class was generated from the following files: