Static Value-Flow Analysis
Loading...
Searching...
No Matches
Classes | Typedefs | Functions | Variables
SVF::SVFUtil Namespace Reference

Classes

struct  add_const_past_pointer
 
struct  add_const_past_pointer< T, std::enable_if_t< std::is_pointer< T >::value > >
 
struct  add_lvalue_reference_if_not_pointer
 If T is a pointer, just return it. If it is not, return T&. More...
 
struct  add_lvalue_reference_if_not_pointer< T, std::enable_if_t< std::is_pointer< T >::value > >
 
struct  cast_convert_val
 
struct  cast_convert_val< To, FromTy, FromTy >
 
struct  cast_retty
 
struct  cast_retty_impl
 
struct  cast_retty_impl< To, const From * >
 
struct  cast_retty_impl< To, const From *const >
 
struct  cast_retty_impl< To, const From >
 
struct  cast_retty_impl< To, From * >
 
struct  cast_retty_impl< To, std::unique_ptr< From > >
 
struct  cast_retty_wrap
 
struct  cast_retty_wrap< To, FromTy, FromTy >
 
struct  equalNodeBS
 
struct  equalPointsTo
 
struct  is_iterable
 Type trait that checks if a type is iterable (can be applied on a range-based for loop) More...
 
struct  is_iterable< T, void_t< decltype(std::begin(std::declval< T & >()) !=std::end(std::declval< T & >()))> >
 
struct  is_map
 Type trait to check if a type is a map or unordered_map. More...
 
struct  is_map< std::map< Ts... > >
 
struct  is_map< std::unordered_map< Ts... > >
 
struct  is_sequence_container
 Type trait to check if a type is vector or list. More...
 
struct  is_sequence_container< std::deque< Ts... > >
 
struct  is_sequence_container< std::list< Ts... > >
 
struct  is_sequence_container< std::vector< Ts... > >
 
struct  is_set
 Type trait to check if a type is a set or unordered_set. More...
 
struct  is_set< std::set< Ts... > >
 
struct  is_set< std::unordered_set< Ts... > >
 
struct  is_simple_type
 
struct  isa_impl
 
struct  isa_impl< To, From, std::enable_if_t< std::is_base_of< To, From >::value > >
 Always allow upcasts, and perform no dynamic check for them. More...
 
struct  isa_impl_cl
 
struct  isa_impl_cl< To, const From * >
 
struct  isa_impl_cl< To, const From *const >
 
struct  isa_impl_cl< To, const From >
 
struct  isa_impl_cl< To, const std::unique_ptr< From > >
 
struct  isa_impl_cl< To, From * >
 
struct  isa_impl_cl< To, From *const >
 
struct  isa_impl_wrap
 
struct  isa_impl_wrap< To, FromTy, FromTy >
 
struct  make_void
 void_t is not available until C++17. We define it here for C++11/14. More...
 
struct  simplify_type
 
struct  simplify_type< const From >
 

Typedefs

typedef struct SVF::SVFUtil::equalPointsTo equalPointsTo
 
typedef struct SVF::SVFUtil::equalNodeBS equalNodeBS
 
typedef OrderedSet< PointsTo, equalPointsToPointsToList
 

Functions

template<class X , class Y >
LLVM_NODISCARD bool isa (const Y &Val)
 
template<typename First , typename Second , typename... Rest, typename Y >
LLVM_NODISCARD bool isa (const Y &Val)
 
template<class X , class Y >
std::enable_if_t<!is_simple_type< Y >::value, typename cast_retty< X, const Y >::ret_type > cast (const Y &Val)
 
template<class X , class Y >
cast_retty< X, Y >::ret_type cast (Y &Val)
 
template<class X , class Y >
cast_retty< X, Y * >::ret_type cast (Y *Val)
 
template<class X , class Y >
cast_retty< X, std::unique_ptr< Y > >::ret_type cast (std::unique_ptr< Y > &&Val)
 
template<class X , class Y >
LLVM_NODISCARD std::enable_if_t<!is_simple_type< Y >::value, typename cast_retty< X, const Y >::ret_type > dyn_cast (const Y &Val)
 
template<class X , class Y >
LLVM_NODISCARD cast_retty< X, Y >::ret_type dyn_cast (Y &Val)
 
template<class X , class Y >
LLVM_NODISCARD cast_retty< X, Y * >::ret_type dyn_cast (Y *Val)
 
std::ostream & outs ()
 Overwrite llvm::outs()
 
std::ostream & errs ()
 Overwrite llvm::errs()
 
void dumpSet (NodeBS To, OutStream &O=SVFUtil::outs())
 Dump sparse bitvector set.
 
void dumpSet (PointsTo To, OutStream &O=SVFUtil::outs())
 
void dumpPointsToSet (unsigned node, NodeBS To)
 Dump points-to set.
 
void dumpSparseSet (const NodeBS &To)
 
void dumpAliasSet (unsigned node, NodeBS To)
 Dump alias set.
 
std::string sucMsg (const std::string &msg)
 Returns successful message by converting a string into green string output.
 
std::string wrnMsg (const std::string &msg)
 Returns warning message by converting a string into yellow string output.
 
void writeWrnMsg (const std::string &msg)
 Writes a message run through wrnMsg.
 
std::string errMsg (const std::string &msg)
 Print error message by converting a string into red string output.
 
std::string bugMsg1 (const std::string &msg)
 
std::string bugMsg2 (const std::string &msg)
 
std::string bugMsg3 (const std::string &msg)
 
std::string pasMsg (const std::string &msg)
 Print each pass/phase message by converting a string into blue string output.
 
void reportMemoryUsageKB (const std::string &infor, OutStream &O=SVFUtil::outs())
 Print memory usage in KB.
 
bool getMemoryUsageKB (u32_t *vmrss_kb, u32_t *vmsize_kb)
 Get memory usage from system file. Return TRUE if succeed.
 
void increaseStackSize ()
 Increase the stack size limit.
 
bool cmpPts (const PointsTo &lpts, const PointsTo &rpts)
 
bool cmpNodeBS (const NodeBS &lpts, const NodeBS &rpts)
 
NodeBS ptsToNodeBS (const PointsTo &pts)
 
void dumpPointsToList (const PointsToList &ptl)
 
bool isIntrinsicInst (const ICFGNode *inst)
 Return true if it is an llvm intrinsic instruction.
 
bool isCallSite (const ICFGNode *inst)
 
bool isRetInstNode (const ICFGNode *node)
 
bool isNonInstricCallSite (const ICFGNode *inst)
 Whether an instruction is a callsite in the application code, excluding llvm intrinsic calls.
 
bool matchArgs (const CallICFGNode *cs, const FunObjVar *callee)
 
std::vector< std::string > split (const std::string &s, char separator)
 Split into two substrings around the first occurrence of a separator string.
 
template<typename Data >
void mergePtsOccMaps (Map< Data, unsigned > &to, const Map< Data, unsigned > from)
 Given a map mapping points-to sets to a count, adds from into to.
 
std::string hclustMethodToString (hclust_fast_methods method)
 Returns a string representation of a hclust method.
 
template<typename Key , typename KeySet >
void insertKey (const Key &key, KeySet &keySet)
 Inserts an element into a Set/CondSet (with ::insert).
 
void insertKey (const NodeID &key, NodeBS &keySet)
 Inserts a NodeID into a NodeBS.
 
template<typename Key , typename KeySet >
void removeKey (const Key &key, KeySet &keySet)
 Removes an element from a Set/CondSet (or anything implementing erase).
 
void removeKey (const NodeID &key, NodeBS &keySet)
 Removes a NodeID from a NodeBS.
 
void timeLimitReached (int signum)
 Function to call when alarm for time limit hits.
 
bool startAnalysisLimitTimer (unsigned timeLimit)
 
void stopAnalysisLimitTimer (bool limitTimerSet)
 
bool isExtCall (const FunObjVar *fun)
 
bool isHeapAllocExtFunViaRet (const FunObjVar *fun)
 Return true if the call is a heap allocator/reallocator.
 
bool isHeapAllocExtFunViaArg (const FunObjVar *fun)
 
u32_t getHeapAllocHoldingArgPosition (const FunObjVar *fun)
 Get the position of argument that holds an allocated heap object.
 
bool isReallocExtFun (const FunObjVar *fun)
 Return true if the call is a heap reallocator.
 
bool isProgEntryFunction (const FunObjVar *)
 Program entry function e.g. main.
 
const FunObjVargetProgFunction (const std::string &funName)
 Get program entry function from function name.
 
const FunObjVargetProgEntryFunction ()
 Get program entry function.
 
bool isProgExitFunction (const FunObjVar *fun)
 Return true if this is a program exit function call.
 
bool isArgOfUncalledFunction (const SVFVar *svfvar)
 
const ObjVargetObjVarOfValVar (const ValVar *valVar)
 
const ValVargetForkedFun (const CallICFGNode *inst)
 Return thread fork function.
 
bool isExtCall (const CallICFGNode *cs)
 
bool isExtCall (const ICFGNode *node)
 
bool isHeapAllocExtCallViaArg (const CallICFGNode *cs)
 
bool isHeapAllocExtCallViaRet (const CallICFGNode *cs)
 interfaces to be used externally
 
bool isHeapAllocExtCall (const ICFGNode *cs)
 
u32_t getHeapAllocHoldingArgPosition (const CallICFGNode *cs)
 
bool isReallocExtCall (const CallICFGNode *cs)
 

Variables

template<typename... Ts>
constexpr bool is_sequence_container_v = is_sequence_container<Ts...>::value
 
template<typename... Ts>
constexpr bool is_map_v = is_map<Ts...>::value
 
template<typename... Ts>
constexpr bool is_set_v = is_set<Ts...>::value
 
template<typename... Ts>
using void_t = typename make_void< Ts... >::type
 
template<typename T >
constexpr bool is_iterable_v = is_iterable<T>::value
 
bool isThreadForkCall (const CallICFGNode *inst)
 
bool isThreadJoinCall (const CallICFGNode *cs)
 
bool isThreadExitCall (const CallICFGNode *cs)
 
bool isLockAquireCall (const CallICFGNode *cs)
 
bool isLockReleaseCall (const CallICFGNode *cs)
 
bool isBarrierWaitCall (const CallICFGNode *cs)
 Return true if this is a barrier wait call.
 
const ValVargetActualParmAtForkSite (const CallICFGNode *cs)
 Return sole argument of the thread routine.
 
bool isProgExitCall (const CallICFGNode *cs)
 
template<typename T >
constexpr std::remove_reference< T >::type && move (T &&t) noexcept
 

Typedef Documentation

◆ equalNodeBS

◆ equalPointsTo

◆ PointsToList

Definition at line 168 of file SVFUtil.h.

◆ void_t

template<typename... Ts>
using SVF::SVFUtil::void_t = typedef typename make_void<Ts...>::type

Definition at line 430 of file SVFUtil.h.

Function Documentation

◆ bugMsg1()

std::string SVF::SVFUtil::bugMsg1 ( const std::string &  msg)

Definition at line 83 of file SVFUtil.cpp.

84{
85 return KYEL + msg + KNRM;
86}
#define KNRM
Color for output format.
Definition SVFUtil.cpp:41
#define KYEL
Definition SVFUtil.cpp:44
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

◆ bugMsg2()

std::string SVF::SVFUtil::bugMsg2 ( const std::string &  msg)

Definition at line 88 of file SVFUtil.cpp.

89{
90 return KPUR + msg + KNRM;
91}
#define KPUR
Definition SVFUtil.cpp:46

◆ bugMsg3()

std::string SVF::SVFUtil::bugMsg3 ( const std::string &  msg)

Definition at line 93 of file SVFUtil.cpp.

94{
95 return KCYA + msg + KNRM;
96}
#define KCYA
Definition SVFUtil.cpp:47

◆ cast() [1/4]

template<class X , class Y >
std::enable_if_t<!is_simple_type< Y >::value, typename cast_retty< X, const Y >::ret_type > SVF::SVFUtil::cast ( const Y Val)
inline

Definition at line 360 of file Casting.h.

361{
362 assert(SVFUtil::isa<X>(Val) && "cast<Ty>() argument of incompatible type!");
363 return cast_convert_val<
364 X, const Y, typename simplify_type<const Y>::SimpleType>::doit(Val);
365}

◆ cast() [2/4]

template<class X , class Y >
cast_retty< X, std::unique_ptr< Y > >::ret_type SVF::SVFUtil::cast ( std::unique_ptr< Y > &&  Val)
inline

Definition at line 385 of file Casting.h.

386{
387 assert(SVFUtil::isa<X>(Val.get()) && "cast<Ty>() argument of incompatible type!");
388 using ret_type = typename cast_retty<X, std::unique_ptr<Y>>::ret_type;
389 return ret_type(
391 Val.release()));
392}

◆ cast() [3/4]

template<class X , class Y >
cast_retty< X, Y >::ret_type SVF::SVFUtil::cast ( Y Val)
inline

Definition at line 368 of file Casting.h.

369{
370 assert(SVFUtil::isa<X>(Val) && "cast<Ty>() argument of incompatible type!");
371 return cast_convert_val<X, Y,
372 typename simplify_type<Y>::SimpleType>::doit(Val);
373}

◆ cast() [4/4]

template<class X , class Y >
cast_retty< X, Y * >::ret_type SVF::SVFUtil::cast ( Y Val)
inline

Definition at line 376 of file Casting.h.

377{
378 assert(SVFUtil::isa<X>(Val) && "cast<Ty>() argument of incompatible type!");
379 return cast_convert_val<X, Y*,
380 typename simplify_type<Y*>::SimpleType>::doit(Val);
381}

◆ cmpNodeBS()

bool SVF::SVFUtil::cmpNodeBS ( const NodeBS lpts,
const NodeBS rpts 
)
inline

Definition at line 127 of file SVFUtil.h.

128{
129 if (lpts.count() != rpts.count())
130 return (lpts.count() < rpts.count());
131 else
132 {
133 NodeBS::iterator bit = lpts.begin(), eit = lpts.end();
134 NodeBS::iterator rbit = rpts.begin(), reit = rpts.end();
135 for (; bit != eit && rbit != reit; bit++, rbit++)
136 {
137 if (*bit != *rbit)
138 return (*bit < *rbit);
139 }
140
141 return false;
142 }
143}

◆ cmpPts()

bool SVF::SVFUtil::cmpPts ( const PointsTo lpts,
const PointsTo rpts 
)
inline

Compare two PointsTo according to their size and points-to elements.

  1. PointsTo with smaller size is smaller than the other;
  2. If the sizes are equal, comparing the points-to targets.

Definition at line 109 of file SVFUtil.h.

110{
111 if (lpts.count() != rpts.count())
112 return (lpts.count() < rpts.count());
113 else
114 {
115 PointsTo::iterator bit = lpts.begin(), eit = lpts.end();
116 PointsTo::iterator rbit = rpts.begin(), reit = rpts.end();
117 for (; bit != eit && rbit != reit; bit++, rbit++)
118 {
119 if (*bit != *rbit)
120 return (*bit < *rbit);
121 }
122
123 return false;
124 }
125}

◆ dumpAliasSet()

void SVF::SVFUtil::dumpAliasSet ( unsigned  node,
NodeBS  bs 
)

Dump alias set.

Dump alias set

Definition at line 139 of file SVFUtil.cpp.

140{
141 outs() << "node " << node << " alias set: {";
142 dumpSet(bs);
143 outs() << "}\n";
144}
std::ostream & outs()
Overwrite llvm::outs()
Definition SVFUtil.h:52
void dumpSet(NodeBS To, OutStream &O=SVFUtil::outs())
Dump sparse bitvector set.
Definition SVFUtil.cpp:149

◆ dumpPointsToList()

void SVF::SVFUtil::dumpPointsToList ( const PointsToList ptl)

Definition at line 124 of file SVFUtil.cpp.

125{
126 outs() << "{";
127 for (PointsToList::const_iterator ii = ptl.begin(), ie = ptl.end();
128 ii != ie; ii++)
129 {
130 auto bs = *ii;
131 dumpSet(bs);
132 }
133 outs() << "}\n";
134}

◆ dumpPointsToSet()

void SVF::SVFUtil::dumpPointsToSet ( unsigned  node,
NodeBS  bs 
)

Dump points-to set.

Dump points-to set

Definition at line 109 of file SVFUtil.cpp.

110{
111 outs() << "node " << node << " points-to: {";
112 dumpSet(bs);
113 outs() << "}\n";
114}

◆ dumpSet() [1/2]

void SVF::SVFUtil::dumpSet ( NodeBS  bs,
OutStream O = SVFUtil::outs() 
)

Dump sparse bitvector set.

Dump bit vector set

Definition at line 149 of file SVFUtil.cpp.

150{
151 for (NodeBS::iterator ii = bs.begin(), ie = bs.end();
152 ii != ie; ii++)
153 {
154 O << " " << *ii << " ";
155 }
156}

◆ dumpSet() [2/2]

void SVF::SVFUtil::dumpSet ( PointsTo  To,
OutStream O = SVFUtil::outs() 
)

Definition at line 158 of file SVFUtil.cpp.

159{
160 for (NodeID n : pt)
161 {
162 o << " " << n << " ";
163 }
164}
cJSON * n
Definition cJSON.cpp:2558
u32_t NodeID
Definition GeneralType.h:56

◆ dumpSparseSet()

void SVF::SVFUtil::dumpSparseSet ( const NodeBS To)

Definition at line 117 of file SVFUtil.cpp.

118{
119 outs() << "{";
120 dumpSet(bs);
121 outs() << "}\n";
122}

◆ dyn_cast() [1/3]

template<class X , class Y >
LLVM_NODISCARD std::enable_if_t<!is_simple_type< Y >::value, typename cast_retty< X, const Y >::ret_type > SVF::SVFUtil::dyn_cast ( const Y Val)
inline

Definition at line 405 of file Casting.h.

406{
407 return SVFUtil::isa<X>(Val) ? SVFUtil::cast<X>(Val) : nullptr;
408}

◆ dyn_cast() [2/3]

template<class X , class Y >
LLVM_NODISCARD cast_retty< X, Y >::ret_type SVF::SVFUtil::dyn_cast ( Y Val)
inline

Definition at line 411 of file Casting.h.

412{
413 return SVFUtil::isa<X>(Val) ? SVFUtil::cast<X>(Val) : nullptr;
414}

◆ dyn_cast() [3/3]

template<class X , class Y >
LLVM_NODISCARD cast_retty< X, Y * >::ret_type SVF::SVFUtil::dyn_cast ( Y Val)
inline

Definition at line 417 of file Casting.h.

418{
419 return SVFUtil::isa<X>(Val) ? SVFUtil::cast<X>(Val) : nullptr;
420}

◆ errMsg()

std::string SVF::SVFUtil::errMsg ( const std::string &  msg)

Print error message by converting a string into red string output.

print error message by converting a string into red string output

Definition at line 78 of file SVFUtil.cpp.

79{
80 return KRED + msg + KNRM;
81}
#define KRED
Definition SVFUtil.cpp:42

◆ errs()

std::ostream & SVF::SVFUtil::errs ( )
inline

Overwrite llvm::errs()

Definition at line 58 of file SVFUtil.h.

59{
60 return std::cerr;
61}

◆ getActualParmAtForkSite()

const ValVar * SVF::SVFUtil::getActualParmAtForkSite ( const CallICFGNode cs)
inline

Return sole argument of the thread routine.

Definition at line 408 of file SVFUtil.h.

409{
410 return ThreadAPI::getThreadAPI()->getActualParmAtForkSite(cs);
411}

◆ getForkedFun()

const ValVar * SVF::SVFUtil::getForkedFun ( const CallICFGNode inst)
inline

Return thread fork function.

Definition at line 331 of file SVFUtil.h.

332{
333 return ThreadAPI::getThreadAPI()->getForkedFun(inst);
334}

◆ getHeapAllocHoldingArgPosition() [1/2]

u32_t SVF::SVFUtil::getHeapAllocHoldingArgPosition ( const CallICFGNode cs)

Definition at line 345 of file SVFUtil.cpp.

346{
347 return getHeapAllocHoldingArgPosition(cs->getCalledFunction());
348}
const FunObjVar * getCalledFunction() const
Definition ICFGNode.h:512

◆ getHeapAllocHoldingArgPosition() [2/2]

u32_t SVF::SVFUtil::getHeapAllocHoldingArgPosition ( const FunObjVar fun)
inline

Get the position of argument that holds an allocated heap object.

Definition at line 293 of file SVFUtil.h.

294{
295 return ExtAPI::getExtAPI()->get_alloc_arg_pos(fun);
296}

◆ getMemoryUsageKB()

bool SVF::SVFUtil::getMemoryUsageKB ( u32_t vmrss_kb,
u32_t vmsize_kb 
)

Get memory usage from system file. Return TRUE if succeed.

Get memory usage

Definition at line 179 of file SVFUtil.cpp.

180{
181 /* Get the current process' status file from the proc filesystem */
182 char buffer[8192];
183 FILE* procfile = fopen("/proc/self/status", "r");
184 if(procfile)
185 {
186 u32_t result = fread(buffer, sizeof(char), 8192, procfile);
187 if (result == 0)
188 {
189 fputs ("Reading error\n",stderr);
190 }
191 }
192 else
193 {
194 SVFUtil::writeWrnMsg(" /proc/self/status file not exit!");
195 return false;
196 }
198
199 /* Look through proc status contents line by line */
200 char delims[] = "\n";
201 char* line = strtok(buffer, delims);
202
203 bool found_vmrss = false;
204 bool found_vmsize = false;
205
206 while (line != nullptr && (found_vmrss == false || found_vmsize == false))
207 {
208 if (strstr(line, "VmRSS:") != nullptr)
209 {
210 sscanf(line, "%*s %u", vmrss_kb);
211 found_vmrss = true;
212 }
213
214 if (strstr(line, "VmSize:") != nullptr)
215 {
216 sscanf(line, "%*s %u", vmsize_kb);
217 found_vmsize = true;
218 }
219
220 line = strtok(nullptr, delims);
221 }
222
223 return (found_vmrss && found_vmsize);
224}
char * buffer
Definition cJSON.h:163
char * strtok(char *str, const char *delim)
Definition extapi.c:463
char * strstr(const char *haystack, const char *needle)
Definition extapi.c:821
void writeWrnMsg(const std::string &msg)
Writes a message run through wrnMsg.
Definition SVFUtil.cpp:68
unsigned u32_t
Definition GeneralType.h:47

◆ getObjVarOfValVar()

const ObjVar * SVF::SVFUtil::getObjVarOfValVar ( const ValVar valVar)

Definition at line 431 of file SVFUtil.cpp.

432{
433 assert(valVar->getInEdges().size() == 1);
434 return SVFUtil::dyn_cast<ObjVar>((*valVar->getInEdges().begin())->getSrcNode());
435}

◆ getProgEntryFunction()

const FunObjVar * SVF::SVFUtil::getProgEntryFunction ( )

Get program entry function.

Get program entry function from module.

Definition at line 410 of file SVFUtil.cpp.

411{
413 for (const auto& item: *svfirCallGraph)
414 {
415 const CallGraphNode*fun = item.second;
416 if (isProgEntryFunction(fun->getFunction()))
417 return (fun->getFunction());
418 }
419 return nullptr;
420}
cJSON * item
Definition cJSON.h:222
const FunObjVar * getFunction() const
Get function of this call node.
Definition CallGraph.h:191
CallGraph * getCallGraph()
Definition SVFIR.h:184
static SVFIR * getPAG(bool buildFromFile=false)
Singleton design here to make sure we only have one instance during any analysis.
Definition SVFIR.h:116

◆ getProgFunction()

const FunObjVar * SVF::SVFUtil::getProgFunction ( const std::string &  funName)

Get program entry function from function name.

Get program entry function from module.

Definition at line 397 of file SVFUtil.cpp.

398{
400 for (const auto& item: *svfirCallGraph)
401 {
402 const CallGraphNode*fun = item.second;
403 if (fun->getName()==funName)
404 return fun->getFunction();
405 }
406 return nullptr;
407}
const std::string & getName() const
Definition CallGraph.cpp:45

◆ hclustMethodToString()

std::string SVF::SVFUtil::hclustMethodToString ( hclust_fast_methods  method)

Returns a string representation of a hclust method.

Definition at line 248 of file SVFUtil.cpp.

249{
250 switch (method)
251 {
253 return "single";
255 return "complete";
257 return "average";
259 return "median";
261 return "svf-best";
262 default:
263 assert(false && "SVFUtil::hclustMethodToString: unknown method");
264 abort();
265 }
266}
@ HCLUST_METHOD_AVERAGE
Definition fastcluster.h:72
@ HCLUST_METHOD_COMPLETE
Definition fastcluster.h:70
@ HCLUST_METHOD_SVF_BEST
Definition fastcluster.h:76
@ HCLUST_METHOD_MEDIAN
Definition fastcluster.h:74
@ HCLUST_METHOD_SINGLE
Definition fastcluster.h:68

◆ increaseStackSize()

void SVF::SVFUtil::increaseStackSize ( )

Increase the stack size limit.

Increase stack size

Definition at line 229 of file SVFUtil.cpp.

230{
231 const rlim_t kStackSize = 256L * 1024L * 1024L; // min stack size = 256 Mb
232 struct rlimit rl;
234 if (result == 0)
235 {
236 if (rl.rlim_cur < kStackSize)
237 {
238 rl.rlim_cur = kStackSize;
240 if (result != 0)
241 writeWrnMsg("setrlimit returned result !=0 \n");
242 }
243 }
244}

◆ insertKey() [1/2]

template<typename Key , typename KeySet >
void SVF::SVFUtil::insertKey ( const Key key,
KeySet keySet 
)
inline

Inserts an element into a Set/CondSet (with ::insert).

Definition at line 232 of file SVFUtil.h.

233{
234 keySet.insert(key);
235}

◆ insertKey() [2/2]

void SVF::SVFUtil::insertKey ( const NodeID key,
NodeBS keySet 
)
inline

Inserts a NodeID into a NodeBS.

Definition at line 238 of file SVFUtil.h.

239{
240 keySet.set(key);
241}

◆ isa() [1/2]

template<class X , class Y >
LLVM_NODISCARD bool SVF::SVFUtil::isa ( const Y Val)
inline

Definition at line 241 of file Casting.h.

242{
243 return isa_impl_wrap<X, const Y,
245}

◆ isa() [2/2]

template<typename First , typename Second , typename... Rest, typename Y >
LLVM_NODISCARD bool SVF::SVFUtil::isa ( const Y Val)
inline

Definition at line 248 of file Casting.h.

249{
250 return SVFUtil::isa<First>(Val) || SVFUtil::isa<Second, Rest...>(Val);
251}

◆ isArgOfUncalledFunction()

bool SVF::SVFUtil::isArgOfUncalledFunction ( const SVFVar svfvar)

Definition at line 422 of file SVFUtil.cpp.

423{
424 const ValVar* pVar = PAG::getPAG()->getBaseValVar(svfvar->getId());
425 if(const ArgValVar* arg = SVFUtil::dyn_cast<ArgValVar>(pVar))
426 return arg->isArgOfUncalledFunction();
427 else
428 return false;
429}
Class representing a function argument variable in the SVFIR.
const ValVar * getBaseValVar(NodeID id) const
Definition SVFIR.h:433

◆ isBarrierWaitCall()

bool SVF::SVFUtil::isBarrierWaitCall ( const CallICFGNode cs)
inline

Return true if this is a barrier wait call.

Definition at line 400 of file SVFUtil.h.

401{
402 return ThreadAPI::getThreadAPI()->isTDBarWait(cs);
403}

◆ isCallSite()

bool SVF::SVFUtil::isCallSite ( const ICFGNode inst)

Definition at line 316 of file SVFUtil.cpp.

317{
318 return SVFUtil::isa<CallICFGNode>(inst);
319}

◆ isExtCall() [1/3]

bool SVF::SVFUtil::isExtCall ( const CallICFGNode cs)

Definition at line 334 of file SVFUtil.cpp.

335{
336 return isExtCall(cs->getCalledFunction());
337}

◆ isExtCall() [2/3]

bool SVF::SVFUtil::isExtCall ( const FunObjVar fun)

Return true if the call is an external call (external library in function summary table) If the library function is redefined in the application code (e.g., memcpy), it will return false and will not be treated as an external call.

Definition at line 437 of file SVFUtil.cpp.

438{
439 return fun && ExtAPI::getExtAPI()->is_ext(fun);
440}
static ExtAPI * getExtAPI()
Definition ExtAPI.cpp:43
bool is_ext(const FunObjVar *funObjVar)
Definition ExtAPI.cpp:257

◆ isExtCall() [3/3]

bool SVF::SVFUtil::isExtCall ( const ICFGNode node)

Definition at line 351 of file SVFUtil.cpp.

352{
353 if(!isCallSite(node)) return false;
354 return isExtCall(cast<CallICFGNode>(node)->getCalledFunction());
355}

◆ isHeapAllocExtCall()

bool SVF::SVFUtil::isHeapAllocExtCall ( const ICFGNode cs)

Definition at line 357 of file SVFUtil.cpp.

358{
359 if(!isCallSite(cs)) return false;
360 return isHeapAllocExtCallViaRet(cast<CallICFGNode>(cs)) || isHeapAllocExtCallViaArg(cast<CallICFGNode>(cs));
361}

◆ isHeapAllocExtCallViaArg()

bool SVF::SVFUtil::isHeapAllocExtCallViaArg ( const CallICFGNode cs)

Definition at line 339 of file SVFUtil.cpp.

340{
342}
bool isHeapAllocExtFunViaArg(const FunObjVar *fun)
Definition SVFUtil.h:285

◆ isHeapAllocExtCallViaRet()

bool SVF::SVFUtil::isHeapAllocExtCallViaRet ( const CallICFGNode cs)

interfaces to be used externally

Definition at line 363 of file SVFUtil.cpp.

364{
365 bool isPtrTy = cs->getType()->isPointerTy();
367}
bool isPointerTy() const
Definition SVFType.h:249
virtual const SVFType * getType() const
Definition SVFValue.h:169
bool isHeapAllocExtFunViaRet(const FunObjVar *fun)
Return true if the call is a heap allocator/reallocator.
Definition SVFUtil.h:279

◆ isHeapAllocExtFunViaArg()

bool SVF::SVFUtil::isHeapAllocExtFunViaArg ( const FunObjVar fun)
inline

Definition at line 285 of file SVFUtil.h.

286{
287 return fun && ExtAPI::getExtAPI()->is_arg_alloc(fun);
288}

◆ isHeapAllocExtFunViaRet()

bool SVF::SVFUtil::isHeapAllocExtFunViaRet ( const FunObjVar fun)
inline

Return true if the call is a heap allocator/reallocator.

note that these two functions are not suppose to be used externally

Definition at line 279 of file SVFUtil.h.

280{
281 return fun && (ExtAPI::getExtAPI()->is_alloc(fun)
282 || ExtAPI::getExtAPI()->is_realloc(fun));
283}

◆ isIntrinsicInst()

bool SVF::SVFUtil::isIntrinsicInst ( const ICFGNode inst)

Return true if it is an llvm intrinsic instruction.

Definition at line 321 of file SVFUtil.cpp.

322{
323 if (const CallICFGNode* call = SVFUtil::dyn_cast<CallICFGNode>(inst))
324 {
325 const FunObjVar* func = call->getCalledFunction();
326 if (func && func->isIntrinsic())
327 {
328 return true;
329 }
330 }
331 return false;
332}

◆ isLockAquireCall()

bool SVF::SVFUtil::isLockAquireCall ( const CallICFGNode cs)
inline

Return true if this is a lock acquire call

Definition at line 384 of file SVFUtil.h.

385{
386 return ThreadAPI::getThreadAPI()->isTDAcquire(cs);
387}

◆ isLockReleaseCall()

bool SVF::SVFUtil::isLockReleaseCall ( const CallICFGNode cs)
inline

Return true if this is a lock acquire call

Definition at line 392 of file SVFUtil.h.

393{
394 return ThreadAPI::getThreadAPI()->isTDRelease(cs);
395}

◆ isNonInstricCallSite()

bool SVF::SVFUtil::isNonInstricCallSite ( const ICFGNode inst)
inline

Whether an instruction is a callsite in the application code, excluding llvm intrinsic calls.

Definition at line 182 of file SVFUtil.h.

183{
184 if(isIntrinsicInst(inst))
185 return false;
186 return isCallSite(inst);
187}

◆ isProgEntryFunction()

bool SVF::SVFUtil::isProgEntryFunction ( const FunObjVar funObjVar)

Program entry function e.g. main.

Return true if this is a program entry function (e.g. main)

Definition at line 442 of file SVFUtil.cpp.

443{
444 return funObjVar && funObjVar->getName() == "main";
445}
virtual const std::string & getName() const
Definition SVFValue.h:184

◆ isProgExitCall()

bool SVF::SVFUtil::isProgExitCall ( const CallICFGNode cs)

Definition at line 391 of file SVFUtil.cpp.

392{
394}
bool isProgExitFunction(const FunObjVar *fun)
Return true if this is a program exit function call.
Definition SVFUtil.cpp:384

◆ isProgExitFunction()

bool SVF::SVFUtil::isProgExitFunction ( const FunObjVar fun)

Return true if this is a program exit function call.

Definition at line 384 of file SVFUtil.cpp.

385{
386 return fun && (fun->getName() == "exit" ||
387 fun->getName() == "__assert_rtn" ||
388 fun->getName() == "__assert_fail");
389}

◆ isReallocExtCall()

bool SVF::SVFUtil::isReallocExtCall ( const CallICFGNode cs)

Definition at line 369 of file SVFUtil.cpp.

370{
371 bool isPtrTy = cs->getType()->isPointerTy();
373}
bool isReallocExtFun(const FunObjVar *fun)
Return true if the call is a heap reallocator.
Definition SVFUtil.h:301

◆ isReallocExtFun()

bool SVF::SVFUtil::isReallocExtFun ( const FunObjVar fun)
inline

Return true if the call is a heap reallocator.

note that this function is not suppose to be used externally

Definition at line 301 of file SVFUtil.h.

302{
303 return fun && (ExtAPI::getExtAPI()->is_realloc(fun));
304}

◆ isRetInstNode()

bool SVF::SVFUtil::isRetInstNode ( const ICFGNode node)

Definition at line 376 of file SVFUtil.cpp.

377{
378 if (const auto& intraNode = dyn_cast<IntraICFGNode>(node))
379 return intraNode->isRetInst();
380 else
381 return false;
382}

◆ isThreadExitCall()

bool SVF::SVFUtil::isThreadExitCall ( const CallICFGNode cs)
inline

Return true if this is a thread exit call

Definition at line 376 of file SVFUtil.h.

377{
378 return ThreadAPI::getThreadAPI()->isTDExit(cs);
379}

◆ isThreadForkCall()

bool SVF::SVFUtil::isThreadForkCall ( const CallICFGNode inst)
inline

Return true if this is a thread creation call

Definition at line 360 of file SVFUtil.h.

361{
362 return ThreadAPI::getThreadAPI()->isTDFork(inst);
363}

◆ isThreadJoinCall()

bool SVF::SVFUtil::isThreadJoinCall ( const CallICFGNode cs)
inline

Return true if this is a thread join call

Definition at line 368 of file SVFUtil.h.

369{
370 return ThreadAPI::getThreadAPI()->isTDJoin(cs);
371}

◆ matchArgs()

bool SVF::SVFUtil::matchArgs ( const CallICFGNode call,
const FunObjVar callee 
)

Match arguments for callsite at caller and callee if the arg size does not match then we do not need to connect this parameter unless the callee is a variadic function (the first parameter of variadic function is its parameter number)

Match arguments for callsite at caller and callee if the arg size does not match then we do not need to connect this parameter unless the callee is a variadic function (the first parameter of variadic function is its parameter number) e.g., void variadicFoo(int num, ...); variadicFoo(5, 1,2,3,4,5) for variadic function, callsite arg size must be greater than or equal to callee arg size

Definition at line 308 of file SVFUtil.cpp.

309{
310 if (callee->isVarArg() || ThreadAPI::getThreadAPI()->isTDFork(call))
311 return call->arg_size() >= callee->arg_size();
312 else
313 return call->arg_size() == callee->arg_size();
314}
u32_t arg_size() const
Definition ICFGNode.h:499
bool isTDFork(const CallICFGNode *inst) const
Return true if this call create a new thread.
static ThreadAPI * getThreadAPI()
Return a static reference.
Definition ThreadAPI.h:98

◆ mergePtsOccMaps()

template<typename Data >
void SVF::SVFUtil::mergePtsOccMaps ( Map< Data, unsigned > &  to,
const Map< Data, unsigned from 
)

Given a map mapping points-to sets to a count, adds from into to.

Definition at line 219 of file SVFUtil.h.

220{
221 for (const typename Map<Data, unsigned>::value_type &ptocc : from)
222 {
223 to[ptocc.first] += ptocc.second;
224 }
225}
std::unordered_map< Key, Value, Hash, KeyEqual, Allocator > Map

◆ move()

template<typename T >
constexpr std::remove_reference< T >::type && SVF::SVFUtil::move ( T &&  t)
constexprnoexcept

Definition at line 420 of file SVFUtil.h.

421{
422 return std::move(t);
423}

◆ outs()

std::ostream & SVF::SVFUtil::outs ( )
inline

Overwrite llvm::outs()

Definition at line 52 of file SVFUtil.h.

53{
54 return std::cout;
55}

◆ pasMsg()

std::string SVF::SVFUtil::pasMsg ( const std::string &  msg)

Print each pass/phase message by converting a string into blue string output.

print each pass/phase message by converting a string into blue string output

Definition at line 101 of file SVFUtil.cpp.

102{
103 return KBLU + msg + KNRM;
104}
#define KBLU
Definition SVFUtil.cpp:45

◆ ptsToNodeBS()

NodeBS SVF::SVFUtil::ptsToNodeBS ( const PointsTo pts)
inline

Definition at line 161 of file SVFUtil.h.

162{
163 NodeBS nbs;
164 for (const NodeID o : pts) nbs.set(o);
165 return nbs;
166}
set(THREADS_PREFER_PTHREAD_FLAG ON) find_package(Threads REQUIRED) add_llvm_executable(wpa wpa.cpp) target_link_libraries(wpa PUBLIC $
Definition CMakeLists.txt:1

◆ removeKey() [1/2]

template<typename Key , typename KeySet >
void SVF::SVFUtil::removeKey ( const Key key,
KeySet keySet 
)
inline

Removes an element from a Set/CondSet (or anything implementing erase).

Definition at line 245 of file SVFUtil.h.

246{
247 keySet.erase(key);
248}

◆ removeKey() [2/2]

void SVF::SVFUtil::removeKey ( const NodeID key,
NodeBS keySet 
)
inline

Removes a NodeID from a NodeBS.

Definition at line 251 of file SVFUtil.h.

252{
253 keySet.reset(key);
254}

◆ reportMemoryUsageKB()

void SVF::SVFUtil::reportMemoryUsageKB ( const std::string &  infor,
OutStream O = SVFUtil::outs() 
)

Print memory usage in KB.

Print memory usage

Definition at line 169 of file SVFUtil.cpp.

170{
173 O << infor << "\tVmRSS: " << vmrss << "\tVmSize: " << vmsize << "\n";
174}
bool getMemoryUsageKB(u32_t *vmrss_kb, u32_t *vmsize_kb)
Get memory usage from system file. Return TRUE if succeed.
Definition SVFUtil.cpp:179

◆ split()

std::vector< std::string > SVF::SVFUtil::split ( const std::string &  s,
char  separator 
)
inline

Split into two substrings around the first occurrence of a separator string.

Definition at line 196 of file SVFUtil.h.

197{
198 std::vector<std::string> output;
199 std::string::size_type prev_pos = 0, pos = 0;
200 while ((pos = s.find(separator, pos)) != std::string::npos)
201 {
202 std::string substring(s.substr(prev_pos, pos - prev_pos));
203 if (!substring.empty())
204 {
205 output.push_back(substring);
206 }
207 prev_pos = ++pos;
208 }
209 std::string lastSubstring(s.substr(prev_pos, pos - prev_pos));
210 if (!lastSubstring.empty())
211 {
212 output.push_back(lastSubstring);
213 }
214 return output;
215}

◆ startAnalysisLimitTimer()

bool SVF::SVFUtil::startAnalysisLimitTimer ( unsigned  timeLimit)

Starts an analysis timer. If timeLimit is 0, sets no timer. If an alarm has already been set, does not set another. Returns whether we set a timer or not.

Definition at line 277 of file SVFUtil.cpp.

278{
279 if (timeLimit == 0) return false;
280
281 // If an alarm is already set, don't set another. That means this analysis
282 // is part of another which has a time limit.
283 unsigned remainingSeconds = alarm(0);
284 if (remainingSeconds != 0)
285 {
286 // Continue the previous alarm and move on.
288 return false;
289 }
290
291 signal(SIGALRM, &timeLimitReached);
293 return true;
294}

◆ stopAnalysisLimitTimer()

void SVF::SVFUtil::stopAnalysisLimitTimer ( bool  limitTimerSet)

Stops an analysis timer. limitTimerSet indicates whether the caller set the timer or not (return value of startLimitTimer).

Definition at line 298 of file SVFUtil.cpp.

299{
300 if (limitTimerSet) alarm(0);
301}

◆ sucMsg()

std::string SVF::SVFUtil::sucMsg ( const std::string &  msg)

Returns successful message by converting a string into green string output.

print successful message by converting a string into green string output

Definition at line 55 of file SVFUtil.cpp.

56{
57 return KGRN + msg + KNRM;
58}
#define KGRN
Definition SVFUtil.cpp:43

◆ timeLimitReached()

void SVF::SVFUtil::timeLimitReached ( int  signum)

Function to call when alarm for time limit hits.

Definition at line 268 of file SVFUtil.cpp.

269{
270 SVFUtil::outs().flush();
271 // TODO: output does not indicate which time limit is reached.
272 // This can be better in the future.
273 SVFUtil::outs() << "WPA: time limit reached\n";
274 exit(101);
275}

◆ writeWrnMsg()

void SVF::SVFUtil::writeWrnMsg ( const std::string &  msg)

Writes a message run through wrnMsg.

Definition at line 68 of file SVFUtil.cpp.

69{
71 return;
72 outs() << wrnMsg(msg) << "\n";
73}
static const Option< bool > DisableWarn
Definition Options.h:205
std::string wrnMsg(const std::string &msg)
Returns warning message by converting a string into yellow string output.
Definition SVFUtil.cpp:63

◆ wrnMsg()

std::string SVF::SVFUtil::wrnMsg ( const std::string &  msg)

Returns warning message by converting a string into yellow string output.

print warning message by converting a string into yellow string output

Definition at line 63 of file SVFUtil.cpp.

64{
65 return KYEL + msg + KNRM;
66}

Variable Documentation

◆ is_iterable_v

template<typename T >
constexpr bool SVF::SVFUtil::is_iterable_v = is_iterable<T>::value
constexpr

Definition at line 440 of file SVFUtil.h.

◆ is_map_v

template<typename... Ts>
constexpr bool SVF::SVFUtil::is_map_v = is_map<Ts...>::value
constexpr

Definition at line 449 of file SVFUtil.h.

◆ is_sequence_container_v

template<typename... Ts>
constexpr bool SVF::SVFUtil::is_sequence_container_v = is_sequence_container<Ts...>::value
constexpr

Definition at line 470 of file SVFUtil.h.

◆ is_set_v

template<typename... Ts>
constexpr bool SVF::SVFUtil::is_set_v = is_set<Ts...>::value
constexpr

Definition at line 458 of file SVFUtil.h.