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

#include <SVFLLVMValue.h>

Inheritance diagram for SVF::SVFGlobalValue:
SVF::SVFConstant SVF::SVFLLVMValue

Public Member Functions

 SVFGlobalValue (const SVFType *ty)
 
 SVFGlobalValue (std::string &&name, const SVFType *ty)
 
 SVFGlobalValue ()=delete
 
const SVFLLVMValuegetDefGlobalForMultipleModule () const
 
- 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
 
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 SVFConstant *node)
 
- Static Public Member Functions inherited from SVF::SVFConstant
static bool classof (const SVFLLVMValue *node)
 

Protected Member Functions

void setDefGlobalForMultipleModule (const SVFLLVMValue *defg)
 the definition of a function across multiple modules
 
- Protected Member Functions inherited from SVF::SVFLLVMValue
 SVFLLVMValue (const SVFType *ty, SVFValKind k)
 Constructor without name.
 
void setConstDataOrAggData ()
 
void setPtrInUncalledFunction ()
 

Private Attributes

const SVFLLVMValuerealDefGlobal
 

Friends

class SVFIRWriter
 
class SVFIRReader
 
class LLVMModuleSet
 

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

Constructor & Destructor Documentation

◆ SVFGlobalValue() [1/3]

SVF::SVFGlobalValue::SVFGlobalValue ( const SVFType ty)
inline

Definition at line 538 of file SVFLLVMValue.h.

539 {
540 }
SVFConstant()=delete
const SVFLLVMValue * realDefGlobal
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

◆ SVFGlobalValue() [2/3]

SVF::SVFGlobalValue::SVFGlobalValue ( std::string &&  name,
const SVFType ty 
)
inline

Definition at line 541 of file SVFLLVMValue.h.

542 {
543 setName(std::move(name));
544 }
void setName(std::string &&n)
std::string name
Short name of value for printing & debugging.

◆ SVFGlobalValue() [3/3]

SVF::SVFGlobalValue::SVFGlobalValue ( )
delete

Member Function Documentation

◆ classof() [1/2]

static bool SVF::SVFGlobalValue::classof ( const SVFConstant node)
inlinestatic

Definition at line 557 of file SVFLLVMValue.h.

558 {
559 return node->getKind() == SVFGlob;
560 }

◆ classof() [2/2]

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

Definition at line 553 of file SVFLLVMValue.h.

554 {
555 return node->getKind() == SVFGlob;
556 }

◆ getDefGlobalForMultipleModule()

const SVFLLVMValue * SVF::SVFGlobalValue::getDefGlobalForMultipleModule ( ) const
inline

Definition at line 547 of file SVFLLVMValue.h.

548 {
549 if(realDefGlobal==nullptr)
550 return this;
551 return realDefGlobal;
552 }

◆ setDefGlobalForMultipleModule()

void SVF::SVFGlobalValue::setDefGlobalForMultipleModule ( const SVFLLVMValue defg)
inlineprotected

the definition of a function across multiple modules

Definition at line 532 of file SVFLLVMValue.h.

533 {
535 }

Friends And Related Symbol Documentation

◆ LLVMModuleSet

Definition at line 526 of file SVFLLVMValue.h.

◆ SVFIRReader

friend class SVFIRReader
friend

Definition at line 525 of file SVFLLVMValue.h.

◆ SVFIRWriter

friend class SVFIRWriter
friend

Definition at line 524 of file SVFLLVMValue.h.

Member Data Documentation

◆ realDefGlobal

const SVFLLVMValue* SVF::SVFGlobalValue::realDefGlobal
private

Definition at line 529 of file SVFLLVMValue.h.


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