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::BranchStmt Class Reference

#include <SVFStatements.h>

Inheritance diagram for SVF::BranchStmt:
SVF::SVFStmt SVF::GenericEdge< NodeTy >

Public Types

typedef std::vector< std::pair< const ICFGNode *, s32_t > > SuccAndCondPairVec
 
- 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

 BranchStmt (SVFVar *inst, SVFVar *c, const SuccAndCondPairVec &succs)
 constructor
 
bool isUnconditional () const
 The branch is unconditional if cond is a null value.
 
bool isConditional () const
 The branch is conditional if cond is not a null value.
 
const SVFVargetCondition () const
 Return the condition.
 
const SVFVargetBranchInst () const
 
u32_t getNumSuccessors () const
 
const SuccAndCondPairVecgetSuccessors () const
 
const ICFGNodegetSuccessor (u32_t i) const
 
s64_t getSuccessorCondValue (u32_t i) const
 
virtual const std::string toString () const override
 
- 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.
 
const SVFInstructiongetInst () const
 Get/set methods for llvm instruction.
 
void setValue (const SVFValue *val)
 
const SVFValuegetValue () 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 BranchStmt *)
 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

 BranchStmt ()
 Constructs empty BranchStmt (for SVFIRReader/serialization)
 
 BranchStmt (const BranchStmt &)
 place holder
 
void operator= (const BranchStmt &)
 place holder
 
SVFVargetSrcNode ()
 place holder, not allowed
 
SVFVargetDstNode ()
 place holder, not allowed
 
NodeID getSrcID ()
 place holder, use getOpVarID(pos) instead
 
NodeID getDstID ()
 place holder, use getResID() instead
 

Private Attributes

SuccAndCondPairVec successors
 
const SVFVarcond
 
const SVFVarbrInst
 

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::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

Branch statements including if/else and switch

Definition at line 1160 of file SVFStatements.h.

Member Typedef Documentation

◆ SuccAndCondPairVec

Definition at line 1166 of file SVFStatements.h.

Constructor & Destructor Documentation

◆ BranchStmt() [1/3]

SVF::BranchStmt::BranchStmt ( )
inlineprivate

Constructs empty BranchStmt (for SVFIRReader/serialization)

Definition at line 1170 of file SVFStatements.h.

const SVFVar * brInst
const SVFVar * cond
SVFStmt(GEdgeFlag k)
Private constructor for reading SVFIR from file without side-effect.

◆ BranchStmt() [2/3]

SVF::BranchStmt::BranchStmt ( const BranchStmt )
private

place holder

◆ BranchStmt() [3/3]

SVF::BranchStmt::BranchStmt ( SVFVar inst,
SVFVar c,
const SuccAndCondPairVec succs 
)
inline

constructor

Definition at line 1200 of file SVFStatements.h.

1202 brInst(inst)
1203 {
1204 }
SuccAndCondPairVec successors
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

Member Function Documentation

◆ classof() [1/3]

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

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

Definition at line 1185 of file SVFStatements.h.

1186 {
1187 return true;
1188 }

◆ classof() [2/3]

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

Definition at line 1193 of file SVFStatements.h.

1194 {
1195 return edge->getEdgeKind() == SVFStmt::Branch;
1196 }

◆ classof() [3/3]

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

Definition at line 1189 of file SVFStatements.h.

1190 {
1191 return edge->getEdgeKind() == SVFStmt::Branch;
1192 }

◆ getBranchInst()

const SVFVar * SVF::BranchStmt::getBranchInst ( ) const
inline

Definition at line 1212 of file SVFStatements.h.

1213 {
1214 return brInst;
1215 }

◆ getCondition()

const SVFVar * BranchStmt::getCondition ( ) const

Return the condition.

Definition at line 322 of file SVFStatements.cpp.

323{
324 //assert(isConditional() && "this is a unconditional branch");
325 return cond;
326}

◆ getDstID()

NodeID SVF::BranchStmt::getDstID ( )
private

place holder, use getResID() instead

◆ getDstNode()

SVFVar * SVF::BranchStmt::getDstNode ( )
private

place holder, not allowed

◆ getNumSuccessors()

u32_t SVF::BranchStmt::getNumSuccessors ( ) const
inline

For example if(c) {stmt1} else {stmt2} successor(0): stmt1, 1 successor(1): stmt2, 0 For example switch(c) case 0: {stmt1; break;} case 1: {stmt2; break;} default {stmt3: break} successor(0): stmt1, 0 successor(1): stmt2, 1 successor(3): stmt3, -1 Successors of this branch statement

Definition at line 1227 of file SVFStatements.h.

1228 {
1229 return successors.size();
1230 }

◆ getSrcID()

NodeID SVF::BranchStmt::getSrcID ( )
private

place holder, use getOpVarID(pos) instead

◆ getSrcNode()

SVFVar * SVF::BranchStmt::getSrcNode ( )
private

place holder, not allowed

◆ getSuccessor()

const ICFGNode * SVF::BranchStmt::getSuccessor ( u32_t  i) const
inline

Definition at line 1235 of file SVFStatements.h.

1236 {
1237 return successors.at(i).first;
1238 }

◆ getSuccessorCondValue()

s64_t SVF::BranchStmt::getSuccessorCondValue ( u32_t  i) const
inline

Definition at line 1239 of file SVFStatements.h.

1240 {
1241 return successors.at(i).second;
1242 }

◆ getSuccessors()

const SuccAndCondPairVec & SVF::BranchStmt::getSuccessors ( ) const
inline

Definition at line 1231 of file SVFStatements.h.

1232 {
1233 return successors;
1234 }

◆ isConditional()

bool BranchStmt::isConditional ( ) const

The branch is conditional if cond is not a null value.

Definition at line 317 of file SVFStatements.cpp.

318{
320}
NodeID getId() const
Get ID.
static SymbolTableInfo * SymbolInfo()
Singleton design here to make sure we only have one instance during any analysis.
SymID nullPtrSymID() const

◆ isUnconditional()

bool BranchStmt::isUnconditional ( ) const

The branch is unconditional if cond is a null value.

Definition at line 312 of file SVFStatements.cpp.

313{
315}

◆ operator=()

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

place holder

◆ toString()

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

Reimplemented from SVF::SVFStmt.

Definition at line 171 of file SVFStatements.cpp.

172{
173 std::string str;
174 std::stringstream rawstr(str);
175 if(isConditional())
176 rawstr << "BranchStmt: [Condition Var" << getCondition()->getId() << "]\n";
177 else
178 rawstr << "BranchStmt: [" << " Unconditional branch" << "]\n";
179
180 for(u32_t i = 0; i < getNumSuccessors(); i++)
181 rawstr << "Successor " << i << " ICFGNode" << getSuccessor(i)->getId() << " ";
182
184 {
185 rawstr << "\n";
186 rawstr << getValue()->toString();
187 }
188 return rawstr.str();
189}
unsigned u32_t
Definition CommandLine.h:18
u32_t getNumSuccessors() const
const ICFGNode * getSuccessor(u32_t i) const
bool isConditional() const
The branch is conditional if cond is not a null value.
const SVFVar * getCondition() const
Return the condition.
static const Option< bool > ShowSVFIRValue
Definition Options.h:122
const SVFValue * getValue() const
std::string toString() const
Needs to be implemented by a SVF front end.
Definition LLVMUtil.cpp:721

Friends And Related Symbol Documentation

◆ SVFIRReader

Definition at line 1163 of file SVFStatements.h.

◆ SVFIRWriter

Definition at line 1162 of file SVFStatements.h.

Member Data Documentation

◆ brInst

const SVFVar* SVF::BranchStmt::brInst
private

Definition at line 1180 of file SVFStatements.h.

◆ cond

const SVFVar* SVF::BranchStmt::cond
private

Definition at line 1179 of file SVFStatements.h.

◆ successors

SuccAndCondPairVec SVF::BranchStmt::successors
private

Definition at line 1178 of file SVFStatements.h.


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