This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Upgrade to threads 1.58:
[perl5.git] / thrdvar.h
... / ...
CommitLineData
1/* thdrvar.h
2 *
3 * Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
4 * by Larry Wall and others
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
11/*
12=head1 Global Variables
13*/
14
15/***********************************************/
16/* Global only to current thread */
17/***********************************************/
18
19/* Don't forget to re-run embed.pl to propagate changes! */
20
21/* The 'T' prefix is only needed for vars that need appropriate #defines
22 * generated when built with or without USE_5005THREADS. It is also used
23 * to generate the appropriate export list for win32.
24 *
25 * When building without USE_5005THREADS, these variables will be truly global.
26 * When building without USE_5005THREADS but with MULTIPLICITY, these variables
27 * will be global per-interpreter. */
28
29/* Important ones in the first cache line (if alignment is done right) */
30
31PERLVAR(Tstack_sp, SV **) /* top of the stack */
32#ifdef OP_IN_REGISTER
33PERLVAR(Topsave, OP *)
34#else
35PERLVAR(Top, OP *) /* currently executing op */
36#endif
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)
45
46PERLVAR(Tsavestack, ANY *) /* items that need to be restored
47 when LEAVEing scopes we've ENTERed */
48PERLVAR(Tsavestack_ix, I32)
49PERLVAR(Tsavestack_max, I32)
50
51PERLVAR(Ttmps_stack, SV **) /* mortals we've made */
52PERLVARI(Ttmps_ix, I32, -1)
53PERLVARI(Ttmps_floor, I32, -1)
54PERLVAR(Ttmps_max, I32)
55
56PERLVAR(Tmarkstack, I32 *) /* stack_sp locations we're remembering */
57PERLVAR(Tmarkstack_ptr, I32 *)
58PERLVAR(Tmarkstack_max, I32 *)
59
60PERLVAR(TSv, SV *) /* used to hold temporary values */
61PERLVAR(TXpv, XPV *) /* used to hold temporary values */
62
63/*
64=for apidoc Amn|STRLEN|PL_na
65
66A convenience variable which is typically used with C<SvPV> when one
67doesn't care about the length of the string. It is usually more efficient
68to either declare a local variable and use that instead or to use the
69C<SvPV_nolen> macro.
70
71=cut
72*/
73
74PERLVAR(Tna, STRLEN) /* for use in SvPV when length is
75 Not Applicable */
76
77/* stat stuff */
78PERLVAR(Tstatbuf, Stat_t)
79PERLVAR(Tstatcache, Stat_t) /* _ */
80PERLVAR(Tstatgv, GV *)
81PERLVARI(Tstatname, SV *, NULL)
82
83#ifdef HAS_TIMES
84PERLVAR(Ttimesbuf, struct tms)
85#endif
86
87/* Fields used by magic variables such as $@, $/ and so on */
88PERLVAR(Ttainted, bool) /* using variables controlled by $< */
89PERLVAR(Tcurpm, PMOP *) /* what to do \ interps in REs from */
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, const 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 U8) /* trap "fatal" errors? */
123PERLVAR(Tdelaymagic, U16) /* ($<,$>) = ... */
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 */
133PERLVARI(Terrors, SV *, NULL) /* outstanding queued errors */
134
135/* statics "owned" by various functions */
136PERLVAR(Tav_fetch_sv, SV *) /* unused as of change #19268 */
137PERLVAR(Thv_fetch_sv, SV *) /* unused as of change #19268 */
138PERLVAR(Thv_fetch_ent_mh, HE*) /* owned by hv_fetch_ent() */
139
140PERLVAR(Tmodcount, I32) /* how much mod()ification in assignment? */
141
142PERLVAR(Tlastgotoprobe, OP*) /* from pp_ctl.c */
143PERLVARI(Tdumpindent, I32, 4) /* # of blanks per dump indentation level */
144
145/* sort stuff */
146PERLVAR(Tsortcop, OP *) /* user defined sort routine */
147PERLVAR(Tsortstash, HV *) /* which is in some package or other */
148PERLVAR(Tfirstgv, GV *) /* $a */
149PERLVAR(Tsecondgv, GV *) /* $b */
150
151/* float buffer */
152PERLVAR(Tefloatbuf, char*)
153PERLVAR(Tefloatsize, STRLEN)
154
155/* regex stuff */
156
157PERLVAR(Tscreamfirst, I32 *)
158PERLVAR(Tscreamnext, I32 *)
159PERLVARI(Tmaxscream, I32, -1)
160PERLVAR(Tlastscream, SV *)
161
162PERLVAR(Treg_state, struct re_save_state)
163PERLVAR(Tregdummy, regnode) /* from regcomp.c */
164PERLVAR(Tcolorset, int) /* from regcomp.c */
165PERLVARA(Tcolors,6, char *) /* from regcomp.c */
166
167PERLVARI(Tpeepp, peep_t, MEMBER_TO_FPTR(Perl_peep))
168 /* Pointer to peephole optimizer */
169
170PERLVARI(Treginterp_cnt,int, 0) /* Whether "Regexp" was interpolated. */
171PERLVARI(Twatchaddr, char **, 0)
172PERLVAR(Twatchok, char *)
173
174/* Note that the variables below are all explicitly referenced in the code
175 * as thr->whatever and therefore don't need the 'T' prefix. */
176
177/* the currently active slab in a chain of slabs of regmatch states,
178 * and the currently active state within that slab */
179
180PERLVARI(Tregmatch_slab, regmatch_slab *, NULL)
181PERLVAR(Tregmatch_state, regmatch_state *)