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

#include <ThreadCallGraph.h>

Inheritance diagram for SVF::ThreadForkEdge:
SVF::CallGraphEdge SVF::GenericEdge< NodeTy >

Public Types

typedef GenericNode< CallGraphNode, ThreadForkEdge >::GEdgeSetTy ForkEdgeSet
 
- Public Types inherited from SVF::CallGraphEdge
enum  CEDGEK { CallRetEdge , TDForkEdge , TDJoinEdge , HareParForEdge }
 
typedef Set< const CallICFGNode * > CallInstSet
 
typedef GenericNode< CallGraphNode, CallGraphEdge >::GEdgeSetTy CallGraphEdgeSet
 
- 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)
 

Public Member Functions

 ThreadForkEdge (CallGraphNode *s, CallGraphNode *d, CallSiteID csId)
 Constructor.
 
virtual ~ThreadForkEdge ()
 Destructor.
 
virtual const std::string toString () const
 
- Public Member Functions inherited from SVF::CallGraphEdge
 CallGraphEdge (CallGraphNode *s, CallGraphNode *d, CEDGEK kind, CallSiteID cs)
 Constructor.
 
virtual ~CallGraphEdge ()
 Destructor.
 
CallSiteID getCallSiteID () const
 Get direct and indirect calls.
 
bool isDirectCallEdge () const
 
bool isIndirectCallEdge () const
 
CallInstSetgetDirectCalls ()
 
CallInstSetgetIndirectCalls ()
 
const CallInstSetgetDirectCalls () const
 
const CallInstSetgetIndirectCalls () const
 
void addDirectCallSite (const CallICFGNode *call)
 Add direct and indirect callsite.
 
void addInDirectCallSite (const CallICFGNode *call)
 
CallInstSet::const_iterator directCallsBegin () const
 Iterators for direct and indirect callsites.
 
CallInstSet::const_iterator directCallsEnd () const
 
CallInstSet::const_iterator indirectCallsBegin () const
 
CallInstSet::const_iterator indirectCallsEnd () 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 ThreadForkEdge *)
 ClassOf.
 
static bool classof (const CallGraphEdge *edge)
 
- Static Public Member Functions inherited from SVF::CallGraphEdge
static GEdgeFlag makeEdgeFlagWithInvokeID (GEdgeKind k, CallSiteID cs)
 Compute the unique edgeFlag value from edge kind and CallSiteID.
 
static bool classof (const CallGraphEdge *)
 ClassOf.
 
static bool classof (const GenericPTACallGraphEdgeTy *edge)
 

Additional Inherited Members

- 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

PTA thread fork edge from fork site to the entry of a start routine function

Definition at line 43 of file ThreadCallGraph.h.

Member Typedef Documentation

◆ ForkEdgeSet

Definition at line 71 of file ThreadCallGraph.h.

Constructor & Destructor Documentation

◆ ThreadForkEdge()

SVF::ThreadForkEdge::ThreadForkEdge ( CallGraphNode s,
CallGraphNode d,
CallSiteID  csId 
)
inline

Constructor.

Definition at line 48 of file ThreadCallGraph.h.

48 :
50 {
51 }
CallSiteID csId
Definition CallGraph.h:65
CallGraphEdge(CallGraphNode *s, CallGraphNode *d, CEDGEK kind, CallSiteID cs)
Constructor.
Definition CallGraph.h:68
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

◆ ~ThreadForkEdge()

virtual SVF::ThreadForkEdge::~ThreadForkEdge ( )
inlinevirtual

Destructor.

Definition at line 53 of file ThreadCallGraph.h.

54 {
55 }

Member Function Documentation

◆ classof() [1/2]

static bool SVF::ThreadForkEdge::classof ( const CallGraphEdge edge)
inlinestatic

Definition at line 63 of file ThreadCallGraph.h.

64 {
65 return edge->getEdgeKind() == CallGraphEdge::TDForkEdge;
66 }

◆ classof() [2/2]

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

ClassOf.

Definition at line 59 of file ThreadCallGraph.h.

60 {
61 return true;
62 }

◆ toString()

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

Reimplemented from SVF::CallGraphEdge.

Definition at line 49 of file ThreadCallGraph.cpp.

50{
51 std::string str;
52 std::stringstream rawstr(str);
53 rawstr << "ThreadForkEdge ";
54 rawstr << "CallSiteID: " << getCallSiteID();
55 rawstr << " srcNodeID " << getSrcID() << " (fun: " << getSrcNode()->getFunction()->getName() << ")";
56 rawstr << " dstNodeID " << getDstID() << " (fun: " << getDstNode()->getFunction()->getName() << ")";
57 return rawstr.str();
58}
CallSiteID getCallSiteID() const
Get direct and indirect calls.
Definition CallGraph.h:83
NodeType * getSrcNode() const
NodeType * getDstNode() const
NodeID getDstID() const
NodeID getSrcID() const
get methods of the components

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