Raw integrate of latest perl
[p5sagit/p5-mst-13.2.git] / thread.h
1 #ifdef USE_THREADS
2
3 #ifdef WIN32
4 #  include <win32thread.h>
5 #else
6
7 /* POSIXish threads */
8 typedef pthread_t perl_thread;
9 #ifdef OLD_PTHREADS_API
10 #  define pthread_mutexattr_init(a) pthread_mutexattr_create(a)
11 #  define pthread_mutexattr_settype(a,t) pthread_mutexattr_setkind_np(a,t)
12 #  define pthread_key_create(k,d) pthread_keycreate(k,(pthread_destructor_t)(d))
13 #  define YIELD pthread_yield()
14 #  define DETACH(t)                             \
15     STMT_START {                                \
16         if (pthread_detach(&(t)->self)) {       \
17             MUTEX_UNLOCK(&(t)->mutex);          \
18             croak("panic: DETACH");             \
19         }                                       \
20     } STMT_END
21 #else
22 #  define pthread_mutexattr_default NULL
23 #  define pthread_condattr_default NULL
24 #  define pthread_attr_default NULL
25 #endif /* OLD_PTHREADS_API */
26 #endif
27
28 #ifndef YIELD
29 #  define YIELD sched_yield()
30 #endif
31
32 #ifndef MUTEX_INIT
33 #define MUTEX_INIT(m)                                           \
34     STMT_START {                                                \
35         if (pthread_mutex_init((m), pthread_mutexattr_default)) \
36             croak("panic: MUTEX_INIT");                         \
37     } STMT_END
38 #define MUTEX_LOCK(m)                           \
39     STMT_START {                                \
40         if (pthread_mutex_lock((m)))            \
41             croak("panic: MUTEX_LOCK");         \
42     } STMT_END
43 #define MUTEX_UNLOCK(m)                         \
44     STMT_START {                                \
45         if (pthread_mutex_unlock((m)))          \
46             croak("panic: MUTEX_UNLOCK");       \
47     } STMT_END
48 #define MUTEX_DESTROY(m)                        \
49     STMT_START {                                \
50         if (pthread_mutex_destroy((m)))         \
51             croak("panic: MUTEX_DESTROY");      \
52     } STMT_END
53 #endif /* MUTEX_INIT */
54
55 #ifndef COND_INIT
56 #define COND_INIT(c)                                            \
57     STMT_START {                                                \
58         if (pthread_cond_init((c), pthread_condattr_default))   \
59             croak("panic: COND_INIT");                          \
60     } STMT_END
61 #define COND_SIGNAL(c)                          \
62     STMT_START {                                \
63         if (pthread_cond_signal((c)))           \
64             croak("panic: COND_SIGNAL");        \
65     } STMT_END
66 #define COND_BROADCAST(c)                       \
67     STMT_START {                                \
68         if (pthread_cond_broadcast((c)))        \
69             croak("panic: COND_BROADCAST");     \
70     } STMT_END
71 #define COND_WAIT(c, m)                         \
72     STMT_START {                                \
73         if (pthread_cond_wait((c), (m)))        \
74             croak("panic: COND_WAIT");          \
75     } STMT_END
76 #define COND_DESTROY(c)                         \
77     STMT_START {                                \
78         if (pthread_cond_destroy((c)))          \
79             croak("panic: COND_DESTROY");       \
80     } STMT_END
81 #endif /* COND_INIT */
82
83 /* DETACH(t) must only be called while holding t->mutex */
84 #ifndef DETACH
85 #define DETACH(t)                               \
86     STMT_START {                                \
87         if (pthread_detach((t)->self)) {        \
88             MUTEX_UNLOCK(&(t)->mutex);          \
89             croak("panic: DETACH");             \
90         }                                       \
91     } STMT_END
92 #endif /* DETACH */
93
94 #ifndef JOIN
95 #define JOIN(t, avp)                                    \
96     STMT_START {                                        \
97         if (pthread_join((t)->self, (void**)(avp)))     \
98             croak("panic: pthread_join");               \
99     } STMT_END
100 #endif /* JOIN */
101
102 #ifndef SET_THR
103 #define SET_THR(t)                                      \
104     STMT_START {                                        \
105         if (pthread_setspecific(thr_key, (void *) (t))) \
106             croak("panic: pthread_setspecific");        \
107     } STMT_END
108 #endif /* SET_THR */
109
110 #ifndef THR
111 #  ifdef OLD_PTHREADS_API
112 struct thread *getTHR _((void));
113 #    define THR getTHR()
114 #  else
115 #    define THR ((struct thread *) pthread_getspecific(thr_key))
116 #  endif /* OLD_PTHREADS_API */
117 #endif /* THR */
118
119 #ifndef dTHR
120 #  define dTHR struct thread *thr = THR
121 #endif /* dTHR */
122
123 #ifndef INIT_THREADS
124 #  ifdef NEED_PTHREAD_INIT
125 #    define INIT_THREADS pthread_init()
126 #  else
127 #    define INIT_THREADS NOOP
128 #  endif
129 #endif
130
131 #ifndef THREAD_RET_TYPE
132 #  define THREAD_RET_TYPE       void *
133 #  define THREAD_RET_CAST(p)    ((void *)(p))
134 #endif /* THREAD_RET */
135
136 struct thread {
137     /* The fields that used to be global */
138     /* Important ones in the first cache line (if alignment is done right) */
139     SV **       Tstack_sp;
140 #ifdef OP_IN_REGISTER
141     OP *        Topsave;
142 #else
143     OP *        Top;
144 #endif
145     SV **       Tcurpad;
146     SV **       Tstack_base;
147
148     SV **       Tstack_max;
149
150     I32 *       Tscopestack;
151     I32         Tscopestack_ix;
152     I32         Tscopestack_max;
153
154     ANY *       Tsavestack;
155     I32         Tsavestack_ix;
156     I32         Tsavestack_max;
157
158     OP **       Tretstack;
159     I32         Tretstack_ix;
160     I32         Tretstack_max;
161
162     I32 *       Tmarkstack;
163     I32 *       Tmarkstack_ptr;
164     I32 *       Tmarkstack_max;
165
166     SV *        TSv;
167     XPV *       TXpv;
168     struct stat Tstatbuf;
169     struct tms  Ttimesbuf;
170     
171     /* XXX What about regexp stuff? */
172
173     /* Now the fields that used to be "per interpreter" (even when global) */
174
175     /* XXX What about magic variables such as $/, $? and so on? */
176     HV *        Tdefstash;
177     HV *        Tcurstash;
178
179     SV **       Ttmps_stack;
180     I32         Ttmps_ix;
181     I32         Ttmps_floor;
182     I32         Ttmps_max;
183
184     int         Tin_eval;
185     OP *        Trestartop;
186     int         Tdelaymagic;
187     bool        Tdirty;
188     U8          Tlocalizing;
189     COP *       Tcurcop;
190
191     CONTEXT *   Tcxstack;
192     I32         Tcxstack_ix;
193     I32         Tcxstack_max;
194
195     AV *        Tcurstack;
196     AV *        Tmainstack;
197     JMPENV *    Ttop_env;
198     I32         Trunlevel;
199
200     /* XXX Sort stuff, firstgv, secongv and so on? */
201
202     SV *        oursv;
203     HV *        cvcache;
204     perl_thread self;                   /* Underlying thread object */
205     U32         flags;
206     AV *        magicals;               /* Per-thread magicals */
207     AV *        specific;               /* Thread-specific user data */
208     perl_mutex  mutex;                  /* For the fields others can change */
209     U32         tid;
210     struct thread *next, *prev;         /* Circular linked list of threads */
211
212 #ifdef ADD_THREAD_INTERN
213     struct thread_intern i;             /* Platform-dependent internals */
214 #endif
215     char        trailing_nul;           /* For the sake of thrsv and oursv */
216 };
217
218 typedef struct thread *Thread;
219
220 /* Values and macros for thr->flags */
221 #define THRf_STATE_MASK 7
222 #define THRf_R_JOINABLE 0
223 #define THRf_R_JOINED   1
224 #define THRf_R_DETACHED 2
225 #define THRf_ZOMBIE     3
226 #define THRf_DEAD       4
227
228 #define THRf_DIE_FATAL  8
229
230 /* ThrSTATE(t) and ThrSETSTATE(t) must only be called while holding t->mutex */
231 #define ThrSTATE(t) ((t)->flags)
232 #define ThrSETSTATE(t, s) STMT_START {          \
233         (t)->flags &= ~THRf_STATE_MASK;         \
234         (t)->flags |= (s);                      \
235         DEBUG_L(PerlIO_printf(PerlIO_stderr(),  \
236                               "thread %p set to state %d\n", (t), (s))); \
237     } STMT_END
238
239 typedef struct condpair {
240     perl_mutex  mutex;          /* Protects all other fields */
241     perl_cond   owner_cond;     /* For when owner changes at all */
242     perl_cond   cond;           /* For cond_signal and cond_broadcast */
243     Thread      owner;          /* Currently owning thread */
244 } condpair_t;
245
246 #define MgMUTEXP(mg) (&((condpair_t *)(mg->mg_ptr))->mutex)
247 #define MgOWNERCONDP(mg) (&((condpair_t *)(mg->mg_ptr))->owner_cond)
248 #define MgCONDP(mg) (&((condpair_t *)(mg->mg_ptr))->cond)
249 #define MgOWNER(mg) ((condpair_t *)(mg->mg_ptr))->owner
250
251 #undef  stack_base
252 #undef  stack_sp
253 #undef  stack_max
254 #undef  curstack
255 #undef  mainstack
256 #undef  markstack
257 #undef  markstack_ptr
258 #undef  markstack_max
259 #undef  scopestack
260 #undef  scopestack_ix
261 #undef  scopestack_max
262 #undef  savestack
263 #undef  savestack_ix
264 #undef  savestack_max
265 #undef  retstack
266 #undef  retstack_ix
267 #undef  retstack_max
268 #undef  curcop
269 #undef  cxstack
270 #undef  cxstack_ix
271 #undef  cxstack_max
272 #undef  defstash
273 #undef  curstash
274 #undef  tmps_stack
275 #undef  tmps_floor
276 #undef  tmps_ix
277 #undef  tmps_max
278 #undef  curpad
279 #undef  Sv
280 #undef  Xpv
281 #undef  statbuf
282 #undef  timesbuf
283 #undef  top_env
284 #undef  runlevel
285 #undef  in_eval
286 #undef  restartop
287 #undef  delaymagic
288 #undef  dirty
289 #undef  localizing
290
291 #define stack_base      (thr->Tstack_base)
292 #define stack_sp        (thr->Tstack_sp)
293 #define stack_max       (thr->Tstack_max)
294 #ifdef OP_IN_REGISTER
295 #define opsave          (thr->Topsave)
296 #else
297 #undef  op
298 #define op              (thr->Top)
299 #endif
300 #define curcop          (thr->Tcurcop)
301 #define stack           (thr->Tstack)
302 #define curstack        (thr->Tcurstack)
303 #define mainstack       (thr->Tmainstack)
304 #define markstack       (thr->Tmarkstack)
305 #define markstack_ptr   (thr->Tmarkstack_ptr)
306 #define markstack_max   (thr->Tmarkstack_max)
307 #define scopestack      (thr->Tscopestack)
308 #define scopestack_ix   (thr->Tscopestack_ix)
309 #define scopestack_max  (thr->Tscopestack_max)
310
311 #define savestack       (thr->Tsavestack)
312 #define savestack_ix    (thr->Tsavestack_ix)
313 #define savestack_max   (thr->Tsavestack_max)
314
315 #define retstack        (thr->Tretstack)
316 #define retstack_ix     (thr->Tretstack_ix)
317 #define retstack_max    (thr->Tretstack_max)
318
319 #define cxstack         (thr->Tcxstack)
320 #define cxstack_ix      (thr->Tcxstack_ix)
321 #define cxstack_max     (thr->Tcxstack_max)
322
323 #define curpad          (thr->Tcurpad)
324 #define Sv              (thr->TSv)
325 #define Xpv             (thr->TXpv)
326 #define statbuf         (thr->Tstatbuf)
327 #define timesbuf        (thr->Ttimesbuf)
328 #define defstash        (thr->Tdefstash)
329 #define curstash        (thr->Tcurstash)
330
331 #define tmps_stack      (thr->Ttmps_stack)
332 #define tmps_ix         (thr->Ttmps_ix)
333 #define tmps_floor      (thr->Ttmps_floor)
334 #define tmps_max        (thr->Ttmps_max)
335
336 #define in_eval         (thr->Tin_eval)
337 #define restartop       (thr->Trestartop)
338 #define delaymagic      (thr->Tdelaymagic)
339 #define dirty           (thr->Tdirty)
340 #define localizing      (thr->Tlocalizing)
341
342 #define top_env         (thr->Ttop_env)
343 #define runlevel        (thr->Trunlevel)
344
345 #else
346 /* USE_THREADS is not defined */
347 #define MUTEX_LOCK(m)
348 #define MUTEX_UNLOCK(m)
349 #define MUTEX_INIT(m)
350 #define MUTEX_DESTROY(m)
351 #define COND_INIT(c)
352 #define COND_SIGNAL(c)
353 #define COND_BROADCAST(c)
354 #define COND_WAIT(c, m)
355 #define COND_DESTROY(c)
356
357 #define THR
358 /* Rats: if dTHR is just blank then the subsequent ";" throws an error */
359 #define dTHR extern int errno
360 #endif /* USE_THREADS */