move PL_rsfp into the PL_parser struct
[p5sagit/p5-mst-13.2.git] / intrpvar.h
1 /***********************************************/
2 /* Global only to current interpreter instance */
3 /***********************************************/
4
5 /* Don't forget to re-run embed.pl to propagate changes! */
6
7 /* New variables must be added to the very end for binary compatibility.
8  * XSUB.h provides wrapper functions via perlapi.h that make this
9  * irrelevant, but not all code may be expected to #include XSUB.h. */
10
11 /* Don't forget to add your variable also to perl_clone()! */
12
13 /* The 'I' prefix is only needed for vars that need appropriate #defines
14  * generated when built with or without MULTIPLICITY.  It is also used
15  * to generate the appropriate export list for win32.
16  *
17  * When building without MULTIPLICITY, these variables will be truly global. */
18
19
20 /* For historical reasons this file follows thrdvar.h into the interpeter
21    struct, and that file currently ends with 7 bytes of variables, so putting
22    one last byte here is good for alignment.  */
23
24 /* This value may be set when embedding for full cleanup  */
25 /* 0=none, 1=full, 2=full with checks */
26 PERLVARI(Iperl_destruct_level,  U8,     0)
27
28 PERLVAR(Iperldb,        U32)
29
30 /* pseudo environmental stuff */
31 PERLVAR(Iorigargc,      int)
32 PERLVAR(Iorigargv,      char **)
33 PERLVAR(Ienvgv,         GV *)
34 PERLVAR(Iincgv,         GV *)
35 PERLVAR(Ihintgv,        GV *)
36 PERLVAR(Iorigfilename,  char *)
37 PERLVAR(Idiehook,       SV *)
38 PERLVAR(Iwarnhook,      SV *)
39
40 /* switches */
41 PERLVAR(Ipatchlevel,    SV *)
42 PERLVAR(Ilocalpatches,  const char * const *)
43 PERLVARI(Isplitstr,     const char *, " ")
44
45 PERLVAR(Iminus_c,       bool)
46 PERLVAR(Ipreprocess,    bool)
47 PERLVAR(Iminus_n,       bool)
48 PERLVAR(Iminus_p,       bool)
49 PERLVAR(Iminus_l,       bool)
50 PERLVAR(Iminus_a,       bool)
51 PERLVAR(Iminus_F,       bool)
52 PERLVAR(Idoswitches,    bool)
53
54 PERLVAR(Iminus_E,       bool)
55
56 /*
57 =head1 Global Variables
58
59 =for apidoc mn|bool|PL_dowarn
60
61 The C variable which corresponds to Perl's $^W warning variable.
62
63 =cut
64 */
65
66 PERLVAR(Idowarn,        U8)
67 PERLVAR(Idoextract,     bool)
68 PERLVAR(Isawampersand,  bool)           /* must save all match strings */
69 PERLVAR(Iunsafe,        bool)
70 PERLVAR(Iexit_flags,    U8)             /* was exit() unexpected, etc. */
71 PERLVAR(Isrand_called,  bool)
72 /* Part of internal state, but makes the 16th 1 byte variable in a row.  */
73 PERLVAR(Itainting,      bool)           /* doing taint checks */
74 PERLVAR(Iinplace,       char *)
75 PERLVAR(Ie_script,      SV *)
76
77 /* magical thingies */
78 PERLVAR(Ibasetime,      Time_t)         /* $^T */
79 PERLVAR(Iformfeed,      SV *)           /* $^L */
80
81
82 PERLVARI(Imaxsysfd,     I32,    MAXSYSFD)
83                                         /* top fd to pass to subprocesses */
84 PERLVAR(Istatusvalue,   I32)            /* $? */
85 #ifdef VMS
86 PERLVAR(Istatusvalue_vms,U32)
87 #else
88 PERLVAR(Istatusvalue_posix,I32)
89 #endif
90
91 #ifdef CSH
92 PERLVARI(Icshlen,       I32,    0)
93 PERLVARI(Icshname,      const char *,   CSH)
94 #endif
95
96 /* shortcuts to various I/O objects */
97 PERLVAR(Istdingv,       GV *)
98 PERLVAR(Istderrgv,      GV *)
99 PERLVAR(Idefgv,         GV *)
100 PERLVAR(Iargvgv,        GV *)
101 PERLVAR(Iargvoutgv,     GV *)
102 PERLVAR(Iargvout_stack, AV *)
103
104 /* shortcuts to regexp stuff */
105 /* this one needs to be moved to thrdvar.h and accessed via
106  * find_threadsv() when USE_5005THREADS */
107 PERLVAR(Ireplgv,        GV *)
108
109 /* shortcuts to misc objects */
110 PERLVAR(Ierrgv,         GV *)
111
112 /* shortcuts to debugging objects */
113 PERLVAR(IDBgv,          GV *)
114 PERLVAR(IDBline,        GV *)
115
116 /*
117 =for apidoc mn|GV *|PL_DBsub
118 When Perl is run in debugging mode, with the B<-d> switch, this GV contains
119 the SV which holds the name of the sub being debugged.  This is the C
120 variable which corresponds to Perl's $DB::sub variable.  See
121 C<PL_DBsingle>.
122
123 =for apidoc mn|SV *|PL_DBsingle
124 When Perl is run in debugging mode, with the B<-d> switch, this SV is a
125 boolean which indicates whether subs are being single-stepped.
126 Single-stepping is automatically turned on after every step.  This is the C
127 variable which corresponds to Perl's $DB::single variable.  See
128 C<PL_DBsub>.
129
130 =for apidoc mn|SV *|PL_DBtrace
131 Trace variable used when Perl is run in debugging mode, with the B<-d>
132 switch.  This is the C variable which corresponds to Perl's $DB::trace
133 variable.  See C<PL_DBsingle>.
134
135 =cut
136 */
137
138 PERLVAR(IDBsub,         GV *)
139 PERLVAR(IDBsingle,      SV *)
140 PERLVAR(IDBtrace,       SV *)
141 PERLVAR(IDBsignal,      SV *)
142 PERLVAR(Ilineary,       AV *)           /* lines of script for debugger */
143 PERLVAR(Idbargs,        AV *)           /* args to call listed by caller function */
144
145 /* symbol tables */
146 PERLVAR(Idebstash,      HV *)           /* symbol table for perldb package */
147 PERLVAR(Iglobalstash,   HV *)           /* global keyword overrides imported here */
148 PERLVAR(Icurstname,     SV *)           /* name of current package */
149 PERLVAR(Ibeginav,       AV *)           /* names of BEGIN subroutines */
150 PERLVAR(Iendav,         AV *)           /* names of END subroutines */
151 PERLVAR(Iunitcheckav,   AV *)           /* names of UNITCHECK subroutines */
152 PERLVAR(Icheckav,       AV *)           /* names of CHECK subroutines */
153 PERLVAR(Iinitav,        AV *)           /* names of INIT subroutines */
154 PERLVAR(Istrtab,        HV *)           /* shared string table */
155 PERLVARI(Isub_generation,U32,1)         /* incr to invalidate method cache */
156
157 /* funky return mechanisms */
158 PERLVAR(Iforkprocess,   int)            /* so do_open |- can return proc# */
159
160 /* memory management */
161 PERLVAR(Isv_count,      I32)            /* how many SV* are currently allocated */
162 PERLVAR(Isv_objcount,   I32)            /* how many objects are currently allocated */
163 PERLVAR(Isv_root,       SV*)            /* storage for SVs belonging to interp */
164 PERLVAR(Isv_arenaroot,  SV*)            /* list of areas for garbage collection */
165
166 /* subprocess state */
167 PERLVAR(Ifdpid,         AV *)           /* keep fd-to-pid mappings for my_popen */
168
169 /* internal state */
170 PERLVARI(Iop_mask,      char *, NULL)   /* masked operations for safe evals */
171
172 /* current interpreter roots */
173 PERLVAR(Imain_cv,       CV *)
174 PERLVAR(Imain_root,     OP *)
175 PERLVAR(Imain_start,    OP *)
176 PERLVAR(Ieval_root,     OP *)
177 PERLVAR(Ieval_start,    OP *)
178
179 /* runtime control stuff */
180 PERLVARI(Icurcopdb,     COP *,  NULL)
181
182 PERLVAR(Ifilemode,      int)            /* so nextargv() can preserve mode */
183 PERLVAR(Ilastfd,        int)            /* what to preserve mode on */
184 PERLVAR(Ioldname,       char *)         /* what to preserve mode on */
185 PERLVAR(IArgv,          char **)        /* stuff to free from do_aexec, vfork safe */
186 PERLVAR(ICmd,           char *)         /* stuff to free from do_aexec, vfork safe */
187 PERLVAR(Ipreambleav,    AV *)
188 PERLVAR(Imess_sv,       SV *)
189 PERLVAR(Iors_sv,        SV *)           /* output record separator $\ */
190 /* statics moved here for shared library purposes */
191 PERLVARI(Igensym,       I32,    0)      /* next symbol for getsym() to define */
192 PERLVAR(Iin_my,         U16)            /* we're compiling a "my" (or "our") declaration */
193 PERLVARI(Ilaststype,    U16,    OP_STAT)
194 PERLVARI(Ilaststatval,  int,    -1)
195
196 /* interpreter atexit processing */
197 PERLVARI(Iexitlistlen,  I32, 0)         /* length of same */
198 PERLVARI(Iexitlist,     PerlExitListEntry *, NULL)
199                                         /* list of exit functions */
200
201 /*
202 =for apidoc Amn|HV*|PL_modglobal
203
204 C<PL_modglobal> is a general purpose, interpreter global HV for use by
205 extensions that need to keep information on a per-interpreter basis.
206 In a pinch, it can also be used as a symbol table for extensions
207 to share data among each other.  It is a good idea to use keys
208 prefixed by the package name of the extension that owns the data.
209
210 =cut
211 */
212
213 PERLVAR(Imodglobal,     HV *)           /* per-interp module data */
214
215 /* these used to be in global before 5.004_68 */
216 PERLVARI(Iprofiledata,  U32 *,  NULL)   /* table of ops, counts */
217 PERLVARI(Irsfp_filters, AV *,   NULL)   /* keeps active source filters */
218
219 PERLVAR(Icompiling,     COP)            /* compiling/done executing marker */
220
221 PERLVAR(Icompcv,        CV *)           /* currently compiling subroutine */
222 PERLVAR(Icomppad,       AV *)           /* storage for lexically scoped temporaries */
223 PERLVAR(Icomppad_name,  AV *)           /* variable names for "my" variables */
224 PERLVAR(Icomppad_name_fill,     I32)    /* last "introduced" variable offset */
225 PERLVAR(Icomppad_name_floor,    I32)    /* start of vars in innermost block */
226
227 #ifdef HAVE_INTERP_INTERN
228 PERLVAR(Isys_intern,    struct interp_intern)
229                                         /* platform internals */
230 #endif
231
232 /* more statics moved here */
233 PERLVAR(IDBcv,          CV *)           /* from perl.c */
234 PERLVARI(Igeneration,   int,    100)    /* from op.c */
235
236 PERLVARI(Iin_clean_objs,bool,    FALSE) /* from sv.c */
237 PERLVARI(Iin_clean_all, bool,    FALSE) /* from sv.c */
238 PERLVAR(Inomemok,       bool)           /* let malloc context handle nomem */
239 PERLVARI(Isavebegin,     bool,  FALSE)  /* save BEGINs for compiler     */
240
241 PERLVAR(Iuid,           Uid_t)          /* current real user id */
242 PERLVAR(Ieuid,          Uid_t)          /* current effective user id */
243 PERLVAR(Igid,           Gid_t)          /* current real group id */
244 PERLVAR(Iegid,          Gid_t)          /* current effective group id */
245 PERLVARI(Ian,           U32,    0)      /* malloc sequence number */
246 PERLVARI(Icop_seqmax,   U32,    0)      /* statement sequence number */
247 PERLVARI(Ievalseq,      U32,    0)      /* eval sequence number */
248 PERLVAR(Iorigalen,      U32)
249 PERLVAR(Iorigenviron,   char **)
250 #ifdef PERL_USES_PL_PIDSTATUS
251 PERLVAR(Ipidstatus,     HV *)           /* pid-to-status mappings for waitpid */
252 #endif
253 PERLVAR(Iosname,        char *)         /* operating system */
254
255 PERLVAR(Isighandlerp,   Sighandler_t)
256
257 PERLVARA(Ibody_roots,   PERL_ARENA_ROOTS_SIZE, void*) /* array of body roots */
258
259 PERLVAR(Inice_chunk,    char *)         /* a nice chunk of memory to reuse */
260 PERLVAR(Inice_chunk_size,       U32)    /* how nice the chunk of memory is */
261
262 PERLVARI(Imaxo, int,    MAXO)           /* maximum number of ops */
263
264 PERLVARI(Irunops,       runops_proc_t,  MEMBER_TO_FPTR(RUNOPS_DEFAULT))
265
266 PERLVARA(Itokenbuf,256, char)
267
268 /*
269 =for apidoc Amn|SV|PL_sv_undef
270 This is the C<undef> SV.  Always refer to this as C<&PL_sv_undef>.
271
272 =for apidoc Amn|SV|PL_sv_no
273 This is the C<false> SV.  See C<PL_sv_yes>.  Always refer to this as
274 C<&PL_sv_no>.
275
276 =for apidoc Amn|SV|PL_sv_yes
277 This is the C<true> SV.  See C<PL_sv_no>.  Always refer to this as
278 C<&PL_sv_yes>.
279
280 =cut
281 */
282
283 PERLVAR(Isv_undef,      SV)
284 PERLVAR(Isv_no,         SV)
285 PERLVAR(Isv_yes,        SV)
286
287 PERLVAR(Ierror_count,   U8)             /* how many errors so far, max 10 */
288 PERLVARI(Icv_has_eval, bool, FALSE) /* PL_compcv includes an entereval or similar */
289 /* Space for two more U8 here without increasing the structure size */
290
291 PERLVAR(Imulti_end,     I32)            /* last line of multi-line string */
292
293 PERLVAR(Isubname,       SV *)           /* name of current subroutine */
294
295 PERLVAR(Isubline,       I32)            /* line this subroutine began on */
296 PERLVAR(Imin_intro_pending,     I32)    /* start of vars to introduce */
297
298 PERLVAR(Imax_intro_pending,     I32)    /* end of vars to introduce */
299 PERLVAR(Ipadix,         I32)            /* max used index in current "register" pad */
300
301 PERLVAR(Ipadix_floor,   I32)            /* how low may inner block reset padix */
302 PERLVAR(Ipad_reset_pending,     I32)    /* reset pad on next attempted alloc */
303
304 PERLVAR(Iin_my_stash,   HV *)           /* declared class of this "my" declaration */
305
306 PERLVAR(Ihints,         U32)            /* pragma-tic compile-time flags */
307
308 PERLVAR(Idebug,         VOL U32)        /* flags given to -D switch */
309
310 PERLVARI(Iamagic_generation,    long,   0)
311
312 #ifdef USE_LOCALE_COLLATE
313 PERLVAR(Icollation_name,char *)         /* Name of current collation */
314 PERLVAR(Icollxfrm_base, Size_t)         /* Basic overhead in *xfrm() */
315 PERLVARI(Icollxfrm_mult,Size_t, 2)      /* Expansion factor in *xfrm() */
316 PERLVARI(Icollation_ix, U32,    0)      /* Collation generation index */
317 PERLVARI(Icollation_standard, bool,     TRUE)
318                                         /* Assume simple collation */
319 #endif /* USE_LOCALE_COLLATE */
320
321
322 #ifdef PERL_UTF8_CACHE_ASSERT
323 PERLVARI(Iutf8cache, I8, -1)    /* Is the utf8 caching code enabled? */
324 #else
325 PERLVARI(Iutf8cache, I8, 1)     /* Is the utf8 caching code enabled? */
326 #endif
327
328 #ifdef USE_LOCALE_NUMERIC
329
330 PERLVARI(Inumeric_standard,     bool,   TRUE)
331                                         /* Assume simple numerics */
332 PERLVARI(Inumeric_local,        bool,   TRUE)
333                                         /* Assume local numerics */
334 PERLVAR(Inumeric_name,  char *)         /* Name of current numeric locale */
335 #endif /* !USE_LOCALE_NUMERIC */
336
337 /* utf8 character classes */
338 PERLVAR(Iutf8_alnum,    SV *)
339 PERLVAR(Iutf8_alnumc,   SV *)
340 PERLVAR(Iutf8_ascii,    SV *)
341 PERLVAR(Iutf8_alpha,    SV *)
342 PERLVAR(Iutf8_space,    SV *)
343 PERLVAR(Iutf8_cntrl,    SV *)
344 PERLVAR(Iutf8_graph,    SV *)
345 PERLVAR(Iutf8_digit,    SV *)
346 PERLVAR(Iutf8_upper,    SV *)
347 PERLVAR(Iutf8_lower,    SV *)
348 PERLVAR(Iutf8_print,    SV *)
349 PERLVAR(Iutf8_punct,    SV *)
350 PERLVAR(Iutf8_xdigit,   SV *)
351 PERLVAR(Iutf8_mark,     SV *)
352 PERLVAR(Iutf8_toupper,  SV *)
353 PERLVAR(Iutf8_totitle,  SV *)
354 PERLVAR(Iutf8_tolower,  SV *)
355 PERLVAR(Iutf8_tofold,   SV *)
356 PERLVAR(Ilast_swash_hv, HV *)
357 PERLVAR(Ilast_swash_tmps,       U8 *)
358 PERLVAR(Ilast_swash_slen,       STRLEN)
359 PERLVARA(Ilast_swash_key,10,    U8)
360 PERLVAR(Ilast_swash_klen,       U8)     /* Only needs to store 0-10  */
361
362 #ifdef FCRYPT
363 PERLVARI(Icryptseen,    bool,   FALSE)  /* has fast crypt() been initialized? */
364 #endif
365
366 PERLVARI(Iglob_index,   int,    0)
367
368
369 PERLVAR(Iparser,        yy_parser *)    /* current parser state */
370
371 PERLVAR(Ibitcount,      char *)
372
373 PERLVAR(Ipsig_ptr, SV**)
374 PERLVAR(Ipsig_name, SV**)
375
376 #if defined(PERL_IMPLICIT_SYS)
377 PERLVAR(IMem,           struct IPerlMem*)
378 PERLVAR(IMemShared,     struct IPerlMem*)
379 PERLVAR(IMemParse,      struct IPerlMem*)
380 PERLVAR(IEnv,           struct IPerlEnv*)
381 PERLVAR(IStdIO,         struct IPerlStdIO*)
382 PERLVAR(ILIO,           struct IPerlLIO*)
383 PERLVAR(IDir,           struct IPerlDir*)
384 PERLVAR(ISock,          struct IPerlSock*)
385 PERLVAR(IProc,          struct IPerlProc*)
386 #endif
387
388 PERLVAR(Iptr_table,     PTR_TBL_t*)
389 PERLVARI(Ibeginav_save, AV*, NULL)      /* save BEGIN{}s when compiling */
390
391 PERLVAR(Ibody_arenas, void*) /* pointer to list of body-arenas */
392
393 PERLVAR(Ipsig_pend, int *)              /* per-signal "count" of pending */
394 PERLVARI(Isig_pending, int,0)           /* Number if highest signal pending */
395
396
397 PERLVAR(Itaint_warn,    bool)      /* taint warns instead of dying */
398 PERLVAR(Iutf8locale,    bool)           /* utf8 locale detected */
399 PERLVARI(Ihash_seed_set, bool, FALSE)           /* Hash initialized? */
400 PERLVARI(Irehash_seed_set, bool, FALSE) /* 582 hash initialized? */
401
402 #ifdef USE_LOCALE_NUMERIC
403
404 PERLVAR(Inumeric_radix_sv,      SV *)   /* The radix separator if not '.' */
405
406 #endif
407
408 #if defined(USE_ITHREADS)
409 PERLVAR(Iregex_pad,     SV**)           /* All regex objects */
410 PERLVAR(Iregex_padav,   AV*)            /* All regex objects */
411
412 #endif
413
414 #ifdef USE_REENTRANT_API
415 PERLVAR(Ireentrant_buffer, REENTR*)     /* here we store the _r buffers */
416 #endif
417
418
419 #ifdef PERL_MAD
420 PERLVARI(Imadskills,    bool, FALSE)    /* preserve all syntactic info */
421                                         /* (MAD = Misc Attribute Decoration) */
422 PERLVARI(Ixmlfp, PerlIO *,NULL)
423 #endif
424
425 PERLVAR(Icustom_op_names, HV*)  /* Names of user defined ops */
426 PERLVAR(Icustom_op_descs, HV*)  /* Descriptions of user defined ops */
427
428 #ifdef PERLIO_LAYERS
429 PERLVARI(Iperlio, PerlIO *,NULL)
430 PERLVARI(Iknown_layers, PerlIO_list_t *,NULL)
431 PERLVARI(Idef_layerlist, PerlIO_list_t *,NULL)
432 #endif
433
434 PERLVARI(Iencoding,     SV*, NULL)              /* character encoding */
435
436 PERLVAR(Idebug_pad,     struct perl_debug_pad)  /* always needed because of the re extension */
437
438 #ifdef PL_OP_SLAB_ALLOC
439 PERLVAR(IOpPtr,I32 **)
440 PERLVARI(IOpSpace,I32,0)
441 PERLVAR(IOpSlab,I32 *)
442 #endif
443
444 PERLVAR(Iutf8_idstart,  SV *)
445 PERLVAR(Iutf8_idcont,   SV *)
446
447 PERLVAR(Isort_RealCmp,  SVCOMPARE_t)
448
449 PERLVARI(Icheckav_save, AV*, NULL)      /* save CHECK{}s when compiling */
450 PERLVARI(Iunitcheckav_save, AV*, NULL)  /* save UNITCHECK{}s when compiling */
451
452 PERLVARI(Iclocktick, long, 0)   /* this many times() ticks in a second */
453
454 PERLVARI(Iin_load_module, int, 0)       /* to prevent recursions in PerlIO_find_layer */
455
456 PERLVAR(Iunicode, U32)  /* Unicode features: $ENV{PERL_UNICODE} or -C */
457
458 PERLVAR(Isignals, U32)  /* Using which pre-5.8 signals */
459
460 PERLVAR(Ireentrant_retint, int) /* Integer return value from reentrant functions */
461
462 PERLVAR(Istashcache,    HV *)           /* Cache to speed up S_method_common */
463
464 /* Hooks to shared SVs and locks. */
465 PERLVARI(Isharehook,    share_proc_t,   MEMBER_TO_FPTR(Perl_sv_nosharing))
466 PERLVARI(Ilockhook,     share_proc_t,   MEMBER_TO_FPTR(Perl_sv_nosharing))
467 #ifdef NO_MATHOMS
468 #  define PERL_UNLOCK_HOOK Perl_sv_nosharing
469 #else
470 /* This reference ensures that the mathoms are linked with perl */
471 #  define PERL_UNLOCK_HOOK Perl_sv_nounlocking
472 #endif
473 PERLVARI(Iunlockhook,   share_proc_t,   MEMBER_TO_FPTR(PERL_UNLOCK_HOOK))
474
475 PERLVARI(Ithreadhook,   thrhook_proc_t, MEMBER_TO_FPTR(Perl_nothreadhook))
476
477 /* Force inclusion of both runops options */
478 PERLVARI(Irunops_std,   runops_proc_t,  MEMBER_TO_FPTR(Perl_runops_standard))
479 PERLVARI(Irunops_dbg,   runops_proc_t,  MEMBER_TO_FPTR(Perl_runops_debug))
480
481 /* Stores the PPID */
482 #ifdef THREADS_HAVE_PIDS
483 PERLVARI(Ippid,         IV,             0)
484 #endif
485
486 PERLVARI(Ihash_seed, UV, 0)             /* Hash initializer */
487
488 PERLVAR(IDBassertion,   SV *)
489
490 PERLVARI(Irehash_seed, UV, 0)           /* 582 hash initializer */
491
492 #ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
493 /* File descriptor to talk to the child which dumps scalars.  */
494 PERLVARI(Idumper_fd, int, -1)
495 #endif
496
497 #ifdef PERL_IMPLICIT_CONTEXT
498 PERLVARI(Imy_cxt_size, int, 0)          /* size of PL_my_cxt_list */
499 PERLVARI(Imy_cxt_list, void **, NULL) /* per-module array of MY_CXT pointers */
500 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
501 PERLVARI(Imy_cxt_keys, const char **, NULL) /* per-module array of pointers to MY_CXT_KEY constants */
502 #endif
503 #endif
504
505 #ifdef PERL_TRACK_MEMPOOL
506 /* For use with the memory debugging code in util.c  */
507 PERLVAR(Imemory_debug_header, struct perl_memory_debug_header)
508 #endif
509
510 #ifdef PERL_DEBUG_READONLY_OPS
511 PERLVARI(Islabs, I32**, NULL)   /* Array of slabs that have been allocated */
512 PERLVARI(Islab_count, U32, 0)   /* Size of the array */
513 #endif
514
515 PERLVARI(Iisarev, HV*, NULL) /* Reverse map of @ISA dependencies */
516
517 /* If you are adding a U8 or U16, see the 'Space' comments above on where
518  * there are gaps which currently will be structure padding.  */
519
520 /* Within a stable branch, new variables must be added to the very end, before
521  * this comment, for binary compatibility (the offsets of the old members must
522  *  not change).
523  * (Don't forget to add your variable also to perl_clone()!)
524  * XSUB.h provides wrapper functions via perlapi.h that make this
525  * irrelevant, but not all code may be expected to #include XSUB.h.
526  */