30#ifndef INCLUDE_SVFLLVM_SVFVALUE_H_
31#define INCLUDE_SVFLLVM_SVFVALUE_H_
158 typename BasicBlockGraph::IDToNodeMapTy::iterator
iterator;
222 this->bbGraph = graph;
276 assert(
bbGraph->
begin()->second->getInEdges().size() == 0 &&
"the first basic block is not entry block");
Class representing a function argument variable in the SVFIR.
iterator begin()
Iterators.
const SVFType * getReturnType() const
bool intrinsic
return true if this function does not have a body
bool dominate(const SVFBasicBlock *bbKey, const SVFBasicBlock *bbValue) const
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 LoopBBs & getLoopInfo(const SVFBasicBlock *bb) const
bool loopContainsBB(const BBList &lp, const SVFBasicBlock *bb) const
bool isUncalled
return true if this function is address-taken (for indirect call purposes)
BasicBlockGraph * getBasicBlockGraph()
const ArgValVar * getArg(u32_t idx) const
const_iterator end() const
SVFBasicBlock * exitBlock
all formal arguments of this function
void setIsUncalledFunction(bool uncalledFunction)
bool addrTaken
return true if this function is an intrinsic function (e.g., llvm.dbg), which does not reside in the ...
const std::vector< const SVFBasicBlock * > & getReachableBBs() const
BasicBlockGraph::IDToNodeMapTy::const_iterator const_iterator
BasicBlockGraph::IDToNodeMapTy::iterator iterator
const_iterator begin() const
std::vector< const ArgValVar * > allArgs
the definition of a function across multiple modules
SVFLoopAndDomInfo * getLoopAndDomInfo()
void getExitBlocksOfLoop(const SVFBasicBlock *bb, BBList &exitbbs) const
const SVFBasicBlock * getEntryBlock() const
bool hasAddressTaken() const
const SVFFunction * realDefFun
the loop and dominate information
bool isUncalledFunction() const
SVFLoopAndDomInfo::LoopBBs LoopBBs
bool hasBasicBlock() const
const SVFType * getReturnType() const
Returns the FunctionType.
const BasicBlockGraph * getBasicBlockGraph() const
const SVFFunctionType * getFunctionType() const
Returns the FunctionType.
void setIsNotRet(bool notRet)
void addArgument(const ArgValVar *arg)
the basic block graph of this function
bool isDeclaration() const
const SVFFunction * getDefFunForMultipleModule() const
static bool classof(const SVFLLVMValue *node)
void setExitBlock(SVFBasicBlock *bb)
const SVFBasicBlock * back() const
const SVFBasicBlock * getExitBB() const
void setBasicBlockGraph(BasicBlockGraph *graph)
bool isNotRet
return true if this function is never called
bool postDominate(const SVFBasicBlock *bbKey, const SVFBasicBlock *bbValue) const
SVFLoopAndDomInfo::BBList BBList
const SVFFunctionType * funcType
return true if this function supports variable arguments
const Map< const SVFBasicBlock *, BBSet > & getDomFrontierMap() const
const SVFBasicBlock * front() const
const Map< const SVFBasicBlock *, BBSet > & getDomTreeMap() const
SVFLoopAndDomInfo::BBSet BBSet
bool hasLoopInfo(const SVFBasicBlock *bb) const
SVFLoopAndDomInfo * loopAndDom
FunctionType, which is different from the type (PointerType) of this SVFFunction.
void setDefFunForMultipleModule(const SVFFunction *deffun)
const SVFBasicBlock * getLoopHeader(const BBList &lp) const
bool isLoopHeader(const SVFBasicBlock *bb) const
GNodeK kind
used for classof
GNodeK getKind() const
Get the type of this SVFValue.
SVFLLVMValue(const SVFType *ty, SVFValKind k=SVFVal)
Constructor without name.
virtual const SVFType * getType() const
bool isConstDataOrAggData() const
friend OutStream & operator<<(OutStream &os, const SVFLLVMValue &value)
Overloading operator << for dumping ICFG node ID.
void setName(std::string &&n)
std::string name
Short name of value for printing & debugging.
void setPtrInUncalledFunction()
virtual ~SVFLLVMValue()=default
bool ptrInUncalledFun
true if this pointer is in an uncalled function
virtual void setSourceLoc(const std::string &sourceCodeInfo)
bool ptrInUncalledFunction() const
virtual const std::string getSourceLoc() const
const std::string & getName() const
std::string toString() const
Needs to be implemented by a SVF front end.
bool constDataOrAggData
true if this value is a ConstantData (e.g., numbers, string, floats) or a constantAggregate
const SVFType * type
Type of this SVFValue.
void setConstDataOrAggData()
const LoopBBs & getLoopInfo(const SVFBasicBlock *bb) const
const Map< const SVFBasicBlock *, BBSet > & getDomFrontierMap() const
Map< const SVFBasicBlock *, BBSet > & getDomTreeMap()
std::vector< const SVFBasicBlock * > BBList
bool dominate(const SVFBasicBlock *bbKey, const SVFBasicBlock *bbValue) const
bool isLoopHeader(const SVFBasicBlock *bb) const
void getExitBlocksOfLoop(const SVFBasicBlock *bb, BBList &exitbbs) const
const BBList & getReachableBBs() const
const SVFBasicBlock * getLoopHeader(const LoopBBs &lp) const
bool hasLoopInfo(const SVFBasicBlock *bb) const
Set< const SVFBasicBlock * > BBSet
bool loopContainsBB(const LoopBBs &lp, const SVFBasicBlock *bb) const
bool postDominate(const SVFBasicBlock *bbKey, const SVFBasicBlock *bbValue) const
std::string dumpLLVMValue(const SVFLLVMValue *svfValue)
llvm::IRBuilder IRBuilder