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

#include <SVFLLVMValue.h>

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

Public Member Functions

 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)
 

Private Attributes

const SVFBasicBlockbb
 
bool terminator
 The BasicBlock where this Instruction resides.
 
bool ret
 return true if this is a terminator instruction
 

Friends

class SVFIRWriter
 
class SVFIRReader
 

Additional Inherited Members

- Public Types inherited from SVF::SVFLLVMValue
enum  SVFValKind { SVFVal , SVFFunc , SVFInst }
 
typedef s64_t GNodeK
 
- Protected Member Functions inherited from SVF::SVFLLVMValue
 SVFLLVMValue (const SVFType *ty, SVFValKind k=SVFVal)
 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 381 of file SVFLLVMValue.h.

Constructor & Destructor Documentation

◆ SVFInstruction() [1/2]

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

Constructor without name, set name with setName()

Definition at line 53 of file SVFLLVMValue.cpp.

55 : SVFLLVMValue(ty, k), bb(b), terminator(tm), ret(isRet)
56{
57}
const cJSON *const b
Definition cJSON.h:255
bool ret
return true if this is a terminator instruction
bool terminator
The BasicBlock where this Instruction resides.
const SVFBasicBlock * bb
SVFLLVMValue()=delete
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

◆ SVFInstruction() [2/2]

SVF::SVFInstruction::SVFInstruction ( void  )
delete

Member Function Documentation

◆ classof()

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

Definition at line 397 of file SVFLLVMValue.h.

398 {
399 return node->getKind() == SVFInst;
400 }

◆ getFunction()

const FunObjVar * SVF::SVFInstruction::getFunction ( ) const
inline

Definition at line 407 of file SVFLLVMValue.h.

408 {
409 return bb->getParent();
410 }
const FunObjVar * getParent() const

◆ getParent()

const SVFBasicBlock * SVF::SVFInstruction::getParent ( ) const
inline

Definition at line 402 of file SVFLLVMValue.h.

403 {
404 return bb;
405 }

◆ isRetInst()

bool SVF::SVFInstruction::isRetInst ( ) const
inline

Definition at line 412 of file SVFLLVMValue.h.

413 {
414 return ret;
415 }

Friends And Related Symbol Documentation

◆ SVFIRReader

friend class SVFIRReader
friend

Definition at line 384 of file SVFLLVMValue.h.

◆ SVFIRWriter

friend class SVFIRWriter
friend

Definition at line 383 of file SVFLLVMValue.h.

Member Data Documentation

◆ bb

const SVFBasicBlock* SVF::SVFInstruction::bb
private

Definition at line 387 of file SVFLLVMValue.h.

◆ ret

bool SVF::SVFInstruction::ret
private

return true if this is a terminator instruction

Definition at line 389 of file SVFLLVMValue.h.

◆ terminator

bool SVF::SVFInstruction::terminator
private

The BasicBlock where this Instruction resides.

Definition at line 388 of file SVFLLVMValue.h.


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