|
| | TDForkPE (ValVar *res, const OPVars &opnds, const CallICFGNodeVec &icfgNodes, const FunEntryICFGNode *e) |
| | constructor
|
| |
| virtual const std::string | toString () const |
| |
| | CallPE (ValVar *res, const OPVars &opnds, const CallICFGNodeVec &icfgNodes, const FunEntryICFGNode *e, GEdgeKind k=SVFStmt::Call) |
| | constructor
|
| |
| void | addOpVar (ValVar *op, const CallICFGNode *call) |
| | Add an operand (actual param) from a call site.
|
| |
| const CallICFGNode * | getOpCallICFGNode (u32_t op_idx) const |
| | Return the CallICFGNode of the i-th operand.
|
| |
| const CallICFGNodeVec & | getOpCallICFGNodes () const |
| | Return all call site ICFGNodes.
|
| |
| const FunEntryICFGNode * | getFunEntryICFGNode () const |
| | Return the function entry node.
|
| |
| const ValVar * | getOpVar (u32_t pos) const |
| | Operand SVFVars.
|
| |
| const ValVar * | getRes () const |
| | Result SVFVar.
|
| |
| NodeID | getOpVarID (u32_t pos) const |
| |
| NodeID | getResID () const |
| |
| u32_t | getOpVarNum () const |
| |
| const OPVars & | getOpndVars () const |
| |
| OPVars::const_iterator | opVarBegin () const |
| |
| OPVars::const_iterator | opVerEnd () const |
| |
| | SVFStmt (SVFVar *s, SVFVar *d, GEdgeFlag k, bool real=true) |
| | Constructor.
|
| |
| | ~SVFStmt () |
| | Destructor.
|
| |
| EdgeID | getEdgeID () const |
| | Return Edge ID.
|
| |
| virtual bool | isPTAEdge () const |
| | Whether src and dst nodes are both of pointer type.
|
| |
| void | setValue (const SVFVar *val) |
| | Get/set methods for llvm instruction.
|
| |
| const SVFVar * | getValue () const |
| |
| void | setBB (const SVFBasicBlock *bb) |
| |
| const SVFBasicBlock * | getBB () const |
| |
| void | setICFGNode (ICFGNode *node) |
| |
| ICFGNode * | getICFGNode () const |
| |
| | 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 |
| |
| NodeType * | getSrcNode () const |
| |
| NodeType * | getDstNode () const |
| |
| virtual bool | operator== (const GenericEdge< NodeType > *rhs) const |
| |
|
| typedef std::vector< const CallICFGNode * > | CallICFGNodeVec |
| |
| typedef std::vector< ValVar * > | OPVars |
| |
| enum | PEDGEK {
Addr
, Copy
, Store
, Load
,
Call
, Ret
, Gep
, Phi
,
Select
, Cmp
, BinaryOp
, UnaryOp
,
Branch
, ThreadFork
, ThreadJoin
} |
| |
| typedef GenericNode< SVFVar, SVFStmt >::GEdgeSetTy | SVFStmtSetTy |
| |
| typedef Map< EdgeID, SVFStmtSetTy > | PAGEdgeToSetMapTy |
| |
| typedef PAGEdgeToSetMapTy | KindToSVFStmtMapTy |
| |
| typedef SVFStmtSetTy | PAGEdgeSetTy |
| |
| 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)
|
| |
| | MultiOpndStmt (ValVar *r, const OPVars &opnds, GEdgeFlag k) |
| | Constructor, only used by subclasses but not external users.
|
| |
| | SVFStmt (GEdgeFlag k) |
| | Private constructor for reading SVFIR from file without side-effect.
|
| |
| | SVFStmt (SVFVar *s, SVFVar *d, GEdgeFlag k, EdgeID eid, SVFVar *value, ICFGNode *icfgNode, bool real=true) |
| |
| void | setBasicBlock (const SVFBasicBlock *bb) |
| |
| void | setCallEdgeLabelCounter (u64_t counter) |
| |
| void | setStoreEdgeLabelCounter (u64_t counter) |
| |
| void | setMultiOpndLabelCounter (u64_t counter) |
| |
| static void | addInst2Labeled (const ICFGNode *cs, u32_t label) |
| |
| static void | addVar2Labeled (const SVFVar *var, u32_t label) |
| |
| OPVars | opVars |
| |
| static constexpr unsigned char | EdgeKindMaskBits = 8 |
| | We use the lower 8 bits to denote edge kind.
|
| |
| static constexpr u64_t | EdgeKindMask = (~0ULL) >> (64 - EdgeKindMaskBits) |
| |
Thread Fork
Definition at line 1329 of file SVFStatements.h.