Static Value-Flow Analysis
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes | Static Private Attributes | List of all members
SVF::ThreadAPI Class Reference

#include <ThreadAPI.h>

Public Types

enum  TD_TYPE {
  TD_DUMMY = 0 , TD_FORK , TD_JOIN , TD_DETACH ,
  TD_ACQUIRE , TD_TRY_ACQUIRE , TD_RELEASE , TD_EXIT ,
  TD_CANCEL , TD_COND_WAIT , TD_COND_SIGNAL , TD_COND_BROADCAST ,
  TD_MUTEX_INI , TD_MUTEX_DESTROY , TD_CONDVAR_INI , TD_CONDVAR_DESTROY ,
  TD_BAR_INIT , TD_BAR_WAIT , HARE_PAR_FOR
}
 
typedef Map< std::string, TD_TYPETDAPIMap
 

Public Member Functions

const ValVargetForkedThread (const CallICFGNode *inst) const
 Return arguments/attributes of pthread_create / hare_parallel_for.
 
const ValVargetForkedFun (const CallICFGNode *inst) const
 
const ValVargetActualParmAtForkSite (const CallICFGNode *inst) const
 
const SVFVargetFormalParmOfForkedFun (const FunObjVar *F) const
 Return the formal parm of forked function (the first arg in pthread)
 
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.
 
const SVFVargetJoinedThread (const CallICFGNode *inst) const
 Return arguments/attributes of pthread_join.
 
const SVFVargetRetParmAtJoinedSite (const CallICFGNode *inst) const
 
bool isTDExit (const CallICFGNode *inst) const
 Return true if this call exits/terminate a thread.
 
bool isTDAcquire (const CallICFGNode *inst) const
 Return true if this call acquire a lock.
 
bool isTDRelease (const CallICFGNode *inst) const
 Return true if this call release a lock.
 
const SVFVargetLockVal (const ICFGNode *inst) const
 Return lock value.
 
bool isTDBarWait (const CallICFGNode *inst) const
 Return true if this call waits for a barrier.
 
void performAPIStat ()
 
void statInit (Map< std::string, u32_t > &tdAPIStatMap)
 

Static Public Member Functions

static ThreadAPIgetThreadAPI ()
 Return a static reference.
 
static void destroy ()
 

Private Member Functions

 ThreadAPI ()
 Constructor.
 
void init ()
 Initialize the map.
 
TD_TYPE getType (const FunObjVar *F) const
 Get the function type if it is a threadAPI function.
 

Private Attributes

TDAPIMap tdAPIMap
 API map, from a string to threadAPI type.
 

Static Private Attributes

static ThreadAPItdAPI = nullptr
 Static reference.
 

Detailed Description

Definition at line 48 of file ThreadAPI.h.

Member Typedef Documentation

◆ TDAPIMap

Definition at line 75 of file ThreadAPI.h.

Member Enumeration Documentation

◆ TD_TYPE

Enumerator
TD_DUMMY 
TD_FORK 

dummy type

TD_JOIN 

create a new thread

TD_DETACH 

wait for a thread to join

TD_ACQUIRE 

detach a thread directly instead wait for it to join

TD_TRY_ACQUIRE 

acquire a lock

TD_RELEASE 

try to acquire a lock

TD_EXIT 

release a lock

TD_CANCEL 

exit/kill a thread

TD_COND_WAIT 

cancel a thread by another

TD_COND_SIGNAL 

wait a condition

TD_COND_BROADCAST 

signal a condition

TD_MUTEX_INI 

broadcast a condition

TD_MUTEX_DESTROY 

initial a mutex variable

TD_CONDVAR_INI 

initial a mutex variable

TD_CONDVAR_DESTROY 

initial a mutex variable

TD_BAR_INIT 

initial a mutex variable

TD_BAR_WAIT 

Barrier init.

HARE_PAR_FOR 

Barrier wait.

Definition at line 52 of file ThreadAPI.h.

53 {
54 TD_DUMMY = 0,
55 TD_FORK,
56 TD_JOIN,
57 TD_DETACH,
61 TD_EXIT,
62 TD_CANCEL,
73 };
@ TD_COND_SIGNAL
wait a condition
Definition ThreadAPI.h:64
@ TD_DETACH
wait for a thread to join
Definition ThreadAPI.h:57
@ TD_CONDVAR_INI
initial a mutex variable
Definition ThreadAPI.h:68
@ HARE_PAR_FOR
Barrier wait.
Definition ThreadAPI.h:72
@ TD_BAR_INIT
initial a mutex variable
Definition ThreadAPI.h:70
@ TD_ACQUIRE
detach a thread directly instead wait for it to join
Definition ThreadAPI.h:58
@ TD_MUTEX_DESTROY
initial a mutex variable
Definition ThreadAPI.h:67
@ TD_FORK
dummy type
Definition ThreadAPI.h:55
@ TD_CONDVAR_DESTROY
initial a mutex variable
Definition ThreadAPI.h:69
@ TD_JOIN
create a new thread
Definition ThreadAPI.h:56
@ TD_BAR_WAIT
Barrier init.
Definition ThreadAPI.h:71
@ TD_COND_BROADCAST
signal a condition
Definition ThreadAPI.h:65
@ TD_COND_WAIT
cancel a thread by another
Definition ThreadAPI.h:63
@ TD_TRY_ACQUIRE
acquire a lock
Definition ThreadAPI.h:59
@ TD_MUTEX_INI
broadcast a condition
Definition ThreadAPI.h:66
@ TD_RELEASE
try to acquire a lock
Definition ThreadAPI.h:60
@ TD_EXIT
release a lock
Definition ThreadAPI.h:61
@ TD_CANCEL
exit/kill a thread
Definition ThreadAPI.h:62

Constructor & Destructor Documentation

◆ ThreadAPI()

SVF::ThreadAPI::ThreadAPI ( )
inlineprivate

Constructor.

Definition at line 82 of file ThreadAPI.h.

83 {
84 init();
85 }
void init()
Initialize the map.

Member Function Documentation

◆ destroy()

static void SVF::ThreadAPI::destroy ( )
inlinestatic

Definition at line 107 of file ThreadAPI.h.

108 {
109 if(tdAPI != nullptr)
110 {
111 delete tdAPI;
112 tdAPI = nullptr;
113 }
114 }
static ThreadAPI * tdAPI
Static reference.
Definition ThreadAPI.h:91

◆ getActualParmAtForkSite()

const ValVar * ThreadAPI::getActualParmAtForkSite ( const CallICFGNode inst) const

Return the forth argument of the call, Note that, it is the sole argument of start routine ( a void* pointer )

Definition at line 190 of file ThreadAPI.cpp.

191{
192 assert(isTDFork(inst) && "not a thread fork function!");
193 return inst->getArgument(3);
194}
const ValVar * getArgument(u32_t ArgNo) const
Parameter operations.
Definition ICFGNode.h:494
bool isTDFork(const CallICFGNode *inst) const
Return true if this call create a new thread.
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

◆ getForkedFun()

const ValVar * ThreadAPI::getForkedFun ( const CallICFGNode inst) const

Return the third argument of the call, Note that, it could be function type or a void* pointer

Definition at line 182 of file ThreadAPI.cpp.

183{
184 assert(isTDFork(inst) && "not a thread fork function!");
185 return inst->getArgument(2);
186}

◆ getForkedThread()

const ValVar * ThreadAPI::getForkedThread ( const CallICFGNode inst) const

Return arguments/attributes of pthread_create / hare_parallel_for.

Return the first argument of the call, Note that, it is the pthread_t pointer

Definition at line 176 of file ThreadAPI.cpp.

177{
178 assert(isTDFork(inst) && "not a thread fork function!");
179 return inst->getArgument(0);
180}

◆ getFormalParmOfForkedFun()

const SVFVar * ThreadAPI::getFormalParmOfForkedFun ( const FunObjVar F) const

Return the formal parm of forked function (the first arg in pthread)

Definition at line 196 of file ThreadAPI.cpp.

197{
198 assert(PAG::getPAG()->hasFunArgsList(F) && "forked function has no args list!");
200 // in pthread, forked functions are of type void *()(void *args)
201 assert(funArgList.size() == 1 && "num of pthread forked function args is not 1!");
202 return funArgList[0];
203}
std::vector< const SVFVar * > SVFVarList
Definition SVFIR.h:58
static SVFIR * getPAG(bool buildFromFile=false)
Singleton design here to make sure we only have one instance during any analysis.
Definition SVFIR.h:116
const SVFVarList & getFunArgsList(const FunObjVar *func) const
Get function arguments list.
Definition SVFIR.h:303

◆ getJoinedThread()

const SVFVar * ThreadAPI::getJoinedThread ( const CallICFGNode inst) const

Return arguments/attributes of pthread_join.

Return the first argument of the call, Note that, it is the pthread_t pointer

Definition at line 219 of file ThreadAPI.cpp.

220{
221 assert(isTDJoin(cs) && "not a thread join function!");
222 const ValVar* join = cs->getArgument(0);
223 for(const SVFStmt* stmt : join->getInEdges())
224 {
225 if(SVFUtil::isa<LoadStmt>(stmt))
226 return stmt->getSrcNode();
227 }
228 if(SVFUtil::isa<ArgValVar>(join))
229 return join;
230
231 assert(false && "the value of the first argument at join is not a load instruction?");
232 return nullptr;
233}
bool isTDJoin(const CallICFGNode *inst) const
Return true if this call wait for a worker thread.

◆ getLockVal()

const SVFVar * ThreadAPI::getLockVal ( const ICFGNode inst) const

Return lock value.

First argument of pthread_mutex_lock/pthread_mutex_unlock

Definition at line 211 of file ThreadAPI.cpp.

212{
213 const CallICFGNode* call = SVFUtil::dyn_cast<CallICFGNode>(cs);
214 assert(call && "not a call ICFGNode?");
215 assert((isTDAcquire(call) || isTDRelease(call)) && "not a lock acquire or release function");
216 return call->getArgument(0);
217}
bool isTDRelease(const CallICFGNode *inst) const
Return true if this call release a lock.
bool isTDAcquire(const CallICFGNode *inst) const
Return true if this call acquire a lock.

◆ getRetParmAtJoinedSite()

const SVFVar * ThreadAPI::getRetParmAtJoinedSite ( const CallICFGNode inst) const

Return the send argument of the call, Note that, it is the pthread_t pointer

Definition at line 205 of file ThreadAPI.cpp.

206{
207 assert(isTDJoin(inst) && "not a thread join function!");
208 return inst->getArgument(1);
209}

◆ getThreadAPI()

static ThreadAPI * SVF::ThreadAPI::getThreadAPI ( )
inlinestatic

Return a static reference.

Definition at line 98 of file ThreadAPI.h.

99 {
100 if(tdAPI == nullptr)
101 {
102 tdAPI = new ThreadAPI();
103 }
104 return tdAPI;
105 }
ThreadAPI()
Constructor.
Definition ThreadAPI.h:82

◆ getType()

ThreadAPI::TD_TYPE ThreadAPI::getType ( const FunObjVar F) const
private

Get the function type if it is a threadAPI function.

Definition at line 134 of file ThreadAPI.cpp.

135{
136 if(F)
137 {
138 TDAPIMap::const_iterator it= tdAPIMap.find(F->getName());
139 if(it != tdAPIMap.end())
140 return it->second;
141 }
142 return TD_DUMMY;
143}
virtual const std::string & getName() const
Definition SVFValue.h:184
TDAPIMap tdAPIMap
API map, from a string to threadAPI type.
Definition ThreadAPI.h:79

◆ init()

void ThreadAPI::init ( )
private

Initialize the map.

initialize the map

Definition at line 103 of file ThreadAPI.cpp.

104{
107 t_seen.insert(TD_DUMMY);
108 for(const ei_pair *p= ei_pairs; p->n; ++p)
109 {
110 if(p->t != prev_t)
111 {
112 //This will detect if you move an entry to another block
113 // but forget to change the type.
114 if(t_seen.count(p->t))
115 {
116 fputs(p->n, stderr);
117 putc('\n', stderr);
118 assert(!"ei_pairs not grouped by type");
119 }
120 t_seen.insert(p->t);
121 prev_t= p->t;
122 }
123 if(tdAPIMap.count(p->n))
124 {
125 fputs(p->n, stderr);
126 putc('\n', stderr);
127 assert(!"duplicate name in ei_pairs");
128 }
129 tdAPIMap[p->n]= p->t;
130 }
131}
static const ei_pair ei_pairs[]
cJSON * p
Definition cJSON.cpp:2559

◆ isTDAcquire()

bool ThreadAPI::isTDAcquire ( const CallICFGNode inst) const

Return true if this call acquire a lock.

Definition at line 160 of file ThreadAPI.cpp.

161{
162 return getType(inst->getCalledFunction()) == TD_ACQUIRE;
163}
const FunObjVar * getCalledFunction() const
Definition ICFGNode.h:512
TD_TYPE getType(const FunObjVar *F) const
Get the function type if it is a threadAPI function.

◆ isTDBarWait()

bool ThreadAPI::isTDBarWait ( const CallICFGNode inst) const

Return true if this call waits for a barrier.

Definition at line 170 of file ThreadAPI.cpp.

171{
172 return getType(inst->getCalledFunction()) == TD_BAR_WAIT;
173}

◆ isTDExit()

bool ThreadAPI::isTDExit ( const CallICFGNode inst) const

Return true if this call exits/terminate a thread.

Definition at line 155 of file ThreadAPI.cpp.

156{
157 return getType(inst->getCalledFunction()) == TD_EXIT;
158}

◆ isTDFork()

bool ThreadAPI::isTDFork ( const CallICFGNode inst) const

Return true if this call create a new thread.

Definition at line 145 of file ThreadAPI.cpp.

146{
147 return getType(inst->getCalledFunction()) == TD_FORK;
148}

◆ isTDJoin()

bool ThreadAPI::isTDJoin ( const CallICFGNode inst) const

Return true if this call wait for a worker thread.

Definition at line 150 of file ThreadAPI.cpp.

151{
152 return getType(inst->getCalledFunction()) == TD_JOIN;
153}

◆ isTDRelease()

bool ThreadAPI::isTDRelease ( const CallICFGNode inst) const

Return true if this call release a lock.

Definition at line 165 of file ThreadAPI.cpp.

166{
167 return getType(inst->getCalledFunction()) == TD_RELEASE;
168}

◆ performAPIStat()

void ThreadAPI::performAPIStat ( )

Definition at line 278 of file ThreadAPI.cpp.

279{
280
282
284
286 for (const auto& item: *svfirCallGraph)
287 {
288 for (FunObjVar::const_bb_iterator bit = (item.second)->getFunction()->begin(), ebit = (item.second)->getFunction()->end(); bit != ebit; ++bit)
289 {
290 const SVFBasicBlock* bb = bit->second;
291 for (const auto& svfInst: bb->getICFGNodeList())
292 {
294 continue;
295
296 const FunObjVar* fun = SVFUtil::cast<CallICFGNode>(svfInst)->getCalledFunction();
297 TD_TYPE type = getType(fun);
298 switch (type)
299 {
300 case TD_FORK:
301 {
302 tdAPIStatMap["pthread_create"]++;
303 break;
304 }
305 case TD_JOIN:
306 {
307 tdAPIStatMap["pthread_join"]++;
308 break;
309 }
310 case TD_ACQUIRE:
311 {
312 tdAPIStatMap["pthread_mutex_lock"]++;
313 break;
314 }
315 case TD_TRY_ACQUIRE:
316 {
317 tdAPIStatMap["pthread_mutex_trylock"]++;
318 break;
319 }
320 case TD_RELEASE:
321 {
322 tdAPIStatMap["pthread_mutex_unlock"]++;
323 break;
324 }
325 case TD_CANCEL:
326 {
327 tdAPIStatMap["pthread_cancel"]++;
328 break;
329 }
330 case TD_EXIT:
331 {
332 tdAPIStatMap["pthread_exit"]++;
333 break;
334 }
335 case TD_DETACH:
336 {
337 tdAPIStatMap["pthread_detach"]++;
338 break;
339 }
340 case TD_COND_WAIT:
341 {
342 tdAPIStatMap["pthread_cond_wait"]++;
343 break;
344 }
345 case TD_COND_SIGNAL:
346 {
347 tdAPIStatMap["pthread_cond_signal"]++;
348 break;
349 }
351 {
352 tdAPIStatMap["pthread_cond_broadcast"]++;
353 break;
354 }
355 case TD_CONDVAR_INI:
356 {
357 tdAPIStatMap["pthread_cond_init"]++;
358 break;
359 }
361 {
362 tdAPIStatMap["pthread_cond_destroy"]++;
363 break;
364 }
365 case TD_MUTEX_INI:
366 {
367 tdAPIStatMap["pthread_mutex_init"]++;
368 break;
369 }
370 case TD_MUTEX_DESTROY:
371 {
372 tdAPIStatMap["pthread_mutex_destroy"]++;
373 break;
374 }
375 case TD_BAR_INIT:
376 {
377 tdAPIStatMap["pthread_barrier_init"]++;
378 break;
379 }
380 case TD_BAR_WAIT:
381 {
382 tdAPIStatMap["pthread_barrier_wait"]++;
383 break;
384 }
385 case HARE_PAR_FOR:
386 {
387 tdAPIStatMap["hare_parallel_for"]++;
388 break;
389 }
390 case TD_DUMMY:
391 {
392 break;
393 }
394 }
395 }
396 }
397
398 }
399
400 std::string name(PAG::getPAG()->getModuleIdentifier());
401 std::vector<std::string> fullNames = SVFUtil::split(name,'/');
402 if (fullNames.size() > 1)
403 {
404 name = fullNames[fullNames.size() - 1];
405 }
406 SVFUtil::outs() << "################ (program : " << name
407 << ")###############\n";
408 SVFUtil::outs().flags(std::ios::left);
409 unsigned field_width = 20;
411 tdAPIStatMap.end(); it != eit; ++it)
412 {
413 std::string apiName = it->first;
414 // format out put with width 20 space
415 SVFUtil::outs() << std::setw(field_width) << apiName << " : " << it->second
416 << "\n";
417 }
418 SVFUtil::outs() << "#######################################################"
419 << std::endl;
420
421}
newitem type
Definition cJSON.cpp:2739
const char *const name
Definition cJSON.h:264
cJSON * item
Definition cJSON.h:222
BasicBlockGraph::IDToNodeMapTy::const_iterator const_bb_iterator
CallGraph * getCallGraph()
Definition SVFIR.h:184
void statInit(Map< std::string, u32_t > &tdAPIStatMap)
bool isCallSite(const ICFGNode *inst)
Definition SVFUtil.cpp:316
std::ostream & outs()
Overwrite llvm::outs()
Definition SVFUtil.h:52
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
std::unordered_map< Key, Value, Hash, KeyEqual, Allocator > Map

◆ statInit()

void ThreadAPI::statInit ( Map< std::string, u32_t > &  tdAPIStatMap)

Definition at line 238 of file ThreadAPI.cpp.

239{
240
241 tdAPIStatMap["pthread_create"] = 0;
242
243 tdAPIStatMap["pthread_join"] = 0;
244
245 tdAPIStatMap["pthread_mutex_lock"] = 0;
246
247 tdAPIStatMap["pthread_mutex_trylock"] = 0;
248
249 tdAPIStatMap["pthread_mutex_unlock"] = 0;
250
251 tdAPIStatMap["pthread_cancel"] = 0;
252
253 tdAPIStatMap["pthread_exit"] = 0;
254
255 tdAPIStatMap["pthread_detach"] = 0;
256
257 tdAPIStatMap["pthread_cond_wait"] = 0;
258
259 tdAPIStatMap["pthread_cond_signal"] = 0;
260
261 tdAPIStatMap["pthread_cond_broadcast"] = 0;
262
263 tdAPIStatMap["pthread_cond_init"] = 0;
264
265 tdAPIStatMap["pthread_cond_destroy"] = 0;
266
267 tdAPIStatMap["pthread_mutex_init"] = 0;
268
269 tdAPIStatMap["pthread_mutex_destroy"] = 0;
270
271 tdAPIStatMap["pthread_barrier_init"] = 0;
272
273 tdAPIStatMap["pthread_barrier_wait"] = 0;
274
275 tdAPIStatMap["hare_parallel_for"] = 0;
276}

Member Data Documentation

◆ tdAPI

ThreadAPI * ThreadAPI::tdAPI = nullptr
staticprivate

Static reference.

Definition at line 91 of file ThreadAPI.h.

◆ tdAPIMap

TDAPIMap SVF::ThreadAPI::tdAPIMap
private

API map, from a string to threadAPI type.

Definition at line 79 of file ThreadAPI.h.


The documentation for this class was generated from the following files: