This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add test boilerplate to the new MakeMaker tests
[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
11/*
12=head1 Per-Interpreter Variables
13*/
49f531da 14
907b3e23
DM
15/* These variables are per-interpreter in threaded/multiplicity builds,
16 * global otherwise.
17
18 * Don't forget to re-run embed.pl to propagate changes! */
cb68f92d 19
6537fe72
MS
20/* New variables must be added to the very end for binary compatibility.
21 * XSUB.h provides wrapper functions via perlapi.h that make this
22 * irrelevant, but not all code may be expected to #include XSUB.h. */
23
02506efe
JH
24/* Don't forget to add your variable also to perl_clone()! */
25
cb68f92d
GS
26/* The 'I' prefix is only needed for vars that need appropriate #defines
27 * generated when built with or without MULTIPLICITY. It is also used
28 * to generate the appropriate export list for win32.
29 *
907b3e23
DM
30 * When building without MULTIPLICITY, these variables will be truly global.
31 *
32 * Important ones in the first cache line (if alignment is done right) */
33
34PERLVAR(Istack_sp, SV **) /* top of the stack */
35#ifdef OP_IN_REGISTER
36PERLVAR(Iopsave, OP *)
37#else
38PERLVAR(Iop, OP *) /* currently executing op */
39#endif
40PERLVAR(Icurpad, SV **) /* active pad (lexicals+tmps) */
41
42PERLVAR(Istack_base, SV **)
43PERLVAR(Istack_max, SV **)
44
45PERLVAR(Iscopestack, I32 *) /* scopes we've ENTERed */
46PERLVAR(Iscopestack_ix, I32)
47PERLVAR(Iscopestack_max,I32)
48
49PERLVAR(Isavestack, ANY *) /* items that need to be restored when
50 LEAVEing scopes we've ENTERed */
51PERLVAR(Isavestack_ix, I32)
52PERLVAR(Isavestack_max, I32)
53
54PERLVAR(Itmps_stack, SV **) /* mortals we've made */
55PERLVARI(Itmps_ix, I32, -1)
56PERLVARI(Itmps_floor, I32, -1)
57PERLVAR(Itmps_max, I32)
58PERLVAR(Imodcount, I32) /* how much mod()ification in
59 assignment? */
60
61PERLVAR(Imarkstack, I32 *) /* stack_sp locations we're
62 remembering */
63PERLVAR(Imarkstack_ptr, I32 *)
64PERLVAR(Imarkstack_max, I32 *)
65
66PERLVAR(ISv, SV *) /* used to hold temporary values */
67PERLVAR(IXpv, XPV *) /* used to hold temporary values */
68
69/*
70=for apidoc Amn|STRLEN|PL_na
71
72A convenience variable which is typically used with C<SvPV> when one
73doesn't care about the length of the string. It is usually more efficient
74to either declare a local variable and use that instead or to use the
75C<SvPV_nolen> macro.
76
77=cut
78*/
79
80PERLVAR(Ina, STRLEN) /* for use in SvPV when length is
81 Not Applicable */
82
83/* stat stuff */
84PERLVAR(Istatbuf, Stat_t)
85PERLVAR(Istatcache, Stat_t) /* _ */
86PERLVAR(Istatgv, GV *)
87PERLVARI(Istatname, SV *, NULL)
88
89#ifdef HAS_TIMES
90PERLVAR(Itimesbuf, struct tms)
91#endif
92
93/* Fields used by magic variables such as $@, $/ and so on */
94PERLVAR(Icurpm, PMOP *) /* what to do \ interps in REs from */
95
96/*
97=for apidoc mn|SV*|PL_rs
98
99The input record separator - C<$/> in Perl space.
100
101=for apidoc mn|GV*|PL_last_in_gv
102
103The GV which was last used for a filehandle input operation. (C<< <FH> >>)
104
e23d9e2f 105=for apidoc mn|GV*|PL_ofsgv
907b3e23 106
e23d9e2f 107The glob containing the output field separator - C<*,> in Perl space.
907b3e23
DM
108
109=cut
110*/
111
112PERLVAR(Irs, SV *) /* input record separator $/ */
113PERLVAR(Ilast_in_gv, GV *) /* GV used in last <FH> */
e23d9e2f 114PERLVAR(Iofsgv, GV *) /* GV of output field separator *, */
907b3e23
DM
115PERLVAR(Idefoutgv, GV *) /* default FH for output */
116PERLVARI(Ichopset, const char *, " \n-") /* $: */
117PERLVAR(Iformtarget, SV *)
118PERLVAR(Ibodytarget, SV *)
119PERLVAR(Itoptarget, SV *)
120
121/* Stashes */
122PERLVAR(Idefstash, HV *) /* main symbol table */
123PERLVAR(Icurstash, HV *) /* symbol table for current package */
124
125PERLVAR(Irestartop, OP *) /* propagating an error from croak? */
910e0671 126PERLVAR(Icurcop, COP *)
907b3e23
DM
127PERLVAR(Icurstack, AV *) /* THE STACK */
128PERLVAR(Icurstackinfo, PERL_SI *) /* current stack + context */
129PERLVAR(Imainstack, AV *) /* the stack when nothing funny is
130 happening */
131
132PERLVAR(Itop_env, JMPENV *) /* ptr to current sigjmp environment */
133PERLVAR(Istart_env, JMPENV) /* empty startup sigjmp environment */
134PERLVARI(Ierrors, SV *, NULL) /* outstanding queued errors */
135
136/* statics "owned" by various functions */
907b3e23
DM
137PERLVAR(Ihv_fetch_ent_mh, HE*) /* owned by hv_fetch_ent() */
138
907b3e23
DM
139PERLVAR(Ilastgotoprobe, OP*) /* from pp_ctl.c */
140
141/* sort stuff */
142PERLVAR(Isortcop, OP *) /* user defined sort routine */
143PERLVAR(Isortstash, HV *) /* which is in some package or other */
144PERLVAR(Ifirstgv, GV *) /* $a */
145PERLVAR(Isecondgv, GV *) /* $b */
146
147/* float buffer */
148PERLVAR(Iefloatbuf, char *)
149PERLVAR(Iefloatsize, STRLEN)
150
151/* regex stuff */
152
153PERLVAR(Iscreamfirst, I32 *)
154PERLVAR(Iscreamnext, I32 *)
155PERLVAR(Ilastscream, SV *)
156
157PERLVAR(Ireg_state, struct re_save_state)
158
159PERLVAR(Iregdummy, regnode) /* from regcomp.c */
160
161PERLVARI(Idumpindent, U16, 4) /* number of blanks per dump
162 indentation level */
163
157b3822
NC
164
165PERLVAR(Iutf8locale, bool) /* utf8 locale detected */
166PERLVARI(Irehash_seed_set, bool, FALSE) /* 582 hash initialized? */
907b3e23
DM
167
168PERLVARA(Icolors,6, char *) /* from regcomp.c */
169
170PERLVARI(Ipeepp, peep_t, MEMBER_TO_FPTR(Perl_peep))
171 /* Pointer to peephole optimizer */
172
173PERLVARI(Imaxscream, I32, -1)
174PERLVARI(Ireginterp_cnt,I32, 0) /* Whether "Regexp" was interpolated. */
175PERLVARI(Iwatchaddr, char **, 0)
176PERLVAR(Iwatchok, char *)
177
178/* the currently active slab in a chain of slabs of regmatch states,
179 * and the currently active state within that slab */
180
181PERLVARI(Iregmatch_slab, regmatch_slab *, NULL)
182PERLVAR(Iregmatch_state, regmatch_state *)
183
907b3e23 184/* Put anything new that is pointer aligned here. */
d95e864f 185
907b3e23
DM
186PERLVAR(Idelaymagic, U16) /* ($<,$>) = ... */
187PERLVAR(Ilocalizing, U8) /* are we processing a local() list? */
188PERLVAR(Icolorset, bool) /* from regcomp.c */
189PERLVARI(Idirty, bool, FALSE) /* in the middle of tearing things
190 down? */
910e0671 191PERLVAR(Iin_eval, U8) /* trap "fatal" errors? */
907b3e23 192PERLVAR(Itainted, bool) /* using variables controlled by $< */
d95e864f
NC
193
194/* This value may be set when embedding for full cleanup */
195/* 0=none, 1=full, 2=full with checks */
801627e8
NC
196/* mod_perl is special, and also assigns a meaning -1 */
197PERLVARI(Iperl_destruct_level, signed char, 0)
d95e864f
NC
198
199PERLVAR(Iperldb, U32)
200
49f531da 201/* pseudo environmental stuff */
d95e864f 202PERLVAR(Iorigargc, int)
cb68f92d
GS
203PERLVAR(Iorigargv, char **)
204PERLVAR(Ienvgv, GV *)
cb68f92d 205PERLVAR(Iincgv, GV *)
b3ac6de7 206PERLVAR(Ihintgv, GV *)
cb68f92d
GS
207PERLVAR(Iorigfilename, char *)
208PERLVAR(Idiehook, SV *)
209PERLVAR(Iwarnhook, SV *)
1d7c1841
GS
210
211/* switches */
a7cb1f99 212PERLVAR(Ipatchlevel, SV *)
27da23d5 213PERLVAR(Ilocalpatches, const char * const *)
dd374669 214PERLVARI(Isplitstr, const char *, " ")
9f7da6d5
NC
215
216PERLVAR(Iminus_c, bool)
cb68f92d
GS
217PERLVAR(Iminus_n, bool)
218PERLVAR(Iminus_p, bool)
219PERLVAR(Iminus_l, bool)
220PERLVAR(Iminus_a, bool)
221PERLVAR(Iminus_F, bool)
222PERLVAR(Idoswitches, bool)
bc9b29db 223PERLVAR(Iminus_E, bool)
954c1994
GS
224
225/*
ccfc67b7 226
2eb25c99 227=for apidoc mn|bool|PL_dowarn
954c1994
GS
228
229The C variable which corresponds to Perl's $^W warning variable.
230
231=cut
232*/
233
d41ff1b8 234PERLVAR(Idowarn, U8)
cb68f92d 235PERLVAR(Idoextract, bool)
49f531da 236PERLVAR(Isawampersand, bool) /* must save all match strings */
cb68f92d 237PERLVAR(Iunsafe, bool)
9f7da6d5
NC
238PERLVAR(Iexit_flags, U8) /* was exit() unexpected, etc. */
239PERLVAR(Isrand_called, bool)
240/* Part of internal state, but makes the 16th 1 byte variable in a row. */
241PERLVAR(Itainting, bool) /* doing taint checks */
96889982 242/* Space for a U8 */
cb68f92d
GS
243PERLVAR(Iinplace, char *)
244PERLVAR(Ie_script, SV *)
49f531da
NIS
245
246/* magical thingies */
247PERLVAR(Ibasetime, Time_t) /* $^T */
248PERLVAR(Iformfeed, SV *) /* $^L */
d4cce5f1
NIS
249
250
cb68f92d
GS
251PERLVARI(Imaxsysfd, I32, MAXSYSFD)
252 /* top fd to pass to subprocesses */
49f531da
NIS
253PERLVAR(Istatusvalue, I32) /* $? */
254#ifdef VMS
cb68f92d 255PERLVAR(Istatusvalue_vms,U32)
e5218da5
GA
256#else
257PERLVAR(Istatusvalue_posix,I32)
49f531da
NIS
258#endif
259
157b3822
NC
260PERLVARI(Isig_pending, int,0) /* Number if highest signal pending */
261PERLVAR(Ipsig_pend, int *) /* per-signal "count" of pending */
262
49f531da 263/* shortcuts to various I/O objects */
cb68f92d 264PERLVAR(Istdingv, GV *)
bf49b057 265PERLVAR(Istderrgv, GV *)
cb68f92d
GS
266PERLVAR(Idefgv, GV *)
267PERLVAR(Iargvgv, GV *)
268PERLVAR(Iargvoutgv, GV *)
1d7c1841 269PERLVAR(Iargvout_stack, AV *)
49f531da
NIS
270
271/* shortcuts to regexp stuff */
cb68f92d 272PERLVAR(Ireplgv, GV *)
49f531da
NIS
273
274/* shortcuts to misc objects */
cb68f92d 275PERLVAR(Ierrgv, GV *)
49f531da
NIS
276
277/* shortcuts to debugging objects */
cb68f92d
GS
278PERLVAR(IDBgv, GV *)
279PERLVAR(IDBline, GV *)
954c1994
GS
280
281/*
2eb25c99 282=for apidoc mn|GV *|PL_DBsub
954c1994
GS
283When Perl is run in debugging mode, with the B<-d> switch, this GV contains
284the SV which holds the name of the sub being debugged. This is the C
285variable which corresponds to Perl's $DB::sub variable. See
286C<PL_DBsingle>.
287
2eb25c99 288=for apidoc mn|SV *|PL_DBsingle
954c1994 289When Perl is run in debugging mode, with the B<-d> switch, this SV is a
7889fe52 290boolean which indicates whether subs are being single-stepped.
954c1994
GS
291Single-stepping is automatically turned on after every step. This is the C
292variable which corresponds to Perl's $DB::single variable. See
293C<PL_DBsub>.
294
2eb25c99 295=for apidoc mn|SV *|PL_DBtrace
954c1994
GS
296Trace variable used when Perl is run in debugging mode, with the B<-d>
297switch. This is the C variable which corresponds to Perl's $DB::trace
298variable. See C<PL_DBsingle>.
299
300=cut
301*/
302
cb68f92d
GS
303PERLVAR(IDBsub, GV *)
304PERLVAR(IDBsingle, SV *)
305PERLVAR(IDBtrace, SV *)
306PERLVAR(IDBsignal, SV *)
49f531da
NIS
307PERLVAR(Idbargs, AV *) /* args to call listed by caller function */
308
309/* symbol tables */
49f531da
NIS
310PERLVAR(Idebstash, HV *) /* symbol table for perldb package */
311PERLVAR(Iglobalstash, HV *) /* global keyword overrides imported here */
312PERLVAR(Icurstname, SV *) /* name of current package */
313PERLVAR(Ibeginav, AV *) /* names of BEGIN subroutines */
d4cce5f1 314PERLVAR(Iendav, AV *) /* names of END subroutines */
3c10abe3 315PERLVAR(Iunitcheckav, AV *) /* names of UNITCHECK subroutines */
7d30b5c4 316PERLVAR(Icheckav, AV *) /* names of CHECK subroutines */
49f531da
NIS
317PERLVAR(Iinitav, AV *) /* names of INIT subroutines */
318PERLVAR(Istrtab, HV *) /* shared string table */
005a453c 319PERLVARI(Isub_generation,U32,1) /* incr to invalidate method cache */
49f531da 320
9f7da6d5
NC
321/* funky return mechanisms */
322PERLVAR(Iforkprocess, int) /* so do_open |- can return proc# */
323
49f531da 324/* memory management */
49f531da
NIS
325PERLVAR(Isv_count, I32) /* how many SV* are currently allocated */
326PERLVAR(Isv_objcount, I32) /* how many objects are currently allocated */
327PERLVAR(Isv_root, SV*) /* storage for SVs belonging to interp */
328PERLVAR(Isv_arenaroot, SV*) /* list of areas for garbage collection */
329
49f531da 330/* subprocess state */
d4cce5f1 331PERLVAR(Ifdpid, AV *) /* keep fd-to-pid mappings for my_popen */
49f531da
NIS
332
333/* internal state */
49f531da
NIS
334PERLVARI(Iop_mask, char *, NULL) /* masked operations for safe evals */
335
49f531da 336/* current interpreter roots */
cb68f92d
GS
337PERLVAR(Imain_cv, CV *)
338PERLVAR(Imain_root, OP *)
339PERLVAR(Imain_start, OP *)
340PERLVAR(Ieval_root, OP *)
341PERLVAR(Ieval_start, OP *)
49f531da
NIS
342
343/* runtime control stuff */
cb68f92d 344PERLVARI(Icurcopdb, COP *, NULL)
49f531da 345
49f531da
NIS
346PERLVAR(Ifilemode, int) /* so nextargv() can preserve mode */
347PERLVAR(Ilastfd, int) /* what to preserve mode on */
348PERLVAR(Ioldname, char *) /* what to preserve mode on */
360ea906 349PERLVAR(IArgv, const char **) /* stuff to free from do_aexec, vfork safe */
d4cce5f1 350PERLVAR(ICmd, char *) /* stuff to free from do_aexec, vfork safe */
00accf8d
NC
351/* Elements in this array have ';' appended and are injected as a single line
352 into the tokeniser. You can't put any (literal) newlines into any program
353 you stuff in into this array, as the point where it's injected is expecting
354 a single physical line. */
cb68f92d 355PERLVAR(Ipreambleav, AV *)
cb68f92d 356PERLVAR(Imess_sv, SV *)
7889fe52 357PERLVAR(Iors_sv, SV *) /* output record separator $\ */
71eebe1e
NC
358/* statics moved here for shared library purposes */
359PERLVARI(Igensym, I32, 0) /* next symbol for getsym() to define */
a4021b77 360PERLVARI(Icv_has_eval, bool, FALSE) /* PL_compcv includes an entereval or similar */
157b3822 361PERLVAR(Itaint_warn, bool) /* taint warns instead of dying */
d95e864f
NC
362PERLVARI(Ilaststype, U16, OP_STAT)
363PERLVARI(Ilaststatval, int, -1)
d4cce5f1 364
4b556e6c 365/* interpreter atexit processing */
d95e864f 366PERLVARI(Iexitlistlen, I32, 0) /* length of same */
cb68f92d
GS
367PERLVARI(Iexitlist, PerlExitListEntry *, NULL)
368 /* list of exit functions */
954c1994
GS
369
370/*
371=for apidoc Amn|HV*|PL_modglobal
372
7889fe52 373C<PL_modglobal> is a general purpose, interpreter global HV for use by
954c1994 374extensions that need to keep information on a per-interpreter basis.
7889fe52
NIS
375In a pinch, it can also be used as a symbol table for extensions
376to share data among each other. It is a good idea to use keys
954c1994
GS
377prefixed by the package name of the extension that owns the data.
378
379=cut
380*/
381
cb68f92d
GS
382PERLVAR(Imodglobal, HV *) /* per-interp module data */
383
384/* these used to be in global before 5.004_68 */
385PERLVARI(Iprofiledata, U32 *, NULL) /* table of ops, counts */
cb68f92d
GS
386
387PERLVAR(Icompiling, COP) /* compiling/done executing marker */
388
389PERLVAR(Icompcv, CV *) /* currently compiling subroutine */
390PERLVAR(Icomppad, AV *) /* storage for lexically scoped temporaries */
391PERLVAR(Icomppad_name, AV *) /* variable names for "my" variables */
392PERLVAR(Icomppad_name_fill, I32) /* last "introduced" variable offset */
393PERLVAR(Icomppad_name_floor, I32) /* start of vars in innermost block */
4b556e6c
JD
394
395#ifdef HAVE_INTERP_INTERN
cb68f92d
GS
396PERLVAR(Isys_intern, struct interp_intern)
397 /* platform internals */
4b556e6c
JD
398#endif
399
7fae4e64 400/* more statics moved here */
7fae4e64 401PERLVAR(IDBcv, CV *) /* from perl.c */
9f7da6d5 402PERLVARI(Igeneration, int, 100) /* from op.c */
56953603 403
cb68f92d
GS
404PERLVARI(Iin_clean_objs,bool, FALSE) /* from sv.c */
405PERLVARI(Iin_clean_all, bool, FALSE) /* from sv.c */
9f7da6d5
NC
406PERLVAR(Inomemok, bool) /* let malloc context handle nomem */
407PERLVARI(Isavebegin, bool, FALSE) /* save BEGINs for compiler */
7fae4e64 408
d8eceb89
JH
409PERLVAR(Iuid, Uid_t) /* current real user id */
410PERLVAR(Ieuid, Uid_t) /* current effective user id */
411PERLVAR(Igid, Gid_t) /* current real group id */
412PERLVAR(Iegid, Gid_t) /* current effective group id */
bf9cdc68
RG
413PERLVARI(Ian, U32, 0) /* malloc sequence number */
414PERLVARI(Icop_seqmax, U32, 0) /* statement sequence number */
bf9cdc68 415PERLVARI(Ievalseq, U32, 0) /* eval sequence number */
0672f40e 416PERLVAR(Iorigalen, U32)
9f7da6d5 417PERLVAR(Iorigenviron, char **)
ca0c25f6 418#ifdef PERL_USES_PL_PIDSTATUS
0672f40e 419PERLVAR(Ipidstatus, HV *) /* pid-to-status mappings for waitpid */
ca0c25f6 420#endif
0672f40e 421PERLVAR(Iosname, char *) /* operating system */
5c728af0 422
0672f40e
GS
423PERLVAR(Isighandlerp, Sighandler_t)
424
232d1c15 425PERLVARA(Ibody_roots, PERL_ARENA_ROOTS_SIZE, void*) /* array of body roots */
93e68bfb 426
0672f40e
GS
427PERLVAR(Inice_chunk, char *) /* a nice chunk of memory to reuse */
428PERLVAR(Inice_chunk_size, U32) /* how nice the chunk of memory is */
429
9f7da6d5
NC
430PERLVARI(Imaxo, int, MAXO) /* maximum number of ops */
431
0b94c7bb 432PERLVARI(Irunops, runops_proc_t, MEMBER_TO_FPTR(RUNOPS_DEFAULT))
0672f40e 433
954c1994
GS
434/*
435=for apidoc Amn|SV|PL_sv_undef
436This is the C<undef> SV. Always refer to this as C<&PL_sv_undef>.
437
438=for apidoc Amn|SV|PL_sv_no
439This is the C<false> SV. See C<PL_sv_yes>. Always refer to this as
440C<&PL_sv_no>.
441
442=for apidoc Amn|SV|PL_sv_yes
443This is the C<true> SV. See C<PL_sv_no>. Always refer to this as
444C<&PL_sv_yes>.
445
446=cut
447*/
448
0672f40e
GS
449PERLVAR(Isv_undef, SV)
450PERLVAR(Isv_no, SV)
451PERLVAR(Isv_yes, SV)
452
0672f40e
GS
453PERLVAR(Isubname, SV *) /* name of current subroutine */
454
d95e864f 455PERLVAR(Isubline, I32) /* line this subroutine began on */
0672f40e 456PERLVAR(Imin_intro_pending, I32) /* start of vars to introduce */
d95e864f 457
0672f40e
GS
458PERLVAR(Imax_intro_pending, I32) /* end of vars to introduce */
459PERLVAR(Ipadix, I32) /* max used index in current "register" pad */
d95e864f 460
0672f40e 461PERLVAR(Ipadix_floor, I32) /* how low may inner block reset padix */
0672f40e 462
1d7c1841 463PERLVAR(Ihints, U32) /* pragma-tic compile-time flags */
0672f40e
GS
464
465PERLVAR(Idebug, VOL U32) /* flags given to -D switch */
466
f0cb02e3
NC
467/* Perl_Ibreakable_sub_generation_ptr was too long for VMS, hence "gen" */
468PERLVARI(Ibreakable_sub_gen, U32, 0)
469
bf9cdc68 470PERLVARI(Iamagic_generation, long, 0)
0672f40e
GS
471
472#ifdef USE_LOCALE_COLLATE
0672f40e 473PERLVAR(Icollation_name,char *) /* Name of current collation */
0672f40e
GS
474PERLVAR(Icollxfrm_base, Size_t) /* Basic overhead in *xfrm() */
475PERLVARI(Icollxfrm_mult,Size_t, 2) /* Expansion factor in *xfrm() */
9f7da6d5
NC
476PERLVARI(Icollation_ix, U32, 0) /* Collation generation index */
477PERLVARI(Icollation_standard, bool, TRUE)
478 /* Assume simple collation */
0672f40e
GS
479#endif /* USE_LOCALE_COLLATE */
480
9f7da6d5 481
edd11d75 482#if defined (PERL_UTF8_CACHE_ASSERT) || defined (DEBUGGING)
95ca8690 483# define PERL___I -1
9f7da6d5 484#else
7cd91da4 485# define PERL___I 1
9f7da6d5 486#endif
95ca8690
DM
487PERLVARI(Iutf8cache, I8, PERL___I) /* Is the utf8 caching code enabled? */
488#undef PERL___I
489
9f7da6d5 490
0672f40e
GS
491#ifdef USE_LOCALE_NUMERIC
492
0672f40e
GS
493PERLVARI(Inumeric_standard, bool, TRUE)
494 /* Assume simple numerics */
495PERLVARI(Inumeric_local, bool, TRUE)
496 /* Assume local numerics */
9f7da6d5 497PERLVAR(Inumeric_name, char *) /* Name of current numeric locale */
0672f40e
GS
498#endif /* !USE_LOCALE_NUMERIC */
499
500/* utf8 character classes */
501PERLVAR(Iutf8_alnum, SV *)
b8c5462f
JH
502PERLVAR(Iutf8_alnumc, SV *)
503PERLVAR(Iutf8_ascii, SV *)
0672f40e
GS
504PERLVAR(Iutf8_alpha, SV *)
505PERLVAR(Iutf8_space, SV *)
b8c5462f
JH
506PERLVAR(Iutf8_cntrl, SV *)
507PERLVAR(Iutf8_graph, SV *)
0672f40e
GS
508PERLVAR(Iutf8_digit, SV *)
509PERLVAR(Iutf8_upper, SV *)
510PERLVAR(Iutf8_lower, SV *)
511PERLVAR(Iutf8_print, SV *)
b8c5462f
JH
512PERLVAR(Iutf8_punct, SV *)
513PERLVAR(Iutf8_xdigit, SV *)
0672f40e
GS
514PERLVAR(Iutf8_mark, SV *)
515PERLVAR(Iutf8_toupper, SV *)
516PERLVAR(Iutf8_totitle, SV *)
517PERLVAR(Iutf8_tolower, SV *)
b4e400f9 518PERLVAR(Iutf8_tofold, SV *)
0672f40e 519PERLVAR(Ilast_swash_hv, HV *)
0672f40e
GS
520PERLVAR(Ilast_swash_tmps, U8 *)
521PERLVAR(Ilast_swash_slen, STRLEN)
9f7da6d5 522PERLVARA(Ilast_swash_key,10, U8)
d95e864f
NC
523PERLVAR(Ilast_swash_klen, U8) /* Only needs to store 0-10 */
524
525#ifdef FCRYPT
526PERLVARI(Icryptseen, bool, FALSE) /* has fast crypt() been initialized? */
527#endif
528
f0cb02e3 529PERLVAR(Ipad_reset_pending, bool) /* reset pad on next attempted alloc */
49947b44 530
d95e864f
NC
531PERLVARI(Iglob_index, int, 0)
532
0672f40e 533
5912531f 534PERLVAR(Iparser, yy_parser *) /* current parser state */
12fbd33b 535
c4a30c8c
NC
536/* Array of signal handlers, indexed by signal number, through which the C
537 signal handler dispatches. */
1d7c1841 538PERLVAR(Ipsig_ptr, SV**)
c4a30c8c 539/* Array of names of signals, indexed by signal number, for (re)use as the first
d525a7b2
NC
540 argument to a signal handler. Only one block of memory is allocated for
541 both psig_name and psig_ptr. */
c4a30c8c 542PERLVAR(Ipsig_name, SV**)
1d7c1841 543
c5be433b 544#if defined(PERL_IMPLICIT_SYS)
32e30700 545PERLVAR(IMem, struct IPerlMem*)
1d7c1841
GS
546PERLVAR(IMemShared, struct IPerlMem*)
547PERLVAR(IMemParse, struct IPerlMem*)
32e30700
GS
548PERLVAR(IEnv, struct IPerlEnv*)
549PERLVAR(IStdIO, struct IPerlStdIO*)
550PERLVAR(ILIO, struct IPerlLIO*)
551PERLVAR(IDir, struct IPerlDir*)
552PERLVAR(ISock, struct IPerlSock*)
553PERLVAR(IProc, struct IPerlProc*)
76e3520e 554#endif
1d7c1841 555
1d7c1841 556PERLVAR(Iptr_table, PTR_TBL_t*)
7d49f689 557PERLVARI(Ibeginav_save, AV*, NULL) /* save BEGIN{}s when compiling */
f180df80 558
fdda85ca 559PERLVAR(Ibody_arenas, void*) /* pointer to list of body-arenas */
93e68bfb 560
d95e864f 561
a453c169
JH
562#ifdef USE_LOCALE_NUMERIC
563
564PERLVAR(Inumeric_radix_sv, SV *) /* The radix separator if not '.' */
565
566#endif
ce08f86c 567
1fcf4c12 568#if defined(USE_ITHREADS)
e6853197
NC
569PERLVAR(Iregex_pad, SV**) /* Shortcut into the array of
570 regex_padav */
571PERLVAR(Iregex_padav, AV*) /* All regex objects, indexed via the
572 values in op_pmoffset of pmop.
402d2eb1
NC
573 Entry 0 is an SV whose PV is a
574 "packed" list of IVs listing
e6853197 575 the now-free slots in the array */
1fcf4c12
AB
576#endif
577
ea68fd67
NC
578#ifdef USE_REENTRANT_API
579PERLVAR(Ireentrant_buffer, REENTR*) /* here we store the _r buffers */
f5a82810
JH
580#endif
581
53e06cf0
SC
582PERLVAR(Icustom_op_names, HV*) /* Names of user defined ops */
583PERLVAR(Icustom_op_descs, HV*) /* Descriptions of user defined ops */
19e8ce8e 584
a1ea730d
NIS
585#ifdef PERLIO_LAYERS
586PERLVARI(Iperlio, PerlIO *,NULL)
3a1ee7e8
NIS
587PERLVARI(Iknown_layers, PerlIO_list_t *,NULL)
588PERLVARI(Idef_layerlist, PerlIO_list_t *,NULL)
a1ea730d
NIS
589#endif
590
a0714e2c 591PERLVARI(Iencoding, SV*, NULL) /* character encoding */
0a378802 592
128e8167 593PERLVAR(Idebug_pad, struct perl_debug_pad) /* always needed because of the re extension */
ce333219 594
82686b01
JH
595PERLVAR(Iutf8_idstart, SV *)
596PERLVAR(Iutf8_idcont, SV *)
597
147f47de
AB
598PERLVAR(Isort_RealCmp, SVCOMPARE_t)
599
7d49f689 600PERLVARI(Icheckav_save, AV*, NULL) /* save CHECK{}s when compiling */
3c10abe3 601PERLVARI(Iunitcheckav_save, AV*, NULL) /* save UNITCHECK{}s when compiling */
ece599bd 602
5311654c
JH
603PERLVARI(Iclocktick, long, 0) /* this many times() ticks in a second */
604
edab1aa3
JH
605PERLVARI(Iin_load_module, int, 0) /* to prevent recursions in PerlIO_find_layer */
606
a05d7ebb
JH
607PERLVAR(Iunicode, U32) /* Unicode features: $ENV{PERL_UNICODE} or -C */
608
4ffa73a3
JH
609PERLVAR(Isignals, U32) /* Using which pre-5.8 signals */
610
57c6e6d2
JH
611PERLVAR(Ireentrant_retint, int) /* Integer return value from reentrant functions */
612
9f7da6d5
NC
613PERLVAR(Istashcache, HV *) /* Cache to speed up S_method_common */
614
15a5279a
JH
615/* Hooks to shared SVs and locks. */
616PERLVARI(Isharehook, share_proc_t, MEMBER_TO_FPTR(Perl_sv_nosharing))
d5b2b27b 617PERLVARI(Ilockhook, share_proc_t, MEMBER_TO_FPTR(Perl_sv_nosharing))
d0647d4e
NC
618#ifdef NO_MATHOMS
619# define PERL_UNLOCK_HOOK Perl_sv_nosharing
620#else
621/* This reference ensures that the mathoms are linked with perl */
622# define PERL_UNLOCK_HOOK Perl_sv_nounlocking
623#endif
624PERLVARI(Iunlockhook, share_proc_t, MEMBER_TO_FPTR(PERL_UNLOCK_HOOK))
625
15a5279a
JH
626PERLVARI(Ithreadhook, thrhook_proc_t, MEMBER_TO_FPTR(Perl_nothreadhook))
627
504f80c1
JH
628PERLVARI(Ihash_seed, UV, 0) /* Hash initializer */
629
008fb0c0 630PERLVARI(Irehash_seed, UV, 0) /* 582 hash initializer */
4b5190b5 631
ba6d381e 632PERLVARI(Iisarev, HV*, NULL) /* Reverse map of @ISA dependencies */
f16dd614 633
ffee3ff6
NC
634/* The last unconditional member of the interpreter structure when 5.10.0 was
635 released. The offset of the end of this is baked into a global variable in
636 any shared perl library which will allow a sanity test in future perl
637 releases. */
638#define PERL_LAST_5_10_0_INTERP_MEMBER Iisarev
639
f16dd614 640#ifdef PERL_IMPLICIT_CONTEXT
4c901e72 641PERLVARI(Imy_cxt_size, int, 0) /* size of PL_my_cxt_list */
f16dd614 642PERLVARI(Imy_cxt_list, void **, NULL) /* per-module array of MY_CXT pointers */
ba6d381e 643# ifdef PERL_GLOBAL_STRUCT_PRIVATE
53d44271 644PERLVARI(Imy_cxt_keys, const char **, NULL) /* per-module array of pointers to MY_CXT_KEY constants */
ba6d381e 645# endif
f16dd614
DM
646#endif
647
7cb608b5
NC
648#ifdef PERL_TRACK_MEMPOOL
649/* For use with the memory debugging code in util.c */
650PERLVAR(Imemory_debug_header, struct perl_memory_debug_header)
651#endif
652
ba6d381e
NC
653#ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
654/* File descriptor to talk to the child which dumps scalars. */
655PERLVARI(Idumper_fd, int, -1)
656#endif
657
658/* Stores the PPID */
659#ifdef THREADS_HAVE_PIDS
660PERLVARI(Ippid, IV, 0)
661#endif
662
663#ifdef PERL_MAD
664PERLVARI(Imadskills, bool, FALSE) /* preserve all syntactic info */
665 /* (MAD = Misc Attribute Decoration) */
666PERLVARI(Ixmlfp, PerlIO *,NULL)
667#endif
668
669#ifdef PL_OP_SLAB_ALLOC
670PERLVAR(IOpPtr,I32 **)
671PERLVARI(IOpSpace,I32,0)
672PERLVAR(IOpSlab,I32 *)
673#endif
674
f1fac472
NC
675#ifdef PERL_DEBUG_READONLY_OPS
676PERLVARI(Islabs, I32**, NULL) /* Array of slabs that have been allocated */
677PERLVARI(Islab_count, U32, 0) /* Size of the array */
678#endif
679
eba16661
JH
680/* Can shared object be destroyed */
681PERLVARI(Idestroyhook, destroyable_proc_t, MEMBER_TO_FPTR(Perl_sv_destroyable))
682
d7a2c63c
MHM
683#ifdef DEBUG_LEAKING_SCALARS
684PERLVARI(Isv_serial, U32, 0) /* SV serial number, used in sv.c */
685#endif
686
a3e6e81e
NC
687/* Register of known Method Resolution Orders.
688 What this actually points to is an implementation detail (it may change to
689 a structure incorporating a reference count - use mro_get_from_name to
690 retrieve a C<struct mro_alg *> */
691PERLVAR(Iregistered_mros, HV *)
692
157b3822
NC
693/* If you are adding a U8 or U16, check to see if there are 'Space' comments
694 * above on where there are gaps which currently will be structure padding. */
d95e864f
NC
695
696/* Within a stable branch, new variables must be added to the very end, before
697 * this comment, for binary compatibility (the offsets of the old members must
698 * not change).
b83cd129 699 * (Don't forget to add your variable also to perl_clone()!)
e3acbfda 700 * XSUB.h provides wrapper functions via perlapi.h that make this
b83cd129
JH
701 * irrelevant, but not all code may be expected to #include XSUB.h.
702 */