Static Value-Flow Analysis
Loading...
Searching...
No Matches
SVFLLVMValue.cpp
Go to the documentation of this file.
2#include "Util/SVFUtil.h"
4
5using namespace SVF;
6using namespace SVFUtil;
7
9 bool declare, bool intrinsic, bool adt, bool varg,
11 : SVFLLVMValue(ty, SVFLLVMValue::SVFFunc), isDecl(declare), intrinsic(intrinsic),
12 addrTaken(adt), isUncalled(false), isNotRet(false), varArg(varg),
13 funcType(ft), loopAndDom(ld), realDefFun(nullptr), exitBlock(nullptr)
14{
15}
16
18{
19 delete loopAndDom;
20 delete bbGraph;
21}
22
24{
25 return allArgs.size();
26}
27
29{
30 assert (idx < allArgs.size() && "getArg() out of range!");
31 return allArgs[idx];
32}
33
35{
36 return varArg;
37}
38
40{
41 assert(hasBasicBlock() && "function does not have any Basicblock, external function?");
42 assert(exitBlock && "must have an exitBlock");
43 return exitBlock;
44}
45
47{
48 assert(!exitBlock && "have already set exit Basicblock!");
49 exitBlock = bb;
50}
51
52
53
55std::string SVFLLVMValue::toString() const
56{
57 assert("SVFValue::toString should be implemented or supported by fronted" && false);
58 abort();
59}
60
62const std::string SVFValue::valueOnlyToString() const
63{
64 assert("SVFBaseNode::valueOnlyToString should be implemented or supported by fronted" && false);
65 abort();
66}
#define false
Definition cJSON.cpp:70
Class representing a function argument variable in the SVFIR.
BasicBlockGraph * bbGraph
a 'single' basic block having no successors and containing return instruction in a function
bool varArg
return true if this function never returns
const ArgValVar * getArg(u32_t idx) const
SVFBasicBlock * exitBlock
all formal arguments of this function
std::vector< const ArgValVar * > allArgs
the definition of a function across multiple modules
virtual ~SVFFunction()
SVFFunction(void)=delete
bool hasBasicBlock() const
u32_t arg_size() const
void setExitBlock(SVFBasicBlock *bb)
const SVFBasicBlock * getExitBB() const
bool isVarArg() const
SVFLoopAndDomInfo * loopAndDom
FunctionType, which is different from the type (PointerType) of this SVFFunction.
std::string toString() const
Needs to be implemented by a SVF front end.
Definition LLVMUtil.cpp:746
const std::string valueOnlyToString() const
Definition LLVMUtil.cpp:766
for isBitcode
Definition BasicTypes.h:68
__attribute__((weak)) std
Definition SVFType.cpp:10
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74
unsigned u32_t
Definition GeneralType.h:47