Static Value-Flow Analysis
Loading...
Searching...
No Matches
ObjTypeInfo.h
Go to the documentation of this file.
1//===- ObjTypeInfo.h -- Object type information------------------------//
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 * ObjTypeInfo.h
25 *
26 * Created on: Nov 11, 2013
27 * Author: Yulei Sui
28 */
29
30#ifndef INCLUDE_SVFIR_OBJTYPEINFO_H_
31#define INCLUDE_SVFIR_OBJTYPEINFO_H_
32
33
34#include "Util/SVFUtil.h"
36namespace SVF
37{
38
43{
44 friend class SVFIRWriter;
45 friend class SVFIRReader;
46 friend class SymbolTableBuilder;
47
48public:
49 typedef enum
50 {
51 FUNCTION_OBJ = 0x1, // object is a function
52 GLOBVAR_OBJ = 0x2, // object is a global variable
53 STATIC_OBJ = 0x4, // object is a static variable allocated before main
54 STACK_OBJ = 0x8, // object is a stack variable
55 HEAP_OBJ = 0x10, // object is a heap variable
56 VAR_STRUCT_OBJ = 0x20, // object contains struct
57 VAR_ARRAY_OBJ = 0x40, // object contains array
58 CONST_STRUCT_OBJ = 0x80, // constant struct
59 CONST_ARRAY_OBJ = 0x100, // constant array
60 CONST_GLOBAL_OBJ = 0x200, // global constant object
61 CONST_DATA = 0x400, // constant object str e.g. 5, 10, 1.0
62 } MEMTYPE;
63
64private:
66 const SVFType* type;
75
78
79 inline void resetTypeForHeapStaticObj(const SVFType* t)
80 {
81 assert((isStaticObj() || isHeap()) && "can only reset the inferred type for heap and static objects!");
82 type = t;
83 }
84public:
85
87 ObjTypeInfo(const SVFType* t, u32_t max) : type(t), flags(0), maxOffsetLimit(max), elemNum(max)
88 {
89 assert(t && "no type information for this object?");
90 }
91
93 virtual ~ObjTypeInfo()
94 {
95 }
96
98 inline const SVFType* getType() const
99 {
100 return type;
101 }
102
105 {
106 return maxOffsetLimit;
107 }
108
111 {
113 }
114
117 {
118 elemNum = num;
120 }
121
123 inline u32_t getNumOfElements() const
124 {
125 return elemNum;
126 }
127
129 inline u32_t getByteSizeOfObj() const
130 {
131 assert(isConstantByteSize() && "This Obj's byte size is not constant.");
132 return byteSize;
133 }
134
136 inline void setByteSizeOfObj(u32_t size)
137 {
138 byteSize = size;
139 }
140
142 inline bool isConstantByteSize() const
143 {
144 return byteSize != 0;
145 }
146
148
149 inline void setFlag(MEMTYPE mask)
150 {
151 flags |= mask;
152 }
153 inline bool hasFlag(MEMTYPE mask)
154 {
155 return (flags & mask) == mask;
156 }
158
160
161 inline bool isFunction()
162 {
163 return hasFlag(FUNCTION_OBJ);
164 }
165 inline bool isGlobalObj()
166 {
167 return hasFlag(GLOBVAR_OBJ);
168 }
169 inline bool isStaticObj()
170 {
171 return hasFlag(STATIC_OBJ);
172 }
173 inline bool isStack()
174 {
175 return hasFlag(STACK_OBJ);
176 }
177 inline bool isHeap()
178 {
179 return hasFlag(HEAP_OBJ);
180 }
182
185
186 inline bool isVarStruct()
187 {
188 return hasFlag(VAR_STRUCT_OBJ);
189 }
190 inline bool isConstantStruct()
191 {
193 }
194 inline bool isStruct()
195 {
197 }
198 inline bool isVarArray()
199 {
200 return hasFlag(VAR_ARRAY_OBJ);
201 }
202 inline bool isConstantArray()
203 {
204 return hasFlag(CONST_ARRAY_OBJ);
205 }
206 inline bool isArray()
207 {
209 }
211 {
213 }
215 {
216 return hasFlag(CONST_DATA);
217 }
219};
220
221
222} // End namespace SVF
223
224#endif /* INCLUDE_SVFIR_OBJTYPEINFO_H_ */
const SVFType * type
SVF type.
Definition ObjTypeInfo.h:66
bool isConstantStruct()
u32_t elemNum
Size of the object or number of elements.
Definition ObjTypeInfo.h:74
void resetTypeForHeapStaticObj(const SVFType *t)
Definition ObjTypeInfo.h:79
bool isConstDataOrAggData()
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
Definition ObjTypeInfo.h:45
const SVFType * getType() const
Get LLVM type.
Definition ObjTypeInfo.h:98
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.
Definition ObjTypeInfo.h:77
u32_t flags
Type flags.
Definition ObjTypeInfo.h:68
void setByteSizeOfObj(u32_t size)
Set the byte size of this object.
friend class SVFIRWriter
Definition ObjTypeInfo.h:44
bool isFunction()
Object attributes.
ObjTypeInfo(const SVFType *t, u32_t max)
Constructors.
Definition ObjTypeInfo.h:87
virtual ~ObjTypeInfo()
Destructor.
Definition ObjTypeInfo.h:93
u32_t getByteSizeOfObj() const
Get the byte size of this object.
void setFlag(MEMTYPE mask)
Flag for this object type.
void setNumOfElements(u32_t num)
Set the number of elements of this object.
for isBitcode
Definition BasicTypes.h:68
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74
unsigned u32_t
Definition GeneralType.h:47