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

#include <SVFStatements.h>

Inheritance diagram for SVF::CopyStmt:
SVF::AssignStmt SVF::SVFStmt SVF::GenericEdge< NodeTy >

Public Types

enum  CopyKind {
  COPYVAL , ZEXT , SEXT , BITCAST ,
  TRUNC , FPTRUNC , FPTOUI , FPTOSI ,
  UITOFP , SITOFP , INTTOPTR , PTRTOINT
}
 
- Public Types inherited from SVF::SVFStmt
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, SVFStmtSetTyPAGEdgeToSetMapTy
 
typedef PAGEdgeToSetMapTy KindToSVFStmtMapTy
 
typedef SVFStmtSetTy PAGEdgeSetTy
 
- 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

u32_t getCopyKind () const
 Return the kind of the copy statement.
 
bool isBitCast () const
 
bool isValueCopy () const
 
bool isInt2Ptr () const
 
bool isPtr2Int () const
 
bool isZext () const
 
bool isSext () const
 
 CopyStmt (SVFVar *s, SVFVar *d, CopyKind k)
 constructor
 
virtual const std::string toString () const override
 
- Public Member Functions inherited from SVF::AssignStmt
SVFVargetRHSVar () const
 
SVFVargetLHSVar () const
 
NodeID getRHSVarID () const
 
NodeID getLHSVarID () const
 
- Public Member Functions inherited from SVF::SVFStmt
 SVFStmt (SVFVar *s, SVFVar *d, GEdgeFlag k, bool real=true)
 Constructor.
 
 ~SVFStmt ()
 Destructor.
 
EdgeID getEdgeID () const
 Return Edge ID.
 
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 SVFVargetValue () const
 
void setBB (const SVFBasicBlock *bb)
 
const SVFBasicBlockgetBB () const
 
void setICFGNode (ICFGNode *node)
 
ICFGNodegetICFGNode () 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 CopyStmt *)
 Methods for support type inquiry through isa, cast, and dyn_cast:
 
static bool classof (const SVFStmt *edge)
 
static bool classof (const GenericPAGEdgeTy *edge)
 
- Static Public Member Functions inherited from SVF::AssignStmt
static bool classof (const AssignStmt *)
 Methods for support type inquiry through isa, cast, and dyn_cast:
 
static bool classof (const SVFStmt *edge)
 
static bool classof (const GenericPAGEdgeTy *edge)
 
- Static Public Member Functions inherited from SVF::SVFStmt
static bool classof (const SVFStmt *)
 ClassOf.
 
static bool classof (const GenericPAGEdgeTy *edge)
 
static GEdgeFlag makeEdgeFlagWithAddionalOpnd (GEdgeKind k, const SVFVar *var)
 
static GEdgeFlag makeEdgeFlagWithCallInst (GEdgeKind k, const ICFGNode *cs)
 
static GEdgeFlag makeEdgeFlagWithStoreInst (GEdgeKind k, const ICFGNode *store)
 

Private Member Functions

 CopyStmt ()
 Constructs empty CopyStmt (for SVFIRReader/serialization)
 
 CopyStmt (const CopyStmt &)
 place holder
 
void operator= (const CopyStmt &)
 place holder
 

Private Attributes

u32_t copyKind
 

Friends

class SVFIRWriter
 
class SVFIRReader
 

Additional Inherited Members

- Static Public Attributes inherited from SVF::SVFStmt
static u32_t totalEdgeNum
 Total edge number.
 
- Protected Member Functions inherited from SVF::AssignStmt
 AssignStmt (SVFVar *s, SVFVar *d, GEdgeFlag k)
 constructor
 
 AssignStmt (GEdgeFlag k)
 Constructor to create empty AssignStmt (for SVFIRReader/serialization)
 
- Protected Member Functions inherited from SVF::SVFStmt
 SVFStmt (GEdgeFlag k)
 Private constructor for reading SVFIR from file without side-effect.
 
- 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

Copy statements (simple assignment and casting)

Definition at line 361 of file SVFStatements.h.

Member Enumeration Documentation

◆ CopyKind

Enumerator
COPYVAL 
ZEXT 
SEXT 
BITCAST 
TRUNC 
FPTRUNC 
FPTOUI 
FPTOSI 
UITOFP 
SITOFP 
INTTOPTR 
PTRTOINT 

Definition at line 371 of file SVFStatements.h.

372 {
373 COPYVAL, // Value copies (default one)
374 ZEXT, // Zero extend integers
375 SEXT, // Sign extend integers
376 BITCAST, // Type cast
377 TRUNC, // Truncate integers
378 FPTRUNC, // Truncate floating point
379 FPTOUI, // floating point -> UInt
380 FPTOSI, // floating point -> SInt
381 UITOFP, // UInt -> floating point
382 SITOFP, // SInt -> floating point
383 INTTOPTR, // Integer -> Pointer
384 PTRTOINT // Pointer -> Integer
385 };

Constructor & Destructor Documentation

◆ CopyStmt() [1/3]

SVF::CopyStmt::CopyStmt ( )
inlineprivate

Constructs empty CopyStmt (for SVFIRReader/serialization)

Definition at line 367 of file SVFStatements.h.

◆ CopyStmt() [2/3]

SVF::CopyStmt::CopyStmt ( const CopyStmt )
private

place holder

◆ CopyStmt() [3/3]

SVF::CopyStmt::CopyStmt ( SVFVar s,
SVFVar d,
CopyKind  k 
)
inline

constructor

Definition at line 439 of file SVFStatements.h.

llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

Member Function Documentation

◆ classof() [1/3]

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

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

Definition at line 388 of file SVFStatements.h.

389 {
390 return true;
391 }

◆ classof() [2/3]

static bool SVF::CopyStmt::classof ( const GenericPAGEdgeTy edge)
inlinestatic

Definition at line 396 of file SVFStatements.h.

397 {
398 return edge->getEdgeKind() == SVFStmt::Copy;
399 }

◆ classof() [3/3]

static bool SVF::CopyStmt::classof ( const SVFStmt edge)
inlinestatic

Definition at line 392 of file SVFStatements.h.

393 {
394 return edge->getEdgeKind() == SVFStmt::Copy;
395 }

◆ getCopyKind()

u32_t SVF::CopyStmt::getCopyKind ( ) const
inline

Return the kind of the copy statement.

Definition at line 403 of file SVFStatements.h.

404 {
405 return copyKind;
406 }

◆ isBitCast()

bool SVF::CopyStmt::isBitCast ( ) const
inline

Definition at line 408 of file SVFStatements.h.

409 {
410 return copyKind == BITCAST;
411 }

◆ isInt2Ptr()

bool SVF::CopyStmt::isInt2Ptr ( ) const
inline

Definition at line 418 of file SVFStatements.h.

419 {
420 return copyKind == INTTOPTR;
421 }

◆ isPtr2Int()

bool SVF::CopyStmt::isPtr2Int ( ) const
inline

Definition at line 423 of file SVFStatements.h.

424 {
425 return copyKind == PTRTOINT;
426 }

◆ isSext()

bool SVF::CopyStmt::isSext ( ) const
inline

Definition at line 433 of file SVFStatements.h.

434 {
435 return copyKind == SEXT;
436 }

◆ isValueCopy()

bool SVF::CopyStmt::isValueCopy ( ) const
inline

Definition at line 413 of file SVFStatements.h.

414 {
415 return copyKind == COPYVAL;
416 }

◆ isZext()

bool SVF::CopyStmt::isZext ( ) const
inline

Definition at line 428 of file SVFStatements.h.

429 {
430 return copyKind == ZEXT;
431 }

◆ operator=()

void SVF::CopyStmt::operator= ( const CopyStmt )
private

place holder

◆ toString()

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

Implements SVF::AssignStmt.

Definition at line 87 of file SVFStatements.cpp.

88{
89 std::string str;
90 std::stringstream rawstr(str);
91 rawstr << "CopyStmt: [Var" << getLHSVarID() << " <-- Var" << getRHSVarID() << "]\t";
93 {
94 rawstr << "\n";
95 rawstr << getValue()->toString();
96 }
97 return rawstr.str();
98}
NodeID getRHSVarID() const
NodeID getLHSVarID() const
static const Option< bool > ShowSVFIRValue
Definition Options.h:122
const SVFVar * getValue() const
virtual const std::string toString() const
Get string representation.

Friends And Related Symbol Documentation

◆ SVFIRReader

friend class SVFIRReader
friend

Definition at line 364 of file SVFStatements.h.

◆ SVFIRWriter

friend class SVFIRWriter
friend

Definition at line 363 of file SVFStatements.h.

Member Data Documentation

◆ copyKind

u32_t SVF::CopyStmt::copyKind
private

Definition at line 443 of file SVFStatements.h.


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