36#include <sys/resource.h>
41#define KNRM "\x1B[1;0m"
42#define KRED "\x1B[1;31m"
43#define KGRN "\x1B[1;32m"
44#define KYEL "\x1B[1;33m"
45#define KBLU "\x1B[1;34m"
46#define KPUR "\x1B[1;35m"
47#define KCYA "\x1B[1;36m"
48#define KWHT "\x1B[1;37m"
111 outs() <<
"node " << node <<
" points-to: {";
127 for (PointsToList::const_iterator
ii =
ptl.begin(),
ie =
ptl.end();
141 outs() <<
"node " << node <<
" alias set: {";
154 O <<
" " << *
ii <<
" ";
162 o <<
" " <<
n <<
" ";
263 assert(
false &&
"SVFUtil::hclustMethodToString: unknown method");
318 return SVFUtil::isa<CallICFGNode>(inst);
323 if (
const CallICFGNode* call = SVFUtil::dyn_cast<CallICFGNode>(inst))
353 if(!isCallSite(node))
return false;
359 if(!isCallSite(cs))
return false;
386 return fun && (fun->
getName() ==
"exit" ||
387 fun->
getName() ==
"__assert_rtn" ||
388 fun->
getName() ==
"__assert_fail");
426 return arg->isArgOfUncalledFunction();
434 return SVFUtil::dyn_cast<ObjVar>((*
valVar->getInEdges().begin())->getSrcNode());
444 return funObjVar && funObjVar->
getName() ==
"main";
#define KNRM
Color for output format.
Class representing a function argument variable in the SVFIR.
const FunObjVar * getFunction() const
Get function of this call node.
const std::string & getName() const
const FunObjVar * getCalledFunction() const
static ExtAPI * getExtAPI()
bool is_ext(const FunObjVar *funObjVar)
static const Option< bool > DisableWarn
CallGraph * getCallGraph()
static SVFIR * getPAG(bool buildFromFile=false)
Singleton design here to make sure we only have one instance during any analysis.
const ValVar * getBaseValVar(NodeID id) const
virtual const SVFType * getType() const
virtual const std::string & getName() const
bool isTDFork(const CallICFGNode *inst) const
Return true if this call create a new thread.
static ThreadAPI * getThreadAPI()
Return a static reference.
char * strtok(char *str, const char *delim)
char * strstr(const char *haystack, const char *needle)
bool isReallocExtCall(const CallICFGNode *cs)
std::string sucMsg(const std::string &msg)
Returns successful message by converting a string into green string output.
void increaseStackSize()
Increase the stack size limit.
const ObjVar * getObjVarOfValVar(const ValVar *valVar)
std::string bugMsg1(const std::string &msg)
bool isProgEntryFunction(const FunObjVar *)
Program entry function e.g. main.
std::string hclustMethodToString(hclust_fast_methods method)
Returns a string representation of a hclust method.
void stopAnalysisLimitTimer(bool limitTimerSet)
bool isIntrinsicInst(const ICFGNode *inst)
Return true if it is an llvm intrinsic instruction.
u32_t getHeapAllocHoldingArgPosition(const FunObjVar *fun)
Get the position of argument that holds an allocated heap object.
const FunObjVar * getProgEntryFunction()
Get program entry function.
bool isHeapAllocExtFunViaRet(const FunObjVar *fun)
Return true if the call is a heap allocator/reallocator.
std::string pasMsg(const std::string &msg)
Print each pass/phase message by converting a string into blue string output.
OrderedSet< PointsTo, equalPointsTo > PointsToList
void dumpAliasSet(unsigned node, NodeBS To)
Dump alias set.
bool isHeapAllocExtFunViaArg(const FunObjVar *fun)
bool getMemoryUsageKB(u32_t *vmrss_kb, u32_t *vmsize_kb)
Get memory usage from system file. Return TRUE if succeed.
void reportMemoryUsageKB(const std::string &infor, OutStream &O=SVFUtil::outs())
Print memory usage in KB.
bool startAnalysisLimitTimer(unsigned timeLimit)
std::string errMsg(const std::string &msg)
Print error message by converting a string into red string output.
std::string bugMsg3(const std::string &msg)
bool isHeapAllocExtCallViaArg(const CallICFGNode *cs)
bool isHeapAllocExtCall(const ICFGNode *cs)
bool isArgOfUncalledFunction(const SVFVar *svfvar)
bool isExtCall(const FunObjVar *fun)
bool matchArgs(const CallICFGNode *cs, const FunObjVar *callee)
void writeWrnMsg(const std::string &msg)
Writes a message run through wrnMsg.
void dumpSparseSet(const NodeBS &To)
void dumpPointsToSet(unsigned node, NodeBS To)
Dump points-to set.
std::string bugMsg2(const std::string &msg)
bool isProgExitCall(const CallICFGNode *cs)
bool isCallSite(const ICFGNode *inst)
std::string wrnMsg(const std::string &msg)
Returns warning message by converting a string into yellow string output.
bool isReallocExtFun(const FunObjVar *fun)
Return true if the call is a heap reallocator.
bool isRetInstNode(const ICFGNode *node)
std::ostream & outs()
Overwrite llvm::outs()
void timeLimitReached(int signum)
Function to call when alarm for time limit hits.
bool isHeapAllocExtCallViaRet(const CallICFGNode *cs)
interfaces to be used externally
void dumpSet(NodeBS To, OutStream &O=SVFUtil::outs())
Dump sparse bitvector set.
void dumpPointsToList(const PointsToList &ptl)
bool isProgExitFunction(const FunObjVar *fun)
Return true if this is a program exit function call.
const FunObjVar * getProgFunction(const std::string &funName)
Get program entry function from function name.
llvm::IRBuilder IRBuilder