threads 1.62
[p5sagit/p5-mst-13.2.git] / thrdvar.h
CommitLineData
d6376244 1/* thdrvar.h
2 *
d95e864f 3 * Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
699a97de 4 * by Larry Wall and others
d6376244 5 *
6 * You may distribute under the terms of either the GNU General Public
7 * License or the Artistic License, as specified in the README file.
8 *
9 */
10
ccfc67b7 11/*
12=head1 Global Variables
13*/
14
cb68f92d 15/***********************************************/
16/* Global only to current thread */
17/***********************************************/
18
8b3be1d1 19/* Don't forget to re-run embed.pl to propagate changes! */
20
cb68f92d 21/* The 'T' prefix is only needed for vars that need appropriate #defines
4d1ff10f 22 * generated when built with or without USE_5005THREADS. It is also used
cb68f92d 23 * to generate the appropriate export list for win32.
24 *
4d1ff10f 25 * When building without USE_5005THREADS, these variables will be truly global.
26 * When building without USE_5005THREADS but with MULTIPLICITY, these variables
14dd3ad8 27 * will be global per-interpreter. */
8b3be1d1 28
49f531da 29/* Important ones in the first cache line (if alignment is done right) */
d4cce5f1 30
cb68f92d 31PERLVAR(Tstack_sp, SV **) /* top of the stack */
49f531da 32#ifdef OP_IN_REGISTER
cb68f92d 33PERLVAR(Topsave, OP *)
49f531da 34#else
cb68f92d 35PERLVAR(Top, OP *) /* currently executing op */
49f531da 36#endif
cb68f92d 37PERLVAR(Tcurpad, SV **) /* active pad (lexicals+tmps) */
38
39PERLVAR(Tstack_base, SV **)
40PERLVAR(Tstack_max, SV **)
41
42PERLVAR(Tscopestack, I32 *) /* scopes we've ENTERed */
43PERLVAR(Tscopestack_ix, I32)
44PERLVAR(Tscopestack_max,I32)
49f531da 45
cb68f92d 46PERLVAR(Tsavestack, ANY *) /* items that need to be restored
47 when LEAVEing scopes we've ENTERed */
48PERLVAR(Tsavestack_ix, I32)
49PERLVAR(Tsavestack_max, I32)
49f531da 50
cb68f92d 51PERLVAR(Ttmps_stack, SV **) /* mortals we've made */
52PERLVARI(Ttmps_ix, I32, -1)
53PERLVARI(Ttmps_floor, I32, -1)
54PERLVAR(Ttmps_max, I32)
9f7da6d5 55PERLVAR(Tmodcount, I32) /* how much mod()ification in assignment? */
49f531da 56
cb68f92d 57PERLVAR(Tmarkstack, I32 *) /* stack_sp locations we're remembering */
58PERLVAR(Tmarkstack_ptr, I32 *)
59PERLVAR(Tmarkstack_max, I32 *)
49f531da 60
cb68f92d 61PERLVAR(TSv, SV *) /* used to hold temporary values */
62PERLVAR(TXpv, XPV *) /* used to hold temporary values */
954c1994 63
64/*
65=for apidoc Amn|STRLEN|PL_na
66
67A convenience variable which is typically used with C<SvPV> when one
68doesn't care about the length of the string. It is usually more efficient
69to either declare a local variable and use that instead or to use the
70C<SvPV_nolen> macro.
71
72=cut
73*/
74
b099ddc0 75PERLVAR(Tna, STRLEN) /* for use in SvPV when length is
76 Not Applicable */
49f531da 77
5c0ca799 78/* stat stuff */
cb68f92d 79PERLVAR(Tstatbuf, Stat_t)
5c0ca799 80PERLVAR(Tstatcache, Stat_t) /* _ */
81PERLVAR(Tstatgv, GV *)
a0714e2c 82PERLVARI(Tstatname, SV *, NULL)
5c0ca799 83
49f531da 84#ifdef HAS_TIMES
cb68f92d 85PERLVAR(Ttimesbuf, struct tms)
49f531da 86#endif
49f531da 87
88/* Fields used by magic variables such as $@, $/ and so on */
cb68f92d 89PERLVAR(Tcurpm, PMOP *) /* what to do \ interps in REs from */
c155e47c 90
91/*
2eb25c99 92=for apidoc mn|SV*|PL_rs
c155e47c 93
94The input record separator - C<$/> in Perl space.
95
2eb25c99 96=for apidoc mn|GV*|PL_last_in_gv
c155e47c 97
98The GV which was last used for a filehandle input operation. (C<< <FH> >>)
99
2eb25c99 100=for apidoc mn|SV*|PL_ofs_sv
c155e47c 101
102The output field separator - C<$,> in Perl space.
103
104=cut
105*/
106
cb68f92d 107PERLVAR(Trs, SV *) /* input record separator $/ */
108PERLVAR(Tlast_in_gv, GV *) /* GV used in last <FH> */
7889fe52 109PERLVAR(Tofs_sv, SV *) /* output field separator $, */
cb68f92d 110PERLVAR(Tdefoutgv, GV *) /* default FH for output */
dd374669 111PERLVARI(Tchopset, const char *, " \n-") /* $: */
cb68f92d 112PERLVAR(Tformtarget, SV *)
113PERLVAR(Tbodytarget, SV *)
114PERLVAR(Ttoptarget, SV *)
49f531da 115
d4cce5f1 116/* Stashes */
117PERLVAR(Tdefstash, HV *) /* main symbol table */
118PERLVAR(Tcurstash, HV *) /* symbol table for current package */
49f531da 119
cb68f92d 120PERLVAR(Trestartop, OP *) /* propagating an error from croak? */
3280af22 121PERLVARI(Tcurcop, COP * VOL, &PL_compiling)
cb68f92d 122PERLVAR(Tcurstack, AV *) /* THE STACK */
123PERLVAR(Tcurstackinfo, PERL_SI *) /* current stack + context */
124PERLVAR(Tmainstack, AV *) /* the stack when nothing funny is happening */
312caa8e 125
cb68f92d 126PERLVAR(Ttop_env, JMPENV *) /* ptr. to current sigjmp() environment */
127PERLVAR(Tstart_env, JMPENV) /* empty startup sigjmp() environment */
a0714e2c 128PERLVARI(Terrors, SV *, NULL) /* outstanding queued errors */
49f531da 129
4e4c362e 130/* statics "owned" by various functions */
195c09c3 131PERLVAR(Tav_fetch_sv, SV *) /* unused as of change #19268 */
132PERLVAR(Thv_fetch_sv, SV *) /* unused as of change #19268 */
dd28f7bb 133PERLVAR(Thv_fetch_ent_mh, HE*) /* owned by hv_fetch_ent() */
cb68f92d 134
4e4c362e 135
5c0ca799 136PERLVAR(Tlastgotoprobe, OP*) /* from pp_ctl.c */
137
138/* sort stuff */
139PERLVAR(Tsortcop, OP *) /* user defined sort routine */
140PERLVAR(Tsortstash, HV *) /* which is in some package or other */
141PERLVAR(Tfirstgv, GV *) /* $a */
142PERLVAR(Tsecondgv, GV *) /* $b */
5c0ca799 143
7d5ea4e7 144/* float buffer */
145PERLVAR(Tefloatbuf, char*)
146PERLVAR(Tefloatsize, STRLEN)
147
5c0ca799 148/* regex stuff */
149
150PERLVAR(Tscreamfirst, I32 *)
151PERLVAR(Tscreamnext, I32 *)
5c0ca799 152PERLVAR(Tlastscream, SV *)
153
46ab3289 154PERLVAR(Treg_state, struct re_save_state)
a4021b77 155
5c0ca799 156PERLVAR(Tregdummy, regnode) /* from regcomp.c */
a4021b77 157
158PERLVARI(Tdumpindent, U16, 4) /* # of blanks per dump indentation level */
159/* Space for U16 here without increasing the structure size */
160
51371543 161PERLVARA(Tcolors,6, char *) /* from regcomp.c */
5c0ca799 162
a2efc822 163PERLVARI(Tpeepp, peep_t, MEMBER_TO_FPTR(Perl_peep))
164 /* Pointer to peephole optimizer */
84da74a7 165
9f7da6d5 166PERLVARI(Tmaxscream, I32, -1)
8bbe96d7 167PERLVARI(Treginterp_cnt,I32, 0) /* Whether "Regexp" was interpolated. */
22c35a8c 168PERLVARI(Twatchaddr, char **, 0)
169PERLVAR(Twatchok, char *)
d4cce5f1 170
8b3be1d1 171/* Note that the variables below are all explicitly referenced in the code
cb68f92d 172 * as thr->whatever and therefore don't need the 'T' prefix. */
8b3be1d1 173
5d9a96ca 174/* the currently active slab in a chain of slabs of regmatch states,
175 * and the currently active state within that slab */
176
177PERLVARI(Tregmatch_slab, regmatch_slab *, NULL)
178PERLVAR(Tregmatch_state, regmatch_state *)
9f7da6d5 179
b37a2be9 180PERLVARI(Tdelayedisa, HV*, NULL) /* stash for PL_delaymagic for magic_setisa */
181
d95e864f 182/* Put anything new that is pointer aligned here. */
183
9f7da6d5 184PERLVAR(Tdelaymagic, U16) /* ($<,$>) = ... */
d95e864f 185PERLVAR(Tlocalizing, U8) /* are we processing a local() list? */
186PERLVAR(Tcolorset, bool) /* from regcomp.c */
9f7da6d5 187PERLVARI(Tdirty, bool, FALSE) /* in the middle of tearing things down? */
188PERLVAR(Tin_eval, VOL U8) /* trap "fatal" errors? */
189PERLVAR(Ttainted, bool) /* using variables controlled by $< */
d95e864f 190
b37a2be9 191/* Put new things UP THERE ^^^ */
192
193/* For historical reasons this file is followed by intrpvar.h in the
194 interpreter struct. As this file currently ends with 7 bytes of variables,
195 intrpvar.h starts with one single U8, to avoid structure padding space
196 wastage. */