Commit | Line | Data |
---|---|---|
d6376244 JH |
1 | /* thdrvar.h |
2 | * | |
1d325971 | 3 | * Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 by Larry Wall and others |
d6376244 JH |
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 | 30 | PERLVAR(Tstack_sp, SV **) /* top of the stack */ |
49f531da | 31 | #ifdef OP_IN_REGISTER |
cb68f92d | 32 | PERLVAR(Topsave, OP *) |
49f531da | 33 | #else |
cb68f92d | 34 | PERLVAR(Top, OP *) /* currently executing op */ |
49f531da | 35 | #endif |
cb68f92d GS |
36 | PERLVAR(Tcurpad, SV **) /* active pad (lexicals+tmps) */ |
37 | ||
38 | PERLVAR(Tstack_base, SV **) | |
39 | PERLVAR(Tstack_max, SV **) | |
40 | ||
41 | PERLVAR(Tscopestack, I32 *) /* scopes we've ENTERed */ | |
42 | PERLVAR(Tscopestack_ix, I32) | |
43 | PERLVAR(Tscopestack_max,I32) | |
49f531da | 44 | |
cb68f92d GS |
45 | PERLVAR(Tsavestack, ANY *) /* items that need to be restored |
46 | when LEAVEing scopes we've ENTERed */ | |
47 | PERLVAR(Tsavestack_ix, I32) | |
48 | PERLVAR(Tsavestack_max, I32) | |
49f531da | 49 | |
cb68f92d GS |
50 | PERLVAR(Ttmps_stack, SV **) /* mortals we've made */ |
51 | PERLVARI(Ttmps_ix, I32, -1) | |
52 | PERLVARI(Ttmps_floor, I32, -1) | |
53 | PERLVAR(Ttmps_max, I32) | |
49f531da | 54 | |
cb68f92d GS |
55 | PERLVAR(Tmarkstack, I32 *) /* stack_sp locations we're remembering */ |
56 | PERLVAR(Tmarkstack_ptr, I32 *) | |
57 | PERLVAR(Tmarkstack_max, I32 *) | |
49f531da | 58 | |
cb68f92d GS |
59 | PERLVAR(TSv, SV *) /* used to hold temporary values */ |
60 | PERLVAR(TXpv, XPV *) /* used to hold temporary values */ | |
954c1994 GS |
61 | |
62 | /* | |
63 | =for apidoc Amn|STRLEN|PL_na | |
64 | ||
65 | A convenience variable which is typically used with C<SvPV> when one | |
66 | doesn't care about the length of the string. It is usually more efficient | |
67 | to either declare a local variable and use that instead or to use the | |
68 | C<SvPV_nolen> macro. | |
69 | ||
70 | =cut | |
71 | */ | |
72 | ||
b099ddc0 GS |
73 | PERLVAR(Tna, STRLEN) /* for use in SvPV when length is |
74 | Not Applicable */ | |
49f531da | 75 | |
5c0ca799 | 76 | /* stat stuff */ |
cb68f92d | 77 | PERLVAR(Tstatbuf, Stat_t) |
5c0ca799 GS |
78 | PERLVAR(Tstatcache, Stat_t) /* _ */ |
79 | PERLVAR(Tstatgv, GV *) | |
a0714e2c | 80 | PERLVARI(Tstatname, SV *, NULL) |
5c0ca799 | 81 | |
49f531da | 82 | #ifdef HAS_TIMES |
cb68f92d | 83 | PERLVAR(Ttimesbuf, struct tms) |
49f531da | 84 | #endif |
49f531da NIS |
85 | |
86 | /* Fields used by magic variables such as $@, $/ and so on */ | |
d4cce5f1 | 87 | PERLVAR(Ttainted, bool) /* using variables controlled by $< */ |
cb68f92d | 88 | PERLVAR(Tcurpm, PMOP *) /* what to do \ interps in REs from */ |
ed252734 | 89 | PERLVAR(Tnrs, SV *) /* was placeholder: unused since 5.8.0 (5.7.2 patch #12027 for bug ID 20010815.012). Used to save rx->saved_copy */ |
c155e47c SC |
90 | |
91 | /* | |
2eb25c99 | 92 | =for apidoc mn|SV*|PL_rs |
c155e47c SC |
93 | |
94 | The input record separator - C<$/> in Perl space. | |
95 | ||
2eb25c99 | 96 | =for apidoc mn|GV*|PL_last_in_gv |
c155e47c SC |
97 | |
98 | The GV which was last used for a filehandle input operation. (C<< <FH> >>) | |
99 | ||
2eb25c99 | 100 | =for apidoc mn|SV*|PL_ofs_sv |
c155e47c SC |
101 | |
102 | The output field separator - C<$,> in Perl space. | |
103 | ||
104 | =cut | |
105 | */ | |
106 | ||
cb68f92d GS |
107 | PERLVAR(Trs, SV *) /* input record separator $/ */ |
108 | PERLVAR(Tlast_in_gv, GV *) /* GV used in last <FH> */ | |
7889fe52 | 109 | PERLVAR(Tofs_sv, SV *) /* output field separator $, */ |
cb68f92d | 110 | PERLVAR(Tdefoutgv, GV *) /* default FH for output */ |
dd374669 | 111 | PERLVARI(Tchopset, const char *, " \n-") /* $: */ |
cb68f92d GS |
112 | PERLVAR(Tformtarget, SV *) |
113 | PERLVAR(Tbodytarget, SV *) | |
114 | PERLVAR(Ttoptarget, SV *) | |
49f531da | 115 | |
d4cce5f1 NIS |
116 | /* Stashes */ |
117 | PERLVAR(Tdefstash, HV *) /* main symbol table */ | |
118 | PERLVAR(Tcurstash, HV *) /* symbol table for current package */ | |
49f531da | 119 | |
cb68f92d | 120 | PERLVAR(Trestartop, OP *) /* propagating an error from croak? */ |
3280af22 | 121 | PERLVARI(Tcurcop, COP * VOL, &PL_compiling) |
d4cce5f1 NIS |
122 | PERLVAR(Tin_eval, VOL int) /* trap "fatal" errors? */ |
123 | PERLVAR(Tdelaymagic, int) /* ($<,$>) = ... */ | |
24d3c518 | 124 | PERLVARI(Tdirty, bool, FALSE) /* in the middle of tearing things down? */ |
61bb5906 | 125 | PERLVAR(Tlocalizing, int) /* are we processing a local() list? */ |
49f531da | 126 | |
cb68f92d GS |
127 | PERLVAR(Tcurstack, AV *) /* THE STACK */ |
128 | PERLVAR(Tcurstackinfo, PERL_SI *) /* current stack + context */ | |
129 | PERLVAR(Tmainstack, AV *) /* the stack when nothing funny is happening */ | |
312caa8e | 130 | |
cb68f92d GS |
131 | PERLVAR(Ttop_env, JMPENV *) /* ptr. to current sigjmp() environment */ |
132 | PERLVAR(Tstart_env, JMPENV) /* empty startup sigjmp() environment */ | |
a0714e2c | 133 | PERLVARI(Terrors, SV *, NULL) /* outstanding queued errors */ |
49f531da | 134 | |
4e4c362e | 135 | /* statics "owned" by various functions */ |
195c09c3 JH |
136 | PERLVAR(Tav_fetch_sv, SV *) /* unused as of change #19268 */ |
137 | PERLVAR(Thv_fetch_sv, SV *) /* unused as of change #19268 */ | |
dd28f7bb | 138 | PERLVAR(Thv_fetch_ent_mh, HE*) /* owned by hv_fetch_ent() */ |
cb68f92d GS |
139 | |
140 | PERLVAR(Tmodcount, I32) /* how much mod()ification in assignment? */ | |
4e4c362e | 141 | |
5c0ca799 | 142 | PERLVAR(Tlastgotoprobe, OP*) /* from pp_ctl.c */ |
3967c732 | 143 | PERLVARI(Tdumpindent, I32, 4) /* # of blanks per dump indentation level */ |
5c0ca799 GS |
144 | |
145 | /* sort stuff */ | |
146 | PERLVAR(Tsortcop, OP *) /* user defined sort routine */ | |
147 | PERLVAR(Tsortstash, HV *) /* which is in some package or other */ | |
148 | PERLVAR(Tfirstgv, GV *) /* $a */ | |
149 | PERLVAR(Tsecondgv, GV *) /* $b */ | |
5c0ca799 | 150 | |
7d5ea4e7 GS |
151 | /* float buffer */ |
152 | PERLVAR(Tefloatbuf, char*) | |
153 | PERLVAR(Tefloatsize, STRLEN) | |
154 | ||
5c0ca799 GS |
155 | /* regex stuff */ |
156 | ||
157 | PERLVAR(Tscreamfirst, I32 *) | |
158 | PERLVAR(Tscreamnext, I32 *) | |
159 | PERLVARI(Tmaxscream, I32, -1) | |
160 | PERLVAR(Tlastscream, SV *) | |
161 | ||
162 | PERLVAR(Tregdummy, regnode) /* from regcomp.c */ | |
5c0ca799 GS |
163 | PERLVAR(Tregprecomp, char *) /* uncompiled string. */ |
164 | PERLVAR(Tregnpar, I32) /* () count. */ | |
165 | PERLVAR(Tregsize, I32) /* Code size. */ | |
5c0ca799 | 166 | PERLVAR(Tcolorset, int) /* from regcomp.c */ |
51371543 | 167 | PERLVARA(Tcolors,6, char *) /* from regcomp.c */ |
5c0ca799 GS |
168 | PERLVAR(Treginput, char *) /* String-input pointer. */ |
169 | PERLVAR(Tregbol, char *) /* Beginning of input, for ^ check. */ | |
170 | PERLVAR(Tregeol, char *) /* End of input, for $ check. */ | |
cf93c79d IZ |
171 | PERLVAR(Tregstartp, I32 *) /* Pointer to startp array. */ |
172 | PERLVAR(Tregendp, I32 *) /* Ditto for endp. */ | |
5c0ca799 | 173 | PERLVAR(Treglastparen, U32 *) /* Similarly for lastparen. */ |
a01268b5 | 174 | PERLVAR(Treglastcloseparen, U32 *) /* Similarly for lastcloseparen. */ |
5c0ca799 | 175 | PERLVAR(Tregtill, char *) /* How far we are required to go. */ |
5c0ca799 GS |
176 | PERLVAR(Treg_start_tmp, char **) /* from regexec.c */ |
177 | PERLVAR(Treg_start_tmpl,U32) /* from regexec.c */ | |
178 | PERLVAR(Tregdata, struct reg_data *) | |
179 | /* from regexec.c renamed was data */ | |
180 | PERLVAR(Tbostr, char *) /* from regexec.c */ | |
181 | PERLVAR(Treg_flags, U32) /* from regexec.c */ | |
182 | PERLVAR(Treg_eval_set, I32) /* from regexec.c */ | |
183 | PERLVAR(Tregnarrate, I32) /* from regexec.c */ | |
184 | PERLVAR(Tregprogram, regnode *) /* from regexec.c */ | |
185 | PERLVARI(Tregindent, int, 0) /* from regexec.c */ | |
186 | PERLVAR(Tregcc, CURCUR *) /* from regexec.c */ | |
0f5d15d6 IZ |
187 | PERLVAR(Treg_call_cc, struct re_cc_state *) /* from regexec.c */ |
188 | PERLVAR(Treg_re, regexp *) /* from regexec.c */ | |
22e551b9 IZ |
189 | PERLVAR(Treg_ganch, char *) /* position of \G */ |
190 | PERLVAR(Treg_sv, SV *) /* what we match against */ | |
9661b544 IZ |
191 | PERLVAR(Treg_magic, MAGIC *) /* pos-magic of what we match */ |
192 | PERLVAR(Treg_oldpos, I32) /* old pos of what we match */ | |
5c5e4c24 IZ |
193 | PERLVARI(Treg_oldcurpm, PMOP*, NULL) /* curpm before match */ |
194 | PERLVARI(Treg_curpm, PMOP*, NULL) /* curpm during match */ | |
cf93c79d IZ |
195 | PERLVAR(Treg_oldsaved, char*) /* old saved substr during match */ |
196 | PERLVAR(Treg_oldsavedlen, STRLEN) /* old length of saved substr during match */ | |
82ba1be6 IZ |
197 | PERLVAR(Treg_maxiter, I32) /* max wait until caching pos */ |
198 | PERLVAR(Treg_leftiter, I32) /* wait until caching pos */ | |
bd61b366 | 199 | PERLVARI(Treg_poscache, char *, NULL) /* cache of pos of WHILEM */ |
82ba1be6 | 200 | PERLVAR(Treg_poscache_size, STRLEN) /* size of pos cache of WHILEM */ |
5c0ca799 | 201 | |
a2efc822 SC |
202 | PERLVARI(Tpeepp, peep_t, MEMBER_TO_FPTR(Perl_peep)) |
203 | /* Pointer to peephole optimizer */ | |
0b94c7bb | 204 | PERLVARI(Tregcompp, regcomp_t, MEMBER_TO_FPTR(Perl_pregcomp)) |
f722798b | 205 | /* Pointer to REx compiler */ |
0b94c7bb | 206 | PERLVARI(Tregexecp, regexec_t, MEMBER_TO_FPTR(Perl_regexec_flags)) |
f722798b | 207 | /* Pointer to REx executer */ |
0b94c7bb | 208 | PERLVARI(Tregint_start, re_intuit_start_t, MEMBER_TO_FPTR(Perl_re_intuit_start)) |
f722798b | 209 | /* Pointer to optimized REx executer */ |
0b94c7bb | 210 | PERLVARI(Tregint_string,re_intuit_string_t, MEMBER_TO_FPTR(Perl_re_intuit_string)) |
f722798b | 211 | /* Pointer to optimized REx string */ |
0b94c7bb | 212 | PERLVARI(Tregfree, regfree_t, MEMBER_TO_FPTR(Perl_pregfree)) |
f722798b IZ |
213 | /* Pointer to REx free()er */ |
214 | ||
a0288114 | 215 | PERLVARI(Treginterp_cnt,int, 0) /* Whether "Regexp" was interpolated. */ |
364723c2 | 216 | PERLVARI(Treg_starttry, char *, 0) /* -Dr: where regtry was called. */ |
22c35a8c GS |
217 | PERLVARI(Twatchaddr, char **, 0) |
218 | PERLVAR(Twatchok, char *) | |
d4cce5f1 | 219 | |
8b3be1d1 | 220 | /* Note that the variables below are all explicitly referenced in the code |
cb68f92d | 221 | * as thr->whatever and therefore don't need the 'T' prefix. */ |
8b3be1d1 | 222 | |
53c4c00c | 223 | PERLVAR(Treg_match_utf8, bool) /* was what we matched against utf8 */ |
d9f424b2 | 224 |