Once again syncing after too long an absence
[p5sagit/p5-mst-13.2.git] / thrdvar.h
CommitLineData
cb68f92d 1/***********************************************/
2/* Global only to current thread */
3/***********************************************/
4
8b3be1d1 5/* Don't forget to re-run embed.pl to propagate changes! */
6
cb68f92d 7/* The 'T' prefix is only needed for vars that need appropriate #defines
8 * generated when built with or without USE_THREADS. It is also used
9 * to generate the appropriate export list for win32.
10 *
11 * When building without USE_THREADS, these variables will be truly global.
12 * When building without USE_THREADS but with MULTIPLICITY, these variables
14dd3ad8 13 * will be global per-interpreter. */
8b3be1d1 14
49f531da 15/* Important ones in the first cache line (if alignment is done right) */
d4cce5f1 16
c5be433b 17#ifdef USE_THREADS
18PERLVAR(interp, PerlInterpreter*) /* thread owner */
19#endif
20
cb68f92d 21PERLVAR(Tstack_sp, SV **) /* top of the stack */
49f531da 22#ifdef OP_IN_REGISTER
cb68f92d 23PERLVAR(Topsave, OP *)
49f531da 24#else
cb68f92d 25PERLVAR(Top, OP *) /* currently executing op */
49f531da 26#endif
cb68f92d 27PERLVAR(Tcurpad, SV **) /* active pad (lexicals+tmps) */
28
29PERLVAR(Tstack_base, SV **)
30PERLVAR(Tstack_max, SV **)
31
32PERLVAR(Tscopestack, I32 *) /* scopes we've ENTERed */
33PERLVAR(Tscopestack_ix, I32)
34PERLVAR(Tscopestack_max,I32)
49f531da 35
cb68f92d 36PERLVAR(Tsavestack, ANY *) /* items that need to be restored
37 when LEAVEing scopes we've ENTERed */
38PERLVAR(Tsavestack_ix, I32)
39PERLVAR(Tsavestack_max, I32)
49f531da 40
cb68f92d 41PERLVAR(Ttmps_stack, SV **) /* mortals we've made */
42PERLVARI(Ttmps_ix, I32, -1)
43PERLVARI(Ttmps_floor, I32, -1)
44PERLVAR(Ttmps_max, I32)
49f531da 45
cb68f92d 46PERLVAR(Tmarkstack, I32 *) /* stack_sp locations we're remembering */
47PERLVAR(Tmarkstack_ptr, I32 *)
48PERLVAR(Tmarkstack_max, I32 *)
49f531da 49
cb68f92d 50PERLVAR(Tretstack, OP **) /* OPs we have postponed executing */
51PERLVAR(Tretstack_ix, I32)
52PERLVAR(Tretstack_max, I32)
49f531da 53
cb68f92d 54PERLVAR(TSv, SV *) /* used to hold temporary values */
55PERLVAR(TXpv, XPV *) /* used to hold temporary values */
954c1994 56
57/*
58=for apidoc Amn|STRLEN|PL_na
59
60A convenience variable which is typically used with C<SvPV> when one
61doesn't care about the length of the string. It is usually more efficient
62to either declare a local variable and use that instead or to use the
63C<SvPV_nolen> macro.
64
65=cut
66*/
67
b099ddc0 68PERLVAR(Tna, STRLEN) /* for use in SvPV when length is
69 Not Applicable */
49f531da 70
5c0ca799 71/* stat stuff */
cb68f92d 72PERLVAR(Tstatbuf, Stat_t)
5c0ca799 73PERLVAR(Tstatcache, Stat_t) /* _ */
74PERLVAR(Tstatgv, GV *)
75PERLVARI(Tstatname, SV *, Nullsv)
76
49f531da 77#ifdef HAS_TIMES
cb68f92d 78PERLVAR(Ttimesbuf, struct tms)
49f531da 79#endif
49f531da 80
81/* Fields used by magic variables such as $@, $/ and so on */
d4cce5f1 82PERLVAR(Ttainted, bool) /* using variables controlled by $< */
cb68f92d 83PERLVAR(Tcurpm, PMOP *) /* what to do \ interps in REs from */
84PERLVAR(Tnrs, SV *)
85PERLVAR(Trs, SV *) /* input record separator $/ */
86PERLVAR(Tlast_in_gv, GV *) /* GV used in last <FH> */
0e06870b 87PERLVAR(Tofs_sv, SV *) /* output field separator $, */
cb68f92d 88PERLVAR(Tdefoutgv, GV *) /* default FH for output */
d4cce5f1 89PERLVARI(Tchopset, char *, " \n-") /* $: */
cb68f92d 90PERLVAR(Tformtarget, SV *)
91PERLVAR(Tbodytarget, SV *)
92PERLVAR(Ttoptarget, SV *)
49f531da 93
d4cce5f1 94/* Stashes */
95PERLVAR(Tdefstash, HV *) /* main symbol table */
96PERLVAR(Tcurstash, HV *) /* symbol table for current package */
49f531da 97
cb68f92d 98PERLVAR(Trestartop, OP *) /* propagating an error from croak? */
3280af22 99PERLVARI(Tcurcop, COP * VOL, &PL_compiling)
d4cce5f1 100PERLVAR(Tin_eval, VOL int) /* trap "fatal" errors? */
101PERLVAR(Tdelaymagic, int) /* ($<,$>) = ... */
24d3c518 102PERLVARI(Tdirty, bool, FALSE) /* in the middle of tearing things down? */
61bb5906 103PERLVAR(Tlocalizing, int) /* are we processing a local() list? */
49f531da 104
cb68f92d 105PERLVAR(Tcurstack, AV *) /* THE STACK */
106PERLVAR(Tcurstackinfo, PERL_SI *) /* current stack + context */
107PERLVAR(Tmainstack, AV *) /* the stack when nothing funny is happening */
312caa8e 108
cb68f92d 109PERLVAR(Ttop_env, JMPENV *) /* ptr. to current sigjmp() environment */
110PERLVAR(Tstart_env, JMPENV) /* empty startup sigjmp() environment */
14dd3ad8 111#ifdef PERL_FLEXIBLE_EXCEPTIONS
0b94c7bb 112PERLVARI(Tprotect, protect_proc_t, MEMBER_TO_FPTR(Perl_default_protect))
14dd3ad8 113#endif
5a844595 114PERLVARI(Terrors, SV *, Nullsv) /* outstanding queued errors */
49f531da 115
4e4c362e 116/* statics "owned" by various functions */
cb68f92d 117PERLVAR(Tav_fetch_sv, SV *) /* owned by av_fetch() */
118PERLVAR(Thv_fetch_sv, SV *) /* owned by hv_fetch() */
119PERLVAR(Thv_fetch_ent_mh, HE) /* owned by hv_fetch_ent() */
120
121PERLVAR(Tmodcount, I32) /* how much mod()ification in assignment? */
4e4c362e 122
5c0ca799 123PERLVAR(Tlastgotoprobe, OP*) /* from pp_ctl.c */
3967c732 124PERLVARI(Tdumpindent, I32, 4) /* # of blanks per dump indentation level */
5c0ca799 125
126/* sort stuff */
127PERLVAR(Tsortcop, OP *) /* user defined sort routine */
128PERLVAR(Tsortstash, HV *) /* which is in some package or other */
129PERLVAR(Tfirstgv, GV *) /* $a */
130PERLVAR(Tsecondgv, GV *) /* $b */
131PERLVAR(Tsortcxix, I32) /* from pp_ctl.c */
132
7d5ea4e7 133/* float buffer */
134PERLVAR(Tefloatbuf, char*)
135PERLVAR(Tefloatsize, STRLEN)
136
5c0ca799 137/* regex stuff */
138
139PERLVAR(Tscreamfirst, I32 *)
140PERLVAR(Tscreamnext, I32 *)
141PERLVARI(Tmaxscream, I32, -1)
142PERLVAR(Tlastscream, SV *)
143
144PERLVAR(Tregdummy, regnode) /* from regcomp.c */
145PERLVAR(Tregcomp_parse, char*) /* Input-scan pointer. */
146PERLVAR(Tregxend, char*) /* End of input for compile */
147PERLVAR(Tregcode, regnode*) /* Code-emit pointer; &regdummy = don't */
148PERLVAR(Tregnaughty, I32) /* How bad is this pattern? */
149PERLVAR(Tregsawback, I32) /* Did we see \1, ...? */
150PERLVAR(Tregprecomp, char *) /* uncompiled string. */
151PERLVAR(Tregnpar, I32) /* () count. */
152PERLVAR(Tregsize, I32) /* Code size. */
153PERLVAR(Tregflags, U16) /* are we folding, multilining? */
154PERLVAR(Tregseen, U32) /* from regcomp.c */
155PERLVAR(Tseen_zerolen, I32) /* from regcomp.c */
156PERLVAR(Tseen_evals, I32) /* from regcomp.c */
157PERLVAR(Tregcomp_rx, regexp *) /* from regcomp.c */
158PERLVAR(Textralen, I32) /* from regcomp.c */
159PERLVAR(Tcolorset, int) /* from regcomp.c */
51371543 160PERLVARA(Tcolors,6, char *) /* from regcomp.c */
82ba1be6 161PERLVAR(Treg_whilem_seen, I32) /* number of WHILEM in this expr */
5c0ca799 162PERLVAR(Treginput, char *) /* String-input pointer. */
163PERLVAR(Tregbol, char *) /* Beginning of input, for ^ check. */
164PERLVAR(Tregeol, char *) /* End of input, for $ check. */
cf93c79d 165PERLVAR(Tregstartp, I32 *) /* Pointer to startp array. */
166PERLVAR(Tregendp, I32 *) /* Ditto for endp. */
5c0ca799 167PERLVAR(Treglastparen, U32 *) /* Similarly for lastparen. */
168PERLVAR(Tregtill, char *) /* How far we are required to go. */
169PERLVAR(Tregprev, char) /* char before regbol, \n if none */
170PERLVAR(Treg_start_tmp, char **) /* from regexec.c */
171PERLVAR(Treg_start_tmpl,U32) /* from regexec.c */
172PERLVAR(Tregdata, struct reg_data *)
173 /* from regexec.c renamed was data */
174PERLVAR(Tbostr, char *) /* from regexec.c */
175PERLVAR(Treg_flags, U32) /* from regexec.c */
176PERLVAR(Treg_eval_set, I32) /* from regexec.c */
177PERLVAR(Tregnarrate, I32) /* from regexec.c */
178PERLVAR(Tregprogram, regnode *) /* from regexec.c */
179PERLVARI(Tregindent, int, 0) /* from regexec.c */
180PERLVAR(Tregcc, CURCUR *) /* from regexec.c */
0f5d15d6 181PERLVAR(Treg_call_cc, struct re_cc_state *) /* from regexec.c */
182PERLVAR(Treg_re, regexp *) /* from regexec.c */
22e551b9 183PERLVAR(Treg_ganch, char *) /* position of \G */
184PERLVAR(Treg_sv, SV *) /* what we match against */
9661b544 185PERLVAR(Treg_magic, MAGIC *) /* pos-magic of what we match */
186PERLVAR(Treg_oldpos, I32) /* old pos of what we match */
5c5e4c24 187PERLVARI(Treg_oldcurpm, PMOP*, NULL) /* curpm before match */
188PERLVARI(Treg_curpm, PMOP*, NULL) /* curpm during match */
cf93c79d 189PERLVAR(Treg_oldsaved, char*) /* old saved substr during match */
190PERLVAR(Treg_oldsavedlen, STRLEN) /* old length of saved substr during match */
82ba1be6 191PERLVAR(Treg_maxiter, I32) /* max wait until caching pos */
192PERLVAR(Treg_leftiter, I32) /* wait until caching pos */
193PERLVARI(Treg_poscache, char *, Nullch) /* cache of pos of WHILEM */
194PERLVAR(Treg_poscache_size, STRLEN) /* size of pos cache of WHILEM */
5c0ca799 195
0b94c7bb 196PERLVARI(Tregcompp, regcomp_t, MEMBER_TO_FPTR(Perl_pregcomp))
f722798b 197 /* Pointer to REx compiler */
0b94c7bb 198PERLVARI(Tregexecp, regexec_t, MEMBER_TO_FPTR(Perl_regexec_flags))
f722798b 199 /* Pointer to REx executer */
0b94c7bb 200PERLVARI(Tregint_start, re_intuit_start_t, MEMBER_TO_FPTR(Perl_re_intuit_start))
f722798b 201 /* Pointer to optimized REx executer */
0b94c7bb 202PERLVARI(Tregint_string,re_intuit_string_t, MEMBER_TO_FPTR(Perl_re_intuit_string))
f722798b 203 /* Pointer to optimized REx string */
0b94c7bb 204PERLVARI(Tregfree, regfree_t, MEMBER_TO_FPTR(Perl_pregfree))
f722798b 205 /* Pointer to REx free()er */
206
57668c4d 207PERLVARI(Treginterp_cnt,int, 0) /* Whether `Regexp'
5c0ca799 208 was interpolated. */
364723c2 209PERLVARI(Treg_starttry, char *, 0) /* -Dr: where regtry was called. */
22c35a8c 210PERLVARI(Twatchaddr, char **, 0)
211PERLVAR(Twatchok, char *)
d4cce5f1 212
8b3be1d1 213/* Note that the variables below are all explicitly referenced in the code
cb68f92d 214 * as thr->whatever and therefore don't need the 'T' prefix. */
8b3be1d1 215
d4cce5f1 216#ifdef USE_THREADS
49f531da 217
cb68f92d 218PERLVAR(oursv, SV *)
219PERLVAR(cvcache, HV *)
220PERLVAR(self, perl_os_thread) /* Underlying thread object */
221PERLVAR(flags, U32)
222PERLVAR(threadsv, AV *) /* Per-thread SVs ($_, $@ etc.) */
223PERLVAR(threadsvp, SV **) /* AvARRAY(threadsv) */
224PERLVAR(specific, AV *) /* Thread-specific user data */
225PERLVAR(errsv, SV *) /* Backing SV for $@ */
cb68f92d 226PERLVAR(mutex, perl_mutex) /* For the fields others can change */
227PERLVAR(tid, U32)
49f531da 228PERLVAR(prev, struct perl_thread *)
cb68f92d 229PERLVAR(next, struct perl_thread *)
230 /* Circular linked list of threads */
49f531da 231
232#ifdef HAVE_THREAD_INTERN
cb68f92d 233PERLVAR(i, struct thread_intern)
234 /* Platform-dependent internals */
49f531da 235#endif
236
cb68f92d 237PERLVAR(trailing_nul, char) /* For the sake of thrsv and oursv */
0e06870b 238PERLVAR(thr_done, bool) /* True when the thread has finished */
d4cce5f1 239#endif /* USE_THREADS */