Static Value-Flow Analysis
Loading...
Searching...
No Matches
SVFUtil.h
Go to the documentation of this file.
1//===- SVFUtil.h -- Analysis helper functions----------------------------//
2//
3// SVF: Static Value-Flow Analysis
4//
5// Copyright (C) <2013-2017> <Yulei Sui>
6//
7
8// This program is free software: you can redistribute it and/or modify
9// it under the terms of the GNU Affero General Public License as published by
10// the Free Software Foundation, either version 3 of the License, or
11// (at your option) any later version.
12
13// This program is distributed in the hope that it will be useful,
14// but WITHOUT ANY WARRANTY; without even the implied warranty of
15// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16// GNU Affero General Public License for more details.
17
18// You should have received a copy of the GNU Affero General Public License
19// along with this program. If not, see <http://www.gnu.org/licenses/>.
20//
21//===----------------------------------------------------------------------===//
22
23/*
24 * SVFUtil.h
25 *
26 * Created on: Apr 11, 2013
27 * Author: Yulei Sui, dye
28 */
29
30#ifndef AnalysisUtil_H_
31#define AnalysisUtil_H_
32
34#include "SVFIR/SVFValue.h"
36#include "Util/ExtAPI.h"
38#include <time.h>
40#include "Util/ThreadAPI.h"
41
42namespace SVF
43{
44
45/*
46 * Util class to assist pointer analysis
47 */
48namespace SVFUtil
49{
50
52inline std::ostream &outs()
53{
54 return std::cout;
55}
56
58inline std::ostream &errs()
59{
60 return std::cerr;
61}
62
66
68void dumpPointsToSet(unsigned node, NodeBS To) ;
69void dumpSparseSet(const NodeBS& To);
70
72void dumpAliasSet(unsigned node, NodeBS To) ;
73
75std::string sucMsg(const std::string& msg);
76
78std::string wrnMsg(const std::string& msg);
79
81void writeWrnMsg(const std::string& msg);
82
84
85std::string errMsg(const std::string& msg);
86std::string bugMsg1(const std::string& msg);
87std::string bugMsg2(const std::string& msg);
88std::string bugMsg3(const std::string& msg);
90
92std::string pasMsg(const std::string& msg);
93
95void reportMemoryUsageKB(const std::string& infor,
97
100
102void increaseStackSize();
103
109inline bool cmpPts (const PointsTo& lpts,const PointsTo& rpts)
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}
126
127inline bool cmpNodeBS(const NodeBS& lpts,const NodeBS& rpts)
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}
144
145typedef struct equalPointsTo
146{
147 bool operator()(const PointsTo& lhs, const PointsTo& rhs) const
148 {
149 return SVFUtil::cmpPts(lhs, rhs);
150 }
151} equalPointsTo;
152
153typedef struct equalNodeBS
154{
155 bool operator()(const NodeBS& lhs, const NodeBS& rhs) const
156 {
157 return SVFUtil::cmpNodeBS(lhs, rhs);
158 }
159} equalNodeBS;
160
162{
163 NodeBS nbs;
164 for (const NodeID o : pts) nbs.set(o);
165 return nbs;
166}
167
170
172bool isIntrinsicInst(const ICFGNode* inst);
174
175
176bool isCallSite(const ICFGNode* inst);
177
178bool isRetInstNode(const ICFGNode* node);
179
180
182inline bool isNonInstricCallSite(const ICFGNode* inst)
183{
184 if(isIntrinsicInst(inst))
185 return false;
186 return isCallSite(inst);
187}
188
192bool matchArgs(const CallICFGNode* cs, const FunObjVar* callee);
193
194
196inline std::vector<std::string> split(const std::string& s, char separator)
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}
216
218template <typename Data>
220{
221 for (const typename Map<Data, unsigned>::value_type &ptocc : from)
222 {
223 to[ptocc.first] += ptocc.second;
224 }
225}
226
229
231template <typename Key, typename KeySet>
232inline void insertKey(const Key &key, KeySet &keySet)
233{
234 keySet.insert(key);
235}
236
238inline void insertKey(const NodeID &key, NodeBS &keySet)
239{
240 keySet.set(key);
241}
242
244template <typename Key, typename KeySet>
245inline void removeKey(const Key &key, KeySet &keySet)
246{
247 keySet.erase(key);
248}
249
251inline void removeKey(const NodeID &key, NodeBS &keySet)
252{
253 keySet.reset(key);
254}
255
257void timeLimitReached(int signum);
258
263
267
270
271
272bool isExtCall(const FunObjVar* fun);
273
274
276
277
278
279inline bool isHeapAllocExtFunViaRet(const FunObjVar* fun)
280{
281 return fun && (ExtAPI::getExtAPI()->is_alloc(fun)
282 || ExtAPI::getExtAPI()->is_realloc(fun));
283}
284
285inline bool isHeapAllocExtFunViaArg(const FunObjVar* fun)
286{
287 return fun && ExtAPI::getExtAPI()->is_arg_alloc(fun);
288}
289
291
292
298
299
300
301inline bool isReallocExtFun(const FunObjVar* fun)
302{
303 return fun && (ExtAPI::getExtAPI()->is_realloc(fun));
304}
305
307
308
309
310bool isProgEntryFunction(const FunObjVar*);
311
313const FunObjVar* getProgFunction(const std::string& funName);
314
317
318
320
321bool isProgExitFunction(const FunObjVar *fun);
322
323
324
326
328
330
331inline const ValVar* getForkedFun(const CallICFGNode *inst)
332{
334}
336
337
338bool isExtCall(const CallICFGNode* cs);
339
340bool isExtCall(const ICFGNode* node);
341
343
344
347
348bool isHeapAllocExtCall(const ICFGNode* cs);
349
351
354
355bool isReallocExtCall(const CallICFGNode* cs);
357
360inline bool isThreadForkCall(const CallICFGNode *inst)
361{
362 return ThreadAPI::getThreadAPI()->isTDFork(inst);
363}
365
368inline bool isThreadJoinCall(const CallICFGNode* cs)
369{
370 return ThreadAPI::getThreadAPI()->isTDJoin(cs);
371}
373
376inline bool isThreadExitCall(const CallICFGNode* cs)
377{
378 return ThreadAPI::getThreadAPI()->isTDExit(cs);
379}
381
384inline bool isLockAquireCall(const CallICFGNode* cs)
385{
387}
389
392inline bool isLockReleaseCall(const CallICFGNode* cs)
393{
395}
397
399
400inline bool isBarrierWaitCall(const CallICFGNode* cs)
401{
403}
405
407
413
414
415bool isProgExitCall(const CallICFGNode* cs);
416
417
418template<typename T>
419constexpr typename std::remove_reference<T>::type &&
420move(T &&t) noexcept
421{
422 return std::move(t);
423}
424
426template <typename... Ts> struct make_void
427{
428 typedef void type;
429};
430template <typename... Ts> using void_t = typename make_void<Ts...>::type;
431
435template <typename T, typename = void> struct is_iterable : std::false_type {};
436template <typename T>
437struct is_iterable<T, void_t<decltype(std::begin(std::declval<T&>()) !=
438 std::end(std::declval<T&>()))>>
439: std::true_type {};
440template <typename T> constexpr bool is_iterable_v = is_iterable<T>::value;
442
445template <typename T> struct is_map : std::false_type {};
446template <typename... Ts> struct is_map<std::map<Ts...>> : std::true_type {};
447template <typename... Ts>
448struct is_map<std::unordered_map<Ts...>> : std::true_type {};
449template <typename... Ts> constexpr bool is_map_v = is_map<Ts...>::value;
451
454template <typename T> struct is_set : std::false_type {};
455template <typename... Ts> struct is_set<std::set<Ts...>> : std::true_type {};
456template <typename... Ts>
457struct is_set<std::unordered_set<Ts...>> : std::true_type {};
458template <typename... Ts> constexpr bool is_set_v = is_set<Ts...>::value;
460
462template <typename T> struct is_sequence_container : std::false_type {};
463template <typename... Ts>
464struct is_sequence_container<std::vector<Ts...>> : std::true_type {};
465template <typename... Ts>
466struct is_sequence_container<std::deque<Ts...>> : std::true_type {};
467template <typename... Ts>
468struct is_sequence_container<std::list<Ts...>> : std::true_type {};
469template <typename... Ts>
472
473
474} // End namespace SVFUtil
475
476} // End namespace SVF
477
478#endif /* AnalysisUtil_H_ */
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
newitem type
Definition cJSON.cpp:2739
bool is_arg_alloc(const FunObjVar *F)
Definition ExtAPI.cpp:226
s32_t get_alloc_arg_pos(const FunObjVar *F)
Definition ExtAPI.cpp:237
static ExtAPI * getExtAPI()
Definition ExtAPI.cpp:43
bool is_realloc(const FunObjVar *F)
Definition ExtAPI.cpp:253
bool is_alloc(const FunObjVar *F)
Definition ExtAPI.cpp:220
void set(unsigned Idx)
const ValVar * getForkedFun(const CallICFGNode *inst) const
bool isTDFork(const CallICFGNode *inst) const
Return true if this call create a new thread.
bool isTDJoin(const CallICFGNode *inst) const
Return true if this call wait for a worker thread.
bool isTDRelease(const CallICFGNode *inst) const
Return true if this call release a lock.
bool isTDExit(const CallICFGNode *inst) const
Return true if this call exits/terminate a thread.
const ValVar * getActualParmAtForkSite(const CallICFGNode *inst) const
static ThreadAPI * getThreadAPI()
Return a static reference.
Definition ThreadAPI.h:98
bool isTDBarWait(const CallICFGNode *inst) const
Return true if this call waits for a barrier.
bool isTDAcquire(const CallICFGNode *inst) const
Return true if this call acquire a lock.
hclust_fast_methods
Definition fastcluster.h:66
bool isReallocExtCall(const CallICFGNode *cs)
Definition SVFUtil.cpp:369
std::string sucMsg(const std::string &msg)
Returns successful message by converting a string into green string output.
Definition SVFUtil.cpp:55
constexpr bool is_set_v
Definition SVFUtil.h:458
void increaseStackSize()
Increase the stack size limit.
Definition SVFUtil.cpp:229
const ObjVar * getObjVarOfValVar(const ValVar *valVar)
Definition SVFUtil.cpp:431
std::string bugMsg1(const std::string &msg)
Definition SVFUtil.cpp:83
bool isProgEntryFunction(const FunObjVar *)
Program entry function e.g. main.
Definition SVFUtil.cpp:442
std::string hclustMethodToString(hclust_fast_methods method)
Returns a string representation of a hclust method.
Definition SVFUtil.cpp:248
void stopAnalysisLimitTimer(bool limitTimerSet)
Definition SVFUtil.cpp:298
bool isLockAquireCall(const CallICFGNode *cs)
Definition SVFUtil.h:384
bool isIntrinsicInst(const ICFGNode *inst)
Return true if it is an llvm intrinsic instruction.
Definition SVFUtil.cpp:321
u32_t getHeapAllocHoldingArgPosition(const FunObjVar *fun)
Get the position of argument that holds an allocated heap object.
Definition SVFUtil.h:293
const FunObjVar * getProgEntryFunction()
Get program entry function.
Definition SVFUtil.cpp:410
bool isBarrierWaitCall(const CallICFGNode *cs)
Return true if this is a barrier wait call.
Definition SVFUtil.h:400
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.
Definition SVFUtil.h:219
bool isHeapAllocExtFunViaRet(const FunObjVar *fun)
Return true if the call is a heap allocator/reallocator.
Definition SVFUtil.h:279
std::string pasMsg(const std::string &msg)
Print each pass/phase message by converting a string into blue string output.
Definition SVFUtil.cpp:101
OrderedSet< PointsTo, equalPointsTo > PointsToList
Definition SVFUtil.h:168
void dumpAliasSet(unsigned node, NodeBS To)
Dump alias set.
Definition SVFUtil.cpp:139
bool isHeapAllocExtFunViaArg(const FunObjVar *fun)
Definition SVFUtil.h:285
bool getMemoryUsageKB(u32_t *vmrss_kb, u32_t *vmsize_kb)
Get memory usage from system file. Return TRUE if succeed.
Definition SVFUtil.cpp:179
void reportMemoryUsageKB(const std::string &infor, OutStream &O=SVFUtil::outs())
Print memory usage in KB.
Definition SVFUtil.cpp:169
bool startAnalysisLimitTimer(unsigned timeLimit)
Definition SVFUtil.cpp:277
std::string errMsg(const std::string &msg)
Print error message by converting a string into red string output.
Definition SVFUtil.cpp:78
std::string bugMsg3(const std::string &msg)
Definition SVFUtil.cpp:93
constexpr bool is_sequence_container_v
Definition SVFUtil.h:470
bool isHeapAllocExtCallViaArg(const CallICFGNode *cs)
Definition SVFUtil.cpp:339
bool isHeapAllocExtCall(const ICFGNode *cs)
Definition SVFUtil.cpp:357
bool isNonInstricCallSite(const ICFGNode *inst)
Whether an instruction is a callsite in the application code, excluding llvm intrinsic calls.
Definition SVFUtil.h:182
bool isThreadJoinCall(const CallICFGNode *cs)
Definition SVFUtil.h:368
NodeBS ptsToNodeBS(const PointsTo &pts)
Definition SVFUtil.h:161
bool isArgOfUncalledFunction(const SVFVar *svfvar)
Definition SVFUtil.cpp:422
constexpr bool is_map_v
Definition SVFUtil.h:449
bool cmpNodeBS(const NodeBS &lpts, const NodeBS &rpts)
Definition SVFUtil.h:127
constexpr bool is_iterable_v
Definition SVFUtil.h:440
std::ostream & errs()
Overwrite llvm::errs()
Definition SVFUtil.h:58
bool cmpPts(const PointsTo &lpts, const PointsTo &rpts)
Definition SVFUtil.h:109
bool isExtCall(const FunObjVar *fun)
Definition SVFUtil.cpp:437
bool isThreadForkCall(const CallICFGNode *inst)
Definition SVFUtil.h:360
bool matchArgs(const CallICFGNode *cs, const FunObjVar *callee)
Definition SVFUtil.cpp:308
void writeWrnMsg(const std::string &msg)
Writes a message run through wrnMsg.
Definition SVFUtil.cpp:68
void dumpSparseSet(const NodeBS &To)
Definition SVFUtil.cpp:117
const ValVar * getActualParmAtForkSite(const CallICFGNode *cs)
Return sole argument of the thread routine.
Definition SVFUtil.h:408
bool isLockReleaseCall(const CallICFGNode *cs)
Definition SVFUtil.h:392
void dumpPointsToSet(unsigned node, NodeBS To)
Dump points-to set.
Definition SVFUtil.cpp:109
bool isThreadExitCall(const CallICFGNode *cs)
Definition SVFUtil.h:376
std::string bugMsg2(const std::string &msg)
Definition SVFUtil.cpp:88
bool isProgExitCall(const CallICFGNode *cs)
Definition SVFUtil.cpp:391
bool isCallSite(const ICFGNode *inst)
Definition SVFUtil.cpp:316
std::string wrnMsg(const std::string &msg)
Returns warning message by converting a string into yellow string output.
Definition SVFUtil.cpp:63
bool isReallocExtFun(const FunObjVar *fun)
Return true if the call is a heap reallocator.
Definition SVFUtil.h:301
const ValVar * getForkedFun(const CallICFGNode *inst)
Return thread fork function.
Definition SVFUtil.h:331
typename make_void< Ts... >::type void_t
Definition SVFUtil.h:430
bool isRetInstNode(const ICFGNode *node)
Definition SVFUtil.cpp:376
std::ostream & outs()
Overwrite llvm::outs()
Definition SVFUtil.h:52
void timeLimitReached(int signum)
Function to call when alarm for time limit hits.
Definition SVFUtil.cpp:268
constexpr std::remove_reference< T >::type && move(T &&t) noexcept
Definition SVFUtil.h:420
bool isHeapAllocExtCallViaRet(const CallICFGNode *cs)
interfaces to be used externally
Definition SVFUtil.cpp:363
void dumpSet(NodeBS To, OutStream &O=SVFUtil::outs())
Dump sparse bitvector set.
Definition SVFUtil.cpp:149
void removeKey(const Key &key, KeySet &keySet)
Removes an element from a Set/CondSet (or anything implementing ::erase).
Definition SVFUtil.h:245
void insertKey(const Key &key, KeySet &keySet)
Inserts an element into a Set/CondSet (with ::insert).
Definition SVFUtil.h:232
std::vector< std::string > split(const std::string &s, char separator)
Split into two substrings around the first occurrence of a separator string.
Definition SVFUtil.h:196
void dumpPointsToList(const PointsToList &ptl)
Definition SVFUtil.cpp:124
bool isProgExitFunction(const FunObjVar *fun)
Return true if this is a program exit function call.
Definition SVFUtil.cpp:384
const FunObjVar * getProgFunction(const std::string &funName)
Get program entry function from function name.
Definition SVFUtil.cpp:397
for isBitcode
Definition BasicTypes.h:68
u32_t NodeID
Definition GeneralType.h:56
std::unordered_map< Key, Value, Hash, KeyEqual, Allocator > Map
std::ostream OutStream
Definition GeneralType.h:46
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74
unsigned u32_t
Definition GeneralType.h:47
bool operator()(const NodeBS &lhs, const NodeBS &rhs) const
Definition SVFUtil.h:155
bool operator()(const PointsTo &lhs, const PointsTo &rhs) const
Definition SVFUtil.h:147
Type trait that checks if a type is iterable (can be applied on a range-based for loop)
Definition SVFUtil.h:435
Type trait to check if a type is a map or unordered_map.
Definition SVFUtil.h:445
Type trait to check if a type is vector or list.
Definition SVFUtil.h:462
Type trait to check if a type is a set or unordered_set.
Definition SVFUtil.h:454
void_t is not available until C++17. We define it here for C++11/14.
Definition SVFUtil.h:427