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