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

#include <SVFLLVMValue.h>

Inheritance diagram for SVF::SVFConstantInt:
SVF::SVFConstantData SVF::SVFConstant SVF::SVFLLVMValue

Public Member Functions

 SVFConstantInt (const SVFType *ty, u64_t z, s64_t s)
 
 SVFConstantInt ()=delete
 
u64_t getZExtValue () const
 
s64_t getSExtValue () const
 
- Public Member Functions inherited from SVF::SVFConstantData
 SVFConstantData (const SVFType *ty, SVFValKind k=SVFConstData)
 
 SVFConstantData ()=delete
 
- Public Member Functions inherited from SVF::SVFConstant
 SVFConstant (const SVFType *ty, SVFValKind k=SVFConst)
 
 SVFConstant ()=delete
 
- 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
 
bool isblackHole () const
 
bool isNullPtr () 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 SVFConstantData *node)
 
- Static Public Member Functions inherited from SVF::SVFConstantData
static bool classof (const SVFLLVMValue *node)
 
static bool classof (const SVFConstantData *node)
 
- Static Public Member Functions inherited from SVF::SVFConstant
static bool classof (const SVFLLVMValue *node)
 

Private Attributes

u64_t zval
 
s64_t sval
 

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 , SVFConstInt , SVFConstFP ,
  SVFNullPtr , SVFBlackHole , 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 648 of file SVFLLVMValue.h.

Constructor & Destructor Documentation

◆ SVFConstantInt() [1/2]

SVF::SVFConstantInt::SVFConstantInt ( const SVFType ty,
u64_t  z,
s64_t  s 
)
inline

Definition at line 656 of file SVFLLVMValue.h.

◆ SVFConstantInt() [2/2]

SVF::SVFConstantInt::SVFConstantInt ( )
delete

Member Function Documentation

◆ classof() [1/2]

static bool SVF::SVFConstantInt::classof ( const SVFConstantData node)
inlinestatic

Definition at line 666 of file SVFLLVMValue.h.

667 {
668 return node->getKind() == SVFConstInt;
669 }

◆ classof() [2/2]

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

Definition at line 662 of file SVFLLVMValue.h.

663 {
664 return node->getKind() == SVFConstInt;
665 }

◆ getSExtValue()

s64_t SVF::SVFConstantInt::getSExtValue ( ) const
inline

Definition at line 676 of file SVFLLVMValue.h.

677 {
678 return sval;
679 }

◆ getZExtValue()

u64_t SVF::SVFConstantInt::getZExtValue ( ) const
inline

Definition at line 671 of file SVFLLVMValue.h.

672 {
673 return zval;
674 }

Friends And Related Symbol Documentation

◆ SVFIRReader

friend class SVFIRReader
friend

Definition at line 651 of file SVFLLVMValue.h.

◆ SVFIRWriter

friend class SVFIRWriter
friend

Definition at line 650 of file SVFLLVMValue.h.

Member Data Documentation

◆ sval

s64_t SVF::SVFConstantInt::sval
private

Definition at line 654 of file SVFLLVMValue.h.

◆ zval

u64_t SVF::SVFConstantInt::zval
private

Definition at line 653 of file SVFLLVMValue.h.


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