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

#include <SVFLLVMValue.h>

Inheritance diagram for SVF::SVFArgument:
SVF::SVFLLVMValue

Public Member Functions

 SVFArgument (const SVFType *ty, const SVFFunction *fun, u32_t argNo, bool uncalled)
 
 SVFArgument ()=delete
 
const SVFFunctiongetParent () const
 
u32_t getArgNo () const
 
bool isArgOfUncalledFunction () 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)
 

Private Attributes

const SVFFunctionfun
 
u32_t argNo
 
bool uncalled
 

Friends

class SVFIRWriter
 
class SVFIRReader
 

Additional Inherited Members

- Public Types inherited from SVF::SVFLLVMValue
enum  SVFValKind {
  SVFVal , SVFFunc , SVFBB , SVFInst ,
  SVFCall , SVFVCall , SVFGlob , SVFArg ,
  SVFConst , SVFConstData , SVFMetaAsValue , SVFOther
}
 
typedef s64_t GNodeK
 
- Protected Member Functions inherited from SVF::SVFLLVMValue
 SVFLLVMValue (const SVFType *ty, SVFValKind k)
 Constructor without name.
 
void setConstDataOrAggData ()
 
void setPtrInUncalledFunction ()
 
- 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 563 of file SVFLLVMValue.h.

Constructor & Destructor Documentation

◆ SVFArgument() [1/2]

SVF::SVFArgument::SVFArgument ( const SVFType ty,
const SVFFunction fun,
u32_t  argNo,
bool  uncalled 
)
inline

Definition at line 572 of file SVFLLVMValue.h.

576 {
577 }
const SVFFunction * fun
SVFLLVMValue()=delete
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

◆ SVFArgument() [2/2]

SVF::SVFArgument::SVFArgument ( )
delete

Member Function Documentation

◆ classof()

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

Definition at line 597 of file SVFLLVMValue.h.

598 {
599 return node->getKind() == SVFArg;
600 }

◆ getArgNo()

u32_t SVF::SVFArgument::getArgNo ( ) const
inline

Return the index of this formal argument in its containing function. For example in "void foo(int a, float b)" a is 0 and b is 1.

Definition at line 587 of file SVFLLVMValue.h.

588 {
589 return argNo;
590 }

◆ getParent()

const SVFFunction * SVF::SVFArgument::getParent ( ) const
inline

Definition at line 580 of file SVFLLVMValue.h.

581 {
582 return fun;
583 }

◆ isArgOfUncalledFunction()

bool SVF::SVFArgument::isArgOfUncalledFunction ( ) const
inline

Definition at line 592 of file SVFLLVMValue.h.

593 {
594 return uncalled;
595 }

Friends And Related Symbol Documentation

◆ SVFIRReader

friend class SVFIRReader
friend

Definition at line 566 of file SVFLLVMValue.h.

◆ SVFIRWriter

friend class SVFIRWriter
friend

Definition at line 565 of file SVFLLVMValue.h.

Member Data Documentation

◆ argNo

u32_t SVF::SVFArgument::argNo
private

Definition at line 569 of file SVFLLVMValue.h.

◆ fun

const SVFFunction* SVF::SVFArgument::fun
private

Definition at line 568 of file SVFLLVMValue.h.

◆ uncalled

bool SVF::SVFArgument::uncalled
private

Definition at line 570 of file SVFLLVMValue.h.


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