35using namespace SVFUtil;
53 return item.second->getFunction();
297 return pag->addAddrStmt(
pag->getBlackHoleNode(), node);
408 &&
"this node should not be created before");
428 assert(
false &&
"new gep obj node kind?");
444 if (
baseObj->isFieldInsensitive())
471 &&
"this node should not be created before");
495 assert(SVFUtil::isa<ObjVar>(node) &&
"need an object node");
507 assert(SVFUtil::isa<ObjVar>(node) &&
"need an object node");
509 if(
obj->isFieldInsensitive())
531 NodeAccessPathMap::const_iterator
lit =
532 iter->second.find(std::make_pair(base, ap));
560 outs() <<
"-------------------SVFIR------------------------------------\n";
562 for (SVFStmt::SVFStmtSetTy::iterator
iter = addrs.begin(),
eiter =
565 outs() << (*iter)->getSrcID() <<
" -- Addr --> " << (*iter)->getDstID()
570 for (SVFStmt::SVFStmtSetTy::iterator
iter =
copys.begin(),
eiter =
573 outs() << (*iter)->getSrcID() <<
" -- Copy --> " << (*iter)->getDstID()
578 for (SVFStmt::SVFStmtSetTy::iterator
iter =
calls.begin(),
eiter =
581 outs() << (*iter)->getSrcID() <<
" -- Call --> " << (*iter)->getDstID()
586 for (SVFStmt::SVFStmtSetTy::iterator
iter =
rets.begin(),
eiter =
589 outs() << (*iter)->getSrcID() <<
" -- Ret --> " << (*iter)->getDstID()
594 for (SVFStmt::SVFStmtSetTy::iterator
iter =
tdfks.begin(),
eiter =
597 outs() << (*iter)->getSrcID() <<
" -- ThreadFork --> "
598 << (*iter)->getDstID() <<
"\n";
602 for (SVFStmt::SVFStmtSetTy::iterator
iter =
tdjns.begin(),
eiter =
605 outs() << (*iter)->getSrcID() <<
" -- ThreadJoin --> "
606 << (*iter)->getDstID() <<
"\n";
610 for (SVFStmt::SVFStmtSetTy::iterator
iter =
ngeps.begin(),
eiter =
614 if(
gep->isVariantFieldGep())
615 outs() << (*iter)->getSrcID() <<
" -- VariantGep --> "
616 << (*iter)->getDstID() <<
"\n";
618 outs() <<
gep->getRHSVarID() <<
" -- Gep (" <<
gep->getConstantStructFldIdx()
619 <<
") --> " <<
gep->getLHSVarID() <<
"\n";
623 for (SVFStmt::SVFStmtSetTy::iterator
iter =
loads.begin(),
eiter =
626 outs() << (*iter)->getSrcID() <<
" -- Load --> " << (*iter)->getDstID()
634 outs() << (*iter)->getSrcID() <<
" -- Store --> " << (*iter)->getDstID()
637 outs() <<
"----------------------------------------------------------\n";
665 if (!(
arg->getParent()->isDeclaration()))
675 if (SVFUtil::isa<ValVar>(node))
680 if(!SVFUtil::isa<DummyValVar, BlackHoleValVar>(
baseVar))
Class representing a function argument variable in the SVFIR.
std::vector< std::pair< const ICFGNode *, s32_t > > SuccAndCondPairVec
iterator begin()
Iterators.
IDToNodeMapTy::iterator iterator
Node Iterators.
NodeType * getGNode(NodeID id) const
Get a node.
const GEdgeSetTy & getOutEdges() const
const GEdgeSetTy & getInEdges() const
SVFStmt * hasLabeledEdge(SVFVar *src, SVFVar *dst, SVFStmt::PEDGEK kind, const ICFGNode *cs)
bool addEdge(SVFVar *src, SVFVar *dst, SVFStmt *edge)
Add an edge into the graph.
SVFStmt * hasNonlabeledEdge(SVFVar *src, SVFVar *dst, SVFStmt::PEDGEK kind)
static NodeIDAllocator * get(void)
Return (singleton) allocator.
NodeID allocateGepObjectId(NodeID base, u32_t offset, u32_t maxFieldLimit)
static const Option< bool > FirstFieldEqBase
static Option< bool > HandBlackHole
static const Option< u32_t > MaxFieldLimit
Maximum number of field derivations for an object.
NodeID addGepObjNode(const BaseObjVar *baseObj, const APOffset &apOffset, const NodeID gepId)
Add a field obj node, this method can only invoked by getGepObjVar.
NodeID addObjNode(NodeID i, ObjTypeInfo *ti, const SVFType *type, const ICFGNode *node)
Add a memory obj node.
GepStmt * addVariantGepStmt(NodeID src, NodeID dst, const AccessPath &ap)
Add Variant(Gep) edge.
NodeOffsetMap GepObjVarMap
Map a pair<base,off> to a gep obj node id.
CopyStmt * addCopyStmt(NodeID src, NodeID dst, CopyStmt::CopyKind type)
Add Copy edge.
NodeID getGepValVar(NodeID curInst, NodeID base, const AccessPath &ap) const
Due to constraint expression, curInst is used to distinguish different instructions (e....
RetPE * addRetPE(NodeID src, NodeID dst, const CallICFGNode *cs, const FunExitICFGNode *exit)
Add Return edge.
GepStmt * addGepStmt(NodeID src, NodeID dst, const AccessPath &ap, bool constGep)
Add Gep edge.
static void handleBlackHole(bool b)
SVFIR build configurations.
void addToStmt2TypeMap(SVFStmt *edge)
Map a SVFStatement type to a set of corresponding SVF statements.
SVFStmt * addBlackHoleAddrStmt(NodeID node)
Set a pointer points-to black hole (e.g. int2ptr)
LoadStmt * addLoadStmt(NodeID src, NodeID dst)
Add Load edge.
NodeID addGepValNode(NodeID curInst, const ValVar *base, const AccessPath &ap, NodeID i, const SVFType *type, const ICFGNode *node)
Add a temp field value node, this method can only invoked by getGepValVar.
GepStmt * addNormalGepStmt(NodeID src, NodeID dst, const AccessPath &ap)
Add Offset(Gep) edge.
MemObjToFieldsMap memToFieldsMap
Map a mem object id to all its fields.
PHINodeMap phiNodeMap
A set of phi copy edges.
NodeBS getFieldsAfterCollapse(NodeID id)
NodeID getGepObjVar(const BaseObjVar *baseObj, const APOffset &ap)
Get a field SVFIR Object node according to base mem obj and offset.
CallPE * addCallPE(NodeID src, NodeID dst, const CallICFGNode *cs, const FunEntryICFGNode *entry)
Add Call edge.
bool isValidTopLevelPtr(const SVFVar *node)
TDJoinPE * addThreadJoinPE(NodeID src, NodeID dst, const CallICFGNode *cs, const FunExitICFGNode *exit)
Add Thread join edge for parameter passing.
CallGraph * callGraph
all the callsites of a program
static std::string pagReadFromTxt
void destroy()
Clean up memory.
const BaseObjVar * getBaseObject(NodeID id) const
const FunObjVar * getFunObjVar(const std::string &name)
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.
TDForkPE * addThreadForkPE(NodeID src, NodeID dst, const CallICFGNode *cs, const FunEntryICFGNode *entry)
Add Thread fork edge for parameter passing.
BinaryOPStmt * addBinaryOPStmt(NodeID op1, NodeID op2, NodeID dst, u32_t opcode)
Add Copy edge.
NodeBS & getAllFieldsObjVars(const BaseObjVar *obj)
Get all fields of an object.
static std::unique_ptr< SVFIR > pag
call graph
NodeID addValNode(NodeID i, const SVFType *type, const ICFGNode *icfgNode)
add node into SVFIR
StoreStmt * addStoreStmt(NodeID src, NodeID dst, const ICFGNode *val)
Add Store edge.
PhiStmt * addPhiStmt(NodeID res, NodeID opnd, const ICFGNode *pred)
Add phi node information.
OrderedNodeSet candidatePointers
SVFIR(bool buildFromFile)
Constructor.
SelectStmt * addSelectStmt(NodeID res, NodeID op1, NodeID op2, NodeID cond)
Add SelectStmt.
GepValueVarMap GepValObjMap
Map a pair<base,off> to a gep value node id.
bool isValidPointer(NodeID nodeId) const
Whether a node is a valid pointer.
BranchStmt * addBranchStmt(NodeID br, NodeID cond, const BranchStmt::SuccAndCondPairVec &succs)
Add BranchStmt.
void initialiseCandidatePointers()
Initialize candidate pointers.
NodeID getFIObjVar(const BaseObjVar *obj) const
Get a field-insensitive obj SVFIR node according to a mem obj.
GenericNode< SVFVar, SVFStmt >::GEdgeSetTy SVFStmtSetTy
NodeID getId() const
Get ID.
virtual bool isPointer() const
Check if this variable represents a pointer.
bool hasIncomingVariantGepEdge() const
Check for incoming variable field GEP edges.
bool isArgOfUncalledFunction(const SVFVar *svfvar)
std::ostream & outs()
Overwrite llvm::outs()
llvm::IRBuilder IRBuilder