37using namespace SVFUtil;
99 assert(
false &&
"format not support, pls specify node type");
122 outs() <<
"format not supported, token count = "
124 assert(
false &&
"format not supported");
132 outs() <<
"Unable to open file\n";
156 assert(SVFUtil::isa<ValVar>(
dstNode) &&
"dst not an value node?");
158 assert(SVFUtil::isa<ObjVar>(
srcNode) &&
"src not an value node?");
160 assert(!SVFUtil::isa<ObjVar>(
srcNode) &&
"src not an object node?");
166 if (
edge.rfind(
"copy-", 0) == 0)
176 else if (
opType ==
"ZEXT")
180 else if (
opType ==
"SEXT")
184 else if (
opType ==
"BITCAST")
188 else if (
opType ==
"TRUNC")
192 else if (
opType ==
"FPTRUNC")
196 else if (
opType ==
"FPTOUI")
200 else if (
opType ==
"FPTOSI")
204 else if (
opType ==
"UITOFP")
208 else if (
opType ==
"SITOFP")
212 else if (
opType ==
"INTTOPTR")
216 else if (
opType ==
"PTRTOINT")
222 assert(
false &&
"format not support, can not create such edge");
225 else if (
edge ==
"load")
227 else if (
edge ==
"store")
229 else if (
edge ==
"gep")
231 else if (
edge ==
"variant-gep")
233 else if (
edge ==
"call")
235 else if (
edge ==
"ret")
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")
249 assert(
false &&
"fix successors here!");
253 assert(
false &&
"format not support, can not create such edge");
static u32_t gepNodeNumIndex
void incNodeNum()
Increase number of node/edge.
u32_t getTotalNodeNum() const
Get total number of node/edge.
NodeType * getGNode(NodeID id) const
Get a node.
ObjTypeInfo * createObjTypeInfo(const SVFType *type)
Create an objectInfo based on LLVM type (value is null, and type could be null, representing a dummy ...
void setNodeNumAfterPAGBuild(u32_t num)
bool addEdge(SVFVar *src, SVFVar *dst, SVFStmt *edge)
Add an edge into the graph.
void addEdge(NodeID nodeSrc, NodeID nodeDst, APOffset offset, std::string edge)
SVFIR * build()
Start building.
GepStmt * addVariantGepStmt(NodeID src, NodeID dst, const AccessPath &ap)
Add Variant(Gep) edge.
CopyStmt * addCopyStmt(NodeID src, NodeID dst, CopyStmt::CopyKind type)
Add Copy edge.
LoadStmt * addLoadStmt(NodeID src, NodeID dst)
Add Load edge.
GepStmt * addNormalGepStmt(NodeID src, NodeID dst, const AccessPath &ap)
Add Offset(Gep) 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.
CmpStmt * addCmpStmt(NodeID op1, NodeID op2, NodeID dst, u32_t predict)
Add Copy edge.
AddrStmt * addAddrStmt(NodeID src, NodeID dst)
Add an edge into SVFIR.
UnaryOPStmt * addUnaryOPStmt(NodeID src, NodeID dst, u32_t opcode)
Add Unary edge.
BinaryOPStmt * addBinaryOPStmt(NodeID op1, NodeID op2, NodeID dst, u32_t opcode)
Add Copy edge.
StoreStmt * addStoreStmt(NodeID src, NodeID dst, const ICFGNode *val)
Add Store edge.
static SVFType * getSVFPtrType()
std::ostream & outs()
Overwrite llvm::outs()
llvm::IRBuilder IRBuilder