Static Value-Flow Analysis
|
#include <IRGraph.h>
Public Types | |
enum | SYMTYPE { NullPtr , BlkPtr , BlackHole , ConstantObj , ValSymbol , ObjSymbol , RetSymbol , VarargSymbol } |
Symbol types. More... | |
typedef OrderedMap< NodeID, ObjTypeInfo * > | IDToTypeInfoMapTy |
various maps defined | |
typedef OrderedMap< const FunObjVar *, NodeID > | FunObjVarToIDMapTy |
function to sym id map | |
typedef Set< const SVFType * > | SVFTypeSet |
struct type to struct info map | |
typedef Set< const SVFStmt * > | SVFStmtSet |
![]() | |
typedef SVFVar | NodeType |
typedef SVFStmt | EdgeType |
typedef OrderedMap< NodeID, NodeType * > | IDToNodeMapTy |
NodeID to GenericNode map. | |
typedef IDToNodeMapTy::iterator | iterator |
Node Iterators. | |
typedef IDToNodeMapTy::const_iterator | const_iterator |
Static Public Member Functions | |
static bool | isBlkPtr (NodeID id) |
special value | |
static bool | isNullPtr (NodeID id) |
static bool | isBlkObj (NodeID id) |
static bool | isConstantSym (NodeID id) |
static bool | isBlkObjOrConstantObj (NodeID id) |
Public Attributes | |
const SVFType * | maxStruct |
The struct type with the most fields. | |
u32_t | maxStSize |
The number of fields in max_struct. | |
![]() | |
u32_t | edgeNum |
total num of node | |
u32_t | nodeNum |
total num of edge | |
Protected Member Functions | |
NodeID | addNode (SVFVar *node) |
Add a node into the graph. | |
bool | addEdge (SVFVar *src, SVFVar *dst, SVFStmt *edge) |
Add an edge into the graph. | |
SVFStmt * | hasNonlabeledEdge (SVFVar *src, SVFVar *dst, SVFStmt::PEDGEK kind) |
SVFStmt * | hasLabeledEdge (SVFVar *src, SVFVar *dst, SVFStmt::PEDGEK kind, const ICFGNode *cs) |
SVFStmt * | hasLabeledEdge (SVFVar *src, SVFVar *op1, SVFStmt::PEDGEK kind, const SVFVar *op2) |
const std::vector< const SVFType * > & | getFlattenFieldTypes (const SVFStructType *T) |
Return the flattened field type for struct type only. | |
Protected Attributes | |
SVFStmt::KindToSVFStmtMapTy | KindToSVFStmtSetMap |
SVFIR edge map containing all PAGEdges. | |
SVFStmt::KindToSVFStmtMapTy | KindToPTASVFStmtSetMap |
SVFIR edge map containing only pointer-related edges, i.e., both LHS and RHS are of pointer type. | |
bool | fromFile |
Whether the SVFIR is built according to user specified data from a txt file. | |
NodeID | nodeNumAfterPAGBuild |
initial node number after building SVFIR, excluding later added nodes, e.g., gepobj nodes | |
u32_t | totalPTAPAGEdge |
u32_t | valVarNum |
u32_t | objVarNum |
![]() | |
IDToNodeMapTy | IDToNodeMap |
node map | |
Private Member Functions | |
void | destorySymTable () |
Private Attributes | |
FunObjVarToIDMapTy | returnFunObjSymMap |
return map | |
FunObjVarToIDMapTy | varargFunObjSymMap |
vararg map | |
IDToTypeInfoMapTy | objTypeInfoMap |
map a memory sym id to its obj | |
SVFTypeSet | svfTypes |
Set< const StInfo * > | stInfos |
(owned) All StInfo | |
NodeID | totalSymNum |
total number of symbols | |
Friends | |
class | SVFIRWriter |
class | SVFIRReader |
class | SVFIRBuilder |
class | SymbolTableBuilder |
Symbol types.
Enumerator | |
---|---|
NullPtr | |
BlkPtr | |
BlackHole | |
ConstantObj | |
ValSymbol | |
ObjSymbol | |
RetSymbol | |
VarargSymbol |
Definition at line 61 of file IRGraph.h.
|
inline |
Definition at line 140 of file IRGraph.h.
|
virtual |
Definition at line 54 of file IRGraph.cpp.
Add an edge into the graph.
Add a SVFIR edge into edge map
Definition at line 253 of file IRGraph.cpp.
Add a node into the graph.
Definition at line 118 of file IRGraph.h.
|
inline |
|
inline |
|
inline |
|
inline |
const ObjTypeInfo * IRGraph::createDummyObjTypeInfo | ( | NodeID | symId, |
const SVFType * | type | ||
) |
Definition at line 177 of file IRGraph.cpp.
ObjTypeInfo * IRGraph::createObjTypeInfo | ( | const SVFType * | type | ) |
Create an objectInfo based on LLVM type (value is null, and type could be null, representing a dummy object)
Definition at line 231 of file IRGraph.cpp.
|
private |
Definition at line 36 of file IRGraph.cpp.
void IRGraph::dump | ( | std::string | name | ) |
Dump SVFIR.
Dump this IRGraph
Definition at line 310 of file IRGraph.cpp.
void SVF::IRGraph::dumpSymTable | ( | ) |
|
inline |
|
inline |
|
inline |
Flattened element idx of an array or struct by considering stride.
When Options::ModelArrays is disabled, any element index Array is modeled as the base
Definition at line 144 of file IRGraph.cpp.
|
protected |
Return the flattened field type for struct type only.
Definition at line 118 of file IRGraph.cpp.
Return the type of a flattened element given a flattened index.
Definition at line 123 of file IRGraph.cpp.
|
inline |
|
inline |
|
virtual |
Given an offset from a Gep Instruction, return it modulus offset by considering memory layout.
if the offset is negative, it's possible that we're looking for an obj node out of range of current struct. Make the offset positive so we can still get a node within current struct to represent this obj.
@offset: the index allocated to the newly generated field node; @Options::MaxFieldLimit(): preset upper bound of field number; @maxOffset: the max field number of the base object;
E.g., offset == 260, maxOffset == 270, Options::MaxFieldLimit() == 256 ==> offset = 4
E.g., offset == 100, maxOffset == 98, Options::MaxFieldLimit() == 256 ==> offset = 2
E.g., offset == 100, maxOffset == 98, Options::MaxFieldLimit() == 256 ==> offset = 97
Definition at line 188 of file IRGraph.cpp.
|
inline |
|
inline |
Get a reference to the components of struct_info. Number of flattened elements of an array or struct
Definition at line 169 of file IRGraph.cpp.
u32_t IRGraph::getObjectNodeNum | ( | ) |
|
inline |
struct A { int id; int salary; }; struct B { char name[20]; struct A a;} B b; OriginalElemType of b with field_idx 1 : Struct A FlatternedElemType of b with field_idx 1 : int
Definition at line 139 of file IRGraph.cpp.
|
inline |
|
inline |
|
inline |
GetReturnNode - Return the unique node representing the return value of a function.
Definition at line 60 of file IRGraph.cpp.
|
inline |
|
inline |
u32_t IRGraph::getValueNodeNum | ( | ) |
getVarargNode - Return the unique node representing the variadic argument of a variadic function.
Definition at line 67 of file IRGraph.cpp.
|
protected |
Return true if this labeled edge exits, including store, call and load two store edge can have same dst and src but located in different basic blocks, thus flags are needed to distinguish them
Return an inter-procedural edge if found
Definition at line 296 of file IRGraph.cpp.
|
protected |
Return MultiOpndStmt since it has more than one operands (we use operand 2 here to make the flag)
Return an MultiOpndStmt if found
Definition at line 282 of file IRGraph.cpp.
|
protected |
Return true if it is an intra-procedural edge
Definition at line 268 of file IRGraph.cpp.
|
inline |
Get different kinds of syms maps.
|
inline |
|
inline |
|
inline |
Debug method.
All rest types are scalar type?
Definition at line 73 of file IRGraph.cpp.
|
inline |
|
inline |
|
inline |
void IRGraph::view | ( | ) |
View graph from the debugger.
View IRGraph
Definition at line 318 of file IRGraph.cpp.
|
friend |
|
friend |
|
protected |
|
protected |
|
protected |
u32_t SVF::IRGraph::maxStSize |
|
protected |
|
private |
|
private |
|
private |
(owned) All SVF Types Every type T is mapped to StInfo which contains size (fsize) , offset(foffset) fsize[i] is the number of fields in the largest such struct, else fsize[i] = 1. fsize[0] is always the size of the expanded struct.
|
private |
|
private |