3 * Copyright (c) 1987-1997, Larry Wall
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.
14 * This file is being used for x2p stuff.
15 * Above symbol is defined via -D in 'x2p/Makefile.SH'
16 * Decouple x2p stuff from some of perls more extreme eccentricities.
21 #endif /* PERL_FOR_X2P */
26 /* See L<perlguts/"The Perl API"> for detailed notes on
27 * PERL_IMPLICIT_CONTEXT and PERL_IMPLICIT_SYS */
30 # ifndef PERL_IMPLICIT_CONTEXT
31 # define PERL_IMPLICIT_CONTEXT
35 #if defined(MULTIPLICITY)
36 # ifndef PERL_IMPLICIT_CONTEXT
37 # define PERL_IMPLICIT_CONTEXT
43 # ifndef PERL_IMPLICIT_CONTEXT
44 # define PERL_IMPLICIT_CONTEXT
46 # ifndef PERL_IMPLICIT_SYS
47 # define PERL_IMPLICIT_SYS
52 # ifndef PERL_IMPLICIT_CONTEXT
53 # define PERL_IMPLICIT_CONTEXT
55 # ifndef PERL_IMPLICIT_SYS
56 # define PERL_IMPLICIT_SYS
62 /* PERL_OBJECT explained - DickH and DougL @ ActiveState.com
64 Defining PERL_OBJECT turns on creation of a C++ object that
65 contains all writable core perl global variables and functions.
66 Stated another way, all necessary global variables and functions
67 are members of a big C++ object. This object's class is CPerlObj.
68 This allows a Perl Host to have multiple, independent perl
69 interpreters in the same process space. This is very important on
70 Win32 systems as the overhead of process creation is quite high --
71 this could be even higher than the script compile and execute time
74 The perl executable implementation on Win32 is composed of perl.exe
75 (the Perl Host) and perlX.dll. (the Perl Core). This allows the
76 same Perl Core to easily be embedded in other applications that use
85 +-----------+ +-----------+
86 | Perl Core |<->| Extension |
87 +-----------+ +-----------+ ...
89 Defining PERL_OBJECT has the following effects:
92 1. CPerlObj is defined (this is the PERL_OBJECT)
93 2. all static functions that needed to access either global
94 variables or functions needed are made member functions
95 3. all writable static variables are made member variables
96 4. all global variables and functions are defined as:
97 #define var CPerlObj::PL_var
98 #define func CPerlObj::Perl_func
99 * these are in embed.h
100 This necessitated renaming some local variables and functions that
101 had the same name as a global variable or function. This was
102 probably a _good_ thing anyway.
106 1. Access to global variables and perl functions is through a
107 pointer to the PERL_OBJECT. This pointer type is CPerlObj*. This is
108 made transparent to extension developers by the following macros:
109 #define var pPerl->PL_var
110 #define func pPerl->Perl_func
111 * these are done in objXSUB.h
112 This requires that the extension be compiled as C++, which means
113 that the code must be ANSI C and not K&R C. For K&R extensions,
114 please see the C API notes located in Win32/GenCAPI.pl. This script
115 creates a perlCAPI.lib that provides a K & R compatible C interface
117 2. Local variables and functions cannot have the same name as perl's
118 variables or functions since the macros will redefine these. Look for
119 this if you get some strange error message and it does not look like
120 the code that you had written. This often happens with variables that
121 are local to a function.
124 1. The perl host is linked with perlX.lib to get perl_alloc. This
125 function will return a pointer to CPerlObj (the PERL_OBJECT). It
126 takes pointers to the various PerlXXX_YYY interfaces (see iperlsys.h
127 for more information on this).
128 2. The perl host calls the same functions as normally would be
129 called in setting up and running a perl script, except that the
130 functions are now member functions of the PERL_OBJECT.
138 #define CPERLscope(x) CPerlObj::x
139 #define CALL_FPTR(fptr) (aTHXo->*fptr)
141 #define pTHXo CPerlObj *pPerl
142 #define pTHXo_ pTHXo,
145 #define PERL_OBJECT_THIS aTHXo
146 #define PERL_OBJECT_THIS_ aTHXo_
147 #define dTHXoa(a) pTHXo = a
148 #define dTHXo dTHXoa(PERL_GET_THX)
155 #else /* !PERL_OBJECT */
157 #ifdef PERL_IMPLICIT_CONTEXT
160 # define pTHX register struct perl_thread *thr
164 # ifndef MULTIPLICITY
165 # define MULTIPLICITY
167 # define pTHX register PerlInterpreter *my_perl
168 # define aTHX my_perl
170 # define dTHXa(a) pTHX = a
171 # define dTHX dTHXa(PERL_GET_THX)
176 #define STATIC static
177 #define CPERLscope(x) x
178 #define CPERLarg void
181 #define PERL_OBJECT_THIS
182 #define _PERL_OBJECT_THIS
183 #define PERL_OBJECT_THIS_
184 #define CALL_FPTR(fptr) (*fptr)
186 #endif /* PERL_OBJECT */
188 #define CALLRUNOPS CALL_FPTR(PL_runops)
189 #define CALLREGCOMP CALL_FPTR(PL_regcompp)
190 #define CALLREGEXEC CALL_FPTR(PL_regexecp)
191 #define CALLREG_INTUIT_START CALL_FPTR(PL_regint_start)
192 #define CALLREG_INTUIT_STRING CALL_FPTR(PL_regint_string)
193 #define CALLREGFREE CALL_FPTR(PL_regfree)
194 #define CALLPROTECT CALL_FPTR(PL_protect)
197 #define dNOOP extern int Perl___notused
204 # define dTHXa(a) dNOOP
210 # define pTHXo_ pTHX_
212 # define aTHXo_ aTHX_
217 # define pTHXx register PerlInterpreter *my_perl
218 # define pTHXx_ pTHXx,
219 # define aTHXx my_perl
220 # define aTHXx_ aTHXx,
224 #undef START_EXTERN_C
228 # define START_EXTERN_C extern "C" {
229 # define END_EXTERN_C }
230 # define EXTERN_C extern "C"
232 # define START_EXTERN_C
233 # define END_EXTERN_C
234 # define EXTERN_C extern
237 #ifdef OP_IN_REGISTER
239 # define stringify_immed(s) #s
240 # define stringify(s) stringify_immed(s)
241 register struct op *Perl_op asm(stringify(OP_IN_REGISTER));
246 * STMT_START { statements; } STMT_END;
247 * can be used as a single statement, as in
248 * if (x) STMT_START { ... } STMT_END; else ...
250 * Trying to select a version that gives no warnings...
252 #if !(defined(STMT_START) && defined(STMT_END))
253 # if defined(__GNUC__) && !defined(__STRICT_ANSI__) && !defined(__cplusplus)
254 # define STMT_START (void)( /* gcc supports ``({ STATEMENTS; })'' */
257 /* Now which other defined()s do we need here ??? */
258 # if (VOIDFLAGS) && (defined(sun) || defined(__sun__))
259 # define STMT_START if (1)
260 # define STMT_END else (void)0
262 # define STMT_START do
263 # define STMT_END while (0)
268 #define WITH_THX(s) STMT_START { dTHX; s; } STMT_END
269 #define WITH_THR(s) STMT_START { dTHR; s; } STMT_END
272 * SOFT_CAST can be used for args to prototyped functions to retain some
273 * type checking; it only casts if the compiler does not know prototypes.
275 #if defined(CAN_PROTOTYPE) && defined(DEBUGGING_COMPILE)
276 #define SOFT_CAST(type)
278 #define SOFT_CAST(type) (type)
281 #ifndef BYTEORDER /* Should never happen -- byteorder is in config.h */
282 # define BYTEORDER 0x1234
285 /* Overall memory policy? */
290 #if 'A' == 65 && 'I' == 73 && 'J' == 74 && 'Z' == 90
297 * The following contortions are brought to you on behalf of all the
298 * standards, semi-standards, de facto standards, not-so-de-facto standards
299 * of the world, as well as all the other botches anyone ever thought of.
300 * The basic theory is that if we work hard enough here, the rest of the
301 * code can be a lot prettier. Well, so much for theory. Sorry, Henry...
304 /* define this once if either system, instead of cluttering up the src */
305 #if defined(MSDOS) || defined(atarist) || defined(WIN32)
309 #if defined(__STDC__) || defined(vax11c) || defined(_AIX) || defined(__stdc__) || defined(__cplusplus) || defined( EPOC)
310 # define STANDARD_C 1
313 #if defined(__cplusplus) || defined(WIN32) || defined(__sgi) || defined(OS2) || defined(__DGUX) || defined( EPOC) || defined(__QNX__)
314 # define DONT_DECLARE_STD 1
317 #if defined(HASVOLATILE) || defined(STANDARD_C)
319 # define VOL // to temporarily suppress warnings
321 # define VOL volatile
327 #define TAINT (PL_tainted = TRUE)
328 #define TAINT_NOT (PL_tainted = FALSE)
329 #define TAINT_IF(c) if (c) { PL_tainted = TRUE; }
330 #define TAINT_ENV() if (PL_tainting) { taint_env(); }
331 #define TAINT_PROPER(s) if (PL_tainting) { taint_proper(Nullch, s); }
333 /* XXX All process group stuff is handled in pp_sys.c. Should these
334 defines move there? If so, I could simplify this a lot. --AD 9/96.
336 /* Process group stuff changed from traditional BSD to POSIX.
337 perlfunc.pod documents the traditional BSD-style syntax, so we'll
338 try to preserve that, if possible.
341 # define BSD_SETPGRP(pid, pgrp) setpgid((pid), (pgrp))
343 # if defined(HAS_SETPGRP) && defined(USE_BSD_SETPGRP)
344 # define BSD_SETPGRP(pid, pgrp) setpgrp((pid), (pgrp))
346 # ifdef HAS_SETPGRP2 /* DG/UX */
347 # define BSD_SETPGRP(pid, pgrp) setpgrp2((pid), (pgrp))
351 #if defined(BSD_SETPGRP) && !defined(HAS_SETPGRP)
352 # define HAS_SETPGRP /* Well, effectively it does . . . */
355 /* getpgid isn't POSIX, but at least Solaris and Linux have it, and it makes
356 our life easier :-) so we'll try it.
359 # define BSD_GETPGRP(pid) getpgid((pid))
361 # if defined(HAS_GETPGRP) && defined(USE_BSD_GETPGRP)
362 # define BSD_GETPGRP(pid) getpgrp((pid))
364 # ifdef HAS_GETPGRP2 /* DG/UX */
365 # define BSD_GETPGRP(pid) getpgrp2((pid))
369 #if defined(BSD_GETPGRP) && !defined(HAS_GETPGRP)
370 # define HAS_GETPGRP /* Well, effectively it does . . . */
373 /* These are not exact synonyms, since setpgrp() and getpgrp() may
374 have different behaviors, but perl.h used to define USE_BSDPGRP
375 (prior to 5.003_05) so some extension might depend on it.
377 #if defined(USE_BSD_SETPGRP) || defined(USE_BSD_GETPGRP)
383 /* HP-UX 10.X CMA (Common Multithreaded Architecure) insists that
384 pthread.h must be included before all other header files.
386 #if defined(USE_THREADS) && defined(PTHREAD_H_FIRST) && defined(I_PTHREAD)
387 # include <pthread.h>
390 #ifndef _TYPES_ /* If types.h defines this it's easy. */
391 # ifndef major /* Does everyone's types.h define this? */
392 # include <sys/types.h>
406 # include <varargs.h>
410 #ifdef USE_NEXT_CTYPE
412 #if NX_CURRENT_COMPILER_RELEASE >= 500
413 # include <bsd/ctypes.h>
415 # if NX_CURRENT_COMPILER_RELEASE >= 400
416 # include <objc/NXCType.h>
417 # else /* NX_CURRENT_COMPILER_RELEASE < 400 */
418 # include <appkit/NXCType.h>
419 # endif /* NX_CURRENT_COMPILER_RELEASE >= 400 */
420 #endif /* NX_CURRENT_COMPILER_RELEASE >= 500 */
422 #else /* !USE_NEXT_CTYPE */
424 #endif /* USE_NEXT_CTYPE */
426 #ifdef METHOD /* Defined by OSF/1 v3.0 by ctype.h */
434 #if !defined(NO_LOCALE) && defined(HAS_SETLOCALE)
436 # if !defined(NO_LOCALE_COLLATE) && defined(LC_COLLATE) \
437 && defined(HAS_STRXFRM)
438 # define USE_LOCALE_COLLATE
440 # if !defined(NO_LOCALE_CTYPE) && defined(LC_CTYPE)
441 # define USE_LOCALE_CTYPE
443 # if !defined(NO_LOCALE_NUMERIC) && defined(LC_NUMERIC)
444 # define USE_LOCALE_NUMERIC
446 #endif /* !NO_LOCALE && HAS_SETLOCALE */
451 # ifdef PARAM_NEEDS_TYPES
452 # include <sys/types.h>
454 # include <sys/param.h>
458 /* Use all the "standard" definitions? */
459 #if defined(STANDARD_C) && defined(I_STDLIB)
463 #if !defined(PERL_FOR_X2P) && !defined(WIN32)
467 #define MEM_SIZE Size_t
469 #if defined(STANDARD_C) && defined(I_STDDEF)
471 # define STRUCT_OFFSET(s,m) offsetof(s,m)
473 # define STRUCT_OFFSET(s,m) (Size_t)(&(((s *)0)->m))
476 #if defined(I_STRING) || defined(__cplusplus)
479 # include <strings.h>
482 /* This comes after <stdlib.h> so we don't try to change the standard
483 * library prototypes; we'll use our own in proto.h instead. */
486 # ifdef PERL_POLLUTE_MALLOC
487 # ifndef PERL_EXTMALLOC_DEF
488 # define Perl_malloc malloc
489 # define Perl_calloc calloc
490 # define Perl_realloc realloc
491 # define Perl_mfree free
494 # define EMBEDMYMALLOC /* for compatibility */
496 Malloc_t Perl_malloc (MEM_SIZE nbytes);
497 Malloc_t Perl_calloc (MEM_SIZE elements, MEM_SIZE size);
498 Malloc_t Perl_realloc (Malloc_t where, MEM_SIZE nbytes);
499 /* 'mfree' rather than 'free', since there is already a 'perl_free'
500 * that causes clashes with case-insensitive linkers */
501 Free_t Perl_mfree (Malloc_t where);
503 # define safemalloc Perl_malloc
504 # define safecalloc Perl_calloc
505 # define saferealloc Perl_realloc
506 # define safefree Perl_mfree
508 # define safemalloc safesysmalloc
509 # define safecalloc safesyscalloc
510 # define saferealloc safesysrealloc
511 # define safefree safesysfree
512 #endif /* MYMALLOC */
514 #if !defined(HAS_STRCHR) && defined(HAS_INDEX) && !defined(strchr)
516 #define strrchr rindex
524 # if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
526 extern char * memcpy (char*, char*, int);
532 # define memcpy(d,s,l) bcopy(s,d,l)
534 # define memcpy(d,s,l) my_bcopy(s,d,l)
537 #endif /* HAS_MEMCPY */
540 # if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
542 extern char *memset (char*, int, int);
546 # define memset(d,c,l) my_memset(d,c,l)
547 #endif /* HAS_MEMSET */
549 #if !defined(HAS_MEMMOVE) && !defined(memmove)
550 # if defined(HAS_BCOPY) && defined(HAS_SAFE_BCOPY)
551 # define memmove(d,s,l) bcopy(s,d,l)
553 # if defined(HAS_MEMCPY) && defined(HAS_SAFE_MEMCPY)
554 # define memmove(d,s,l) memcpy(d,s,l)
556 # define memmove(d,s,l) my_bcopy(s,d,l)
561 #if defined(mips) && defined(ultrix) && !defined(__STDC__)
565 #if defined(HAS_MEMCMP) && defined(HAS_SANE_MEMCMP)
566 # if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
568 extern int memcmp (char*, char*, int);
572 # pragma function(memcmp)
576 # define memcmp my_memcmp
578 #endif /* HAS_MEMCMP && HAS_SANE_MEMCMP */
582 # define memzero(d,l) memset(d,0,l)
585 # define memzero(d,l) bzero(d,l)
587 # define memzero(d,l) my_bzero(d,l)
594 # define memchr(s,c,n) ninstr((char*)(s), ((char*)(s)) + n, &(c), &(c) + 1)
600 # define bcmp(s1,s2,l) memcmp(s1,s2,l)
602 #endif /* !HAS_BCMP */
605 # include <netinet/in.h>
609 # include <arpa/inet.h>
612 #if defined(SF_APPEND) && defined(USE_SFIO) && defined(I_SFIO)
613 /* <sfio.h> defines SF_APPEND and <sys/stat.h> might define SF_APPEND
614 * (the neo-BSD seem to do this). */
619 # include <sys/stat.h>
622 /* The stat macros for Amdahl UTS, Unisoft System V/88 (and derivatives
623 like UTekV) are broken, sometimes giving false positives. Undefine
624 them here and let the code below set them to proper values.
626 The ghs macro stands for GreenHills Software C-1.8.5 which
627 is the C compiler for sysV88 and the various derivatives.
628 This header file bug is corrected in gcc-2.5.8 and later versions.
629 --Kaveh Ghazi (ghazi@noc.rutgers.edu) 10/3/94. */
631 #if defined(uts) || (defined(m88k) && defined(ghs))
645 # ifdef I_SYS_TIME_KERNEL
648 # include <sys/time.h>
649 # ifdef I_SYS_TIME_KERNEL
654 #if defined(HAS_TIMES) && defined(I_SYS_TIMES)
655 # include <sys/times.h>
658 #if defined(HAS_STRERROR) && (!defined(HAS_MKDIR) || !defined(HAS_RMDIR))
665 # include <net/errno.h>
670 # define SETERRNO(errcode,vmserrcode) \
672 set_errno(errcode); \
673 set_vaxc_errno(vmserrcode); \
676 # define SETERRNO(errcode,vmserrcode) (errno = (errcode))
680 # define ERRSV (thr->errsv)
681 # define DEFSV THREADSV(0)
682 # define SAVE_DEFSV save_threadsv(0)
684 # define ERRSV GvSV(PL_errgv)
685 # define DEFSV GvSV(PL_defgv)
686 # define SAVE_DEFSV SAVESPTR(GvSV(PL_defgv))
687 #endif /* USE_THREADS */
689 #define ERRHV GvHV(PL_errgv) /* XXX unused, here for compatibility */
692 extern int errno; /* ANSI allows errno to be an lvalue expr.
693 * For example in multithreaded environments
694 * something like this might happen:
695 * extern int *_errno(void);
696 * #define errno (*_errno()) */
701 char *strerror (int,...);
703 #ifndef DONT_DECLARE_STD
704 char *strerror (int);
708 # define Strerror strerror
711 # ifdef HAS_SYS_ERRLIST
713 extern char *sys_errlist[];
715 # define Strerror(e) \
716 ((e) < 0 || (e) >= sys_nerr ? "(unknown)" : sys_errlist[e])
723 # include <sys/ioctl.h>
727 #if defined(mc300) || defined(mc500) || defined(mc700) || defined(mc6000)
728 # ifdef HAS_SOCKETPAIR
729 # undef HAS_SOCKETPAIR
744 /* Configure already sets Direntry_t */
745 #if defined(I_DIRENT)
747 /* NeXT needs dirent + sys/dir.h */
748 # if defined(I_SYS_DIR) && (defined(NeXT) || defined(__NeXT__))
749 # include <sys/dir.h>
753 # include <sys/ndir.h>
757 # include <ndir.h> /* may be wrong in the future */
759 # include <sys/dir.h>
766 /* work around botch in SunOS 4.0.1 and 4.0.2 */
768 # define fputs(sv,fp) fprintf(fp,"%s",sv)
773 * The following gobbledygook brought to you on behalf of __STDC__.
774 * (I could just use #ifndef __STDC__, but this is more bulletproof
775 * in the face of half-implementations.)
780 # define S_IFMT _S_IFMT
782 # define S_IFMT 0170000
787 # define S_ISDIR(m) ((m & S_IFMT) == S_IFDIR)
791 # define S_ISCHR(m) ((m & S_IFMT) == S_IFCHR)
796 # define S_ISBLK(m) ((m & S_IFMT) == S_IFBLK)
798 # define S_ISBLK(m) (0)
803 # define S_ISREG(m) ((m & S_IFMT) == S_IFREG)
808 # define S_ISFIFO(m) ((m & S_IFMT) == S_IFIFO)
810 # define S_ISFIFO(m) (0)
816 # define S_ISLNK(m) _S_ISLNK(m)
819 # define S_ISLNK(m) ((m & S_IFMT) == _S_IFLNK)
822 # define S_ISLNK(m) ((m & S_IFMT) == S_IFLNK)
824 # define S_ISLNK(m) (0)
832 # define S_ISSOCK(m) _S_ISSOCK(m)
835 # define S_ISSOCK(m) ((m & S_IFMT) == _S_IFSOCK)
838 # define S_ISSOCK(m) ((m & S_IFMT) == S_IFSOCK)
840 # define S_ISSOCK(m) (0)
848 # define S_IRUSR S_IREAD
849 # define S_IWUSR S_IWRITE
850 # define S_IXUSR S_IEXEC
852 # define S_IRUSR 0400
853 # define S_IWUSR 0200
854 # define S_IXUSR 0100
856 # define S_IRGRP (S_IRUSR>>3)
857 # define S_IWGRP (S_IWUSR>>3)
858 # define S_IXGRP (S_IXUSR>>3)
859 # define S_IROTH (S_IRUSR>>6)
860 # define S_IWOTH (S_IWUSR>>6)
861 # define S_IXOTH (S_IXUSR>>6)
865 # define S_ISUID 04000
869 # define S_ISGID 02000
876 #if defined(cray) || defined(gould) || defined(i860) || defined(pyr)
877 # define SLOPPYDIVIDE
885 The IV type is supposed to be long enough to hold any integral
887 --Andy Dougherty August 1996
893 #if defined(USE_64_BITS) && defined(HAS_QUAD)
894 # if QUADKIND == QUAD_IS_INT64_T && defined(INT64_MAX)
895 # define IV_MAX INT64_MAX
896 # define IV_MIN INT64_MIN
897 # define UV_MAX UINT64_MAX
899 # define UINT64_MIN 0
901 # define UV_MIN UINT64_MIN
903 # define IV_MAX PERL_QUAD_MAX
904 # define IV_MIN PERL_QUAD_MIN
905 # define UV_MAX PERL_UQUAD_MAX
906 # define UV_MIN PERL_UQUAD_MIN
911 # if defined(INT32_MAX) && IVSIZE == 4
912 # define IV_MAX INT32_MAX
913 # define IV_MIN INT32_MIN
914 # ifndef UINT32_MAX_BROKEN /* e.g. HP-UX with gcc messes this up */
915 # define UV_MAX UINT32_MAX
917 # define UV_MAX 4294967295U
920 # define UINT32_MIN 0
922 # define UV_MIN UINT32_MIN
924 # define IV_MAX PERL_LONG_MAX
925 # define IV_MIN PERL_LONG_MIN
926 # define UV_MAX PERL_ULONG_MAX
927 # define UV_MIN PERL_ULONG_MIN
942 #define IV_DIG (BIT_DIGITS(IVSIZE * 8))
943 #define UV_DIG (BIT_DIGITS(UVSIZE * 8))
946 * The macros INT2PTR and NUM2PTR are (despite their names)
947 * bi-directional: they will convert int/float to or from pointers.
948 * However the conversion to int/float are named explicitly:
949 * PTR2IV, PTR2UV, PTR2NV.
951 * For int conversions we do not need two casts if pointers are
952 * the same size as IV and UV. Otherwise we need an explicit
953 * cast (PTRV) to avoid compiler warnings.
955 #if (IVSIZE == PTRSIZE) && (UVSIZE == PTRSIZE)
957 # define INT2PTR(any,d) (any)(d)
959 # if PTRSIZE == LONGSIZE
960 # define PTRV unsigned long
962 # define PTRV unsigned
964 # define INT2PTR(any,d) (any)(PTRV)(d)
966 #define NUM2PTR(any,d) (any)(PTRV)(d)
967 #define PTR2IV(p) INT2PTR(IV,p)
968 #define PTR2UV(p) INT2PTR(UV,p)
969 #define PTR2NV(p) NUM2PTR(NV,p)
971 #ifdef USE_LONG_DOUBLE
972 # if !(defined(HAS_LONG_DOUBLE) && (LONG_DOUBLESIZE > DOUBLESIZE))
973 # undef USE_LONG_DOUBLE /* Ouch! */
978 /* Use an overridden DBL_DIG */
982 # define DBL_DIG OVR_DBL_DIG
984 /* The following is all to get DBL_DIG, in order to pick a nice
985 default value for printing floating point numbers in Gconvert.
995 #define DBL_DIG 15 /* A guess that works lots of places */
1002 #define DBL_DIG 15 /* A guess that works lots of places */
1006 /* Use an overridden LDBL_DIG */
1010 # define LDBL_DIG OVR_LDBL_DIG
1012 /* The following is all to get LDBL_DIG, in order to pick a nice
1013 default value for printing floating point numbers in Gconvert.
1017 # include <limits.h>
1022 # ifndef HAS_LDBL_DIG
1023 # if LONG_DOUBLESIZE == 10
1024 # define LDBL_DIG 18 /* assume IEEE */
1026 # if LONG_DOUBLESIZE == 12
1027 # define LDBL_DIG 18 /* gcc? */
1029 # if LONG_DOUBLESIZE == 16
1030 # define LDBL_DIG 33 /* assume IEEE */
1032 # if LONG_DOUBLESIZE == DOUBLESIZE
1033 # define LDBL_DIG DBL_DIG /* bummer */
1043 #ifdef USE_LONG_DOUBLE
1044 # define NV_DIG LDBL_DIG
1046 # define Perl_modf modfl
1047 # define Perl_frexp frexpl
1048 # define Perl_cos cosl
1049 # define Perl_sin sinl
1050 # define Perl_sqrt sqrtl
1051 # define Perl_exp expl
1052 # define Perl_log logl
1053 # define Perl_atan2 atan2l
1054 # define Perl_pow powl
1055 # define Perl_floor floorl
1056 # define Perl_fmod fmodl
1059 # define NV_DIG DBL_DIG
1060 # define Perl_modf modf
1061 # define Perl_frexp frexp
1062 # define Perl_cos cos
1063 # define Perl_sin sin
1064 # define Perl_sqrt sqrt
1065 # define Perl_exp exp
1066 # define Perl_log log
1067 # define Perl_atan2 atan2
1068 # define Perl_pow pow
1069 # define Perl_floor floor
1070 # define Perl_fmod fmod
1073 #if defined(USE_LONG_DOUBLE) && defined(HAS_LONG_DOUBLE) && defined(HAS_ATOLF)
1074 # define Perl_atof atolf
1076 # define Perl_atof atof
1079 /* Previously these definitions used hardcoded figures.
1080 * It is hoped these formula are more portable, although
1081 * no data one way or another is presently known to me.
1082 * The "PERL_" names are used because these calculated constants
1083 * do not meet the ANSI requirements for LONG_MAX, etc., which
1084 * need to be constants acceptable to #if - kja
1085 * define PERL_LONG_MAX 2147483647L
1086 * define PERL_LONG_MIN (-LONG_MAX - 1)
1087 * define PERL ULONG_MAX 4294967295L
1090 #ifdef I_LIMITS /* Needed for cast_xxx() functions below. */
1091 # include <limits.h>
1094 # include <values.h>
1099 * Try to figure out max and min values for the integral types. THE CORRECT
1100 * SOLUTION TO THIS MESS: ADAPT enquire.c FROM GCC INTO CONFIGURE. The
1101 * following hacks are used if neither limits.h or values.h provide them:
1102 * U<TYPE>_MAX: for types >= int: ~(unsigned TYPE)0
1103 * for types < int: (unsigned TYPE)~(unsigned)0
1104 * The argument to ~ must be unsigned so that later signed->unsigned
1105 * conversion can't modify the value's bit pattern (e.g. -0 -> +0),
1106 * and it must not be smaller than int because ~ does integral promotion.
1107 * <type>_MAX: (<type>) (U<type>_MAX >> 1)
1108 * <type>_MIN: -<type>_MAX - <is_twos_complement_architecture: (3 & -1) == 3>.
1109 * The latter is a hack which happens to work on some machines but
1110 * does *not* catch any random system, or things like integer types
1111 * with NaN if that is possible.
1113 * All of the types are explicitly cast to prevent accidental loss of
1114 * numeric range, and in the hope that they will be less likely to confuse
1115 * over-eager optimizers.
1119 #define PERL_UCHAR_MIN ((unsigned char)0)
1122 # define PERL_UCHAR_MAX ((unsigned char)UCHAR_MAX)
1125 # define PERL_UCHAR_MAX ((unsigned char)MAXUCHAR)
1127 # define PERL_UCHAR_MAX ((unsigned char)~(unsigned)0)
1132 * CHAR_MIN and CHAR_MAX are not included here, as the (char) type may be
1133 * ambiguous. It may be equivalent to (signed char) or (unsigned char)
1134 * depending on local options. Until Configure detects this (or at least
1135 * detects whether the "signed" keyword is available) the CHAR ranges
1136 * will not be included. UCHAR functions normally.
1140 #define PERL_USHORT_MIN ((unsigned short)0)
1143 # define PERL_USHORT_MAX ((unsigned short)USHORT_MAX)
1146 # define PERL_USHORT_MAX ((unsigned short)MAXUSHORT)
1149 # define PERL_USHORT_MAX ((unsigned short)USHRT_MAX)
1151 # define PERL_USHORT_MAX ((unsigned short)~(unsigned)0)
1157 # define PERL_SHORT_MAX ((short)SHORT_MAX)
1159 # ifdef MAXSHORT /* Often used in <values.h> */
1160 # define PERL_SHORT_MAX ((short)MAXSHORT)
1163 # define PERL_SHORT_MAX ((short)SHRT_MAX)
1165 # define PERL_SHORT_MAX ((short) (PERL_USHORT_MAX >> 1))
1171 # define PERL_SHORT_MIN ((short)SHORT_MIN)
1174 # define PERL_SHORT_MIN ((short)MINSHORT)
1177 # define PERL_SHORT_MIN ((short)SHRT_MIN)
1179 # define PERL_SHORT_MIN (-PERL_SHORT_MAX - ((3 & -1) == 3))
1185 # define PERL_UINT_MAX ((unsigned int)UINT_MAX)
1188 # define PERL_UINT_MAX ((unsigned int)MAXUINT)
1190 # define PERL_UINT_MAX (~(unsigned int)0)
1194 #define PERL_UINT_MIN ((unsigned int)0)
1197 # define PERL_INT_MAX ((int)INT_MAX)
1199 # ifdef MAXINT /* Often used in <values.h> */
1200 # define PERL_INT_MAX ((int)MAXINT)
1202 # define PERL_INT_MAX ((int)(PERL_UINT_MAX >> 1))
1207 # define PERL_INT_MIN ((int)INT_MIN)
1210 # define PERL_INT_MIN ((int)MININT)
1212 # define PERL_INT_MIN (-PERL_INT_MAX - ((3 & -1) == 3))
1217 # define PERL_ULONG_MAX ((unsigned long)ULONG_MAX)
1220 # define PERL_ULONG_MAX ((unsigned long)MAXULONG)
1222 # define PERL_ULONG_MAX (~(unsigned long)0)
1226 #define PERL_ULONG_MIN ((unsigned long)0L)
1229 # define PERL_LONG_MAX ((long)LONG_MAX)
1231 # ifdef MAXLONG /* Often used in <values.h> */
1232 # define PERL_LONG_MAX ((long)MAXLONG)
1234 # define PERL_LONG_MAX ((long) (PERL_ULONG_MAX >> 1))
1239 # define PERL_LONG_MIN ((long)LONG_MIN)
1242 # define PERL_LONG_MIN ((long)MINLONG)
1244 # define PERL_LONG_MIN (-PERL_LONG_MAX - ((3 & -1) == 3))
1251 # define PERL_UQUAD_MAX ((UV)UQUAD_MAX)
1253 # define PERL_UQUAD_MAX (~(UV)0)
1256 # define PERL_UQUAD_MIN ((UV)0)
1259 # define PERL_QUAD_MAX ((IV)QUAD_MAX)
1261 # define PERL_QUAD_MAX ((IV) (PERL_UQUAD_MAX >> 1))
1265 # define PERL_QUAD_MIN ((IV)QUAD_MIN)
1267 # define PERL_QUAD_MIN (-PERL_QUAD_MAX - ((3 & -1) == 3))
1272 typedef MEM_SIZE STRLEN;
1274 typedef struct op OP;
1275 typedef struct cop COP;
1276 typedef struct unop UNOP;
1277 typedef struct binop BINOP;
1278 typedef struct listop LISTOP;
1279 typedef struct logop LOGOP;
1280 typedef struct pmop PMOP;
1281 typedef struct svop SVOP;
1282 typedef struct padop PADOP;
1283 typedef struct pvop PVOP;
1284 typedef struct loop LOOP;
1286 typedef struct interpreter PerlInterpreter;
1287 typedef struct sv SV;
1288 typedef struct av AV;
1289 typedef struct hv HV;
1290 typedef struct cv CV;
1291 typedef struct regexp REGEXP;
1292 typedef struct gp GP;
1293 typedef struct gv GV;
1294 typedef struct io IO;
1295 typedef struct context PERL_CONTEXT;
1296 typedef struct block BLOCK;
1298 typedef struct magic MAGIC;
1299 typedef struct xrv XRV;
1300 typedef struct xpv XPV;
1301 typedef struct xpviv XPVIV;
1302 typedef struct xpvuv XPVUV;
1303 typedef struct xpvnv XPVNV;
1304 typedef struct xpvmg XPVMG;
1305 typedef struct xpvlv XPVLV;
1306 typedef struct xpvav XPVAV;
1307 typedef struct xpvhv XPVHV;
1308 typedef struct xpvgv XPVGV;
1309 typedef struct xpvcv XPVCV;
1310 typedef struct xpvbm XPVBM;
1311 typedef struct xpvfm XPVFM;
1312 typedef struct xpvio XPVIO;
1313 typedef struct mgvtbl MGVTBL;
1314 typedef union any ANY;
1315 typedef struct ptr_tbl_ent PTR_TBL_ENT_t;
1316 typedef struct ptr_tbl PTR_TBL_t;
1320 #ifndef NO_LARGE_FILES
1321 # define USE_LARGE_FILES /* If available. */
1324 #if defined(USE_LARGE_FILES) && !defined(NO_64_BIT_RAWIO)
1325 # define USE_64_BIT_RAWIO /* explicit */
1326 # if LSEEKSIZE == 8 && !defined(USE_64_BIT_RAWIO)
1327 # define USE_64_BIT_RAWIO /* implicit */
1331 /* Notice the use of HAS_FSEEKO: now we are obligated to always use
1332 * fseeko/ftello if possible. Don't go #defining ftell to ftello yourself,
1333 * however, because operating systems like to do that themself. */
1336 # define FSEEKSIZE LSEEKSIZE
1338 # define FSEEKSIZE LONGSIZE
1342 #if defined(USE_LARGE_FILES) && !defined(NO_64_BIT_STDIO)
1343 # define USE_64_BIT_STDIO /* explicit */
1344 # if FSEEKSIZE == 8 && !defined(USE_64_BIT_STDIO)
1345 # define USE_64_BIT_STDIO /* implicit */
1349 #ifdef USE_64_BIT_RAWIO
1352 # define Off_t off64_t
1354 # define LSEEKSIZE 8
1356 /* Most 64-bit environments have defines like _LARGEFILE_SOURCE that
1357 * will trigger defines like the ones below. Some 64-bit environments,
1358 * however, do not. Therefore we have to explicitly mix and match. */
1359 # if defined(USE_OPEN64)
1360 # define open open64
1362 # if defined(USE_LSEEK64)
1363 # define lseek lseek64
1365 # if defined(USE_LLSEEK)
1366 # define lseek llseek
1369 # if defined(USE_STAT64)
1370 # define stat stat64
1372 # if defined(USE_FSTAT64)
1373 # define fstat fstat64
1375 # if defined(USE_LSTAT64)
1376 # define lstat lstat64
1378 # if defined(USE_FLOCK64)
1379 # define flock flock64
1381 # if defined(USE_LOCKF64)
1382 # define lockf lockf64
1384 # if defined(USE_FCNTL64)
1385 # define fcntl fcntl64
1387 # if defined(USE_TRUNCATE64)
1388 # define truncate truncate64
1390 # if defined(USE_FTRUNCATE64)
1391 # define ftruncate ftruncate64
1395 #ifdef USE_64_BIT_STDIO
1396 # ifdef HAS_FPOS64_T
1398 # define Fpos_t fpos64_t
1400 /* Most 64-bit environments have defines like _LARGEFILE_SOURCE that
1401 * will trigger defines like the ones below. Some 64-bit environments,
1402 * however, do not. */
1403 # if defined(USE_FOPEN64)
1404 # define fopen fopen64
1406 # if defined(USE_FSEEK64)
1407 # define fseek fseek64 /* don't do fseeko here, see perlio.c */
1409 # if defined(USE_FTELL64)
1410 # define ftell ftell64 /* don't do ftello here, see perlio.c */
1412 # if defined(USE_FSETPOS64)
1413 # define fsetpos fsetpos64
1415 # if defined(USE_FGETPOS64)
1416 # define fgetpos fgetpos64
1418 # if defined(USE_TMPFILE64)
1419 # define tmpfile tmpfile64
1421 # if defined(USE_FREOPEN64)
1422 # define freopen freopen64
1427 # include "iperlsys.h"
1430 #if defined(__OPEN_VM)
1431 # include "vmesa/vmesaish.h"
1436 # include "os2ish.h"
1438 # include "dosish.h"
1442 # include "vmsish.h"
1445 # include "./plan9/plan9ish.h"
1448 # include "mpeix/mpeixish.h"
1450 # if defined(__VOS__)
1451 # include "vosish.h"
1454 # include "epocish.h"
1456 # if defined(MACOS_TRADITIONAL)
1457 # include "macos/macish.h"
1459 # include "unixish.h"
1468 #ifndef PERL_SYS_INIT3
1469 # define PERL_SYS_INIT3(argvp,argcp,envp) PERL_SYS_INIT(argvp,argcp)
1472 #ifndef PERL_SYS_INIT3
1473 # define PERL_SYS_INIT3(argvp,argcp,envp) PERL_SYS_INIT(argvp,argcp)
1478 # ifdef _POSIX_PATH_MAX
1479 # if PATH_MAX > _POSIX_PATH_MAX
1480 /* MAXPATHLEN is supposed to include the final null character,
1481 * as opposed to PATH_MAX and _POSIX_PATH_MAX. */
1482 # define MAXPATHLEN (PATH_MAX+1)
1484 # define MAXPATHLEN (_POSIX_PATH_MAX+1)
1487 # define MAXPATHLEN (PATH_MAX+1)
1490 # ifdef _POSIX_PATH_MAX
1491 # define MAXPATHLEN (_POSIX_PATH_MAX+1)
1493 # define MAXPATHLEN 1024 /* Err on the large side. */
1499 * USE_THREADS needs to be after unixish.h as <pthread.h> includes
1500 * <sys/signal.h> which defines NSIG - which will stop inclusion of <signal.h>
1501 * this results in many functions being undeclared which bothers C++
1502 * May make sense to have threads after "*ish.h" anyway
1506 /* pending resolution of licensing issues, we avoid the erstwhile
1507 * atomic.h everywhere */
1508 # define EMULATE_ATOMIC_REFCOUNTS
1510 # ifdef FAKE_THREADS
1511 # include "fakethr.h"
1514 # include <win32thread.h>
1517 # include "os2thread.h"
1519 # ifdef I_MACH_CTHREADS
1520 # include <mach/cthreads.h>
1521 # if (defined(NeXT) || defined(__NeXT__)) && defined(PERL_POLLUTE_MALLOC)
1522 # define MUTEX_INIT_CALLS_MALLOC
1524 typedef cthread_t perl_os_thread;
1525 typedef mutex_t perl_mutex;
1526 typedef condition_t perl_cond;
1527 typedef void * perl_key;
1528 # else /* Posix threads */
1530 # include <pthread.h>
1532 typedef pthread_t perl_os_thread;
1533 typedef pthread_mutex_t perl_mutex;
1534 typedef pthread_cond_t perl_cond;
1535 typedef pthread_key_t perl_key;
1536 # endif /* I_MACH_CTHREADS */
1539 # endif /* FAKE_THREADS */
1540 #endif /* USE_THREADS */
1547 # define STATUS_NATIVE PL_statusvalue_vms
1548 # define STATUS_NATIVE_EXPORT \
1549 ((I32)PL_statusvalue_vms == -1 ? 44 : PL_statusvalue_vms)
1550 # define STATUS_NATIVE_SET(n) \
1552 PL_statusvalue_vms = (n); \
1553 if ((I32)PL_statusvalue_vms == -1) \
1554 PL_statusvalue = -1; \
1555 else if (PL_statusvalue_vms & STS$M_SUCCESS) \
1556 PL_statusvalue = 0; \
1557 else if ((PL_statusvalue_vms & STS$M_SEVERITY) == 0) \
1558 PL_statusvalue = 1 << 8; \
1560 PL_statusvalue = (PL_statusvalue_vms & STS$M_SEVERITY) << 8; \
1562 # define STATUS_POSIX PL_statusvalue
1563 # ifdef VMSISH_STATUS
1564 # define STATUS_CURRENT (VMSISH_STATUS ? STATUS_NATIVE : STATUS_POSIX)
1566 # define STATUS_CURRENT STATUS_POSIX
1568 # define STATUS_POSIX_SET(n) \
1570 PL_statusvalue = (n); \
1571 if (PL_statusvalue != -1) { \
1572 PL_statusvalue &= 0xFFFF; \
1573 PL_statusvalue_vms = PL_statusvalue ? 44 : 1; \
1575 else PL_statusvalue_vms = -1; \
1577 # define STATUS_ALL_SUCCESS (PL_statusvalue = 0, PL_statusvalue_vms = 1)
1578 # define STATUS_ALL_FAILURE (PL_statusvalue = 1, PL_statusvalue_vms = 44)
1580 # define STATUS_NATIVE STATUS_POSIX
1581 # define STATUS_NATIVE_EXPORT STATUS_POSIX
1582 # define STATUS_NATIVE_SET STATUS_POSIX_SET
1583 # define STATUS_POSIX PL_statusvalue
1584 # define STATUS_POSIX_SET(n) \
1586 PL_statusvalue = (n); \
1587 if (PL_statusvalue != -1) \
1588 PL_statusvalue &= 0xFFFF; \
1590 # define STATUS_CURRENT STATUS_POSIX
1591 # define STATUS_ALL_SUCCESS (PL_statusvalue = 0)
1592 # define STATUS_ALL_FAILURE (PL_statusvalue = 1)
1595 /* flags in PL_exit_flags for nature of exit() */
1596 #define PERL_EXIT_EXPECTED 0x01
1598 #ifndef MEMBER_TO_FPTR
1599 #define MEMBER_TO_FPTR(name) name
1602 /* This defines a way to flush all output buffers. This may be a
1603 * performance issue, so we allow people to disable it.
1605 #ifndef PERL_FLUSHALL_FOR_CHILD
1606 # if defined(FFLUSH_NULL) || defined(USE_SFIO)
1607 # define PERL_FLUSHALL_FOR_CHILD PerlIO_flush((PerlIO*)NULL)
1610 # define PERL_FLUSHALL_FOR_CHILD my_fflush_all()
1612 # define PERL_FLUSHALL_FOR_CHILD NOOP
1617 #ifndef PERL_WAIT_FOR_CHILDREN
1618 # define PERL_WAIT_FOR_CHILDREN NOOP
1621 /* the traditional thread-unsafe notion of "current interpreter".
1622 * XXX todo: a thread-safe version that fetches it from TLS (akin to THR)
1623 * needs to be defined elsewhere (conditional on pthread_getspecific()
1625 #ifndef PERL_SET_INTERP
1626 # define PERL_SET_INTERP(i) (PL_curinterp = (PerlInterpreter*)(i))
1629 #ifndef PERL_GET_INTERP
1630 # define PERL_GET_INTERP (PL_curinterp)
1633 #if defined(PERL_IMPLICIT_CONTEXT) && !defined(PERL_GET_THX)
1635 # define PERL_GET_THX THR
1637 # ifdef MULTIPLICITY
1638 # define PERL_GET_THX PERL_GET_INTERP
1641 # define PERL_GET_THX ((CPerlObj*)PERL_GET_INTERP)
1643 # define PERL_GET_THX ((void*)0)
1649 /* Some unistd.h's give a prototype for pause() even though
1650 HAS_PAUSE ends up undefined. This causes the #define
1651 below to be rejected by the compmiler. Sigh.
1656 #define Pause() sleep((32767<<16)+32767)
1660 # ifdef IOCPARM_MASK
1661 /* on BSDish systes we're safe */
1662 # define IOCPARM_LEN(x) (((x) >> 16) & IOCPARM_MASK)
1664 /* otherwise guess at what's safe */
1665 # define IOCPARM_LEN(x) 256
1671 * This symbol, if defined, indicates that the program should
1672 * use the routine my_binmode(FILE *fp, char iotype) to insure
1673 * that a file is in "binary" mode -- that is, that no translation
1674 * of bytes occurs on read or write operations.
1676 # define USEMYBINMODE / **/
1677 # define my_binmode(fp, iotype) \
1678 (PerlLIO_setmode(PerlIO_fileno(fp), O_BINARY) != -1 ? TRUE : FALSE)
1681 #ifdef UNION_ANY_DEFINITION
1682 UNION_ANY_DEFINITION;
1689 void (*any_dptr) (void*);
1690 void (*any_dxptr) (pTHXo_ void*);
1695 #define ARGSproto struct perl_thread *thr
1698 #endif /* USE_THREADS */
1700 typedef I32 (*filter_t) (pTHXo_ int, SV *, int);
1702 #define FILTER_READ(idx, sv, len) filter_read(idx, sv, len)
1703 #define FILTER_DATA(idx) (AvARRAY(PL_rsfp_filters)[idx])
1704 #define FILTER_ISREADER(idx) (idx >= AvFILLp(PL_rsfp_filters))
1707 # include "iperlsys.h"
1715 #include "opnames.h"
1722 #include "warnings.h"
1725 /* Current curly descriptor */
1726 typedef struct curcur CURCUR;
1728 int parenfloor; /* how far back to strip paren data */
1729 int cur; /* how many instances of scan we've matched */
1730 int min; /* the minimal number of scans to match */
1731 int max; /* the maximal number of scans to match */
1732 int minmod; /* whether to work our way up or down */
1733 regnode * scan; /* the thing to match */
1734 regnode * next; /* what has to match after it */
1735 char * lastloc; /* where we started matching this scan */
1736 CURCUR * oldcc; /* current curly before we started this one */
1739 typedef struct _sublex_info SUBLEXINFO;
1740 struct _sublex_info {
1741 I32 super_state; /* lexer state to save */
1742 I32 sub_inwhat; /* "lex_inwhat" to use */
1743 OP *sub_op; /* "lex_op" to use */
1744 char *super_bufptr; /* PL_bufptr that was */
1745 char *super_bufend; /* PL_bufend that was */
1748 typedef struct magic_state MGS; /* struct magic_state defined in mg.c */
1750 struct scan_data_t; /* Used in S_* functions in regcomp.c */
1751 struct regnode_charclass_class; /* Used in S_* functions in regcomp.c */
1753 typedef I32 CHECKPOINT;
1755 struct ptr_tbl_ent {
1756 struct ptr_tbl_ent* next;
1762 struct ptr_tbl_ent** tbl_ary;
1767 #if defined(iAPX286) || defined(M_I286) || defined(I80286)
1771 #if defined(htonl) && !defined(HAS_HTONL)
1774 #if defined(htons) && !defined(HAS_HTONS)
1777 #if defined(ntohl) && !defined(HAS_NTOHL)
1780 #if defined(ntohs) && !defined(HAS_NTOHS)
1784 #if (BYTEORDER & 0xffff) != 0x4321
1790 #define htons my_swap
1791 #define htonl my_htonl
1792 #define ntohs my_swap
1793 #define ntohl my_ntohl
1796 #if (BYTEORDER & 0xffff) == 0x4321
1805 * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
1808 #if BYTEORDER != 0x1234
1813 # if BYTEORDER == 0x4321 || BYTEORDER == 0x87654321
1814 # define vtohl(x) ((((x)&0xFF)<<24) \
1816 +(((x)&0x0000FF00)<<8) \
1817 +(((x)&0x00FF0000)>>8) )
1818 # define vtohs(x) ((((x)&0xFF)<<8) + (((x)>>8)&0xFF))
1819 # define htovl(x) vtohl(x)
1820 # define htovs(x) vtohs(x)
1822 /* otherwise default to functions in util.c */
1826 #define U_S(what) ((U16)(what))
1827 #define U_I(what) ((unsigned int)(what))
1828 #define U_L(what) ((U32)(what))
1830 #define U_S(what) ((U16)cast_ulong((NV)(what)))
1831 #define U_I(what) ((unsigned int)cast_ulong((NV)(what)))
1832 #define U_L(what) (cast_ulong((NV)(what)))
1836 #define I_32(what) ((I32)(what))
1837 #define I_V(what) ((IV)(what))
1838 #define U_V(what) ((UV)(what))
1840 #define I_32(what) (cast_i32((NV)(what)))
1841 #define I_V(what) (cast_iv((NV)(what)))
1842 #define U_V(what) (cast_uv((NV)(what)))
1845 /* These do not care about the fractional part, only about the range. */
1846 #define NV_WITHIN_IV(nv) (I_V(nv) >= IV_MIN && I_V(nv) <= IV_MAX)
1847 #define NV_WITHIN_UV(nv) ((nv)>=0.0 && U_V(nv) >= UV_MIN && U_V(nv) <= UV_MAX)
1849 /* Used with UV/IV arguments: */
1850 /* XXXX: need to speed it up */
1851 #define CLUMP_2UV(iv) ((iv) < 0 ? 0 : (UV)(iv))
1852 #define CLUMP_2IV(uv) ((uv) > (UV)IV_MAX ? IV_MAX : (IV)(uv))
1859 Uid_t getuid (void);
1860 Uid_t geteuid (void);
1861 Gid_t getgid (void);
1862 Gid_t getegid (void);
1865 #ifndef Perl_debug_log
1866 # define Perl_debug_log PerlIO_stderr()
1869 #ifndef Perl_error_log
1870 # define Perl_error_log (PL_stderrgv \
1871 && IoOFP(GvIOp(PL_stderrgv)) \
1872 ? IoOFP(GvIOp(PL_stderrgv)) \
1880 #define DEBUG(a) if (PL_debug) a
1881 #define DEBUG_p(a) if (PL_debug & 1) a
1882 #define DEBUG_s(a) if (PL_debug & 2) a
1883 #define DEBUG_l(a) if (PL_debug & 4) a
1884 #define DEBUG_t(a) if (PL_debug & 8) a
1885 #define DEBUG_o(a) if (PL_debug & 16) a
1886 #define DEBUG_c(a) if (PL_debug & 32) a
1887 #define DEBUG_P(a) if (PL_debug & 64) a
1888 # if defined(PERL_OBJECT)
1889 # define DEBUG_m(a) if (PL_debug & 128) a
1891 # define DEBUG_m(a) \
1893 if (PERL_GET_INTERP) { dTHX; if (PL_debug & 128) { a; } } \
1896 #define DEBUG_f(a) if (PL_debug & 256) a
1897 #define DEBUG_r(a) if (PL_debug & 512) a
1898 #define DEBUG_x(a) if (PL_debug & 1024) a
1899 #define DEBUG_u(a) if (PL_debug & 2048) a
1900 #define DEBUG_L(a) if (PL_debug & 4096) a
1901 #define DEBUG_H(a) if (PL_debug & 8192) a
1902 #define DEBUG_X(a) if (PL_debug & 16384) a
1903 #define DEBUG_D(a) if (PL_debug & 32768) a
1905 # define DEBUG_S(a) if (PL_debug & (1<<16)) a
1930 #define YYMAXDEPTH 300
1932 #ifndef assert /* <assert.h> might have been included somehow */
1933 #define assert(what) DEB( { \
1935 Perl_croak(aTHX_ "Assertion failed: file \"%s\", line %d", \
1936 __FILE__, __LINE__); \
1942 I32 (*uf_val)(IV, SV*);
1943 I32 (*uf_set)(IV, SV*);
1947 /* Fix these up for __STDC__ */
1948 #ifndef DONT_DECLARE_STD
1949 char *mktemp (char*);
1951 double atof (const char*);
1956 /* All of these are in stdlib.h or time.h for ANSI C */
1958 struct tm *gmtime(), *localtime();
1959 #if defined(OEMVS) || defined(__OPEN_VM)
1960 char *(strchr)(), *(strrchr)();
1961 char *(strcpy)(), *(strcat)();
1963 char *strchr(), *strrchr();
1964 char *strcpy(), *strcat();
1966 #endif /* ! STANDARD_C */
1973 double exp (double);
1974 double log (double);
1975 double log10 (double);
1976 double sqrt (double);
1977 double frexp (double,int*);
1978 double ldexp (double,int);
1979 double modf (double,double*);
1980 double sin (double);
1981 double cos (double);
1982 double atan2 (double,double);
1983 double pow (double,double);
1988 # if defined(NeXT) || defined(__NeXT__) /* or whatever catches all NeXTs */
1989 char *crypt (); /* Maybe more hosts will need the unprototyped version */
1991 # if !defined(WIN32)
1992 char *crypt (const char*, const char*);
1993 # endif /* !WIN32 */
1994 # endif /* !NeXT && !__NeXT__ */
1995 # ifndef DONT_DECLARE_STD
1997 char *getenv (const char*);
1998 # endif /* !getenv */
2000 Off_t lseek (int,Off_t,int);
2002 # endif /* !DONT_DECLARE_STD */
2003 char *getlogin (void);
2004 #endif /* !__cplusplus */
2006 #ifdef UNLINK_ALL_VERSIONS /* Currently only makes sense for VMS */
2007 #define UNLINK unlnk
2010 #define UNLINK PerlLIO_unlink
2013 #ifndef HAS_SETREUID
2014 # ifdef HAS_SETRESUID
2015 # define setreuid(r,e) setresuid(r,e,(Uid_t)-1)
2016 # define HAS_SETREUID
2019 #ifndef HAS_SETREGID
2020 # ifdef HAS_SETRESGID
2021 # define setregid(r,e) setresgid(r,e,(Gid_t)-1)
2022 # define HAS_SETREGID
2026 /* Sighandler_t defined in iperlsys.h */
2028 #ifdef HAS_SIGACTION
2029 typedef struct sigaction Sigsave_t;
2031 typedef Sighandler_t Sigsave_t;
2042 # define PAD_SV(po) pad_sv(po)
2043 # define RUNOPS_DEFAULT Perl_runops_debug
2045 # define PAD_SV(po) PL_curpad[po]
2046 # define RUNOPS_DEFAULT Perl_runops_standard
2050 # ifdef MUTEX_INIT_CALLS_MALLOC
2051 # define MALLOC_INIT \
2053 PL_malloc_mutex = NULL; \
2054 MUTEX_INIT(&PL_malloc_mutex); \
2056 # define MALLOC_TERM \
2058 perl_mutex tmp = PL_malloc_mutex; \
2059 PL_malloc_mutex = NULL; \
2060 MUTEX_DESTROY(&tmp); \
2063 # define MALLOC_INIT MUTEX_INIT(&PL_malloc_mutex)
2064 # define MALLOC_TERM MUTEX_DESTROY(&PL_malloc_mutex)
2067 # define MALLOC_INIT
2068 # define MALLOC_TERM
2072 typedef int (CPERLscope(*runops_proc_t)) (pTHX);
2073 typedef OP* (CPERLscope(*PPADDR_t)[]) (pTHX);
2075 /* _ (for $_) must be first in the following list (DEFSV requires it) */
2076 #define THREADSV_NAMES "_123456789&`'+/.,\\\";^-%=|~:\001\005!@"
2078 /* NeXT has problems with crt0.o globals */
2079 #if defined(__DYNAMIC__) && \
2080 (defined(NeXT) || defined(__NeXT__) || defined(__APPLE__))
2081 # if defined(NeXT) || defined(__NeXT)
2082 # include <mach-o/dyld.h>
2083 # define environ (*environ_pointer)
2084 EXT char *** environ_pointer;
2086 # if defined(__APPLE__)
2087 # include <crt_externs.h> /* for the env array */
2088 # define environ (*_NSGetEnviron())
2092 /* VMS and some other platforms don't use the environ array */
2094 # if !defined(DONT_DECLARE_STD) || \
2095 (defined(__svr4__) && defined(__GNUC__) && defined(sun)) || \
2097 defined(__DGUX) || defined(EPOC)
2098 extern char ** environ; /* environment variables supplied via exec */
2105 /* handy constants */
2106 EXTCONST char PL_warn_uninit[]
2107 INIT("Use of uninitialized value%s%s");
2108 EXTCONST char PL_warn_nosemi[]
2109 INIT("Semicolon seems to be missing");
2110 EXTCONST char PL_warn_reserved[]
2111 INIT("Unquoted string \"%s\" may clash with future reserved word");
2112 EXTCONST char PL_warn_nl[]
2113 INIT("Unsuccessful %s on filename containing newline");
2114 EXTCONST char PL_no_wrongref[]
2115 INIT("Can't use %s ref as %s ref");
2116 EXTCONST char PL_no_symref[]
2117 INIT("Can't use string (\"%.32s\") as %s ref while \"strict refs\" in use");
2118 EXTCONST char PL_no_usym[]
2119 INIT("Can't use an undefined value as %s reference");
2120 EXTCONST char PL_no_aelem[]
2121 INIT("Modification of non-creatable array value attempted, subscript %d");
2122 EXTCONST char PL_no_helem[]
2123 INIT("Modification of non-creatable hash value attempted, subscript \"%s\"");
2124 EXTCONST char PL_no_modify[]
2125 INIT("Modification of a read-only value attempted");
2126 EXTCONST char PL_no_mem[]
2127 INIT("Out of memory!\n");
2128 EXTCONST char PL_no_security[]
2129 INIT("Insecure dependency in %s%s");
2130 EXTCONST char PL_no_sock_func[]
2131 INIT("Unsupported socket function \"%s\" called");
2132 EXTCONST char PL_no_dir_func[]
2133 INIT("Unsupported directory function \"%s\" called");
2134 EXTCONST char PL_no_func[]
2135 INIT("The %s function is unimplemented");
2136 EXTCONST char PL_no_myglob[]
2137 INIT("\"my\" variable %s can't be in a package");
2139 EXTCONST char PL_uuemap[65]
2140 INIT("`!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_");
2144 EXT char *PL_sig_name[] = { SIG_NAME };
2145 EXT int PL_sig_num[] = { SIG_NUM };
2147 EXT char *PL_sig_name[];
2148 EXT int PL_sig_num[];
2151 /* fast case folding tables */
2155 EXT unsigned char PL_fold[] = { /* fast EBCDIC case folding table */
2156 0, 1, 2, 3, 4, 5, 6, 7,
2157 8, 9, 10, 11, 12, 13, 14, 15,
2158 16, 17, 18, 19, 20, 21, 22, 23,
2159 24, 25, 26, 27, 28, 29, 30, 31,
2160 32, 33, 34, 35, 36, 37, 38, 39,
2161 40, 41, 42, 43, 44, 45, 46, 47,
2162 48, 49, 50, 51, 52, 53, 54, 55,
2163 56, 57, 58, 59, 60, 61, 62, 63,
2164 64, 65, 66, 67, 68, 69, 70, 71,
2165 72, 73, 74, 75, 76, 77, 78, 79,
2166 80, 81, 82, 83, 84, 85, 86, 87,
2167 88, 89, 90, 91, 92, 93, 94, 95,
2168 96, 97, 98, 99, 100, 101, 102, 103,
2169 104, 105, 106, 107, 108, 109, 110, 111,
2170 112, 113, 114, 115, 116, 117, 118, 119,
2171 120, 121, 122, 123, 124, 125, 126, 127,
2172 128, 'A', 'B', 'C', 'D', 'E', 'F', 'G',
2173 'H', 'I', 138, 139, 140, 141, 142, 143,
2174 144, 'J', 'K', 'L', 'M', 'N', 'O', 'P',
2175 'Q', 'R', 154, 155, 156, 157, 158, 159,
2176 160, 161, 'S', 'T', 'U', 'V', 'W', 'X',
2177 'Y', 'Z', 170, 171, 172, 173, 174, 175,
2178 176, 177, 178, 179, 180, 181, 182, 183,
2179 184, 185, 186, 187, 188, 189, 190, 191,
2180 192, 'a', 'b', 'c', 'd', 'e', 'f', 'g',
2181 'h', 'i', 202, 203, 204, 205, 206, 207,
2182 208, 'j', 'k', 'l', 'm', 'n', 'o', 'p',
2183 'q', 'r', 218, 219, 220, 221, 222, 223,
2184 224, 225, 's', 't', 'u', 'v', 'w', 'x',
2185 'y', 'z', 234, 235, 236, 237, 238, 239,
2186 240, 241, 242, 243, 244, 245, 246, 247,
2187 248, 249, 250, 251, 252, 253, 254, 255
2189 #else /* ascii rather than ebcdic */
2190 EXTCONST unsigned char PL_fold[] = {
2191 0, 1, 2, 3, 4, 5, 6, 7,
2192 8, 9, 10, 11, 12, 13, 14, 15,
2193 16, 17, 18, 19, 20, 21, 22, 23,
2194 24, 25, 26, 27, 28, 29, 30, 31,
2195 32, 33, 34, 35, 36, 37, 38, 39,
2196 40, 41, 42, 43, 44, 45, 46, 47,
2197 48, 49, 50, 51, 52, 53, 54, 55,
2198 56, 57, 58, 59, 60, 61, 62, 63,
2199 64, 'a', 'b', 'c', 'd', 'e', 'f', 'g',
2200 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
2201 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
2202 'x', 'y', 'z', 91, 92, 93, 94, 95,
2203 96, 'A', 'B', 'C', 'D', 'E', 'F', 'G',
2204 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
2205 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
2206 'X', 'Y', 'Z', 123, 124, 125, 126, 127,
2207 128, 129, 130, 131, 132, 133, 134, 135,
2208 136, 137, 138, 139, 140, 141, 142, 143,
2209 144, 145, 146, 147, 148, 149, 150, 151,
2210 152, 153, 154, 155, 156, 157, 158, 159,
2211 160, 161, 162, 163, 164, 165, 166, 167,
2212 168, 169, 170, 171, 172, 173, 174, 175,
2213 176, 177, 178, 179, 180, 181, 182, 183,
2214 184, 185, 186, 187, 188, 189, 190, 191,
2215 192, 193, 194, 195, 196, 197, 198, 199,
2216 200, 201, 202, 203, 204, 205, 206, 207,
2217 208, 209, 210, 211, 212, 213, 214, 215,
2218 216, 217, 218, 219, 220, 221, 222, 223,
2219 224, 225, 226, 227, 228, 229, 230, 231,
2220 232, 233, 234, 235, 236, 237, 238, 239,
2221 240, 241, 242, 243, 244, 245, 246, 247,
2222 248, 249, 250, 251, 252, 253, 254, 255
2224 #endif /* !EBCDIC */
2226 EXTCONST unsigned char PL_fold[];
2230 EXT unsigned char PL_fold_locale[] = {
2231 0, 1, 2, 3, 4, 5, 6, 7,
2232 8, 9, 10, 11, 12, 13, 14, 15,
2233 16, 17, 18, 19, 20, 21, 22, 23,
2234 24, 25, 26, 27, 28, 29, 30, 31,
2235 32, 33, 34, 35, 36, 37, 38, 39,
2236 40, 41, 42, 43, 44, 45, 46, 47,
2237 48, 49, 50, 51, 52, 53, 54, 55,
2238 56, 57, 58, 59, 60, 61, 62, 63,
2239 64, 'a', 'b', 'c', 'd', 'e', 'f', 'g',
2240 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
2241 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
2242 'x', 'y', 'z', 91, 92, 93, 94, 95,
2243 96, 'A', 'B', 'C', 'D', 'E', 'F', 'G',
2244 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
2245 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
2246 'X', 'Y', 'Z', 123, 124, 125, 126, 127,
2247 128, 129, 130, 131, 132, 133, 134, 135,
2248 136, 137, 138, 139, 140, 141, 142, 143,
2249 144, 145, 146, 147, 148, 149, 150, 151,
2250 152, 153, 154, 155, 156, 157, 158, 159,
2251 160, 161, 162, 163, 164, 165, 166, 167,
2252 168, 169, 170, 171, 172, 173, 174, 175,
2253 176, 177, 178, 179, 180, 181, 182, 183,
2254 184, 185, 186, 187, 188, 189, 190, 191,
2255 192, 193, 194, 195, 196, 197, 198, 199,
2256 200, 201, 202, 203, 204, 205, 206, 207,
2257 208, 209, 210, 211, 212, 213, 214, 215,
2258 216, 217, 218, 219, 220, 221, 222, 223,
2259 224, 225, 226, 227, 228, 229, 230, 231,
2260 232, 233, 234, 235, 236, 237, 238, 239,
2261 240, 241, 242, 243, 244, 245, 246, 247,
2262 248, 249, 250, 251, 252, 253, 254, 255
2265 EXT unsigned char PL_fold_locale[];
2270 EXT unsigned char PL_freq[] = {/* EBCDIC frequencies for mixed English/C */
2271 1, 2, 84, 151, 154, 155, 156, 157,
2272 165, 246, 250, 3, 158, 7, 18, 29,
2273 40, 51, 62, 73, 85, 96, 107, 118,
2274 129, 140, 147, 148, 149, 150, 152, 153,
2275 255, 6, 8, 9, 10, 11, 12, 13,
2276 14, 15, 24, 25, 26, 27, 28, 226,
2277 29, 30, 31, 32, 33, 43, 44, 45,
2278 46, 47, 48, 49, 50, 76, 77, 78,
2279 79, 80, 81, 82, 83, 84, 85, 86,
2280 87, 94, 95, 234, 181, 233, 187, 190,
2281 180, 96, 97, 98, 99, 100, 101, 102,
2282 104, 112, 182, 174, 236, 232, 229, 103,
2283 228, 226, 114, 115, 116, 117, 118, 119,
2284 120, 121, 122, 235, 176, 230, 194, 162,
2285 130, 131, 132, 133, 134, 135, 136, 137,
2286 138, 139, 201, 205, 163, 217, 220, 224,
2287 5, 248, 227, 244, 242, 255, 241, 231,
2288 240, 253, 16, 197, 19, 20, 21, 187,
2289 23, 169, 210, 245, 237, 249, 247, 239,
2290 168, 252, 34, 196, 36, 37, 38, 39,
2291 41, 42, 251, 254, 238, 223, 221, 213,
2292 225, 177, 52, 53, 54, 55, 56, 57,
2293 58, 59, 60, 61, 63, 64, 65, 66,
2294 67, 68, 69, 70, 71, 72, 74, 75,
2295 205, 208, 186, 202, 200, 218, 198, 179,
2296 178, 214, 88, 89, 90, 91, 92, 93,
2297 217, 166, 170, 207, 199, 209, 206, 204,
2298 160, 212, 105, 106, 108, 109, 110, 111,
2299 203, 113, 216, 215, 192, 175, 193, 243,
2300 172, 161, 123, 124, 125, 126, 127, 128,
2301 222, 219, 211, 195, 188, 193, 185, 184,
2302 191, 183, 141, 142, 143, 144, 145, 146
2304 #else /* ascii rather than ebcdic */
2305 EXTCONST unsigned char PL_freq[] = { /* letter frequencies for mixed English/C */
2306 1, 2, 84, 151, 154, 155, 156, 157,
2307 165, 246, 250, 3, 158, 7, 18, 29,
2308 40, 51, 62, 73, 85, 96, 107, 118,
2309 129, 140, 147, 148, 149, 150, 152, 153,
2310 255, 182, 224, 205, 174, 176, 180, 217,
2311 233, 232, 236, 187, 235, 228, 234, 226,
2312 222, 219, 211, 195, 188, 193, 185, 184,
2313 191, 183, 201, 229, 181, 220, 194, 162,
2314 163, 208, 186, 202, 200, 218, 198, 179,
2315 178, 214, 166, 170, 207, 199, 209, 206,
2316 204, 160, 212, 216, 215, 192, 175, 173,
2317 243, 172, 161, 190, 203, 189, 164, 230,
2318 167, 248, 227, 244, 242, 255, 241, 231,
2319 240, 253, 169, 210, 245, 237, 249, 247,
2320 239, 168, 252, 251, 254, 238, 223, 221,
2321 213, 225, 177, 197, 171, 196, 159, 4,
2322 5, 6, 8, 9, 10, 11, 12, 13,
2323 14, 15, 16, 17, 19, 20, 21, 22,
2324 23, 24, 25, 26, 27, 28, 30, 31,
2325 32, 33, 34, 35, 36, 37, 38, 39,
2326 41, 42, 43, 44, 45, 46, 47, 48,
2327 49, 50, 52, 53, 54, 55, 56, 57,
2328 58, 59, 60, 61, 63, 64, 65, 66,
2329 67, 68, 69, 70, 71, 72, 74, 75,
2330 76, 77, 78, 79, 80, 81, 82, 83,
2331 86, 87, 88, 89, 90, 91, 92, 93,
2332 94, 95, 97, 98, 99, 100, 101, 102,
2333 103, 104, 105, 106, 108, 109, 110, 111,
2334 112, 113, 114, 115, 116, 117, 119, 120,
2335 121, 122, 123, 124, 125, 126, 127, 128,
2336 130, 131, 132, 133, 134, 135, 136, 137,
2337 138, 139, 141, 142, 143, 144, 145, 146
2341 EXTCONST unsigned char PL_freq[];
2346 EXTCONST char* PL_block_type[] = {
2355 EXTCONST char* PL_block_type[];
2361 /*****************************************************************************/
2362 /* This lexer/parser stuff is currently global since yacc is hard to reenter */
2363 /*****************************************************************************/
2364 /* XXX This needs to be revisited, since BEGIN makes yacc re-enter... */
2368 #define LEX_NOTPARSING 11 /* borrowed from toke.c */
2381 enum { /* pass one of these to get_vtbl */
2407 want_vtbl_amagicelem,
2416 /* Note: the lowest 8 bits are reserved for
2417 stuffing into op->op_private */
2418 #define HINT_PRIVATE_MASK 0x000000ff
2419 #define HINT_INTEGER 0x00000001
2420 #define HINT_STRICT_REFS 0x00000002
2421 /* #define HINT_notused4 0x00000004 */
2422 #define HINT_UTF8 0x00000008
2423 #define HINT_BYTE 0x00000010
2424 /* Note: 20,40,80 used for NATIVE_HINTS */
2426 #define HINT_BLOCK_SCOPE 0x00000100
2427 #define HINT_STRICT_SUBS 0x00000200
2428 #define HINT_STRICT_VARS 0x00000400
2429 #define HINT_LOCALE 0x00000800
2431 #define HINT_NEW_INTEGER 0x00001000
2432 #define HINT_NEW_FLOAT 0x00002000
2433 #define HINT_NEW_BINARY 0x00004000
2434 #define HINT_NEW_STRING 0x00008000
2435 #define HINT_NEW_RE 0x00010000
2436 #define HINT_LOCALIZE_HH 0x00020000 /* %^H needs to be copied */
2438 #define HINT_RE_TAINT 0x00100000
2439 #define HINT_RE_EVAL 0x00200000
2441 #define HINT_FILETEST_ACCESS 0x00400000
2443 /* Various states of an input record separator SV (rs, nrs) */
2444 #define RsSNARF(sv) (! SvOK(sv))
2445 #define RsSIMPLE(sv) (SvOK(sv) && (! SvPOK(sv) || SvCUR(sv)))
2446 #define RsPARA(sv) (SvPOK(sv) && ! SvCUR(sv))
2447 #define RsRECORD(sv) (SvROK(sv) && (SvIV(SvRV(sv)) > 0))
2449 /* Enable variables which are pointers to functions */
2450 typedef regexp*(CPERLscope(*regcomp_t)) (pTHX_ char* exp, char* xend, PMOP* pm);
2451 typedef I32 (CPERLscope(*regexec_t)) (pTHX_ regexp* prog, char* stringarg,
2452 char* strend, char* strbeg, I32 minend,
2453 SV* screamer, void* data, U32 flags);
2454 typedef char* (CPERLscope(*re_intuit_start_t)) (pTHX_ regexp *prog, SV *sv,
2455 char *strpos, char *strend,
2457 struct re_scream_pos_data_s *d);
2458 typedef SV* (CPERLscope(*re_intuit_string_t)) (pTHX_ regexp *prog);
2459 typedef void (CPERLscope(*regfree_t)) (pTHX_ struct regexp* r);
2461 #ifdef USE_PURE_BISON
2462 int Perl_yylex(pTHX_ YYSTYPE *lvalp, int *lcharp);
2465 typedef void (*DESTRUCTORFUNC_NOCONTEXT_t) (void*);
2466 typedef void (*DESTRUCTORFUNC_t) (pTHXo_ void*);
2467 typedef void (*SVFUNC_t) (pTHXo_ SV*);
2468 typedef I32 (*SVCOMPARE_t) (pTHXo_ SV*, SV*);
2469 typedef void (*XSINIT_t) (pTHXo);
2470 typedef void (*ATEXIT_t) (pTHXo_ void*);
2471 typedef void (*XSUBADDR_t) (pTHXo_ CV *);
2473 /* Set up PERLVAR macros for populating structs */
2474 #define PERLVAR(var,type) type var;
2475 #define PERLVARA(var,n,type) type var[n];
2476 #define PERLVARI(var,type,init) type var;
2477 #define PERLVARIC(var,type,init) type var;
2479 /* Interpreter exitlist entry */
2480 typedef struct exitlistentry {
2481 void (*fn) (pTHXo_ void*);
2483 } PerlExitListEntry;
2485 #ifdef PERL_GLOBAL_STRUCT
2487 # include "perlvars.h"
2491 EXT struct perl_vars PL_Vars;
2492 EXT struct perl_vars *PL_VarsPtr INIT(&PL_Vars);
2493 # else /* PERL_CORE */
2494 # if !defined(__GNUC__) || !defined(WIN32)
2497 struct perl_vars *PL_VarsPtr;
2498 # define PL_Vars (*((PL_VarsPtr) \
2499 ? PL_VarsPtr : (PL_VarsPtr = Perl_GetVars(aTHX))))
2500 # endif /* PERL_CORE */
2501 #endif /* PERL_GLOBAL_STRUCT */
2503 #if defined(MULTIPLICITY) || defined(PERL_OBJECT)
2504 /* If we have multiple interpreters define a struct
2505 holding variables which must be per-interpreter
2506 If we don't have threads anything that would have
2507 be per-thread is per-interpreter.
2510 struct interpreter {
2511 # ifndef USE_THREADS
2512 # include "thrdvar.h"
2514 # include "intrpvar.h"
2516 * The following is a buffer where new variables must
2517 * be defined to maintain binary compatibility with PERL_OBJECT
2519 PERLVARA(object_compatibility,30, char)
2523 struct interpreter {
2526 #endif /* MULTIPLICITY || PERL_OBJECT */
2529 /* If we have threads define a struct with all the variables
2530 * that have to be per-thread
2534 struct perl_thread {
2535 #include "thrdvar.h"
2538 typedef struct perl_thread *Thread;
2541 typedef void *Thread;
2544 /* Done with PERLVAR macros for now ... */
2553 #ifndef PERL_CALLCONV
2554 # define PERL_CALLCONV
2557 #ifndef NEXT30_NO_ATTRIBUTE
2558 # ifndef HASATTRIBUTE /* disable GNU-cc attribute checking? */
2559 # ifdef __attribute__ /* Avoid possible redefinition errors */
2560 # undef __attribute__
2562 # define __attribute__(attr)
2567 # define PERL_DECL_PROT
2572 #define PERL_CKDEF(s) OP *s (pTHX_ OP *o);
2573 #define PERL_PPDEF(s) OP *s (pTHX);
2578 # undef PERL_DECL_PROT
2582 /* this has structure inits, so it cannot be included before here */
2583 # include "opcode.h"
2586 /* The following must follow proto.h as #defines mess up syntax */
2588 #if !defined(PERL_FOR_X2P)
2589 # include "embedvar.h"
2592 /* Now include all the 'global' variables
2593 * If we don't have threads or multiple interpreters
2594 * these include variables that would have been their struct-s
2597 #define PERLVAR(var,type) EXT type PL_##var;
2598 #define PERLVARA(var,n,type) EXT type PL_##var[n];
2599 #define PERLVARI(var,type,init) EXT type PL_##var INIT(init);
2600 #define PERLVARIC(var,type,init) EXTCONST type PL_##var INIT(init);
2602 #if !defined(MULTIPLICITY) && !defined(PERL_OBJECT)
2604 # include "intrpvar.h"
2605 # ifndef USE_THREADS
2606 # include "thrdvar.h"
2615 # include "INTERN.h"
2617 # include "EXTERN.h"
2620 /* this has structure inits, so it cannot be included before here */
2621 # include "opcode.h"
2627 #endif /* PERL_OBJECT */
2629 #ifndef PERL_GLOBAL_STRUCT
2632 # include "perlvars.h"
2646 EXT MGVTBL PL_vtbl_sv = {MEMBER_TO_FPTR(Perl_magic_get),
2647 MEMBER_TO_FPTR(Perl_magic_set),
2648 MEMBER_TO_FPTR(Perl_magic_len),
2650 EXT MGVTBL PL_vtbl_env = {0, MEMBER_TO_FPTR(Perl_magic_set_all_env),
2651 0, MEMBER_TO_FPTR(Perl_magic_clear_all_env),
2653 EXT MGVTBL PL_vtbl_envelem = {0, MEMBER_TO_FPTR(Perl_magic_setenv),
2654 0, MEMBER_TO_FPTR(Perl_magic_clearenv),
2656 EXT MGVTBL PL_vtbl_sig = {0, 0, 0, 0, 0};
2657 EXT MGVTBL PL_vtbl_sigelem = {MEMBER_TO_FPTR(Perl_magic_getsig),
2658 MEMBER_TO_FPTR(Perl_magic_setsig),
2659 0, MEMBER_TO_FPTR(Perl_magic_clearsig),
2661 EXT MGVTBL PL_vtbl_pack = {0, 0, MEMBER_TO_FPTR(Perl_magic_sizepack), MEMBER_TO_FPTR(Perl_magic_wipepack),
2663 EXT MGVTBL PL_vtbl_packelem = {MEMBER_TO_FPTR(Perl_magic_getpack),
2664 MEMBER_TO_FPTR(Perl_magic_setpack),
2665 0, MEMBER_TO_FPTR(Perl_magic_clearpack),
2667 EXT MGVTBL PL_vtbl_dbline = {0, MEMBER_TO_FPTR(Perl_magic_setdbline),
2669 EXT MGVTBL PL_vtbl_isa = {0, MEMBER_TO_FPTR(Perl_magic_setisa),
2670 0, MEMBER_TO_FPTR(Perl_magic_setisa),
2672 EXT MGVTBL PL_vtbl_isaelem = {0, MEMBER_TO_FPTR(Perl_magic_setisa),
2674 EXT MGVTBL PL_vtbl_arylen = {MEMBER_TO_FPTR(Perl_magic_getarylen),
2675 MEMBER_TO_FPTR(Perl_magic_setarylen),
2677 EXT MGVTBL PL_vtbl_glob = {MEMBER_TO_FPTR(Perl_magic_getglob),
2678 MEMBER_TO_FPTR(Perl_magic_setglob),
2680 EXT MGVTBL PL_vtbl_mglob = {0, MEMBER_TO_FPTR(Perl_magic_setmglob),
2682 EXT MGVTBL PL_vtbl_nkeys = {MEMBER_TO_FPTR(Perl_magic_getnkeys),
2683 MEMBER_TO_FPTR(Perl_magic_setnkeys),
2685 EXT MGVTBL PL_vtbl_taint = {MEMBER_TO_FPTR(Perl_magic_gettaint),MEMBER_TO_FPTR(Perl_magic_settaint),
2687 EXT MGVTBL PL_vtbl_substr = {MEMBER_TO_FPTR(Perl_magic_getsubstr), MEMBER_TO_FPTR(Perl_magic_setsubstr),
2689 EXT MGVTBL PL_vtbl_vec = {MEMBER_TO_FPTR(Perl_magic_getvec),
2690 MEMBER_TO_FPTR(Perl_magic_setvec),
2692 EXT MGVTBL PL_vtbl_pos = {MEMBER_TO_FPTR(Perl_magic_getpos),
2693 MEMBER_TO_FPTR(Perl_magic_setpos),
2695 EXT MGVTBL PL_vtbl_bm = {0, MEMBER_TO_FPTR(Perl_magic_setbm),
2697 EXT MGVTBL PL_vtbl_fm = {0, MEMBER_TO_FPTR(Perl_magic_setfm),
2699 EXT MGVTBL PL_vtbl_uvar = {MEMBER_TO_FPTR(Perl_magic_getuvar),
2700 MEMBER_TO_FPTR(Perl_magic_setuvar),
2703 EXT MGVTBL PL_vtbl_mutex = {0, 0, 0, 0, MEMBER_TO_FPTR(Perl_magic_mutexfree)};
2704 #endif /* USE_THREADS */
2705 EXT MGVTBL PL_vtbl_defelem = {MEMBER_TO_FPTR(Perl_magic_getdefelem),MEMBER_TO_FPTR(Perl_magic_setdefelem),
2708 EXT MGVTBL PL_vtbl_regexp = {0,0,0,0, MEMBER_TO_FPTR(Perl_magic_freeregexp)};
2709 EXT MGVTBL PL_vtbl_regdata = {0, 0, MEMBER_TO_FPTR(Perl_magic_regdata_cnt), 0, 0};
2710 EXT MGVTBL PL_vtbl_regdatum = {MEMBER_TO_FPTR(Perl_magic_regdatum_get), 0, 0, 0, 0};
2712 #ifdef USE_LOCALE_COLLATE
2713 EXT MGVTBL PL_vtbl_collxfrm = {0,
2714 MEMBER_TO_FPTR(Perl_magic_setcollxfrm),
2718 EXT MGVTBL PL_vtbl_amagic = {0, MEMBER_TO_FPTR(Perl_magic_setamagic),
2719 0, 0, MEMBER_TO_FPTR(Perl_magic_setamagic)};
2720 EXT MGVTBL PL_vtbl_amagicelem = {0, MEMBER_TO_FPTR(Perl_magic_setamagic),
2721 0, 0, MEMBER_TO_FPTR(Perl_magic_setamagic)};
2723 EXT MGVTBL PL_vtbl_backref = {0, 0,
2724 0, 0, MEMBER_TO_FPTR(Perl_magic_killbackrefs)};
2728 EXT MGVTBL PL_vtbl_sv;
2729 EXT MGVTBL PL_vtbl_env;
2730 EXT MGVTBL PL_vtbl_envelem;
2731 EXT MGVTBL PL_vtbl_sig;
2732 EXT MGVTBL PL_vtbl_sigelem;
2733 EXT MGVTBL PL_vtbl_pack;
2734 EXT MGVTBL PL_vtbl_packelem;
2735 EXT MGVTBL PL_vtbl_dbline;
2736 EXT MGVTBL PL_vtbl_isa;
2737 EXT MGVTBL PL_vtbl_isaelem;
2738 EXT MGVTBL PL_vtbl_arylen;
2739 EXT MGVTBL PL_vtbl_glob;
2740 EXT MGVTBL PL_vtbl_mglob;
2741 EXT MGVTBL PL_vtbl_nkeys;
2742 EXT MGVTBL PL_vtbl_taint;
2743 EXT MGVTBL PL_vtbl_substr;
2744 EXT MGVTBL PL_vtbl_vec;
2745 EXT MGVTBL PL_vtbl_pos;
2746 EXT MGVTBL PL_vtbl_bm;
2747 EXT MGVTBL PL_vtbl_fm;
2748 EXT MGVTBL PL_vtbl_uvar;
2751 EXT MGVTBL PL_vtbl_mutex;
2752 #endif /* USE_THREADS */
2754 EXT MGVTBL PL_vtbl_defelem;
2755 EXT MGVTBL PL_vtbl_regexp;
2756 EXT MGVTBL PL_vtbl_regdata;
2757 EXT MGVTBL PL_vtbl_regdatum;
2759 #ifdef USE_LOCALE_COLLATE
2760 EXT MGVTBL PL_vtbl_collxfrm;
2763 EXT MGVTBL PL_vtbl_amagic;
2764 EXT MGVTBL PL_vtbl_amagicelem;
2766 EXT MGVTBL PL_vtbl_backref;
2768 #endif /* !DOINIT */
2771 fallback_amg, abs_amg,
2772 bool__amg, nomethod_amg,
2773 string_amg, numer_amg,
2774 add_amg, add_ass_amg,
2775 subtr_amg, subtr_ass_amg,
2776 mult_amg, mult_ass_amg,
2777 div_amg, div_ass_amg,
2778 modulo_amg, modulo_ass_amg,
2779 pow_amg, pow_ass_amg,
2780 lshift_amg, lshift_ass_amg,
2781 rshift_amg, rshift_ass_amg,
2782 band_amg, band_ass_amg,
2783 bor_amg, bor_ass_amg,
2784 bxor_amg, bxor_ass_amg,
2797 repeat_amg, repeat_ass_amg,
2798 concat_amg, concat_ass_amg,
2800 to_sv_amg, to_av_amg,
2801 to_hv_amg, to_gv_amg,
2802 to_cv_amg, iter_amg,
2804 /* Do not leave a trailing comma here. C9X allows it, C89 doesn't. */
2807 #define NofAMmeth max_amg_code
2810 EXTCONST char * PL_AMG_names[NofAMmeth] = {
2811 "fallback", "abs", /* "fallback" should be the first. */
2845 EXTCONST char * PL_AMG_names[NofAMmeth];
2846 #endif /* def INITAMAGIC */
2854 CV* table[NofAMmeth];
2857 struct am_table_short {
2862 typedef struct am_table AMT;
2863 typedef struct am_table_short AMTS;
2865 #define AMGfallNEVER 1
2867 #define AMGfallYES 3
2869 #define AMTf_AMAGIC 1
2870 #define AMT_AMAGIC(amt) ((amt)->flags & AMTf_AMAGIC)
2871 #define AMT_AMAGIC_on(amt) ((amt)->flags |= AMTf_AMAGIC)
2872 #define AMT_AMAGIC_off(amt) ((amt)->flags &= ~AMTf_AMAGIC)
2876 * some compilers like to redefine cos et alia as faster
2877 * (and less accurate?) versions called F_cos et cetera (Quidquid
2878 * latine dictum sit, altum viditur.) This trick collides with
2879 * the Perl overloading (amg). The following #defines fool both.
2884 # define F_atan2_amg atan2_amg
2887 # define F_cos_amg cos_amg
2890 # define F_exp_amg exp_amg
2893 # define F_log_amg log_amg
2896 # define F_pow_amg pow_amg
2899 # define F_sin_amg sin_amg
2902 # define F_sqrt_amg sqrt_amg
2904 #endif /* _FASTMATH */
2906 #define PERLDB_ALL 0x3f /* No _NONAME, _GOTO */
2907 #define PERLDBf_SUB 0x01 /* Debug sub enter/exit. */
2908 #define PERLDBf_LINE 0x02 /* Keep line #. */
2909 #define PERLDBf_NOOPT 0x04 /* Switch off optimizations. */
2910 #define PERLDBf_INTER 0x08 /* Preserve more data for
2911 later inspections. */
2912 #define PERLDBf_SUBLINE 0x10 /* Keep subr source lines. */
2913 #define PERLDBf_SINGLE 0x20 /* Start with single-step on. */
2914 #define PERLDBf_NONAME 0x40 /* For _SUB: no name of the subr. */
2915 #define PERLDBf_GOTO 0x80 /* Report goto: call DB::goto. */
2917 #define PERLDB_SUB (PL_perldb && (PL_perldb & PERLDBf_SUB))
2918 #define PERLDB_LINE (PL_perldb && (PL_perldb & PERLDBf_LINE))
2919 #define PERLDB_NOOPT (PL_perldb && (PL_perldb & PERLDBf_NOOPT))
2920 #define PERLDB_INTER (PL_perldb && (PL_perldb & PERLDBf_INTER))
2921 #define PERLDB_SUBLINE (PL_perldb && (PL_perldb & PERLDBf_SUBLINE))
2922 #define PERLDB_SINGLE (PL_perldb && (PL_perldb & PERLDBf_SINGLE))
2923 #define PERLDB_SUB_NN (PL_perldb && (PL_perldb & (PERLDBf_NONAME)))
2924 #define PERLDB_GOTO (PL_perldb && (PL_perldb & PERLDBf_GOTO))
2927 #ifdef USE_LOCALE_NUMERIC
2929 #define SET_NUMERIC_STANDARD() \
2931 if (! PL_numeric_standard) \
2932 set_numeric_standard(); \
2935 #define SET_NUMERIC_LOCAL() \
2937 if (! PL_numeric_local) \
2938 set_numeric_local(); \
2941 #define IS_NUMERIC_RADIX(c) \
2942 ((PL_hints & HINT_LOCALE) && \
2943 PL_numeric_radix && (c) == PL_numeric_radix)
2945 #define RESTORE_NUMERIC_LOCAL() if ((PL_hints & HINT_LOCALE) && PL_numeric_standard) SET_NUMERIC_LOCAL()
2946 #define RESTORE_NUMERIC_STANDARD() if ((PL_hints & HINT_LOCALE) && PL_numeric_local) SET_NUMERIC_STANDARD()
2947 #define Atof my_atof
2949 #else /* !USE_LOCALE_NUMERIC */
2951 #define SET_NUMERIC_STANDARD() /**/
2952 #define SET_NUMERIC_LOCAL() /**/
2953 #define IS_NUMERIC_RADIX(c) (0)
2954 #define RESTORE_NUMERIC_LOCAL() /**/
2955 #define RESTORE_NUMERIC_STANDARD() /**/
2956 #define Atof Perl_atof
2958 #endif /* !USE_LOCALE_NUMERIC */
2960 #if defined(USE_LONG_LONG) && defined(HAS_LONG_LONG) && defined(HAS_ATOLL)
2966 #if defined(USE_LONG_LONG) && defined(HAS_LONG_LONG) && defined(HAS_STRTOULL)
2967 #define Strtoul strtoull
2969 #define Strtoul strtoul
2972 #if !defined(PERLIO_IS_STDIO) && defined(HASATTRIBUTE)
2974 * Now we have __attribute__ out of the way
2978 #define printf PerlIO_stdoutf
2981 #ifndef PERL_SCRIPT_MODE
2982 #define PERL_SCRIPT_MODE "r"
2986 * Some operating systems are stingy with stack allocation,
2987 * so perl may have to guard against stack overflow.
2989 #ifndef PERL_STACK_OVERFLOW_CHECK
2990 #define PERL_STACK_OVERFLOW_CHECK() NOOP
2994 * Some nonpreemptive operating systems find it convenient to
2995 * check for asynchronous conditions after each op execution.
2996 * Keep this check simple, or it may slow down execution
2999 #ifndef PERL_ASYNC_CHECK
3000 #define PERL_ASYNC_CHECK() NOOP
3004 * On some operating systems, a memory allocation may succeed,
3005 * but put the process too close to the system's comfort limit.
3006 * In this case, PERL_ALLOC_CHECK frees the pointer and sets
3009 #ifndef PERL_ALLOC_CHECK
3010 #define PERL_ALLOC_CHECK(p) NOOP
3014 * nice_chunk and nice_chunk size need to be set
3015 * and queried under the protection of sv_mutex
3017 #define offer_nice_chunk(chunk, chunk_size) do { \
3019 if (!PL_nice_chunk) { \
3020 PL_nice_chunk = (char*)(chunk); \
3021 PL_nice_chunk_size = (chunk_size); \
3030 # include <sys/ipc.h>
3031 # include <sys/sem.h>
3032 # ifndef HAS_UNION_SEMUN /* Provide the union semun. */
3035 struct semid_ds *buf;
3036 unsigned short *array;
3039 # ifdef USE_SEMCTL_SEMUN
3040 # ifdef IRIX32_SEMUN_BROKEN_BY_GCC
3041 union gccbug_semun {
3043 struct semid_ds *buf;
3044 unsigned short *array;
3047 # define semun gccbug_semun
3049 # define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun)
3051 # ifdef USE_SEMCTL_SEMID_DS
3052 # define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buf)
3059 #ifdef I_SYS_STATVFS
3060 # include <sys/statvfs.h> /* for f?statvfs() */
3063 # include <sys/mount.h> /* for *BSD f?statfs() */
3066 # include <mntent.h> /* for getmntent() */
3069 # include <sys/statfs.h> /* for some statfs() */
3073 # define sv IRIX_sv /* kludge: IRIX has an sv of its own */
3075 # include <sys/vfs.h> /* for some statfs() */
3081 # include <ustat.h> /* for ustat() */
3084 #if !defined(PERL_MOUNT_NOSUID) && defined(MOUNT_NOSUID)
3085 # define PERL_MOUNT_NOSUID MOUNT_NOSUID
3087 #if !defined(PERL_MOUNT_NOSUID) && defined(MNT_NOSUID)
3088 # define PERL_MOUNT_NOSUID MNT_NOSUID
3090 #if !defined(PERL_MOUNT_NOSUID) && defined(MS_NOSUID)
3091 # define PERL_MOUNT_NOSUID MS_NOSUID
3093 #if !defined(PERL_MOUNT_NOSUID) && defined(M_NOSUID)
3094 # define PERL_MOUNT_NOSUID M_NOSUID
3097 #endif /* IAMSUID */
3099 /* and finally... */
3100 #define PERL_PATCHLEVEL_H_IMPLICIT
3101 #include "patchlevel.h"
3102 #undef PERL_PATCHLEVEL_H_IMPLICIT
3104 #endif /* Include guard */