33#include <llvm/Support/raw_ostream.h>
63 if (SVFUtil::isa<GlobalVariable>(
ref))
65 if (SVFUtil::isa<Function, AllocaInst>(
ref))
81 std::vector<const BasicBlock*>
bbVec;
82 bbVec.push_back(&fun->getEntryBlock());
88 reachableBBs.push_back(
svfbb);
91 for (DomTreeNode::iterator DI =
dtNode->begin(),
DE =
dtNode->end();
95 if(visited.find(
succbb)==visited.end())
110 for (BasicBlock::const_iterator
it = bb->begin(),
eit = bb->end();
113 if(SVFUtil::isa<ReturnInst>(*
it))
126 return fun->getReturnType()->isVoidTy();
128 std::vector<const BasicBlock*>
bbVec;
130 bbVec.push_back(&fun->getEntryBlock());
131 while(!
bbVec.empty())
144 if(visited.find(
succbb)==visited.end())
159 if(fun->hasAddressTaken())
163 for (Value::const_user_iterator
i = fun->user_begin(), e = fun->user_end();
i != e; ++
i)
176 if(
const Instruction* inst = SVFUtil::dyn_cast<Instruction>(value))
181 else if(
const Argument*
arg = SVFUtil::dyn_cast<Argument>(value))
191 if (
func && (
func->getIntrinsicID() == llvm::Intrinsic::donothing ||
192 func->getIntrinsicID() == llvm::Intrinsic::dbg_declare ||
193 func->getIntrinsicID() == llvm::Intrinsic::dbg_label ||
194 func->getIntrinsicID() == llvm::Intrinsic::dbg_value))
204 if (
const CallBase* call = SVFUtil::dyn_cast<CallBase>(inst))
224 if (Instruction::isCast(
CE->getOpcode()))
255 val =
ci->getOperand(0);
260 val =
ce->getOperand(0);
279 assert(SVFUtil::isa<PointerType>(
val->getType()) &&
"this value should be a pointer type!");
282 for (
const auto &
it :
val->uses())
284 if (SVFUtil::isa<BitCastInst>(
it.getUser()))
299 if (SVFUtil::isa<StructType, ArrayType>(
ety))
316 llvm::LLVMContext context;
317 llvm::SMDiagnostic
err;
320 std::unique_ptr<llvm::Module>
module = llvm::parseIRFile(filename, err, context);
325 err.print(
"isIRFile", llvm::errs());
368 if (
const CallBase *callInst = SVFUtil::dyn_cast<CallBase>(&I))
408 assert(!funcName.empty() &&
"Empty function name");
412 bool hasDot = funcName.find(
'.') != std::string::npos;
420 const std::string
prefix1 =
"\01_";
421 const std::string
prefix2 =
"\01";
423 funcName = funcName.substr(
prefix1.length());
425 funcName = funcName.substr(
prefix2.length());
429 std::replace(funcName.begin(), funcName.end(),
'.',
'_');
454 if(
val==
nullptr)
return "{ empty val }";
460 if (
const Instruction* inst = SVFUtil::dyn_cast<Instruction>(
val))
462 if (SVFUtil::isa<AllocaInst>(inst))
466 if (llvm::DbgDeclareInst *
DDI = SVFUtil::dyn_cast<llvm::DbgDeclareInst>(
DII))
468 llvm::DIVariable *
DIVar = SVFUtil::cast<llvm::DIVariable>(
DDI->getVariable());
469 rawstr <<
"\"ln\": " <<
DIVar->getLine() <<
", \"fl\": \"" <<
DIVar->getFilename().str() <<
"\"";
474 else if (
MDNode *
N = inst->getMetadata(
"dbg"))
476 llvm::DILocation*
Loc = SVFUtil::cast<llvm::DILocation>(
N);
477 unsigned Line =
Loc->getLine();
479 std::string
File =
Loc->getFilename().str();
498 else if (
argument->getArgNo()%10 == 2)
500 else if (
argument->getArgNo()%10 == 3)
504 rawstr <<
" arg " <<
argument->getParent()->getName().str() <<
" "
513 for (
unsigned i = 0, e =
CU_Nodes->getNumOperands();
i != e; ++
i)
515 llvm::DICompileUnit *
CUNode = SVFUtil::cast<llvm::DICompileUnit>(
CU_Nodes->getOperand(
i));
516 for (llvm::DIGlobalVariableExpression *
GV :
CUNode->getGlobalVariables())
518 llvm::DIGlobalVariable *
DGV =
GV->getVariable();
520 if(
DGV->getName() ==
gvar->getName())
522 rawstr <<
"\"ln\": " <<
DGV->getLine() <<
", \"fl\": \"" <<
DGV->getFilename().str() <<
"\"";
533 else if (
const BasicBlock* bb = SVFUtil::dyn_cast<BasicBlock>(
val))
535 rawstr <<
"\"basic block\": " << bb->getName().str() <<
", \"location\": " <<
getSourceLoc(bb->getFirstNonPHI());
539 rawstr <<
"constant data";
564 if (llvm::DISubprogram *
SP = F->getSubprogram())
566 if (
SP->describes(F))
567 rawstr <<
"\"ln\": " <<
SP->getLine() <<
", \"file\": \"" <<
SP->getFilename().str() <<
"\"";
607 rawstr <<
" llvm Value is null";
618 rawstr <<
" llvm type is null";
629 rawstr <<
" llvm Value is null";
636 bool isPtrTy = inst->getType()->isPointerTy();
637 if (
const CallBase* call = SVFUtil::dyn_cast<CallBase>(inst))
639 const Function* fun = call->getCalledFunction();
641 (
pSet->is_alloc(fun) ||
642 pSet->is_realloc(fun));
650 if (
const CallBase* call = SVFUtil::dyn_cast<CallBase>(inst))
652 const Function* fun = call->getCalledFunction();
665 bool isPtrTy = inst->getType()->isPointerTy();
666 if (
const CallBase* call = SVFUtil::dyn_cast<CallBase>(inst))
668 const Function* fun = call->getCalledFunction();
670 pSet->is_alloc_stack_ret(fun);
691 else if (SVFUtil::isa<Instruction>(
val) &&
706 if (SVFUtil::isa<AllocaInst>(
val))
711 else if (SVFUtil::isa<Instruction>(
val) &&
740 !SVFUtil::isa<GepObjVar>(
this) && !SVFUtil::isa<GepValVar>(
this) &&
741 !SVFUtil::isa<DummyObjVar>(
this) &&!SVFUtil::isa<DummyValVar>(
this) &&
742 !SVFUtil::isa<BlackHoleValVar>(
this) &&
743 "invalid value, refer to their toString method");
const FunObjVar * getFunObjVar(const Function *fun) const
static LLVMModuleSet * getLLVMModuleSet()
GlobalVariable * getGlobalRep(const GlobalVariable *val) const
SVFBasicBlock * getSVFBasicBlock(const BasicBlock *bb)
DominatorTree & getDomTree(const Function *fun)
const Value * getLLVMValue(const SVFValue *value) const
SVFType * getSVFType(const Type *T)
Get or create SVFType and typeinfo.
bool is_arg_alloc(const Function *F)
s32_t get_alloc_arg_pos(const Function *F)
const std::vector< std::reference_wrapper< Module > > & getLLVMModules() const
bool is_ext(const Function *F)
bool is_memset(const Function *F)
bool is_memcpy(const Function *F)
static Option< bool > ModelArrays
const ICFGNode * back() const
virtual const std::string getSourceLoc() const
const std::string valueOnlyToString() 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)
bool isIntrinsicInst(const Instruction *inst)
Return true if it is an intrinsic instruction.
const Function * getProgFunction(const std::string &funName)
Get program entry function from module.
const Value * stripConstantCasts(const Value *val)
Strip off the constant casts.
bool isPtrInUncalledFunction(const Value *value)
Return true if this is value in a dead function (function without any caller)
bool isHeapAllocExtCallViaRet(const Instruction *inst)
const Value * getFirstUseViaCastInst(const Value *val)
bool isHeapAllocExtCall(const Instruction *inst)
void viewCFGOnly(const Function *fun)
const std::string getSourceLocOfFunction(const Function *F)
bool isUncalledFunction(const Function *fun)
whether this is a function without any possible caller?
const Value * stripAllCasts(const Value *val)
Strip off the all casts.
const ConstantExpr * isInt2PtrConstantExpr(const Value *val)
bool isMemcpyExtFun(const Function *fun)
bool isIntrinsicFun(const Function *func)
std::vector< const Function * > getCalledFunctions(const Function *F)
Get all called funcions in a parent function.
bool isCallSite(const Instruction *inst)
Whether an instruction is a call or invoke instruction.
bool isStackAllocExtCall(const Instruction *inst)
bool functionDoesNotRet(const Function *fun)
std::string dumpType(const Type *type)
void getNextInsts(const Instruction *curInst, std::vector< const Instruction * > &instList)
Get the next instructions following control flow.
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)
bool isHeapObj(const Value *val)
const Value * getGlobalRep(const Value *val)
find the unique defined global across multiple modules
void getFunReachableBBs(const Function *svfFun, std::vector< const SVFBasicBlock * > &bbs)
Get reachable basic block from function entry.
bool isExtCall(const Function *fun)
u32_t getNumOfElements(const Type *ety)
Return size of this object based on LLVM value.
bool basicBlockHasRetInst(const BasicBlock *bb)
Return true if the function has a return instruction.
void viewCFG(const Function *fun)
bool isStackObj(const Value *val)
bool isHeapAllocExtCallViaArg(const Instruction *inst)
bool isMemsetExtFun(const Function *fun)
bool isProgEntryFunction(const Function *fun)
Check whether a function is an entry function (i.e., main)
bool isObject(const Value *ref)
Return true if this value refers to a object.
void processArguments(int argc, char **argv, int &arg_num, char **arg_value, std::vector< std::string > &moduleNameVec)
Parse argument for multi-module analysis.
bool isIRFile(const std::string &filename)
Check whether a file is an LLVM IR file.
bool ArgInProgEntryFunction(const Value *val)
Return true if this is an argument of a program entry function (e.g. main)
bool isStackAllocExtCallViaRet(const Instruction *inst)
u32_t getHeapAllocHoldingArgPosition(const Function *fun)
std::string restoreFuncName(std::string funcName)
const FunObjVar * getFunObjVar(const std::string &name)
bool isNonInstricCallSite(const Instruction *inst)
Whether an instruction is a callsite in the application code, excluding llvm intrinsic calls.
std::string dumpValue(const Value *val)
llvm::GlobalVariable GlobalVariable
llvm::BasicBlock BasicBlock
llvm::NamedMDNode NamedMDNode
LLVM metadata and debug information.
llvm::succ_const_iterator succ_const_iterator
LLVM Iterators.
llvm::Instruction Instruction
llvm::DomTreeNode DomTreeNode
llvm::Value Value
LLVM Basic classes.
llvm::ConstantExpr ConstantExpr
llvm::IRBuilder IRBuilder
llvm::DominatorTree DominatorTree
LLVM Dominators.