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

#include <IRGraph.h>

Inheritance diagram for SVF::IRGraph:
SVF::GenericGraph< SVFVar, SVFStmt > SVF::SVFIR

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 *, NodeIDFunObjVarToIDMapTy
 function to sym id map
 
typedef Set< const SVFType * > SVFTypeSet
 struct type to struct info map
 
typedef Set< const SVFStmt * > SVFStmtSet
 
- Public Types inherited from SVF::GenericGraph< SVFVar, SVFStmt >
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
 

Public Member Functions

 IRGraph (bool buildFromFile)
 
virtual ~IRGraph ()
 
bool isBuiltFromFile ()
 Whether this SVFIR built from a txt file.
 
NodeID blkPtrSymID () const
 
NodeID nullPtrSymID () const
 
NodeID constantSymID () const
 
NodeID blackholeSymID () const
 
u32_t getTotalSymNum () const
 Statistics.
 
u32_t getMaxStructSize () const
 
IDToTypeInfoMapTyidToObjTypeInfoMap ()
 Get different kinds of syms maps.
 
const IDToTypeInfoMapTyidToObjTypeInfoMap () const
 
FunObjVarToIDMapTyretFunObjSyms ()
 
FunObjVarToIDMapTyvarargFunObjSyms ()
 
ObjTypeInfogetObjTypeInfo (NodeID id) const
 
NodeID getReturnNode (const FunObjVar *func) const
 GetReturnNode - Return the unique node representing the return value of a function.
 
NodeID getVarargNode (const FunObjVar *func) const
 getVarargNode - Return the unique node representing the variadic argument of a variadic function.
 
NodeID getBlackHoleNode () const
 
NodeID getConstantNode () const
 
NodeID getBlkPtr () const
 
NodeID getNullPtr () const
 
u32_t getValueNodeNum ()
 
u32_t getObjectNodeNum ()
 
const SVFTypeSetgetSVFTypes () const
 Constant reader that won't change the state of the symbol table.
 
const Set< const StInfo * > & getStInfos () const
 
virtual APOffset getModulusOffset (const BaseObjVar *baseObj, const APOffset &apOffset)
 Given an offset from a Gep Instruction, return it modulus offset by considering memory layout.
 
const StInfogetTypeInfo (const SVFType *T) const
 Get struct info.
 
bool hasSVFTypeInfo (const SVFType *T)
 
ObjTypeInfocreateObjTypeInfo (const SVFType *type)
 Create an objectInfo based on LLVM type (value is null, and type could be null, representing a dummy object)
 
const ObjTypeInfocreateDummyObjTypeInfo (NodeID symId, const SVFType *type)
 
u32_t getNumOfFlattenElements (const SVFType *T)
 
u32_t getFlattenedElemIdx (const SVFType *T, u32_t origId)
 Flattened element idx of an array or struct by considering stride.
 
const SVFTypegetFlatternedElemType (const SVFType *baseType, u32_t flatten_idx)
 Return the type of a flattened element given a flattened index.
 
const SVFTypegetOriginalElemType (const SVFType *baseType, u32_t origId) const
 
void printFlattenFields (const SVFType *type)
 Debug method.
 
u32_t getNodeNumAfterPAGBuild () const
 
void setNodeNumAfterPAGBuild (u32_t num)
 
u32_t getPAGNodeNum () const
 
u32_t getPAGEdgeNum () const
 
u32_t getPTAPAGEdgeNum () const
 
std::string getGraphName () const
 Return graph name.
 
void dumpSymTable ()
 
void dump (std::string name)
 Dump SVFIR.
 
void view ()
 View graph from the debugger.
 
void addTypeInfo (const SVFType *ty)
 
void addStInfo (StInfo *stInfo)
 
- Public Member Functions inherited from SVF::GenericGraph< SVFVar, SVFStmt >
 GenericGraph ()
 Constructor.
 
virtual ~GenericGraph ()
 Destructor.
 
void destroy ()
 Release memory.
 
iterator begin ()
 Iterators.
 
const_iterator begin () const
 
iterator end ()
 
const_iterator end () const
 
void addGNode (NodeID id, NodeType *node)
 Add a Node.
 
NodeTypegetGNode (NodeID id) const
 Get a node.
 
bool hasGNode (NodeID id) const
 Has a node.
 
void removeGNode (NodeType *node)
 Delete a node.
 
u32_t getTotalNodeNum () const
 Get total number of node/edge.
 
u32_t getTotalEdgeNum () const
 
void incNodeNum ()
 Increase number of node/edge.
 
void incEdgeNum ()
 

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 SVFTypemaxStruct
 The struct type with the most fields.
 
u32_t maxStSize
 The number of fields in max_struct.
 
- Public Attributes inherited from SVF::GenericGraph< SVFVar, SVFStmt >
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.
 
SVFStmthasNonlabeledEdge (SVFVar *src, SVFVar *dst, SVFStmt::PEDGEK kind)
 
SVFStmthasLabeledEdge (SVFVar *src, SVFVar *dst, SVFStmt::PEDGEK kind, const ICFGNode *cs)
 
SVFStmthasLabeledEdge (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
 
- Protected Attributes inherited from SVF::GenericGraph< SVFVar, SVFStmt >
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
 

Detailed Description

Definition at line 51 of file IRGraph.h.

Member Typedef Documentation

◆ FunObjVarToIDMapTy

function to sym id map

Definition at line 79 of file IRGraph.h.

◆ IDToTypeInfoMapTy

various maps defined

sym id to obj type info map

Definition at line 76 of file IRGraph.h.

◆ SVFStmtSet

Definition at line 106 of file IRGraph.h.

◆ SVFTypeSet

struct type to struct info map

Definition at line 82 of file IRGraph.h.

Member Enumeration Documentation

◆ SYMTYPE

Symbol types.

Enumerator
NullPtr 
BlkPtr 
BlackHole 
ConstantObj 
ValSymbol 
ObjSymbol 
RetSymbol 
VarargSymbol 

Definition at line 61 of file IRGraph.h.

62 {
63 NullPtr,
64 BlkPtr,
71 };

Constructor & Destructor Documentation

◆ IRGraph()

SVF::IRGraph::IRGraph ( bool  buildFromFile)
inline

Definition at line 140 of file IRGraph.h.

142 maxStruct(nullptr), maxStSize(0)
143 {
144 }
const SVFType * maxStruct
The struct type with the most fields.
Definition IRGraph.h:351
u32_t valVarNum
Definition IRGraph.h:114
bool fromFile
Whether the SVFIR is built according to user specified data from a txt file.
Definition IRGraph.h:111
NodeID nodeNumAfterPAGBuild
initial node number after building SVFIR, excluding later added nodes, e.g., gepobj nodes
Definition IRGraph.h:112
NodeID totalSymNum
total number of symbols
Definition IRGraph.h:101
u32_t objVarNum
Definition IRGraph.h:115
u32_t totalPTAPAGEdge
Definition IRGraph.h:113
u32_t maxStSize
The number of fields in max_struct.
Definition IRGraph.h:354
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

◆ ~IRGraph()

IRGraph::~IRGraph ( )
virtual

Definition at line 54 of file IRGraph.cpp.

55{
57}
void destorySymTable()
Definition IRGraph.cpp:36

Member Function Documentation

◆ addEdge()

bool IRGraph::addEdge ( SVFVar src,
SVFVar dst,
SVFStmt edge 
)
protected

Add an edge into the graph.

Add a SVFIR edge into edge map

Definition at line 253 of file IRGraph.cpp.

254{
255
257 outs() << "add edge from " << src->getId() << " kind :"
258 << src->getNodeKind() << " to " << dst->getId()
259 << " kind :" << dst->getNodeKind() << "\n");
260 src->addOutEdge(edge);
261 dst->addInEdge(edge);
262 return true;
263}
#define DBOUT(TYPE, X)
LLVM debug macros, define type of your DBUG model of each pass.
Definition SVFType.h:498
#define DPAGBuild
Definition SVFType.h:506
NodeID getId() const
Get ID.
Definition SVFValue.h:158
GNodeK getNodeKind() const
Get node kind.
Definition SVFValue.h:164
void addOutEdge(SVFStmt *outEdge)
void addInEdge(SVFStmt *inEdge)
Edge management methods.
std::ostream & outs()
Overwrite llvm::outs()
Definition SVFUtil.h:52

◆ addNode()

NodeID SVF::IRGraph::addNode ( SVFVar node)
inlineprotected

Add a node into the graph.

Definition at line 118 of file IRGraph.h.

119 {
120 assert(node && "cannot add a null node");
121 addGNode(node->getId(),node);
122 return node->getId();
123 }
void addGNode(NodeID id, NodeType *node)
Add a Node.

◆ addStInfo()

void SVF::IRGraph::addStInfo ( StInfo stInfo)
inline

Definition at line 363 of file IRGraph.h.

364 {
365 stInfos.insert(stInfo);
366 }
Set< const StInfo * > stInfos
(owned) All StInfo
Definition IRGraph.h:98

◆ addTypeInfo()

void SVF::IRGraph::addTypeInfo ( const SVFType ty)
inline

Definition at line 356 of file IRGraph.h.

357 {
358 bool inserted = svfTypes.insert(ty).second;
359 if(!inserted)
360 assert(false && "this type info has been added before");
361 }
SVFTypeSet svfTypes
Definition IRGraph.h:95

◆ blackholeSymID()

NodeID SVF::IRGraph::blackholeSymID ( ) const
inline

Definition at line 193 of file IRGraph.h.

194 {
195 return BlackHole;
196 }

◆ blkPtrSymID()

NodeID SVF::IRGraph::blkPtrSymID ( ) const
inline

Definition at line 178 of file IRGraph.h.

179 {
180 return BlkPtr;
181 }

◆ constantSymID()

NodeID SVF::IRGraph::constantSymID ( ) const
inline

Definition at line 188 of file IRGraph.h.

189 {
190 return ConstantObj;
191 }

◆ createDummyObjTypeInfo()

const ObjTypeInfo * IRGraph::createDummyObjTypeInfo ( NodeID  symId,
const SVFType type 
)

Definition at line 177 of file IRGraph.cpp.

178{
179 if (objTypeInfoMap.find(symId)==objTypeInfoMap.end())
180 {
183 }
185 return ti;
186}
newitem type
Definition cJSON.cpp:2739
ObjTypeInfo * createObjTypeInfo(const SVFType *type)
Create an objectInfo based on LLVM type (value is null, and type could be null, representing a dummy ...
Definition IRGraph.cpp:231
IDToTypeInfoMapTy objTypeInfoMap
map a memory sym id to its obj
Definition IRGraph.h:88

◆ createObjTypeInfo()

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.

232{
233
235 if(type && type->isPointerTy())
236 {
238 }
239 return typeInfo;
240}
void setFlag(MEMTYPE mask)
Flag for this object type.
static const Option< u32_t > MaxFieldLimit
Maximum number of field derivations for an object.
Definition Options.h:38

◆ destorySymTable()

void IRGraph::destorySymTable ( )
private

Definition at line 36 of file IRGraph.cpp.

37{
38
39 for (auto &pair: objTypeInfoMap)
40 {
41 if (ObjTypeInfo* ti = pair.second)
42 delete ti;
43 }
44
45 for (const SVFType* type : svfTypes)
47 svfTypes.clear();
48
49 for (const StInfo* st : stInfos)
50 delete st;
51 stInfos.clear();
52}

◆ dump()

void IRGraph::dump ( std::string  name)

Dump SVFIR.

Dump this IRGraph

Definition at line 310 of file IRGraph.cpp.

311{
313}
const char *const name
Definition cJSON.h:264
static void WriteGraphToFile(SVF::OutStream &O, const std::string &GraphName, const GraphType &GT, bool simple=false)

◆ dumpSymTable()

void SVF::IRGraph::dumpSymTable ( )

◆ getBlackHoleNode()

NodeID SVF::IRGraph::getBlackHoleNode ( ) const
inline

Definition at line 247 of file IRGraph.h.

248 {
249 return blackholeSymID();
250 }
NodeID blackholeSymID() const
Definition IRGraph.h:193

◆ getBlkPtr()

NodeID SVF::IRGraph::getBlkPtr ( ) const
inline

Definition at line 255 of file IRGraph.h.

256 {
257 return blkPtrSymID();
258 }
NodeID blkPtrSymID() const
Definition IRGraph.h:178

◆ getConstantNode()

NodeID SVF::IRGraph::getConstantNode ( ) const
inline

Definition at line 251 of file IRGraph.h.

252 {
253 return constantSymID();
254 }
NodeID constantSymID() const
Definition IRGraph.h:188

◆ getFlattenedElemIdx()

u32_t IRGraph::getFlattenedElemIdx ( const SVFType T,
u32_t  origId 
)

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.

145{
147 {
148 const std::vector<u32_t>& so = getTypeInfo(T)->getFlattenedElemIdxVec();
149 assert ((unsigned)origId < so.size() && !so.empty() && "element index out of bounds, can't get flattened index!");
150 return so[origId];
151 }
152 else
153 {
154 if(SVFUtil::isa<SVFStructType>(T))
155 {
156 const std::vector<u32_t>& so = getTypeInfo(T)->getFlattenedFieldIdxVec();
157 assert ((unsigned)origId < so.size() && !so.empty() && "Struct index out of bounds, can't get flattened index!");
158 return so[origId];
159 }
160 else
161 {
163 assert(SVFUtil::isa<SVFArrayType>(T) && "Only accept struct or array type if Options::ModelArrays is disabled!");
164 return 0;
165 }
166 }
167}
const StInfo * getTypeInfo(const SVFType *T) const
Get struct info.
Definition IRGraph.cpp:242
static Option< bool > ModelArrays
Definition Options.h:188
std::vector< u32_t > & getFlattenedElemIdxVec()
Definition SVFType.h:98
std::vector< u32_t > & getFlattenedFieldIdxVec()
Definition SVFType.h:94

◆ getFlattenFieldTypes()

const std::vector< const SVFType * > & IRGraph::getFlattenFieldTypes ( const SVFStructType T)
protected

Return the flattened field type for struct type only.

Definition at line 118 of file IRGraph.cpp.

119{
121}
std::vector< const SVFType * > & getFlattenFieldTypes()
Definition SVFType.h:106

◆ getFlatternedElemType()

const SVFType * IRGraph::getFlatternedElemType ( const SVFType baseType,
u32_t  flatten_idx 
)

Return the type of a flattened element given a flattened index.

Definition at line 123 of file IRGraph.cpp.

124{
126 {
127 const std::vector<const SVFType*>& so = getTypeInfo(baseType)->getFlattenElementTypes();
128 assert (flatten_idx < so.size() && !so.empty() && "element index out of bounds or struct opaque type, can't get element type!");
129 return so[flatten_idx];
130 }
131 else
132 {
133 const std::vector<const SVFType*>& so = getTypeInfo(baseType)->getFlattenFieldTypes();
134 assert (flatten_idx < so.size() && !so.empty() && "element index out of bounds or struct opaque type, can't get element type!");
135 return so[flatten_idx];
136 }
137}
std::vector< const SVFType * > & getFlattenElementTypes()
Definition SVFType.h:102

◆ getGraphName()

std::string SVF::IRGraph::getGraphName ( ) const
inline

Return graph name.

Definition at line 335 of file IRGraph.h.

336 {
337 return "SVFIR";
338 }

◆ getMaxStructSize()

u32_t SVF::IRGraph::getMaxStructSize ( ) const
inline

Definition at line 204 of file IRGraph.h.

205 {
206 return maxStSize;
207 }

◆ getModulusOffset()

APOffset IRGraph::getModulusOffset ( const BaseObjVar baseObj,
const APOffset apOffset 
)
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.

189{
193
194 APOffset offset = apOffset;
195 if(offset < 0)
196 {
197 writeWrnMsg("try to create a gep node with negative offset.");
198 offset = std::abs(offset);
199 }
200 u32_t maxOffset = baseObj->getMaxFieldOffsetLimit();
201
207 if (maxOffset == 0)
208 offset = 0;
214 else if ((u32_t)offset > maxOffset - 1)
215 {
221 else
225 offset = maxOffset - 1;
226 }
227
228 return offset;
229}
unsigned u32_t
Definition CommandLine.h:18
buffer offset
Definition cJSON.cpp:1113
static const Option< bool > CyclicFldIdx
Definition Options.h:189
void writeWrnMsg(const std::string &msg)
Writes a message run through wrnMsg.
Definition SVFUtil.cpp:68
s64_t APOffset
Definition GeneralType.h:60

◆ getNodeNumAfterPAGBuild()

u32_t SVF::IRGraph::getNodeNumAfterPAGBuild ( ) const
inline

Definition at line 313 of file IRGraph.h.

314 {
316 }

◆ getNullPtr()

NodeID SVF::IRGraph::getNullPtr ( ) const
inline

Definition at line 259 of file IRGraph.h.

260 {
261 return nullPtrSymID();
262 }
NodeID nullPtrSymID() const
Definition IRGraph.h:183

◆ getNumOfFlattenElements()

u32_t IRGraph::getNumOfFlattenElements ( const SVFType T)

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.

170{
173 else
175}
u32_t getNumOfFlattenElements() const
Return number of elements after flattening (including array elements)
Definition SVFType.h:139
u32_t getNumOfFlattenFields() const
Return the number of fields after flattening (ignoring array elements)
Definition SVFType.h:145

◆ getObjectNodeNum()

u32_t IRGraph::getObjectNodeNum ( )

Definition at line 337 of file IRGraph.cpp.

338{
339 if (objVarNum != 0) return objVarNum;
340 u32_t num = 0;
341 for (const auto& item: *this)
342 {
343 if (SVFUtil::isa<ObjVar>(item.second))
344 num++;
345 }
346 return objVarNum = num;
347}
cJSON * item
Definition cJSON.h:222

◆ getObjTypeInfo()

ObjTypeInfo * SVF::IRGraph::getObjTypeInfo ( NodeID  id) const
inline

Definition at line 234 of file IRGraph.h.

235 {
236 IDToTypeInfoMapTy::const_iterator iter = objTypeInfoMap.find(id);
237 assert(iter!=objTypeInfoMap.end() && "obj type info not found");
238 return iter->second;
239 }

◆ getOriginalElemType()

const SVFType * IRGraph::getOriginalElemType ( const SVFType baseType,
u32_t  origId 
) const

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.

140{
142}
const SVFType * getOriginalElemType(u32_t fldIdx) const
Definition SVFValue.cpp:31

◆ getPAGEdgeNum()

u32_t SVF::IRGraph::getPAGEdgeNum ( ) const
inline

Definition at line 326 of file IRGraph.h.

327 {
328 return edgeNum;
329 }

◆ getPAGNodeNum()

u32_t SVF::IRGraph::getPAGNodeNum ( ) const
inline

Definition at line 322 of file IRGraph.h.

323 {
324 return nodeNum;
325 }

◆ getPTAPAGEdgeNum()

u32_t SVF::IRGraph::getPTAPAGEdgeNum ( ) const
inline

Definition at line 330 of file IRGraph.h.

331 {
332 return totalPTAPAGEdge;
333 }

◆ getReturnNode()

NodeID IRGraph::getReturnNode ( const FunObjVar func) const

GetReturnNode - Return the unique node representing the return value of a function.

Definition at line 60 of file IRGraph.cpp.

61{
62 FunObjVarToIDMapTy::const_iterator iter = returnFunObjSymMap.find(func);
63 assert(iter!=returnFunObjSymMap.end() && "ret sym not found");
64 return iter->second;
65}
FunObjVarToIDMapTy returnFunObjSymMap
return map
Definition IRGraph.h:86

◆ getStInfos()

const Set< const StInfo * > & SVF::IRGraph::getStInfos ( ) const
inline

Definition at line 275 of file IRGraph.h.

276 {
277 return stInfos;
278 }

◆ getSVFTypes()

const SVFTypeSet & SVF::IRGraph::getSVFTypes ( ) const
inline

Constant reader that won't change the state of the symbol table.

Definition at line 270 of file IRGraph.h.

271 {
272 return svfTypes;
273 }

◆ getTotalSymNum()

u32_t SVF::IRGraph::getTotalSymNum ( ) const
inline

Statistics.

Definition at line 200 of file IRGraph.h.

201 {
202 return totalSymNum;
203 }

◆ getTypeInfo()

const StInfo * IRGraph::getTypeInfo ( const SVFType T) const

Get struct info.

Get a reference to StructInfo.

Definition at line 242 of file IRGraph.cpp.

243{
244 assert(T);
245 SVFTypeSet::const_iterator it = svfTypes.find(T);
246 assert(it != svfTypes.end() && "type info not found? collect them first during SVFIR Building");
247 return (*it)->getTypeInfo();
248}

◆ getValueNodeNum()

u32_t IRGraph::getValueNodeNum ( )

Definition at line 324 of file IRGraph.cpp.

325{
326 if (valVarNum != 0) return valVarNum;
327 u32_t num = 0;
328 for (const auto& item: *this)
329 {
330 if (SVFUtil::isa<ValVar>(item.second))
331 num++;
332 }
333 return valVarNum = num;
334}

◆ getVarargNode()

NodeID IRGraph::getVarargNode ( const FunObjVar func) const

getVarargNode - Return the unique node representing the variadic argument of a variadic function.

Definition at line 67 of file IRGraph.cpp.

68{
69 FunObjVarToIDMapTy::const_iterator iter = varargFunObjSymMap.find(func);
70 assert(iter!=varargFunObjSymMap.end() && "vararg sym not found");
71 return iter->second;
72}
FunObjVarToIDMapTy varargFunObjSymMap
vararg map
Definition IRGraph.h:87

◆ hasLabeledEdge() [1/2]

SVFStmt * IRGraph::hasLabeledEdge ( SVFVar src,
SVFVar dst,
SVFStmt::PEDGEK  kind,
const ICFGNode callInst 
)
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.

297{
298 SVFStmt edge(src,dst,SVFStmt::makeEdgeFlagWithCallInst(kind,callInst), false);
299 SVFStmt::SVFStmtSetTy::iterator it = KindToSVFStmtSetMap[kind].find(&edge);
300 if (it != KindToSVFStmtSetMap[kind].end())
301 {
302 return *it;
303 }
304 return nullptr;
305}
SVFStmt::KindToSVFStmtMapTy KindToSVFStmtSetMap
SVFIR edge map containing all PAGEdges.
Definition IRGraph.h:109
static GEdgeFlag makeEdgeFlagWithCallInst(GEdgeKind k, const ICFGNode *cs)

◆ hasLabeledEdge() [2/2]

SVFStmt * IRGraph::hasLabeledEdge ( SVFVar src,
SVFVar op1,
SVFStmt::PEDGEK  kind,
const SVFVar op2 
)
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.

283{
285 SVFStmt::SVFStmtSetTy::iterator it = KindToSVFStmtSetMap[kind].find(&edge);
286 if (it != KindToSVFStmtSetMap[kind].end())
287 {
288 return *it;
289 }
290 return nullptr;
291}
static GEdgeFlag makeEdgeFlagWithAddionalOpnd(GEdgeKind k, const SVFVar *var)

◆ hasNonlabeledEdge()

SVFStmt * IRGraph::hasNonlabeledEdge ( SVFVar src,
SVFVar dst,
SVFStmt::PEDGEK  kind 
)
protected

Return true if it is an intra-procedural edge

Definition at line 268 of file IRGraph.cpp.

269{
270 SVFStmt edge(src,dst,kind, false);
271 SVFStmt::SVFStmtSetTy::iterator it = KindToSVFStmtSetMap[kind].find(&edge);
272 if (it != KindToSVFStmtSetMap[kind].end())
273 {
274 return *it;
275 }
276 return nullptr;
277}

◆ hasSVFTypeInfo()

bool SVF::IRGraph::hasSVFTypeInfo ( const SVFType T)
inline

Definition at line 286 of file IRGraph.h.

287 {
288 return svfTypes.find(T) != svfTypes.end();
289 }

◆ idToObjTypeInfoMap() [1/2]

IDToTypeInfoMapTy & SVF::IRGraph::idToObjTypeInfoMap ( )
inline

Get different kinds of syms maps.

Definition at line 212 of file IRGraph.h.

213 {
214 return objTypeInfoMap;
215 }

◆ idToObjTypeInfoMap() [2/2]

const IDToTypeInfoMapTy & SVF::IRGraph::idToObjTypeInfoMap ( ) const
inline

Definition at line 217 of file IRGraph.h.

218 {
219 return objTypeInfoMap;
220 }

◆ isBlkObj()

static bool SVF::IRGraph::isBlkObj ( NodeID  id)
inlinestatic

Definition at line 165 of file IRGraph.h.

166 {
167 return (id == BlackHole);
168 }

◆ isBlkObjOrConstantObj()

static bool SVF::IRGraph::isBlkObjOrConstantObj ( NodeID  id)
inlinestatic

Definition at line 173 of file IRGraph.h.

174 {
175 return (isBlkObj(id) || isConstantSym(id));
176 }
static bool isBlkObj(NodeID id)
Definition IRGraph.h:165
static bool isConstantSym(NodeID id)
Definition IRGraph.h:169

◆ isBlkPtr()

static bool SVF::IRGraph::isBlkPtr ( NodeID  id)
inlinestatic

special value

Definition at line 157 of file IRGraph.h.

158 {
159 return (id == BlkPtr);
160 }

◆ isBuiltFromFile()

bool SVF::IRGraph::isBuiltFromFile ( )
inline

Whether this SVFIR built from a txt file.

Definition at line 150 of file IRGraph.h.

151 {
152 return fromFile;
153 }

◆ isConstantSym()

static bool SVF::IRGraph::isConstantSym ( NodeID  id)
inlinestatic

Definition at line 169 of file IRGraph.h.

170 {
171 return (id == ConstantObj);
172 }

◆ isNullPtr()

static bool SVF::IRGraph::isNullPtr ( NodeID  id)
inlinestatic

Definition at line 161 of file IRGraph.h.

162 {
163 return (id == NullPtr);
164 }

◆ nullPtrSymID()

NodeID SVF::IRGraph::nullPtrSymID ( ) const
inline

Definition at line 183 of file IRGraph.h.

184 {
185 return NullPtr;
186 }

◆ printFlattenFields()

void IRGraph::printFlattenFields ( const SVFType type)

Debug method.

All rest types are scalar type?

Definition at line 73 of file IRGraph.cpp.

74{
75 if (const SVFArrayType* at = SVFUtil::dyn_cast<SVFArrayType>(type))
76 {
77 outs() << " {Type: " << *at << "}\n"
78 << "\tarray type "
79 << "\t [element size = " << getNumOfFlattenElements(at) << "]\n"
80 << "\n";
81 }
82 else if (const SVFStructType *st = SVFUtil::dyn_cast<SVFStructType>(type))
83 {
84 outs() <<" {Type: " << *st << "}\n";
85 const std::vector<const SVFType*>& finfo = getTypeInfo(st)->getFlattenFieldTypes();
86 int field_idx = 0;
87 for(const SVFType* type : finfo)
88 {
89 outs() << " \tField_idx = " << ++field_idx
90 << ", field type: " << *type << "\n";
91 }
92 outs() << "\n";
93 }
94 else if (const SVFPointerType* pt= SVFUtil::dyn_cast<SVFPointerType>(type))
95 {
96 outs() << *pt << "\n";
97 }
98 else if (const SVFFunctionType* fu =
99 SVFUtil::dyn_cast<SVFFunctionType>(type))
100 {
101 outs() << " {Type: " << *fu << "}\n\n";
102 }
103 else if (const SVFOtherType* ot = SVFUtil::dyn_cast<SVFOtherType>(type))
104 {
105 outs() << " {Type: "<< *ot << "(SVFOtherType)}\n\n";
106 }
107 else
108 {
109 assert(type->isSingleValueType() && "not a single value type, then what else!!");
112 outs() << " {Type: " << *type << "}\n"
113 << "\t [object size = " << eSize << "]\n"
114 << "\n";
115 }
116}
u32_t getNumOfFlattenElements(const SVFType *T)
Definition IRGraph.cpp:169

◆ retFunObjSyms()

FunObjVarToIDMapTy & SVF::IRGraph::retFunObjSyms ( )
inline

Definition at line 222 of file IRGraph.h.

223 {
224 return returnFunObjSymMap;
225 }

◆ setNodeNumAfterPAGBuild()

void SVF::IRGraph::setNodeNumAfterPAGBuild ( u32_t  num)
inline

Definition at line 317 of file IRGraph.h.

318 {
320 }

◆ varargFunObjSyms()

FunObjVarToIDMapTy & SVF::IRGraph::varargFunObjSyms ( )
inline

Definition at line 227 of file IRGraph.h.

228 {
229 return varargFunObjSymMap;
230 }

◆ view()

void IRGraph::view ( )

View graph from the debugger.

View IRGraph

Definition at line 318 of file IRGraph.cpp.

319{
320 SVF::ViewGraph(this, "ProgramAssignmentGraph");
321}
void ViewGraph(const GraphType &G, const std::string &name, bool ShortNames=false, GraphProgram::Name Program=GraphProgram::DOT)

Friends And Related Symbol Documentation

◆ SVFIRBuilder

Definition at line 55 of file IRGraph.h.

◆ SVFIRReader

friend class SVFIRReader
friend

Definition at line 54 of file IRGraph.h.

◆ SVFIRWriter

friend class SVFIRWriter
friend

Definition at line 53 of file IRGraph.h.

◆ SymbolTableBuilder

Definition at line 56 of file IRGraph.h.

Member Data Documentation

◆ fromFile

bool SVF::IRGraph::fromFile
protected

Whether the SVFIR is built according to user specified data from a txt file.

Definition at line 111 of file IRGraph.h.

◆ KindToPTASVFStmtSetMap

SVFStmt::KindToSVFStmtMapTy SVF::IRGraph::KindToPTASVFStmtSetMap
protected

SVFIR edge map containing only pointer-related edges, i.e., both LHS and RHS are of pointer type.

Definition at line 110 of file IRGraph.h.

◆ KindToSVFStmtSetMap

SVFStmt::KindToSVFStmtMapTy SVF::IRGraph::KindToSVFStmtSetMap
protected

SVFIR edge map containing all PAGEdges.

Definition at line 109 of file IRGraph.h.

◆ maxStruct

const SVFType* SVF::IRGraph::maxStruct

The struct type with the most fields.

Definition at line 351 of file IRGraph.h.

◆ maxStSize

u32_t SVF::IRGraph::maxStSize

The number of fields in max_struct.

Definition at line 354 of file IRGraph.h.

◆ nodeNumAfterPAGBuild

NodeID SVF::IRGraph::nodeNumAfterPAGBuild
protected

initial node number after building SVFIR, excluding later added nodes, e.g., gepobj nodes

Definition at line 112 of file IRGraph.h.

◆ objTypeInfoMap

IDToTypeInfoMapTy SVF::IRGraph::objTypeInfoMap
private

map a memory sym id to its obj

Definition at line 88 of file IRGraph.h.

◆ objVarNum

u32_t SVF::IRGraph::objVarNum
protected

Definition at line 115 of file IRGraph.h.

◆ returnFunObjSymMap

FunObjVarToIDMapTy SVF::IRGraph::returnFunObjSymMap
private

return map

Definition at line 86 of file IRGraph.h.

◆ stInfos

Set<const StInfo*> SVF::IRGraph::stInfos
private

(owned) All StInfo

Definition at line 98 of file IRGraph.h.

◆ svfTypes

SVFTypeSet SVF::IRGraph::svfTypes
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.

Definition at line 95 of file IRGraph.h.

◆ totalPTAPAGEdge

u32_t SVF::IRGraph::totalPTAPAGEdge
protected

Definition at line 113 of file IRGraph.h.

◆ totalSymNum

NodeID SVF::IRGraph::totalSymNum
private

total number of symbols

Definition at line 101 of file IRGraph.h.

◆ valVarNum

u32_t SVF::IRGraph::valVarNum
protected

Definition at line 114 of file IRGraph.h.

◆ varargFunObjSymMap

FunObjVarToIDMapTy SVF::IRGraph::varargFunObjSymMap
private

vararg map

Definition at line 87 of file IRGraph.h.


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