40using namespace SVFUtil;
47 assert(t &&
"no type information for this object?");
61 assert(
it !=
svfTypes.end() &&
"type info not found? collect them first during SVFIR Building");
62 return (*it)->getTypeInfo();
104 writeWrnMsg(
"try to create a gep node with negative offset.");
189 assert ((
unsigned)
origId <
so.size() && !
so.empty() &&
"element index out of bounds, can't get flattened index!");
194 if(SVFUtil::isa<SVFStructType>(
T))
197 assert ((
unsigned)
origId <
so.size() && !
so.empty() &&
"Struct index out of bounds, can't get flattened index!");
203 assert(SVFUtil::isa<SVFArrayType>(
T) &&
"Only accept struct or array type if Options::ModelArrays is disabled!");
220 assert (
flatten_idx <
so.size() && !
so.empty() &&
"element index out of bounds or struct opaque type, can't get element type!");
226 assert (
flatten_idx <
so.size() && !
so.empty() &&
"element index out of bounds or struct opaque type, can't get element type!");
245 outs() <<
" {Type: " << *
at <<
"}\n"
252 outs() <<
" {Type: " << *
st <<
"}\n";
258 <<
", field type: " << *
type <<
"\n";
264 outs() << *pt <<
"\n";
267 SVFUtil::dyn_cast<SVFFunctionType>(
type))
269 outs() <<
" {Type: " << *
fu <<
"}\n\n";
273 outs() <<
" {Type: "<< *
ot <<
"(SVFOtherType)}\n\n";
277 assert(
type->isSingleValueType() &&
"not a single value type, then what else!!");
280 outs() <<
" {Type: " << *
type <<
"}\n"
281 <<
"\t [object size = " <<
eSize <<
"]\n"
296 return "ConstantObj";
324 return "Invalid SYMTYPE";
360 outs() <<
"{SymbolTableInfo \n";
363 outs() <<
iter.first <<
" " <<
iter.second->toString() <<
"\n";
376 else if (
val->isblackHole())
388 if (
val->isNullPtr() ||
val->isblackHole())
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
static const Option< bool > CyclicFldIdx
static const Option< bool > ModelArrays
static const Option< u32_t > MaxFieldLimit
Maximum number of field derivations for an object.
const SVFType * getOriginalElemType(u32_t fldIdx) const
std::vector< const SVFType * > & getFlattenElementTypes()
std::vector< u32_t > & getFlattenedElemIdxVec()
u32_t getNumOfFlattenElements() const
Return number of elements after flattening (including array elements)
std::vector< const SVFType * > & getFlattenFieldTypes()
std::vector< u32_t > & getFlattenedFieldIdxVec()
u32_t getNumOfFlattenFields() const
Return the number of fields after flattening (ignoring array elements)
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)
SymbolTableInfo(void)
Constructor.
void writeWrnMsg(const std::string &msg)
Writes a message run through wrnMsg.
std::ostream & outs()
Overwrite llvm::outs()
llvm::IRBuilder IRBuilder