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

#include <PAGBuilderFromFile.h>

Public Member Functions

 PAGBuilderFromFile (std::string f)
 Constructor.
 
 ~PAGBuilderFromFile ()
 Destructor.
 
SVFIRgetPAG () const
 Return SVFIR.
 
std::string getFileName () const
 Return file name.
 
SVFIRbuild ()
 Start building.
 
void addEdge (NodeID nodeSrc, NodeID nodeDst, APOffset offset, std::string edge)
 

Private Attributes

SVFIRpag
 
std::string file
 

Detailed Description

Build SVFIR from a user specified file (for debugging purpose)

Definition at line 41 of file PAGBuilderFromFile.h.

Constructor & Destructor Documentation

◆ PAGBuilderFromFile()

SVF::PAGBuilderFromFile::PAGBuilderFromFile ( std::string  f)
inline

Constructor.

Definition at line 49 of file PAGBuilderFromFile.h.

49 :
50 pag(SVFIR::getPAG(true)), file(f)
51 {
52 }
static SVFIR * getPAG(bool buildFromFile=false)
Singleton design here to make sure we only have one instance during any analysis.
Definition SVFIR.h:116
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

◆ ~PAGBuilderFromFile()

SVF::PAGBuilderFromFile::~PAGBuilderFromFile ( )
inline

Destructor.

Definition at line 54 of file PAGBuilderFromFile.h.

55 {
56 }

Member Function Documentation

◆ addEdge()

void PAGBuilderFromFile::addEdge ( NodeID  srcID,
NodeID  dstID,
APOffset  offsetOrCSId,
std::string  edge 
)

Add SVFIR edge according to a file format

sanity check for SVFIR from txt

Definition at line 147 of file PAGBuilderFromFile.cpp.

149{
150
151 //check whether these two nodes available
154
156 assert(SVFUtil::isa<ValVar>(dstNode) && "dst not an value node?");
157 if(edge=="addr")
158 assert(SVFUtil::isa<ObjVar>(srcNode) && "src not an value node?");
159 else
160 assert(!SVFUtil::isa<ObjVar>(srcNode) && "src not an object node?");
161
162 if (edge == "addr")
163 {
165 }
166 if (edge.rfind("copy-", 0) == 0)
167 {
168 // the enum is COPYVAL, ZEXT, SEXT, BITCAST, TRUNC, FPTRUNC,
170 std::string opType = edge.substr(5); // start substring from 5th char
171
172 if (opType == "COPYVAL")
173 {
175 }
176 else if (opType == "ZEXT")
177 {
179 }
180 else if (opType == "SEXT")
181 {
183 }
184 else if (opType == "BITCAST")
185 {
187 }
188 else if (opType == "TRUNC")
189 {
191 }
192 else if (opType == "FPTRUNC")
193 {
195 }
196 else if (opType == "FPTOUI")
197 {
199 }
200 else if (opType == "FPTOSI")
201 {
203 }
204 else if (opType == "UITOFP")
205 {
207 }
208 else if (opType == "SITOFP")
209 {
211 }
212 else if (opType == "INTTOPTR")
213 {
215 }
216 else if (opType == "PTRTOINT")
217 {
219 }
220 else
221 {
222 assert(false && "format not support, can not create such edge");
223 }
224 }
225 else if (edge == "load")
227 else if (edge == "store")
228 pag->addStoreStmt(srcID, dstID, nullptr);
229 else if (edge == "gep")
231 else if (edge == "variant-gep")
233 else if (edge == "call")
234 pag->addEdge(srcNode, dstNode, new CallPE(srcNode, dstNode, nullptr, nullptr));
235 else if (edge == "ret")
236 pag->addEdge(srcNode, dstNode, new RetPE(srcNode, dstNode, nullptr,nullptr));
237 else if (edge == "cmp")
239 else if (edge == "binary-op")
241 else if (edge == "unary-op")
243 else if (edge == "phi")
244 assert(false && "fix phi here!");
245 else if (edge == "select")
246 assert(false && "fix select here!");
247 else if (edge == "branch")
248 {
249 assert(false && "fix successors here!");
250 //pag->addBranchStmt(srcID, dstID, nullptr);
251 }
252 else
253 assert(false && "format not support, can not create such edge");
254}
NodeType * getGNode(NodeID id) const
Get a node.
bool addEdge(SVFVar *src, SVFVar *dst, SVFStmt *edge)
Add an edge into the graph.
Definition IRGraph.cpp:253
GepStmt * addVariantGepStmt(NodeID src, NodeID dst, const AccessPath &ap)
Add Variant(Gep) edge.
Definition SVFIR.cpp:382
CopyStmt * addCopyStmt(NodeID src, NodeID dst, CopyStmt::CopyKind type)
Add Copy edge.
Definition SVFIR.cpp:81
LoadStmt * addLoadStmt(NodeID src, NodeID dst)
Add Load edge.
Definition SVFIR.cpp:221
GepStmt * addNormalGepStmt(NodeID src, NodeID dst, const AccessPath &ap)
Add Offset(Gep) edge.
Definition SVFIR.cpp:363
CmpStmt * addCmpStmt(NodeID op1, NodeID op2, NodeID dst, u32_t predict)
Add Copy edge.
Definition SVFIR.cpp:144
AddrStmt * addAddrStmt(NodeID src, NodeID dst)
Add an edge into SVFIR.
Definition SVFIR.cpp:63
UnaryOPStmt * addUnaryOPStmt(NodeID src, NodeID dst, u32_t opcode)
Add Unary edge.
Definition SVFIR.cpp:185
BinaryOPStmt * addBinaryOPStmt(NodeID op1, NodeID op2, NodeID dst, u32_t opcode)
Add Copy edge.
Definition SVFIR.cpp:165
StoreStmt * addStoreStmt(NodeID src, NodeID dst, const ICFGNode *val)
Add Store edge.
Definition SVFIR.cpp:240

◆ build()

SVFIR * PAGBuilderFromFile::build ( )

Start building.

new gep node's id from lower bound, nodeNum may not reflect the total nodes.

Definition at line 61 of file PAGBuilderFromFile.cpp.

62{
63
64 string line;
65 ifstream myfile(file.c_str());
66 if (myfile.is_open())
67 {
68 while (myfile.good())
69 {
71
73 string tmps;
75 while (ss.good())
76 {
77 ss >> tmps;
79 }
80
81 if (token_count == 0)
82 continue;
83
84 else if (token_count == 2)
85 {
87 string nodetype;
89 ss >> nodeId;
90 ss >> nodetype;
91 outs() << "reading node :" << nodeId << "\n";
92 if (nodetype == "v")
93 pag->addDummyValNode(nodeId, nullptr);
94 else if (nodetype == "o")
95 {
97 }
98 else
99 assert(false && "format not support, pls specify node type");
100 }
101
102 // do consider gep edge
103 else if (token_count == 4)
104 {
108 string edge;
110 ss >> nodeSrc;
111 ss >> edge;
112 ss >> nodeDst;
113 ss >> offsetOrCSId;
114 outs() << "reading edge :" << nodeSrc << " " << edge << " "
115 << nodeDst << " offsetOrCSId=" << offsetOrCSId << " \n";
117 }
118 else
119 {
120 if (!line.empty())
121 {
122 outs() << "format not supported, token count = "
123 << token_count << "\n";
124 assert(false && "format not supported");
125 }
126 }
127 }
128 myfile.close();
129 }
130
131 else
132 outs() << "Unable to open file\n";
133
136 for(u32_t i = 0; i < lower_bound; i++)
137 pag->incNodeNum();
138
140
141 return pag;
142}
unsigned u32_t
Definition CommandLine.h:18
static u32_t gepNodeNumIndex
void incNodeNum()
Increase number of node/edge.
u32_t getTotalNodeNum() const
Get total number of node/edge.
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
void setNodeNumAfterPAGBuild(u32_t num)
Definition IRGraph.h:317
void addEdge(NodeID nodeSrc, NodeID nodeDst, APOffset offset, std::string edge)
NodeID addFIObjNode(NodeID i, ObjTypeInfo *ti, const SVFType *type, const ICFGNode *node)
Add a field-insensitive node, this method can only invoked by getFIGepObjNode.
Definition SVFIR.h:717
NodeID addDummyValNode()
Definition SVFIR.h:491
static SVFType * getSVFPtrType()
Definition SVFType.h:178
std::ostream & outs()
Overwrite llvm::outs()
Definition SVFUtil.h:52
u32_t NodeID
Definition GeneralType.h:56
s64_t APOffset
Definition GeneralType.h:60

◆ getFileName()

std::string SVF::PAGBuilderFromFile::getFileName ( ) const
inline

Return file name.

Definition at line 65 of file PAGBuilderFromFile.h.

66 {
67 return file;
68 }

◆ getPAG()

SVFIR * SVF::PAGBuilderFromFile::getPAG ( ) const
inline

Return SVFIR.

Definition at line 59 of file PAGBuilderFromFile.h.

60 {
61 return pag;
62 }

Member Data Documentation

◆ file

std::string SVF::PAGBuilderFromFile::file
private

Definition at line 46 of file PAGBuilderFromFile.h.

◆ pag

SVFIR* SVF::PAGBuilderFromFile::pag
private

Definition at line 45 of file PAGBuilderFromFile.h.


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