This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perl5380delta: a messy commit to get things started
[perl5.git] / intrpvar.h
CommitLineData
907b3e23
DM
1/* intrpvar.h
2 *
3 * Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
1129b882 4 * 2006, 2007, 2008 by Larry Wall and others
907b3e23
DM
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
e3d474b7
KW
11#include "handy.h"
12
907b3e23
DM
13/* These variables are per-interpreter in threaded/multiplicity builds,
14 * global otherwise.
15
d7cb65f2 16 * Don't forget to re-run regen/embed.pl to propagate changes! */
cb68f92d 17
ab686ae8 18/* New variables must be added to the very end for binary compatibility. */
6537fe72 19
b8393ac7 20/* DON'T FORGET to add your variable also to perl_clone()! (in sv.c) */
02506efe 21
cb68f92d
GS
22/* The 'I' prefix is only needed for vars that need appropriate #defines
23 * generated when built with or without MULTIPLICITY. It is also used
97df044c
KW
24 * to generate the appropriate export list for win32. If the variable
25 * needs to be initialized, use PERLVARI.
cb68f92d 26 *
907b3e23
DM
27 * When building without MULTIPLICITY, these variables will be truly global.
28 *
29 * Important ones in the first cache line (if alignment is done right) */
30
115ff745 31PERLVAR(I, stack_sp, SV **) /* top of the stack */
115ff745 32PERLVAR(I, op, OP *) /* currently executing op */
115ff745 33PERLVAR(I, curpad, SV **) /* active pad (lexicals+tmps) */
907b3e23 34
115ff745
NC
35PERLVAR(I, stack_base, SV **)
36PERLVAR(I, stack_max, SV **)
907b3e23 37
115ff745 38PERLVAR(I, savestack, ANY *) /* items that need to be restored when
1604cfb0 39 LEAVEing scopes we've ENTERed */
115ff745
NC
40PERLVAR(I, savestack_ix, I32)
41PERLVAR(I, savestack_max, I32)
42
19bc2726
DM
43PERLVAR(I, scopestack, I32 *) /* scopes we've ENTERed */
44PERLVAR(I, scopestack_ix, I32)
45PERLVAR(I, scopestack_max, I32)
46
115ff745 47PERLVAR(I, tmps_stack, SV **) /* mortals we've made */
e8eb279c
FC
48PERLVARI(I, tmps_ix, SSize_t, -1)
49PERLVARI(I, tmps_floor, SSize_t, -1)
ba367634 50PERLVAR(I, tmps_max, SSize_t) /* first unalloced slot in tmps stack */
19bc2726 51
115ff745 52PERLVAR(I, markstack, I32 *) /* stack_sp locations we're
1604cfb0 53 remembering */
115ff745
NC
54PERLVAR(I, markstack_ptr, I32 *)
55PERLVAR(I, markstack_max, I32 *)
907b3e23 56
63251dfc
RL
57PERLVARI(I, sub_generation, U32, 1) /* incr to invalidate method cache */
58
6a5b4183
YO
59#ifdef PERL_HASH_RANDOMIZE_KEYS
60#ifdef USE_PERL_PERTURB_KEYS
532aec67
YO
61PERLVARI(I, hash_rand_bits_enabled, U8, 1) /* used to randomize hash stuff
62 0. no-random
63 1. random
9f0a6a7f 64 2. deterministic */
6a5b4183 65#endif
0e0ab621 66PERLVARI(I, hash_rand_bits, UV, 0) /* used to randomize hash stuff */
6a5b4183 67#endif
19bc2726 68PERLVAR(I, strtab, HV *) /* shared string table */
fedf30e1
DM
69/* prog counter for the currently executing OP_MULTIDEREF Used to signal
70 * to S_find_uninit_var() where we are */
71PERLVAR(I, multideref_pc, UNOP_AUX_item *)
19bc2726
DM
72
73/* Fields used by magic variables such as $@, $/ and so on */
74PERLVAR(I, curpm, PMOP *) /* what to do \ interps in REs from */
5585e758 75PERLVAR(I, curpm_under, PMOP *) /* what to do \ interps in REs from */
19bc2726 76
bc2f1ca1 77PERLVAR(I, tainting, bool) /* ? doing taint checks */
d48c660d 78PERLVARI(I, tainted, bool, FALSE) /* using variables controlled by $< */
a68090fe
DM
79
80/* PL_delaymagic is currently used for two purposes: to assure simultaneous
81 * updates in ($<,$>) = ..., and to assure atomic update in push/unshift
82 * @ISA, It works like this: a few places such as pp_push set the DM_DELAY
83 * flag; then various places such as av_store() skip mg_set(ary) if this
84 * flag is set, and various magic vtable methods set flags like
85 * DM_ARRAY_ISA if they've seen something of that ilk. Finally when
86 * control returns to pp_push or whatever, it sees if any of those flags
87 * have been set, and if so finally calls mg_set().
88 *
a8c38aeb 89 * NB: PL_delaymagic is automatically saved and restored by JMPENV_PUSH
a68090fe
DM
90 * / POP. This removes the need to do ENTER/SAVEI16(PL_delaymagic)/LEAVE
91 * in hot code like pp_push.
92 */
19bc2726 93PERLVAR(I, delaymagic, U16) /* ($<,$>) = ... */
a68090fe 94
1172c104 95/*
168f9cb8 96=for apidoc_section $warning
b5282d7c 97=for apidoc mn|U8|PL_dowarn
19bc2726 98
b5282d7c
AC
99The C variable that roughly corresponds to Perl's C<$^W> warning variable.
100However, C<$^W> is treated as a boolean, whereas C<PL_dowarn> is a
101collection of flag bits.
19bc2726 102
168f9cb8
KW
103On threaded perls, each thread has an independent copy of this variable;
104each initialized at creation time with the current value of the creating
105thread's copy.
106
19bc2726
DM
107=cut
108*/
109
110PERLVAR(I, dowarn, U8)
111
112#if defined (PERL_UTF8_CACHE_ASSERT) || defined (DEBUGGING)
113# define PERL___I -1
114#else
115# define PERL___I 1
116#endif
117PERLVARI(I, utf8cache, I8, PERL___I) /* Is the utf8 caching code enabled? */
118#undef PERL___I
119
c07b34e4 120/*
70d9008d 121=for apidoc_section $GV
63251dfc
RL
122=for apidoc Amn|GV *|PL_defgv
123
124The GV representing C<*_>. Useful for access to C<$_>.
125
36f453d1
KW
126On threaded perls, each thread has an independent copy of this variable;
127each initialized at creation time with the current value of the creating
128thread's copy.
129
63251dfc
RL
130=cut
131*/
132
93f6f965
YO
133PERLVAR(I, localizing, U8) /* are we processing a local() list?
134 0 = no, 1 = localizing, 2 = delocalizing */
63251dfc
RL
135PERLVAR(I, in_eval, U8) /* trap "fatal" errors? */
136PERLVAR(I, defgv, GV *) /* the *_ glob */
137
138/*
70d9008d 139=for apidoc_section $GV
c07b34e4
TC
140=for apidoc Amn|HV*|PL_curstash
141
142The stash for the package code will be compiled into.
143
36f453d1
KW
144On threaded perls, each thread has an independent copy of this variable;
145each initialized at creation time with the current value of the creating
146thread's copy.
147
c07b34e4
TC
148=cut
149*/
19bc2726
DM
150
151/* Stashes */
152PERLVAR(I, defstash, HV *) /* main symbol table */
153PERLVAR(I, curstash, HV *) /* symbol table for current package */
154
20fbb8c2 155/*
70d9008d 156=for apidoc_section $COP
20fbb8c2
TC
157=for apidoc Amn|COP*|PL_curcop
158
159The currently active COP (control op) roughly representing the current
160statement in the source.
161
36f453d1
KW
162On threaded perls, each thread has an independent copy of this variable;
163each initialized at creation time with the current value of the creating
164thread's copy.
165
20fbb8c2
TC
166=cut
167*/
168
19bc2726
DM
169PERLVAR(I, curcop, COP *)
170PERLVAR(I, curstack, AV *) /* THE STACK */
171PERLVAR(I, curstackinfo, PERL_SI *) /* current stack + context */
172PERLVAR(I, mainstack, AV *) /* the stack when nothing funny is
1604cfb0 173 happening */
19bc2726
DM
174
175/* memory management */
176PERLVAR(I, sv_count, IV) /* how many SV* are currently allocated */
19bc2726
DM
177
178PERLVAR(I, sv_root, SV *) /* storage for SVs belonging to interp */
179PERLVAR(I, sv_arenaroot, SV *) /* list of areas for garbage collection */
180
f65e70f5
DM
181/* fake PMOP that PL_curpm points to while in (?{}) so $1 et al are visible */
182PERLVARI(I, reg_curpm, PMOP*, NULL)
183
19bc2726 184/* the currently active slab in a chain of slabs of regmatch states,
87c1d905
DM
185 * and the currently active state within that slab. This stack of states
186 * is shared amongst re-entrant calls to the regex engine */
19bc2726
DM
187
188PERLVARI(I, regmatch_slab, regmatch_slab *, NULL)
189PERLVAR(I, regmatch_state, regmatch_state *)
190
191PERLVAR(I, comppad, PAD *) /* storage for lexically scoped temporaries */
192
193/*
36f453d1 194=for apidoc_section $SV
19bc2726 195=for apidoc Amn|SV|PL_sv_undef
24d9bd5f
KW
196This is the C<undef> SV. It is readonly. Always refer to this as
197C<&PL_sv_undef>.
19bc2726
DM
198
199=for apidoc Amn|SV|PL_sv_no
24d9bd5f
KW
200This is the C<false> SV. It is readonly. See C<L</PL_sv_yes>>. Always refer
201to this as C<&PL_sv_no>.
19bc2726
DM
202
203=for apidoc Amn|SV|PL_sv_yes
24d9bd5f
KW
204This is the C<true> SV. It is readonly. See C<L</PL_sv_no>>. Always refer to
205this as C<&PL_sv_yes>.
19bc2726 206
5a6c2837
DM
207=for apidoc Amn|SV|PL_sv_zero
208This readonly SV has a zero numeric value and a C<"0"> string value. It's
209similar to C<L</PL_sv_no>> except for its string value. Can be used as a
210cheap alternative to C<mXPUSHi(0)> for example. Always refer to this as
211C<&PL_sv_zero>. Introduced in 5.28.
212
19bc2726
DM
213=cut
214*/
215
7c123f9d
DM
216#ifdef MULTIPLICITY
217PERLVAR(I, sv_yes, SV)
19bc2726
DM
218PERLVAR(I, sv_undef, SV)
219PERLVAR(I, sv_no, SV)
5a6c2837 220PERLVAR(I, sv_zero, SV)
7c123f9d
DM
221#else
222/* store the immortals as an array to ensure they are contiguous in
223 * memory: makes SvIMMORTAL_INTERP(sv) possible */
224PERLVARA(I, sv_immortals, 4, SV)
225#endif
5a6c2837 226
12d375ea
FC
227PERLVAR(I, padname_undef, PADNAME)
228PERLVAR(I, padname_const, PADNAME)
0bfb4683
KW
229
230/*
70d9008d 231=for apidoc_section $SV
0bfb4683
KW
232=for apidoc Cmn||PL_Sv
233
234A scratch pad SV for whatever temporary use you need. Chiefly used as a
235fallback by macros on platforms where L<perlapi/PERL_USE_GCC_BRACE_GROUPS>> is
758221d1
KW
236unavailable, and which would otherwise evaluate their SV parameter more than
237once.
0bfb4683 238
69f5275d
KW
239B<BUT BEWARE>, if this is used in a situation where something that is using it
240is in a call stack with something else that is using it, this variable would
241get zapped, leading to hard-to-diagnose errors.
242
0bfb4683
KW
243=cut
244*/
245PERLVAR(I, Sv, SV *)
246
19bc2726
DM
247PERLVAR(I, parser, yy_parser *) /* current parser state */
248
249PERLVAR(I, stashcache, HV *) /* Cache to speed up S_method_common */
250
907b3e23
DM
251
252/*
70d9008d 253=for apidoc_section $string
907b3e23
DM
254=for apidoc Amn|STRLEN|PL_na
255
714a0a85
KW
256A scratch pad variable in which to store a C<STRLEN> value. If would have been
257better named something like C<PL_temp_strlen>.
258
259It is is typically used with C<SvPV> when one is actually planning to discard
260the returned length, (hence the length is "Not Applicable", which is how this
261variable got its name).
262
69f5275d
KW
263B<BUT BEWARE>, if this is used in a situation where something that is using it
264is in a call stack with something else that is using it, this variable would
265get zapped, leading to hard-to-diagnose errors.
266
714a0a85
KW
267It is usually more efficient to either declare a local variable and use that
268instead, or to use the C<SvPV_nolen> macro.
907b3e23
DM
269
270=cut
271*/
272
115ff745 273PERLVAR(I, na, STRLEN) /* for use in SvPV when length is
1604cfb0 274 Not Applicable */
907b3e23
DM
275
276/* stat stuff */
115ff745
NC
277PERLVAR(I, statcache, Stat_t) /* _ */
278PERLVAR(I, statgv, GV *)
279PERLVARI(I, statname, SV *, NULL)
907b3e23 280
907b3e23 281/*
36f453d1 282=for apidoc_section $io
907b3e23
DM
283=for apidoc mn|SV*|PL_rs
284
285The input record separator - C<$/> in Perl space.
286
36f453d1
KW
287On threaded perls, each thread has an independent copy of this variable;
288each initialized at creation time with the current value of the creating
289thread's copy.
290
70d9008d 291=for apidoc_section $io
907b3e23
DM
292=for apidoc mn|GV*|PL_last_in_gv
293
154e47c8 294The GV which was last used for a filehandle input operation. (C<< <FH> >>)
907b3e23 295
36f453d1
KW
296On threaded perls, each thread has an independent copy of this variable;
297each initialized at creation time with the current value of the creating
298thread's copy.
299
70d9008d 300=for apidoc_section $io
e23d9e2f 301=for apidoc mn|GV*|PL_ofsgv
907b3e23 302
e23d9e2f 303The glob containing the output field separator - C<*,> in Perl space.
907b3e23 304
36f453d1
KW
305On threaded perls, each thread has an independent copy of this variable;
306each initialized at creation time with the current value of the creating
307thread's copy.
308
907b3e23
DM
309=cut
310*/
311
115ff745
NC
312PERLVAR(I, rs, SV *) /* input record separator $/ */
313PERLVAR(I, last_in_gv, GV *) /* GV used in last <FH> */
314PERLVAR(I, ofsgv, GV *) /* GV of output field separator *, */
315PERLVAR(I, defoutgv, GV *) /* default FH for output */
316PERLVARI(I, chopset, const char *, " \n-") /* $: */
317PERLVAR(I, formtarget, SV *)
318PERLVAR(I, bodytarget, SV *)
319PERLVAR(I, toptarget, SV *)
907b3e23 320
115ff745
NC
321
322PERLVAR(I, restartop, OP *) /* propagating an error from croak? */
323PERLVAR(I, restartjmpenv, JMPENV *) /* target frame for longjmp in die */
907b3e23 324
115ff745
NC
325PERLVAR(I, top_env, JMPENV *) /* ptr to current sigjmp environment */
326PERLVAR(I, start_env, JMPENV) /* empty startup sigjmp environment */
327PERLVARI(I, errors, SV *, NULL) /* outstanding queued errors */
907b3e23
DM
328
329/* statics "owned" by various functions */
115ff745 330PERLVAR(I, hv_fetch_ent_mh, HE*) /* owned by hv_fetch_ent() */
907b3e23 331
115ff745 332PERLVAR(I, lastgotoprobe, OP*) /* from pp_ctl.c */
907b3e23
DM
333
334/* sort stuff */
115ff745
NC
335PERLVAR(I, sortcop, OP *) /* user defined sort routine */
336PERLVAR(I, sortstash, HV *) /* which is in some package or other */
337PERLVAR(I, firstgv, GV *) /* $a */
338PERLVAR(I, secondgv, GV *) /* $b */
907b3e23
DM
339
340/* float buffer */
115ff745
NC
341PERLVAR(I, efloatbuf, char *)
342PERLVAR(I, efloatsize, STRLEN)
907b3e23 343
115ff745 344PERLVARI(I, dumpindent, U16, 4) /* number of blanks per dump
1604cfb0 345 indentation level */
907b3e23 346
7b93aae2 347/*
36f453d1 348=for apidoc_section $embedding
7b93aae2
TC
349=for apidoc Amn|U8|PL_exit_flags
350
351Contains flags controlling perl's behaviour on exit():
352
353=over
354
355=item * C<PERL_EXIT_DESTRUCT_END>
356
357If set, END blocks are executed when the interpreter is destroyed.
358This is normally set by perl itself after the interpreter is
359constructed.
360
361=item * C<PERL_EXIT_ABORT>
362
363Call C<abort()> on exit. This is used internally by perl itself to
364abort if exit is called while processing exit.
365
366=item * C<PERL_EXIT_WARN>
367
368Warn on exit.
369
370=item * C<PERL_EXIT_EXPECTED>
371
372Set by the L<perlfunc/exit> operator.
373
374=back
375
5af38e47
KW
376=for apidoc Amnh||PERL_EXIT_EXPECTED
377=for apidoc Amnh||PERL_EXIT_ABORT
378=for apidoc Amnh||PERL_EXIT_DESTRUCT_END
379=for apidoc Amnh||PERL_EXIT_WARN
380
36f453d1
KW
381On threaded perls, each thread has an independent copy of this variable;
382each initialized at creation time with the current value of the creating
383thread's copy.
384
7b93aae2
TC
385=cut
386*/
387
e914d9bb 388PERLVAR(I, exit_flags, U8) /* was exit() unexpected, etc. */
157b3822 389
115ff745 390PERLVAR(I, utf8locale, bool) /* utf8 locale detected */
3ce78f6a 391
da1b79a9
KW
392#if defined(USE_LOCALE) && defined(USE_LOCALE_THREADS)
393PERLVARI(I, locale_mutex_depth, int, 0) /* Emulate general semaphore */
394#endif
47280b20 395
5b7de470 396#ifdef USE_LOCALE_CTYPE
3ce78f6a 397PERLVAR(I, warn_locale, SV *)
b41c5839
KW
398PERLVAR(I, in_utf8_CTYPE_locale, bool)
399PERLVAR(I, in_utf8_turkic_locale, bool)
f41910bf 400#endif
907b3e23 401
87c1d905 402PERLVARA(I, colors,6, char *) /* values from PERL_RE_COLORS env var */
907b3e23 403
9ea12537 404/*
36f453d1 405=for apidoc_section $optree_construction
9ea12537
Z
406=for apidoc Amn|peep_t|PL_peepp
407
408Pointer to the per-subroutine peephole optimiser. This is a function
409that gets called at the end of compilation of a Perl subroutine (or
410equivalently independent piece of Perl code) to perform fixups of
411some ops and to perform small-scale optimisations. The function is
412called once for each subroutine that is compiled, and is passed, as sole
413parameter, a pointer to the op that is the entry point to the subroutine.
414It modifies the op tree in place.
415
416The peephole optimiser should never be completely replaced. Rather,
417add code to it by wrapping the existing optimiser. The basic way to do
418this can be seen in L<perlguts/Compile pass 3: peephole optimization>.
419If the new code wishes to operate on ops throughout the subroutine's
420structure, rather than just at the top level, it is likely to be more
421convenient to wrap the L</PL_rpeepp> hook.
422
36f453d1
KW
423On threaded perls, each thread has an independent copy of this variable;
424each initialized at creation time with the current value of the creating
425thread's copy.
426
9ea12537
Z
427=cut
428*/
429
115ff745 430PERLVARI(I, peepp, peep_t, Perl_peep)
9ea12537
Z
431
432/*
70d9008d 433=for apidoc_section $optree_construction
9ea12537
Z
434=for apidoc Amn|peep_t|PL_rpeepp
435
436Pointer to the recursive peephole optimiser. This is a function
437that gets called at the end of compilation of a Perl subroutine (or
438equivalently independent piece of Perl code) to perform fixups of some
439ops and to perform small-scale optimisations. The function is called
440once for each chain of ops linked through their C<op_next> fields;
441it is recursively called to handle each side chain. It is passed, as
442sole parameter, a pointer to the op that is at the head of the chain.
443It modifies the op tree in place.
444
445The peephole optimiser should never be completely replaced. Rather,
446add code to it by wrapping the existing optimiser. The basic way to do
447this can be seen in L<perlguts/Compile pass 3: peephole optimization>.
448If the new code wishes to operate only on ops at a subroutine's top level,
449rather than throughout the structure, it is likely to be more convenient
450to wrap the L</PL_peepp> hook.
451
36f453d1
KW
452On threaded perls, each thread has an independent copy of this variable;
453each initialized at creation time with the current value of the creating
454thread's copy.
455
9ea12537
Z
456=cut
457*/
458
115ff745 459PERLVARI(I, rpeepp, peep_t, Perl_rpeep)
907b3e23 460
2f175318 461/*
70d9008d 462=for apidoc_section $optrees
2f175318
VP
463=for apidoc Amn|Perl_ophook_t|PL_opfreehook
464
465When non-C<NULL>, the function pointed by this variable will be called each time an OP is freed with the corresponding OP as the argument.
466This allows extensions to free any extra attribute they have locally attached to an OP.
467It is also assured to first fire for the parent OP and then for its kids.
468
469When you replace this variable, it is considered a good practice to store the possibly previously installed hook and that you recall it inside your own.
470
36f453d1
KW
471On threaded perls, each thread has an independent copy of this variable;
472each initialized at creation time with the current value of the creating
473thread's copy.
474
2f175318
VP
475=cut
476*/
477
115ff745 478PERLVARI(I, opfreehook, Perl_ophook_t, 0) /* op_free() hook */
f37b8c3f 479
115ff745
NC
480PERLVARI(I, watchaddr, char **, 0)
481PERLVAR(I, watchok, char *)
907b3e23 482
115ff745 483PERLVAR(I, perldb, U32)
d95e864f 484
115ff745 485PERLVAR(I, signals, U32) /* Using which pre-5.8 signals */
30b0736d 486
79968a97
NC
487PERLVAR(I, reentrant_retint, int) /* Integer return value from reentrant functions */
488
49f531da 489/* pseudo environmental stuff */
115ff745
NC
490PERLVAR(I, origargc, int)
491PERLVAR(I, origargv, char **)
492PERLVAR(I, envgv, GV *)
493PERLVAR(I, incgv, GV *)
494PERLVAR(I, hintgv, GV *)
495PERLVAR(I, origfilename, char *)
9a189793 496PERLVARI(I, xsubfilename, const char *, NULL)
115ff745
NC
497PERLVAR(I, diehook, SV *)
498PERLVAR(I, warnhook, SV *)
93f6f965
YO
499/* keyword hooks*/
500PERLVARI(I, hook__require__before, SV *,NULL)
501PERLVARI(I, hook__require__after, SV *,NULL)
1d7c1841
GS
502
503/* switches */
115ff745 504PERLVAR(I, patchlevel, SV *)
115ff745 505PERLVAR(I, localpatches, const char * const *)
a1aa0ce9 506PERLVARI(I, splitstr, char *, NULL)
115ff745
NC
507
508PERLVAR(I, minus_c, bool)
509PERLVAR(I, minus_n, bool)
510PERLVAR(I, minus_p, bool)
511PERLVAR(I, minus_l, bool)
512PERLVAR(I, minus_a, bool)
513PERLVAR(I, minus_F, bool)
514PERLVAR(I, doswitches, bool)
515PERLVAR(I, minus_E, bool)
954c1994 516
115ff745
NC
517PERLVAR(I, inplace, char *)
518PERLVAR(I, e_script, SV *)
49f531da 519
115ff745 520PERLVAR(I, basetime, Time_t) /* $^T */
d4cce5f1 521
115ff745 522PERLVARI(I, maxsysfd, I32, MAXSYSFD)
1604cfb0 523 /* top fd to pass to subprocesses */
115ff745 524PERLVAR(I, statusvalue, I32) /* $? */
49f531da 525#ifdef VMS
115ff745 526PERLVAR(I, statusvalue_vms, U32)
e5218da5 527#else
115ff745 528PERLVAR(I, statusvalue_posix, I32)
49f531da
NIS
529#endif
530
115ff745
NC
531PERLVARI(I, sig_pending, int, 0) /* Number if highest signal pending */
532PERLVAR(I, psig_pend, int *) /* per-signal "count" of pending */
157b3822 533
49f531da 534/* shortcuts to various I/O objects */
115ff745
NC
535PERLVAR(I, stdingv, GV *) /* *STDIN */
536PERLVAR(I, stderrgv, GV *) /* *STDERR */
115ff745
NC
537PERLVAR(I, argvgv, GV *) /* *ARGV */
538PERLVAR(I, argvoutgv, GV *) /* *ARGVOUT */
539PERLVAR(I, argvout_stack, AV *)
49f531da
NIS
540
541/* shortcuts to regexp stuff */
115ff745 542PERLVAR(I, replgv, GV *) /* *^R */
49f531da
NIS
543
544/* shortcuts to misc objects */
115ff745 545PERLVAR(I, errgv, GV *) /* *@ */
49f531da
NIS
546
547/* shortcuts to debugging objects */
115ff745
NC
548PERLVAR(I, DBgv, GV *) /* *DB::DB */
549PERLVAR(I, DBline, GV *) /* *DB::line */
954c1994
GS
550
551/*
36f453d1 552=for apidoc_section $debugging
2eb25c99 553=for apidoc mn|GV *|PL_DBsub
954c1994
GS
554When Perl is run in debugging mode, with the B<-d> switch, this GV contains
555the SV which holds the name of the sub being debugged. This is the C
556variable which corresponds to Perl's $DB::sub variable. See
fbe13c60 557C<L</PL_DBsingle>>.
954c1994 558
36f453d1
KW
559On threaded perls, each thread has an independent copy of this variable;
560each initialized at creation time with the current value of the creating
561thread's copy.
562
2eb25c99 563=for apidoc mn|SV *|PL_DBsingle
954c1994 564When Perl is run in debugging mode, with the B<-d> switch, this SV is a
7889fe52 565boolean which indicates whether subs are being single-stepped.
954c1994
GS
566Single-stepping is automatically turned on after every step. This is the C
567variable which corresponds to Perl's $DB::single variable. See
fbe13c60 568C<L</PL_DBsub>>.
954c1994 569
36f453d1
KW
570On threaded perls, each thread has an independent copy of this variable;
571each initialized at creation time with the current value of the creating
572thread's copy.
573
2eb25c99 574=for apidoc mn|SV *|PL_DBtrace
954c1994
GS
575Trace variable used when Perl is run in debugging mode, with the B<-d>
576switch. This is the C variable which corresponds to Perl's $DB::trace
fbe13c60 577variable. See C<L</PL_DBsingle>>.
954c1994 578
36f453d1
KW
579On threaded perls, each thread has an independent copy of this variable;
580each initialized at creation time with the current value of the creating
581thread's copy.
582
954c1994
GS
583=cut
584*/
585
115ff745
NC
586PERLVAR(I, DBsub, GV *) /* *DB::sub */
587PERLVAR(I, DBsingle, SV *) /* $DB::single */
588PERLVAR(I, DBtrace, SV *) /* $DB::trace */
589PERLVAR(I, DBsignal, SV *) /* $DB::signal */
590PERLVAR(I, dbargs, AV *) /* args to call listed by caller function */
49f531da 591
a6d69523
TC
592PERLVARA(I, DBcontrol, DBVARMG_COUNT, IV) /* IV versions of $DB::single, trace, signal */
593
49f531da 594/* symbol tables */
115ff745
NC
595PERLVAR(I, debstash, HV *) /* symbol table for perldb package */
596PERLVAR(I, globalstash, HV *) /* global keyword overrides imported here */
597PERLVAR(I, curstname, SV *) /* name of current package */
598PERLVAR(I, beginav, AV *) /* names of BEGIN subroutines */
599PERLVAR(I, endav, AV *) /* names of END subroutines */
600PERLVAR(I, unitcheckav, AV *) /* names of UNITCHECK subroutines */
601PERLVAR(I, checkav, AV *) /* names of CHECK subroutines */
602PERLVAR(I, initav, AV *) /* names of INIT subroutines */
49f531da 603
49f531da 604/* subprocess state */
115ff745 605PERLVAR(I, fdpid, AV *) /* keep fd-to-pid mappings for my_popen */
49f531da
NIS
606
607/* internal state */
115ff745 608PERLVARI(I, op_mask, char *, NULL) /* masked operations for safe evals */
49f531da 609
49f531da 610/* current interpreter roots */
115ff745
NC
611PERLVAR(I, main_cv, CV *)
612PERLVAR(I, main_root, OP *)
613PERLVAR(I, main_start, OP *)
614PERLVAR(I, eval_root, OP *)
615PERLVAR(I, eval_start, OP *)
49f531da
NIS
616
617/* runtime control stuff */
115ff745 618PERLVARI(I, curcopdb, COP *, NULL)
49f531da 619
115ff745
NC
620PERLVAR(I, filemode, int) /* so nextargv() can preserve mode */
621PERLVAR(I, lastfd, int) /* what to preserve mode on */
622PERLVAR(I, oldname, char *) /* what to preserve mode on */
00accf8d
NC
623/* Elements in this array have ';' appended and are injected as a single line
624 into the tokeniser. You can't put any (literal) newlines into any program
625 you stuff in into this array, as the point where it's injected is expecting
626 a single physical line. */
115ff745
NC
627PERLVAR(I, preambleav, AV *)
628PERLVAR(I, mess_sv, SV *)
629PERLVAR(I, ors_sv, SV *) /* output record separator $\ */
19bc2726 630
79968a97
NC
631/* funky return mechanisms */
632PERLVAR(I, forkprocess, int) /* so do_open |- can return proc# */
633
71eebe1e 634/* statics moved here for shared library purposes */
115ff745
NC
635PERLVARI(I, gensym, I32, 0) /* next symbol for getsym() to define */
636PERLVARI(I, cv_has_eval, bool, FALSE) /* PL_compcv includes an entereval or similar */
637PERLVAR(I, taint_warn, bool) /* taint warns instead of dying */
638PERLVARI(I, laststype, U16, OP_STAT)
19bc2726 639
115ff745 640PERLVARI(I, laststatval, int, -1)
d4cce5f1 641
19bc2726 642PERLVAR(I, modcount, I32) /* how much op_lvalue()ification in
1604cfb0 643 assignment? */
19bc2726 644
4b556e6c 645/* interpreter atexit processing */
115ff745
NC
646PERLVARI(I, exitlistlen, I32, 0) /* length of same */
647PERLVARI(I, exitlist, PerlExitListEntry *, NULL)
1604cfb0 648 /* list of exit functions */
954c1994
GS
649
650/*
36f453d1 651=for apidoc_section $HV
954c1994
GS
652=for apidoc Amn|HV*|PL_modglobal
653
7889fe52 654C<PL_modglobal> is a general purpose, interpreter global HV for use by
954c1994 655extensions that need to keep information on a per-interpreter basis.
7889fe52
NIS
656In a pinch, it can also be used as a symbol table for extensions
657to share data among each other. It is a good idea to use keys
954c1994
GS
658prefixed by the package name of the extension that owns the data.
659
36f453d1
KW
660On threaded perls, each thread has an independent copy of this variable;
661each initialized at creation time with the current value of the creating
662thread's copy.
663
954c1994
GS
664=cut
665*/
666
115ff745 667PERLVAR(I, modglobal, HV *) /* per-interp module data */
cb68f92d
GS
668
669/* these used to be in global before 5.004_68 */
115ff745 670PERLVARI(I, profiledata, U32 *, NULL) /* table of ops, counts */
cb68f92d 671
115ff745 672PERLVAR(I, compiling, COP) /* compiling/done executing marker */
cb68f92d 673
115ff745 674PERLVAR(I, compcv, CV *) /* currently compiling subroutine */
36c300bb 675PERLVAR(I, comppad_name, PADNAMELIST *) /* variable names for "my" variables */
d12be05d
DM
676PERLVAR(I, comppad_name_fill, PADOFFSET)/* last "introduced" variable offset */
677PERLVAR(I, comppad_name_floor, PADOFFSET)/* start of vars in innermost block */
4b556e6c
JD
678
679#ifdef HAVE_INTERP_INTERN
115ff745 680PERLVAR(I, sys_intern, struct interp_intern)
1604cfb0 681 /* platform internals */
4b556e6c
JD
682#endif
683
7fae4e64 684/* more statics moved here */
115ff745 685PERLVAR(I, DBcv, CV *) /* from perl.c */
75010704
DM
686PERLVARI(I, generation, int, 100) /* scan sequence# for OP_AASSIGN
687 compile-time common elem detection */
56953603 688
19bc2726
DM
689PERLVAR(I, unicode, U32) /* Unicode features: $ENV{PERL_UNICODE} or -C */
690
115ff745
NC
691PERLVARI(I, in_clean_objs,bool, FALSE) /* from sv.c */
692PERLVARI(I, in_clean_all, bool, FALSE) /* ptrs to freed SVs now legal */
693PERLVAR(I, nomemok, bool) /* let malloc context handle nomem */
694PERLVARI(I, savebegin, bool, FALSE) /* save BEGINs for compiler */
7fae4e64 695
19bc2726 696
985213f2
AB
697PERLVAR(I, delaymagic_uid, Uid_t) /* current real user id, only for delaymagic */
698PERLVAR(I, delaymagic_euid, Uid_t) /* current effective user id, only for delaymagic */
699PERLVAR(I, delaymagic_gid, Gid_t) /* current real group id, only for delaymagic */
700PERLVAR(I, delaymagic_egid, Gid_t) /* current effective group id, only for delaymagic */
115ff745 701PERLVARI(I, an, U32, 0) /* malloc sequence number */
be2b6a89 702
79968a97
NC
703/* Perl_Ibreakable_sub_generation_ptr was too long for VMS, hence "gen" */
704PERLVARI(I, breakable_sub_gen, U32, 0)
705
be2b6a89
DM
706#ifdef DEBUGGING
707 /* exercise wrap-around */
708 #define PERL_COP_SEQMAX (U32_MAX-50)
709#else
710 #define PERL_COP_SEQMAX 0
711#endif
115ff745 712PERLVARI(I, cop_seqmax, U32, PERL_COP_SEQMAX) /* statement sequence number */
be2b6a89
DM
713#undef PERL_COP_SEQMAX
714
115ff745
NC
715PERLVARI(I, evalseq, U32, 0) /* eval sequence number */
716PERLVAR(I, origalen, U32)
ca0c25f6 717#ifdef PERL_USES_PL_PIDSTATUS
115ff745 718PERLVAR(I, pidstatus, HV *) /* pid-to-status mappings for waitpid */
ca0c25f6 719#endif
115ff745 720PERLVAR(I, osname, char *) /* operating system */
5c728af0 721
dc37125b
DM
722PERLVAR(I, sighandlerp, Sighandler_t)
723/* these two are provided only to solve library linkage issues; they
724 * should not be hooked by user code */
725PERLVAR(I, sighandler1p, Sighandler1_t)
726PERLVAR(I, sighandler3p, Sighandler3_t)
0672f40e 727
115ff745 728PERLVARA(I, body_roots, PERL_ARENA_ROOTS_SIZE, void*) /* array of body roots */
93e68bfb 729
8162b70e 730PERLVAR(I, debug, volatile U32) /* flags given to -D switch */
79968a97 731
e897f2d7 732PERLVARI(I, padlist_generation, U32, 1) /* id to identify padlist clones */
9f7da6d5 733
115ff745 734PERLVARI(I, runops, runops_proc_t, RUNOPS_DEFAULT)
0672f40e 735
115ff745 736PERLVAR(I, subname, SV *) /* name of current subroutine */
0672f40e 737
115ff745 738PERLVAR(I, subline, I32) /* line this subroutine began on */
d12be05d 739PERLVAR(I, min_intro_pending, PADOFFSET)/* start of vars to introduce */
d95e864f 740
d12be05d
DM
741PERLVAR(I, max_intro_pending, PADOFFSET)/* end of vars to introduce */
742PERLVAR(I, padix, PADOFFSET) /* lowest unused index - 1
1604cfb0 743 in current "register" pad */
d12be05d 744PERLVAR(I, constpadix, PADOFFSET) /* lowest unused for constants */
d95e864f 745
d12be05d 746PERLVAR(I, padix_floor, PADOFFSET) /* how low may inner block reset padix */
0672f40e 747
1094750e
KW
748#if defined(USE_POSIX_2008_LOCALE) && defined(MULTIPLICITY)
749PERLVARI(I, cur_locale_obj, locale_t, NULL)
750#endif
5e395a7a 751#ifdef USE_PL_CURLOCALES
e9bc6d6b 752
6e68a407 753/* This is the most number of categories we've encountered so far on any
6a4065f2 754 * platform, doesn't include LC_ALL */
6125a5e7 755PERLVARA(I, curlocales, 12, const char *)
6a4065f2
KW
756
757#endif
758#ifdef USE_PL_CUR_LC_ALL
759
760PERLVARI(I, cur_LC_ALL, const char *, NULL)
e9bc6d6b
KW
761
762#endif
0672f40e 763#ifdef USE_LOCALE_COLLATE
e9bc6d6b 764
d7e4cf0c
KW
765/* The emory needed to store the collxfrm transformation of a string with
766 * length 'x' is predicted by the linear equation mx+b; m=mult, b=base */
5fdda512
KW
767PERLVARI(I, collxfrm_mult,Size_t, 0) /* Expansion factor in *xfrm();
768 0 => unknown or bad, depending on
769 base */
770PERLVAR(I, collxfrm_base, Size_t) /* Basic overhead in *xfrm();
771 mult == 0, base == 0 => need to compute
772 mult == 0, base != 0 => ill-formed;
773 */
d7e4cf0c 774PERLVAR(I, collation_name, char *) /* Name of current collation */
115ff745 775PERLVARI(I, collation_ix, U32, 0) /* Collation generation index */
f28f4d2a 776PERLVARI(I, strxfrm_NUL_replacement, U8, 0) /* Code point to replace NULs */
c664130f
KW
777PERLVARI(I, strxfrm_is_behaved, bool, TRUE)
778 /* Assume until proven otherwise that it works */
a4a439fb 779PERLVARI(I, strxfrm_max_cp, U8, 0) /* Highest collating cp in locale */
115ff745 780PERLVARI(I, collation_standard, bool, TRUE)
1604cfb0 781 /* Assume simple collation */
b41c5839 782PERLVAR(I, in_utf8_COLLATE_locale, bool)
0672f40e
GS
783#endif /* USE_LOCALE_COLLATE */
784
d53c2691 785PERLVARI(I, langinfo_buf, const char *, NULL)
f7416781 786PERLVARI(I, langinfo_bufsize, Size_t, 0)
f3e90222 787PERLVARI(I, setlocale_buf, const char *, NULL)
9aac5db8 788PERLVARI(I, setlocale_bufsize, Size_t, 0)
32899cfb
KW
789PERLVARI(I, stdize_locale_buf, const char *, NULL)
790PERLVARI(I, stdize_locale_bufsize, Size_t, 0)
f7416781 791
19bc2726
DM
792#ifdef PERL_SAWAMPERSAND
793PERLVAR(I, sawampersand, U8) /* must save all match strings */
9f7da6d5 794#endif
95ca8690 795
79968a97
NC
796/* current phase the interpreter is in
797 for ordering this structure to remove holes, we're assuming that this is 4
798 bytes. */
799PERLVARI(I, phase, enum perl_phase, PERL_PHASE_CONSTRUCT)
800
801PERLVARI(I, in_load_module, bool, FALSE) /* to prevent recursions in PerlIO_find_layer */
802
741a5c73
YO
803PERLVARI(I, eval_begin_nest_depth, U32, 0)
804
63251dfc
RL
805PERLVAR(I, unsafe, bool)
806PERLVAR(I, colorset, bool) /* PERL_RE_COLORS env var is in use */
807
daf9aebe 808/*
36f453d1 809=for apidoc_section $embedding
daf9aebe
TC
810=for apidoc Amn|signed char|PL_perl_destruct_level
811
812This value may be set when embedding for full cleanup.
813
814Possible values:
815
816=over
817
818=item * 0 - none
819
820=item * 1 - full
821
822=item * 2 or greater - full with checks.
823
824=back
825
826If C<$ENV{PERL_DESTRUCT_LEVEL}> is set to an integer greater than the
827value of C<PL_perl_destruct_level> its value is used instead.
828
36f453d1
KW
829On threaded perls, each thread has an independent copy of this variable;
830each initialized at creation time with the current value of the creating
831thread's copy.
832
daf9aebe
TC
833=cut
834*/
79968a97
NC
835/* mod_perl is special, and also assigns a meaning -1 */
836PERLVARI(I, perl_destruct_level, signed char, 0)
9f7da6d5 837
63251dfc
RL
838PERLVAR(I, pad_reset_pending, bool) /* reset pad on next attempted alloc */
839
bf2a3dae
YO
840PERLVARI(I, srand_called, bool, false) /* has random_state been initialized yet? */
841PERLVARI(I, srand_override, U32, 0) /* Should we use a deterministic sequence? */
842PERLVARI(I, srand_override_next, U32, 0) /* Next item in the sequence */
63251dfc 843
892e6465 844PERLVARI(I, numeric_underlying, bool, TRUE)
1604cfb0 845 /* Assume underlying locale numerics */
4c68b815 846PERLVARI(I, numeric_underlying_is_standard, bool, TRUE)
63251dfc 847
fcbef0e8
KW
848PERLVARI(I, numeric_standard, int, TRUE) /* Assume C locale numerics */
849PERLVAR(I, numeric_name, char *) /* Name of current numeric locale */
37b8263e
KW
850PERLVAR(I, numeric_radix_sv, SV *) /* The radix separator */
851PERLVAR(I, underlying_radix_sv, SV *) /* The radix in the program's current underlying locale */
f8115845 852
fcbef0e8 853#if defined(USE_LOCALE_NUMERIC) && defined(USE_POSIX_2008_LOCALE)
e1aa2579
KW
854
855PERLVARI(I, underlying_numeric_obj, locale_t, NULL)
856
fcbef0e8 857#endif
827a4a05
KW
858#ifdef USE_POSIX_2008_LOCALE
859PERLVARI(I, scratch_locale_obj, locale_t, 0)
860#endif
0672f40e 861
b269edc8
KW
862#ifdef USE_LOCALE_CTYPE
863
864PERLVARI(I, ctype_name, const char *, NULL) /* Name of current ctype locale */
865
866# endif
867
c4a30c8c
NC
868/* Array of signal handlers, indexed by signal number, through which the C
869 signal handler dispatches. */
115ff745 870PERLVAR(I, psig_ptr, SV **)
c4a30c8c 871/* Array of names of signals, indexed by signal number, for (re)use as the first
d525a7b2
NC
872 argument to a signal handler. Only one block of memory is allocated for
873 both psig_name and psig_ptr. */
115ff745 874PERLVAR(I, psig_name, SV **)
1d7c1841 875
c5be433b 876#if defined(PERL_IMPLICIT_SYS)
115ff745
NC
877PERLVAR(I, Mem, struct IPerlMem *)
878PERLVAR(I, MemShared, struct IPerlMem *)
879PERLVAR(I, MemParse, struct IPerlMem *)
880PERLVAR(I, Env, struct IPerlEnv *)
881PERLVAR(I, StdIO, struct IPerlStdIO *)
882PERLVAR(I, LIO, struct IPerlLIO *)
883PERLVAR(I, Dir, struct IPerlDir *)
884PERLVAR(I, Sock, struct IPerlSock *)
885PERLVAR(I, Proc, struct IPerlProc *)
76e3520e 886#endif
1d7c1841 887
115ff745
NC
888PERLVAR(I, ptr_table, PTR_TBL_t *)
889PERLVARI(I, beginav_save, AV *, NULL) /* save BEGIN{}s when compiling */
f180df80 890
115ff745 891PERLVAR(I, body_arenas, void *) /* pointer to list of body-arenas */
93e68bfb 892
d95e864f 893
1fcf4c12 894#if defined(USE_ITHREADS)
115ff745 895PERLVAR(I, regex_pad, SV **) /* Shortcut into the array of
1604cfb0 896 regex_padav */
115ff745 897PERLVAR(I, regex_padav, AV *) /* All regex objects, indexed via the
1604cfb0
MS
898 values in op_pmoffset of pmop.
899 Entry 0 is an SV whose PV is a
900 "packed" list of IVs listing
901 the now-free slots in the array */
d4d03940
FC
902PERLVAR(I, stashpad, HV **) /* for CopSTASH */
903PERLVARI(I, stashpadmax, PADOFFSET, 64)
904PERLVARI(I, stashpadix, PADOFFSET, 0)
1fcf4c12
AB
905#endif
906
ea68fd67 907#ifdef USE_REENTRANT_API
115ff745 908PERLVAR(I, reentrant_buffer, REENTR *) /* here we store the _r buffers */
f5a82810
JH
909#endif
910
115ff745
NC
911PERLVAR(I, custom_op_names, HV *) /* Names of user defined ops */
912PERLVAR(I, custom_op_descs, HV *) /* Descriptions of user defined ops */
19e8ce8e 913
a1ea730d 914#ifdef PERLIO_LAYERS
115ff745
NC
915PERLVARI(I, perlio, PerlIOl *, NULL)
916PERLVARI(I, known_layers, PerlIO_list_t *, NULL)
917PERLVARI(I, def_layerlist, PerlIO_list_t *, NULL)
a1ea730d
NIS
918#endif
919
115ff745
NC
920PERLVARI(I, checkav_save, AV *, NULL) /* save CHECK{}s when compiling */
921PERLVARI(I, unitcheckav_save, AV *, NULL)
1604cfb0 922 /* save UNITCHECK{}s when compiling */
ece599bd 923
115ff745 924PERLVARI(I, clocktick, long, 0) /* this many times() ticks in a second */
5311654c 925
15a5279a 926/* Hooks to shared SVs and locks. */
115ff745
NC
927PERLVARI(I, sharehook, share_proc_t, Perl_sv_nosharing)
928PERLVARI(I, lockhook, share_proc_t, Perl_sv_nosharing)
238965b4 929
a63f2672
YO
930#if defined(__HP_cc) || defined(__HP_aCC)
931#pragma diag_suppress 3215
932#endif
238965b4 933GCC_DIAG_IGNORE(-Wdeprecated-declarations)
a4b63cac 934MSVC_DIAG_IGNORE(4996)
a63f2672 935
d0647d4e
NC
936#ifdef NO_MATHOMS
937# define PERL_UNLOCK_HOOK Perl_sv_nosharing
938#else
939/* This reference ensures that the mathoms are linked with perl */
940# define PERL_UNLOCK_HOOK Perl_sv_nounlocking
941#endif
115ff745 942PERLVARI(I, unlockhook, share_proc_t, PERL_UNLOCK_HOOK)
d0647d4e 943
a4b63cac 944MSVC_DIAG_RESTORE
238965b4 945GCC_DIAG_RESTORE
a63f2672
YO
946#if defined(__HP_cc) || defined(__HP_aCC)
947#pragma diag_default 3215
948#endif
238965b4 949
115ff745 950PERLVARI(I, threadhook, thrhook_proc_t, Perl_nothreadhook)
15a5279a 951
9e08d3a4 952/* Can shared object be destroyed */
115ff745 953PERLVARI(I, destroyhook, destroyable_proc_t, Perl_sv_destroyable)
9e08d3a4 954
01d65469 955#ifndef PERL_MICRO
115ff745 956PERLVARI(I, signalhook, despatch_signals_proc_t, Perl_despatch_signals)
01d65469 957#endif
92f022bb 958
115ff745 959PERLVARI(I, isarev, HV *, NULL) /* Reverse map of @ISA dependencies */
f16dd614 960
9e08d3a4
NC
961/* Register of known Method Resolution Orders.
962 What this actually points to is an implementation detail (it may change to
963 a structure incorporating a reference count - use mro_get_from_name to
964 retrieve a C<struct mro_alg *> */
115ff745 965PERLVAR(I, registered_mros, HV *)
9e08d3a4
NC
966
967/* Compile-time block start/end hooks */
115ff745 968PERLVAR(I, blockhooks, AV *)
9e08d3a4 969
115ff745 970PERLVAR(I, custom_ops, HV *) /* custom op registrations */
9e08d3a4 971
19bc2726
DM
972PERLVAR(I, Xpv, XPV *) /* (unused) held temporary value */
973
974/* name of the scopes we've ENTERed. Only used with -DDEBUGGING, but needs to be
975 present always, as -DDEBUGGING must be binary compatible with non. */
bf1e8ebe 976PERLVARI(I, scopestack_name, const char **, NULL)
19bc2726
DM
977
978PERLVAR(I, debug_pad, struct perl_debug_pad) /* always needed because of the re extension */
979
d67594ff
FC
980/* Hook for File::Glob */
981PERLVARI(I, globhook, globhook_t, NULL)
982
0f60372e 983#if defined(MULTIPLICITY)
436227c7 984/* The last unconditional member of the interpreter structure when 5.18.0 was
ffee3ff6
NC
985 released. The offset of the end of this is baked into a global variable in
986 any shared perl library which will allow a sanity test in future perl
987 releases. */
0f60372e
KW
988# define PERL_LAST_5_18_0_INTERP_MEMBER Iglobhook
989#endif
ffee3ff6 990
6e512bc2 991#ifdef MULTIPLICITY
115ff745 992PERLVARI(I, my_cxt_list, void **, NULL) /* per-module array of MY_CXT pointers */
817b0f24 993PERLVARI(I, my_cxt_size, int, 0) /* size of PL_my_cxt_list */
f16dd614
DM
994#endif
995
6e512bc2 996#if defined(MULTIPLICITY) || defined(PERL_DEBUG_READONLY_COW)
5ca5a628 997/* For use with the memory debugging code in util.c. This is used only in
0419d978
AC
998 * DEBUGGING builds (as long as the relevant structure is defined), but
999 * defining it in non-debug builds too means that we retain binary
1000 * compatibility between otherwise-compatible plain and debug builds. */
115ff745 1001PERLVAR(I, memory_debug_header, struct perl_memory_debug_header)
0419d978 1002#endif
7cb608b5 1003
ba6d381e
NC
1004#ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
1005/* File descriptor to talk to the child which dumps scalars. */
115ff745 1006PERLVARI(I, dumper_fd, int, -1)
ba6d381e
NC
1007#endif
1008
ba6d381e 1009
d7a2c63c 1010#ifdef DEBUG_LEAKING_SCALARS
115ff745 1011PERLVARI(I, sv_serial, U32, 0) /* SV serial number, used in sv.c */
d7a2c63c
MHM
1012#endif
1013
a38ab475
RZ
1014PERLVARA(I, sv_consts, SV_CONSTS_COUNT, SV*) /* constant SVs with precomputed hash value */
1015
75d476e2 1016#ifdef PERL_TRACE_OPS
532aec67 1017PERLVARA(I, op_exec_cnt, OP_max+2, UV) /* Counts of executed OPs of the given type.
75d476e2
S
1018 If PERL_TRACE_OPS is enabled, we'll dump
1019 a summary count of all ops executed in the
a7b37124
YO
1020 program at perl_destruct time. Used only
1021 for profiling in DEBUGGING mode. */
75d476e2
S
1022#endif
1023
3be8f094
TC
1024PERLVAR(I, random_state, PL_RANDOM_STATE_TYPE)
1025
eecd4d11 1026PERLVARI(I, dump_re_max_len, STRLEN, 60)
2bfbbbaf 1027
f26b33bd
TC
1028/* For internal uses of randomness, this ensures the sequence of
1029 * random numbers returned by rand() isn't modified by perl's internal
1030 * use of randomness.
1031 * This is important if the user has called srand() with a seed.
1032 */
1033
1034PERLVAR(I, internal_random_state, PL_RANDOM_STATE_TYPE)
1035
8c90d3a9
KW
1036PERLVARA(I, TR_SPECIAL_HANDLING_UTF8, UTF8_MAXBYTES, char)
1037
a8def808
KW
1038PERLVAR(I, AboveLatin1, SV *)
1039PERLVAR(I, Assigned_invlist, SV *)
1040PERLVAR(I, GCB_invlist, SV *)
1041PERLVAR(I, HasMultiCharFold, SV *)
1042PERLVAR(I, InMultiCharFold, SV *)
1043PERLVAR(I, Latin1, SV *)
1044PERLVAR(I, LB_invlist, SV *)
1045PERLVAR(I, SB_invlist, SV *)
1046PERLVAR(I, SCX_invlist, SV *)
1047PERLVAR(I, UpperLatin1, SV *) /* Code points 128 - 255 */
1048
c3c9077b
KW
1049PERLVARA(I, fold_locale, 256, U8)
1050
a8def808
KW
1051/* List of characters that participate in any fold defined by Unicode */
1052PERLVAR(I, in_some_fold, SV *)
1053
668d1998
KW
1054/* Everything that folds to a given character, for case insensitivity regex
1055 * matching */
1056PERLVAR(I, utf8_foldclosures, SV *)
1057
a8def808
KW
1058PERLVAR(I, utf8_idcont, SV *)
1059PERLVAR(I, utf8_idstart, SV *)
1060PERLVAR(I, utf8_perl_idcont, SV *)
1061PERLVAR(I, utf8_perl_idstart, SV *)
1062PERLVAR(I, utf8_xidcont, SV *)
1063PERLVAR(I, utf8_xidstart, SV *)
1064PERLVAR(I, WB_invlist, SV *)
1065PERLVARA(I, XPosix_ptrs, POSIX_CC_COUNT, SV *)
1066PERLVARA(I, Posix_ptrs, POSIX_CC_COUNT, SV *)
1067PERLVAR(I, utf8_toupper, SV *)
1068PERLVAR(I, utf8_totitle, SV *)
1069PERLVAR(I, utf8_tolower, SV *)
1070PERLVAR(I, utf8_tofold, SV *)
1071PERLVAR(I, utf8_tosimplefold, SV *)
1072PERLVAR(I, utf8_charname_begin, SV *)
1073PERLVAR(I, utf8_charname_continue, SV *)
1074PERLVAR(I, utf8_mark, SV *)
1075PERLVARI(I, InBitmap, SV *, NULL)
1076PERLVAR(I, CCC_non0_non230, SV *)
1077PERLVAR(I, Private_Use, SV *)
1078
d2c9cb53
KW
1079#ifdef HAS_MBRLEN
1080PERLVAR(I, mbrlen_ps, mbstate_t)
1081#endif
5a6637f0
KW
1082#ifdef HAS_MBRTOWC
1083PERLVAR(I, mbrtowc_ps, mbstate_t)
1084#endif
1085#ifdef HAS_WCRTOMB
1086PERLVAR(I, wcrtomb_ps, mbstate_t)
1087#endif
03694582
KW
1088#ifdef PERL_MEM_LOG
1089/* Enough space for the reserved byte, 1 for a potential leading 0, then enough
1090 * for the longest representable integer plus an extra, the 3 flag characters,
1091 * and NUL */
7ca60b44
YO
1092#define PERL_MEM_LOG_ARYLEN (1 + 1 + TYPE_DIGITS(UV) + 1 + 3 + 1)
1093PERLVARA(I, mem_log, PERL_MEM_LOG_ARYLEN, char)
03694582 1094#endif
d2c9cb53 1095
78efaf03
PE
1096/* The most recently seen `use VERSION` declaration, encoded in a single
1097 * U16 as (major << 8) | minor. We do this rather than store an entire SV
1098 * version object so we can fit the U16 into the uv of a SAVEHINTS and not
1099 * have to worry about SV refcounts during scope enter/exit. */
1100PERLVAR(I, prevailing_version, U16)
1101
157b3822
NC
1102/* If you are adding a U8 or U16, check to see if there are 'Space' comments
1103 * above on where there are gaps which currently will be structure padding. */
d95e864f
NC
1104
1105/* Within a stable branch, new variables must be added to the very end, before
1106 * this comment, for binary compatibility (the offsets of the old members must
1107 * not change).
b83cd129 1108 * (Don't forget to add your variable also to perl_clone()!)
b83cd129 1109 */