Static Value-Flow Analysis
Loading...
Searching...
No Matches
LLVMUtil.h
Go to the documentation of this file.
1//===- LLVMUtil.h -- Analysis helper functions----------------------------//
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 * LLVMUtil.h
25 *
26 * Created on: Apr 11, 2013
27 * Author: Yulei Sui
28 */
29
30#ifndef INCLUDE_SVF_FE_LLVMUTIL_H_
31#define INCLUDE_SVF_FE_LLVMUTIL_H_
32
33#include "Util/SVFUtil.h"
34#include "SVF-LLVM/BasicTypes.h"
35#include "Util/ThreadAPI.h"
36
37namespace SVF
38{
39
40namespace LLVMUtil
41{
42
44inline bool isCallSite(const Instruction* inst)
45{
46 return SVFUtil::isa<CallBase>(inst);
47}
49inline bool isCallSite(const Value* val)
50{
51 return SVFUtil::isa<CallBase>(val);
52}
53
54inline double getDoubleValue(const ConstantFP* fpValue)
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}
81
82inline std::pair<s64_t, u64_t> getIntegerValue(const ConstantInt* intValue)
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}
89
91inline const CallBase* getLLVMCallSite(const Value* value)
92{
93 assert(isCallSite(value) && "not a callsite?");
94 return SVFUtil::cast<CallBase>(value);
95}
96
97inline const Function* getCallee(const CallBase* cs)
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}
102
104inline const Function* getLLVMFunction(const Value* val)
105{
106 return SVFUtil::dyn_cast<Function>(val->stripPointerCasts());
107}
108
110const Function* getProgFunction(const std::string& funName);
111
113inline bool isProgEntryFunction(const Function* fun)
114{
115 return fun && fun->getName() == "main";
116}
117
119inline bool isBlackholeSym(const Value* val)
120{
121 return SVFUtil::isa<UndefValue>(val);
122}
123
125inline bool isNullPtrSym(const Value* val)
126{
127 return SVFUtil::dyn_cast<ConstantPointerNull>(val);
128}
129
130static inline Type* getPtrElementType(const PointerType* pty)
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}
141
144
145
147bool isObject(const Value* ref);
148
151
152
153bool isUncalledFunction(const Function* fun);
154
156inline bool ArgInDeadFunction(const Value* val)
157{
158 return SVFUtil::isa<Argument>(val)
159 && isUncalledFunction(SVFUtil::cast<Argument>(val)->getParent());
160}
162
165{
166 return SVFUtil::isa<Argument>(val) &&
168 SVFUtil::cast<Argument>(val)->getParent());
169}
171bool isPtrInUncalledFunction(const Value* value);
173
175
177
178
179inline bool isNoCallerFunction(const Function* fun)
180{
182}
183
186{
187 return SVFUtil::isa<Argument>(val)
188 && isNoCallerFunction(SVFUtil::cast<Argument>(val)->getParent());
189}
191
193bool basicBlockHasRetInst(const BasicBlock* bb);
194
197bool functionDoesNotRet(const Function* fun);
198
201 std::vector<const SVFBasicBlock*>& bbs);
202
204const Value* stripConstantCasts(const Value* val);
205
207const Value* stripAllCasts(const Value* val);
208
212
214
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}
224
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}
234
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}
244
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}
254
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}
264
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}
278
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}
289
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}
300
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}
312
314{
315 static DataLayout *dl = nullptr;
316 if (dl == nullptr)
317 dl = new DataLayout(mod);
318 return dl;
319}
320
323 std::vector<const Instruction*>& instList);
324
325
332{
333 return bb != &bb->getParent()->getEntryBlock() &&
334 pred_empty(bb);
335}
336
338bool isIRFile(const std::string& filename);
339
341void processArguments(int argc, char** argv, int& arg_num, char** arg_value,
342 std::vector<std::string>& moduleNameVec);
343
345
346const std::string getSourceLoc(const Value* val);
347const std::string getSourceLocOfFunction(const Function* F);
348
349bool isIntrinsicInst(const Instruction* inst);
350bool isIntrinsicFun(const Function* func);
351
353std::vector<const Function *> getCalledFunctions(const Function *F);
354// Converts a mangled name to C naming style to match functions in extapi.c.
355std::string restoreFuncName(std::string funcName);
356
357bool isExtCall(const Function* fun);
358
359bool isMemcpyExtFun(const Function *fun);
360
361bool isMemsetExtFun(const Function* fun);
362
364
365const FunObjVar* getFunObjVar(const std::string&name);
366
373
375const Value* getGlobalRep(const Value* val);
376
378bool isConstantObjSym(const Value* val);
379
380// Dump Control Flow Graph of llvm function, with instructions
381void viewCFG(const Function* fun);
382
383// Dump Control Flow Graph of llvm function, without instructions
384void viewCFGOnly(const Function* fun);
385
386std::string dumpValue(const Value* val);
387
388std::string dumpType(const Type* type);
389
390std::string dumpValueAndDbgInfo(const Value* val);
391
392bool isHeapAllocExtCallViaRet(const Instruction *inst);
393
394bool isHeapAllocExtCallViaArg(const Instruction *inst);
395
396inline bool isHeapAllocExtCall(const Instruction *inst)
397{
399}
400
401bool isStackAllocExtCallViaRet(const Instruction *inst);
402
403inline bool isStackAllocExtCall(const Instruction *inst)
404{
405 return isStackAllocExtCallViaRet(inst);
406}
407
408// Check if a given value represents a heap object.
409bool isHeapObj(const Value* val);
410
411// Check if a given value represents a stack object.
412bool isStackObj(const Value* val);
413
415bool isNonInstricCallSite(const Instruction* inst);
416
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}
428
429} // End namespace LLVMUtil
430
431} // End namespace SVF
432
433#endif /* INCLUDE_SVF_FE_LLVMUTIL_H_ */
newitem type
Definition cJSON.cpp:2739
const char *const name
Definition cJSON.h:264
bool isIntrinsicInst(const Instruction *inst)
Return true if it is an intrinsic instruction.
Definition LLVMUtil.cpp:202
const Function * getProgFunction(const std::string &funName)
Get program entry function from module.
Definition LLVMUtil.cpp:39
const Value * stripConstantCasts(const Value *val)
Strip off the constant casts.
Definition LLVMUtil.cpp:218
bool isPtrInUncalledFunction(const Value *value)
Return true if this is value in a dead function (function without any caller)
Definition LLVMUtil.cpp:174
bool isHeapAllocExtCallViaRet(const Instruction *inst)
Definition LLVMUtil.cpp:633
bool isNoCallerFunction(const Function *fun)
Function does not have any possible caller in the call graph.
Definition LLVMUtil.h:179
const Value * getFirstUseViaCastInst(const Value *val)
Definition LLVMUtil.cpp:277
const CallBase * getLLVMCallSite(const Value *value)
Return LLVM callsite given a value.
Definition LLVMUtil.h:91
const ConstantExpr * isBinaryConstantExpr(const Value *val)
Definition LLVMUtil.h:290
bool isHeapAllocExtCall(const Instruction *inst)
Definition LLVMUtil.h:396
void viewCFGOnly(const Function *fun)
Definition LLVMUtil.cpp:238
const std::string getSourceLocOfFunction(const Function *F)
Definition LLVMUtil.cpp:556
bool isUncalledFunction(const Function *fun)
whether this is a function without any possible caller?
Definition LLVMUtil.cpp:157
double getDoubleValue(const ConstantFP *fpValue)
Definition LLVMUtil.h:54
bool isConstantObjSym(const Value *val)
Check whether this value points-to a constant object.
Definition CppUtil.cpp:672
const Value * stripAllCasts(const Value *val)
Strip off the all casts.
Definition LLVMUtil.cpp:249
const ConstantExpr * isInt2PtrConstantExpr(const Value *val)
Definition LLVMUtil.h:225
bool isArgOfUncalledFunction(const Value *val)
Return true if the argument in a function does not have a caller.
Definition LLVMUtil.h:185
const ConstantExpr * isSelectConstantExpr(const Value *val)
Definition LLVMUtil.h:255
bool isMemcpyExtFun(const Function *fun)
Definition LLVMUtil.cpp:388
bool isIntrinsicFun(const Function *func)
Definition LLVMUtil.cpp:189
std::vector< const Function * > getCalledFunctions(const Function *F)
Get all called funcions in a parent function.
Definition LLVMUtil.cpp:363
bool isNoPrecessorBasicBlock(const BasicBlock *bb)
Definition LLVMUtil.h:331
bool isCallSite(const Instruction *inst)
Whether an instruction is a call or invoke instruction.
Definition LLVMUtil.h:44
bool isStackAllocExtCall(const Instruction *inst)
Definition LLVMUtil.h:403
bool ArgInDeadFunction(const Value *val)
whether this is an argument in dead function
Definition LLVMUtil.h:156
bool functionDoesNotRet(const Function *fun)
Definition LLVMUtil.cpp:122
const ConstantExpr * isTruncConstantExpr(const Value *val)
Definition LLVMUtil.h:265
std::string dumpType(const Type *type)
Definition LLVMUtil.cpp:611
std::pair< s64_t, u64_t > getIntegerValue(const ConstantInt *intValue)
Definition LLVMUtil.h:82
void getNextInsts(const Instruction *curInst, std::vector< const Instruction * > &instList)
Get the next instructions following control flow.
Definition LLVMUtil.cpp:573
bool isNullPtrSym(const Value *val)
Check whether this value is a black hole.
Definition LLVMUtil.h:125
std::string dumpValueAndDbgInfo(const Value *val)
Definition LLVMUtil.cpp:622
bool isConstDataOrAggData(const Value *val)
Return true if the value refers to constant data, e.g., i32 0.
Definition LLVMUtil.h:368
const std::string getSourceLoc(const Value *val)
Definition LLVMUtil.cpp:452
const ConstantExpr * isPtr2IntConstantExpr(const Value *val)
Definition LLVMUtil.h:235
bool isHeapObj(const Value *val)
Definition LLVMUtil.cpp:682
const Value * getGlobalRep(const Value *val)
find the unique defined global across multiple modules
Definition LLVMUtil.cpp:439
const ConstantExpr * isUnaryConstantExpr(const Value *val)
Definition LLVMUtil.h:301
void getFunReachableBBs(const Function *svfFun, std::vector< const SVFBasicBlock * > &bbs)
Get reachable basic block from function entry.
Definition LLVMUtil.cpp:74
const ConstantExpr * isCastConstantExpr(const Value *val)
Definition LLVMUtil.h:245
bool isExtCall(const Function *fun)
Definition LLVMUtil.cpp:383
u32_t getNumOfElements(const Type *ety)
Return size of this object based on LLVM value.
Definition LLVMUtil.cpp:295
const Function * getProgEntryFunction(Module &module)
Get program entry function from module.
Definition LLVMUtil.h:418
bool basicBlockHasRetInst(const BasicBlock *bb)
Return true if the function has a return instruction.
Definition LLVMUtil.cpp:108
void viewCFG(const Function *fun)
Definition LLVMUtil.cpp:230
bool isBlackholeSym(const Value *val)
Check whether this value is a black hole.
Definition LLVMUtil.h:119
bool isStackObj(const Value *val)
Definition LLVMUtil.cpp:704
bool isHeapAllocExtCallViaArg(const Instruction *inst)
Definition LLVMUtil.cpp:648
bool isMemsetExtFun(const Function *fun)
Definition LLVMUtil.cpp:394
bool isProgEntryFunction(const Function *fun)
Check whether a function is an entry function (i.e., main)
Definition LLVMUtil.h:113
bool isObject(const Value *ref)
Return true if this value refers to a object.
Definition LLVMUtil.cpp:59
void processArguments(int argc, char **argv, int &arg_num, char **arg_value, std::vector< std::string > &moduleNameVec)
Parse argument for multi-module analysis.
Definition LLVMUtil.cpp:335
bool isIRFile(const std::string &filename)
Check whether a file is an LLVM IR file.
Definition LLVMUtil.cpp:314
bool ArgInProgEntryFunction(const Value *val)
Return true if this is an argument of a program entry function (e.g. main)
Definition LLVMUtil.h:164
static Type * getPtrElementType(const PointerType *pty)
Definition LLVMUtil.h:130
bool isStackAllocExtCallViaRet(const Instruction *inst)
Definition LLVMUtil.cpp:662
const Function * getLLVMFunction(const Value *val)
Return LLVM function if this value is.
Definition LLVMUtil.h:104
const ConstantExpr * isGepConstantExpr(const Value *val)
Return corresponding constant expression, otherwise return nullptr.
Definition LLVMUtil.h:215
u32_t getHeapAllocHoldingArgPosition(const Function *fun)
Definition LLVMUtil.cpp:400
static DataLayout * getDataLayout(Module *mod)
Definition LLVMUtil.h:313
std::string restoreFuncName(std::string funcName)
Definition LLVMUtil.cpp:406
const Function * getCallee(const CallBase *cs)
Definition LLVMUtil.h:97
const FunObjVar * getFunObjVar(const std::string &name)
Definition LLVMUtil.cpp:435
bool isNonInstricCallSite(const Instruction *inst)
Whether an instruction is a callsite in the application code, excluding llvm intrinsic calls.
Definition LLVMUtil.cpp:720
std::string dumpValue(const Value *val)
Definition LLVMUtil.cpp:600
const ConstantExpr * isCmpConstantExpr(const Value *val)
Definition LLVMUtil.h:279
LLVM_NODISCARD bool isa(const Y &Val)
Definition Casting.h:241
for isBitcode
Definition BasicTypes.h:68
llvm::DataLayout DataLayout
Definition BasicTypes.h:108
llvm::Type Type
Definition BasicTypes.h:83
llvm::CallBase CallBase
Definition BasicTypes.h:146
llvm::BasicBlock BasicBlock
Definition BasicTypes.h:86
llvm::Function Function
Definition BasicTypes.h:85
llvm::ConstantData ConstantData
Definition BasicTypes.h:116
llvm::MetadataAsValue MetadataAsValue
Definition BasicTypes.h:102
llvm::Instruction Instruction
Definition BasicTypes.h:87
llvm::ConstantAggregate ConstantAggregate
Definition BasicTypes.h:117
llvm::Value Value
LLVM Basic classes.
Definition BasicTypes.h:82
llvm::ConstantExpr ConstantExpr
Definition BasicTypes.h:120
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74
llvm::BlockAddress BlockAddress
Definition BasicTypes.h:91
llvm::Module Module
Definition BasicTypes.h:84
llvm::PointerType PointerType
Definition BasicTypes.h:96
unsigned u32_t
Definition GeneralType.h:47
llvm::ConstantFP ConstantFP
Definition BasicTypes.h:126
llvm::ConstantInt ConstantInt
Definition BasicTypes.h:125