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

#include <ICFGNode.h>

Inheritance diagram for SVF::CallICFGNode:
SVF::InterICFGNode SVF::ICFGNode SVF::GenericNode< NodeTy, EdgeTy > SVF::SVFValue

Public Types

typedef std::vector< const ValVar * > ActualParmNodeVec
 
- Public Types inherited from SVF::ICFGNode
typedef ICFGEdge::ICFGEdgeSetTy::iterator iterator
 
typedef ICFGEdge::ICFGEdgeSetTy::const_iterator const_iterator
 
typedef Set< const CallPE * > CallPESet
 
typedef Set< const RetPE * > RetPESet
 
typedef std::list< const VFGNode * > VFGNodeList
 
typedef std::list< const SVFStmt * > SVFStmtList
 
typedef GNodeK ICFGNodeK
 
- Public Types inherited from SVF::GenericNode< NodeTy, EdgeTy >
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

 CallICFGNode (NodeID id, const SVFBasicBlock *b, const SVFType *ty, const FunObjVar *cf, bool iv, bool ivc, s32_t vfi, const std::string &fnv)
 
const RetICFGNodegetRetICFGNode () const
 Return callsite.
 
void setRetICFGNode (const RetICFGNode *r)
 Return callsite.
 
const FunObjVargetCaller () const
 Return callsite.
 
const SVFBasicBlockgetParent () const
 Return Basic Block.
 
bool isIndirectCall () const
 Return true if this is an indirect call.
 
const ActualParmNodeVecgetActualParms () const
 Return the set of actual parameters.
 
void addActualParms (const ValVar *ap)
 Add actual parameters.
 
const ValVargetArgument (u32_t ArgNo) const
 Parameter operations.
 
u32_t arg_size () const
 
bool arg_empty () const
 
u32_t getNumArgOperands () const
 
const FunObjVargetCalledFunction () const
 
bool isVarArg () const
 
bool isVirtualCall () const
 
void setVtablePtr (SVFVar *v)
 
const SVFVargetVtablePtr () const
 
s32_t getFunIdxInVtable () const
 
const std::string & getFunNameOfVirtualCall () const
 
const std::string toString () const override
 
const std::string getSourceLoc () const override
 
- Public Member Functions inherited from SVF::InterICFGNode
 InterICFGNode (NodeID id, ICFGNodeK k)
 Constructor.
 
- Public Member Functions inherited from SVF::ICFGNode
 ICFGNode (NodeID i, GNodeK k)
 Constructor.
 
virtual const FunObjVargetFun () const
 Return the function of this ICFGNode.
 
virtual const SVFBasicBlockgetBB () const
 Return the basic block of this ICFGNode.
 
void dump () const
 
void addVFGNode (const VFGNode *vfgNode)
 
const VFGNodeListgetVFGNodes () const
 
void addSVFStmt (const SVFStmt *edge)
 
const SVFStmtListgetSVFStmts () const
 
- Public Member Functions inherited from SVF::GenericNode< NodeTy, EdgeTy >
 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)
 
const std::string valueOnlyToString () const
 

Static Public Member Functions

static bool classof (const CallICFGNode *)
 Methods for support type inquiry through isa, cast, and dyn_cast:
 
static bool classof (const ICFGNode *node)
 
static bool classof (const InterICFGNode *node)
 
static bool classof (const GenericICFGNodeTy *node)
 
static bool classof (const SVFValue *node)
 
- Static Public Member Functions inherited from SVF::InterICFGNode
static bool classof (const InterICFGNode *)
 Methods for support type inquiry through isa, cast, and dyn_cast:
 
static bool classof (const ICFGNode *node)
 
static bool classof (const GenericICFGNodeTy *node)
 
static bool classof (const SVFValue *node)
 
- Static Public Member Functions inherited from SVF::ICFGNode
static bool classof (const ICFGNode *)
 
static bool classof (const GenericICFGNodeTy *node)
 
static bool classof (const SVFValue *node)
 
- Static Public Member Functions inherited from SVF::GenericNode< NodeTy, EdgeTy >
static bool classof (const GenericNode< NodeTy, EdgeTy > *)
 
static bool classof (const SVFValue *)
 

Protected Member Functions

 CallICFGNode (NodeID id)
 the function name of this virtual call
 

Protected Attributes

const RetICFGNoderet
 
ActualParmNodeVec APNodes
 
const FunObjVarcalledFunc
 arguments
 
bool isvararg
 called function
 
bool isVirCallInst
 is variable argument
 
SVFVarvtabPtr
 is virtual call inst
 
s32_t virtualFunIdx
 virtual table pointer
 
std::string funNameOfVcall
 virtual function index of the virtual table(s) at a virtual call
 
- Protected Attributes inherited from SVF::ICFGNode
const FunObjVarfun
 
const SVFBasicBlockbb
 
VFGNodeList VFGNodes
 
SVFStmtList pagEdges
 
- 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.
 

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)
 

Detailed Description

Call ICFGNode containing a set of ActualParmVFGNodes at a callsite

Definition at line 416 of file ICFGNode.h.

Member Typedef Documentation

◆ ActualParmNodeVec

Definition at line 422 of file ICFGNode.h.

Constructor & Destructor Documentation

◆ CallICFGNode() [1/2]

SVF::CallICFGNode::CallICFGNode ( NodeID  id)
inlineprotected

the function name of this virtual call

Constructor to create empty CallICFGNode (for SVFIRReader/deserialization)

Definition at line 435 of file ICFGNode.h.

435: InterICFGNode(id, FunCallBlock), ret{} {}
const RetICFGNode * ret
Definition ICFGNode.h:425
InterICFGNode(NodeID id, ICFGNodeK k)
Constructor.
Definition ICFGNode.h:243

◆ CallICFGNode() [2/2]

SVF::CallICFGNode::CallICFGNode ( NodeID  id,
const SVFBasicBlock b,
const SVFType ty,
const FunObjVar cf,
bool  iv,
bool  ivc,
s32_t  vfi,
const std::string &  fnv 
)
inline

Definition at line 438 of file ICFGNode.h.

441 : InterICFGNode(id, FunCallBlock), ret(nullptr), calledFunc(cf),
442 isvararg(iv), isVirCallInst(ivc), vtabPtr(nullptr),
444 {
445 fun = b->getFunction();
446 bb = b;
447 type = ty;
448 }
const cJSON *const b
Definition cJSON.h:255
bool isVirCallInst
is variable argument
Definition ICFGNode.h:429
const FunObjVar * calledFunc
arguments
Definition ICFGNode.h:427
SVFVar * vtabPtr
is virtual call inst
Definition ICFGNode.h:430
s32_t virtualFunIdx
virtual table pointer
Definition ICFGNode.h:431
std::string funNameOfVcall
virtual function index of the virtual table(s) at a virtual call
Definition ICFGNode.h:432
bool isvararg
called function
Definition ICFGNode.h:428
const SVFBasicBlock * bb
Definition ICFGNode.h:149
const FunObjVar * fun
Definition ICFGNode.h:148
const SVFType * type
SVF type.
Definition SVFValue.h:205
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

Member Function Documentation

◆ addActualParms()

void SVF::CallICFGNode::addActualParms ( const ValVar ap)
inline

Add actual parameters.

Definition at line 488 of file ICFGNode.h.

489 {
490 APNodes.push_back(ap);
491 }
ActualParmNodeVec APNodes
Definition ICFGNode.h:426

◆ arg_empty()

bool SVF::CallICFGNode::arg_empty ( ) const
inline

Definition at line 503 of file ICFGNode.h.

504 {
505 return APNodes.empty();
506 }

◆ arg_size()

u32_t SVF::CallICFGNode::arg_size ( ) const
inline

Definition at line 499 of file ICFGNode.h.

500 {
501 return APNodes.size();
502 }

◆ classof() [1/5]

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

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

Definition at line 554 of file ICFGNode.h.

555 {
556 return true;
557 }

◆ classof() [2/5]

static bool SVF::CallICFGNode::classof ( const GenericICFGNodeTy node)
inlinestatic

Definition at line 569 of file ICFGNode.h.

570 {
571 return node->getNodeKind() == FunCallBlock;
572 }

◆ classof() [3/5]

static bool SVF::CallICFGNode::classof ( const ICFGNode node)
inlinestatic

Definition at line 559 of file ICFGNode.h.

560 {
561 return node->getNodeKind() == FunCallBlock;
562 }

◆ classof() [4/5]

static bool SVF::CallICFGNode::classof ( const InterICFGNode node)
inlinestatic

Definition at line 564 of file ICFGNode.h.

565 {
566 return node->getNodeKind() == FunCallBlock;
567 }

◆ classof() [5/5]

static bool SVF::CallICFGNode::classof ( const SVFValue node)
inlinestatic

Definition at line 574 of file ICFGNode.h.

575 {
576 return node->getNodeKind() == FunCallBlock;
577 }

◆ getActualParms()

const ActualParmNodeVec & SVF::CallICFGNode::getActualParms ( ) const
inline

Return the set of actual parameters.

Definition at line 482 of file ICFGNode.h.

483 {
484 return APNodes;
485 }

◆ getArgument()

const ValVar * SVF::CallICFGNode::getArgument ( u32_t  ArgNo) const
inline

Parameter operations.

Definition at line 494 of file ICFGNode.h.

495 {
496 return getActualParms()[ArgNo];
497 }
const ActualParmNodeVec & getActualParms() const
Return the set of actual parameters.
Definition ICFGNode.h:482

◆ getCalledFunction()

const FunObjVar * SVF::CallICFGNode::getCalledFunction ( ) const
inline

Definition at line 512 of file ICFGNode.h.

513 {
514 return calledFunc;
515 }

◆ getCaller()

const FunObjVar * SVF::CallICFGNode::getCaller ( ) const
inline

Return callsite.

Definition at line 464 of file ICFGNode.h.

465 {
466 return getFun();
467 }
virtual const FunObjVar * getFun() const
Return the function of this ICFGNode.
Definition ICFGNode.h:76

◆ getFunIdxInVtable()

s32_t SVF::CallICFGNode::getFunIdxInVtable ( ) const
inline

Definition at line 538 of file ICFGNode.h.

539 {
540 assert(isVirtualCall() && "not a virtual call?");
541 assert(virtualFunIdx >=0 && "virtual function idx is less than 0? not set yet?");
542 return virtualFunIdx;
543 }
bool isVirtualCall() const
Definition ICFGNode.h:521

◆ getFunNameOfVirtualCall()

const std::string & SVF::CallICFGNode::getFunNameOfVirtualCall ( ) const
inline

Definition at line 545 of file ICFGNode.h.

546 {
547 assert(isVirtualCall() && "not a virtual call?");
548 return funNameOfVcall;
549 }

◆ getNumArgOperands()

u32_t SVF::CallICFGNode::getNumArgOperands ( ) const
inline

Definition at line 508 of file ICFGNode.h.

509 {
510 return arg_size();
511 }
u32_t arg_size() const
Definition ICFGNode.h:499

◆ getParent()

const SVFBasicBlock * SVF::CallICFGNode::getParent ( ) const
inline

Return Basic Block.

Definition at line 470 of file ICFGNode.h.

471 {
472 return getBB();
473 }
virtual const SVFBasicBlock * getBB() const
Return the basic block of this ICFGNode.
Definition ICFGNode.h:82

◆ getRetICFGNode()

const RetICFGNode * SVF::CallICFGNode::getRetICFGNode ( ) const
inline

Return callsite.

Definition at line 451 of file ICFGNode.h.

452 {
453 assert(ret && "RetICFGNode not set?");
454 return ret;
455 }

◆ getSourceLoc()

const std::string SVF::CallICFGNode::getSourceLoc ( ) const
inlineoverridevirtual

Reimplemented from SVF::SVFValue.

Definition at line 582 of file ICFGNode.h.

583 {
584 return "CallICFGNode: " + ICFGNode::getSourceLoc();
585 }
virtual const std::string getSourceLoc() const
Definition SVFValue.h:194

◆ getVtablePtr()

const SVFVar * SVF::CallICFGNode::getVtablePtr ( ) const
inline

Definition at line 531 of file ICFGNode.h.

532 {
533 assert(isVirtualCall() && "not a virtual call?");
534 return vtabPtr;
535 }

◆ isIndirectCall()

bool SVF::CallICFGNode::isIndirectCall ( ) const
inline

Return true if this is an indirect call.

Definition at line 476 of file ICFGNode.h.

477 {
478 return nullptr == calledFunc;
479 }

◆ isVarArg()

bool SVF::CallICFGNode::isVarArg ( ) const
inline

Definition at line 517 of file ICFGNode.h.

518 {
519 return isvararg;
520 }

◆ isVirtualCall()

bool SVF::CallICFGNode::isVirtualCall ( ) const
inline

Definition at line 521 of file ICFGNode.h.

522 {
523 return isVirCallInst;
524 }

◆ setRetICFGNode()

void SVF::CallICFGNode::setRetICFGNode ( const RetICFGNode r)
inline

Return callsite.

Definition at line 458 of file ICFGNode.h.

459 {
460 ret = r;
461 }

◆ setVtablePtr()

void SVF::CallICFGNode::setVtablePtr ( SVFVar v)
inline

Definition at line 526 of file ICFGNode.h.

527 {
528 vtabPtr = v;
529 }

◆ toString()

const std::string CallICFGNode::toString ( ) const
overridevirtual

Reimplemented from SVF::ICFGNode.

Definition at line 139 of file ICFG.cpp.

140{
141 std::string str;
142 std::stringstream rawstr(str);
143 rawstr << "CallICFGNode" << getId();
144 rawstr << " {fun: " << getFun()->getName() << ICFGNode::getSourceLoc() << "}";
145 for (const SVFStmt *stmt : getSVFStmts())
146 rawstr << "\n" << stmt->toString();
147 if(getSVFStmts().empty())
148 rawstr << "\n" << valueOnlyToString();
149 return rawstr.str();
150}
const std::string toString() const override
Definition ICFG.cpp:139
const SVFStmtList & getSVFStmts() const
Definition ICFGNode.h:117
NodeID getId() const
Get ID.
Definition SVFValue.h:158
virtual const std::string & getName() const
Definition SVFValue.h:184
const std::string valueOnlyToString() const
Definition LLVMUtil.cpp:735

Friends And Related Symbol Documentation

◆ SVFIRReader

friend class SVFIRReader
friend

Definition at line 419 of file ICFGNode.h.

◆ SVFIRWriter

friend class SVFIRWriter
friend

Definition at line 418 of file ICFGNode.h.

Member Data Documentation

◆ APNodes

ActualParmNodeVec SVF::CallICFGNode::APNodes
protected

Definition at line 426 of file ICFGNode.h.

◆ calledFunc

const FunObjVar* SVF::CallICFGNode::calledFunc
protected

arguments

Definition at line 427 of file ICFGNode.h.

◆ funNameOfVcall

std::string SVF::CallICFGNode::funNameOfVcall
protected

virtual function index of the virtual table(s) at a virtual call

Definition at line 432 of file ICFGNode.h.

◆ isvararg

bool SVF::CallICFGNode::isvararg
protected

called function

Definition at line 428 of file ICFGNode.h.

◆ isVirCallInst

bool SVF::CallICFGNode::isVirCallInst
protected

is variable argument

Definition at line 429 of file ICFGNode.h.

◆ ret

const RetICFGNode* SVF::CallICFGNode::ret
protected

Definition at line 425 of file ICFGNode.h.

◆ virtualFunIdx

s32_t SVF::CallICFGNode::virtualFunIdx
protected

virtual table pointer

Definition at line 431 of file ICFGNode.h.

◆ vtabPtr

SVFVar* SVF::CallICFGNode::vtabPtr
protected

is virtual call inst

Definition at line 430 of file ICFGNode.h.


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