Static Value-Flow Analysis
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Static Public Member Functions | Public Attributes | Protected Member Functions | Private Attributes | Friends | List of all members
SVF::SVFFunction Class Reference

#include <SVFLLVMValue.h>

Inheritance diagram for SVF::SVFFunction:
SVF::SVFLLVMValue

Public Types

typedef BasicBlockGraph::IDToNodeMapTy::const_iterator const_iterator
 
typedef SVFLoopAndDomInfo::BBSet BBSet
 
typedef SVFLoopAndDomInfo::BBList BBList
 
typedef SVFLoopAndDomInfo::LoopBBs LoopBBs
 
- Public Types inherited from SVF::SVFLLVMValue
enum  SVFValKind { SVFVal , SVFFunc }
 
typedef s64_t GNodeK
 

Public Member Functions

 SVFFunction (const SVFType *ty, const SVFFunctionType *ft, bool declare, bool intrinsic, bool addrTaken, bool varg, SVFLoopAndDomInfo *ld)
 
 SVFFunction (void)=delete
 
virtual ~SVFFunction ()
 
SVFLoopAndDomInfogetLoopAndDomInfo ()
 
bool isDeclaration () const
 
void setBasicBlockGraph (BasicBlockGraph *graph)
 
BasicBlockGraphgetBasicBlockGraph ()
 
const BasicBlockGraphgetBasicBlockGraph () const
 
bool isIntrinsic () const
 
bool hasAddressTaken () const
 
const SVFFunctionTypegetFunctionType () const
 Returns the FunctionType.
 
const SVFTypegetReturnType () const
 Returns the FunctionType.
 
const SVFFunctiongetDefFunForMultipleModule () const
 
u32_t arg_size () const
 
const ArgValVargetArg (u32_t idx) const
 
bool isVarArg () const
 
bool hasBasicBlock () const
 
const SVFBasicBlockgetEntryBlock () const
 
const SVFBasicBlockgetExitBB () const
 
void setExitBlock (SVFBasicBlock *bb)
 
const SVFBasicBlockfront () const
 
const SVFBasicBlockback () const
 
const_iterator begin () const
 
const_iterator end () const
 
const std::vector< const SVFBasicBlock * > & getReachableBBs () const
 
bool isUncalledFunction () const
 
bool hasReturn () const
 
void getExitBlocksOfLoop (const SVFBasicBlock *bb, BBList &exitbbs) const
 
bool hasLoopInfo (const SVFBasicBlock *bb) const
 
const LoopBBsgetLoopInfo (const SVFBasicBlock *bb) const
 
const SVFBasicBlockgetLoopHeader (const BBList &lp) const
 
bool loopContainsBB (const BBList &lp, const SVFBasicBlock *bb) const
 
const Map< const SVFBasicBlock *, BBSet > & getDomTreeMap () const
 
const Map< const SVFBasicBlock *, BBSet > & getDomFrontierMap () const
 
bool isLoopHeader (const SVFBasicBlock *bb) const
 
bool dominate (const SVFBasicBlock *bbKey, const SVFBasicBlock *bbValue) const
 
bool postDominate (const SVFBasicBlock *bbKey, const SVFBasicBlock *bbValue) const
 
- Public Member Functions inherited from SVF::SVFLLVMValue
 SVFLLVMValue ()=delete
 
virtual ~SVFLLVMValue ()=default
 
GNodeK getKind () const
 Get the type of this SVFValue.
 
const std::string & getName () const
 
void setName (std::string &&n)
 
virtual const SVFTypegetType () const
 
bool isConstDataOrAggData () const
 
bool ptrInUncalledFunction () const
 
virtual void setSourceLoc (const std::string &sourceCodeInfo)
 
virtual const std::string getSourceLoc () const
 
std::string toString () const
 Needs to be implemented by a SVF front end.
 

Static Public Member Functions

static bool classof (const SVFLLVMValue *node)
 

Public Attributes

BasicBlockGraph::IDToNodeMapTy::iterator iterator
 

Protected Member Functions

void addArgument (const ArgValVar *arg)
 the basic block graph of this function
 
void setIsUncalledFunction (bool uncalledFunction)
 
void setIsNotRet (bool notRet)
 
void setDefFunForMultipleModule (const SVFFunction *deffun)
 
- Protected Member Functions inherited from SVF::SVFLLVMValue
 SVFLLVMValue (const SVFType *ty, SVFValKind k=SVFVal)
 Constructor without name.
 
void setConstDataOrAggData ()
 
void setPtrInUncalledFunction ()
 

Private Attributes

bool isDecl
 
bool intrinsic
 return true if this function does not have a body
 
bool addrTaken
 return true if this function is an intrinsic function (e.g., llvm.dbg), which does not reside in the application code
 
bool isUncalled
 return true if this function is address-taken (for indirect call purposes)
 
bool isNotRet
 return true if this function is never called
 
bool varArg
 return true if this function never returns
 
const SVFFunctionTypefuncType
 return true if this function supports variable arguments
 
SVFLoopAndDomInfoloopAndDom
 FunctionType, which is different from the type (PointerType) of this SVFFunction.
 
const SVFFunctionrealDefFun
 the loop and dominate information
 
std::vector< const ArgValVar * > allArgs
 the definition of a function across multiple modules
 
SVFBasicBlockexitBlock
 all formal arguments of this function
 
BasicBlockGraphbbGraph
 a 'single' basic block having no successors and containing return instruction in a function
 

Friends

class LLVMModuleSet
 
class SVFIRWriter
 
class SVFIRReader
 
class SVFIRBuilder
 

Additional Inherited Members

- Protected Attributes inherited from SVF::SVFLLVMValue
const SVFTypetype
 Type of this SVFValue.
 
std::string name
 Short name of value for printing & debugging.
 
std::string sourceLoc
 

Detailed Description

Definition at line 150 of file SVFLLVMValue.h.

Member Typedef Documentation

◆ BBList

Definition at line 161 of file SVFLLVMValue.h.

◆ BBSet

Definition at line 160 of file SVFLLVMValue.h.

◆ const_iterator

typedef BasicBlockGraph::IDToNodeMapTy::const_iterator SVF::SVFFunction::const_iterator

Definition at line 159 of file SVFLLVMValue.h.

◆ LoopBBs

Definition at line 162 of file SVFLLVMValue.h.

Constructor & Destructor Documentation

◆ SVFFunction() [1/2]

SVFFunction::SVFFunction ( const SVFType ty,
const SVFFunctionType ft,
bool  declare,
bool  intrinsic,
bool  addrTaken,
bool  varg,
SVFLoopAndDomInfo ld 
)

Definition at line 8 of file SVFLLVMValue.cpp.

12 addrTaken(adt), isUncalled(false), isNotRet(false), varArg(varg),
13 funcType(ft), loopAndDom(ld), realDefFun(nullptr), exitBlock(nullptr)
14{
15}
bool intrinsic
return true if this function does not have a body
bool varArg
return true if this function never returns
bool isUncalled
return true if this function is address-taken (for indirect call purposes)
SVFBasicBlock * exitBlock
all formal arguments of this function
bool addrTaken
return true if this function is an intrinsic function (e.g., llvm.dbg), which does not reside in the ...
const SVFFunction * realDefFun
the loop and dominate information
bool isNotRet
return true if this function is never called
const SVFFunctionType * funcType
return true if this function supports variable arguments
SVFLoopAndDomInfo * loopAndDom
FunctionType, which is different from the type (PointerType) of this SVFFunction.
SVFLLVMValue()=delete
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

◆ SVFFunction() [2/2]

SVF::SVFFunction::SVFFunction ( void  )
delete

◆ ~SVFFunction()

SVFFunction::~SVFFunction ( )
virtual

Definition at line 17 of file SVFLLVMValue.cpp.

18{
19 delete loopAndDom;
20 delete bbGraph;
21}
BasicBlockGraph * bbGraph
a 'single' basic block having no successors and containing return instruction in a function

Member Function Documentation

◆ addArgument()

void SVF::SVFFunction::addArgument ( const ArgValVar arg)
inlineprotected

the basic block graph of this function

Definition at line 180 of file SVFLLVMValue.h.

181 {
182 allArgs.push_back(arg);
183 }
std::vector< const ArgValVar * > allArgs
the definition of a function across multiple modules

◆ arg_size()

u32_t SVFFunction::arg_size ( ) const

Definition at line 23 of file SVFLLVMValue.cpp.

24{
25 return allArgs.size();
26}

◆ back()

const SVFBasicBlock * SVF::SVFFunction::back ( ) const
inline

Carefully! 'back' is just the last basic block of function, but not necessarily a exit basic block more refer to: https://github.com/SVF-tools/SVF/pull/1262

Definition at line 291 of file SVFLLVMValue.h.

292 {
293 assert(hasBasicBlock() && "function does not have any Basicblock, external function?");
297 return std::prev(bbGraph->end())->second;
298 }
bool hasBasicBlock() const

◆ begin()

const_iterator SVF::SVFFunction::begin ( ) const
inline

Definition at line 300 of file SVFLLVMValue.h.

301 {
302 return bbGraph->begin();
303 }
iterator begin()
Iterators.

◆ classof()

static bool SVF::SVFFunction::classof ( const SVFLLVMValue node)
inlinestatic

Definition at line 206 of file SVFLLVMValue.h.

207 {
208 return node->getKind() == SVFFunc;
209 }

◆ dominate()

bool SVF::SVFFunction::dominate ( const SVFBasicBlock bbKey,
const SVFBasicBlock bbValue 
) const
inline

Definition at line 366 of file SVFLLVMValue.h.

367 {
369 }
bool dominate(const SVFBasicBlock *bbKey, const SVFBasicBlock *bbValue) const
Definition SVFValue.cpp:56

◆ end()

const_iterator SVF::SVFFunction::end ( ) const
inline

Definition at line 305 of file SVFLLVMValue.h.

306 {
307 return bbGraph->end();
308 }

◆ front()

const SVFBasicBlock * SVF::SVFFunction::front ( ) const
inline

Definition at line 286 of file SVFLLVMValue.h.

287 {
288 return getEntryBlock();
289 }
const SVFBasicBlock * getEntryBlock() const

◆ getArg()

const ArgValVar * SVFFunction::getArg ( u32_t  idx) const

Definition at line 28 of file SVFLLVMValue.cpp.

29{
30 assert (idx < allArgs.size() && "getArg() out of range!");
31 return allArgs[idx];
32}

◆ getBasicBlockGraph() [1/2]

BasicBlockGraph * SVF::SVFFunction::getBasicBlockGraph ( )
inline

Definition at line 225 of file SVFLLVMValue.h.

226 {
227 return bbGraph;
228 }

◆ getBasicBlockGraph() [2/2]

const BasicBlockGraph * SVF::SVFFunction::getBasicBlockGraph ( ) const
inline

Definition at line 230 of file SVFLLVMValue.h.

231 {
232 return bbGraph;
233 }

◆ getDefFunForMultipleModule()

const SVFFunction * SVF::SVFFunction::getDefFunForMultipleModule ( ) const
inline

Definition at line 257 of file SVFLLVMValue.h.

258 {
259 if(realDefFun==nullptr)
260 return this;
261 return realDefFun;
262 }

◆ getDomFrontierMap()

const Map< const SVFBasicBlock *, BBSet > & SVF::SVFFunction::getDomFrontierMap ( ) const
inline

Definition at line 356 of file SVFLLVMValue.h.

357 {
359 }
const Map< const SVFBasicBlock *, BBSet > & getDomFrontierMap() const

◆ getDomTreeMap()

const Map< const SVFBasicBlock *, BBSet > & SVF::SVFFunction::getDomTreeMap ( ) const
inline

Definition at line 351 of file SVFLLVMValue.h.

352 {
353 return loopAndDom->getDomTreeMap();
354 }
Map< const SVFBasicBlock *, BBSet > & getDomTreeMap()

◆ getEntryBlock()

const SVFBasicBlock * SVF::SVFFunction::getEntryBlock ( ) const
inline

Definition at line 273 of file SVFLLVMValue.h.

274 {
275 assert(hasBasicBlock() && "function does not have any Basicblock, external function?");
276 assert(bbGraph->begin()->second->getInEdges().size() == 0 && "the first basic block is not entry block");
277 return bbGraph->begin()->second;
278 }

◆ getExitBB()

const SVFBasicBlock * SVFFunction::getExitBB ( ) const

Carefully! when you call getExitBB, you need ensure the function has return instruction more refer to: https://github.com/SVF-tools/SVF/pull/1262

Definition at line 39 of file SVFLLVMValue.cpp.

40{
41 assert(hasBasicBlock() && "function does not have any Basicblock, external function?");
42 assert(exitBlock && "must have an exitBlock");
43 return exitBlock;
44}

◆ getExitBlocksOfLoop()

void SVF::SVFFunction::getExitBlocksOfLoop ( const SVFBasicBlock bb,
BBList exitbbs 
) const
inline

Definition at line 326 of file SVFLLVMValue.h.

327 {
329 }
void getExitBlocksOfLoop(const SVFBasicBlock *bb, BBList &exitbbs) const
Definition SVFValue.cpp:37

◆ getFunctionType()

const SVFFunctionType * SVF::SVFFunction::getFunctionType ( ) const
inline

Returns the FunctionType.

Definition at line 246 of file SVFLLVMValue.h.

247 {
248 return funcType;
249 }

◆ getLoopAndDomInfo()

SVFLoopAndDomInfo * SVF::SVFFunction::getLoopAndDomInfo ( )
inline

Definition at line 211 of file SVFLLVMValue.h.

212 {
213 return loopAndDom;
214 }

◆ getLoopHeader()

const SVFBasicBlock * SVF::SVFFunction::getLoopHeader ( const BBList lp) const
inline

Definition at line 341 of file SVFLLVMValue.h.

342 {
343 return loopAndDom->getLoopHeader(lp);
344 }
const SVFBasicBlock * getLoopHeader(const LoopBBs &lp) const

◆ getLoopInfo()

const LoopBBs & SVF::SVFFunction::getLoopInfo ( const SVFBasicBlock bb) const
inline

Definition at line 336 of file SVFLLVMValue.h.

337 {
338 return loopAndDom->getLoopInfo(bb);
339 }
const LoopBBs & getLoopInfo(const SVFBasicBlock *bb) const
Definition SVFValue.cpp:30

◆ getReachableBBs()

const std::vector< const SVFBasicBlock * > & SVF::SVFFunction::getReachableBBs ( ) const
inline

Definition at line 311 of file SVFLLVMValue.h.

312 {
313 return loopAndDom->getReachableBBs();
314 }
const BBList & getReachableBBs() const

◆ getReturnType()

const SVFType * SVF::SVFFunction::getReturnType ( ) const
inline

Returns the FunctionType.

Definition at line 252 of file SVFLLVMValue.h.

253 {
254 return funcType->getReturnType();
255 }
const SVFType * getReturnType() const
Definition SVFType.h:336

◆ hasAddressTaken()

bool SVF::SVFFunction::hasAddressTaken ( ) const
inline

Definition at line 240 of file SVFLLVMValue.h.

241 {
242 return addrTaken;
243 }

◆ hasBasicBlock()

bool SVF::SVFFunction::hasBasicBlock ( ) const
inline

Definition at line 268 of file SVFLLVMValue.h.

269 {
270 return bbGraph && bbGraph->begin() != bbGraph->end();
271 }

◆ hasLoopInfo()

bool SVF::SVFFunction::hasLoopInfo ( const SVFBasicBlock bb) const
inline

Definition at line 331 of file SVFLLVMValue.h.

332 {
333 return loopAndDom->hasLoopInfo(bb);
334 }
bool hasLoopInfo(const SVFBasicBlock *bb) const

◆ hasReturn()

bool SVF::SVFFunction::hasReturn ( ) const
inline

Definition at line 321 of file SVFLLVMValue.h.

322 {
323 return !isNotRet;
324 }

◆ isDeclaration()

bool SVF::SVFFunction::isDeclaration ( ) const
inline

Definition at line 215 of file SVFLLVMValue.h.

216 {
217 return isDecl;
218 }

◆ isIntrinsic()

bool SVF::SVFFunction::isIntrinsic ( ) const
inline

Definition at line 235 of file SVFLLVMValue.h.

236 {
237 return intrinsic;
238 }

◆ isLoopHeader()

bool SVF::SVFFunction::isLoopHeader ( const SVFBasicBlock bb) const
inline

Definition at line 361 of file SVFLLVMValue.h.

362 {
363 return loopAndDom->isLoopHeader(bb);
364 }
bool isLoopHeader(const SVFBasicBlock *bb) const
Definition SVFValue.cpp:143

◆ isUncalledFunction()

bool SVF::SVFFunction::isUncalledFunction ( ) const
inline

Definition at line 316 of file SVFLLVMValue.h.

317 {
318 return isUncalled;
319 }

◆ isVarArg()

bool SVFFunction::isVarArg ( ) const

Definition at line 34 of file SVFLLVMValue.cpp.

35{
36 return varArg;
37}

◆ loopContainsBB()

bool SVF::SVFFunction::loopContainsBB ( const BBList lp,
const SVFBasicBlock bb 
) const
inline

Definition at line 346 of file SVFLLVMValue.h.

347 {
348 return loopAndDom->loopContainsBB(lp,bb);
349 }
bool loopContainsBB(const LoopBBs &lp, const SVFBasicBlock *bb) const

◆ postDominate()

bool SVF::SVFFunction::postDominate ( const SVFBasicBlock bbKey,
const SVFBasicBlock bbValue 
) const
inline

Definition at line 371 of file SVFLLVMValue.h.

372 {
374 }
bool postDominate(const SVFBasicBlock *bbKey, const SVFBasicBlock *bbValue) const
Definition SVFValue.cpp:87

◆ setBasicBlockGraph()

void SVF::SVFFunction::setBasicBlockGraph ( BasicBlockGraph graph)
inline

Definition at line 220 of file SVFLLVMValue.h.

221 {
222 this->bbGraph = graph;
223 }

◆ setDefFunForMultipleModule()

void SVF::SVFFunction::setDefFunForMultipleModule ( const SVFFunction deffun)
inlineprotected

Definition at line 195 of file SVFLLVMValue.h.

196 {
198 }

◆ setExitBlock()

void SVFFunction::setExitBlock ( SVFBasicBlock bb)

Definition at line 46 of file SVFLLVMValue.cpp.

47{
48 assert(!exitBlock && "have already set exit Basicblock!");
49 exitBlock = bb;
50}

◆ setIsNotRet()

void SVF::SVFFunction::setIsNotRet ( bool  notRet)
inlineprotected

Definition at line 190 of file SVFLLVMValue.h.

191 {
193 }

◆ setIsUncalledFunction()

void SVF::SVFFunction::setIsUncalledFunction ( bool  uncalledFunction)
inlineprotected

Definition at line 185 of file SVFLLVMValue.h.

186 {
188 }

Friends And Related Symbol Documentation

◆ LLVMModuleSet

Definition at line 152 of file SVFLLVMValue.h.

◆ SVFIRBuilder

Definition at line 155 of file SVFLLVMValue.h.

◆ SVFIRReader

friend class SVFIRReader
friend

Definition at line 154 of file SVFLLVMValue.h.

◆ SVFIRWriter

friend class SVFIRWriter
friend

Definition at line 153 of file SVFLLVMValue.h.

Member Data Documentation

◆ addrTaken

bool SVF::SVFFunction::addrTaken
private

return true if this function is an intrinsic function (e.g., llvm.dbg), which does not reside in the application code

Definition at line 167 of file SVFLLVMValue.h.

◆ allArgs

std::vector<const ArgValVar*> SVF::SVFFunction::allArgs
private

the definition of a function across multiple modules

Definition at line 174 of file SVFLLVMValue.h.

◆ bbGraph

BasicBlockGraph* SVF::SVFFunction::bbGraph
private

a 'single' basic block having no successors and containing return instruction in a function

Definition at line 176 of file SVFLLVMValue.h.

◆ exitBlock

SVFBasicBlock* SVF::SVFFunction::exitBlock
private

all formal arguments of this function

Definition at line 175 of file SVFLLVMValue.h.

◆ funcType

const SVFFunctionType* SVF::SVFFunction::funcType
private

return true if this function supports variable arguments

Definition at line 171 of file SVFLLVMValue.h.

◆ intrinsic

bool SVF::SVFFunction::intrinsic
private

return true if this function does not have a body

Definition at line 166 of file SVFLLVMValue.h.

◆ isDecl

bool SVF::SVFFunction::isDecl
private

Definition at line 165 of file SVFLLVMValue.h.

◆ isNotRet

bool SVF::SVFFunction::isNotRet
private

return true if this function is never called

Definition at line 169 of file SVFLLVMValue.h.

◆ isUncalled

bool SVF::SVFFunction::isUncalled
private

return true if this function is address-taken (for indirect call purposes)

Definition at line 168 of file SVFLLVMValue.h.

◆ iterator

BasicBlockGraph::IDToNodeMapTy::iterator SVF::SVFFunction::iterator

Definition at line 158 of file SVFLLVMValue.h.

◆ loopAndDom

SVFLoopAndDomInfo* SVF::SVFFunction::loopAndDom
private

FunctionType, which is different from the type (PointerType) of this SVFFunction.

Definition at line 172 of file SVFLLVMValue.h.

◆ realDefFun

const SVFFunction* SVF::SVFFunction::realDefFun
private

the loop and dominate information

Definition at line 173 of file SVFLLVMValue.h.

◆ varArg

bool SVF::SVFFunction::varArg
private

return true if this function never returns

Definition at line 170 of file SVFLLVMValue.h.


The documentation for this class was generated from the following files: