30#ifndef INCLUDE_SVFIR_H_
31#define INCLUDE_SVFIR_H_
101 static std::unique_ptr<SVFIR>
pag;
197 "No module found! Reading from a file other than LLVM-IR?");
261 edge->setICFGNode(inst);
263 if (
edge->isPTAEdge())
413 SVFStmt::SVFStmtSetTy::const_iterator
it =
edgeSet.find(&
edge);
427 return SVFUtil::dyn_cast<BaseObjVar>(
430 return SVFUtil::dyn_cast<BaseObjVar>(node);
437 return gepVar->getBaseNode();
439 return SVFUtil::dyn_cast<ValVar>(node);
472 obj->isConstDataOrConstGlobal();
518 if (
edge->isPTAEdge() || (SVFUtil::isa<CopyStmt>(
edge) && SVFUtil::cast<CopyStmt>(
edge)->isInt2Ptr()))
558 assert(
added &&
"adding the same indirect callsite twice?");
764 assert(node &&
"node cannot be nullptr.");
766 "This NodeID clashes here. Please check NodeIDAllocator. Switch "
767 "Strategy::DBUG to SEQ or DENSE");
773 assert(node &&
"node cannot be nullptr.");
775 "This NodeID clashes here. Please check NodeIDAllocator. Switch "
776 "Strategy::DBUG to SEQ or DENSE");
Class representing a function argument variable in the SVFIR.
NodeID getId() const
Get the memory object id.
std::vector< std::pair< const ICFGNode *, s32_t > > SuccAndCondPairVec
void addActualParms(const ValVar *ap)
Add actual parameters.
Common base for class hierarchy graph. Only implements what PointerAnalysis needs.
void addFormalParms(const SVFVar *fp)
Add formal parameters.
void addFormalRet(const SVFVar *fr)
Add formal return parameter.
bool hasGNode(NodeID id) const
Has a node.
NodeType * getGNode(NodeID id) const
Get a node.
Class representing a heap object variable in the SVFIR.
FunExitICFGNode * getFunExitICFGNode(const FunObjVar *fun)
Add a function exit node.
FunEntryICFGNode * getFunEntryICFGNode(const FunObjVar *fun)
Add a function entry node.
Set< const SVFStmt * > SVFStmtSet
NodeID addNode(SVFVar *node)
Add a node into the graph.
NodeID getBlackHoleNode() const
SVFStmt::KindToSVFStmtMapTy KindToSVFStmtSetMap
SVFIR edge map containing all PAGEdges.
ObjTypeInfo * createObjTypeInfo(const SVFType *type)
Create an objectInfo based on LLVM type (value is null, and type could be null, representing a dummy ...
static bool isBlkObj(NodeID id)
static bool isConstantSym(NodeID id)
ObjTypeInfo * getObjTypeInfo(NodeID id) const
NodeID getConstantNode() const
SVFStmt::KindToSVFStmtMapTy KindToPTASVFStmtSetMap
SVFIR edge map containing only pointer-related edges, i.e., both LHS and RHS are of pointer type.
IDToTypeInfoMapTy & idToObjTypeInfoMap()
Get different kinds of syms maps.
static NodeIDAllocator * get(void)
Return (singleton) allocator.
static void releaseSVFIR()
NodeID addGepObjNode(const BaseObjVar *baseObj, const APOffset &apOffset, const NodeID gepId)
Add a field obj node, this method can only invoked by getGepObjVar.
const CallSiteSet & getCallSiteSet() const
Get all callsites.
CSToArgsListMap & getCallSiteArgsMap()
Get callsite argument list.
NodeID addObjNode(NodeID i, ObjTypeInfo *ti, const SVFType *type, const ICFGNode *node)
Add a memory obj node.
SVFStmt::SVFStmtSetTy & getPTASVFStmtSet(SVFStmt::PEDGEK kind)
Get PTA edges set according to its kind.
NodeID addDummyValNode(NodeID i, const ICFGNode *node)
Add a dummy value/object node according to node ID (llvm value is null)
bool hasPTASVFStmtList(const ICFGNode *inst) const
GepStmt * addVariantGepStmt(NodeID src, NodeID dst, const AccessPath &ap)
Add Variant(Gep) edge.
SVFStmt::SVFStmtSetTy & getSVFStmtSet(SVFStmt::PEDGEK kind)
Get/set methods to get SVFStmts based on their kinds and ICFGNodes.
Map< const SVFVar *, PhiStmt * > PHINodeMap
bool funHasRet(const FunObjVar *func) const
NodeOffsetMap GepObjVarMap
Map a pair<base,off> to a gep obj node id.
CallSiteToFunPtrMap indCallSiteToFunPtrMap
Map an indirect callsite to its function pointer.
NodeID addGlobalValNode(const NodeID i, const ICFGNode *icfgNode, const SVFType *svfType)
CopyStmt * addCopyStmt(NodeID src, NodeID dst, CopyStmt::CopyKind type)
Add Copy edge.
CSToRetMap callSiteRetMap
Map a callsite to its callsite returns PAGNodes.
NodeID addObjNode(SVFVar *node)
Add a memory obj node.
NodeID getGepValVar(NodeID curInst, NodeID base, const AccessPath &ap) const
Due to constraint expression, curInst is used to distinguish different instructions (e....
CallGraph * getCallGraph()
RetPE * addRetPE(NodeID src, NodeID dst, const CallICFGNode *cs, const FunExitICFGNode *exit)
Add Return edge.
NodeID getFunPtr(const CallICFGNode *cs) const
bool hasFunArgsList(const FunObjVar *func) const
Function has arguments list.
NodeID addGlobalObjNode(const NodeID i, ObjTypeInfo *ti, const SVFType *type, const ICFGNode *node)
GepStmt * addGepStmt(NodeID src, NodeID dst, const AccessPath &ap, bool constGep)
Add Gep edge.
static void handleBlackHole(bool b)
SVFIR build configurations.
NodeID addConstantFPObjNode(NodeID i, ObjTypeInfo *ti, double dval, const SVFType *type, const ICFGNode *node)
NodeID addValNode(SVFVar *node)
Add a value (pointer) node.
void addToStmt2TypeMap(SVFStmt *edge)
Map a SVFStatement type to a set of corresponding SVF statements.
NodeID addBlackholePtrNode()
Set< const CallICFGNode * > CallSiteSet
NodeID addBlackholeObjNode()
void addFunArgs(const FunObjVar *fun, const SVFVar *arg)
Get/set method for function/callsite arguments and returns.
Map< const CallICFGNode *, SVFVarList > CSToArgsListMap
SVFStmt * addBlackHoleAddrStmt(NodeID node)
Set a pointer points-to black hole (e.g. int2ptr)
NodeID addDummyObjNode(NodeID i, const SVFType *type)
NodeID addHeapObjNode(NodeID i, ObjTypeInfo *ti, const SVFType *type, const ICFGNode *node)
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.
u32_t getFieldObjNodeNum() const
MemObjToFieldsMap memToFieldsMap
Map a mem object id to all its fields.
Map< const RetICFGNode *, const SVFVar * > CSToRetMap
virtual ~SVFIR()
Destructor.
bool isIndirectCallSites(const CallICFGNode *cs) const
void addFunRet(const FunObjVar *fun, const SVFVar *ret)
Add function returns.
SVFStmt * getIntraPAGEdge(SVFVar *src, SVFVar *dst, SVFStmt::PEDGEK kind)
PHINodeMap phiNodeMap
A set of phi copy edges.
NodeBS getFieldsAfterCollapse(NodeID id)
std::pair< NodeID, APOffset > NodeOffset
NodeID addVarargNode(const FunObjVar *, SVFVar *node)
Add a unique vararg node for a procedure.
Map< const ICFGNode *, SVFStmtList > ICFGNode2SVFStmtsMap
NodeID addFunObjNode(NodeID id, ObjTypeInfo *ti, const SVFType *type, const ICFGNode *node)
FunToRetMap funRetMap
Map a function to its unique function return PAGNodes.
NodeID getGepObjVar(const BaseObjVar *baseObj, const APOffset &ap)
Get a field SVFIR Object node according to base mem obj and offset.
NodeID addStackObjNode(NodeID i, ObjTypeInfo *ti, const SVFType *type, const ICFGNode *node)
OrderedMap< const CallICFGNode *, NodeID > CallSiteToFunPtrMap
static std::string pagFileName()
CallPE * addCallPE(NodeID src, NodeID dst, const CallICFGNode *cs, const FunEntryICFGNode *entry)
Add Call edge.
NodeID addConstantNullPtrValNode(const NodeID i, const ICFGNode *icfgNode, const SVFType *type)
SVFStmtList & getSVFStmtList(const ICFGNode *inst)
Given an instruction, get all its PAGEdges.
bool isValidTopLevelPtr(const SVFVar *node)
bool isConstantObj(NodeID id) const
bool isPhiNode(const SVFVar *node) const
Whether this SVFVar is a result operand a of phi node.
static bool pagReadFromTXT()
OrderedNodeSet & getAllValidPtrs()
Return valid pointers.
bool hasSVFStmtList(const ICFGNode *inst) const
Whether this instruction has SVFIR Edge.
TypeLocSetsMap typeLocSetsMap
Map an arg to its base SVFType* and all its field location sets.
std::vector< const SVFVar * > SVFVarList
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
Map< NodeID, NodeID > NodeToNodeMap
static std::string pagReadFromTxt
NodeID addConstantDataObjNode(const NodeID i, ObjTypeInfo *ti, const SVFType *type, const ICFGNode *node)
CSToRetMap & getCallSiteRets()
Get callsite return.
void destroy()
Clean up memory.
void addToSVFStmtList(ICFGNode *inst, SVFStmt *edge)
Add a SVFStmt into instruction map.
std::vector< const SVFStmt * > SVFStmtList
const BaseObjVar * getBaseObject(NodeID id) const
SVFStmtSet globSVFStmtSet
Global PAGEdges without control flow information.
void addCallSiteRets(RetICFGNode *retBlockNode, const SVFVar *arg)
Add callsite returns.
NodeID addConstantDataValNode(const NodeID i, const ICFGNode *icfgNode, const SVFType *type)
std::pair< NodeID, AccessPath > NodeAccessPath
void setICFG(ICFG *i)
Set/Get ICFG.
NodeID addFIObjNode(NodeID i, ObjTypeInfo *ti, const SVFType *type, const ICFGNode *node)
Add a field-insensitive node, this method can only invoked by getFIGepObjNode.
NodeID getBaseObjVar(NodeID id) const
Base and Offset methods for Value and Object node.
Map< NodeAccessPath, NodeID > NodeAccessPathMap
std::string moduleIdentifier
const FunObjVar * getFunObjVar(const std::string &name)
CmpStmt * addCmpStmt(NodeID op1, NodeID op2, NodeID dst, u32_t predict)
Add Copy edge.
FunToRetMap & getFunRets()
Get function return list.
SVFStmtSet & getGlobalSVFStmtSet()
Get global PAGEdges (not in a procedure)
void addCallSiteArgs(CallICFGNode *callBlockNode, const ValVar *arg)
Add callsite arguments.
AddrStmt * addAddrStmt(NodeID src, NodeID dst)
Add an edge into SVFIR.
FunToArgsListMap funArgsListMap
Map a function to a list of all its formal parameters.
ICFGNode2SVFStmtsMap icfgNode2SVFStmtsMap
Map an ICFGNode to its SVFStmts.
NodeID addConstantAggObjNode(const NodeID i, ObjTypeInfo *ti, const SVFType *type, const ICFGNode *node)
NodeID addConstantIntValNode(NodeID i, const std::pair< s64_t, u64_t > &intValue, const ICFGNode *icfgNode, const SVFType *type)
u32_t getFieldValNodeNum() const
Node and edge statistics.
NodeID addFunValNode(NodeID i, const ICFGNode *icfgNode, const FunObjVar *funObjVar, const SVFType *type)
NodeID addConstantFPValNode(const NodeID i, double dval, const ICFGNode *icfgNode, const SVFType *type)
UnaryOPStmt * addUnaryOPStmt(NodeID src, NodeID dst, u32_t opcode)
Add Unary edge.
NodeID addConstantAggValNode(const NodeID i, const ICFGNode *icfgNode, const SVFType *svfType)
NodeID addConstantNullPtrObjNode(const NodeID i, ObjTypeInfo *ti, const SVFType *type, const ICFGNode *node)
std::pair< const SVFType *, std::vector< AccessPath > > SVFTypeLocSetsPair
TDForkPE * addThreadForkPE(NodeID src, NodeID dst, const CallICFGNode *cs, const FunEntryICFGNode *entry)
Add Thread fork edge for parameter passing.
bool isFunPtr(NodeID id) const
SVFStmt * getIntraPAGEdge(NodeID src, NodeID dst, SVFStmt::PEDGEK kind)
Get an edge according to src, dst and kind.
BinaryOPStmt * addBinaryOPStmt(NodeID op1, NodeID op2, NodeID dst, u32_t opcode)
Add Copy edge.
bool hasCallSiteArgsMap(const CallICFGNode *cs) const
Callsite has argument list.
NodeBS & getAllFieldsObjVars(const BaseObjVar *obj)
Get all fields of an object.
void addCallSite(const CallICFGNode *call)
Add callsites.
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.
NodeID addVarargNode(NodeID i, const FunObjVar *val, const SVFType *type, const ICFGNode *n)
Add a unique vararg node for a procedure.
void addToTypeLocSetsMap(NodeID argId, SVFTypeLocSetsPair &locSets)
Add a base SVFType* and all its field location sets to an arg NodeId.
CSToArgsListMap callSiteArgsListMap
Map a callsite to a list of all its actual parameters.
void setCHG(CommonCHGraph *c)
Set/Get CHG.
NodeOffsetMap & getGepObjNodeMap()
Return GepObjVarMap.
const CallSiteToFunPtrMap & getIndirectCallsites() const
Add/get indirect callsites.
bool callsiteHasRet(const RetICFGNode *cs) const
SVFStmtList & getPTASVFStmtList(const ICFGNode *inst)
Given an instruction, get all its PTA PAGEdges.
ICFGNode2SVFStmtsMap icfgNode2PTASVFStmtsMap
Map an ICFGNode to its PointerAnalysis related SVFStmts.
Map< NodeID, NodeBS > MemObjToFieldsMap
Map< NodePair, NodeID > NodePairSetMap
PhiStmt * addPhiStmt(NodeID res, NodeID opnd, const ICFGNode *pred)
Add phi node information.
OrderedNodeSet candidatePointers
void setModuleIdentifier(const std::string &moduleIdentifier)
friend class TypeBasedHeapCloning
const SVFVarList & getCallSiteArgsList(const CallICFGNode *cs) const
Get callsite argument list.
NodeID getFIObjVar(NodeID id) const
Map< const FunObjVar *, const SVFVar * > FunToRetMap
SelectStmt * addSelectStmt(NodeID res, NodeID op1, NodeID op2, NodeID cond)
Add SelectStmt.
void setCallGraph(CallGraph *c)
Set/Get CG.
static SVFIR * getPAG(bool buildFromFile=false)
Singleton design here to make sure we only have one instance during any analysis.
Map< const FunObjVar *, SVFStmtSet > FunToPAGEdgeSetMap
NodeID addConstantIntObjNode(NodeID i, ObjTypeInfo *ti, const std::pair< s64_t, u64_t > &intValue, const SVFType *type, const ICFGNode *node)
Map< NodeID, SVFTypeLocSetsPair > TypeLocSetsMap
GepValueVarMap GepValObjMap
Map a pair<base,off> to a gep value node id.
const ValVar * getBaseValVar(NodeID id) const
Map< const FunObjVar *, SVFVarList > FunToArgsListMap
bool isBlkObjOrConstantObj(NodeID id) const
Get black hole and constant id.
const CallSiteSet & getIndCallSites(NodeID funPtr) const
Map< NodeID, NodeAccessPathMap > GepValueVarMap
bool isValidPointer(NodeID nodeId) const
Whether a node is a valid pointer.
Map< NodeID, CallSiteSet > FunPtrToCallSitesMap
const SVFVar * getCallSiteRet(const RetICFGNode *cs) const
Get callsite return.
void addGlobalPAGEdge(const SVFStmt *edge)
Add global PAGEdges (not in a procedure)
const std::string & getModuleIdentifier() const
BranchStmt * addBranchStmt(NodeID br, NodeID cond, const BranchStmt::SuccAndCondPairVec &succs)
Add BranchStmt.
Map< NodeOffset, NodeID > NodeOffsetMap
const SVFVarList & getFunArgsList(const FunObjVar *func) const
Get function arguments list.
NodeID addRetNode(const FunObjVar *, SVFVar *node)
Add a unique return node for a procedure.
const SVFVar * getFunRet(const FunObjVar *func) const
Get function return list.
void addIndirectCallsites(const CallICFGNode *cs, NodeID funPtr)
Add indirect callsites.
FunToArgsListMap & getFunArgsMap()
Get function arguments list.
void initialiseCandidatePointers()
Initialize candidate pointers.
NodeID addRetNode(NodeID i, const FunObjVar *callGraphNode, const SVFType *type, const ICFGNode *icn)
Add a unique return node for a procedure.
static void setPagFromTXT(const std::string &txt)
NodeID getFIObjVar(const BaseObjVar *obj) const
Get a field-insensitive obj SVFIR node according to a mem obj.
FunPtrToCallSitesMap funPtrToCallSitesMap
NodeID addArgValNode(NodeID i, u32_t argNo, const ICFGNode *icfgNode, const FunObjVar *callGraphNode, const SVFType *type)
SVFTypeLocSetsPair & getTypeLocSetsMap(NodeID argId)
Given an arg NodeId, get its base SVFType* and all its field location sets.
NodeID addDummyObjNode(const SVFType *type)
MemObjToFieldsMap & getMemToFieldsMap()
Return memToFieldsMap.
NodeID addConstantObjNode()
GenericNode< SVFVar, SVFStmt >::GEdgeSetTy SVFStmtSetTy
NodeID getId() const
Get ID.
Represents a stack-allocated object variable in the SVFIR (SVF Intermediate Representation) @inherits...
OrderedSet< NodeID > OrderedNodeSet
llvm::IRBuilder IRBuilder