Static Value-Flow Analysis
Loading...
Searching...
No Matches
SymbolTableInfo.cpp
Go to the documentation of this file.
1//===- SymbolTableInfo.cpp -- 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/*
25 * SymbolTableInfo.cpp
26 *
27 * Created on: Nov 11, 2013
28 * Author: Yulei Sui
29 */
30
31#include <memory>
32
34#include "Util/Options.h"
35#include "SVFIR/SVFModule.h"
36
37
38using namespace std;
39using namespace SVF;
40using namespace SVFUtil;
41
43
44
45ObjTypeInfo::ObjTypeInfo(const SVFType* t, u32_t max) : type(t), flags(0), maxOffsetLimit(max), elemNum(max)
46{
47 assert(t && "no type information for this object?");
48}
49
50
52{
53 assert((isStaticObj() || isHeap()) && "can only reset the inferred type for heap and static objects!");
54 type = t;
55}
56
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}
64
65/*
66 * Initial the memory object here (for a dummy object)
67 */
69{
71 if(type && type->isPointerTy())
72 {
74 }
75 return typeInfo;
76}
77
90
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}
137
138
139
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}
162
173
182
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}
208
213
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}
230
231
232const std::vector<const SVFType*>& SymbolTableInfo::getFlattenFieldTypes(const SVFStructType *T)
233{
235}
236
237/*
238 * Print out the composite type information
239 */
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}
285
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}
328
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}
367
368
370
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}
385
387{
388 if (val->isNullPtr() || val->isblackHole())
389 return true;
390 else
391 return (valSymMap.find(val) != valSymMap.end());
392}
newitem type
Definition cJSON.cpp:2739
buffer offset
Definition cJSON.cpp:1113
const SVFType * type
SVF type.
ObjTypeInfo(const SVFType *t, u32_t max)
Constructors.
void setFlag(MEMTYPE mask)
Flag for this object type.
void resetTypeForHeapStaticObj(const SVFType *type)
static const Option< bool > ModelConsts
Definition Options.h:187
static const Option< bool > CyclicFldIdx
Definition Options.h:189
static const Option< bool > ModelArrays
Definition Options.h:188
static const Option< u32_t > MaxFieldLimit
Maximum number of field derivations for an object.
Definition Options.h:38
const SVFType * getOriginalElemType(u32_t fldIdx) const
Definition SVFValue.cpp:20
std::vector< const SVFType * > & getFlattenElementTypes()
Definition SVFType.h:102
std::vector< u32_t > & getFlattenedElemIdxVec()
Definition SVFType.h:98
u32_t getNumOfFlattenElements() const
Return number of elements after flattening (including array elements)
Definition SVFType.h:139
std::vector< const SVFType * > & getFlattenFieldTypes()
Definition SVFType.h:106
std::vector< u32_t > & getFlattenedFieldIdxVec()
Definition SVFType.h:94
u32_t getNumOfFlattenFields() const
Return the number of fields after flattening (ignoring array elements)
Definition SVFType.h:145
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.
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
const ObjTypeInfo * createDummyObjTypeInfo(SymID symId, const SVFType *type)
const SVFType * getOriginalElemType(const SVFType *baseType, u32_t origId) const
void setModelConstants(bool _modelConstants)
Set / Get modelConstants.
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.
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.
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.
FunToIDMapTy varargSymMap
vararg map
Set< const StInfo * > stInfos
(owned) All StInfo
virtual void dump()
Another debug method.
SymID nullPtrSymID() const
FunToIDMapTy returnSymMap
return map
bool hasValSym(const SVFValue *val)
SVFModule * mod
Module.
SymbolTableInfo(void)
Constructor.
void writeWrnMsg(const std::string &msg)
Writes a message run through wrnMsg.
Definition SVFUtil.cpp:67
std::ostream & outs()
Overwrite llvm::outs()
Definition SVFUtil.h:50
for isBitcode
Definition BasicTypes.h:68
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