5.6.0 Patch for EPOC
[p5sagit/p5-mst-13.2.git] / intrpvar.h
CommitLineData
49f531da 1/***********************************************/
2/* Global only to current interpreter instance */
3/***********************************************/
4
cb68f92d 5/* Don't forget to re-run embed.pl to propagate changes! */
6
7/* The 'I' prefix is only needed for vars that need appropriate #defines
8 * generated when built with or without MULTIPLICITY. It is also used
9 * to generate the appropriate export list for win32.
10 *
14dd3ad8 11 * When building without MULTIPLICITY, these variables will be truly global. */
cb68f92d 12
49f531da 13/* pseudo environmental stuff */
cb68f92d 14PERLVAR(Iorigargc, int)
15PERLVAR(Iorigargv, char **)
16PERLVAR(Ienvgv, GV *)
cb68f92d 17PERLVAR(Iincgv, GV *)
b3ac6de7 18PERLVAR(Ihintgv, GV *)
cb68f92d 19PERLVAR(Iorigfilename, char *)
20PERLVAR(Idiehook, SV *)
21PERLVAR(Iwarnhook, SV *)
1d7c1841 22
23/* switches */
cb68f92d 24PERLVAR(Iminus_c, bool)
a7cb1f99 25PERLVAR(Ipatchlevel, SV *)
cb68f92d 26PERLVAR(Ilocalpatches, char **)
27PERLVARI(Isplitstr, char *, " ")
28PERLVAR(Ipreprocess, bool)
29PERLVAR(Iminus_n, bool)
30PERLVAR(Iminus_p, bool)
31PERLVAR(Iminus_l, bool)
32PERLVAR(Iminus_a, bool)
33PERLVAR(Iminus_F, bool)
34PERLVAR(Idoswitches, bool)
954c1994 35
36/*
37=for apidoc Amn|bool|PL_dowarn
38
39The C variable which corresponds to Perl's $^W warning variable.
40
41=cut
42*/
43
d41ff1b8 44PERLVAR(Idowarn, U8)
46487f74 45PERLVAR(Iwidesyscalls, bool) /* wide system calls */
cb68f92d 46PERLVAR(Idoextract, bool)
49f531da 47PERLVAR(Isawampersand, bool) /* must save all match strings */
cb68f92d 48PERLVAR(Iunsafe, bool)
49PERLVAR(Iinplace, char *)
50PERLVAR(Ie_script, SV *)
51PERLVAR(Iperldb, U32)
d4cce5f1 52
1d7c1841 53/* This value may be set when embedding for full cleanup */
d4cce5f1 54/* 0=none, 1=full, 2=full with checks */
cb68f92d 55PERLVARI(Iperl_destruct_level, int, 0)
49f531da 56
57/* magical thingies */
58PERLVAR(Ibasetime, Time_t) /* $^T */
59PERLVAR(Iformfeed, SV *) /* $^L */
d4cce5f1 60
61
cb68f92d 62PERLVARI(Imaxsysfd, I32, MAXSYSFD)
63 /* top fd to pass to subprocesses */
49f531da 64PERLVAR(Imultiline, int) /* $*--do strings hold >1 line? */
65PERLVAR(Istatusvalue, I32) /* $? */
1d7c1841 66PERLVAR(Iexit_flags, U8) /* was exit() unexpected, etc. */
49f531da 67#ifdef VMS
cb68f92d 68PERLVAR(Istatusvalue_vms,U32)
49f531da 69#endif
70
49f531da 71/* shortcuts to various I/O objects */
cb68f92d 72PERLVAR(Istdingv, GV *)
bf49b057 73PERLVAR(Istderrgv, GV *)
cb68f92d 74PERLVAR(Idefgv, GV *)
75PERLVAR(Iargvgv, GV *)
76PERLVAR(Iargvoutgv, GV *)
1d7c1841 77PERLVAR(Iargvout_stack, AV *)
49f531da 78
79/* shortcuts to regexp stuff */
5c0ca799 80/* this one needs to be moved to thrdvar.h and accessed via
81 * find_threadsv() when USE_THREADS */
cb68f92d 82PERLVAR(Ireplgv, GV *)
49f531da 83
84/* shortcuts to misc objects */
cb68f92d 85PERLVAR(Ierrgv, GV *)
49f531da 86
87/* shortcuts to debugging objects */
cb68f92d 88PERLVAR(IDBgv, GV *)
89PERLVAR(IDBline, GV *)
954c1994 90
91/*
92=for apidoc Amn|GV *|PL_DBsub
93When Perl is run in debugging mode, with the B<-d> switch, this GV contains
94the SV which holds the name of the sub being debugged. This is the C
95variable which corresponds to Perl's $DB::sub variable. See
96C<PL_DBsingle>.
97
98=for apidoc Amn|SV *|PL_DBsingle
99When Perl is run in debugging mode, with the B<-d> switch, this SV is a
100boolean which indicates whether subs are being single-stepped.
101Single-stepping is automatically turned on after every step. This is the C
102variable which corresponds to Perl's $DB::single variable. See
103C<PL_DBsub>.
104
105=for apidoc Amn|SV *|PL_DBtrace
106Trace variable used when Perl is run in debugging mode, with the B<-d>
107switch. This is the C variable which corresponds to Perl's $DB::trace
108variable. See C<PL_DBsingle>.
109
110=cut
111*/
112
cb68f92d 113PERLVAR(IDBsub, GV *)
114PERLVAR(IDBsingle, SV *)
115PERLVAR(IDBtrace, SV *)
116PERLVAR(IDBsignal, SV *)
49f531da 117PERLVAR(Ilineary, AV *) /* lines of script for debugger */
118PERLVAR(Idbargs, AV *) /* args to call listed by caller function */
119
120/* symbol tables */
49f531da 121PERLVAR(Idebstash, HV *) /* symbol table for perldb package */
122PERLVAR(Iglobalstash, HV *) /* global keyword overrides imported here */
123PERLVAR(Icurstname, SV *) /* name of current package */
124PERLVAR(Ibeginav, AV *) /* names of BEGIN subroutines */
d4cce5f1 125PERLVAR(Iendav, AV *) /* names of END subroutines */
7d30b5c4 126PERLVAR(Icheckav, AV *) /* names of CHECK subroutines */
49f531da 127PERLVAR(Iinitav, AV *) /* names of INIT subroutines */
128PERLVAR(Istrtab, HV *) /* shared string table */
005a453c 129PERLVARI(Isub_generation,U32,1) /* incr to invalidate method cache */
49f531da 130
131/* memory management */
49f531da 132PERLVAR(Isv_count, I32) /* how many SV* are currently allocated */
133PERLVAR(Isv_objcount, I32) /* how many objects are currently allocated */
134PERLVAR(Isv_root, SV*) /* storage for SVs belonging to interp */
135PERLVAR(Isv_arenaroot, SV*) /* list of areas for garbage collection */
136
137/* funky return mechanisms */
49f531da 138PERLVAR(Iforkprocess, int) /* so do_open |- can return proc# */
139
140/* subprocess state */
d4cce5f1 141PERLVAR(Ifdpid, AV *) /* keep fd-to-pid mappings for my_popen */
49f531da 142
6c85703c 143#ifdef USE_THREADS
144PERLVAR(Ifdpid_mutex, perl_mutex) /* mutex for fdpid array */
145#endif
146
49f531da 147/* internal state */
49f531da 148PERLVAR(Itainting, bool) /* doing taint checks */
149PERLVARI(Iop_mask, char *, NULL) /* masked operations for safe evals */
150
49f531da 151/* current interpreter roots */
cb68f92d 152PERLVAR(Imain_cv, CV *)
153PERLVAR(Imain_root, OP *)
154PERLVAR(Imain_start, OP *)
155PERLVAR(Ieval_root, OP *)
156PERLVAR(Ieval_start, OP *)
49f531da 157
158/* runtime control stuff */
cb68f92d 159PERLVARI(Icurcopdb, COP *, NULL)
160PERLVARI(Icopline, line_t, NOLINE)
49f531da 161
162/* statics moved here for shared library purposes */
49f531da 163PERLVAR(Ifilemode, int) /* so nextargv() can preserve mode */
164PERLVAR(Ilastfd, int) /* what to preserve mode on */
165PERLVAR(Ioldname, char *) /* what to preserve mode on */
d4cce5f1 166PERLVAR(IArgv, char **) /* stuff to free from do_aexec, vfork safe */
167PERLVAR(ICmd, char *) /* stuff to free from do_aexec, vfork safe */
49f531da 168PERLVAR(Igensym, I32) /* next symbol for getsym() to define */
cb68f92d 169PERLVAR(Ipreambled, bool)
170PERLVAR(Ipreambleav, AV *)
171PERLVARI(Ilaststatval, int, -1)
172PERLVARI(Ilaststype, I32, OP_STAT)
173PERLVAR(Imess_sv, SV *)
49f531da 174
cb68f92d 175/* XXX shouldn't these be per-thread? --GSAR */
176PERLVAR(Iors, char *) /* output record separator $\ */
177PERLVAR(Iorslen, STRLEN)
178PERLVAR(Iofmt, char *) /* output format for numbers $# */
d4cce5f1 179
4b556e6c 180/* interpreter atexit processing */
cb68f92d 181PERLVARI(Iexitlist, PerlExitListEntry *, NULL)
182 /* list of exit functions */
183PERLVARI(Iexitlistlen, I32, 0) /* length of same */
954c1994 184
185/*
186=for apidoc Amn|HV*|PL_modglobal
187
188C<PL_modglobal> is a general purpose, interpreter global HV for use by
189extensions that need to keep information on a per-interpreter basis.
190In a pinch, it can also be used as a symbol table for extensions
191to share data among each other. It is a good idea to use keys
192prefixed by the package name of the extension that owns the data.
193
194=cut
195*/
196
cb68f92d 197PERLVAR(Imodglobal, HV *) /* per-interp module data */
198
199/* these used to be in global before 5.004_68 */
200PERLVARI(Iprofiledata, U32 *, NULL) /* table of ops, counts */
201PERLVARI(Irsfp, PerlIO * VOL, Nullfp) /* current source file pointer */
202PERLVARI(Irsfp_filters, AV *, Nullav) /* keeps active source filters */
203
204PERLVAR(Icompiling, COP) /* compiling/done executing marker */
205
206PERLVAR(Icompcv, CV *) /* currently compiling subroutine */
207PERLVAR(Icomppad, AV *) /* storage for lexically scoped temporaries */
208PERLVAR(Icomppad_name, AV *) /* variable names for "my" variables */
209PERLVAR(Icomppad_name_fill, I32) /* last "introduced" variable offset */
210PERLVAR(Icomppad_name_floor, I32) /* start of vars in innermost block */
4b556e6c 211
212#ifdef HAVE_INTERP_INTERN
cb68f92d 213PERLVAR(Isys_intern, struct interp_intern)
214 /* platform internals */
4b556e6c 215#endif
216
7fae4e64 217/* more statics moved here */
7fae4e64 218PERLVARI(Igeneration, int, 100) /* from op.c */
219PERLVAR(IDBcv, CV *) /* from perl.c */
56953603 220
cb68f92d 221PERLVARI(Iin_clean_objs,bool, FALSE) /* from sv.c */
222PERLVARI(Iin_clean_all, bool, FALSE) /* from sv.c */
7fae4e64 223
224PERLVAR(Ilinestart, char *) /* beg. of most recently read line */
225PERLVAR(Ipending_ident, char) /* pending identifier lookup */
226PERLVAR(Isublex_info, SUBLEXINFO) /* from toke.c */
227
49f531da 228#ifdef USE_THREADS
cb68f92d 229PERLVAR(Ithrsv, SV *) /* struct perl_thread for main thread */
940cb80d 230PERLVARI(Ithreadnum, U32, 0) /* incremented each thread creation */
5f08fbcd 231PERLVAR(Istrtab_mutex, perl_mutex) /* Mutex for string table access */
49f531da 232#endif /* USE_THREADS */
76e3520e 233
d8eceb89 234PERLVAR(Iuid, Uid_t) /* current real user id */
235PERLVAR(Ieuid, Uid_t) /* current effective user id */
236PERLVAR(Igid, Gid_t) /* current real group id */
237PERLVAR(Iegid, Gid_t) /* current effective group id */
0672f40e 238PERLVAR(Inomemok, bool) /* let malloc context handle nomem */
239PERLVAR(Ian, U32) /* malloc sequence number */
240PERLVAR(Icop_seqmax, U32) /* statement sequence number */
241PERLVAR(Iop_seqmax, U16) /* op sequence number */
242PERLVAR(Ievalseq, U32) /* eval sequence number */
243PERLVAR(Iorigenviron, char **)
244PERLVAR(Iorigalen, U32)
245PERLVAR(Ipidstatus, HV *) /* pid-to-status mappings for waitpid */
246PERLVARI(Imaxo, int, MAXO) /* maximum number of ops */
247PERLVAR(Iosname, char *) /* operating system */
248PERLVARI(Ish_path, char *, SH_PATH)/* full path of shell */
249PERLVAR(Isighandlerp, Sighandler_t)
250
251PERLVAR(Ixiv_arenaroot, XPV*) /* list of allocated xiv areas */
252PERLVAR(Ixiv_root, IV *) /* free xiv list--shared by interpreters */
cad2e5aa 253PERLVAR(Ixnv_root, NV *) /* free xnv list--shared by interpreters */
0672f40e 254PERLVAR(Ixrv_root, XRV *) /* free xrv list--shared by interpreters */
255PERLVAR(Ixpv_root, XPV *) /* free xpv list--shared by interpreters */
932e9ff9 256PERLVAR(Ixpviv_root, XPVIV *) /* free xpviv list--shared by interpreters */
257PERLVAR(Ixpvnv_root, XPVNV *) /* free xpvnv list--shared by interpreters */
258PERLVAR(Ixpvcv_root, XPVCV *) /* free xpvcv list--shared by interpreters */
259PERLVAR(Ixpvav_root, XPVAV *) /* free xpvav list--shared by interpreters */
260PERLVAR(Ixpvhv_root, XPVHV *) /* free xpvhv list--shared by interpreters */
261PERLVAR(Ixpvmg_root, XPVMG *) /* free xpvmg list--shared by interpreters */
262PERLVAR(Ixpvlv_root, XPVLV *) /* free xpvlv list--shared by interpreters */
263PERLVAR(Ixpvbm_root, XPVBM *) /* free xpvbm list--shared by interpreters */
0672f40e 264PERLVAR(Ihe_root, HE *) /* free he list--shared by interpreters */
265PERLVAR(Inice_chunk, char *) /* a nice chunk of memory to reuse */
266PERLVAR(Inice_chunk_size, U32) /* how nice the chunk of memory is */
267
0b94c7bb 268PERLVARI(Irunops, runops_proc_t, MEMBER_TO_FPTR(RUNOPS_DEFAULT))
0672f40e 269
51371543 270PERLVARA(Itokenbuf,256, char)
0672f40e 271
954c1994 272/*
273=for apidoc Amn|SV|PL_sv_undef
274This is the C<undef> SV. Always refer to this as C<&PL_sv_undef>.
275
276=for apidoc Amn|SV|PL_sv_no
277This is the C<false> SV. See C<PL_sv_yes>. Always refer to this as
278C<&PL_sv_no>.
279
280=for apidoc Amn|SV|PL_sv_yes
281This is the C<true> SV. See C<PL_sv_no>. Always refer to this as
282C<&PL_sv_yes>.
283
284=cut
285*/
286
0672f40e 287PERLVAR(Isv_undef, SV)
288PERLVAR(Isv_no, SV)
289PERLVAR(Isv_yes, SV)
290
291#ifdef CSH
292PERLVARI(Icshname, char *, CSH)
293PERLVAR(Icshlen, I32)
294#endif
295
296PERLVAR(Ilex_state, U32) /* next token is determined */
297PERLVAR(Ilex_defer, U32) /* state after determined token */
1d7c1841 298PERLVAR(Ilex_expect, int) /* expect after determined token */
0672f40e 299PERLVAR(Ilex_brackets, I32) /* bracket count */
300PERLVAR(Ilex_formbrack, I32) /* bracket count at outer format level */
0672f40e 301PERLVAR(Ilex_casemods, I32) /* casemod count */
302PERLVAR(Ilex_dojoin, I32) /* doing an array interpolation */
303PERLVAR(Ilex_starts, I32) /* how many interps done on level */
304PERLVAR(Ilex_stuff, SV *) /* runtime pattern from m// or s/// */
305PERLVAR(Ilex_repl, SV *) /* runtime replacement from s/// */
306PERLVAR(Ilex_op, OP *) /* extra info to pass back on op */
307PERLVAR(Ilex_inpat, OP *) /* in pattern $) and $| are special */
308PERLVAR(Ilex_inwhat, I32) /* what kind of quoting are we in */
309PERLVAR(Ilex_brackstack,char *) /* what kind of brackets to pop */
310PERLVAR(Ilex_casestack, char *) /* what kind of case mods in effect */
311
312/* What we know when we're in LEX_KNOWNEXT state. */
51371543 313PERLVARA(Inextval,5, YYSTYPE) /* value of next token, if any */
314PERLVARA(Inexttype,5, I32) /* type of next token */
0672f40e 315PERLVAR(Inexttoke, I32)
316
317PERLVAR(Ilinestr, SV *)
318PERLVAR(Ibufptr, char *)
319PERLVAR(Ioldbufptr, char *)
320PERLVAR(Ioldoldbufptr, char *)
321PERLVAR(Ibufend, char *)
1d7c1841 322PERLVARI(Iexpect,int, XSTATE) /* how to interpret ambiguous tokens */
0672f40e 323
324PERLVAR(Imulti_start, I32) /* 1st line of multi-line string */
325PERLVAR(Imulti_end, I32) /* last line of multi-line string */
326PERLVAR(Imulti_open, I32) /* delimiter of said string */
327PERLVAR(Imulti_close, I32) /* delimiter of said string */
328
329PERLVAR(Ierror_count, I32) /* how many errors so far, max 10 */
330PERLVAR(Isubline, I32) /* line this subroutine began on */
331PERLVAR(Isubname, SV *) /* name of current subroutine */
332
333PERLVAR(Imin_intro_pending, I32) /* start of vars to introduce */
334PERLVAR(Imax_intro_pending, I32) /* end of vars to introduce */
335PERLVAR(Ipadix, I32) /* max used index in current "register" pad */
336PERLVAR(Ipadix_floor, I32) /* how low may inner block reset padix */
337PERLVAR(Ipad_reset_pending, I32) /* reset pad on next attempted alloc */
338
0672f40e 339PERLVAR(Ilast_uni, char *) /* position of last named-unary op */
340PERLVAR(Ilast_lop, char *) /* position of last list operator */
341PERLVAR(Ilast_lop_op, OPCODE) /* last list operator */
77ca0c92 342PERLVAR(Iin_my, I32) /* we're compiling a "my" (or "our") declaration */
0672f40e 343PERLVAR(Iin_my_stash, HV *) /* declared class of this "my" declaration */
344#ifdef FCRYPT
1d7c1841 345PERLVAR(Icryptseen, bool) /* has fast crypt() been initialized? */
0672f40e 346#endif
347
1d7c1841 348PERLVAR(Ihints, U32) /* pragma-tic compile-time flags */
0672f40e 349
350PERLVAR(Idebug, VOL U32) /* flags given to -D switch */
351
352PERLVAR(Iamagic_generation, long)
353
354#ifdef USE_LOCALE_COLLATE
355PERLVAR(Icollation_ix, U32) /* Collation generation index */
356PERLVAR(Icollation_name,char *) /* Name of current collation */
357PERLVARI(Icollation_standard, bool, TRUE)
358 /* Assume simple collation */
359PERLVAR(Icollxfrm_base, Size_t) /* Basic overhead in *xfrm() */
360PERLVARI(Icollxfrm_mult,Size_t, 2) /* Expansion factor in *xfrm() */
361#endif /* USE_LOCALE_COLLATE */
362
363#ifdef USE_LOCALE_NUMERIC
364
365PERLVAR(Inumeric_name, char *) /* Name of current numeric locale */
366PERLVARI(Inumeric_standard, bool, TRUE)
367 /* Assume simple numerics */
368PERLVARI(Inumeric_local, bool, TRUE)
369 /* Assume local numerics */
097ee67d 370PERLVAR(Inumeric_radix, char)
371 /* The radix character if not '.' */
0672f40e 372
373#endif /* !USE_LOCALE_NUMERIC */
374
375/* utf8 character classes */
376PERLVAR(Iutf8_alnum, SV *)
b8c5462f 377PERLVAR(Iutf8_alnumc, SV *)
378PERLVAR(Iutf8_ascii, SV *)
0672f40e 379PERLVAR(Iutf8_alpha, SV *)
380PERLVAR(Iutf8_space, SV *)
b8c5462f 381PERLVAR(Iutf8_cntrl, SV *)
382PERLVAR(Iutf8_graph, SV *)
0672f40e 383PERLVAR(Iutf8_digit, SV *)
384PERLVAR(Iutf8_upper, SV *)
385PERLVAR(Iutf8_lower, SV *)
386PERLVAR(Iutf8_print, SV *)
b8c5462f 387PERLVAR(Iutf8_punct, SV *)
388PERLVAR(Iutf8_xdigit, SV *)
0672f40e 389PERLVAR(Iutf8_mark, SV *)
390PERLVAR(Iutf8_toupper, SV *)
391PERLVAR(Iutf8_totitle, SV *)
392PERLVAR(Iutf8_tolower, SV *)
393PERLVAR(Ilast_swash_hv, HV *)
394PERLVAR(Ilast_swash_klen, U32)
51371543 395PERLVARA(Ilast_swash_key,10, U8)
0672f40e 396PERLVAR(Ilast_swash_tmps, U8 *)
397PERLVAR(Ilast_swash_slen, STRLEN)
398
399/* perly.c globals */
400PERLVAR(Iyydebug, int)
401PERLVAR(Iyynerrs, int)
402PERLVAR(Iyyerrflag, int)
403PERLVAR(Iyychar, int)
404PERLVAR(Iyyval, YYSTYPE)
405PERLVAR(Iyylval, YYSTYPE)
406
407PERLVAR(Iglob_index, int)
0672f40e 408PERLVAR(Isrand_called, bool)
51371543 409PERLVARA(Iuudmap,256, char)
0672f40e 410PERLVAR(Ibitcount, char *)
0672f40e 411
43165c05 412#ifdef USE_THREADS
43165c05 413PERLVAR(Isv_mutex, perl_mutex) /* Mutex for allocating SVs in sv.c */
43165c05 414PERLVAR(Ieval_mutex, perl_mutex) /* Mutex for doeval */
415PERLVAR(Ieval_cond, perl_cond) /* Condition variable for doeval */
416PERLVAR(Ieval_owner, struct perl_thread *)
417 /* Owner thread for doeval */
418PERLVAR(Inthreads, int) /* Number of threads currently */
419PERLVAR(Ithreads_mutex, perl_mutex) /* Mutex for nthreads and thread list */
420PERLVAR(Inthreads_cond, perl_cond) /* Condition variable for nthreads */
421PERLVAR(Isvref_mutex, perl_mutex) /* Mutex for SvREFCNT_{inc,dec} */
422PERLVARI(Ithreadsv_names,char *, THREADSV_NAMES)
423#ifdef FAKE_THREADS
424PERLVAR(Icurthr, struct perl_thread *)
425 /* Currently executing (fake) thread */
426#endif
427
428PERLVAR(Icred_mutex, perl_mutex) /* altered credentials in effect */
429
430#endif /* USE_THREADS */
431
1d7c1841 432PERLVAR(Ipsig_ptr, SV**)
433PERLVAR(Ipsig_name, SV**)
434
c5be433b 435#if defined(PERL_IMPLICIT_SYS)
32e30700 436PERLVAR(IMem, struct IPerlMem*)
1d7c1841 437PERLVAR(IMemShared, struct IPerlMem*)
438PERLVAR(IMemParse, struct IPerlMem*)
32e30700 439PERLVAR(IEnv, struct IPerlEnv*)
440PERLVAR(IStdIO, struct IPerlStdIO*)
441PERLVAR(ILIO, struct IPerlLIO*)
442PERLVAR(IDir, struct IPerlDir*)
443PERLVAR(ISock, struct IPerlSock*)
444PERLVAR(IProc, struct IPerlProc*)
76e3520e 445#endif
1d7c1841 446
447#if defined(USE_ITHREADS)
448PERLVAR(Iptr_table, PTR_TBL_t*)
449#endif
b37a7757 450
451#if defined(USE_THREADS)
452PERLVAR(Isv_lock_mutex, perl_mutex) /* Mutex for SvLOCK macro */
453#endif
e8fcef16 454PERLVARI(Ibeginav_save, AV*, Nullav) /* save BEGIN{}s when compiling */
92d29cee 455
456PERLVAR(Inullstash, HV *) /* illegal symbols end up here */