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