Static Value-Flow Analysis
Loading...
Searching...
No Matches
Functions
SVF::LLVMUtil Namespace Reference

Functions

bool isCallSite (const Instruction *inst)
 Whether an instruction is a call or invoke instruction.
 
bool isCallSite (const Value *val)
 Whether an instruction is a call or invoke instruction.
 
double getDoubleValue (const ConstantFP *fpValue)
 
std::pair< s64_t, u64_tgetIntegerValue (const ConstantInt *intValue)
 
const CallBasegetLLVMCallSite (const Value *value)
 Return LLVM callsite given a value.
 
const FunctiongetCallee (const CallBase *cs)
 
const FunctiongetLLVMFunction (const Value *val)
 Return LLVM function if this value is.
 
const FunctiongetProgFunction (const std::string &funName)
 Get program entry function from module.
 
bool isProgEntryFunction (const Function *fun)
 Check whether a function is an entry function (i.e., main)
 
bool isBlackholeSym (const Value *val)
 Check whether this value is a black hole.
 
bool isNullPtrSym (const Value *val)
 Check whether this value is a black hole.
 
static TypegetPtrElementType (const PointerType *pty)
 
u32_t getNumOfElements (const Type *ety)
 Return size of this object based on LLVM value.
 
bool isObject (const Value *ref)
 Return true if this value refers to a object.
 
bool isUncalledFunction (const Function *fun)
 whether this is a function without any possible caller?
 
bool ArgInDeadFunction (const Value *val)
 whether this is an argument in dead function
 
bool ArgInProgEntryFunction (const Value *val)
 Return true if this is an argument of a program entry function (e.g. main)
 
bool isPtrInUncalledFunction (const Value *value)
 Return true if this is value in a dead function (function without any caller)
 
bool isNoCallerFunction (const Function *fun)
 Function does not have any possible caller in the call graph.
 
bool isArgOfUncalledFunction (const Value *val)
 Return true if the argument in a function does not have a caller.
 
bool basicBlockHasRetInst (const BasicBlock *bb)
 Return true if the function has a return instruction.
 
bool functionDoesNotRet (const Function *fun)
 
void getFunReachableBBs (const Function *svfFun, std::vector< const SVFBasicBlock * > &bbs)
 Get reachable basic block from function entry.
 
const ValuestripConstantCasts (const Value *val)
 Strip off the constant casts.
 
const ValuestripAllCasts (const Value *val)
 Strip off the all casts.
 
const ValuegetFirstUseViaCastInst (const Value *val)
 
const ConstantExprisGepConstantExpr (const Value *val)
 Return corresponding constant expression, otherwise return nullptr.
 
const ConstantExprisInt2PtrConstantExpr (const Value *val)
 
const ConstantExprisPtr2IntConstantExpr (const Value *val)
 
const ConstantExprisCastConstantExpr (const Value *val)
 
const ConstantExprisSelectConstantExpr (const Value *val)
 
const ConstantExprisTruncConstantExpr (const Value *val)
 
const ConstantExprisCmpConstantExpr (const Value *val)
 
const ConstantExprisBinaryConstantExpr (const Value *val)
 
const ConstantExprisUnaryConstantExpr (const Value *val)
 
static DataLayoutgetDataLayout (Module *mod)
 
void getNextInsts (const Instruction *curInst, std::vector< const Instruction * > &instList)
 Get the next instructions following control flow.
 
bool isNoPrecessorBasicBlock (const BasicBlock *bb)
 
bool isIRFile (const std::string &filename)
 Check whether a file is an LLVM IR file.
 
void processArguments (int argc, char **argv, int &arg_num, char **arg_value, std::vector< std::string > &moduleNameVec)
 Parse argument for multi-module analysis.
 
const std::string getSourceLoc (const Value *val)
 
const std::string getSourceLocOfFunction (const Function *F)
 
bool isIntrinsicInst (const Instruction *inst)
 Return true if it is an intrinsic instruction.
 
bool isIntrinsicFun (const Function *func)
 
std::vector< const Function * > getCalledFunctions (const Function *F)
 Get all called funcions in a parent function.
 
std::string restoreFuncName (std::string funcName)
 
bool isExtCall (const Function *fun)
 
bool isMemcpyExtFun (const Function *fun)
 
bool isMemsetExtFun (const Function *fun)
 
u32_t getHeapAllocHoldingArgPosition (const Function *fun)
 
const FunObjVargetFunObjVar (const std::string &name)
 
bool isConstDataOrAggData (const Value *val)
 Return true if the value refers to constant data, e.g., i32 0.
 
const ValuegetGlobalRep (const Value *val)
 find the unique defined global across multiple modules
 
bool isConstantObjSym (const Value *val)
 Check whether this value points-to a constant object.
 
void viewCFG (const Function *fun)
 
void viewCFGOnly (const Function *fun)
 
std::string dumpValue (const Value *val)
 
std::string dumpType (const Type *type)
 
std::string dumpValueAndDbgInfo (const Value *val)
 
bool isHeapAllocExtCallViaRet (const Instruction *inst)
 
bool isHeapAllocExtCallViaArg (const Instruction *inst)
 
bool isHeapAllocExtCall (const Instruction *inst)
 
bool isStackAllocExtCallViaRet (const Instruction *inst)
 
bool isStackAllocExtCall (const Instruction *inst)
 
bool isHeapObj (const Value *val)
 
bool isStackObj (const Value *val)
 
bool isNonInstricCallSite (const Instruction *inst)
 Whether an instruction is a callsite in the application code, excluding llvm intrinsic calls.
 
const FunctiongetProgEntryFunction (Module &module)
 Get program entry function from module.
 

Function Documentation

◆ ArgInDeadFunction()

bool SVF::LLVMUtil::ArgInDeadFunction ( const Value val)
inline

whether this is an argument in dead function

Definition at line 156 of file LLVMUtil.h.

157{
158 return SVFUtil::isa<Argument>(val)
159 && isUncalledFunction(SVFUtil::cast<Argument>(val)->getParent());
160}
bool isUncalledFunction(const Function *fun)
whether this is a function without any possible caller?
Definition LLVMUtil.cpp:157
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

◆ ArgInProgEntryFunction()

bool SVF::LLVMUtil::ArgInProgEntryFunction ( const Value val)
inline

Return true if this is an argument of a program entry function (e.g. main)

Definition at line 164 of file LLVMUtil.h.

165{
166 return SVFUtil::isa<Argument>(val) &&
167 LLVMUtil::isProgEntryFunction(
168 SVFUtil::cast<Argument>(val)->getParent());
169}

◆ basicBlockHasRetInst()

bool SVF::LLVMUtil::basicBlockHasRetInst ( const BasicBlock bb)

Return true if the function has a return instruction.

Return true if the basic block has a return instruction

Definition at line 108 of file LLVMUtil.cpp.

109{
110 for (BasicBlock::const_iterator it = bb->begin(), eit = bb->end();
111 it != eit; ++it)
112 {
113 if(SVFUtil::isa<ReturnInst>(*it))
114 return true;
115 }
116 return false;
117}

◆ dumpType()

std::string SVF::LLVMUtil::dumpType ( const Type type)

Definition at line 611 of file LLVMUtil.cpp.

612{
613 std::string str;
614 llvm::raw_string_ostream rawstr(str);
615 if (type)
616 rawstr << " " << *type << " ";
617 else
618 rawstr << " llvm type is null";
619 return rawstr.str();
620}
newitem type
Definition cJSON.cpp:2739

◆ dumpValue()

std::string SVF::LLVMUtil::dumpValue ( const Value val)

Definition at line 600 of file LLVMUtil.cpp.

601{
602 std::string str;
603 llvm::raw_string_ostream rawstr(str);
604 if (val)
605 rawstr << " " << *val << " ";
606 else
607 rawstr << " llvm Value is null";
608 return rawstr.str();
609}

◆ dumpValueAndDbgInfo()

std::string SVF::LLVMUtil::dumpValueAndDbgInfo ( const Value val)

Definition at line 622 of file LLVMUtil.cpp.

623{
624 std::string str;
625 llvm::raw_string_ostream rawstr(str);
626 if (val)
628 else
629 rawstr << " llvm Value is null";
630 return rawstr.str();
631}
const std::string getSourceLoc(const Value *val)
Definition LLVMUtil.cpp:452
std::string dumpValue(const Value *val)
Definition LLVMUtil.cpp:600

◆ functionDoesNotRet()

bool SVF::LLVMUtil::functionDoesNotRet ( const Function fun)

Return true if the function has a return instruction reachable from function entry

Definition at line 122 of file LLVMUtil.cpp.

123{
124 if (LLVMUtil::isExtCall(fun))
125 {
126 return fun->getReturnType()->isVoidTy();
127 }
128 std::vector<const BasicBlock*> bbVec;
130 bbVec.push_back(&fun->getEntryBlock());
131 while(!bbVec.empty())
132 {
133 const BasicBlock* bb = bbVec.back();
134 bbVec.pop_back();
135 if (basicBlockHasRetInst(bb))
136 {
137 return false;
138 }
139
141 sit != esit; ++sit)
142 {
143 const BasicBlock* succbb = (*sit);
144 if(visited.find(succbb)==visited.end())
145 visited.insert(succbb);
146 else
147 continue;
148 bbVec.push_back(succbb);
149 }
150 }
151 return true;
152}
bool isExtCall(const Function *fun)
Definition LLVMUtil.cpp:383
llvm::BasicBlock BasicBlock
Definition BasicTypes.h:86
llvm::succ_const_iterator succ_const_iterator
LLVM Iterators.
Definition BasicTypes.h:276

◆ getCalledFunctions()

std::vector< const Function * > SVF::LLVMUtil::getCalledFunctions ( const Function F)

Get all called funcions in a parent function.

Definition at line 363 of file LLVMUtil.cpp.

364{
365 std::vector<const Function *> calledFunctions;
366 for (const Instruction &I : instructions(F))
367 {
368 if (const CallBase *callInst = SVFUtil::dyn_cast<CallBase>(&I))
369 {
370 Function *calledFunction = callInst->getCalledFunction();
371 if (calledFunction)
372 {
374 std::vector<const Function *> nestedCalledFunctions = getCalledFunctions(calledFunction);
376 }
377 }
378 }
379 return calledFunctions;
380}
std::vector< const Function * > getCalledFunctions(const Function *F)
Get all called funcions in a parent function.
Definition LLVMUtil.cpp:363
llvm::CallBase CallBase
Definition BasicTypes.h:146
llvm::Function Function
Definition BasicTypes.h:85
llvm::Instruction Instruction
Definition BasicTypes.h:87

◆ getCallee()

const Function * SVF::LLVMUtil::getCallee ( const CallBase cs)
inline

Definition at line 97 of file LLVMUtil.h.

98{
99 // FIXME: do we need to strip-off the casts here to discover more library functions
100 return SVFUtil::dyn_cast<Function>(cs->getCalledOperand()->stripPointerCasts());
101}

◆ getDataLayout()

static DataLayout * SVF::LLVMUtil::getDataLayout ( Module mod)
inlinestatic

Definition at line 313 of file LLVMUtil.h.

314{
315 static DataLayout *dl = nullptr;
316 if (dl == nullptr)
317 dl = new DataLayout(mod);
318 return dl;
319}
llvm::DataLayout DataLayout
Definition BasicTypes.h:108

◆ getDoubleValue()

double SVF::LLVMUtil::getDoubleValue ( const ConstantFP fpValue)
inline

Definition at line 54 of file LLVMUtil.h.

55{
56 double dval = 0;
57 if (fpValue->isNormalFP())
58 {
59 const llvm::fltSemantics& semantics = fpValue->getValueAPF().getSemantics();
60 if (&semantics == &llvm::APFloat::IEEEhalf() ||
61 &semantics == &llvm::APFloat::IEEEsingle() ||
62 &semantics == &llvm::APFloat::IEEEdouble() ||
63 &semantics == &llvm::APFloat::IEEEquad() ||
64 &semantics == &llvm::APFloat::x87DoubleExtended())
65 {
66 dval = fpValue->getValueAPF().convertToDouble();
67 }
68 else
69 {
70 assert (false && "Unsupported floating point type");
71 abort();
72 }
73 }
74 else
75 {
76 // other cfp type, like isZero(), isInfinity(), isNegative(), etc.
77 // do nothing
78 }
79 return dval;
80}

◆ getFirstUseViaCastInst()

const Value * SVF::LLVMUtil::getFirstUseViaCastInst ( const Value val)

Return the bitcast instruction right next to val, otherwise return nullptr

If type is void* (i8*) and val is immediately used at a bitcast instruction

Definition at line 277 of file LLVMUtil.cpp.

278{
279 assert(SVFUtil::isa<PointerType>(val->getType()) && "this value should be a pointer type!");
281 const Value *latestUse = nullptr;
282 for (const auto &it : val->uses())
283 {
284 if (SVFUtil::isa<BitCastInst>(it.getUser()))
285 latestUse = it.getUser();
286 else
287 latestUse = nullptr;
288 }
289 return latestUse;
290}
llvm::Value Value
LLVM Basic classes.
Definition BasicTypes.h:82

◆ getFunObjVar()

const FunObjVar * SVF::LLVMUtil::getFunObjVar ( const std::string &  name)

Definition at line 435 of file LLVMUtil.cpp.

436{
438}
const char *const name
Definition cJSON.h:264
const FunObjVar * getFunObjVar(const Function *fun) const
Definition LLVMModule.h:260
static LLVMModuleSet * getLLVMModuleSet()
Definition LLVMModule.h:129

◆ getFunReachableBBs()

void SVF::LLVMUtil::getFunReachableBBs ( const Function fun,
std::vector< const SVFBasicBlock * > &  reachableBBs 
)

Get reachable basic block from function entry.

Return reachable bbs from function entry

Definition at line 74 of file LLVMUtil.cpp.

75{
76 assert(!LLVMUtil::isExtCall(fun) && "The calling function cannot be an external function.");
77 //initial DominatorTree
79
81 std::vector<const BasicBlock*> bbVec;
82 bbVec.push_back(&fun->getEntryBlock());
83 while(!bbVec.empty())
84 {
85 const BasicBlock* bb = bbVec.back();
86 bbVec.pop_back();
88 reachableBBs.push_back(svfbb);
89 if(DomTreeNode *dtNode = dt.getNode(const_cast<BasicBlock*>(bb)))
90 {
91 for (DomTreeNode::iterator DI = dtNode->begin(), DE = dtNode->end();
92 DI != DE; ++DI)
93 {
94 const BasicBlock* succbb = (*DI)->getBlock();
95 if(visited.find(succbb)==visited.end())
96 visited.insert(succbb);
97 else
98 continue;
99 bbVec.push_back(succbb);
100 }
101 }
102 }
103}
SVFBasicBlock * getSVFBasicBlock(const BasicBlock *bb)
Definition LLVMModule.h:291
DominatorTree & getDomTree(const Function *fun)
llvm::DomTreeNode DomTreeNode
Definition BasicTypes.h:134
llvm::DominatorTree DominatorTree
LLVM Dominators.
Definition BasicTypes.h:133

◆ getGlobalRep()

const Value * SVF::LLVMUtil::getGlobalRep ( const Value val)

find the unique defined global across multiple modules

Definition at line 439 of file LLVMUtil.cpp.

440{
441 if (const GlobalVariable* gvar = SVFUtil::dyn_cast<GlobalVariable>(val))
442 {
443 if (LLVMModuleSet::getLLVMModuleSet()->hasGlobalRep(gvar))
445 }
446 return val;
447}
GlobalVariable * getGlobalRep(const GlobalVariable *val) const
Definition LLVMModule.h:352
llvm::GlobalVariable GlobalVariable
Definition BasicTypes.h:130

◆ getHeapAllocHoldingArgPosition()

u32_t SVF::LLVMUtil::getHeapAllocHoldingArgPosition ( const Function fun)

Definition at line 400 of file LLVMUtil.cpp.

401{
403}
s32_t get_alloc_arg_pos(const Function *F)

◆ getIntegerValue()

std::pair< s64_t, u64_t > SVF::LLVMUtil::getIntegerValue ( const ConstantInt intValue)
inline

Definition at line 82 of file LLVMUtil.h.

83{
84 if (intValue->getBitWidth() <= 64 && intValue->getBitWidth() >= 1)
85 return std::make_pair(intValue->getSExtValue(), intValue->getZExtValue());
86 else
87 return std::make_pair(0,0);
88}

◆ getLLVMCallSite()

const CallBase * SVF::LLVMUtil::getLLVMCallSite ( const Value value)
inline

Return LLVM callsite given a value.

Definition at line 91 of file LLVMUtil.h.

92{
93 assert(isCallSite(value) && "not a callsite?");
94 return SVFUtil::cast<CallBase>(value);
95}
bool isCallSite(const Instruction *inst)
Whether an instruction is a call or invoke instruction.
Definition LLVMUtil.h:44

◆ getLLVMFunction()

const Function * SVF::LLVMUtil::getLLVMFunction ( const Value val)
inline

Return LLVM function if this value is.

Definition at line 104 of file LLVMUtil.h.

105{
106 return SVFUtil::dyn_cast<Function>(val->stripPointerCasts());
107}

◆ getNextInsts()

void SVF::LLVMUtil::getNextInsts ( const Instruction curInst,
std::vector< const Instruction * > &  instList 
)

Get the next instructions following control flow.

Definition at line 573 of file LLVMUtil.cpp.

574{
575 if (!curInst->isTerminator())
576 {
577 const Instruction* nextInst = curInst->getNextNode();
580 else
581 instList.push_back(nextInst);
582 }
583 else
584 {
585 const BasicBlock *BB = curInst->getParent();
586 // Visit all successors of BB in the CFG
587 for (succ_const_iterator it = succ_begin(BB), ie = succ_end(BB); it != ie; ++it)
588 {
589 const Instruction* nextInst = &((*it)->front());
591 getNextInsts(nextInst, instList);
592 else
593 instList.push_back(nextInst);
594 }
595 }
596}
bool isIntrinsicInst(const Instruction *inst)
Return true if it is an intrinsic instruction.
Definition LLVMUtil.cpp:202
void getNextInsts(const Instruction *curInst, std::vector< const Instruction * > &instList)
Get the next instructions following control flow.
Definition LLVMUtil.cpp:573

◆ getNumOfElements()

u32_t SVF::LLVMUtil::getNumOfElements ( const Type ety)

Return size of this object based on LLVM value.

Return size of this Object

Definition at line 295 of file LLVMUtil.cpp.

296{
297 assert(ety && "type is null?");
298 u32_t numOfFields = 1;
299 if (SVFUtil::isa<StructType, ArrayType>(ety))
300 {
303 else
305 }
306 return numOfFields;
307}
SVFType * getSVFType(const Type *T)
Get or create SVFType and typeinfo.
static Option< bool > ModelArrays
Definition Options.h:188
StInfo * getTypeInfo()
Definition SVFType.h:230
u32_t getNumOfFlattenElements() const
Return number of elements after flattening (including array elements)
Definition SVFType.h:139
u32_t getNumOfFlattenFields() const
Return the number of fields after flattening (ignoring array elements)
Definition SVFType.h:145
unsigned u32_t
Definition GeneralType.h:47

◆ getProgEntryFunction()

const Function * SVF::LLVMUtil::getProgEntryFunction ( Module module)
inline

Get program entry function from module.

Definition at line 418 of file LLVMUtil.h.

419{
420 for (auto it = module.begin(), eit = module.end(); it != eit; ++it)
421 {
422 const Function *fun = &(*it);
423 if (isProgEntryFunction(fun))
424 return (fun);
425 }
426 return nullptr;
427}
bool isProgEntryFunction(const Function *fun)
Check whether a function is an entry function (i.e., main)
Definition LLVMUtil.h:113

◆ getProgFunction()

const Function * SVF::LLVMUtil::getProgFunction ( const std::string &  funName)

Get program entry function from module.

Definition at line 39 of file LLVMUtil.cpp.

40{
41 for (const Module& M : LLVMModuleSet::getLLVMModuleSet()->getLLVMModules())
42 {
43 for (const Function& fun : M)
44 {
45 if (fun.getName() == funName)
46 return &fun;
47 }
48 }
49 return nullptr;
50}
llvm::Module Module
Definition BasicTypes.h:84

◆ getPtrElementType()

static Type * SVF::LLVMUtil::getPtrElementType ( const PointerType pty)
inlinestatic

Definition at line 130 of file LLVMUtil.h.

131{
132#if (LLVM_VERSION_MAJOR < 14)
133 return pty->getPointerElementType();
134#elif (LLVM_VERSION_MAJOR < 17)
135 assert(!pty->isOpaque() && "Opaque Pointer is used, please recompile the source adding '-Xclang -no-opaque-pointers'");
136 return pty->getNonOpaquePointerElementType();
137#else
138 assert(false && "llvm version 17+ only support opaque pointers!");
139#endif
140}

◆ getSourceLoc()

const std::string SVF::LLVMUtil::getSourceLoc ( const Value val)

Get the meta data (line number and file name) info of a LLVM value

Definition at line 452 of file LLVMUtil.cpp.

453{
454 if(val==nullptr) return "{ empty val }";
455
456 std::string str;
457 std::stringstream rawstr(str);
458 rawstr << "{ ";
459
460 if (const Instruction* inst = SVFUtil::dyn_cast<Instruction>(val))
461 {
462 if (SVFUtil::isa<AllocaInst>(inst))
463 {
464 for (llvm::DbgInfoIntrinsic *DII : FindDbgDeclareUses(const_cast<Instruction*>(inst)))
465 {
466 if (llvm::DbgDeclareInst *DDI = SVFUtil::dyn_cast<llvm::DbgDeclareInst>(DII))
467 {
468 llvm::DIVariable *DIVar = SVFUtil::cast<llvm::DIVariable>(DDI->getVariable());
469 rawstr << "\"ln\": " << DIVar->getLine() << ", \"fl\": \"" << DIVar->getFilename().str() << "\"";
470 break;
471 }
472 }
473 }
474 else if (MDNode *N = inst->getMetadata("dbg")) // Here I is an LLVM instruction
475 {
476 llvm::DILocation* Loc = SVFUtil::cast<llvm::DILocation>(N); // DILocation is in DebugInfo.h
477 unsigned Line = Loc->getLine();
478 unsigned Column = Loc->getColumn();
479 std::string File = Loc->getFilename().str();
480 //StringRef Dir = Loc.getDirectory();
481 if(File.empty() || Line == 0)
482 {
483 auto inlineLoc = Loc->getInlinedAt();
484 if(inlineLoc)
485 {
486 Line = inlineLoc->getLine();
487 Column = inlineLoc->getColumn();
488 File = inlineLoc->getFilename().str();
489 }
490 }
491 rawstr << "\"ln\": " << Line << ", \"cl\": " << Column << ", \"fl\": \"" << File << "\"";
492 }
493 }
494 else if (const Argument* argument = SVFUtil::dyn_cast<Argument>(val))
495 {
496 if (argument->getArgNo()%10 == 1)
497 rawstr << argument->getArgNo() << "st";
498 else if (argument->getArgNo()%10 == 2)
499 rawstr << argument->getArgNo() << "nd";
500 else if (argument->getArgNo()%10 == 3)
501 rawstr << argument->getArgNo() << "rd";
502 else
503 rawstr << argument->getArgNo() << "th";
504 rawstr << " arg " << argument->getParent()->getName().str() << " "
505 << getSourceLocOfFunction(argument->getParent());
506 }
507 else if (const GlobalVariable* gvar = SVFUtil::dyn_cast<GlobalVariable>(val))
508 {
509 rawstr << "Glob ";
510 NamedMDNode* CU_Nodes = gvar->getParent()->getNamedMetadata("llvm.dbg.cu");
511 if(CU_Nodes)
512 {
513 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i)
514 {
515 llvm::DICompileUnit *CUNode = SVFUtil::cast<llvm::DICompileUnit>(CU_Nodes->getOperand(i));
516 for (llvm::DIGlobalVariableExpression *GV : CUNode->getGlobalVariables())
517 {
518 llvm::DIGlobalVariable * DGV = GV->getVariable();
519
520 if(DGV->getName() == gvar->getName())
521 {
522 rawstr << "\"ln\": " << DGV->getLine() << ", \"fl\": \"" << DGV->getFilename().str() << "\"";
523 }
524
525 }
526 }
527 }
528 }
529 else if (const Function* func = SVFUtil::dyn_cast<Function>(val))
530 {
532 }
533 else if (const BasicBlock* bb = SVFUtil::dyn_cast<BasicBlock>(val))
534 {
535 rawstr << "\"basic block\": " << bb->getName().str() << ", \"location\": " << getSourceLoc(bb->getFirstNonPHI());
536 }
538 {
539 rawstr << "constant data";
540 }
541 else
542 {
543 rawstr << "N/A";
544 }
545 rawstr << " }";
546
547 if(rawstr.str()=="{ }")
548 return "";
549 return rawstr.str();
550}
const std::string getSourceLocOfFunction(const Function *F)
Definition LLVMUtil.cpp:556
bool isConstDataOrAggData(const Value *val)
Return true if the value refers to constant data, e.g., i32 0.
Definition LLVMUtil.h:368
llvm::NamedMDNode NamedMDNode
LLVM metadata and debug information.
Definition BasicTypes.h:111
llvm::Argument Argument
Definition BasicTypes.h:145
llvm::MDNode MDNode
Definition BasicTypes.h:112

◆ getSourceLocOfFunction()

const std::string SVF::LLVMUtil::getSourceLocOfFunction ( const Function F)

Get source code line number of a function according to debug info

Definition at line 556 of file LLVMUtil.cpp.

557{
558 std::string str;
559 std::stringstream rawstr(str);
560 /*
561 * https://reviews.llvm.org/D18074?id=50385
562 * looks like the relevant
563 */
564 if (llvm::DISubprogram *SP = F->getSubprogram())
565 {
566 if (SP->describes(F))
567 rawstr << "\"ln\": " << SP->getLine() << ", \"file\": \"" << SP->getFilename().str() << "\"";
568 }
569 return rawstr.str();
570}

◆ isArgOfUncalledFunction()

bool SVF::LLVMUtil::isArgOfUncalledFunction ( const Value val)
inline

Return true if the argument in a function does not have a caller.

Definition at line 185 of file LLVMUtil.h.

186{
187 return SVFUtil::isa<Argument>(val)
188 && isNoCallerFunction(SVFUtil::cast<Argument>(val)->getParent());
189}
bool isNoCallerFunction(const Function *fun)
Function does not have any possible caller in the call graph.
Definition LLVMUtil.h:179

◆ isBinaryConstantExpr()

const ConstantExpr * SVF::LLVMUtil::isBinaryConstantExpr ( const Value val)
inline

Definition at line 290 of file LLVMUtil.h.

291{
292 if (const ConstantExpr* constExpr = SVFUtil::dyn_cast<ConstantExpr>(val))
293 {
294 if ((constExpr->getOpcode() >= Instruction::BinaryOpsBegin) &&
295 (constExpr->getOpcode() <= Instruction::BinaryOpsEnd))
296 return constExpr;
297 }
298 return nullptr;
299}
llvm::ConstantExpr ConstantExpr
Definition BasicTypes.h:120

◆ isBlackholeSym()

bool SVF::LLVMUtil::isBlackholeSym ( const Value val)
inline

Check whether this value is a black hole.

Definition at line 119 of file LLVMUtil.h.

120{
121 return SVFUtil::isa<UndefValue>(val);
122}

◆ isCallSite() [1/2]

bool SVF::LLVMUtil::isCallSite ( const Instruction inst)
inline

Whether an instruction is a call or invoke instruction.

Definition at line 44 of file LLVMUtil.h.

45{
46 return SVFUtil::isa<CallBase>(inst);
47}

◆ isCallSite() [2/2]

bool SVF::LLVMUtil::isCallSite ( const Value val)
inline

Whether an instruction is a call or invoke instruction.

Definition at line 49 of file LLVMUtil.h.

50{
51 return SVFUtil::isa<CallBase>(val);
52}

◆ isCastConstantExpr()

const ConstantExpr * SVF::LLVMUtil::isCastConstantExpr ( const Value val)
inline

Definition at line 245 of file LLVMUtil.h.

246{
247 if (const ConstantExpr* constExpr = SVFUtil::dyn_cast<ConstantExpr>(val))
248 {
249 if (constExpr->getOpcode() == Instruction::BitCast)
250 return constExpr;
251 }
252 return nullptr;
253}

◆ isCmpConstantExpr()

const ConstantExpr * SVF::LLVMUtil::isCmpConstantExpr ( const Value val)
inline

Definition at line 279 of file LLVMUtil.h.

280{
281 if (const ConstantExpr* constExpr = SVFUtil::dyn_cast<ConstantExpr>(val))
282 {
283 if (constExpr->getOpcode() == Instruction::ICmp ||
284 constExpr->getOpcode() == Instruction::FCmp)
285 return constExpr;
286 }
287 return nullptr;
288}

◆ isConstantObjSym()

bool SVF::LLVMUtil::isConstantObjSym ( const Value val)

Check whether this value points-to a constant object.

Check whether this value points-to a constant object

Definition at line 672 of file CppUtil.cpp.

673{
674 if (const GlobalVariable* v = SVFUtil::dyn_cast<GlobalVariable>(val))
675 {
677 return false;
678 else if (!v->hasInitializer())
679 {
680 return !v->isExternalLinkage(v->getLinkage());
681 }
682 else
683 {
684 StInfo *stInfo = LLVMModuleSet::getLLVMModuleSet()->getSVFType(v->getInitializer()->getType())->getTypeInfo();
685 const std::vector<const SVFType*> &fields = stInfo->getFlattenFieldTypes();
686 for (std::vector<const SVFType*>::const_iterator it = fields.begin(), eit = fields.end(); it != eit; ++it)
687 {
688 const SVFType* elemTy = *it;
689 assert(!SVFUtil::isa<SVFFunctionType>(elemTy) && "Initializer of a global is a function?");
690 if (SVFUtil::isa<SVFPointerType>(elemTy))
691 return false;
692 }
693
694 return v->isConstant();
695 }
696 }
698}
std::vector< const SVFType * > & getFlattenFieldTypes()
Definition SVFType.h:106
bool isValVtbl(const Value *val)
Definition CppUtil.cpp:336

◆ isConstDataOrAggData()

bool SVF::LLVMUtil::isConstDataOrAggData ( const Value val)
inline

Return true if the value refers to constant data, e.g., i32 0.

Definition at line 368 of file LLVMUtil.h.

369{
370 return SVFUtil::isa<ConstantData, ConstantAggregate,
372}
llvm::ConstantData ConstantData
Definition BasicTypes.h:116
llvm::MetadataAsValue MetadataAsValue
Definition BasicTypes.h:102
llvm::ConstantAggregate ConstantAggregate
Definition BasicTypes.h:117
llvm::BlockAddress BlockAddress
Definition BasicTypes.h:91

◆ isExtCall()

bool SVF::LLVMUtil::isExtCall ( const Function fun)

Definition at line 383 of file LLVMUtil.cpp.

384{
385 return fun && LLVMModuleSet::getLLVMModuleSet()->is_ext(fun);
386}
bool is_ext(const Function *F)

◆ isGepConstantExpr()

const ConstantExpr * SVF::LLVMUtil::isGepConstantExpr ( const Value val)
inline

Return corresponding constant expression, otherwise return nullptr.

Definition at line 215 of file LLVMUtil.h.

216{
217 if (const ConstantExpr* constExpr = SVFUtil::dyn_cast<ConstantExpr>(val))
218 {
219 if (constExpr->getOpcode() == Instruction::GetElementPtr)
220 return constExpr;
221 }
222 return nullptr;
223}

◆ isHeapAllocExtCall()

bool SVF::LLVMUtil::isHeapAllocExtCall ( const Instruction inst)
inline

Definition at line 396 of file LLVMUtil.h.

397{
399}
bool isHeapAllocExtCallViaRet(const Instruction *inst)
Definition LLVMUtil.cpp:633
bool isHeapAllocExtCallViaArg(const Instruction *inst)
Definition LLVMUtil.cpp:648

◆ isHeapAllocExtCallViaArg()

bool SVF::LLVMUtil::isHeapAllocExtCallViaArg ( const Instruction inst)

Definition at line 648 of file LLVMUtil.cpp.

649{
650 if (const CallBase* call = SVFUtil::dyn_cast<CallBase>(inst))
651 {
652 const Function* fun = call->getCalledFunction();
653 return fun &&
655 }
656 else
657 {
658 return false;
659 }
660}
bool is_arg_alloc(const Function *F)

◆ isHeapAllocExtCallViaRet()

bool SVF::LLVMUtil::isHeapAllocExtCallViaRet ( const Instruction inst)

Definition at line 633 of file LLVMUtil.cpp.

634{
636 bool isPtrTy = inst->getType()->isPointerTy();
637 if (const CallBase* call = SVFUtil::dyn_cast<CallBase>(inst))
638 {
639 const Function* fun = call->getCalledFunction();
640 return fun && isPtrTy &&
641 (pSet->is_alloc(fun) ||
642 pSet->is_realloc(fun));
643 }
644 else
645 return false;
646}

◆ isHeapObj()

bool SVF::LLVMUtil::isHeapObj ( const Value val)

Check if a given value represents a heap object.

Parameters
valThe value to check.
Returns
True if the value represents a heap object, false otherwise.

Definition at line 682 of file LLVMUtil.cpp.

683{
684 // Check if the value is an argument in the program entry function
686 {
687 // Return true if the value does not have a first use via cast instruction
689 }
690 // Check if the value is an instruction and if it is a heap allocation external call
691 else if (SVFUtil::isa<Instruction>(val) &&
692 LLVMUtil::isHeapAllocExtCall(SVFUtil::cast<Instruction>(val)))
693 {
694 return true;
695 }
696 // Return false if none of the above conditions are met
697 return false;
698}
const Value * getFirstUseViaCastInst(const Value *val)
Definition LLVMUtil.cpp:277
bool isHeapAllocExtCall(const Instruction *inst)
Definition LLVMUtil.h:396
bool ArgInProgEntryFunction(const Value *val)
Return true if this is an argument of a program entry function (e.g. main)
Definition LLVMUtil.h:164

◆ isInt2PtrConstantExpr()

const ConstantExpr * SVF::LLVMUtil::isInt2PtrConstantExpr ( const Value val)
inline

Definition at line 225 of file LLVMUtil.h.

226{
227 if (const ConstantExpr* constExpr = SVFUtil::dyn_cast<ConstantExpr>(val))
228 {
229 if (constExpr->getOpcode() == Instruction::IntToPtr)
230 return constExpr;
231 }
232 return nullptr;
233}

◆ isIntrinsicFun()

bool SVF::LLVMUtil::isIntrinsicFun ( const Function func)

Definition at line 189 of file LLVMUtil.cpp.

190{
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))
195 {
196 return true;
197 }
198 return false;
199}

◆ isIntrinsicInst()

bool SVF::LLVMUtil::isIntrinsicInst ( const Instruction inst)

Return true if it is an intrinsic instruction.

Definition at line 202 of file LLVMUtil.cpp.

203{
204 if (const CallBase* call = SVFUtil::dyn_cast<CallBase>(inst))
205 {
206 const Function* func = call->getCalledFunction();
207 if (isIntrinsicFun(func))
208 {
209 return true;
210 }
211 }
212 return false;
213}
bool isIntrinsicFun(const Function *func)
Definition LLVMUtil.cpp:189

◆ isIRFile()

bool SVF::LLVMUtil::isIRFile ( const std::string &  filename)

Check whether a file is an LLVM IR file.

Definition at line 314 of file LLVMUtil.cpp.

315{
316 llvm::LLVMContext context;
317 llvm::SMDiagnostic err;
318
319 // Parse the input LLVM IR file into a module
320 std::unique_ptr<llvm::Module> module = llvm::parseIRFile(filename, err, context);
321
322 // Check if the parsing succeeded
323 if (!module)
324 {
325 err.print("isIRFile", llvm::errs());
326 return false; // Not an LLVM IR file
327 }
328
329 return true; // It is an LLVM IR file
330}

◆ isMemcpyExtFun()

bool SVF::LLVMUtil::isMemcpyExtFun ( const Function fun)

Definition at line 388 of file LLVMUtil.cpp.

389{
390 return fun && LLVMModuleSet::getLLVMModuleSet()->is_memcpy(fun);
391}
bool is_memcpy(const Function *F)

◆ isMemsetExtFun()

bool SVF::LLVMUtil::isMemsetExtFun ( const Function fun)

Definition at line 394 of file LLVMUtil.cpp.

395{
396 return fun && LLVMModuleSet::getLLVMModuleSet()->is_memset(fun);
397}
bool is_memset(const Function *F)

◆ isNoCallerFunction()

bool SVF::LLVMUtil::isNoCallerFunction ( const Function fun)
inline

Function does not have any possible caller in the call graph.

Return true if the function does not have a caller (either it is a main function or a dead function)

Definition at line 179 of file LLVMUtil.h.

180{
181 return isUncalledFunction(fun) || LLVMUtil::isProgEntryFunction(fun);
182}

◆ isNonInstricCallSite()

bool SVF::LLVMUtil::isNonInstricCallSite ( const Instruction inst)

Whether an instruction is a callsite in the application code, excluding llvm intrinsic calls.

Definition at line 720 of file LLVMUtil.cpp.

721{
722 bool res = false;
723
724 if(isIntrinsicInst(inst))
725 res = false;
726 else
727 res = isCallSite(inst);
728 return res;
729}

◆ isNoPrecessorBasicBlock()

bool SVF::LLVMUtil::isNoPrecessorBasicBlock ( const BasicBlock bb)
inline

Basic block does not have predecessors map-1.cpp.bc try.cont: ; No predecessors! call void @llvm.trap() unreachable

Definition at line 331 of file LLVMUtil.h.

332{
333 return bb != &bb->getParent()->getEntryBlock() &&
334 pred_empty(bb);
335}

◆ isNullPtrSym()

bool SVF::LLVMUtil::isNullPtrSym ( const Value val)
inline

Check whether this value is a black hole.

Definition at line 125 of file LLVMUtil.h.

126{
127 return SVFUtil::dyn_cast<ConstantPointerNull>(val);
128}

◆ isObject()

bool SVF::LLVMUtil::isObject ( const Value ref)

Return true if this value refers to a object.

A value represents an object if it is 1) function, 2) global 3) stack 4) heap

Definition at line 59 of file LLVMUtil.cpp.

60{
61 if (SVFUtil::isa<Instruction>(ref) && isHeapAllocExtCallViaRet(SVFUtil::cast<Instruction>(ref)))
62 return true;
63 if (SVFUtil::isa<GlobalVariable>(ref))
64 return true;
65 if (SVFUtil::isa<Function, AllocaInst>(ref))
66 return true;
67
68 return false;
69}

◆ isProgEntryFunction()

bool SVF::LLVMUtil::isProgEntryFunction ( const Function fun)
inline

Check whether a function is an entry function (i.e., main)

Definition at line 113 of file LLVMUtil.h.

114{
115 return fun && fun->getName() == "main";
116}

◆ isPtr2IntConstantExpr()

const ConstantExpr * SVF::LLVMUtil::isPtr2IntConstantExpr ( const Value val)
inline

Definition at line 235 of file LLVMUtil.h.

236{
237 if (const ConstantExpr* constExpr = SVFUtil::dyn_cast<ConstantExpr>(val))
238 {
239 if (constExpr->getOpcode() == Instruction::PtrToInt)
240 return constExpr;
241 }
242 return nullptr;
243}

◆ isPtrInUncalledFunction()

bool SVF::LLVMUtil::isPtrInUncalledFunction ( const Value value)

Return true if this is value in a dead function (function without any caller)

Return true if this is a value in a dead function (function without any caller)

Definition at line 174 of file LLVMUtil.cpp.

175{
176 if(const Instruction* inst = SVFUtil::dyn_cast<Instruction>(value))
177 {
178 if(isUncalledFunction(inst->getParent()->getParent()))
179 return true;
180 }
181 else if(const Argument* arg = SVFUtil::dyn_cast<Argument>(value))
182 {
183 if(isUncalledFunction(arg->getParent()))
184 return true;
185 }
186 return false;
187}

◆ isSelectConstantExpr()

const ConstantExpr * SVF::LLVMUtil::isSelectConstantExpr ( const Value val)
inline

Definition at line 255 of file LLVMUtil.h.

256{
257 if (const ConstantExpr* constExpr = SVFUtil::dyn_cast<ConstantExpr>(val))
258 {
259 if (constExpr->getOpcode() == Instruction::Select)
260 return constExpr;
261 }
262 return nullptr;
263}

◆ isStackAllocExtCall()

bool SVF::LLVMUtil::isStackAllocExtCall ( const Instruction inst)
inline

Definition at line 403 of file LLVMUtil.h.

404{
405 return isStackAllocExtCallViaRet(inst);
406}
bool isStackAllocExtCallViaRet(const Instruction *inst)
Definition LLVMUtil.cpp:662

◆ isStackAllocExtCallViaRet()

bool SVF::LLVMUtil::isStackAllocExtCallViaRet ( const Instruction inst)

Definition at line 662 of file LLVMUtil.cpp.

663{
665 bool isPtrTy = inst->getType()->isPointerTy();
666 if (const CallBase* call = SVFUtil::dyn_cast<CallBase>(inst))
667 {
668 const Function* fun = call->getCalledFunction();
669 return fun && isPtrTy &&
670 pSet->is_alloc_stack_ret(fun);
671 }
672 else
673 return false;
674}

◆ isStackObj()

bool SVF::LLVMUtil::isStackObj ( const Value val)
Parameters
valThe value to check.
Returns
True if the value represents a stack object, false otherwise.

Definition at line 704 of file LLVMUtil.cpp.

705{
706 if (SVFUtil::isa<AllocaInst>(val))
707 {
708 return true;
709 }
710 // Check if the value is an instruction and if it is a stack allocation external call
711 else if (SVFUtil::isa<Instruction>(val) &&
712 LLVMUtil::isStackAllocExtCall(SVFUtil::cast<Instruction>(val)))
713 {
714 return true;
715 }
716 // Return false if none of the above conditions are met
717 return false;
718}
bool isStackAllocExtCall(const Instruction *inst)
Definition LLVMUtil.h:403

◆ isTruncConstantExpr()

const ConstantExpr * SVF::LLVMUtil::isTruncConstantExpr ( const Value val)
inline

Definition at line 265 of file LLVMUtil.h.

266{
267 if (const ConstantExpr* constExpr = SVFUtil::dyn_cast<ConstantExpr>(val))
268 {
269 if (constExpr->getOpcode() == Instruction::Trunc ||
270 constExpr->getOpcode() == Instruction::FPTrunc ||
271 constExpr->getOpcode() == Instruction::ZExt ||
272 constExpr->getOpcode() == Instruction::SExt ||
273 constExpr->getOpcode() == Instruction::FPExt)
274 return constExpr;
275 }
276 return nullptr;
277}

◆ isUnaryConstantExpr()

const ConstantExpr * SVF::LLVMUtil::isUnaryConstantExpr ( const Value val)
inline

Definition at line 301 of file LLVMUtil.h.

302{
303 if (const ConstantExpr* constExpr = SVFUtil::dyn_cast<ConstantExpr>(val))
304 {
305 if ((constExpr->getOpcode() >= Instruction::UnaryOpsBegin) &&
306 (constExpr->getOpcode() <= Instruction::UnaryOpsEnd))
307 return constExpr;
308 }
309 return nullptr;
310}

◆ isUncalledFunction()

bool SVF::LLVMUtil::isUncalledFunction ( const Function fun)

whether this is a function without any possible caller?

Method for dead function, which does not have any possible caller function address is not taken and never be used in call or invoke instruction

Return true if this is a function without any possible caller

Definition at line 157 of file LLVMUtil.cpp.

158{
159 if(fun->hasAddressTaken())
160 return false;
162 return false;
163 for (Value::const_user_iterator i = fun->user_begin(), e = fun->user_end(); i != e; ++i)
164 {
166 return false;
167 }
168 return true;
169}

◆ processArguments()

void SVF::LLVMUtil::processArguments ( int  argc,
char **  argv,
int arg_num,
char **  arg_value,
std::vector< std::string > &  moduleNameVec 
)

Parse argument for multi-module analysis.

Get the names of all modules into a vector And process arguments

Definition at line 335 of file LLVMUtil.cpp.

337{
338 bool first_ir_file = true;
339 for (int i = 0; i < argc; ++i)
340 {
341 std::string argument(argv[i]);
343 {
344 if (find(moduleNameVec.begin(), moduleNameVec.end(), argument)
345 == moduleNameVec.end())
346 moduleNameVec.push_back(argument);
347 if (first_ir_file)
348 {
350 arg_num++;
351 first_ir_file = false;
352 }
353 }
354 else
355 {
357 arg_num++;
358 }
359 }
360}
bool isIRFile(const std::string &filename)
Check whether a file is an LLVM IR file.
Definition LLVMUtil.cpp:314

◆ restoreFuncName()

std::string SVF::LLVMUtil::restoreFuncName ( std::string  funcName)

Definition at line 406 of file LLVMUtil.cpp.

407{
408 assert(!funcName.empty() && "Empty function name");
409 // Some function names change due to mangling, such as "fopen" to "\01_fopen" on macOS.
410 // Since C function names cannot include '.', change the function name from llvm.memcpy.p0i8.p0i8.i64 to llvm_memcpy_p0i8_p0i8_i64."
411 bool hasSpecialPrefix = funcName[0] == '\01';
412 bool hasDot = funcName.find('.') != std::string::npos;
413
414 if (!hasDot && !hasSpecialPrefix)
415 return funcName;
416
417 // Remove prefix "\01_" or "\01"
419 {
420 const std::string prefix1 = "\01_";
421 const std::string prefix2 = "\01";
422 if (funcName.substr(0, prefix1.length()) == prefix1)
423 funcName = funcName.substr(prefix1.length());
424 else if (funcName.substr(0, prefix2.length()) == prefix2)
425 funcName = funcName.substr(prefix2.length());
426 }
427 // Replace '.' with '_'
428 if (hasDot)
429 std::replace(funcName.begin(), funcName.end(), '.', '_');
430
431 return funcName;
432}

◆ stripAllCasts()

const Value * SVF::LLVMUtil::stripAllCasts ( const Value val)

Strip off the all casts.

Strip all casts

Definition at line 249 of file LLVMUtil.cpp.

250{
251 while (true)
252 {
253 if (const CastInst *ci = SVFUtil::dyn_cast<CastInst>(val))
254 {
255 val = ci->getOperand(0);
256 }
257 else if (const ConstantExpr *ce = SVFUtil::dyn_cast<ConstantExpr>(val))
258 {
259 if(ce->isCast())
260 val = ce->getOperand(0);
261 else
262 return val;
263 }
264 else
265 {
266 return val;
267 }
268 }
269 return nullptr;
270}
llvm::CastInst CastInst
Definition BasicTypes.h:158

◆ stripConstantCasts()

const Value * SVF::LLVMUtil::stripConstantCasts ( const Value val)

Strip off the constant casts.

Strip constant casts

Definition at line 218 of file LLVMUtil.cpp.

219{
220 if (SVFUtil::isa<GlobalValue>(val) || isInt2PtrConstantExpr(val))
221 return val;
222 else if (const ConstantExpr *CE = SVFUtil::dyn_cast<ConstantExpr>(val))
223 {
224 if (Instruction::isCast(CE->getOpcode()))
225 return stripConstantCasts(CE->getOperand(0));
226 }
227 return val;
228}
const Value * stripConstantCasts(const Value *val)
Strip off the constant casts.
Definition LLVMUtil.cpp:218
const ConstantExpr * isInt2PtrConstantExpr(const Value *val)
Definition LLVMUtil.h:225

◆ viewCFG()

void SVF::LLVMUtil::viewCFG ( const Function fun)

Definition at line 230 of file LLVMUtil.cpp.

231{
232 if (fun != nullptr)
233 {
234 fun->viewCFG();
235 }
236}

◆ viewCFGOnly()

void SVF::LLVMUtil::viewCFGOnly ( const Function fun)

Definition at line 238 of file LLVMUtil.cpp.

239{
240 if (fun != nullptr)
241 {
242 fun->viewCFGOnly();
243 }
244}