Digital UNIX hints
[p5sagit/p5-mst-13.2.git] / perl.h
CommitLineData
a0d0e21e 1/* perl.h
a687059c 2 *
a0d0e21e 3 * Copyright (c) 1987-1994, Larry Wall
a687059c 4 *
352d5a3a 5 * You may distribute under the terms of either the GNU General Public
6 * License or the Artistic License, as specified in the README file.
8d063cd8 7 *
8d063cd8 8 */
85e6fe83 9#ifndef H_PERL
10#define H_PERL 1
a0d0e21e 11#define OVERLOAD
8d063cd8 12
760ac839 13#ifdef PERL_FOR_X2P
14/*
15 * This file is being used for x2p stuff.
16 * Above symbol is defined via -D in 'x2p/Makefile.SH'
17 * Decouple x2p stuff from some of perls more extreme eccentricities.
18 */
760ac839 19#undef EMBED
55497cff 20#undef NO_EMBED
21#define NO_EMBED
22#undef MULTIPLICITY
760ac839 23#undef USE_STDIO
24#define USE_STDIO
25#endif /* PERL_FOR_X2P */
26
71be2cbc 27#define VOIDUSED 1
28#include "config.h"
29
30#include "embed.h"
31
728e2803 32/*
33 * STMT_START { statements; } STMT_END;
34 * can be used as a single statement, as in
35 * if (x) STMT_START { ... } STMT_END; else ...
36 *
37 * Trying to select a version that gives no warnings...
38 */
39#if !(defined(STMT_START) && defined(STMT_END))
40# if defined(__GNUC__) && !defined(__STRICT_ANSI__)
41# define STMT_START (void)( /* gcc supports ``({ STATEMENTS; })'' */
42# define STMT_END )
43# else
44 /* Now which other defined()s do we need here ??? */
45# if (VOIDFLAGS) && (defined(sun) || defined(__sun__))
46# define STMT_START if (1)
47# define STMT_END else (void)0
48# else
49# define STMT_START do
50# define STMT_END while (0)
51# endif
52# endif
53#endif
54
55497cff 55/*
56 * SOFT_CAST can be used for args to prototyped functions to retain some
57 * type checking; it only casts if the compiler does not know prototypes.
58 */
59#if defined(CAN_PROTOTYPE) && defined(DEBUGGING_COMPILE)
60#define SOFT_CAST(type)
61#else
62#define SOFT_CAST(type) (type)
63#endif
64
79072805 65#ifndef BYTEORDER
66# define BYTEORDER 0x1234
67#endif
68
69/* Overall memory policy? */
70#ifndef CONSERVATIVE
71# define LIBERAL 1
72#endif
73
74/*
75 * The following contortions are brought to you on behalf of all the
76 * standards, semi-standards, de facto standards, not-so-de-facto standards
77 * of the world, as well as all the other botches anyone ever thought of.
78 * The basic theory is that if we work hard enough here, the rest of the
79 * code can be a lot prettier. Well, so much for theory. Sorry, Henry...
80 */
ac58e20f 81
ee0007ab 82/* define this once if either system, instead of cluttering up the src */
83#if defined(MSDOS) || defined(atarist)
84#define DOSISH 1
85#endif
86
a0d0e21e 87#if defined(__STDC__) || defined(vax11c) || defined(_AIX) || defined(__stdc__) || defined(__cplusplus)
352d5a3a 88# define STANDARD_C 1
89#endif
90
91#if defined(HASVOLATILE) || defined(STANDARD_C)
79072805 92# ifdef __cplusplus
93# define VOL // to temporarily suppress warnings
94# else
95# define VOL volatile
96# endif
663a0e37 97#else
79072805 98# define VOL
663a0e37 99#endif
100
bbce6d69 101#define TAINT (tainted = TRUE)
102#define TAINT_NOT (tainted = FALSE)
103#define TAINT_IF(c) if (c) { tainted = TRUE; }
104#define TAINT_ENV() if (tainting) { taint_env(); }
105#define TAINT_PROPER(s) if (tainting) { taint_proper(no_security, s); }
a687059c 106
a6e633de 107/* XXX All process group stuff is handled in pp_sys.c. Should these
108 defines move there? If so, I could simplify this a lot. --AD 9/96.
109*/
110/* Process group stuff changed from traditional BSD to POSIX.
111 perlfunc.pod documents the traditional BSD-style syntax, so we'll
112 try to preserve that, if possible.
113*/
114#ifdef HAS_SETPGID
115# define BSD_SETPGRP(pid, pgrp) setpgid((pid), (pgrp))
c07a80fd 116#else
a6e633de 117# if defined(HAS_SETPGRP) && defined(USE_BSD_SETPGRP)
118# define BSD_SETPGRP(pid, pgrp) setpgrp((pid), (pgrp))
119# else
120# ifdef HAS_SETPGRP2 /* DG/UX */
121# define BSD_SETPGRP(pid, pgrp) setpgrp2((pid), (pgrp))
122# endif
123# endif
124#endif
125#if defined(BSD_SETPGRP) && !defined(HAS_SETPGRP)
126# define HAS_SETPGRP /* Well, effectively it does . . . */
127#endif
128
129/* getpgid isn't POSIX, but at least Solaris and Linux have it, and it makes
130 our life easier :-) so we'll try it.
131*/
132#ifdef HAS_GETPGID
133# define BSD_GETPGRP(pid) getpgid((pid))
134#else
135# if defined(HAS_GETPGRP) && defined(USE_BSD_GETPGRP)
136# define BSD_GETPGRP(pid) getpgrp((pid))
137# else
138# ifdef HAS_GETPGRP2 /* DG/UX */
139# define BSD_GETPGRP(pid) getpgrp2((pid))
140# endif
141# endif
142#endif
143#if defined(BSD_GETPGRP) && !defined(HAS_GETPGRP)
144# define HAS_GETPGRP /* Well, effectively it does . . . */
145#endif
146
147/* These are not exact synonyms, since setpgrp() and getpgrp() may
148 have different behaviors, but perl.h used to define USE_BSDPGRP
149 (prior to 5.003_05) so some extension might depend on it.
150*/
151#if defined(USE_BSD_SETPGRP) || defined(USE_BSD_GETPGRP)
152# ifndef USE_BSDPGRP
153# define USE_BSDPGRP
154# endif
663a0e37 155#endif
156
760ac839 157#ifndef _TYPES_ /* If types.h defines this it's easy. */
158# ifndef major /* Does everyone's types.h define this? */
159# include <sys/types.h>
160# endif
161#endif
162
163#ifdef __cplusplus
164# ifndef I_STDARG
165# define I_STDARG 1
166# endif
167#endif
168
169#ifdef I_STDARG
170# include <stdarg.h>
171#else
172# ifdef I_VARARGS
173# include <varargs.h>
174# endif
175#endif
176
177#include "perlio.h"
0c30d9ec 178
4633a7c4 179#ifdef USE_NEXT_CTYPE
0c30d9ec 180
181#if NX_CURRENT_COMPILER_RELEASE >= 400
182#include <objc/NXCType.h>
183#else /* NX_CURRENT_COMPILER_RELEASE < 400 */
a0d0e21e 184#include <appkit/NXCType.h>
0c30d9ec 185#endif /* NX_CURRENT_COMPILER_RELEASE >= 400 */
186
187#else /* !USE_NEXT_CTYPE */
fe14fcc3 188#include <ctype.h>
0c30d9ec 189#endif /* USE_NEXT_CTYPE */
a0d0e21e 190
191#ifdef METHOD /* Defined by OSF/1 v3.0 by ctype.h */
192#undef METHOD
193#endif
194
36477c24 195#ifdef I_LOCALE
196# include <locale.h>
197#endif
198
199#if !defined(NO_LOCALE) && defined(HAS_SETLOCALE)
200# define USE_LOCALE
201# if !defined(NO_LOCALE_COLLATE) && defined(LC_COLLATE) \
202 && defined(HAS_STRXFRM)
203# define USE_LOCALE_COLLATE
204# endif
205# if !defined(NO_LOCALE_CTYPE) && defined(LC_CTYPE)
206# define USE_LOCALE_CTYPE
207# endif
208# if !defined(NO_LOCALE_NUMERIC) && defined(LC_NUMERIC)
209# define USE_LOCALE_NUMERIC
210# endif
211#endif /* !NO_LOCALE && HAS_SETLOCALE */
212
fe14fcc3 213#include <setjmp.h>
79072805 214
a0d0e21e 215#ifdef I_SYS_PARAM
79072805 216# ifdef PARAM_NEEDS_TYPES
217# include <sys/types.h>
218# endif
219# include <sys/param.h>
352d5a3a 220#endif
79072805 221
222
223/* Use all the "standard" definitions? */
a0d0e21e 224#if defined(STANDARD_C) && defined(I_STDLIB)
79072805 225# include <stdlib.h>
ff68c719 226#endif
03a14243 227
55497cff 228/* This comes after <stdlib.h> so we don't try to change the standard
229 * library prototypes; we'll use our own in proto.h instead. */
230
4633a7c4 231#ifdef MYMALLOC
55497cff 232
760ac839 233# ifdef HIDEMYMALLOC
55497cff 234# define malloc Mymalloc
235# define calloc Mycalloc
05effc97 236# define realloc Myremalloc
55497cff 237# define free Myfree
238# endif
239# ifdef EMBEDMYMALLOC
240# define malloc Perl_malloc
241# define calloc Perl_calloc
242# define realloc Perl_realloc
243# define free Perl_free
4633a7c4 244# endif
55497cff 245
246# undef safemalloc
247# undef safecalloc
248# undef saferealloc
249# undef safefree
250# define safemalloc malloc
251# define safecalloc calloc
4633a7c4 252# define saferealloc realloc
55497cff 253# define safefree free
254
255#endif /* MYMALLOC */
4633a7c4 256
a0d0e21e 257#define MEM_SIZE Size_t
258
ff68c719 259#if defined(STANDARD_C) && defined(I_STDDEF)
260# include <stddef.h>
71be2cbc 261# define STRUCT_OFFSET(s,m) offsetof(s,m)
ff68c719 262#else
71be2cbc 263# define STRUCT_OFFSET(s,m) (Size_t)(&(((s *)0)->m))
ff68c719 264#endif
265
a0d0e21e 266#if defined(I_STRING) || defined(__cplusplus)
267# include <string.h>
268#else
269# include <strings.h>
270#endif
271
272#if !defined(HAS_STRCHR) && defined(HAS_INDEX) && !defined(strchr)
273#define strchr index
274#define strrchr rindex
275#endif
276
16d20bd9 277#ifdef I_MEMORY
278# include <memory.h>
279#endif
280
fe14fcc3 281#ifdef HAS_MEMCPY
85e6fe83 282# if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
fe14fcc3 283# ifndef memcpy
a0d0e21e 284 extern char * memcpy _((char*, char*, int));
ee0007ab 285# endif
286# endif
287#else
288# ifndef memcpy
289# ifdef HAS_BCOPY
290# define memcpy(d,s,l) bcopy(s,d,l)
291# else
292# define memcpy(d,s,l) my_bcopy(s,d,l)
293# endif
294# endif
295#endif /* HAS_MEMCPY */
fe14fcc3 296
ee0007ab 297#ifdef HAS_MEMSET
85e6fe83 298# if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
ee0007ab 299# ifndef memset
a0d0e21e 300 extern char *memset _((char*, int, int));
ee0007ab 301# endif
302# endif
303# define memzero(d,l) memset(d,0,l)
304#else
305# ifndef memzero
306# ifdef HAS_BZERO
307# define memzero(d,l) bzero(d,l)
308# else
309# define memzero(d,l) my_bzero(d,l)
310# endif
352d5a3a 311# endif
ee0007ab 312#endif /* HAS_MEMSET */
313
85e6fe83 314#if !defined(HAS_MEMMOVE) && !defined(memmove)
2304df62 315# if defined(HAS_BCOPY) && defined(HAS_SAFE_BCOPY)
79072805 316# define memmove(d,s,l) bcopy(s,d,l)
317# else
2304df62 318# if defined(HAS_MEMCPY) && defined(HAS_SAFE_MEMCPY)
79072805 319# define memmove(d,s,l) memcpy(d,s,l)
320# else
321# define memmove(d,s,l) my_bcopy(s,d,l)
322# endif
323# endif
d9d8d8de 324#endif
378cc40b 325
36477c24 326#if defined(mips) && defined(ultrix) && !defined(__STDC__)
327# undef HAS_MEMCMP
328#endif
329
330#if defined(HAS_MEMCMP) && defined(HAS_SANE_MEMCMP)
331# if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
332# ifndef memcmp
333 extern int memcmp _((char*, char*, int));
334# endif
335# endif
336# ifdef BUGGY_MSC
337 # pragma function(memcmp)
338# endif
339#else
340# ifndef memcmp
341# define memcmp my_memcmp
342# endif
343#endif /* HAS_MEMCMP && HAS_SANE_MEMCMP */
344
345#ifndef HAS_BCMP
346# ifndef bcmp
347# define bcmp(s1,s2,l) memcmp(s1,s2,l)
348# endif
349#endif /* !HAS_BCMP */
350
ae986130 351#ifdef I_NETINET_IN
79072805 352# include <netinet/in.h>
ae986130 353#endif
354
1aef975c 355#ifdef I_SYS_STAT
8d063cd8 356#include <sys/stat.h>
1aef975c 357#endif
79072805 358
a0d0e21e 359/* The stat macros for Amdahl UTS, Unisoft System V/88 (and derivatives
360 like UTekV) are broken, sometimes giving false positives. Undefine
361 them here and let the code below set them to proper values.
362
363 The ghs macro stands for GreenHills Software C-1.8.5 which
364 is the C compiler for sysV88 and the various derivatives.
365 This header file bug is corrected in gcc-2.5.8 and later versions.
366 --Kaveh Ghazi (ghazi@noc.rutgers.edu) 10/3/94. */
367
368#if defined(uts) || (defined(m88k) && defined(ghs))
79072805 369# undef S_ISDIR
370# undef S_ISCHR
371# undef S_ISBLK
372# undef S_ISREG
373# undef S_ISFIFO
374# undef S_ISLNK
ee0007ab 375#endif
135863df 376
663a0e37 377#ifdef I_TIME
378# include <time.h>
ffed7fef 379#endif
663a0e37 380
fe14fcc3 381#ifdef I_SYS_TIME
85e6fe83 382# ifdef I_SYS_TIME_KERNEL
663a0e37 383# define KERNEL
384# endif
385# include <sys/time.h>
85e6fe83 386# ifdef I_SYS_TIME_KERNEL
663a0e37 387# undef KERNEL
388# endif
a687059c 389#endif
135863df 390
55497cff 391#if defined(HAS_TIMES) && defined(I_SYS_TIMES)
85e6fe83 392# include <sys/times.h>
d9d8d8de 393#endif
8d063cd8 394
fe14fcc3 395#if defined(HAS_STRERROR) && (!defined(HAS_MKDIR) || !defined(HAS_RMDIR))
79072805 396# undef HAS_STRERROR
663a0e37 397#endif
398
a0d0e21e 399#ifndef HAS_MKFIFO
400# ifndef mkfifo
401# define mkfifo(path, mode) (mknod((path), (mode) | S_IFIFO, 0))
402# endif
403#endif /* !HAS_MKFIFO */
404
663a0e37 405#include <errno.h>
ed6116ce 406#ifdef HAS_SOCKET
85e6fe83 407# ifdef I_NET_ERRNO
ed6116ce 408# include <net/errno.h>
409# endif
410#endif
f86702cc 411
412#ifdef VMS
413# define SETERRNO(errcode,vmserrcode) \
414 STMT_START { \
415 set_errno(errcode); \
416 set_vaxc_errno(vmserrcode); \
417 } STMT_END
748a9306 418#else
f86702cc 419# define SETERRNO(errcode,vmserrcode) errno = (errcode)
748a9306 420#endif
ed6116ce 421
55497cff 422#ifndef errno
79072805 423 extern int errno; /* ANSI allows errno to be an lvalue expr */
d9d8d8de 424#endif
663a0e37 425
2304df62 426#ifdef HAS_STRERROR
a0d0e21e 427# ifdef VMS
428 char *strerror _((int,...));
429# else
430 char *strerror _((int));
431# endif
2304df62 432# ifndef Strerror
433# define Strerror strerror
434# endif
435#else
436# ifdef HAS_SYS_ERRLIST
79072805 437 extern int sys_nerr;
438 extern char *sys_errlist[];
2304df62 439# ifndef Strerror
440# define Strerror(e) \
79072805 441 ((e) < 0 || (e) >= sys_nerr ? "(unknown)" : sys_errlist[e])
2304df62 442# endif
79072805 443# endif
35c8bce7 444#endif
663a0e37 445
f86702cc 446#define STATUS_POSIX statusvalue
91e9c03f 447#define STATUS_POSIX_SET(n) \
448 STMT_START { \
449 statusvalue = (n); \
450 if (statusvalue != -1) \
451 statusvalue &= 0xFFFF; \
452 } STMT_END
f86702cc 453
454#ifdef VMS
455# define STATUS_NATIVE statusvalue_vms
456# define STATUS_NATIVE_EXPORT \
457 ((I32)statusvalue_vms == -1 ? 4 : statusvalue_vms)
458# define STATUS_NATIVE_SET(n) \
459 STMT_START { \
460 statusvalue_vms = (n); \
461 if ((I32)statusvalue_vms == -1) \
462 statusvalue = -1; \
463 else if (statusvalue_vms & STS$M_SUCCESS) \
464 statusvalue = 0; \
465 else if ((statusvalue_vms & STS$M_SEVERITY) == 0) \
466 statusvalue = 1 << 8; \
467 else \
468 statusvalue = (statusvalue_vms & STS$M_SEVERITY) << 8; \
469 } STMT_END
470# define STATUS_ALL_SUCCESS (statusvalue = 0, statusvalue_vms = 1)
471# define STATUS_ALL_FAILURE (statusvalue = 1, statusvalue_vms = 4)
472#else
473# define STATUS_NATIVE STATUS_POSIX
474# define STATUS_NATIVE_EXPORT STATUS_POSIX
475# define STATUS_NATIVE_SET STATUS_POSIX_SET
91e9c03f 476# define STATUS_ALL_SUCCESS (statusvalue = 0)
477# define STATUS_ALL_FAILURE (statusvalue = 1)
f86702cc 478#endif
479
2304df62 480#ifdef I_SYS_IOCTL
79072805 481# ifndef _IOCTL_
482# include <sys/ioctl.h>
483# endif
a687059c 484#endif
485
ee0007ab 486#if defined(mc300) || defined(mc500) || defined(mc700) || defined(mc6000)
79072805 487# ifdef HAS_SOCKETPAIR
488# undef HAS_SOCKETPAIR
489# endif
2304df62 490# ifdef I_NDBM
491# undef I_NDBM
79072805 492# endif
a687059c 493#endif
494
a687059c 495#if INTSIZE == 2
79072805 496# define htoni htons
497# define ntohi ntohs
a687059c 498#else
79072805 499# define htoni htonl
500# define ntohi ntohl
a687059c 501#endif
502
a0d0e21e 503/* Configure already sets Direntry_t */
35c8bce7 504#if defined(I_DIRENT)
663a0e37 505# include <dirent.h>
a0d0e21e 506# if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
507# include <sys/dir.h>
508# endif
ae986130 509#else
fe14fcc3 510# ifdef I_SYS_NDIR
79a0689e 511# include <sys/ndir.h>
663a0e37 512# else
fe14fcc3 513# ifdef I_SYS_DIR
79a0689e 514# ifdef hp9000s500
515# include <ndir.h> /* may be wrong in the future */
516# else
517# include <sys/dir.h>
518# endif
663a0e37 519# endif
520# endif
4633a7c4 521#endif
a687059c 522
352d5a3a 523#ifdef FPUTS_BOTCH
524/* work around botch in SunOS 4.0.1 and 4.0.2 */
525# ifndef fputs
79072805 526# define fputs(sv,fp) fprintf(fp,"%s",sv)
352d5a3a 527# endif
528#endif
529
c623bd54 530/*
531 * The following gobbledygook brought to you on behalf of __STDC__.
532 * (I could just use #ifndef __STDC__, but this is more bulletproof
533 * in the face of half-implementations.)
534 */
535
536#ifndef S_IFMT
537# ifdef _S_IFMT
538# define S_IFMT _S_IFMT
539# else
540# define S_IFMT 0170000
541# endif
542#endif
543
544#ifndef S_ISDIR
545# define S_ISDIR(m) ((m & S_IFMT) == S_IFDIR)
546#endif
547
548#ifndef S_ISCHR
549# define S_ISCHR(m) ((m & S_IFMT) == S_IFCHR)
550#endif
551
552#ifndef S_ISBLK
fe14fcc3 553# ifdef S_IFBLK
554# define S_ISBLK(m) ((m & S_IFMT) == S_IFBLK)
555# else
556# define S_ISBLK(m) (0)
557# endif
c623bd54 558#endif
559
560#ifndef S_ISREG
561# define S_ISREG(m) ((m & S_IFMT) == S_IFREG)
562#endif
563
564#ifndef S_ISFIFO
fe14fcc3 565# ifdef S_IFIFO
566# define S_ISFIFO(m) ((m & S_IFMT) == S_IFIFO)
567# else
568# define S_ISFIFO(m) (0)
569# endif
c623bd54 570#endif
571
572#ifndef S_ISLNK
573# ifdef _S_ISLNK
574# define S_ISLNK(m) _S_ISLNK(m)
575# else
576# ifdef _S_IFLNK
577# define S_ISLNK(m) ((m & S_IFMT) == _S_IFLNK)
578# else
579# ifdef S_IFLNK
580# define S_ISLNK(m) ((m & S_IFMT) == S_IFLNK)
581# else
582# define S_ISLNK(m) (0)
583# endif
584# endif
585# endif
586#endif
587
588#ifndef S_ISSOCK
589# ifdef _S_ISSOCK
590# define S_ISSOCK(m) _S_ISSOCK(m)
591# else
592# ifdef _S_IFSOCK
593# define S_ISSOCK(m) ((m & S_IFMT) == _S_IFSOCK)
594# else
595# ifdef S_IFSOCK
596# define S_ISSOCK(m) ((m & S_IFMT) == S_IFSOCK)
597# else
598# define S_ISSOCK(m) (0)
599# endif
600# endif
601# endif
602#endif
603
604#ifndef S_IRUSR
605# ifdef S_IREAD
606# define S_IRUSR S_IREAD
607# define S_IWUSR S_IWRITE
608# define S_IXUSR S_IEXEC
609# else
610# define S_IRUSR 0400
611# define S_IWUSR 0200
612# define S_IXUSR 0100
613# endif
614# define S_IRGRP (S_IRUSR>>3)
615# define S_IWGRP (S_IWUSR>>3)
616# define S_IXGRP (S_IXUSR>>3)
617# define S_IROTH (S_IRUSR>>6)
618# define S_IWOTH (S_IWUSR>>6)
619# define S_IXOTH (S_IXUSR>>6)
620#endif
621
622#ifndef S_ISUID
623# define S_ISUID 04000
624#endif
625
626#ifndef S_ISGID
627# define S_ISGID 02000
628#endif
629
79072805 630#ifdef ff_next
631# undef ff_next
352d5a3a 632#endif
633
a0d0e21e 634#if defined(cray) || defined(gould) || defined(i860) || defined(pyr)
45d8adaa 635# define SLOPPYDIVIDE
636#endif
637
748a9306 638#ifdef UV
639#undef UV
640#endif
641
27d4fb96 642/* XXX QUAD stuff is not currently supported on most systems.
643 Specifically, perl internals don't support long long. Among
644 the many problems is that some compilers support long long,
645 but the underlying library functions (such as sprintf) don't.
646 Some things do work (such as quad pack/unpack on convex);
647 also some systems use long long for the fpos_t typedef. That
648 seems to work too.
649
650 The IV type is supposed to be long enough to hold any integral
651 value or a pointer.
652 --Andy Dougherty August 1996
653*/
654
f86702cc 655#ifdef cray
656# define Quad_t int
657#else
658# ifdef convex
659# define Quad_t long long
45d8adaa 660# else
f86702cc 661# if defined(VMS) && defined(__ALPHA)
662# define Quad_t __int64
45d8adaa 663# else
f86702cc 664# if BYTEORDER > 0xFFFF
665# define Quad_t long
666# endif
45d8adaa 667# endif
668# endif
f86702cc 669#endif
670
671#ifdef Quad_t
672# define HAS_QUAD
748a9306 673 typedef Quad_t IV;
674 typedef unsigned Quad_t UV;
27d4fb96 675# define IV_MAX PERL_QUAD_MAX
676# define IV_MIN PERL_QUAD_MIN
677# define UV_MAX PERL_UQUAD_MAX
678# define UV_MIN PERL_UQUAD_MIN
79072805 679#else
748a9306 680 typedef long IV;
681 typedef unsigned long UV;
27d4fb96 682# define IV_MAX PERL_LONG_MAX
683# define IV_MIN PERL_LONG_MIN
684# define UV_MAX PERL_ULONG_MAX
685# define UV_MIN PERL_ULONG_MIN
79072805 686#endif
687
760ac839 688/* Previously these definitions used hardcoded figures.
689 * It is hoped these formula are more portable, although
690 * no data one way or another is presently known to me.
691 * The "PERL_" names are used because these calculated constants
692 * do not meet the ANSI requirements for LONG_MAX, etc., which
693 * need to be constants acceptable to #if - kja
694 * define PERL_LONG_MAX 2147483647L
695 * define PERL_LONG_MIN (-LONG_MAX - 1)
696 * define PERL ULONG_MAX 4294967295L
697 */
698
699#ifdef I_LIMITS /* Needed for cast_xxx() functions below. */
700# include <limits.h>
701#else
702#ifdef I_VALUES
703# include <values.h>
704#endif
705#endif
706
99abf803 707/*
708 * Try to figure out max and min values for the integral types. THE CORRECT
709 * SOLUTION TO THIS MESS: ADAPT enquire.c FROM GCC INTO CONFIGURE. The
710 * following hacks are used if neither limits.h or values.h provide them:
711 * U<TYPE>_MAX: for types >= int: ~(unsigned TYPE)0
712 * for types < int: (unsigned TYPE)~(unsigned)0
713 * The argument to ~ must be unsigned so that later signed->unsigned
714 * conversion can't modify the value's bit pattern (e.g. -0 -> +0),
715 * and it must not be smaller than int because ~ does integral promotion.
716 * <type>_MAX: (<type>) (U<type>_MAX >> 1)
717 * <type>_MIN: -<type>_MAX - <is_twos_complement_architecture: (3 & -1) == 3>.
718 * The latter is a hack which happens to work on some machines but
719 * does *not* catch any random system, or things like integer types
720 * with NaN if that is possible.
721 *
722 * All of the types are explicitly cast to prevent accidental loss of
723 * numeric range, and in the hope that they will be less likely to confuse
724 * over-eager optimizers.
725 *
726 */
27d4fb96 727
99abf803 728#define PERL_UCHAR_MIN ((unsigned char)0)
729
730#ifdef UCHAR_MAX
731# define PERL_UCHAR_MAX ((unsigned char)UCHAR_MAX)
27d4fb96 732#else
99abf803 733# ifdef MAXUCHAR
734# define PERL_UCHAR_MAX ((unsigned char)MAXUCHAR)
27d4fb96 735# else
99abf803 736# define PERL_UCHAR_MAX ((unsigned char)~(unsigned)0)
27d4fb96 737# endif
738#endif
99abf803 739
740/*
741 * CHAR_MIN and CHAR_MAX are not included here, as the (char) type may be
742 * ambiguous. It may be equivalent to (signed char) or (unsigned char)
743 * depending on local options. Until Configure detects this (or at least
744 * detects whether the "signed" keyword is available) the CHAR ranges
745 * will not be included. UCHAR functions normally.
746 * - kja
747 */
27d4fb96 748
99abf803 749#define PERL_USHORT_MIN ((unsigned short)0)
750
751#ifdef USHORT_MAX
752# define PERL_USHORT_MAX ((unsigned short)USHORT_MAX)
27d4fb96 753#else
99abf803 754# ifdef MAXUSHORT
755# define PERL_USHORT_MAX ((unsigned short)MAXUSHORT)
27d4fb96 756# else
99abf803 757# define PERL_USHORT_MAX ((unsigned short)~(unsigned)0)
27d4fb96 758# endif
759#endif
760
27d4fb96 761#ifdef SHORT_MAX
99abf803 762# define PERL_SHORT_MAX ((short)SHORT_MAX)
27d4fb96 763#else
764# ifdef MAXSHORT /* Often used in <values.h> */
99abf803 765# define PERL_SHORT_MAX ((short)MAXSHORT)
27d4fb96 766# else
99abf803 767# define PERL_SHORT_MAX ((short) (PERL_USHORT_MAX >> 1))
27d4fb96 768# endif
769#endif
770
771#ifdef SHORT_MIN
99abf803 772# define PERL_SHORT_MIN ((short)SHORT_MIN)
27d4fb96 773#else
774# ifdef MINSHORT
99abf803 775# define PERL_SHORT_MIN ((short)MINSHORT)
27d4fb96 776# else
777# define PERL_SHORT_MIN (-PERL_SHORT_MAX - ((3 & -1) == 3))
778# endif
779#endif
780
99abf803 781#ifdef UINT_MAX
782# define PERL_UINT_MAX ((unsigned int)UINT_MAX)
27d4fb96 783#else
99abf803 784# ifdef MAXUINT
785# define PERL_UINT_MAX ((unsigned int)MAXUINT)
27d4fb96 786# else
99abf803 787# define PERL_UINT_MAX (~(unsigned int)0)
27d4fb96 788# endif
789#endif
790
99abf803 791#define PERL_UINT_MIN ((unsigned int)0)
27d4fb96 792
793#ifdef INT_MAX
99abf803 794# define PERL_INT_MAX ((int)INT_MAX)
27d4fb96 795#else
796# ifdef MAXINT /* Often used in <values.h> */
99abf803 797# define PERL_INT_MAX ((int)MAXINT)
27d4fb96 798# else
99abf803 799# define PERL_INT_MAX ((int)(PERL_UINT_MAX >> 1))
27d4fb96 800# endif
801#endif
802
803#ifdef INT_MIN
99abf803 804# define PERL_INT_MIN ((int)INT_MIN)
27d4fb96 805#else
806# ifdef MININT
99abf803 807# define PERL_INT_MIN ((int)MININT)
27d4fb96 808# else
809# define PERL_INT_MIN (-PERL_INT_MAX - ((3 & -1) == 3))
810# endif
811#endif
812
99abf803 813#ifdef ULONG_MAX
814# define PERL_ULONG_MAX ((unsigned long)ULONG_MAX)
27d4fb96 815#else
99abf803 816# ifdef MAXULONG
817# define PERL_ULONG_MAX ((unsigned long)MAXULONG)
27d4fb96 818# else
99abf803 819# define PERL_ULONG_MAX (~(unsigned long)0)
27d4fb96 820# endif
821#endif
822
99abf803 823#define PERL_ULONG_MIN ((unsigned long)0L)
27d4fb96 824
760ac839 825#ifdef LONG_MAX
99abf803 826# define PERL_LONG_MAX ((long)LONG_MAX)
760ac839 827#else
828# ifdef MAXLONG /* Often used in <values.h> */
99abf803 829# define PERL_LONG_MAX ((long)MAXLONG)
760ac839 830# else
99abf803 831# define PERL_LONG_MAX ((long) (PERL_ULONG_MAX >> 1))
760ac839 832# endif
833#endif
834
835#ifdef LONG_MIN
99abf803 836# define PERL_LONG_MIN ((long)LONG_MIN)
760ac839 837#else
838# ifdef MINLONG
99abf803 839# define PERL_LONG_MIN ((long)MINLONG)
760ac839 840# else
27d4fb96 841# define PERL_LONG_MIN (-PERL_LONG_MAX - ((3 & -1) == 3))
760ac839 842# endif
843#endif
844
99abf803 845#ifdef HAS_QUAD
846
847# ifdef UQUAD_MAX
848# define PERL_UQUAD_MAX ((UV)UQUAD_MAX)
760ac839 849# else
99abf803 850# define PERL_UQUAD_MAX (~(UV)0)
760ac839 851# endif
760ac839 852
99abf803 853# define PERL_UQUAD_MIN ((UV)0)
27d4fb96 854
27d4fb96 855# ifdef QUAD_MAX
99abf803 856# define PERL_QUAD_MAX ((IV)QUAD_MAX)
27d4fb96 857# else
99abf803 858# define PERL_QUAD_MAX ((IV) (PERL_UQUAD_MAX >> 1))
27d4fb96 859# endif
860
861# ifdef QUAD_MIN
99abf803 862# define PERL_QUAD_MIN ((IV)QUAD_MIN)
27d4fb96 863# else
a6e633de 864# define PERL_QUAD_MIN (-PERL_QUAD_MAX - ((3 & -1) == 3))
27d4fb96 865# endif
866
760ac839 867#endif
868
ee0007ab 869typedef MEM_SIZE STRLEN;
450a55e4 870
79072805 871typedef struct op OP;
872typedef struct cop COP;
873typedef struct unop UNOP;
874typedef struct binop BINOP;
875typedef struct listop LISTOP;
876typedef struct logop LOGOP;
877typedef struct condop CONDOP;
878typedef struct pmop PMOP;
879typedef struct svop SVOP;
880typedef struct gvop GVOP;
881typedef struct pvop PVOP;
79072805 882typedef struct loop LOOP;
883
884typedef struct Outrec Outrec;
93a17b20 885typedef struct interpreter PerlInterpreter;
79072805 886typedef struct ff FF;
79072805 887typedef struct sv SV;
888typedef struct av AV;
889typedef struct hv HV;
890typedef struct cv CV;
378cc40b 891typedef struct regexp REGEXP;
79072805 892typedef struct gp GP;
0c30d9ec 893typedef struct gv GV;
8990e307 894typedef struct io IO;
79072805 895typedef struct context CONTEXT;
896typedef struct block BLOCK;
897
898typedef struct magic MAGIC;
ed6116ce 899typedef struct xrv XRV;
79072805 900typedef struct xpv XPV;
901typedef struct xpviv XPVIV;
ff68c719 902typedef struct xpvuv XPVUV;
79072805 903typedef struct xpvnv XPVNV;
904typedef struct xpvmg XPVMG;
905typedef struct xpvlv XPVLV;
906typedef struct xpvav XPVAV;
907typedef struct xpvhv XPVHV;
908typedef struct xpvgv XPVGV;
909typedef struct xpvcv XPVCV;
910typedef struct xpvbm XPVBM;
911typedef struct xpvfm XPVFM;
8990e307 912typedef struct xpvio XPVIO;
79072805 913typedef struct mgvtbl MGVTBL;
914typedef union any ANY;
8d063cd8 915
378cc40b 916#include "handy.h"
a0d0e21e 917
16d20bd9 918typedef I32 (*filter_t) _((int, SV *, int));
919#define FILTER_READ(idx, sv, len) filter_read(idx, sv, len)
920#define FILTER_DATA(idx) (AvARRAY(rsfp_filters)[idx])
921#define FILTER_ISREADER(idx) (idx >= AvFILL(rsfp_filters))
922
748a9306 923#ifdef DOSISH
4633a7c4 924# if defined(OS2)
925# include "os2ish.h"
926# else
748a9306 927# include "dosish.h"
4633a7c4 928# endif
a0d0e21e 929#else
748a9306 930# if defined(VMS)
931# include "vmsish.h"
932# else
0c30d9ec 933# if defined(PLAN9)
934# include "./plan9/plan9ish.h"
935# else
936# include "unixish.h"
937# endif
748a9306 938# endif
939#endif
3fc1aec6 940
941/* Some unistd.h's give a prototype for pause() even though
942 HAS_PAUSE ends up undefined. This causes the #define
943 below to be rejected by the compmiler. Sigh.
944*/
945#ifdef HAS_PAUSE
946#define Pause pause
947#else
948#define Pause() sleep((32767<<16)+32767)
748a9306 949#endif
950
951#ifndef IOCPARM_LEN
952# ifdef IOCPARM_MASK
953 /* on BSDish systes we're safe */
954# define IOCPARM_LEN(x) (((x) >> 16) & IOCPARM_MASK)
955# else
956 /* otherwise guess at what's safe */
957# define IOCPARM_LEN(x) 256
958# endif
a0d0e21e 959#endif
960
79072805 961union any {
962 void* any_ptr;
963 I32 any_i32;
a0d0e21e 964 IV any_iv;
85e6fe83 965 long any_long;
a0d0e21e 966 void (*any_dptr) _((void*));
79072805 967};
968
378cc40b 969#include "regexp.h"
79072805 970#include "sv.h"
378cc40b 971#include "util.h"
8d063cd8 972#include "form.h"
79072805 973#include "gv.h"
974#include "cv.h"
975#include "opcode.h"
976#include "op.h"
977#include "cop.h"
978#include "av.h"
979#include "hv.h"
980#include "mg.h"
981#include "scope.h"
8d063cd8 982
4633a7c4 983/* work around some libPW problems */
984#ifdef DOINIT
985EXT char Error[1];
986#endif
987
450a55e4 988#if defined(iAPX286) || defined(M_I286) || defined(I80286)
a687059c 989# define I286
990#endif
991
fe14fcc3 992#if defined(htonl) && !defined(HAS_HTONL)
993#define HAS_HTONL
ae986130 994#endif
fe14fcc3 995#if defined(htons) && !defined(HAS_HTONS)
996#define HAS_HTONS
ae986130 997#endif
fe14fcc3 998#if defined(ntohl) && !defined(HAS_NTOHL)
999#define HAS_NTOHL
ae986130 1000#endif
fe14fcc3 1001#if defined(ntohs) && !defined(HAS_NTOHS)
1002#define HAS_NTOHS
ae986130 1003#endif
fe14fcc3 1004#ifndef HAS_HTONL
d9d8d8de 1005#if (BYTEORDER & 0xffff) != 0x4321
fe14fcc3 1006#define HAS_HTONS
1007#define HAS_HTONL
1008#define HAS_NTOHS
1009#define HAS_NTOHL
a687059c 1010#define MYSWAP
1011#define htons my_swap
1012#define htonl my_htonl
1013#define ntohs my_swap
1014#define ntohl my_ntohl
1015#endif
1016#else
d9d8d8de 1017#if (BYTEORDER & 0xffff) == 0x4321
fe14fcc3 1018#undef HAS_HTONS
1019#undef HAS_HTONL
1020#undef HAS_NTOHS
1021#undef HAS_NTOHL
a687059c 1022#endif
1023#endif
1024
988174c1 1025/*
1026 * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
1027 * -DWS
1028 */
1029#if BYTEORDER != 0x1234
1030# define HAS_VTOHL
1031# define HAS_VTOHS
1032# define HAS_HTOVL
1033# define HAS_HTOVS
1034# if BYTEORDER == 0x4321
1035# define vtohl(x) ((((x)&0xFF)<<24) \
1036 +(((x)>>24)&0xFF) \
1037 +(((x)&0x0000FF00)<<8) \
1038 +(((x)&0x00FF0000)>>8) )
1039# define vtohs(x) ((((x)&0xFF)<<8) + (((x)>>8)&0xFF))
1040# define htovl(x) vtohl(x)
1041# define htovs(x) vtohs(x)
1042# endif
1043 /* otherwise default to functions in util.c */
1044#endif
1045
0f85fab0 1046#ifdef CASTNEGFLOAT
79072805 1047#define U_S(what) ((U16)(what))
0f85fab0 1048#define U_I(what) ((unsigned int)(what))
79072805 1049#define U_L(what) ((U32)(what))
0f85fab0 1050#else
a6e633de 1051# ifdef __cplusplus
1052 extern "C" {
1053# endif
a0d0e21e 1054U32 cast_ulong _((double));
a6e633de 1055# ifdef __cplusplus
1056 }
1057# endif
232e078e 1058#define U_S(what) ((U16)cast_ulong((double)(what)))
1059#define U_I(what) ((unsigned int)cast_ulong((double)(what)))
1060#define U_L(what) (cast_ulong((double)(what)))
ee0007ab 1061#endif
1062
ed6116ce 1063#ifdef CASTI32
1064#define I_32(what) ((I32)(what))
a0d0e21e 1065#define I_V(what) ((IV)(what))
5d94fbed 1066#define U_V(what) ((UV)(what))
ed6116ce 1067#else
a6e633de 1068# ifdef __cplusplus
1069 extern "C" {
1070# endif
a0d0e21e 1071I32 cast_i32 _((double));
a0d0e21e 1072IV cast_iv _((double));
5d94fbed 1073UV cast_uv _((double));
a6e633de 1074# ifdef __cplusplus
1075 }
1076# endif
1077#define I_32(what) (cast_i32((double)(what)))
1078#define I_V(what) (cast_iv((double)(what)))
5d94fbed 1079#define U_V(what) (cast_uv((double)(what)))
ed6116ce 1080#endif
1081
79072805 1082struct Outrec {
1083 I32 o_lines;
d9d8d8de 1084 char *o_str;
79072805 1085 U32 o_len;
8d063cd8 1086};
1087
352d5a3a 1088#ifndef MAXSYSFD
1089# define MAXSYSFD 2
1090#endif
ee0007ab 1091
f82b3d41 1092#ifndef TMPPATH
1093# define TMPPATH "/tmp/perl-eXXXXXX"
a0d0e21e 1094#endif
79072805 1095
1096#ifndef __cplusplus
a0d0e21e 1097Uid_t getuid _((void));
1098Uid_t geteuid _((void));
1099Gid_t getgid _((void));
1100Gid_t getegid _((void));
79072805 1101#endif
8d063cd8 1102
1103#ifdef DEBUGGING
0c30d9ec 1104#ifndef Perl_debug_log
760ac839 1105#define Perl_debug_log PerlIO_stderr()
0c30d9ec 1106#endif
d96024cf 1107#define YYDEBUG 1
79072805 1108#define DEB(a) a
1109#define DEBUG(a) if (debug) a
1110#define DEBUG_p(a) if (debug & 1) a
1111#define DEBUG_s(a) if (debug & 2) a
1112#define DEBUG_l(a) if (debug & 4) a
1113#define DEBUG_t(a) if (debug & 8) a
1114#define DEBUG_o(a) if (debug & 16) a
1115#define DEBUG_c(a) if (debug & 32) a
1116#define DEBUG_P(a) if (debug & 64) a
0c30d9ec 1117#define DEBUG_m(a) if (curinterp && debug & 128) a
79072805 1118#define DEBUG_f(a) if (debug & 256) a
1119#define DEBUG_r(a) if (debug & 512) a
1120#define DEBUG_x(a) if (debug & 1024) a
1121#define DEBUG_u(a) if (debug & 2048) a
1122#define DEBUG_L(a) if (debug & 4096) a
1123#define DEBUG_H(a) if (debug & 8192) a
1124#define DEBUG_X(a) if (debug & 16384) a
8990e307 1125#define DEBUG_D(a) if (debug & 32768) a
79072805 1126#else
1127#define DEB(a)
1128#define DEBUG(a)
1129#define DEBUG_p(a)
1130#define DEBUG_s(a)
1131#define DEBUG_l(a)
1132#define DEBUG_t(a)
1133#define DEBUG_o(a)
1134#define DEBUG_c(a)
1135#define DEBUG_P(a)
1136#define DEBUG_m(a)
1137#define DEBUG_f(a)
1138#define DEBUG_r(a)
1139#define DEBUG_x(a)
1140#define DEBUG_u(a)
1141#define DEBUG_L(a)
1142#define DEBUG_H(a)
1143#define DEBUG_X(a)
8990e307 1144#define DEBUG_D(a)
8d063cd8 1145#endif
fe14fcc3 1146#define YYMAXDEPTH 300
8d063cd8 1147
a6e633de 1148#ifndef assert /* <assert.h> might have been included somehow */
79072805 1149#define assert(what) DEB( { \
1150 if (!(what)) { \
463ee0b2 1151 croak("Assertion failed: file \"%s\", line %d", \
79072805 1152 __FILE__, __LINE__); \
1153 exit(1); \
1154 }})
a6e633de 1155#endif
8d063cd8 1156
450a55e4 1157struct ufuncs {
a0d0e21e 1158 I32 (*uf_val)_((IV, SV*));
1159 I32 (*uf_set)_((IV, SV*));
1160 IV uf_index;
450a55e4 1161};
1162
fe14fcc3 1163/* Fix these up for __STDC__ */
a0d0e21e 1164#ifndef __cplusplus
1165char *mktemp _((char*));
1166double atof _((const char*));
1167#endif
79072805 1168
352d5a3a 1169#ifndef STANDARD_C
fe14fcc3 1170/* All of these are in stdlib.h or time.h for ANSI C */
85e6fe83 1171Time_t time();
8d063cd8 1172struct tm *gmtime(), *localtime();
93a17b20 1173char *strchr(), *strrchr();
378cc40b 1174char *strcpy(), *strcat();
352d5a3a 1175#endif /* ! STANDARD_C */
8d063cd8 1176
79072805 1177
1178#ifdef I_MATH
1179# include <math.h>
1180#else
1181# ifdef __cplusplus
1182 extern "C" {
1183# endif
a0d0e21e 1184 double exp _((double));
a0d0e21e 1185 double log _((double));
1186 double sqrt _((double));
1187 double modf _((double,double*));
1188 double sin _((double));
1189 double cos _((double));
1190 double atan2 _((double,double));
1191 double pow _((double,double));
79072805 1192# ifdef __cplusplus
1193 };
1194# endif
1195#endif
1196
a0d0e21e 1197#ifndef __cplusplus
3fc1aec6 1198#ifdef __NeXT__ /* or whatever catches all NeXTs */
1199char *crypt (); /* Maybe more hosts will need the unprototyped version */
1200#else
a0d0e21e 1201char *crypt _((const char*, const char*));
3fc1aec6 1202#endif
a0d0e21e 1203char *getenv _((const char*));
1204Off_t lseek _((int,Off_t,int));
1205char *getlogin _((void));
1206#endif
79072805 1207
16d20bd9 1208#ifdef UNLINK_ALL_VERSIONS /* Currently only makes sense for VMS */
378cc40b 1209#define UNLINK unlnk
a0d0e21e 1210I32 unlnk _((char*));
8d063cd8 1211#else
1212#define UNLINK unlink
1213#endif
a687059c 1214
fe14fcc3 1215#ifndef HAS_SETREUID
85e6fe83 1216# ifdef HAS_SETRESUID
1217# define setreuid(r,e) setresuid(r,e,(Uid_t)-1)
1218# define HAS_SETREUID
1219# endif
a687059c 1220#endif
fe14fcc3 1221#ifndef HAS_SETREGID
85e6fe83 1222# ifdef HAS_SETRESGID
1223# define setregid(r,e) setresgid(r,e,(Gid_t)-1)
1224# define HAS_SETREGID
1225# endif
a687059c 1226#endif
ee0007ab 1227
ff68c719 1228typedef Signal_t (*Sighandler_t) _((int));
1229
1230#ifdef HAS_SIGACTION
1231typedef struct sigaction Sigsave_t;
1232#else
1233typedef Sighandler_t Sigsave_t;
1234#endif
1235
ee0007ab 1236#define SCAN_DEF 0
1237#define SCAN_TR 1
1238#define SCAN_REPL 2
79072805 1239
1240#ifdef DEBUGGING
4633a7c4 1241# ifndef register
a0d0e21e 1242# define register
1243# endif
55497cff 1244# ifdef MYMALLOC
1245# ifndef DEBUGGING_MSTATS
1246# define DEBUGGING_MSTATS
1247# endif
1248# endif
a0d0e21e 1249# define PAD_SV(po) pad_sv(po)
79072805 1250#else
a0d0e21e 1251# define PAD_SV(po) curpad[po]
79072805 1252#endif
1253
1254/****************/
1255/* Truly global */
1256/****************/
1257
1258/* global state */
a0d0e21e 1259EXT PerlInterpreter * curinterp; /* currently running interpreter */
0c30d9ec 1260/* VMS doesn't use environ array and NeXT has problems with crt0.o globals */
1261#if !defined(VMS) && !(defined(NeXT) && defined(__DYNAMIC__))
79072805 1262extern char ** environ; /* environment variables supplied via exec */
0c30d9ec 1263#else
1264# if defined(NeXT) && defined(__DYNAMIC__)
1265
1266# include <mach-o/dyld.h>
1267EXT char *** environ_pointer;
1268# define environ (*environ_pointer)
1269# endif
1270#endif /* environ processing */
1271
79072805 1272EXT int uid; /* current real user id */
1273EXT int euid; /* current effective user id */
1274EXT int gid; /* current real group id */
1275EXT int egid; /* current effective group id */
1276EXT bool nomemok; /* let malloc context handle nomem */
1277EXT U32 an; /* malloc sequence number */
463ee0b2 1278EXT U32 cop_seqmax; /* statement sequence number */
c07a80fd 1279EXT U16 op_seqmax; /* op sequence number */
8990e307 1280EXT U32 evalseq; /* eval sequence number */
463ee0b2 1281EXT U32 sub_generation; /* inc to force methods to be looked up again */
79072805 1282EXT char ** origenviron;
1283EXT U32 origalen;
44a8e56a 1284EXT HV * pidstatus; /* pid-to-status mappings for waitpid */
a0d0e21e 1285EXT U32 * profiledata;
84ea024a 1286EXT int maxo INIT(MAXO);/* Number of ops */
728e2803 1287EXT char * osname; /* operating system */
ff68c719 1288EXT char * sh_path INIT(SH_PATH); /* full path of shell */
79072805 1289
a0d0e21e 1290EXT XPV* xiv_arenaroot; /* list of allocated xiv areas */
1291EXT IV ** xiv_root; /* free xiv list--shared by interpreters */
8990e307 1292EXT double * xnv_root; /* free xnv list--shared by interpreters */
1293EXT XRV * xrv_root; /* free xrv list--shared by interpreters */
1294EXT XPV * xpv_root; /* free xpv list--shared by interpreters */
4633a7c4 1295EXT HE * he_root; /* free he list--shared by interpreters */
c07a80fd 1296EXT char * nice_chunk; /* a nice chunk of memory to reuse */
1297EXT U32 nice_chunk_size;/* how nice the chunk of memory is */
8990e307 1298
79072805 1299/* Stack for currently executing thread--context switch must handle this. */
1300EXT SV ** stack_base; /* stack->array_ary */
1301EXT SV ** stack_sp; /* stack pointer now */
1302EXT SV ** stack_max; /* stack->array_ary + stack->array_max */
1303
1304/* likewise for these */
1305
1306EXT OP * op; /* current op--oughta be in a global register */
1307
1308EXT I32 * scopestack; /* blocks we've entered */
1309EXT I32 scopestack_ix;
1310EXT I32 scopestack_max;
1311
1312EXT ANY* savestack; /* to save non-local values on */
1313EXT I32 savestack_ix;
1314EXT I32 savestack_max;
1315
1316EXT OP ** retstack; /* returns we've pushed */
1317EXT I32 retstack_ix;
1318EXT I32 retstack_max;
1319
1320EXT I32 * markstack; /* stackmarks we're remembering */
1321EXT I32 * markstack_ptr; /* stackmarks we're remembering */
1322EXT I32 * markstack_max; /* stackmarks we're remembering */
1323
1324EXT SV ** curpad;
1325
1326/* temp space */
1327EXT SV * Sv;
1328EXT XPV * Xpv;
f82b3d41 1329EXT char buf[2048]; /* should be longer than PATH_MAX */
79072805 1330EXT char tokenbuf[256];
1331EXT struct stat statbuf;
ecfc5424 1332#ifdef HAS_TIMES
79072805 1333EXT struct tms timesbuf;
1334#endif
463ee0b2 1335EXT STRLEN na; /* for use in SvPV when length is Not Applicable */
79072805 1336
1337/* for tmp use in stupid debuggers */
1338EXT int * di;
1339EXT short * ds;
1340EXT char * dc;
1341
1342/* handy constants */
71be2cbc 1343EXTCONST char * Yes INIT("1");
1344EXTCONST char * No INIT("");
1345EXTCONST char * hexdigit INIT("0123456789abcdef0123456789ABCDEFx");
1346EXTCONST char * patleave INIT("\\.^$@dDwWsSbB+*?|()-nrtfeaxc0123456789[{]}");
1347EXTCONST char * vert INIT("|");
79072805 1348
71be2cbc 1349EXTCONST char warn_uninit[]
a0d0e21e 1350 INIT("Use of uninitialized value");
71be2cbc 1351EXTCONST char warn_nosemi[]
463ee0b2 1352 INIT("Semicolon seems to be missing");
71be2cbc 1353EXTCONST char warn_reserved[]
463ee0b2 1354 INIT("Unquoted string \"%s\" may clash with future reserved word");
71be2cbc 1355EXTCONST char warn_nl[]
93a17b20 1356 INIT("Unsuccessful %s on filename containing newline");
71be2cbc 1357EXTCONST char no_wrongref[]
a0d0e21e 1358 INIT("Can't use %s ref as %s ref");
71be2cbc 1359EXTCONST char no_symref[]
748a9306 1360 INIT("Can't use string (\"%.32s\") as %s ref while \"strict refs\" in use");
71be2cbc 1361EXTCONST char no_usym[]
8990e307 1362 INIT("Can't use an undefined value as %s reference");
71be2cbc 1363EXTCONST char no_aelem[]
93a17b20 1364 INIT("Modification of non-creatable array value attempted, subscript %d");
71be2cbc 1365EXTCONST char no_helem[]
93a17b20 1366 INIT("Modification of non-creatable hash value attempted, subscript \"%s\"");
71be2cbc 1367EXTCONST char no_modify[]
93a17b20 1368 INIT("Modification of a read-only value attempted");
71be2cbc 1369EXTCONST char no_mem[]
93a17b20 1370 INIT("Out of memory!\n");
71be2cbc 1371EXTCONST char no_security[]
463ee0b2 1372 INIT("Insecure dependency in %s%s");
71be2cbc 1373EXTCONST char no_sock_func[]
93a17b20 1374 INIT("Unsupported socket function \"%s\" called");
71be2cbc 1375EXTCONST char no_dir_func[]
93a17b20 1376 INIT("Unsupported directory function \"%s\" called");
71be2cbc 1377EXTCONST char no_func[]
93a17b20 1378 INIT("The %s function is unimplemented");
71be2cbc 1379EXTCONST char no_myglob[]
748a9306 1380 INIT("\"my\" variable %s can't be in a package");
93a17b20 1381
79072805 1382EXT SV sv_undef;
1383EXT SV sv_no;
1384EXT SV sv_yes;
1385#ifdef CSH
1386 EXT char * cshname INIT(CSH);
1387 EXT I32 cshlen;
1388#endif
1389
1390#ifdef DOINIT
8e07c86e 1391EXT char *sig_name[] = { SIG_NAME };
1392EXT int sig_num[] = { SIG_NUM };
0c30d9ec 1393EXT SV * psig_ptr[sizeof(sig_num)/sizeof(*sig_num)];
1394EXT SV * psig_name[sizeof(sig_num)/sizeof(*sig_num)];
79072805 1395#else
1396EXT char *sig_name[];
8e07c86e 1397EXT int sig_num[];
0c30d9ec 1398EXT SV * psig_ptr[];
1399EXT SV * psig_name[];
79072805 1400#endif
1401
bbce6d69 1402/* fast case folding tables */
1403
79072805 1404#ifdef DOINIT
36477c24 1405EXTCONST unsigned char fold[] = {
79072805 1406 0, 1, 2, 3, 4, 5, 6, 7,
1407 8, 9, 10, 11, 12, 13, 14, 15,
1408 16, 17, 18, 19, 20, 21, 22, 23,
1409 24, 25, 26, 27, 28, 29, 30, 31,
1410 32, 33, 34, 35, 36, 37, 38, 39,
1411 40, 41, 42, 43, 44, 45, 46, 47,
1412 48, 49, 50, 51, 52, 53, 54, 55,
1413 56, 57, 58, 59, 60, 61, 62, 63,
1414 64, 'a', 'b', 'c', 'd', 'e', 'f', 'g',
1415 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
1416 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
1417 'x', 'y', 'z', 91, 92, 93, 94, 95,
1418 96, 'A', 'B', 'C', 'D', 'E', 'F', 'G',
1419 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
1420 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
1421 'X', 'Y', 'Z', 123, 124, 125, 126, 127,
1422 128, 129, 130, 131, 132, 133, 134, 135,
1423 136, 137, 138, 139, 140, 141, 142, 143,
1424 144, 145, 146, 147, 148, 149, 150, 151,
1425 152, 153, 154, 155, 156, 157, 158, 159,
1426 160, 161, 162, 163, 164, 165, 166, 167,
1427 168, 169, 170, 171, 172, 173, 174, 175,
1428 176, 177, 178, 179, 180, 181, 182, 183,
1429 184, 185, 186, 187, 188, 189, 190, 191,
1430 192, 193, 194, 195, 196, 197, 198, 199,
1431 200, 201, 202, 203, 204, 205, 206, 207,
1432 208, 209, 210, 211, 212, 213, 214, 215,
1433 216, 217, 218, 219, 220, 221, 222, 223,
1434 224, 225, 226, 227, 228, 229, 230, 231,
1435 232, 233, 234, 235, 236, 237, 238, 239,
1436 240, 241, 242, 243, 244, 245, 246, 247,
1437 248, 249, 250, 251, 252, 253, 254, 255
1438};
1439#else
71be2cbc 1440EXTCONST unsigned char fold[];
79072805 1441#endif
1442
1443#ifdef DOINIT
bbce6d69 1444EXT unsigned char fold_locale[] = {
1445 0, 1, 2, 3, 4, 5, 6, 7,
1446 8, 9, 10, 11, 12, 13, 14, 15,
1447 16, 17, 18, 19, 20, 21, 22, 23,
1448 24, 25, 26, 27, 28, 29, 30, 31,
1449 32, 33, 34, 35, 36, 37, 38, 39,
1450 40, 41, 42, 43, 44, 45, 46, 47,
1451 48, 49, 50, 51, 52, 53, 54, 55,
1452 56, 57, 58, 59, 60, 61, 62, 63,
1453 64, 'a', 'b', 'c', 'd', 'e', 'f', 'g',
1454 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
1455 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
1456 'x', 'y', 'z', 91, 92, 93, 94, 95,
1457 96, 'A', 'B', 'C', 'D', 'E', 'F', 'G',
1458 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
1459 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
1460 'X', 'Y', 'Z', 123, 124, 125, 126, 127,
1461 128, 129, 130, 131, 132, 133, 134, 135,
1462 136, 137, 138, 139, 140, 141, 142, 143,
1463 144, 145, 146, 147, 148, 149, 150, 151,
1464 152, 153, 154, 155, 156, 157, 158, 159,
1465 160, 161, 162, 163, 164, 165, 166, 167,
1466 168, 169, 170, 171, 172, 173, 174, 175,
1467 176, 177, 178, 179, 180, 181, 182, 183,
1468 184, 185, 186, 187, 188, 189, 190, 191,
1469 192, 193, 194, 195, 196, 197, 198, 199,
1470 200, 201, 202, 203, 204, 205, 206, 207,
1471 208, 209, 210, 211, 212, 213, 214, 215,
1472 216, 217, 218, 219, 220, 221, 222, 223,
1473 224, 225, 226, 227, 228, 229, 230, 231,
1474 232, 233, 234, 235, 236, 237, 238, 239,
1475 240, 241, 242, 243, 244, 245, 246, 247,
1476 248, 249, 250, 251, 252, 253, 254, 255
1477};
1478#else
1479EXT unsigned char fold_locale[];
1480#endif
1481
1482#ifdef DOINIT
71be2cbc 1483EXTCONST unsigned char freq[] = { /* letter frequencies for mixed English/C */
79072805 1484 1, 2, 84, 151, 154, 155, 156, 157,
1485 165, 246, 250, 3, 158, 7, 18, 29,
1486 40, 51, 62, 73, 85, 96, 107, 118,
1487 129, 140, 147, 148, 149, 150, 152, 153,
1488 255, 182, 224, 205, 174, 176, 180, 217,
1489 233, 232, 236, 187, 235, 228, 234, 226,
1490 222, 219, 211, 195, 188, 193, 185, 184,
1491 191, 183, 201, 229, 181, 220, 194, 162,
1492 163, 208, 186, 202, 200, 218, 198, 179,
1493 178, 214, 166, 170, 207, 199, 209, 206,
1494 204, 160, 212, 216, 215, 192, 175, 173,
1495 243, 172, 161, 190, 203, 189, 164, 230,
1496 167, 248, 227, 244, 242, 255, 241, 231,
1497 240, 253, 169, 210, 245, 237, 249, 247,
1498 239, 168, 252, 251, 254, 238, 223, 221,
1499 213, 225, 177, 197, 171, 196, 159, 4,
1500 5, 6, 8, 9, 10, 11, 12, 13,
1501 14, 15, 16, 17, 19, 20, 21, 22,
1502 23, 24, 25, 26, 27, 28, 30, 31,
1503 32, 33, 34, 35, 36, 37, 38, 39,
1504 41, 42, 43, 44, 45, 46, 47, 48,
1505 49, 50, 52, 53, 54, 55, 56, 57,
1506 58, 59, 60, 61, 63, 64, 65, 66,
1507 67, 68, 69, 70, 71, 72, 74, 75,
1508 76, 77, 78, 79, 80, 81, 82, 83,
1509 86, 87, 88, 89, 90, 91, 92, 93,
1510 94, 95, 97, 98, 99, 100, 101, 102,
1511 103, 104, 105, 106, 108, 109, 110, 111,
1512 112, 113, 114, 115, 116, 117, 119, 120,
1513 121, 122, 123, 124, 125, 126, 127, 128,
1514 130, 131, 132, 133, 134, 135, 136, 137,
1515 138, 139, 141, 142, 143, 144, 145, 146
1516};
1517#else
71be2cbc 1518EXTCONST unsigned char freq[];
79072805 1519#endif
1520
8990e307 1521#ifdef DEBUGGING
1522#ifdef DOINIT
71be2cbc 1523EXTCONST char* block_type[] = {
8990e307 1524 "NULL",
1525 "SUB",
1526 "EVAL",
1527 "LOOP",
1528 "SUBST",
1529 "BLOCK",
1530};
1531#else
71be2cbc 1532EXTCONST char* block_type[];
8990e307 1533#endif
1534#endif
1535
79072805 1536/*****************************************************************************/
1537/* This lexer/parser stuff is currently global since yacc is hard to reenter */
1538/*****************************************************************************/
8990e307 1539/* XXX This needs to be revisited, since BEGIN makes yacc re-enter... */
79072805 1540
a0d0e21e 1541#include "perly.h"
1542
79072805 1543typedef enum {
1544 XOPERATOR,
1545 XTERM,
79072805 1546 XREF,
8990e307 1547 XSTATE,
a0d0e21e 1548 XBLOCK,
1549 XTERMBLOCK
79072805 1550} expectation;
1551
a0d0e21e 1552EXT U32 lex_state; /* next token is determined */
1553EXT U32 lex_defer; /* state after determined token */
1554EXT expectation lex_expect; /* expect after determined token */
1555EXT I32 lex_brackets; /* bracket count */
1556EXT I32 lex_formbrack; /* bracket count at outer format level */
1557EXT I32 lex_fakebrack; /* outer bracket is mere delimiter */
1558EXT I32 lex_casemods; /* casemod count */
1559EXT I32 lex_dojoin; /* doing an array interpolation */
1560EXT I32 lex_starts; /* how many interps done on level */
1561EXT SV * lex_stuff; /* runtime pattern from m// or s/// */
1562EXT SV * lex_repl; /* runtime replacement from s/// */
1563EXT OP * lex_op; /* extra info to pass back on op */
1564EXT OP * lex_inpat; /* in pattern $) and $| are special */
1565EXT I32 lex_inwhat; /* what kind of quoting are we in */
1566EXT char * lex_brackstack; /* what kind of brackets to pop */
1567EXT char * lex_casestack; /* what kind of case mods in effect */
1568
1569/* What we know when we're in LEX_KNOWNEXT state. */
1570EXT YYSTYPE nextval[5]; /* value of next token, if any */
1571EXT I32 nexttype[5]; /* type of next token */
1572EXT I32 nexttoke;
1573
760ac839 1574EXT PerlIO * VOL rsfp INIT(Nullfp);
79072805 1575EXT SV * linestr;
1576EXT char * bufptr;
1577EXT char * oldbufptr;
1578EXT char * oldoldbufptr;
1579EXT char * bufend;
8990e307 1580EXT expectation expect INIT(XSTATE); /* how to interpret ambiguous tokens */
16d20bd9 1581EXT AV * rsfp_filters;
79072805 1582
1583EXT I32 multi_start; /* 1st line of multi-line string */
1584EXT I32 multi_end; /* last line of multi-line string */
1585EXT I32 multi_open; /* delimiter of said string */
1586EXT I32 multi_close; /* delimiter of said string */
1587
1588EXT GV * scrgv;
1589EXT I32 error_count; /* how many errors so far, max 10 */
1590EXT I32 subline; /* line this subroutine began on */
1591EXT SV * subname; /* name of current subroutine */
1592
748a9306 1593EXT CV * compcv; /* currently compiling subroutine */
93a17b20 1594EXT AV * comppad; /* storage for lexically scoped temporaries */
8990e307 1595EXT AV * comppad_name; /* variable names for "my" variables */
1596EXT I32 comppad_name_fill;/* last "introduced" variable offset */
0c30d9ec 1597EXT I32 comppad_name_floor;/* start of vars in innermost block */
8990e307 1598EXT I32 min_intro_pending;/* start of vars to introduce */
1599EXT I32 max_intro_pending;/* end of vars to introduce */
79072805 1600EXT I32 padix; /* max used index in current "register" pad */
a0d0e21e 1601EXT I32 padix_floor; /* how low may inner block reset padix */
748a9306 1602EXT I32 pad_reset_pending; /* reset pad on next attempted alloc */
79072805 1603EXT COP compiling;
1604
79072805 1605EXT I32 thisexpr; /* name id for nothing_in_common() */
1606EXT char * last_uni; /* position of last named-unary operator */
1607EXT char * last_lop; /* position of last list operator */
8990e307 1608EXT OPCODE last_lop_op; /* last list operator */
93a17b20 1609EXT bool in_my; /* we're compiling a "my" declaration */
79072805 1610#ifdef FCRYPT
1611EXT I32 cryptseen; /* has fast crypt() been initialized? */
1612#endif
1613
85e6fe83 1614EXT U32 hints; /* various compilation flags */
1615
1616 /* Note: the lowest 8 bits are reserved for
1617 stuffing into op->op_private */
1618#define HINT_INTEGER 0x00000001
1619#define HINT_STRICT_REFS 0x00000002
1620
1621#define HINT_BLOCK_SCOPE 0x00000100
1622#define HINT_STRICT_SUBS 0x00000200
1623#define HINT_STRICT_VARS 0x00000400
bbce6d69 1624#define HINT_LOCALE 0x00000800
85e6fe83 1625
79072805 1626/**************************************************************************/
1627/* This regexp stuff is global since it always happens within 1 expr eval */
1628/**************************************************************************/
1629
1630EXT char * regprecomp; /* uncompiled string. */
1631EXT char * regparse; /* Input-scan pointer. */
1632EXT char * regxend; /* End of input for compile */
1633EXT I32 regnpar; /* () count. */
1634EXT char * regcode; /* Code-emit pointer; &regdummy = don't. */
1635EXT I32 regsize; /* Code size. */
a0d0e21e 1636EXT I32 regnaughty; /* How bad is this pattern? */
79072805 1637EXT I32 regsawback; /* Did we see \1, ...? */
1638
1639EXT char * reginput; /* String-input pointer. */
79072805 1640EXT char * regbol; /* Beginning of input, for ^ check. */
1641EXT char * regeol; /* End of input, for $ check. */
1642EXT char ** regstartp; /* Pointer to startp array. */
1643EXT char ** regendp; /* Ditto for endp. */
a0d0e21e 1644EXT U32 * reglastparen; /* Similarly for lastparen. */
79072805 1645EXT char * regtill; /* How far we are required to go. */
a0d0e21e 1646EXT U16 regflags; /* are we folding, multilining? */
1647EXT char regprev; /* char before regbol, \n if none */
79072805 1648
760ac839 1649EXT bool do_undump; /* -u or dump seen? */
1650EXT VOL U32 debug;
1651
79072805 1652/***********************************************/
1653/* Global only to current interpreter instance */
1654/***********************************************/
1655
8990e307 1656#ifdef MULTIPLICITY
79072805 1657#define IEXT
1658#define IINIT(x)
1659struct interpreter {
1660#else
1661#define IEXT EXT
1662#define IINIT(x) INIT(x)
1663#endif
1664
1665/* pseudo environmental stuff */
1666IEXT int Iorigargc;
1667IEXT char ** Iorigargv;
1668IEXT GV * Ienvgv;
1669IEXT GV * Isiggv;
1670IEXT GV * Iincgv;
1671IEXT char * Iorigfilename;
748a9306 1672IEXT SV * Idiehook;
1673IEXT SV * Iwarnhook;
1674IEXT SV * Iparsehook;
79072805 1675
c07a80fd 1676/* Various states of an input record separator SV (rs, nrs) */
1677#define RsSNARF(sv) (! SvOK(sv))
1678#define RsSIMPLE(sv) (SvOK(sv) && SvCUR(sv))
1679#define RsPARA(sv) (SvOK(sv) && ! SvCUR(sv))
1680
79072805 1681/* switches */
1682IEXT char * Icddir;
1683IEXT bool Iminus_c;
a5f75d66 1684IEXT char Ipatchlevel[10];
728e2803 1685IEXT char ** Ilocalpatches;
c07a80fd 1686IEXT SV * Inrs;
2304df62 1687IEXT char * Isplitstr IINIT(" ");
79072805 1688IEXT bool Ipreprocess;
1689IEXT bool Iminus_n;
1690IEXT bool Iminus_p;
1691IEXT bool Iminus_l;
1692IEXT bool Iminus_a;
2304df62 1693IEXT bool Iminus_F;
79072805 1694IEXT bool Idoswitches;
1695IEXT bool Idowarn;
1696IEXT bool Idoextract;
79072805 1697IEXT bool Isawampersand; /* must save all match strings */
1698IEXT bool Isawstudy; /* do fbm_instr on all strings */
79072805 1699IEXT bool Isawvec;
1700IEXT bool Iunsafe;
79072805 1701IEXT char * Iinplace;
1702IEXT char * Ie_tmpname;
760ac839 1703IEXT PerlIO * Ie_fp;
79072805 1704IEXT U32 Iperldb;
748a9306 1705 /* This value may be raised by extensions for testing purposes */
8ebc5c01 1706IEXT int Iperl_destruct_level IINIT(0); /* 0=none, 1=full, 2=full with checks */
79072805 1707
1708/* magical thingies */
85e6fe83 1709IEXT Time_t Ibasetime; /* $^T */
79072805 1710IEXT SV * Iformfeed; /* $^L */
1711IEXT char * Ichopset IINIT(" \n-"); /* $: */
c07a80fd 1712IEXT SV * Irs; /* $/ */
79072805 1713IEXT char * Iofs; /* $, */
8990e307 1714IEXT STRLEN Iofslen;
79072805 1715IEXT char * Iors; /* $\ */
8990e307 1716IEXT STRLEN Iorslen;
79072805 1717IEXT char * Iofmt; /* $# */
1718IEXT I32 Imaxsysfd IINIT(MAXSYSFD); /* top fd to pass to subprocesses */
f86702cc 1719IEXT int Imultiline; /* $*--do strings hold >1 line? */
91e9c03f 1720IEXT I32 Istatusvalue; /* $? */
f86702cc 1721#ifdef VMS
1722IEXT U32 Istatusvalue_vms; /* $^S */
1723#endif
79072805 1724
1725IEXT struct stat Istatcache; /* _ */
1726IEXT GV * Istatgv;
1727IEXT SV * Istatname IINIT(Nullsv);
1728
1729/* shortcuts to various I/O objects */
1730IEXT GV * Istdingv;
1731IEXT GV * Ilast_in_gv;
1732IEXT GV * Idefgv;
1733IEXT GV * Iargvgv;
1734IEXT GV * Idefoutgv;
79072805 1735IEXT GV * Iargvoutgv;
1736
1737/* shortcuts to regexp stuff */
1738IEXT GV * Ileftgv;
1739IEXT GV * Iampergv;
1740IEXT GV * Irightgv;
1741IEXT PMOP * Icurpm; /* what to do \ interps from */
79072805 1742IEXT I32 * Iscreamfirst;
1743IEXT I32 * Iscreamnext;
1744IEXT I32 Imaxscream IINIT(-1);
1745IEXT SV * Ilastscream;
1746
4633a7c4 1747/* shortcuts to misc objects */
1748IEXT GV * Ierrgv;
1749
79072805 1750/* shortcuts to debugging objects */
1751IEXT GV * IDBgv;
1752IEXT GV * IDBline;
1753IEXT GV * IDBsub;
1754IEXT SV * IDBsingle;
1755IEXT SV * IDBtrace;
1756IEXT SV * IDBsignal;
1757IEXT AV * Ilineary; /* lines of script for debugger */
1758IEXT AV * Idbargs; /* args to call listed by caller function */
1759
1760/* symbol tables */
1761IEXT HV * Idefstash; /* main symbol table */
1762IEXT HV * Icurstash; /* symbol table for current package */
1763IEXT HV * Idebstash; /* symbol table for perldb package */
1764IEXT SV * Icurstname; /* name of current package */
93a17b20 1765IEXT AV * Ibeginav; /* names of BEGIN subroutines */
1766IEXT AV * Iendav; /* names of END subroutines */
0c30d9ec 1767IEXT HV * Istrtab; /* shared string table */
79072805 1768
1769/* memory management */
79072805 1770IEXT SV ** Itmps_stack;
1771IEXT I32 Itmps_ix IINIT(-1);
1772IEXT I32 Itmps_floor IINIT(-1);
8990e307 1773IEXT I32 Itmps_max;
1774IEXT I32 Isv_count; /* how many SV* are currently allocated */
a0d0e21e 1775IEXT I32 Isv_objcount; /* how many objects are currently allocated */
8990e307 1776IEXT SV* Isv_root; /* storage for SVs belonging to interp */
1777IEXT SV* Isv_arenaroot; /* list of areas for garbage collection */
79072805 1778
1779/* funky return mechanisms */
1780IEXT I32 Ilastspbase;
1781IEXT I32 Ilastsize;
1782IEXT int Iforkprocess; /* so do_open |- can return proc# */
1783
1784/* subprocess state */
1785IEXT AV * Ifdpid; /* keep fd-to-pid mappings for my_popen */
79072805 1786
1787/* internal state */
463ee0b2 1788IEXT VOL int Iin_eval; /* trap "fatal" errors? */
1789IEXT OP * Irestartop; /* Are we propagating an error from croak? */
79072805 1790IEXT int Idelaymagic; /* ($<,$>) = ... */
2304df62 1791IEXT bool Idirty; /* In the middle of tearing things down? */
748a9306 1792IEXT U8 Ilocalizing; /* are we processing a local() list? */
79072805 1793IEXT bool Itainted; /* using variables controlled by $< */
463ee0b2 1794IEXT bool Itainting; /* doing taint checks */
e50aee73 1795IEXT char * Iop_mask IINIT(NULL); /* masked operations for safe evals */
79072805 1796
1797/* trace state */
1798IEXT I32 Idlevel;
1799IEXT I32 Idlmax IINIT(128);
1800IEXT char * Idebname;
1801IEXT char * Idebdelim;
1802
1803/* current interpreter roots */
748a9306 1804IEXT CV * Imain_cv;
463ee0b2 1805IEXT OP * Imain_root;
1806IEXT OP * Imain_start;
1807IEXT OP * Ieval_root;
1808IEXT OP * Ieval_start;
79072805 1809
1810/* runtime control stuff */
1811IEXT COP * VOL Icurcop IINIT(&compiling);
0c30d9ec 1812IEXT COP * Icurcopdb IINIT(NULL);
79072805 1813IEXT line_t Icopline IINIT(NOLINE);
1814IEXT CONTEXT * Icxstack;
1815IEXT I32 Icxstack_ix IINIT(-1);
1816IEXT I32 Icxstack_max IINIT(128);
a5f75d66 1817IEXT Sigjmp_buf Itop_env;
a0d0e21e 1818IEXT I32 Irunlevel;
79072805 1819
1820/* stack stuff */
0c30d9ec 1821IEXT AV * Icurstack; /* THE STACK */
79072805 1822IEXT AV * Imainstack; /* the stack when nothing funny is happening */
1823IEXT SV ** Imystack_base; /* stack->array_ary */
1824IEXT SV ** Imystack_sp; /* stack pointer now */
1825IEXT SV ** Imystack_max; /* stack->array_ary + stack->array_max */
1826
1827/* format accumulators */
463ee0b2 1828IEXT SV * Iformtarget;
1829IEXT SV * Ibodytarget;
1830IEXT SV * Itoptarget;
79072805 1831
1832/* statics moved here for shared library purposes */
93a17b20 1833IEXT SV Istrchop; /* return value from chop */
79072805 1834IEXT int Ifilemode; /* so nextargv() can preserve mode */
1835IEXT int Ilastfd; /* what to preserve mode on */
1836IEXT char * Ioldname; /* what to preserve mode on */
1837IEXT char ** IArgv; /* stuff to free from do_aexec, vfork safe */
1838IEXT char * ICmd; /* stuff to free from do_aexec, vfork safe */
1839IEXT OP * Isortcop; /* user defined sort routine */
1840IEXT HV * Isortstash; /* which is in some package or other */
1841IEXT GV * Ifirstgv; /* $a */
1842IEXT GV * Isecondgv; /* $b */
1843IEXT AV * Isortstack; /* temp stack during pp_sort() */
1844IEXT AV * Isignalstack; /* temp stack during sighandler() */
1845IEXT SV * Imystrk; /* temp key string for do_each() */
1846IEXT I32 Idumplvl; /* indentation level on syntax tree dump */
79072805 1847IEXT PMOP * Ioldlastpm; /* for saving regexp context during debugger */
1848IEXT I32 Igensym; /* next symbol for getsym() to define */
1849IEXT bool Ipreambled;
3c81428c 1850IEXT AV * Ipreambleav;
79072805 1851IEXT int Ilaststatval IINIT(-1);
1852IEXT I32 Ilaststype IINIT(OP_STAT);
1853
1854#undef IEXT
1855#undef IINIT
1856
8990e307 1857#ifdef MULTIPLICITY
79072805 1858};
1859#else
1860struct interpreter {
1861 char broiled;
1862};
1863#endif
1864
1865#include "pp.h"
1866
1867#ifdef __cplusplus
1868extern "C" {
1869#endif
1870
1871#include "proto.h"
1872
a0d0e21e 1873#ifdef EMBED
1874#define Perl_sv_setptrobj(rv,ptr,name) Perl_sv_setref_iv(rv,name,(IV)ptr)
1875#define Perl_sv_setptrref(rv,ptr) Perl_sv_setref_iv(rv,Nullch,(IV)ptr)
1876#else
1877#define sv_setptrobj(rv,ptr,name) sv_setref_iv(rv,name,(IV)ptr)
1878#define sv_setptrref(rv,ptr) sv_setref_iv(rv,Nullch,(IV)ptr)
1879#endif
1880
79072805 1881#ifdef __cplusplus
1882};
1883#endif
1884
93a17b20 1885/* The following must follow proto.h */
79072805 1886
1887#ifdef DOINIT
bbce6d69 1888
4633a7c4 1889EXT MGVTBL vtbl_sv = {magic_get,
463ee0b2 1890 magic_set,
1891 magic_len,
1892 0, 0};
4633a7c4 1893EXT MGVTBL vtbl_env = {0, 0, 0, 0, 0};
1894EXT MGVTBL vtbl_envelem = {0, magic_setenv,
85e6fe83 1895 0, magic_clearenv,
1896 0};
4633a7c4 1897EXT MGVTBL vtbl_sig = {0, 0, 0, 0, 0};
0c30d9ec 1898EXT MGVTBL vtbl_sigelem = {magic_getsig,
1899 magic_setsig,
1900 0, magic_clearsig,
1901 0};
4633a7c4 1902EXT MGVTBL vtbl_pack = {0, 0, 0, magic_wipepack,
a0d0e21e 1903 0};
4633a7c4 1904EXT MGVTBL vtbl_packelem = {magic_getpack,
463ee0b2 1905 magic_setpack,
1906 0, magic_clearpack,
1907 0};
4633a7c4 1908EXT MGVTBL vtbl_dbline = {0, magic_setdbline,
463ee0b2 1909 0, 0, 0};
4633a7c4 1910EXT MGVTBL vtbl_isa = {0, magic_setisa,
463ee0b2 1911 0, 0, 0};
4633a7c4 1912EXT MGVTBL vtbl_isaelem = {0, magic_setisa,
463ee0b2 1913 0, 0, 0};
4633a7c4 1914EXT MGVTBL vtbl_arylen = {magic_getarylen,
463ee0b2 1915 magic_setarylen,
1916 0, 0, 0};
4633a7c4 1917EXT MGVTBL vtbl_glob = {magic_getglob,
463ee0b2 1918 magic_setglob,
1919 0, 0, 0};
4633a7c4 1920EXT MGVTBL vtbl_mglob = {0, magic_setmglob,
463ee0b2 1921 0, 0, 0};
99abf803 1922EXT MGVTBL vtbl_nkeys = {0, magic_setnkeys,
1923 0, 0, 0};
4633a7c4 1924EXT MGVTBL vtbl_taint = {magic_gettaint,magic_settaint,
463ee0b2 1925 0, 0, 0};
4633a7c4 1926EXT MGVTBL vtbl_substr = {0, magic_setsubstr,
463ee0b2 1927 0, 0, 0};
4633a7c4 1928EXT MGVTBL vtbl_vec = {0, magic_setvec,
463ee0b2 1929 0, 0, 0};
4633a7c4 1930EXT MGVTBL vtbl_pos = {magic_getpos,
a0d0e21e 1931 magic_setpos,
1932 0, 0, 0};
4633a7c4 1933EXT MGVTBL vtbl_bm = {0, magic_setbm,
463ee0b2 1934 0, 0, 0};
55497cff 1935EXT MGVTBL vtbl_fm = {0, magic_setfm,
1936 0, 0, 0};
4633a7c4 1937EXT MGVTBL vtbl_uvar = {magic_getuvar,
463ee0b2 1938 magic_setuvar,
1939 0, 0, 0};
71be2cbc 1940EXT MGVTBL vtbl_itervar = {magic_getitervar,magic_setitervar,
1941 0, 0, magic_freeitervar};
a0d0e21e 1942
36477c24 1943#ifdef USE_LOCALE_COLLATE
bbce6d69 1944EXT MGVTBL vtbl_collxfrm = {0,
1945 magic_setcollxfrm,
1946 0, 0, 0};
1947#endif
1948
a0d0e21e 1949#ifdef OVERLOAD
4633a7c4 1950EXT MGVTBL vtbl_amagic = {0, magic_setamagic,
748a9306 1951 0, 0, magic_setamagic};
4633a7c4 1952EXT MGVTBL vtbl_amagicelem = {0, magic_setamagic,
748a9306 1953 0, 0, magic_setamagic};
a0d0e21e 1954#endif /* OVERLOAD */
1955
bbce6d69 1956#else /* !DOINIT */
1957
79072805 1958EXT MGVTBL vtbl_sv;
1959EXT MGVTBL vtbl_env;
1960EXT MGVTBL vtbl_envelem;
1961EXT MGVTBL vtbl_sig;
1962EXT MGVTBL vtbl_sigelem;
463ee0b2 1963EXT MGVTBL vtbl_pack;
1964EXT MGVTBL vtbl_packelem;
79072805 1965EXT MGVTBL vtbl_dbline;
463ee0b2 1966EXT MGVTBL vtbl_isa;
1967EXT MGVTBL vtbl_isaelem;
79072805 1968EXT MGVTBL vtbl_arylen;
1969EXT MGVTBL vtbl_glob;
93a17b20 1970EXT MGVTBL vtbl_mglob;
99abf803 1971EXT MGVTBL vtbl_nkeys;
463ee0b2 1972EXT MGVTBL vtbl_taint;
79072805 1973EXT MGVTBL vtbl_substr;
1974EXT MGVTBL vtbl_vec;
a0d0e21e 1975EXT MGVTBL vtbl_pos;
79072805 1976EXT MGVTBL vtbl_bm;
55497cff 1977EXT MGVTBL vtbl_fm;
79072805 1978EXT MGVTBL vtbl_uvar;
71be2cbc 1979EXT MGVTBL vtbl_itervar;
a0d0e21e 1980
36477c24 1981#ifdef USE_LOCALE_COLLATE
bbce6d69 1982EXT MGVTBL vtbl_collxfrm;
1983#endif
1984
a0d0e21e 1985#ifdef OVERLOAD
1986EXT MGVTBL vtbl_amagic;
1987EXT MGVTBL vtbl_amagicelem;
1988#endif /* OVERLOAD */
1989
bbce6d69 1990#endif /* !DOINIT */
85e6fe83 1991
a0d0e21e 1992#ifdef OVERLOAD
c0315cdf 1993
a0d0e21e 1994EXT long amagic_generation;
1995
a6006777 1996#define NofAMmeth 58
a0d0e21e 1997#ifdef DOINIT
a6006777 1998EXTCONST char * AMG_names[NofAMmeth] = {
1999 "fallback", "abs", /* "fallback" should be the first. */
2000 "bool", "nomethod",
2001 "\"\"", "0+",
2002 "+", "+=",
2003 "-", "-=",
2004 "*", "*=",
2005 "/", "/=",
2006 "%", "%=",
2007 "**", "**=",
2008 "<<", "<<=",
2009 ">>", ">>=",
2010 "&", "&=",
2011 "|", "|=",
2012 "^", "^=",
2013 "<", "<=",
2014 ">", ">=",
2015 "==", "!=",
2016 "<=>", "cmp",
2017 "lt", "le",
2018 "gt", "ge",
2019 "eq", "ne",
2020 "!", "~",
2021 "++", "--",
2022 "atan2", "cos",
2023 "sin", "exp",
2024 "log", "sqrt",
2025 "x", "x=",
2026 ".", ".=",
2027 "=", "neg"
a0d0e21e 2028};
2029#else
a6006777 2030EXTCONST char * AMG_names[NofAMmeth];
a0d0e21e 2031#endif /* def INITAMAGIC */
2032
a6006777 2033struct am_table {
a0d0e21e 2034 long was_ok_sub;
2035 long was_ok_am;
a6006777 2036 U32 flags;
2037 CV* table[NofAMmeth];
a0d0e21e 2038 long fallback;
2039};
a6006777 2040struct am_table_short {
2041 long was_ok_sub;
2042 long was_ok_am;
2043 U32 flags;
2044};
a0d0e21e 2045typedef struct am_table AMT;
a6006777 2046typedef struct am_table_short AMTS;
a0d0e21e 2047
2048#define AMGfallNEVER 1
2049#define AMGfallNO 2
2050#define AMGfallYES 3
2051
a6006777 2052#define AMTf_AMAGIC 1
2053#define AMT_AMAGIC(amt) ((amt)->flags & AMTf_AMAGIC)
2054#define AMT_AMAGIC_on(amt) ((amt)->flags |= AMTf_AMAGIC)
2055#define AMT_AMAGIC_off(amt) ((amt)->flags &= ~AMTf_AMAGIC)
2056
a0d0e21e 2057enum {
2058 fallback_amg, abs_amg,
2059 bool__amg, nomethod_amg,
2060 string_amg, numer_amg,
2061 add_amg, add_ass_amg,
2062 subtr_amg, subtr_ass_amg,
2063 mult_amg, mult_ass_amg,
2064 div_amg, div_ass_amg,
2065 mod_amg, mod_ass_amg,
2066 pow_amg, pow_ass_amg,
2067 lshift_amg, lshift_ass_amg,
2068 rshift_amg, rshift_ass_amg,
748a9306 2069 band_amg, band_ass_amg,
2070 bor_amg, bor_ass_amg,
2071 bxor_amg, bxor_ass_amg,
a0d0e21e 2072 lt_amg, le_amg,
2073 gt_amg, ge_amg,
2074 eq_amg, ne_amg,
2075 ncmp_amg, scmp_amg,
2076 slt_amg, sle_amg,
2077 sgt_amg, sge_amg,
2078 seq_amg, sne_amg,
a0d0e21e 2079 not_amg, compl_amg,
2080 inc_amg, dec_amg,
2081 atan2_amg, cos_amg,
2082 sin_amg, exp_amg,
2083 log_amg, sqrt_amg,
2084 repeat_amg, repeat_ass_amg,
748a9306 2085 concat_amg, concat_ass_amg,
2086 copy_amg, neg_amg
a0d0e21e 2087};
c0315cdf 2088
2089/*
2090 * some compilers like to redefine cos et alia as faster
2091 * (and less accurate?) versions called F_cos et cetera (Quidquid
2092 * latine dictum sit, altum viditur.) This trick collides with
2093 * the Perl overloading (amg). The following #defines fool both.
2094 */
2095
2096#ifdef _FASTMATH
2097# ifdef atan2
2098# define F_atan2_amg atan2_amg
2099# endif
2100# ifdef cos
2101# define F_cos_amg cos_amg
2102# endif
2103# ifdef exp
2104# define F_exp_amg exp_amg
2105# endif
2106# ifdef log
2107# define F_log_amg log_amg
2108# endif
2109# ifdef pow
2110# define F_pow_amg pow_amg
2111# endif
2112# ifdef sin
2113# define F_sin_amg sin_amg
2114# endif
2115# ifdef sqrt
2116# define F_sqrt_amg sqrt_amg
2117# endif
2118#endif /* _FASTMATH */
2119
a0d0e21e 2120#endif /* OVERLOAD */
36477c24 2121
2122#ifdef USE_LOCALE_COLLATE
bbce6d69 2123EXT U32 collation_ix; /* Collation generation index */
2124EXT char * collation_name; /* Name of current collation */
2125EXT bool collation_standard INIT(TRUE); /* Assume simple collation */
2126EXT Size_t collxfrm_base; /* Basic overhead in *xfrm() */
2127EXT Size_t collxfrm_mult INIT(2); /* Expansion factor in *xfrm() */
36477c24 2128#endif /* USE_LOCALE_COLLATE */
bbce6d69 2129
36477c24 2130#ifdef USE_LOCALE_NUMERIC
bbce6d69 2131
2132EXT char * numeric_name; /* Name of current numeric locale */
2133EXT bool numeric_standard INIT(TRUE); /* Assume simple numerics */
2134EXT bool numeric_local INIT(TRUE); /* Assume local numerics */
2135
36477c24 2136#define SET_NUMERIC_STANDARD() \
2137 STMT_START { \
2138 if (! numeric_standard) \
2139 perl_set_numeric_standard(); \
2140 } STMT_END
2141
2142#define SET_NUMERIC_LOCAL() \
2143 STMT_START { \
2144 if (! numeric_local) \
2145 perl_set_numeric_local(); \
2146 } STMT_END
bbce6d69 2147
36477c24 2148#else /* !USE_LOCALE_NUMERIC */
bbce6d69 2149
36477c24 2150#define SET_NUMERIC_STANDARD() /**/
2151#define SET_NUMERIC_LOCAL() /**/
bbce6d69 2152
36477c24 2153#endif /* !USE_LOCALE_NUMERIC */
a0d0e21e 2154
760ac839 2155#if !defined(PERLIO_IS_STDIO) && defined(HAS_ATTRIBUTE)
2156/*
2157 * Now we have __attribute__ out of the way
2158 * Remap printf
2159 */
2160#define printf PerlIO_stdoutf
2161#endif
2162
85e6fe83 2163#endif /* Include guard */
a6e633de 2164