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

#include <DCHG.h>

Inheritance diagram for SVF::DCHNode:
SVF::GenericNode< DCHNode, DCHEdge > SVF::SVFValue

Public Types

enum  CLASSATTR { PURE_ABSTRACT = 0x1 , MULTI_INHERITANCE = 0x2 , TEMPLATE = 0x04 , SCALAR = 0x08 }
 
typedef std::vector< const Function * > FuncVector
 
- Public Types inherited from SVF::GenericNode< DCHNode, DCHEdge >
typedef DCHNode NodeType
 
typedef DCHEdge EdgeType
 
typedef OrderedSet< EdgeType *, typename EdgeType::equalGEdgeGEdgeSetTy
 Edge kind.
 
typedef GEdgeSetTy::iterator iterator
 
typedef GEdgeSetTy::const_iterator const_iterator
 
- Public Types inherited from SVF::SVFValue
enum  GNodeK {
  IntraBlock , GlobalBlock , FunEntryBlock , FunExitBlock ,
  FunCallBlock , FunRetBlock , ValNode , ArgValNode ,
  FunValNode , GepValNode , RetValNode , VarargValNode ,
  GlobalValNode , ConstAggValNode , ConstDataValNode , BlackHoleValNode ,
  ConstFPValNode , ConstIntValNode , ConstNullptrValNode , DummyValNode ,
  ObjNode , GepObjNode , BaseObjNode , FunObjNode ,
  HeapObjNode , StackObjNode , GlobalObjNode , ConstAggObjNode ,
  ConstDataObjNode , ConstFPObjNode , ConstIntObjNode , ConstNullptrObjNode ,
  DummyObjNode , Cmp , BinaryOp , UnaryOp ,
  Branch , DummyVProp , NPtr , FRet ,
  ARet , AParm , FParm , Addr ,
  Copy , Gep , Store , Load ,
  TPhi , TIntraPhi , TInterPhi , FPIN ,
  FPOUT , APIN , APOUT , MPhi ,
  MIntraPhi , MInterPhi , CallNodeKd , CDNodeKd ,
  CFLNodeKd , CHNodeKd , ConstraintNodeKd , TCTNodeKd ,
  DCHNodeKd , BasicBlockKd , OtherKd
}
 

Public Member Functions

 DCHNode (const DIType *diType, NodeID i=0, GNodeK k=GNodeK::DCHNodeKd)
 
 ~DCHNode ()
 
const DITypegetDIType (void) const
 
virtual const std::string & getName () const
 
void setFlag (CLASSATTR mask)
 Flags.
 
bool hasFlag (CLASSATTR mask) const
 
void setPureAbstract ()
 Attribute.
 
void setMultiInheritance ()
 
void setTemplate ()
 
void setScalar ()
 
bool isPureAbstract () const
 
bool isMultiInheritance () const
 
bool isTemplate () const
 
bool isScalar () const
 
void addTypedef (const DIDerivedType *diTypedef)
 
const Set< const DIDerivedType * > & getTypedefs (void) const
 
void setVTable (const GlobalObjVar *vtbl)
 
const GlobalObjVargetVTable () const
 
const std::vector< std::vector< const Function * > > & getVfnVectors (void) const
 Returns the vector of virtual function vectors.
 
std::vector< const Function * > & getVfnVector (unsigned n)
 Return the nth virtual function vector in the vtable.
 
- Public Member Functions inherited from SVF::GenericNode< DCHNode, DCHEdge >
 GenericNode (NodeID i, GNodeK k, const SVFType *svfType=nullptr)
 Constructor.
 
virtual ~GenericNode ()
 Destructor.
 
bool hasIncomingEdge () const
 Has incoming/outgoing edge set.
 
EdgeTypehasIncomingEdge (EdgeType *edge) const
 Find incoming and outgoing edges.
 
bool hasOutgoingEdge () const
 
EdgeTypehasOutgoingEdge (EdgeType *edge) const
 
iterator OutEdgeBegin ()
 iterators
 
const_iterator OutEdgeBegin () const
 
iterator OutEdgeEnd ()
 
const_iterator OutEdgeEnd () const
 
iterator InEdgeBegin ()
 
const_iterator InEdgeBegin () const
 
iterator InEdgeEnd ()
 
const_iterator InEdgeEnd () const
 
virtual iterator directOutEdgeBegin ()
 Iterators used for SCC detection, overwrite it in child class if necessary.
 
virtual const_iterator directOutEdgeBegin () const
 
virtual iterator directOutEdgeEnd ()
 
virtual const_iterator directOutEdgeEnd () const
 
virtual iterator directInEdgeBegin ()
 
virtual const_iterator directInEdgeBegin () const
 
virtual iterator directInEdgeEnd ()
 
virtual const_iterator directInEdgeEnd () const
 
bool addIncomingEdge (EdgeType *inEdge)
 Add incoming and outgoing edges.
 
bool addOutgoingEdge (EdgeType *outEdge)
 
const GEdgeSetTygetOutEdges () const
 
const GEdgeSetTygetInEdges () const
 
u32_t removeIncomingEdge (EdgeType *edge)
 
u32_t removeOutgoingEdge (EdgeType *edge)
 
- Public Member Functions inherited from SVF::SVFValue
 SVFValue (NodeID i, GNodeK k, const SVFType *ty=nullptr)
 
NodeID getId () const
 Get ID.
 
GNodeK getNodeKind () const
 Get node kind.
 
virtual const SVFTypegetType () const
 
virtual void setName (const std::string &nameInfo)
 
virtual void setName (std::string &&nameInfo)
 
virtual void setSourceLoc (const std::string &sourceCodeInfo)
 
virtual const std::string getSourceLoc () const
 
const std::string valueOnlyToString () const
 

Private Attributes

const DITypediType
 Type of this node.
 
Set< const DIDerivedType * > typedefs
 Typedefs which map to this type.
 
const GlobalObjVarvtable
 
std::string typeName
 
size_t flags
 
std::vector< const Function * > primaryVTable
 The virtual functions which this class actually defines/overrides.
 
std::vector< std::vector< const Function * > > vfnVectors
 

Additional Inherited Members

- Static Public Member Functions inherited from SVF::GenericNode< DCHNode, DCHEdge >
static bool classof (const GenericNode< DCHNode, DCHEdge > *)
 
static bool classof (const SVFValue *)
 
- Static Protected Member Functions inherited from SVF::SVFValue
static bool isICFGNodeKinds (GNodeK n)
 Helper functions to check node kinds.
 
static bool isInterICFGNodeKind (GNodeK n)
 
static bool isSVFVarKind (GNodeK n)
 
static bool isValVarKinds (GNodeK n)
 
static bool isConstantDataValVar (GNodeK n)
 
static bool isObjVarKinds (GNodeK n)
 
static bool isBaseObjVarKinds (GNodeK n)
 
static bool isConstantDataObjVarKinds (GNodeK n)
 
static bool isVFGNodeKinds (GNodeK n)
 
static bool isArgumentVFGNodeKinds (GNodeK n)
 
static bool isStmtVFGNodeKinds (GNodeK n)
 
static bool isPHIVFGNodeKinds (GNodeK n)
 
static bool isMRSVFGNodeKinds (GNodeK n)
 
static bool isMSSAPHISVFGNodeKinds (GNodeK n)
 
- Protected Attributes inherited from SVF::SVFValue
NodeID id
 Node ID.
 
GNodeK nodeKind
 Node kind.
 
const SVFTypetype
 SVF type.
 
std::string name
 
std::string sourceLoc
 Source code information of this value.
 

Detailed Description

Definition at line 61 of file DCHG.h.

Member Typedef Documentation

◆ FuncVector

Definition at line 72 of file DCHG.h.

Member Enumeration Documentation

◆ CLASSATTR

Enumerator
PURE_ABSTRACT 
MULTI_INHERITANCE 
TEMPLATE 
SCALAR 

Definition at line 64 of file DCHG.h.

65 {
66 PURE_ABSTRACT = 0x1, // pure virtual abstract class
67 MULTI_INHERITANCE = 0x2, // multi inheritance class
68 TEMPLATE = 0x04, // template class
69 SCALAR = 0x08 // non-class scalar type
70 } CLASSATTR;
@ PURE_ABSTRACT
Definition DCHG.h:66
@ MULTI_INHERITANCE
Definition DCHG.h:67
@ TEMPLATE
Definition DCHG.h:68

Constructor & Destructor Documentation

◆ DCHNode()

SVF::DCHNode::DCHNode ( const DIType diType,
NodeID  i = 0,
GNodeK  k = GNodeK::DCHNodeKd 
)
inline

Definition at line 74 of file DCHG.h.

75 : GenericNode<DCHNode, DCHEdge>(i, k), vtable(nullptr), flags(0)
76 {
77 this->diType = diType;
78 if (diType == nullptr)
79 {
80 typeName = "null-void";
81 }
82 else if (diType->getRawName() != nullptr)
83 {
84 typeName = diType->getName().str();
85 }
86 else
87 {
88 typeName = "unnamed!";
89 }
90 }
const DIType * diType
Type of this node.
Definition DCHG.h:191
size_t flags
Definition DCHG.h:196
std::string typeName
Definition DCHG.h:195
const GlobalObjVar * vtable
Definition DCHG.h:194
virtual const std::string & getName() const
Definition SVFValue.h:184
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

◆ ~DCHNode()

SVF::DCHNode::~DCHNode ( )
inline

Definition at line 92 of file DCHG.h.

92{ }

Member Function Documentation

◆ addTypedef()

void SVF::DCHNode::addTypedef ( const DIDerivedType diTypedef)
inline

Definition at line 152 of file DCHG.h.

153 {
154 typedefs.insert(diTypedef);
155 }
Set< const DIDerivedType * > typedefs
Typedefs which map to this type.
Definition DCHG.h:193

◆ getDIType()

const DIType * SVF::DCHNode::getDIType ( void  ) const
inline

Definition at line 94 of file DCHG.h.

95 {
96 return diType;
97 }

◆ getName()

virtual const std::string & SVF::DCHNode::getName ( ) const
inlinevirtual

Reimplemented from SVF::SVFValue.

Definition at line 99 of file DCHG.h.

100 {
101 return typeName;
102 }

◆ getTypedefs()

const Set< const DIDerivedType * > & SVF::DCHNode::getTypedefs ( void  ) const
inline

Definition at line 157 of file DCHG.h.

158 {
159 return typedefs;
160 }

◆ getVfnVector()

std::vector< const Function * > & SVF::DCHNode::getVfnVector ( unsigned  n)
inline

Return the nth virtual function vector in the vtable.

Definition at line 179 of file DCHG.h.

180 {
181 if (vfnVectors.size() < n + 1)
182 {
183 vfnVectors.resize(n + 1);
184 }
185
186 return vfnVectors[n];
187 }
cJSON * n
Definition cJSON.cpp:2558
std::vector< std::vector< const Function * > > vfnVectors
Definition DCHG.h:202

◆ getVfnVectors()

const std::vector< std::vector< const Function * > > & SVF::DCHNode::getVfnVectors ( void  ) const
inline

Returns the vector of virtual function vectors.

Definition at line 173 of file DCHG.h.

174 {
175 return vfnVectors;
176 }

◆ getVTable()

const GlobalObjVar * SVF::DCHNode::getVTable ( ) const
inline

Definition at line 167 of file DCHG.h.

168 {
169 return vtable;
170 }

◆ hasFlag()

bool SVF::DCHNode::hasFlag ( CLASSATTR  mask) const
inline

Definition at line 110 of file DCHG.h.

111 {
112 return (flags & mask) == mask;
113 }

◆ isMultiInheritance()

bool SVF::DCHNode::isMultiInheritance ( ) const
inline

Definition at line 138 of file DCHG.h.

139 {
141 }
bool hasFlag(CLASSATTR mask) const
Definition DCHG.h:110

◆ isPureAbstract()

bool SVF::DCHNode::isPureAbstract ( ) const
inline

Definition at line 134 of file DCHG.h.

135 {
136 return hasFlag(PURE_ABSTRACT);
137 }

◆ isScalar()

bool SVF::DCHNode::isScalar ( ) const
inline

Definition at line 146 of file DCHG.h.

147 {
148 return hasFlag(SCALAR);
149 }

◆ isTemplate()

bool SVF::DCHNode::isTemplate ( ) const
inline

Definition at line 142 of file DCHG.h.

143 {
144 return hasFlag(TEMPLATE);
145 }

◆ setFlag()

void SVF::DCHNode::setFlag ( CLASSATTR  mask)
inline

Flags.

Definition at line 106 of file DCHG.h.

107 {
108 flags |= mask;
109 }

◆ setMultiInheritance()

void SVF::DCHNode::setMultiInheritance ( )
inline

Definition at line 122 of file DCHG.h.

123 {
125 }
void setFlag(CLASSATTR mask)
Flags.
Definition DCHG.h:106

◆ setPureAbstract()

void SVF::DCHNode::setPureAbstract ( )
inline

Attribute.

Definition at line 118 of file DCHG.h.

119 {
121 }

◆ setScalar()

void SVF::DCHNode::setScalar ( )
inline

Definition at line 130 of file DCHG.h.

131 {
133 }

◆ setTemplate()

void SVF::DCHNode::setTemplate ( )
inline

Definition at line 126 of file DCHG.h.

127 {
129 }

◆ setVTable()

void SVF::DCHNode::setVTable ( const GlobalObjVar vtbl)
inline

Definition at line 162 of file DCHG.h.

163 {
164 vtable = vtbl;
165 }

Member Data Documentation

◆ diType

const DIType* SVF::DCHNode::diType
private

Type of this node.

Definition at line 191 of file DCHG.h.

◆ flags

size_t SVF::DCHNode::flags
private

Definition at line 196 of file DCHG.h.

◆ primaryVTable

std::vector<const Function* > SVF::DCHNode::primaryVTable
private

The virtual functions which this class actually defines/overrides.

Definition at line 198 of file DCHG.h.

◆ typedefs

Set<const DIDerivedType *> SVF::DCHNode::typedefs
private

Typedefs which map to this type.

Definition at line 193 of file DCHG.h.

◆ typeName

std::string SVF::DCHNode::typeName
private

Definition at line 195 of file DCHG.h.

◆ vfnVectors

std::vector<std::vector<const Function*> > SVF::DCHNode::vfnVectors
private

If a vtable is split into more than one vfn vector for multiple inheritance, 0 would be the primary base + this classes virtual functions, 1 would be the second parent, 2 would be third parent, etc.

Definition at line 202 of file DCHG.h.

◆ vtable

const GlobalObjVar* SVF::DCHNode::vtable
private

Definition at line 194 of file DCHG.h.


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