Static Value-Flow Analysis
Loading...
Searching...
No Matches
ThreadAPI.h
Go to the documentation of this file.
1//===- ThreadAPI.h -- API for threads-----------------------------------------//
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 * ThreadAPI.h
25 *
26 * Created on: Jan 21, 2014
27 * Author: Yulei Sui, dye
28 */
29
30#ifndef THREADAPI_H_
31#define THREADAPI_H_
32
33#include "SVFIR/SVFValue.h"
34
35namespace SVF
36{
37
38class ICFGNode;
39class CallICFGNode;
40class SVFVar;
41class ValVar;
42class ObjVar;
43class FunObjVar;
44
45/*
46 * ThreadAPI class contains interfaces for pthread programs
47 */
49{
50
51public:
74
76
77private:
80
83 {
84 init();
85 }
86
88 void init();
89
92
94 TD_TYPE getType(const FunObjVar* F) const;
95
96public:
99 {
100 if(tdAPI == nullptr)
101 {
102 tdAPI = new ThreadAPI();
103 }
104 return tdAPI;
105 }
106
107 static void destroy()
108 {
109 if(tdAPI != nullptr)
110 {
111 delete tdAPI;
112 tdAPI = nullptr;
113 }
114 }
115
117
118
120 const ValVar* getForkedThread(const CallICFGNode *inst) const;
123 const ValVar* getForkedFun(const CallICFGNode *inst) const;
124
127 const ValVar* getActualParmAtForkSite(const CallICFGNode *inst) const;
128
130 const SVFVar* getFormalParmOfForkedFun(const FunObjVar* F) const;
132
133
134
136
137 bool isTDFork(const CallICFGNode *inst) const;
139
141
142 bool isTDJoin(const CallICFGNode *inst) const;
144
146
147
149 const SVFVar* getJoinedThread(const CallICFGNode *inst) const;
152 const SVFVar* getRetParmAtJoinedSite(const CallICFGNode *inst) const;
154
155
157
158 bool isTDExit(const CallICFGNode *inst) const;
160
162
163 bool isTDAcquire(const CallICFGNode* inst) const;
165
167
168 bool isTDRelease(const CallICFGNode *inst) const;
170
172
173
174 const SVFVar* getLockVal(const ICFGNode *inst) const;
176
178
179 bool isTDBarWait(const CallICFGNode *inst) const;
181
182 void performAPIStat();
184};
185
186} // End namespace SVF
187
188#endif /* THREADAPI_H_ */
const ValVar * getForkedFun(const CallICFGNode *inst) const
bool isTDFork(const CallICFGNode *inst) const
Return true if this call create a new thread.
static ThreadAPI * tdAPI
Static reference.
Definition ThreadAPI.h:91
@ 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
const ValVar * getForkedThread(const CallICFGNode *inst) const
Return arguments/attributes of pthread_create / hare_parallel_for.
TDAPIMap tdAPIMap
API map, from a string to threadAPI type.
Definition ThreadAPI.h:79
bool isTDJoin(const CallICFGNode *inst) const
Return true if this call wait for a worker thread.
void init()
Initialize the map.
bool isTDRelease(const CallICFGNode *inst) const
Return true if this call release a lock.
const SVFVar * getFormalParmOfForkedFun(const FunObjVar *F) const
Return the formal parm of forked function (the first arg in pthread)
const SVFVar * getLockVal(const ICFGNode *inst) const
Return lock value.
bool isTDExit(const CallICFGNode *inst) const
Return true if this call exits/terminate a thread.
const SVFVar * getRetParmAtJoinedSite(const CallICFGNode *inst) const
void statInit(Map< std::string, u32_t > &tdAPIStatMap)
const SVFVar * getJoinedThread(const CallICFGNode *inst) const
Return arguments/attributes of pthread_join.
ThreadAPI()
Constructor.
Definition ThreadAPI.h:82
void performAPIStat()
Map< std::string, TD_TYPE > TDAPIMap
Definition ThreadAPI.h:75
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.
TD_TYPE getType(const FunObjVar *F) const
Get the function type if it is a threadAPI function.
static void destroy()
Definition ThreadAPI.h:107
for isBitcode
Definition BasicTypes.h:68
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74