Static Value-Flow Analysis
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Static Public Member Functions | Private Attributes | Friends | List of all members
SVF::GenericNode< NodeTy, EdgeTy > Class Template Reference

#include <GenericGraph.h>

Inheritance diagram for SVF::GenericNode< NodeTy, EdgeTy >:
SVF::SVFValue SVF::CDGNode SVF::CHNode SVF::CallGraphNode SVF::ICFGNode SVF::SVFBasicBlock SVF::SVFVar SVF::TCTNode SVF::VFGNode

Public Types

typedef NodeTy NodeType
 
typedef EdgeTy EdgeType
 
typedef OrderedSet< EdgeType *, typename EdgeType::equalGEdge > GEdgeSetTy
 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

 GenericNode (NodeID i, GNodeK k, const SVFType *svfType=nullptr)
 Constructor.
 
virtual ~GenericNode ()
 Destructor.
 
bool hasIncomingEdge () const
 Has incoming/outgoing edge set.
 
bool hasOutgoingEdge () const
 
iterator OutEdgeBegin ()
 iterators
 
iterator OutEdgeEnd ()
 
iterator InEdgeBegin ()
 
iterator InEdgeEnd ()
 
const_iterator OutEdgeBegin () const
 
const_iterator OutEdgeEnd () const
 
const_iterator InEdgeBegin () const
 
const_iterator InEdgeEnd () const
 
virtual iterator directOutEdgeBegin ()
 Iterators used for SCC detection, overwrite it in child class if necessary.
 
virtual iterator directOutEdgeEnd ()
 
virtual iterator directInEdgeBegin ()
 
virtual iterator directInEdgeEnd ()
 
virtual const_iterator directOutEdgeBegin () const
 
virtual const_iterator directOutEdgeEnd () const
 
virtual const_iterator directInEdgeBegin () const
 
virtual const_iterator directInEdgeEnd () const
 
bool addIncomingEdge (EdgeType *inEdge)
 Add incoming and outgoing edges.
 
bool addOutgoingEdge (EdgeType *outEdge)
 
EdgeTypehasIncomingEdge (EdgeType *edge) const
 Find incoming and outgoing edges.
 
EdgeTypehasOutgoingEdge (EdgeType *edge) const
 
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 const std::string & getName () const
 
virtual void setSourceLoc (const std::string &sourceCodeInfo)
 
virtual const std::string getSourceLoc () const
 
const std::string valueOnlyToString () const
 

Static Public Member Functions

static bool classof (const GenericNode< NodeTy, EdgeTy > *)
 
static bool classof (const SVFValue *)
 

Private Attributes

GEdgeSetTy InEdges
 all incoming edge of this node
 
GEdgeSetTy OutEdges
 all outgoing edge of this node
 

Friends

class SVFIRWriter
 
class SVFIRReader
 

Additional Inherited Members

- 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

template<class NodeTy, class EdgeTy>
class SVF::GenericNode< NodeTy, EdgeTy >

Generic node on the graph as base class

Definition at line 143 of file GenericGraph.h.

Member Typedef Documentation

◆ const_iterator

template<class NodeTy , class EdgeTy >
typedef GEdgeSetTy::const_iterator SVF::GenericNode< NodeTy, EdgeTy >::const_iterator

Definition at line 156 of file GenericGraph.h.

◆ EdgeType

Definition at line 150 of file GenericGraph.h.

◆ GEdgeSetTy

template<class NodeTy , class EdgeTy >
typedef OrderedSet<EdgeType*, typename EdgeType::equalGEdge> SVF::GenericNode< NodeTy, EdgeTy >::GEdgeSetTy

Edge kind.

Definition at line 152 of file GenericGraph.h.

◆ iterator

template<class NodeTy , class EdgeTy >
typedef GEdgeSetTy::iterator SVF::GenericNode< NodeTy, EdgeTy >::iterator

Edge iterator

Definition at line 155 of file GenericGraph.h.

◆ NodeType

Definition at line 149 of file GenericGraph.h.

Constructor & Destructor Documentation

◆ GenericNode()

template<class NodeTy , class EdgeTy >
SVF::GenericNode< NodeTy, EdgeTy >::GenericNode ( NodeID  i,
GNodeK  k,
const SVFType svfType = nullptr 
)
inline

Constructor.

Definition at line 166 of file GenericGraph.h.

166 : SVFValue(i, k, svfType)
167 {
168
169 }
SVFValue(NodeID i, GNodeK k, const SVFType *ty=nullptr)
Definition SVFValue.h:152
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

◆ ~GenericNode()

template<class NodeTy , class EdgeTy >
virtual SVF::GenericNode< NodeTy, EdgeTy >::~GenericNode ( )
inlinevirtual

Destructor.

Definition at line 172 of file GenericGraph.h.

173 {
174 for (auto * edge : OutEdges)
175 delete edge;
176 }
GEdgeSetTy OutEdges
all outgoing edge of this node

Member Function Documentation

◆ addIncomingEdge()

template<class NodeTy , class EdgeTy >
bool SVF::GenericNode< NodeTy, EdgeTy >::addIncomingEdge ( EdgeType inEdge)
inline

Add incoming and outgoing edges.

Definition at line 277 of file GenericGraph.h.

278 {
279 return InEdges.insert(inEdge).second;
280 }
GEdgeSetTy InEdges
all incoming edge of this node

◆ addOutgoingEdge()

template<class NodeTy , class EdgeTy >
bool SVF::GenericNode< NodeTy, EdgeTy >::addOutgoingEdge ( EdgeType outEdge)
inline

Definition at line 281 of file GenericGraph.h.

282 {
283 return OutEdges.insert(outEdge).second;
284 }

◆ classof() [1/2]

template<class NodeTy , class EdgeTy >
static bool SVF::GenericNode< NodeTy, EdgeTy >::classof ( const GenericNode< NodeTy, EdgeTy > *  )
inlinestatic

Definition at line 325 of file GenericGraph.h.

326 {
327 return true;
328 }

◆ classof() [2/2]

template<class NodeTy , class EdgeTy >
static bool SVF::GenericNode< NodeTy, EdgeTy >::classof ( const SVFValue )
inlinestatic

Definition at line 330 of file GenericGraph.h.

331 {
332 return true;
333 }

◆ directInEdgeBegin() [1/2]

template<class NodeTy , class EdgeTy >
virtual iterator SVF::GenericNode< NodeTy, EdgeTy >::directInEdgeBegin ( )
inlinevirtual

Reimplemented in SVF::ConstraintNode.

Definition at line 248 of file GenericGraph.h.

249 {
250 return InEdges.begin();
251 }

◆ directInEdgeBegin() [2/2]

template<class NodeTy , class EdgeTy >
virtual const_iterator SVF::GenericNode< NodeTy, EdgeTy >::directInEdgeBegin ( ) const
inlinevirtual

Reimplemented in SVF::ConstraintNode.

Definition at line 265 of file GenericGraph.h.

266 {
267 return InEdges.begin();
268 }

◆ directInEdgeEnd() [1/2]

template<class NodeTy , class EdgeTy >
virtual iterator SVF::GenericNode< NodeTy, EdgeTy >::directInEdgeEnd ( )
inlinevirtual

Reimplemented in SVF::ConstraintNode.

Definition at line 252 of file GenericGraph.h.

253 {
254 return InEdges.end();
255 }

◆ directInEdgeEnd() [2/2]

template<class NodeTy , class EdgeTy >
virtual const_iterator SVF::GenericNode< NodeTy, EdgeTy >::directInEdgeEnd ( ) const
inlinevirtual

Reimplemented in SVF::ConstraintNode.

Definition at line 269 of file GenericGraph.h.

270 {
271 return InEdges.end();
272 }

◆ directOutEdgeBegin() [1/2]

template<class NodeTy , class EdgeTy >
virtual iterator SVF::GenericNode< NodeTy, EdgeTy >::directOutEdgeBegin ( )
inlinevirtual

Iterators used for SCC detection, overwrite it in child class if necessary.

Reimplemented in SVF::ConstraintNode.

Definition at line 240 of file GenericGraph.h.

241 {
242 return OutEdges.begin();
243 }

◆ directOutEdgeBegin() [2/2]

template<class NodeTy , class EdgeTy >
virtual const_iterator SVF::GenericNode< NodeTy, EdgeTy >::directOutEdgeBegin ( ) const
inlinevirtual

Reimplemented in SVF::ConstraintNode.

Definition at line 257 of file GenericGraph.h.

258 {
259 return OutEdges.begin();
260 }

◆ directOutEdgeEnd() [1/2]

template<class NodeTy , class EdgeTy >
virtual iterator SVF::GenericNode< NodeTy, EdgeTy >::directOutEdgeEnd ( )
inlinevirtual

Reimplemented in SVF::ConstraintNode.

Definition at line 244 of file GenericGraph.h.

245 {
246 return OutEdges.end();
247 }

◆ directOutEdgeEnd() [2/2]

template<class NodeTy , class EdgeTy >
virtual const_iterator SVF::GenericNode< NodeTy, EdgeTy >::directOutEdgeEnd ( ) const
inlinevirtual

Reimplemented in SVF::ConstraintNode.

Definition at line 261 of file GenericGraph.h.

262 {
263 return OutEdges.end();
264 }

◆ getInEdges()

template<class NodeTy , class EdgeTy >
const GEdgeSetTy & SVF::GenericNode< NodeTy, EdgeTy >::getInEdges ( ) const
inline

Definition at line 184 of file GenericGraph.h.

185 {
186 return InEdges;
187 }

◆ getOutEdges()

template<class NodeTy , class EdgeTy >
const GEdgeSetTy & SVF::GenericNode< NodeTy, EdgeTy >::getOutEdges ( ) const
inline

Get incoming/outgoing edge set

Definition at line 180 of file GenericGraph.h.

181 {
182 return OutEdges;
183 }

◆ hasIncomingEdge() [1/2]

template<class NodeTy , class EdgeTy >
bool SVF::GenericNode< NodeTy, EdgeTy >::hasIncomingEdge ( ) const
inline

Has incoming/outgoing edge set.

Definition at line 192 of file GenericGraph.h.

193 {
194 return (InEdges.empty() == false);
195 }

◆ hasIncomingEdge() [2/2]

template<class NodeTy , class EdgeTy >
EdgeType * SVF::GenericNode< NodeTy, EdgeTy >::hasIncomingEdge ( EdgeType edge) const
inline

Find incoming and outgoing edges.

Definition at line 307 of file GenericGraph.h.

308 {
310 if (it != InEdges.end())
311 return *it;
312 else
313 return nullptr;
314 }
GEdgeSetTy::const_iterator const_iterator

◆ hasOutgoingEdge() [1/2]

template<class NodeTy , class EdgeTy >
bool SVF::GenericNode< NodeTy, EdgeTy >::hasOutgoingEdge ( ) const
inline

Definition at line 196 of file GenericGraph.h.

197 {
198 return (OutEdges.empty() == false);
199 }

◆ hasOutgoingEdge() [2/2]

template<class NodeTy , class EdgeTy >
EdgeType * SVF::GenericNode< NodeTy, EdgeTy >::hasOutgoingEdge ( EdgeType edge) const
inline

Definition at line 315 of file GenericGraph.h.

316 {
318 if (it != OutEdges.end())
319 return *it;
320 else
321 return nullptr;
322 }

◆ InEdgeBegin() [1/2]

template<class NodeTy , class EdgeTy >
iterator SVF::GenericNode< NodeTy, EdgeTy >::InEdgeBegin ( )
inline

Definition at line 212 of file GenericGraph.h.

213 {
214 return InEdges.begin();
215 }

◆ InEdgeBegin() [2/2]

template<class NodeTy , class EdgeTy >
const_iterator SVF::GenericNode< NodeTy, EdgeTy >::InEdgeBegin ( ) const
inline

Definition at line 228 of file GenericGraph.h.

229 {
230 return InEdges.begin();
231 }

◆ InEdgeEnd() [1/2]

template<class NodeTy , class EdgeTy >
iterator SVF::GenericNode< NodeTy, EdgeTy >::InEdgeEnd ( )
inline

Definition at line 216 of file GenericGraph.h.

217 {
218 return InEdges.end();
219 }

◆ InEdgeEnd() [2/2]

template<class NodeTy , class EdgeTy >
const_iterator SVF::GenericNode< NodeTy, EdgeTy >::InEdgeEnd ( ) const
inline

Definition at line 232 of file GenericGraph.h.

233 {
234 return InEdges.end();
235 }

◆ OutEdgeBegin() [1/2]

template<class NodeTy , class EdgeTy >
iterator SVF::GenericNode< NodeTy, EdgeTy >::OutEdgeBegin ( )
inline

iterators

Definition at line 204 of file GenericGraph.h.

205 {
206 return OutEdges.begin();
207 }

◆ OutEdgeBegin() [2/2]

template<class NodeTy , class EdgeTy >
const_iterator SVF::GenericNode< NodeTy, EdgeTy >::OutEdgeBegin ( ) const
inline

Definition at line 220 of file GenericGraph.h.

221 {
222 return OutEdges.begin();
223 }

◆ OutEdgeEnd() [1/2]

template<class NodeTy , class EdgeTy >
iterator SVF::GenericNode< NodeTy, EdgeTy >::OutEdgeEnd ( )
inline

Definition at line 208 of file GenericGraph.h.

209 {
210 return OutEdges.end();
211 }

◆ OutEdgeEnd() [2/2]

template<class NodeTy , class EdgeTy >
const_iterator SVF::GenericNode< NodeTy, EdgeTy >::OutEdgeEnd ( ) const
inline

Definition at line 224 of file GenericGraph.h.

225 {
226 return OutEdges.end();
227 }

◆ removeIncomingEdge()

template<class NodeTy , class EdgeTy >
u32_t SVF::GenericNode< NodeTy, EdgeTy >::removeIncomingEdge ( EdgeType edge)
inline

Remove incoming and outgoing edges

Definition at line 289 of file GenericGraph.h.

290 {
291 iterator it = InEdges.find(edge);
292 assert(it != InEdges.end() && "can not find in edge in SVFG node");
293 InEdges.erase(it);
294 return 1;
295 }
GEdgeSetTy::iterator iterator

◆ removeOutgoingEdge()

template<class NodeTy , class EdgeTy >
u32_t SVF::GenericNode< NodeTy, EdgeTy >::removeOutgoingEdge ( EdgeType edge)
inline

Definition at line 296 of file GenericGraph.h.

297 {
298 iterator it = OutEdges.find(edge);
299 assert(it != OutEdges.end() && "can not find out edge in SVFG node");
300 OutEdges.erase(it);
301 return 1;
302 }

Friends And Related Symbol Documentation

◆ SVFIRReader

template<class NodeTy , class EdgeTy >
friend class SVFIRReader
friend

Definition at line 146 of file GenericGraph.h.

◆ SVFIRWriter

template<class NodeTy , class EdgeTy >
friend class SVFIRWriter
friend

Definition at line 145 of file GenericGraph.h.

Member Data Documentation

◆ InEdges

template<class NodeTy , class EdgeTy >
GEdgeSetTy SVF::GenericNode< NodeTy, EdgeTy >::InEdges
private

all incoming edge of this node

Definition at line 161 of file GenericGraph.h.

◆ OutEdges

template<class NodeTy , class EdgeTy >
GEdgeSetTy SVF::GenericNode< NodeTy, EdgeTy >::OutEdges
private

all outgoing edge of this node

Definition at line 162 of file GenericGraph.h.


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