Static Value-Flow Analysis
Loading...
Searching...
No Matches
LLVMUtil.cpp
Go to the documentation of this file.
1//===- SVFUtil.cpp -- 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.cpp
25 *
26 * Created on: Apr 11, 2013
27 * Author: Yulei Sui
28 */
29
30#include "SVF-LLVM/LLVMUtil.h"
31#include "SVFIR/ObjTypeInfo.h"
32#include <sstream>
33#include <llvm/Support/raw_ostream.h>
34#include "SVF-LLVM/LLVMModule.h"
35
36
37using namespace SVF;
38
39const Function* LLVMUtil::getProgFunction(const std::string& funName)
40{
42 {
43 for (const Function& fun : M)
44 {
45 if (fun.getName() == funName)
46 return &fun;
47 }
48 }
49 return nullptr;
50}
51
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}
70
74void LLVMUtil::getFunReachableBBs (const Function* fun, std::vector<const SVFBasicBlock*> &reachableBBs)
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}
104
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}
118
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}
153
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}
170
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}
188
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}
200
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}
214
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}
229
231{
232 if (fun != nullptr)
233 {
234 fun->viewCFG();
235 }
236}
237
239{
240 if (fun != nullptr)
241 {
242 fun->viewCFGOnly();
243 }
244}
245
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}
271
272/*
273 * Get the first dominated cast instruction for heap allocations since they typically come from void* (i8*)
274 * for example, %4 = call align 16 i8* @malloc(i64 10); %5 = bitcast i8* %4 to i32*
275 * return %5 whose type is i32* but not %4 whose type is i8*
276 */
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}
291
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}
308
309/*
310 * Reference functions:
311 * llvm::parseIRFile (lib/IRReader/IRReader.cpp)
312 * llvm::parseIR (lib/IRReader/IRReader.cpp)
313 */
314bool LLVMUtil::isIRFile(const std::string &filename)
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}
331
332
335void LLVMUtil::processArguments(int argc, char **argv, int &arg_num, char **arg_value,
336 std::vector<std::string> &moduleNameVec)
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}
361
363std::vector<const Function *> LLVMUtil::getCalledFunctions(const Function *F)
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}
381
382
384{
385 return fun && LLVMModuleSet::getLLVMModuleSet()->is_ext(fun);
386}
387
389{
390 return fun && LLVMModuleSet::getLLVMModuleSet()->is_memcpy(fun);
391}
392
393
395{
396 return fun && LLVMModuleSet::getLLVMModuleSet()->is_memset(fun);
397}
398
399
404
405
406std::string LLVMUtil::restoreFuncName(std::string funcName)
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}
433
434
435const FunObjVar* LLVMUtil::getFunObjVar(const std::string& name)
436{
438}
440{
441 if (const GlobalVariable* gvar = SVFUtil::dyn_cast<GlobalVariable>(val))
442 {
443 if (LLVMModuleSet::getLLVMModuleSet()->hasGlobalRep(gvar))
445 }
446 return val;
447}
448
452const std::string LLVMUtil::getSourceLoc(const Value* val )
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}
551
552
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}
571
573void LLVMUtil::getNextInsts(const Instruction* curInst, std::vector<const Instruction*>& instList)
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());
592 else
593 instList.push_back(nextInst);
594 }
595 }
596}
597
598
599
600std::string LLVMUtil::dumpValue(const Value* val)
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}
610
611std::string LLVMUtil::dumpType(const Type* type)
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}
621
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}
632
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}
647
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}
661
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}
675
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}
699
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}
719
721{
722 bool res = false;
723
724 if(isIntrinsicInst(inst))
725 res = false;
726 else
727 res = isCallSite(inst);
728 return res;
729}
730
731namespace SVF
732{
733
734
735const std::string SVFValue::valueOnlyToString() const
736{
737 std::string str;
738 llvm::raw_string_ostream rawstr(str);
739 assert(
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");
744 auto llvmVal =
746 if (llvmVal)
747 rawstr << " " << *llvmVal << " ";
748 else
749 rawstr << "";
750 rawstr << getSourceLoc();
751 return rawstr.str();
752}
753
754} // namespace SVF
newitem type
Definition cJSON.cpp:2739
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
GlobalVariable * getGlobalRep(const GlobalVariable *val) const
Definition LLVMModule.h:352
SVFBasicBlock * getSVFBasicBlock(const BasicBlock *bb)
Definition LLVMModule.h:291
DominatorTree & getDomTree(const Function *fun)
const Value * getLLVMValue(const SVFValue *value) const
Definition LLVMModule.h:253
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
Definition LLVMModule.h:155
bool is_ext(const Function *F)
bool is_memset(const Function *F)
bool is_memcpy(const Function *F)
static Option< bool > ModelArrays
Definition Options.h:188
const ICFGNode * back() const
StInfo * getTypeInfo()
Definition SVFType.h:230
virtual const std::string getSourceLoc() const
Definition SVFValue.h:194
const std::string valueOnlyToString() const
Definition LLVMUtil.cpp:735
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
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
const Value * getFirstUseViaCastInst(const Value *val)
Definition LLVMUtil.cpp:277
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
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 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 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 functionDoesNotRet(const Function *fun)
Definition LLVMUtil.cpp:122
std::string dumpType(const Type *type)
Definition LLVMUtil.cpp:611
void getNextInsts(const Instruction *curInst, std::vector< const Instruction * > &instList)
Get the next instructions following control flow.
Definition LLVMUtil.cpp:573
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
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
void getFunReachableBBs(const Function *svfFun, std::vector< const SVFBasicBlock * > &bbs)
Get reachable basic block from function entry.
Definition LLVMUtil.cpp:74
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
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 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
bool isStackAllocExtCallViaRet(const Instruction *inst)
Definition LLVMUtil.cpp:662
u32_t getHeapAllocHoldingArgPosition(const Function *fun)
Definition LLVMUtil.cpp:400
std::string restoreFuncName(std::string funcName)
Definition LLVMUtil.cpp:406
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
for isBitcode
Definition BasicTypes.h:68
llvm::GlobalVariable GlobalVariable
Definition BasicTypes.h:130
llvm::Type Type
Definition BasicTypes.h:83
llvm::CallBase CallBase
Definition BasicTypes.h:146
llvm::BasicBlock BasicBlock
Definition BasicTypes.h:86
llvm::NamedMDNode NamedMDNode
LLVM metadata and debug information.
Definition BasicTypes.h:111
llvm::succ_const_iterator succ_const_iterator
LLVM Iterators.
Definition BasicTypes.h:276
llvm::Argument Argument
Definition BasicTypes.h:145
llvm::Function Function
Definition BasicTypes.h:85
llvm::Instruction Instruction
Definition BasicTypes.h:87
llvm::DomTreeNode DomTreeNode
Definition BasicTypes.h:134
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::CastInst CastInst
Definition BasicTypes.h:158
llvm::Module Module
Definition BasicTypes.h:84
llvm::MDNode MDNode
Definition BasicTypes.h:112
unsigned u32_t
Definition GeneralType.h:47
llvm::DominatorTree DominatorTree
LLVM Dominators.
Definition BasicTypes.h:133