019554174b7547bbd378c5e2be62ac31c3be07a2
[IRC.git] / Robust / src / Runtime / thread.c
1 #include "runtime.h"
2 #include <sys/types.h>
3 #include <unistd.h>
4 #include <errno.h>
5 #include <stdlib.h>
6 #include "thread.h"
7 #include "option.h"
8 #include <signal.h>
9
10 #ifdef DSTM
11 #include <DSTM/interface/dstm.h>
12 #include <DSTM/interface/llookup.h>
13 #endif
14
15 #ifndef RAW
16 #include <stdio.h>
17 #endif
18 int threadcount;
19 pthread_mutex_t gclock;
20 pthread_mutex_t gclistlock;
21 pthread_cond_t gccond;
22 pthread_mutex_t objlock;
23 pthread_cond_t objcond;
24
25 pthread_mutex_t joinlock;
26 pthread_cond_t joincond;
27 pthread_key_t threadlocks;
28 pthread_mutex_t threadnotifylock;
29 pthread_cond_t threadnotifycond;
30 pthread_key_t oidval;
31
32 void threadexit() {
33 #ifdef DSTM
34   objheader_t* ptr;
35   unsigned int oidvalue;
36 #endif
37   void *value;
38
39 #ifdef THREADS
40   struct ___Object___ *ll=pthread_getspecific(threadlocks);
41   while(ll!=NULL) {
42     struct ___Object___ *llnext=ll->___nextlockobject___;
43     ll->___nextlockobject___=NULL;
44     ll->___prevlockobject___=NULL;
45     ll->lockcount=0;
46     ll->tid=0; //unlock it
47     ll=llnext;
48   }
49   pthread_mutex_lock(&objlock); //wake everyone up
50   pthread_cond_broadcast(&objcond);
51   pthread_mutex_unlock(&objlock);
52 #endif
53   pthread_mutex_lock(&gclistlock);
54   threadcount--;
55   pthread_cond_signal(&gccond);
56   pthread_mutex_unlock(&gclistlock);
57 #ifdef DSTM
58   /* Add transaction to check if thread finished for join operation */
59   value = pthread_getspecific(oidval);
60   oidvalue = *((unsigned int *)value);
61   goto transstart;
62 transstart:
63   {
64     transStart();
65     ptr = transRead(oidvalue);
66     struct ___Thread___ *p = (struct ___Thread___ *) ptr;
67     p->___threadDone___ = 1;
68     *((unsigned int *)&((struct ___Object___ *) p)->___localcopy___) |=DIRTY;
69     if(transCommit() != 0) {
70       goto transstart;
71     }
72   }
73 #endif
74   pthread_exit(NULL);
75 }
76
77 void threadhandler(int sig, siginfo_t *info, void *uap) {
78 #ifdef DEBUG
79   printf("sig=%d\n",sig);
80   printf("signal\n");
81 #endif
82   threadexit();
83 }
84
85 void initializethreads() {
86   struct sigaction sig;
87   threadcount=1;
88   pthread_mutex_init(&gclock, NULL);
89   pthread_mutex_init(&gclistlock, NULL);
90   pthread_cond_init(&gccond, NULL);
91   pthread_mutex_init(&objlock,NULL);
92   pthread_cond_init(&objcond,NULL);
93   pthread_mutex_init(&joinlock,NULL);
94   pthread_cond_init(&joincond,NULL);
95   pthread_key_create(&threadlocks, NULL);
96   processOptions();
97   initializeexithandler();
98
99   sig.sa_sigaction=&threadhandler;
100   sig.sa_flags=SA_SIGINFO;
101   sigemptyset(&sig.sa_mask);
102
103   /* Catch bus errors, segmentation faults, and floating point exceptions*/
104   sigaction(SIGBUS,&sig,0);
105   sigaction(SIGSEGV,&sig,0);
106   sigaction(SIGFPE,&sig,0);
107   signal(SIGPIPE, SIG_IGN);
108 }
109
110 #if defined(THREADS)||defined(STM)
111 void initthread(struct ___Thread___ * ___this___) {
112 #ifdef PRECISE_GC
113   int p[]={1, (int) NULL, (int) ___this___};
114 #ifdef THREADS
115   ___Thread______staticStart____L___Thread___((struct ___Thread______staticStart____L___Thread____params *)p);
116 #else
117   newobjs=calloc(1, sizeof(struct objlist));
118  ___Thread____NN____staticStart____L___Thread___((struct ___Thread____NN____staticStart____L___Thread____params *)p);
119   free(newobjs);
120 #endif
121   ___this___=(struct ___Thread___ *) p[2];
122 #else
123   ___Thread______staticStart____L___Thread___(___this___);
124 #endif
125   ___this___->___finished___=1;
126   pthread_mutex_lock(&joinlock);
127   pthread_cond_signal(&joincond);
128   pthread_mutex_unlock(&joinlock);
129
130   pthread_mutex_lock(&gclistlock);
131   threadcount--;
132   pthread_cond_signal(&gccond);
133   pthread_mutex_unlock(&gclistlock);
134 }
135 #endif
136
137 void CALL11(___Thread______sleep____J, long long ___millis___, long long ___millis___) {
138 #if defined(THREADS)||defined(STM)
139 #ifdef PRECISE_GC
140   struct listitem *tmp=stopforgc((struct garbagelist *)___params___);
141 #endif
142 #endif
143   usleep(___millis___);
144 #if defined(THREADS)||defined(STM)
145 #ifdef PRECISE_GC
146   restartaftergc(tmp);
147 #endif
148 #endif
149 }
150
151 #if defined(DSTM)|| defined(THREADS)||defined(STM)
152 void CALL00(___Thread______yield____) {
153   pthread_yield();
154 }
155 #endif
156
157 #ifdef DSTM
158 /* Add thread join capability */
159 void CALL01(___Thread______join____, struct ___Thread___ * ___this___) {
160   unsigned int *oidarray;
161   unsigned short *versionarray, version;
162   objheader_t *ptr;
163   /* Add transaction to check if thread finished for join operation */
164 transstart:
165   transStart();
166   ptr = transRead((unsigned int) VAR(___this___));
167   struct ___Thread___ *p = (struct ___Thread___ *) ptr;
168 #ifdef THREADJOINDEBUG
169   printf("Start join process for Oid = %x\n", (unsigned int) VAR(___this___));
170 #endif
171   if(p->___threadDone___ == 1) {
172 #ifdef THREADJOINDEBUG
173     printf("Thread oid = %x is done\n", (unsigned int) VAR(___this___));
174 #endif
175     transAbort();
176     return;
177   } else {
178
179     version = (ptr-1)->version;
180     if((oidarray = calloc(1, sizeof(unsigned int))) == NULL) {
181       printf("Calloc error %s, %d\n", __FILE__, __LINE__);
182       return;
183     }
184
185     oidarray[0] = (unsigned int) VAR(___this___);
186
187     if((versionarray = calloc(1, sizeof(unsigned short))) == NULL) {
188       printf("Calloc error %s, %d\n", __FILE__, __LINE__);
189       free(oidarray);
190       return;
191     }
192     versionarray[0] = version;
193     /* Request Notification */
194 #ifdef PRECISE_GC
195     struct listitem *tmp=stopforgc((struct garbagelist *)___params___);
196 #endif
197     reqNotify(oidarray, versionarray, 1);
198 #ifdef PRECISE_GC
199     restartaftergc(tmp);
200 #endif
201     free(oidarray);
202     free(versionarray);
203     transAbort();
204     goto transstart;
205   }
206   return;
207 }
208 #endif
209
210 #if defined(THREADS)||defined(STM)
211 void CALL01(___Thread______nativeJoin____, struct ___Thread___ * ___this___) {
212 #ifdef PRECISE_GC
213     struct listitem *tmp=stopforgc((struct garbagelist *)___params___);
214 #endif
215   pthread_mutex_lock(&joinlock);
216   while(!VAR(___this___)->___finished___)
217     pthread_cond_wait(&joincond, &joinlock);
218   pthread_mutex_unlock(&joinlock);
219 #ifdef PRECISE_GC
220     restartaftergc(tmp);
221 #endif
222
223 }
224
225 void CALL01(___Thread______nativeCreate____, struct ___Thread___ * ___this___) {
226   pthread_t thread;
227   int retval;
228   pthread_attr_t nattr;
229
230   pthread_mutex_lock(&gclistlock);
231   threadcount++;
232   pthread_mutex_unlock(&gclistlock);
233   pthread_attr_init(&nattr);
234   pthread_attr_setdetachstate(&nattr, PTHREAD_CREATE_DETACHED);
235
236   do {
237     retval=pthread_create(&thread, &nattr, (void * (*)(void *)) &initthread, VAR(___this___));
238     if (retval!=0)
239       usleep(1);
240   } while(retval!=0);
241   /* This next statement will likely not work on many machines */
242
243   pthread_attr_destroy(&nattr);
244 }
245 #endif
246
247 #ifdef DSTM
248 void CALL12(___Thread______start____I, int ___mid___, struct ___Thread___ * ___this___, int ___mid___) {
249   startRemoteThread((unsigned int)VAR(___this___), ___mid___);
250 }
251 #endif
252
253 #ifdef DSTM
254 void globalDestructor(void *value) {
255   free(value);
256   pthread_setspecific(oidval, NULL);
257 }
258
259 void initDSMthread(int *ptr) {
260   objheader_t *tmp;
261   void *threadData;
262   int oid=ptr[0];
263   int type=ptr[1];
264   free(ptr);
265 #ifdef PRECISE_GC
266   int p[]={1, 0 /* NULL */, oid};
267   ((void(*) (void *))virtualtable[type*MAXCOUNT+RUNMETHOD])(p);
268 #else
269   ((void(*) (void *))virtualtable[type*MAXCOUNT+RUNMETHOD])(oid);
270 #endif
271   threadData = calloc(1, sizeof(unsigned int));
272   *((unsigned int *) threadData) = oid;
273   pthread_setspecific(oidval, threadData);
274   pthread_mutex_lock(&gclistlock);
275   threadcount--;
276   pthread_cond_signal(&gccond);
277   pthread_mutex_unlock(&gclistlock);
278   /* Add transaction to check if thread finished for join operation */
279   goto transstart;
280 transstart:
281   {
282     transStart();
283     tmp  = transRead((unsigned int) oid);
284     ((struct ___Thread___ *)tmp)->___threadDone___ = 1;
285     *((unsigned int *)&((struct ___Object___ *) tmp)->___localcopy___) |=DIRTY;
286     if(transCommit()!= 0) {
287       goto transstart;
288     }
289   }
290   pthread_exit(NULL);
291 }
292
293 void startDSMthread(int oid, int objType) {
294   pthread_t thread;
295   int retval;
296   pthread_attr_t nattr;
297
298   pthread_mutex_lock(&gclistlock);
299   threadcount++;
300   pthread_mutex_unlock(&gclistlock);
301   pthread_attr_init(&nattr);
302   pthread_attr_setdetachstate(&nattr, PTHREAD_CREATE_DETACHED);
303   int * ptr=malloc(sizeof(int)*2);
304   ptr[0]=oid;
305   ptr[1]=objType;
306   pthread_key_create(&oidval, globalDestructor);
307   do {
308     retval=pthread_create(&thread, &nattr, (void * (*)(void *)) &initDSMthread,  ptr);
309     if (retval!=0)
310       usleep(1);
311   } while(retval!=0);
312
313   pthread_attr_destroy(&nattr);
314 }
315
316 #endif