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

#include <ICFGEdge.h>

Inheritance diagram for SVF::RetCFGEdge:
SVF::ICFGEdge SVF::GenericEdge< NodeTy >

Public Member Functions

 RetCFGEdge (ICFGNode *s, ICFGNode *d)
 Constructor.
 
void addRetPE (const RetPE *ret)
 Add call parameter edge to this CallCFGEdge.
 
const RetPEgetRetPE () const
 Add get parameter edge to this CallCFGEdge.
 
const CallICFGNodegetCallSite () const
 Return call ICFGNode at the callsite.
 
virtual const std::string toString () const
 
- Public Member Functions inherited from SVF::ICFGEdge
 ICFGEdge (ICFGNode *s, ICFGNode *d, GEdgeFlag k)
 Constructor.
 
 ~ICFGEdge ()
 Destructor.
 
bool isCFGEdge () const
 Get methods of the components.
 
bool isCallCFGEdge () const
 
bool isRetCFGEdge () const
 
bool isIntraCFGEdge () const
 
- Public Member Functions inherited from SVF::GenericEdge< NodeTy >
 GenericEdge (NodeTy *s, NodeTy *d, GEdgeFlag k)
 Constructor.
 
virtual ~GenericEdge ()
 Destructor.
 
NodeID getSrcID () const
 get methods of the components
 
NodeID getDstID () const
 
GEdgeKind getEdgeKind () const
 
GEdgeKind getEdgeKindWithoutMask () const
 
NodeTypegetSrcNode () const
 
NodeTypegetDstNode () const
 
virtual bool operator== (const GenericEdge< NodeType > *rhs) const
 

Static Public Member Functions

static bool classof (const RetCFGEdge *)
 Methods for support type inquiry through isa, cast, and dyn_cast:
 
static bool classof (const ICFGEdge *edge)
 
static bool classof (const GenericICFGEdgeTy *edge)
 
- Static Public Member Functions inherited from SVF::ICFGEdge
static GEdgeFlag makeEdgeFlagWithInvokeID (GEdgeKind k, CallSiteID cs)
 Compute the unique edgeFlag value from edge kind and CallSiteID.
 

Private Attributes

const RetPEretPE
 

Additional Inherited Members

- Public Types inherited from SVF::ICFGEdge
enum  ICFGEdgeK { IntraCF , CallCF , RetCF }
 
typedef ICFGEdgeK SVFGEdgeK
 
typedef GenericNode< ICFGNode, ICFGEdge >::GEdgeSetTy ICFGEdgeSetTy
 
typedef ICFGEdgeSetTy SVFGEdgeSetTy
 
- Public Types inherited from SVF::GenericEdge< NodeTy >
typedef NodeTy NodeType
 Node type.
 
typedef u64_t GEdgeFlag
 
typedef s64_t GEdgeKind
 
typedef struct SVF::GenericEdge::equalGEdge equalGEdge
 Add the hash function for std::set (we also can overload operator< to implement this)
 
- Static Protected Attributes inherited from SVF::GenericEdge< NodeTy >
static constexpr unsigned char EdgeKindMaskBits = 8
 We use the lower 8 bits to denote edge kind.
 
static constexpr u64_t EdgeKindMask = (~0ULL) >> (64 - EdgeKindMaskBits)
 

Detailed Description

Return ICFG edge representing parameter/return passing from a callee to a caller

Definition at line 227 of file ICFGEdge.h.

Constructor & Destructor Documentation

◆ RetCFGEdge()

SVF::RetCFGEdge::RetCFGEdge ( ICFGNode s,
ICFGNode d 
)
inline

Constructor.

Definition at line 235 of file ICFGEdge.h.

236 : ICFGEdge(s, d, RetCF), retPE(nullptr)
237 {
238 }
ICFGEdge(ICFGNode *s, ICFGNode *d, GEdgeFlag k)
Constructor.
Definition ICFGEdge.h:62
const RetPE * retPE
Definition ICFGEdge.h:231
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

Member Function Documentation

◆ addRetPE()

void SVF::RetCFGEdge::addRetPE ( const RetPE ret)
inline

Add call parameter edge to this CallCFGEdge.

Definition at line 240 of file ICFGEdge.h.

241 {
242 assert(!retPE && "we can only have one retPE for each RetCFGEdge");
243 retPE = ret;
244 }

◆ classof() [1/3]

static bool SVF::RetCFGEdge::classof ( const GenericICFGEdgeTy edge)
inlinestatic

Definition at line 263 of file ICFGEdge.h.

264 {
265 return edge->getEdgeKind() == RetCF;
266 }

◆ classof() [2/3]

static bool SVF::RetCFGEdge::classof ( const ICFGEdge edge)
inlinestatic

Definition at line 259 of file ICFGEdge.h.

260 {
261 return edge->getEdgeKind() == RetCF;
262 }

◆ classof() [3/3]

static bool SVF::RetCFGEdge::classof ( const RetCFGEdge )
inlinestatic

Methods for support type inquiry through isa, cast, and dyn_cast:

Definition at line 255 of file ICFGEdge.h.

256 {
257 return true;
258 }

◆ getCallSite()

const CallICFGNode * RetCFGEdge::getCallSite ( ) const

Return call ICFGNode at the callsite.

Definition at line 204 of file ICFG.cpp.

205{
206 assert(SVFUtil::isa<RetICFGNode>(getDstNode()) && "not a RetICFGNode?");
207 return SVFUtil::cast<RetICFGNode>(getDstNode())->getCallICFGNode();
208}
NodeType * getDstNode() const

◆ getRetPE()

const RetPE * SVF::RetCFGEdge::getRetPE ( ) const
inline

Add get parameter edge to this CallCFGEdge.

Definition at line 246 of file ICFGEdge.h.

247 {
248 return retPE;
249 }

◆ toString()

const std::string RetCFGEdge::toString ( ) const
virtual

Reimplemented from SVF::ICFGEdge.

Definition at line 194 of file ICFG.cpp.

195{
196 std::string str;
197 std::stringstream rawstr(str);
198 rawstr << "RetCFGEdge " << " [ICFGNode";
199 rawstr << getDstID() << " <-- ICFGNode" << getSrcID() << "]\t CallSite: " << getDstNode()->toString() << "\t";
200 return rawstr.str();
201}
NodeID getDstID() const
NodeID getSrcID() const
get methods of the components

Member Data Documentation

◆ retPE

const RetPE* SVF::RetCFGEdge::retPE
private

Definition at line 231 of file ICFGEdge.h.


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