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::SVFStructType Class Reference

#include <SVFType.h>

Inheritance diagram for SVF::SVFStructType:
SVF::SVFType

Public Member Functions

 SVFStructType (u32_t i, std::vector< const SVFType * > &f, u32_t byteSize=1)
 
void print (std::ostream &os) const override
 
const std::string & getName ()
 
void setName (const std::string &structName)
 
void setName (std::string &&structName)
 
const std::vector< const SVFType * > & getFieldTypes () const
 
- Public Member Functions inherited from SVF::SVFType
 SVFType (void)=delete
 
virtual ~SVFType ()
 
GNodeK getKind () const
 
std::string toString () const
 
u32_t getId () const
 
void setTypeInfo (StInfo *ti)
 
StInfogetTypeInfo ()
 
const StInfogetTypeInfo () const
 
u32_t getByteSize () const
 
bool isPointerTy () const
 
bool isArrayTy () const
 
bool isStructTy () const
 
bool isSingleValueType () const
 

Static Public Member Functions

static bool classof (const SVFType *node)
 
- Static Public Member Functions inherited from SVF::SVFType
static SVFTypegetSVFPtrType ()
 
static SVFTypegetSVFInt8Type ()
 

Protected Member Functions

const std::string & getName () const
 
void addFieldsType (const SVFType *type)
 
- Protected Member Functions inherited from SVF::SVFType
 SVFType (bool svt, SVFTyKind k, u32_t i=0, u32_t Sz=1)
 

Private Attributes

std::string name
 Field for printing & debugging.
 
std::vector< const SVFType * > fields
 

Friends

class GraphDBClient
 

Additional Inherited Members

- Public Types inherited from SVF::SVFType
enum  SVFTyKind {
  SVFTy , SVFPointerTy , SVFIntegerTy , SVFFunctionTy ,
  SVFStructTy , SVFArrayTy , SVFOtherTy
}
 
typedef s64_t GNodeK
 
- Static Protected Member Functions inherited from SVF::SVFType
static void setSVFPtrType (SVFType *ptrTy)
 set svfptrty and svfi8ty when initializing SVFType from db query results
 
static void setSVFInt8Type (SVFType *i8Ty)
 

Detailed Description

Definition at line 421 of file SVFType.h.

Constructor & Destructor Documentation

◆ SVFStructType()

SVF::SVFStructType::SVFStructType ( u32_t  i,
std::vector< const SVFType * > &  f,
u32_t  byteSize = 1 
)
inline

Definition at line 443 of file SVFType.h.

443 :
445 {
446 }
std::vector< const SVFType * > fields
Definition SVFType.h:440
u32_t byteSize
LLVM Byte Size.
Definition SVFType.h:239
SVFType(void)=delete
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

Member Function Documentation

◆ addFieldsType()

void SVF::SVFStructType::addFieldsType ( const SVFType type)
inlineprotected

Definition at line 432 of file SVFType.h.

433 {
434 fields.push_back(type);
435 }
newitem type
Definition cJSON.cpp:2739

◆ classof()

static bool SVF::SVFStructType::classof ( const SVFType node)
inlinestatic

Definition at line 448 of file SVFType.h.

449 {
450 return node->getKind() == SVFStructTy;
451 }

◆ getFieldTypes()

const std::vector< const SVFType * > & SVF::SVFStructType::getFieldTypes ( ) const
inline

Definition at line 469 of file SVFType.h.

470 {
471 return fields;
472 }

◆ getName() [1/2]

const std::string & SVF::SVFStructType::getName ( )
inline

Definition at line 455 of file SVFType.h.

456 {
457 return name;
458 }
std::string name
Field for printing & debugging.
Definition SVFType.h:439

◆ getName() [2/2]

const std::string & SVF::SVFStructType::getName ( ) const
inlineprotected

Definition at line 427 of file SVFType.h.

428 {
429 return name;
430 }

◆ print()

void SVF::SVFStructType::print ( std::ostream &  os) const
overridevirtual

Implements SVF::SVFType.

Definition at line 65 of file SVFType.cpp.

66{
67 os << "S." << name << " {";
68
69 // Print fields
70 for (size_t i = 0; i < fields.size(); ++i)
71 {
72 os << *fields[i];
73 // Add comma after all fields except the last one
74 if (i != fields.size() - 1)
75 {
76 os << ", ";
77 }
78 }
79 os << "}";
80}

◆ setName() [1/2]

void SVF::SVFStructType::setName ( const std::string &  structName)
inline

Definition at line 460 of file SVFType.h.

461 {
463 }
const std::string structName
Definition CppUtil.cpp:56

◆ setName() [2/2]

void SVF::SVFStructType::setName ( std::string &&  structName)
inline

Definition at line 464 of file SVFType.h.

465 {
466 name = std::move(structName);
467 }

Friends And Related Symbol Documentation

◆ GraphDBClient

friend class GraphDBClient
friend

Definition at line 423 of file SVFType.h.

Member Data Documentation

◆ fields

std::vector<const SVFType*> SVF::SVFStructType::fields
private

Definition at line 440 of file SVFType.h.

◆ name

std::string SVF::SVFStructType::name
private

Field for printing & debugging.

Definition at line 439 of file SVFType.h.


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