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

#include <ThreadCallGraph.h>

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

Public Types

typedef GenericNode< CallGraphNode, ThreadJoinEdge >::GEdgeSetTy JoinEdgeSet
 
- 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

 ThreadJoinEdge (CallGraphNode *s, CallGraphNode *d, CallSiteID csId)
 Constructor.
 
virtual ~ThreadJoinEdge ()
 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 ThreadJoinEdge *)
 
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 join edge from the exit of a start routine function to a join point of the thread

Definition at line 77 of file ThreadCallGraph.h.

Member Typedef Documentation

◆ JoinEdgeSet

Definition at line 102 of file ThreadCallGraph.h.

Constructor & Destructor Documentation

◆ ThreadJoinEdge()

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

Constructor.

Definition at line 82 of file ThreadCallGraph.h.

82 :
84 {
85 }
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

◆ ~ThreadJoinEdge()

virtual SVF::ThreadJoinEdge::~ThreadJoinEdge ( )
inlinevirtual

Destructor.

Definition at line 87 of file ThreadCallGraph.h.

88 {
89 }

Member Function Documentation

◆ classof() [1/2]

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

Definition at line 95 of file ThreadCallGraph.h.

96 {
97 return edge->getEdgeKind() == CallGraphEdge::TDJoinEdge;
98 }

◆ classof() [2/2]

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

Definition at line 91 of file ThreadCallGraph.h.

92 {
93 return true;
94 }

◆ toString()

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

Reimplemented from SVF::CallGraphEdge.

Definition at line 60 of file ThreadCallGraph.cpp.

61{
62 std::string str;
63 std::stringstream rawstr(str);
64 rawstr << "ThreadJoinEdge ";
65 rawstr << "CallSiteID: " << getCallSiteID();
66 rawstr << " srcNodeID " << getSrcID() << " (fun: " << getSrcNode()->getFunction()->getName() << ")";
67 rawstr << " dstNodeID " << getDstID() << " (fun: " << getDstNode()->getFunction()->getName() << ")";
68 return rawstr.str();
69}
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: