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