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