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