43using namespace SVFUtil;
44using namespace LLVMUtil;
53 IntegerType::get(
llvmset->getContext(), 32)));
112 for (
const Function& fun :
M.functions())
116 if (fun.getFunctionType()->isVarArg())
132 if (
const StoreInst*
st = SVFUtil::dyn_cast<StoreInst>(&inst))
138 SVFUtil::dyn_cast<LoadInst>(&inst))
143 SVFUtil::dyn_cast<AllocaInst>(&inst))
147 else if (
const PHINode*
phi = SVFUtil::dyn_cast<PHINode>(&inst))
149 for (
u32_t i = 0;
i <
phi->getNumIncomingValues(); ++
i)
155 SVFUtil::dyn_cast<GetElementPtrInst>(&inst))
164 SVFUtil::dyn_cast<SelectInst>(&inst))
171 SVFUtil::dyn_cast<BinaryOperator>(&inst))
177 SVFUtil::dyn_cast<UnaryOperator>(&inst))
182 else if (
const CmpInst*
cmp = SVFUtil::dyn_cast<CmpInst>(&inst))
188 SVFUtil::dyn_cast<CastInst>(&inst))
193 SVFUtil::dyn_cast<ReturnInst>(&inst))
195 if (ret->getReturnValue())
199 SVFUtil::dyn_cast<BranchInst>(&inst))
201 Value*
opnd =
br->isConditional() ?
br->getCondition() :
br->getOperand(0);
205 SVFUtil::dyn_cast<SwitchInst>(&inst))
213 for (
u32_t i = 0;
i < cs->arg_size();
i++)
248 gi = bridge_gep_begin(SVFUtil::cast<User>(
val)),
249 ge = bridge_gep_end(SVFUtil::cast<User>(
val));
268 <<
"collect sym from ##"
304 outs() <<
"create a new value sym " <<
id <<
"\n");
336 outs() <<
"create a new obj sym " <<
id <<
"\n");
352 LLVMModuleSet::FunToIDMapTy::iterator
iter =
367 LLVMModuleSet::FunToIDMapTy::iterator
iter =
395 for (
u32_t i = 0;
i <
ce->getNumOperands(); ++
i)
457 else if (SVFUtil::isa<ConstantAggregate>(
ref))
464 assert(!SVFUtil::isa<ConstantExpr>(
val) &&
465 "we don't handle all other constant expression for now!");
479 const Type*
T = G->getValueType();
482 while (
const ArrayType*
AT = SVFUtil::dyn_cast<ArrayType>(
T))
484 T =
AT->getElementType();
488 if (SVFUtil::isa<StructType>(
T))
504 if (G->hasInitializer())
516 if (
C->getType()->isSingleValueType())
527 else if (SVFUtil::isa<ConstantArray>(
C))
529 for (
u32_t i = 0, e =
C->getNumOperands();
i != e;
i++)
534 else if (SVFUtil::isa<ConstantStruct>(
C))
536 for (
u32_t i = 0, e =
C->getNumOperands();
i != e;
i++)
541 else if(
const ConstantData* data = SVFUtil::dyn_cast<ConstantData>(
C))
546 SVFUtil::dyn_cast<ConstantDataSequential>(data))
557 (SVFUtil::isa<ConstantAggregateZero, UndefValue>(data)) &&
558 "Single value type data should have been handled!");
609 assert(
false &&
"not a heap allocation instruction?");
635 if (SVFUtil::isa<PointerType>(
val->getType()))
651 assert(
false &&
"not an allocation or global?");
667 writeWrnMsg(
"try to create an object with a non-pointer type.");
680 assert(
false &&
"Memory object must be either (1) held by a pointer-typed ref value or (2) a constant value (e.g., 10).");
696 if (SVFUtil::isa<GlobalVariable>(
val) &&
698 SVFUtil::isa<ConstantArray>(
704 if (SVFUtil::isa<StructType>(
elemTy))
706 if (SVFUtil::isa<GlobalVariable>(
val) &&
708 SVFUtil::isa<ConstantStruct>(
732 if(
const llvm::CallInst* callInst = llvm::dyn_cast<llvm::CallInst>(
val))
735 callInst->getCalledFunction())
737 std::vector<const Value*>
args;
741 if (
annotation.find(
"AllocSize:") != std::string::npos)
747 while (std::getline(
ss,
token,
'*'))
749 if (
token.rfind(
"Arg", 0) == 0)
766 for (
const llvm::Value*
arg :
args)
769 llvm::dyn_cast<llvm::ConstantInt>(
arg))
802 if(SVFUtil::isa<ArrayType>(
objTy))
846 if (SVFUtil::isa<Function>(
val))
874 else if(SVFUtil::isa<GlobalVariable>(
val))
884 else if (SVFUtil::isa<Instruction>(
val) &&
886 SVFUtil::cast<Instruction>(
val)))
910 assert(
"what other object do we have??");
932 if (SVFUtil::isa<StructType, ArrayType>(
ety))
#define DBOUT(TYPE, X)
LLVM debug macros, define type of your DBUG model of each pass.
NodeID constantSymID() const
ObjTypeInfo * createObjTypeInfo(const SVFType *type)
Create an objectInfo based on LLVM type (value is null, and type could be null, representing a dummy ...
static bool isBlkObj(NodeID id)
IDToTypeInfoMapTy objTypeInfoMap
map a memory sym id to its obj
NodeID totalSymNum
total number of symbols
static bool isConstantSym(NodeID id)
ValueToIDMapTy valSymMap
map a value to its sym id
FunToIDMapTy varargSymMap
vararg map
const std::vector< std::string > & getExtFuncAnnotations(const Function *fun)
SVFType * getSVFType(const Type *T)
Get or create SVFType and typeinfo.
const Type * getLLVMType(const SVFType *T) const
Get LLVM Type.
ValueToIDMapTy objSymMap
map a obj reference to its sym id
FunToIDMapTy returnSymMap
return map
const std::vector< std::reference_wrapper< Module > > & getLLVMModules() const
ObjTypeInference * getTypeInference()
NodeID allocateValueId(void)
Allocate a value ID as determined by the strategy.
static NodeIDAllocator * get(void)
Return (singleton) allocator.
NodeID allocateObjectId(void)
Allocate an object ID as determined by the strategy.
NodeID endSymbolAllocation(void)
Notify the allocator that all symbols have had IDs allocated.
void typeSizeDiffTest(const PointerType *oPTy, const Type *iTy, const Value *val)
const Type * inferObjType(const Value *var)
get or infer the type of the object pointed by the value
void validateTypeCheck(const CallBase *cs)
validate type inference
void resetTypeForHeapStaticObj(const SVFType *t)
u32_t getMaxFieldOffsetLimit()
Get max field offset limit.
const SVFType * getType() const
Get LLVM type.
void setByteSizeOfObj(u32_t size)
Set 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.
static Option< bool > ModelArrays
static const Option< bool > EnableTypeCheck
static const Option< bool > SymTabPrint
static Option< bool > ModelConsts
static const Option< u32_t > MaxFieldLimit
Maximum number of field derivations for an object.
u32_t getByteSize() const
u32_t getNumOfFlattenElements() const
Return number of elements after flattening (including array elements)
u32_t getNumOfFlattenFields() const
Return the number of fields after flattening (ignoring array elements)
const Type * inferTypeOfHeapObjOrStaticObj(const Instruction *inst)
Get the reference type of heap/static object from an allocation site.
void handleGlobalInitializerCE(const Constant *C)
void collectRet(const Function *val)
ObjTypeInfo * createObjTypeInfo(const Value *val)
Create an objectInfo based on LLVM value.
const Type * inferObjType(const Value *startValue)
Forward collect all possible infer sites starting from a value.
void collectSVFTypeInfo(const Value *val)
collect the syms
LLVMModuleSet * llvmModuleSet()
ObjTypeInference * getTypeInference()
ObjTypeInfo * createBlkObjTypeInfo(NodeID symId)
u32_t getNumOfFlattenElements(const Type *T)
Number of flattened elements of an array or struct.
u32_t getNumOfElements(const Type *ety)
Return size of this object based on LLVM value.
void handleGlobalCE(const GlobalVariable *G)
Handle constant expression.
u32_t analyzeHeapObjType(ObjTypeInfo *typeinfo, const Value *val)
Analyse types of heap and static objects.
u32_t analyzeHeapAllocByteSize(const Value *val)
Analyze byte size of heap alloc function (e.g. malloc/calloc/...)
void collectObj(const Value *val)
void buildMemModel()
Start building memory model.
ObjTypeInfo * createConstantObjTypeInfo(NodeID symId)
void collectVal(const Value *val)
void handleCE(const Value *val)
void collectSym(const Value *val)
void collectVararg(const Function *val)
void initTypeInfo(ObjTypeInfo *typeinfo, const Value *value, const Type *ty)
Initialize TypeInfo based on LLVM Value.
void analyzeObjType(ObjTypeInfo *typeinfo, const Value *val)
Analyse types of all flattened fields of this object.
StInfo * getOrAddSVFTypeInfo(const Type *T)
Get a reference to StructInfo.
void analyzeStaticObjType(ObjTypeInfo *typeinfo, const Value *val)
Analyse types of heap and static objects.
bool isHeapAllocExtCallViaRet(const Instruction *inst)
const Value * getFirstUseViaCastInst(const Value *val)
const CallBase * getLLVMCallSite(const Value *value)
Return LLVM callsite given a value.
const ConstantExpr * isBinaryConstantExpr(const Value *val)
bool isHeapAllocExtCall(const Instruction *inst)
bool isConstantObjSym(const Value *val)
Check whether this value points-to a constant object.
const ConstantExpr * isInt2PtrConstantExpr(const Value *val)
const ConstantExpr * isSelectConstantExpr(const Value *val)
const ConstantExpr * isTruncConstantExpr(const Value *val)
std::pair< s64_t, u64_t > getIntegerValue(const ConstantInt *intValue)
bool isNullPtrSym(const Value *val)
Check whether this value is a black hole.
std::string dumpValueAndDbgInfo(const Value *val)
bool isConstDataOrAggData(const Value *val)
Return true if the value refers to constant data, e.g., i32 0.
const std::string getSourceLoc(const Value *val)
const ConstantExpr * isPtr2IntConstantExpr(const Value *val)
const Value * getGlobalRep(const Value *val)
find the unique defined global across multiple modules
const ConstantExpr * isUnaryConstantExpr(const Value *val)
const ConstantExpr * isCastConstantExpr(const Value *val)
bool isBlackholeSym(const Value *val)
Check whether this value is a black hole.
bool isHeapAllocExtCallViaArg(const Instruction *inst)
bool isObject(const Value *ref)
Return true if this value refers to a object.
bool ArgInProgEntryFunction(const Value *val)
Return true if this is an argument of a program entry function (e.g. main)
const ConstantExpr * isGepConstantExpr(const Value *val)
Return corresponding constant expression, otherwise return nullptr.
u32_t getHeapAllocHoldingArgPosition(const Function *fun)
bool isNonInstricCallSite(const Instruction *inst)
Whether an instruction is a callsite in the application code, excluding llvm intrinsic calls.
const ConstantExpr * isCmpConstantExpr(const Value *val)
void increaseStackSize()
Increase the stack size limit.
std::enable_if_t<!is_simple_type< Y >::value, typename cast_retty< X, const Y >::ret_type > cast(const Y &Val)
std::ostream & errs()
Overwrite llvm::errs()
void writeWrnMsg(const std::string &msg)
Writes a message run through wrnMsg.
std::ostream & outs()
Overwrite llvm::outs()
bool classTyHasVTable(const StructType *ty)
llvm::GlobalVariable GlobalVariable
llvm::GlobalAlias GlobalAlias
llvm::ArrayType ArrayType
llvm::UnaryOperator UnaryOperator
llvm::StructType StructType
LLVM types.
llvm::AllocaInst AllocaInst
llvm::SwitchInst SwitchInst
llvm::GlobalValue GlobalValue
llvm::ConstantData ConstantData
llvm::Instruction Instruction
llvm::ConstantDataSequential ConstantDataSequential
llvm::Value Value
LLVM Basic classes.
llvm::ConstantExpr ConstantExpr
llvm::IRBuilder IRBuilder
llvm::PointerType PointerType
llvm::BinaryOperator BinaryOperator
llvm::StoreInst StoreInst
llvm::SelectInst SelectInst
llvm::GetElementPtrInst GetElementPtrInst
llvm::ReturnInst ReturnInst
llvm::BranchInst BranchInst
llvm::ConstantInt ConstantInt