34using namespace SVFUtil;
77 outs() <<
" {Type: " << *
at <<
"}\n"
84 outs() <<
" {Type: " << *
st <<
"}\n";
90 <<
", field type: " << *
type <<
"\n";
96 outs() << *pt <<
"\n";
99 SVFUtil::dyn_cast<SVFFunctionType>(
type))
101 outs() <<
" {Type: " << *
fu <<
"}\n\n";
105 outs() <<
" {Type: "<< *
ot <<
"(SVFOtherType)}\n\n";
109 assert(
type->isSingleValueType() &&
"not a single value type, then what else!!");
112 outs() <<
" {Type: " << *
type <<
"}\n"
113 <<
"\t [object size = " <<
eSize <<
"]\n"
128 assert (
flatten_idx <
so.size() && !
so.empty() &&
"element index out of bounds or struct opaque type, can't get element type!");
134 assert (
flatten_idx <
so.size() && !
so.empty() &&
"element index out of bounds or struct opaque type, can't get element type!");
149 assert ((
unsigned)
origId <
so.size() && !
so.empty() &&
"element index out of bounds, can't get flattened index!");
154 if(SVFUtil::isa<SVFStructType>(
T))
157 assert ((
unsigned)
origId <
so.size() && !
so.empty() &&
"Struct index out of bounds, can't get flattened index!");
163 assert(SVFUtil::isa<SVFArrayType>(
T) &&
"Only accept struct or array type if Options::ModelArrays is disabled!");
197 writeWrnMsg(
"try to create a gep node with negative offset.");
246 assert(
it !=
svfTypes.end() &&
"type info not found? collect them first during SVFIR Building");
247 return (*it)->getTypeInfo();
257 outs() <<
"add edge from " << src->
getId() <<
" kind :"
328 for (
const auto&
item: *
this)
330 if (SVFUtil::isa<ValVar>(
item.second))
341 for (
const auto&
item: *
this)
343 if (SVFUtil::isa<ObjVar>(
item.second))
399 if (SVFUtil::isa<ValVar>(node))
401 if(SVFUtil::isa<GepValVar>(node))
402 return "shape=hexagon";
403 else if (SVFUtil::isa<DummyValVar>(node))
404 return "shape=diamond";
408 else if (SVFUtil::isa<ObjVar>(node))
410 if(SVFUtil::isa<GepObjVar>(node))
411 return "shape=doubleoctagon";
412 else if(SVFUtil::isa<BaseObjVar>(node))
413 return "shape=box3d";
414 else if (SVFUtil::isa<DummyObjVar>(node))
417 return "shape=component";
419 else if (SVFUtil::isa<RetValPN>(node))
421 return "shape=Mrecord";
423 else if (SVFUtil::isa<VarArgValPN>(node))
425 return "shape=octagon";
429 assert(0 &&
"no such kind!!");
434 template<
class EdgeIter>
439 if (SVFUtil::isa<AddrStmt>(
edge))
441 return "color=green";
443 else if (SVFUtil::isa<CopyStmt>(
edge))
445 return "color=black";
447 else if (SVFUtil::isa<GepStmt>(
edge))
449 return "color=purple";
451 else if (SVFUtil::isa<StoreStmt>(
edge))
455 else if (SVFUtil::isa<LoadStmt>(
edge))
459 else if (SVFUtil::isa<PhiStmt>(
edge))
463 else if (SVFUtil::isa<SelectStmt>(
edge))
467 else if (SVFUtil::isa<CmpStmt>(
edge))
471 else if (SVFUtil::isa<BinaryOPStmt>(
edge))
475 else if (SVFUtil::isa<UnaryOPStmt>(
edge))
479 else if (SVFUtil::isa<BranchStmt>(
edge))
483 else if (SVFUtil::isa<TDForkPE>(
edge))
485 return "color=Turquoise";
487 else if (SVFUtil::isa<TDJoinPE>(
edge))
489 return "color=Turquoise";
491 else if (SVFUtil::isa<CallPE>(
edge))
493 return "color=black,style=dashed";
495 else if (SVFUtil::isa<RetPE>(
edge))
497 return "color=black,style=dotted";
500 assert(
false &&
"No such kind edge!!");
504 template<
class EdgeIter>
511 return calledge->getCallSite()->getSourceLoc();
515 return retedge->getCallSite()->getSourceLoc();
#define DBOUT(TYPE, X)
LLVM debug macros, define type of your DBUG model of each pass.
GEdgeSetTy::iterator iterator
static void WriteGraphToFile(SVF::OutStream &O, const std::string &GraphName, const GraphType >, bool simple=false)
u32_t getFlattenedElemIdx(const SVFType *T, u32_t origId)
Flattened element idx of an array or struct by considering stride.
u32_t getNumOfFlattenElements(const SVFType *T)
const std::vector< const SVFType * > & getFlattenFieldTypes(const SVFStructType *T)
Return the flattened field type for struct type only.
SVFStmt * hasLabeledEdge(SVFVar *src, SVFVar *dst, SVFStmt::PEDGEK kind, const ICFGNode *cs)
void printFlattenFields(const SVFType *type)
Debug method.
void dump(std::string name)
Dump SVFIR.
Set< const StInfo * > stInfos
(owned) All StInfo
void view()
View graph from the debugger.
virtual APOffset getModulusOffset(const BaseObjVar *baseObj, const APOffset &apOffset)
Given an offset from a Gep Instruction, return it modulus offset by considering memory layout.
SVFStmt::KindToSVFStmtMapTy KindToSVFStmtSetMap
SVFIR edge map containing all PAGEdges.
const SVFType * getFlatternedElemType(const SVFType *baseType, u32_t flatten_idx)
Return the type of a flattened element given a flattened index.
ObjTypeInfo * createObjTypeInfo(const SVFType *type)
Create an objectInfo based on LLVM type (value is null, and type could be null, representing a dummy ...
std::string getGraphName() const
Return graph name.
FunObjVarToIDMapTy varargFunObjSymMap
vararg map
NodeID getReturnNode(const FunObjVar *func) const
GetReturnNode - Return the unique node representing the return value of a function.
const SVFType * getOriginalElemType(const SVFType *baseType, u32_t origId) const
IDToTypeInfoMapTy objTypeInfoMap
map a memory sym id to its obj
bool addEdge(SVFVar *src, SVFVar *dst, SVFStmt *edge)
Add an edge into the graph.
NodeID getVarargNode(const FunObjVar *func) const
getVarargNode - Return the unique node representing the variadic argument of a variadic function.
SVFStmt * hasNonlabeledEdge(SVFVar *src, SVFVar *dst, SVFStmt::PEDGEK kind)
const StInfo * getTypeInfo(const SVFType *T) const
Get struct info.
FunObjVarToIDMapTy returnFunObjSymMap
return map
const ObjTypeInfo * createDummyObjTypeInfo(NodeID symId, const SVFType *type)
void setFlag(MEMTYPE mask)
Flag for this object type.
static Option< bool > ModelArrays
static const Option< bool > CyclicFldIdx
static const Option< u32_t > MaxFieldLimit
Maximum number of field derivations for an object.
static const Option< bool > ShowHiddenNode
static GEdgeFlag makeEdgeFlagWithAddionalOpnd(GEdgeKind k, const SVFVar *var)
static GEdgeFlag makeEdgeFlagWithCallInst(GEdgeKind k, const ICFGNode *cs)
NodeID getId() const
Get ID.
GNodeK getNodeKind() const
Get node kind.
virtual const std::string & getName() const
void addOutEdge(SVFStmt *outEdge)
void addInEdge(SVFStmt *inEdge)
Edge management methods.
virtual const FunObjVar * getFunction() const
Get containing function, or null for globals/constants.
virtual bool isIsolatedNode() const
Check if this node is isolated (no edges) in the SVFIR graph.
virtual const std::string toString() const
Get string representation.
const SVFType * getOriginalElemType(u32_t fldIdx) const
std::vector< const SVFType * > & getFlattenElementTypes()
std::vector< u32_t > & getFlattenedElemIdxVec()
u32_t getNumOfFlattenElements() const
Return number of elements after flattening (including array elements)
std::vector< const SVFType * > & getFlattenFieldTypes()
std::vector< u32_t > & getFlattenedFieldIdxVec()
u32_t getNumOfFlattenFields() const
Return the number of fields after flattening (ignoring array elements)
void writeWrnMsg(const std::string &msg)
Writes a message run through wrnMsg.
std::ostream & outs()
Overwrite llvm::outs()
void ViewGraph(const GraphType &G, const std::string &name, bool ShortNames=false, GraphProgram::Name Program=GraphProgram::DOT)
llvm::IRBuilder IRBuilder
static std::string getEdgeAttributes(SVFVar *, EdgeIter EI, IRGraph *)
DOTGraphTraits(bool isSimple=false)
static std::string getGraphName(IRGraph *graph)
Return name of the graph.
static std::string getNodeLabel(SVFVar *node, IRGraph *)
static std::string getNodeAttributes(SVFVar *node, IRGraph *)
static bool isNodeHidden(SVFVar *node, IRGraph *)
NodeType::iterator ChildIteratorType
static std::string getEdgeSourceLabel(SVFVar *, EdgeIter EI)