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