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

#include <SVFType.h>

Inheritance diagram for SVF::SVFFunctionType:
SVF::SVFType

Public Member Functions

 SVFFunctionType (const SVFType *rt, const std::vector< const SVFType * > &p, bool isvararg)
 
const SVFTypegetReturnType () const
 
const std::vector< const SVFType * > & getParamTypes () const
 
bool isVarArg () const
 
void print (std::ostream &os) const override
 
- Public Member Functions inherited from SVF::SVFType
 SVFType (void)=delete
 
virtual ~SVFType ()
 
GNodeK getKind () const
 
std::string toString () 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 ()
 

Private Attributes

const SVFTyperetTy
 
std::vector< const SVFType * > params
 
bool varArg
 

Friends

class SVFIRWriter
 
class SVFIRReader
 

Additional Inherited Members

- Public Types inherited from SVF::SVFType
enum  SVFTyKind {
  SVFTy , SVFPointerTy , SVFIntegerTy , SVFFunctionTy ,
  SVFStructTy , SVFArrayTy , SVFOtherTy
}
 
typedef s64_t GNodeK
 
- Protected Member Functions inherited from SVF::SVFType
 SVFType (bool svt, SVFTyKind k, u32_t Sz=1)
 

Detailed Description

Definition at line 319 of file SVFType.h.

Constructor & Destructor Documentation

◆ SVFFunctionType()

SVF::SVFFunctionType::SVFFunctionType ( const SVFType rt,
const std::vector< const SVFType * > &  p,
bool  isvararg 
)
inline

Definition at line 330 of file SVFType.h.

331 : SVFType(false, SVFFunctionTy, 1), retTy(rt), params(p), varArg(isvararg)
332 {
333 }
cJSON * p
Definition cJSON.cpp:2559
const SVFType * retTy
Definition SVFType.h:325
std::vector< const SVFType * > params
Definition SVFType.h:326
SVFType(void)=delete
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

Member Function Documentation

◆ classof()

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

Definition at line 335 of file SVFType.h.

336 {
337 return node->getKind() == SVFFunctionTy;
338 }

◆ getParamTypes()

const std::vector< const SVFType * > & SVF::SVFFunctionType::getParamTypes ( ) const
inline

Definition at line 344 of file SVFType.h.

345 {
346 return params;
347 }

◆ getReturnType()

const SVFType * SVF::SVFFunctionType::getReturnType ( ) const
inline

Definition at line 339 of file SVFType.h.

340 {
341 return retTy;
342 }

◆ isVarArg()

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

Definition at line 350 of file SVFType.h.

351 {
352 return varArg;
353 }

◆ print()

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

Implements SVF::SVFType.

Definition at line 37 of file SVFType.cpp.

38{
39 os << *getReturnType() << "()";
40}
const SVFType * getReturnType() const
Definition SVFType.h:339

Friends And Related Symbol Documentation

◆ SVFIRReader

friend class SVFIRReader
friend

Definition at line 322 of file SVFType.h.

◆ SVFIRWriter

friend class SVFIRWriter
friend

Definition at line 321 of file SVFType.h.

Member Data Documentation

◆ params

std::vector<const SVFType*> SVF::SVFFunctionType::params
private

Definition at line 326 of file SVFType.h.

◆ retTy

const SVFType* SVF::SVFFunctionType::retTy
private

Definition at line 325 of file SVFType.h.

◆ varArg

bool SVF::SVFFunctionType::varArg
private

Definition at line 327 of file SVFType.h.


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