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

#include <SVFLLVMValue.h>

Inheritance diagram for SVF::SVFCallInst:
SVF::SVFInstruction SVF::SVFLLVMValue

Public Member Functions

 SVFCallInst (const SVFType *ty, const SVFBasicBlock *b, bool va, bool tm, SVFValKind k=SVFCall)
 
 SVFCallInst (void)=delete
 
u32_t arg_size () const
 
bool arg_empty () const
 
const SVFLLVMValuegetArgOperand (u32_t i) const
 
u32_t getNumArgOperands () const
 
const SVFLLVMValuegetCalledOperand () const
 
bool isVarArg () const
 
const SVFFunctiongetCalledFunction () const
 
const FunObjVargetCaller () const
 
- Public Member Functions inherited from SVF::SVFInstruction
 SVFInstruction (const SVFType *ty, const SVFBasicBlock *b, bool tm, bool isRet, SVFValKind k=SVFInst)
 return true if this is an return instruction of a function
 
 SVFInstruction (void)=delete
 
const SVFBasicBlockgetParent () const
 
const FunObjVargetFunction () const
 
bool isRetInst () 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)
 
static bool classof (const SVFInstruction *node)
 
- Static Public Member Functions inherited from SVF::SVFInstruction
static bool classof (const SVFLLVMValue *node)
 

Protected Member Functions

void addArgument (const SVFLLVMValue *a)
 attributes to be set only through Module builders e.g., LLVMModule
 
void setCalledOperand (const SVFLLVMValue *v)
 
- Protected Member Functions inherited from SVF::SVFLLVMValue
 SVFLLVMValue (const SVFType *ty, SVFValKind k)
 Constructor without name.
 
void setConstDataOrAggData ()
 
void setPtrInUncalledFunction ()
 

Private Attributes

std::vector< const SVFLLVMValue * > args
 
bool varArg
 
const SVFLLVMValuecalledVal
 

Friends

class SVFIRWriter
 
class SVFIRReader
 
class LLVMModuleSet
 
class SVFIRBuilder
 

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 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 429 of file SVFLLVMValue.h.

Constructor & Destructor Documentation

◆ SVFCallInst() [1/2]

SVF::SVFCallInst::SVFCallInst ( const SVFType ty,
const SVFBasicBlock b,
bool  va,
bool  tm,
SVFValKind  k = SVFCall 
)
inline

Definition at line 454 of file SVFLLVMValue.h.

454 :
455 SVFInstruction(ty, b, tm, false, k), varArg(va), calledVal(nullptr)
456 {
457 }
const cJSON *const b
Definition cJSON.h:255
const SVFLLVMValue * calledVal
SVFInstruction(void)=delete
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

◆ SVFCallInst() [2/2]

SVF::SVFCallInst::SVFCallInst ( void  )
delete

Member Function Documentation

◆ addArgument()

void SVF::SVFCallInst::addArgument ( const SVFLLVMValue a)
inlineprotected

attributes to be set only through Module builders e.g., LLVMModule

Definition at line 443 of file SVFLLVMValue.h.

444 {
445 args.push_back(a);
446 }
cJSON * a
Definition cJSON.cpp:2560
std::vector< const SVFLLVMValue * > args

◆ arg_empty()

bool SVF::SVFCallInst::arg_empty ( ) const
inline

Definition at line 472 of file SVFLLVMValue.h.

473 {
474 return args.empty();
475 }

◆ arg_size()

u32_t SVF::SVFCallInst::arg_size ( ) const
inline

Definition at line 468 of file SVFLLVMValue.h.

469 {
470 return args.size();
471 }

◆ classof() [1/2]

static bool SVF::SVFCallInst::classof ( const SVFInstruction node)
inlinestatic

Definition at line 464 of file SVFLLVMValue.h.

465 {
466 return node->getKind() == SVFCall || node->getKind() == SVFVCall;
467 }

◆ classof() [2/2]

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

Definition at line 460 of file SVFLLVMValue.h.

461 {
462 return node->getKind() == SVFCall || node->getKind() == SVFVCall;
463 }

◆ getArgOperand()

const SVFLLVMValue * SVF::SVFCallInst::getArgOperand ( u32_t  i) const
inline

Definition at line 476 of file SVFLLVMValue.h.

477 {
478 assert(i < arg_size() && "out of bound access of the argument");
479 return args[i];
480 }
u32_t arg_size() const

◆ getCalledFunction()

const SVFFunction * SVF::SVFCallInst::getCalledFunction ( ) const
inline

Definition at line 493 of file SVFLLVMValue.h.

494 {
495 return SVFUtil::dyn_cast<SVFFunction>(calledVal);
496 }

◆ getCalledOperand()

const SVFLLVMValue * SVF::SVFCallInst::getCalledOperand ( ) const
inline

Definition at line 485 of file SVFLLVMValue.h.

486 {
487 return calledVal;
488 }

◆ getCaller()

const FunObjVar * SVF::SVFCallInst::getCaller ( ) const
inline

Definition at line 497 of file SVFLLVMValue.h.

498 {
499 return getFunction();
500 }
const FunObjVar * getFunction() const

◆ getNumArgOperands()

u32_t SVF::SVFCallInst::getNumArgOperands ( ) const
inline

Definition at line 481 of file SVFLLVMValue.h.

482 {
483 return arg_size();
484 }

◆ isVarArg()

bool SVF::SVFCallInst::isVarArg ( ) const
inline

Definition at line 489 of file SVFLLVMValue.h.

490 {
491 return varArg;
492 }

◆ setCalledOperand()

void SVF::SVFCallInst::setCalledOperand ( const SVFLLVMValue v)
inlineprotected

Definition at line 447 of file SVFLLVMValue.h.

448 {
449 calledVal = v;
450 }

Friends And Related Symbol Documentation

◆ LLVMModuleSet

Definition at line 433 of file SVFLLVMValue.h.

◆ SVFIRBuilder

Definition at line 434 of file SVFLLVMValue.h.

◆ SVFIRReader

friend class SVFIRReader
friend

Definition at line 432 of file SVFLLVMValue.h.

◆ SVFIRWriter

friend class SVFIRWriter
friend

Definition at line 431 of file SVFLLVMValue.h.

Member Data Documentation

◆ args

std::vector<const SVFLLVMValue*> SVF::SVFCallInst::args
private

Definition at line 437 of file SVFLLVMValue.h.

◆ calledVal

const SVFLLVMValue* SVF::SVFCallInst::calledVal
private

Definition at line 439 of file SVFLLVMValue.h.

◆ varArg

bool SVF::SVFCallInst::varArg
private

Definition at line 438 of file SVFLLVMValue.h.


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