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