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 #if defined(USE_ITHREADS) && defined(USE_5005THREADS)
27 # include "error: USE_ITHREADS and USE_5005THREADS are incompatible"
30 /* XXX This next guard can disappear if the sources are revised
31 to use USE_5005THREADS throughout. -- A.D 1/6/2000
33 #if defined(USE_ITHREADS) && defined(USE_THREADS)
34 # include "error: USE_ITHREADS and USE_THREADS are incompatible"
37 /* See L<perlguts/"The Perl API"> for detailed notes on
38 * PERL_IMPLICIT_CONTEXT and PERL_IMPLICIT_SYS */
41 # if !defined(MULTIPLICITY) && !defined(PERL_OBJECT)
47 # ifndef PERL_IMPLICIT_CONTEXT
48 # define PERL_IMPLICIT_CONTEXT
52 #if defined(MULTIPLICITY)
53 # ifndef PERL_IMPLICIT_CONTEXT
54 # define PERL_IMPLICIT_CONTEXT
63 # ifndef PERL_IMPLICIT_CONTEXT
64 # define PERL_IMPLICIT_CONTEXT
66 # ifndef PERL_IMPLICIT_SYS
67 # define PERL_IMPLICIT_SYS
72 # ifndef PERL_IMPLICIT_CONTEXT
73 # define PERL_IMPLICIT_CONTEXT
75 # ifndef PERL_IMPLICIT_SYS
76 # define PERL_IMPLICIT_SYS
82 /* PERL_OBJECT explained - DickH and DougL @ ActiveState.com
84 Defining PERL_OBJECT turns on creation of a C++ object that
85 contains all writable core perl global variables and functions.
86 Stated another way, all necessary global variables and functions
87 are members of a big C++ object. This object's class is CPerlObj.
88 This allows a Perl Host to have multiple, independent perl
89 interpreters in the same process space. This is very important on
90 Win32 systems as the overhead of process creation is quite high --
91 this could be even higher than the script compile and execute time
94 The perl executable implementation on Win32 is composed of perl.exe
95 (the Perl Host) and perlX.dll. (the Perl Core). This allows the
96 same Perl Core to easily be embedded in other applications that use
105 +-----------+ +-----------+
106 | Perl Core |<->| Extension |
107 +-----------+ +-----------+ ...
109 Defining PERL_OBJECT has the following effects:
112 1. CPerlObj is defined (this is the PERL_OBJECT)
113 2. all static functions that needed to access either global
114 variables or functions needed are made member functions
115 3. all writable static variables are made member variables
116 4. all global variables and functions are defined as:
117 #define var CPerlObj::PL_var
118 #define func CPerlObj::Perl_func
119 * these are in embed.h
120 This necessitated renaming some local variables and functions that
121 had the same name as a global variable or function. This was
122 probably a _good_ thing anyway.
126 1. Access to global variables and perl functions is through a
127 pointer to the PERL_OBJECT. This pointer type is CPerlObj*. This is
128 made transparent to extension developers by the following macros:
129 #define var pPerl->PL_var
130 #define func pPerl->Perl_func
131 * these are done in objXSUB.h
132 This requires that the extension be compiled as C++, which means
133 that the code must be ANSI C and not K&R C. For K&R extensions,
134 please see the C API notes located in Win32/GenCAPI.pl. This script
135 creates a perlCAPI.lib that provides a K & R compatible C interface
137 2. Local variables and functions cannot have the same name as perl's
138 variables or functions since the macros will redefine these. Look for
139 this if you get some strange error message and it does not look like
140 the code that you had written. This often happens with variables that
141 are local to a function.
144 1. The perl host is linked with perlX.lib to get perl_alloc. This
145 function will return a pointer to CPerlObj (the PERL_OBJECT). It
146 takes pointers to the various PerlXXX_YYY interfaces (see iperlsys.h
147 for more information on this).
148 2. The perl host calls the same functions as normally would be
149 called in setting up and running a perl script, except that the
150 functions are now member functions of the PERL_OBJECT.
158 #define CPERLscope(x) CPerlObj::x
159 #define CALL_FPTR(fptr) (aTHXo->*fptr)
161 #define pTHXo CPerlObj *pPerl
162 #define pTHXo_ pTHXo,
165 #define PERL_OBJECT_THIS aTHXo
166 #define PERL_OBJECT_THIS_ aTHXo_
167 #define dTHXoa(a) pTHXo = a
168 #define dTHXo dTHXoa(PERL_GET_THX)
175 #else /* !PERL_OBJECT */
177 #ifdef PERL_IMPLICIT_CONTEXT
180 # define pTHX register struct perl_thread *thr
184 # ifndef MULTIPLICITY
185 # define MULTIPLICITY
187 # define pTHX register PerlInterpreter *my_perl
188 # define aTHX my_perl
190 # define dTHXa(a) pTHX = a
191 # define dTHX dTHXa(PERL_GET_THX)
200 #define STATIC static
201 #define CPERLscope(x) x
202 #define CPERLarg void
205 #define PERL_OBJECT_THIS
206 #define _PERL_OBJECT_THIS
207 #define PERL_OBJECT_THIS_
208 #define CALL_FPTR(fptr) (*fptr)
210 #endif /* PERL_OBJECT */
212 #define CALLRUNOPS CALL_FPTR(PL_runops)
213 #define CALLREGCOMP CALL_FPTR(PL_regcompp)
214 #define CALLREGEXEC CALL_FPTR(PL_regexecp)
215 #define CALLREG_INTUIT_START CALL_FPTR(PL_regint_start)
216 #define CALLREG_INTUIT_STRING CALL_FPTR(PL_regint_string)
217 #define CALLREGFREE CALL_FPTR(PL_regfree)
218 #define CALLPROTECT CALL_FPTR(PL_protect)
221 #define dNOOP extern int Perl___notused
228 # define dTHXa(a) dNOOP
238 # define pTHXo_ pTHX_
240 # define aTHXo_ aTHX_
245 # define pTHXx register PerlInterpreter *my_perl
246 # define pTHXx_ pTHXx,
247 # define aTHXx my_perl
248 # define aTHXx_ aTHXx,
252 #undef START_EXTERN_C
256 # define START_EXTERN_C extern "C" {
257 # define END_EXTERN_C }
258 # define EXTERN_C extern "C"
260 # define START_EXTERN_C
261 # define END_EXTERN_C
262 # define EXTERN_C extern
265 #ifdef OP_IN_REGISTER
267 # define stringify_immed(s) #s
268 # define stringify(s) stringify_immed(s)
269 register struct op *Perl_op asm(stringify(OP_IN_REGISTER));
274 * STMT_START { statements; } STMT_END;
275 * can be used as a single statement, as in
276 * if (x) STMT_START { ... } STMT_END; else ...
278 * Trying to select a version that gives no warnings...
280 #if !(defined(STMT_START) && defined(STMT_END))
281 # if defined(__GNUC__) && !defined(__STRICT_ANSI__) && !defined(__cplusplus)
282 # define STMT_START (void)( /* gcc supports ``({ STATEMENTS; })'' */
285 /* Now which other defined()s do we need here ??? */
286 # if (VOIDFLAGS) && (defined(sun) || defined(__sun__))
287 # define STMT_START if (1)
288 # define STMT_END else (void)0
290 # define STMT_START do
291 # define STMT_END while (0)
296 #define WITH_THX(s) STMT_START { dTHX; s; } STMT_END
297 #define WITH_THR(s) STMT_START { dTHR; s; } STMT_END
300 * SOFT_CAST can be used for args to prototyped functions to retain some
301 * type checking; it only casts if the compiler does not know prototypes.
303 #if defined(CAN_PROTOTYPE) && defined(DEBUGGING_COMPILE)
304 #define SOFT_CAST(type)
306 #define SOFT_CAST(type) (type)
309 #ifndef BYTEORDER /* Should never happen -- byteorder is in config.h */
310 # define BYTEORDER 0x1234
313 /* Overall memory policy? */
318 #if 'A' == 65 && 'I' == 73 && 'J' == 74 && 'Z' == 90
325 * The following contortions are brought to you on behalf of all the
326 * standards, semi-standards, de facto standards, not-so-de-facto standards
327 * of the world, as well as all the other botches anyone ever thought of.
328 * The basic theory is that if we work hard enough here, the rest of the
329 * code can be a lot prettier. Well, so much for theory. Sorry, Henry...
332 /* define this once if either system, instead of cluttering up the src */
333 #if defined(MSDOS) || defined(atarist) || defined(WIN32)
337 #if defined(__STDC__) || defined(vax11c) || defined(_AIX) || defined(__stdc__) || defined(__cplusplus) || defined( EPOC)
338 # define STANDARD_C 1
341 #if defined(__cplusplus) || defined(WIN32) || defined(__sgi) || defined(OS2) || defined(__DGUX) || defined( EPOC) || defined(__QNX__)
342 # define DONT_DECLARE_STD 1
345 #if defined(HASVOLATILE) || defined(STANDARD_C)
347 # define VOL // to temporarily suppress warnings
349 # define VOL volatile
355 #define TAINT (PL_tainted = TRUE)
356 #define TAINT_NOT (PL_tainted = FALSE)
357 #define TAINT_IF(c) if (c) { PL_tainted = TRUE; }
358 #define TAINT_ENV() if (PL_tainting) { taint_env(); }
359 #define TAINT_PROPER(s) if (PL_tainting) { taint_proper(Nullch, s); }
361 /* XXX All process group stuff is handled in pp_sys.c. Should these
362 defines move there? If so, I could simplify this a lot. --AD 9/96.
364 /* Process group stuff changed from traditional BSD to POSIX.
365 perlfunc.pod documents the traditional BSD-style syntax, so we'll
366 try to preserve that, if possible.
369 # define BSD_SETPGRP(pid, pgrp) setpgid((pid), (pgrp))
371 # if defined(HAS_SETPGRP) && defined(USE_BSD_SETPGRP)
372 # define BSD_SETPGRP(pid, pgrp) setpgrp((pid), (pgrp))
374 # ifdef HAS_SETPGRP2 /* DG/UX */
375 # define BSD_SETPGRP(pid, pgrp) setpgrp2((pid), (pgrp))
379 #if defined(BSD_SETPGRP) && !defined(HAS_SETPGRP)
380 # define HAS_SETPGRP /* Well, effectively it does . . . */
383 /* getpgid isn't POSIX, but at least Solaris and Linux have it, and it makes
384 our life easier :-) so we'll try it.
387 # define BSD_GETPGRP(pid) getpgid((pid))
389 # if defined(HAS_GETPGRP) && defined(USE_BSD_GETPGRP)
390 # define BSD_GETPGRP(pid) getpgrp((pid))
392 # ifdef HAS_GETPGRP2 /* DG/UX */
393 # define BSD_GETPGRP(pid) getpgrp2((pid))
397 #if defined(BSD_GETPGRP) && !defined(HAS_GETPGRP)
398 # define HAS_GETPGRP /* Well, effectively it does . . . */
401 /* These are not exact synonyms, since setpgrp() and getpgrp() may
402 have different behaviors, but perl.h used to define USE_BSDPGRP
403 (prior to 5.003_05) so some extension might depend on it.
405 #if defined(USE_BSD_SETPGRP) || defined(USE_BSD_GETPGRP)
411 /* HP-UX 10.X CMA (Common Multithreaded Architecure) insists that
412 pthread.h must be included before all other header files.
414 #if (defined(USE_THREADS) || defined(USE_ITHREADS)) \
415 && defined(PTHREAD_H_FIRST) && defined(I_PTHREAD)
416 # include <pthread.h>
419 #ifndef _TYPES_ /* If types.h defines this it's easy. */
420 # ifndef major /* Does everyone's types.h define this? */
421 # include <sys/types.h>
435 # include <varargs.h>
439 #ifdef USE_NEXT_CTYPE
441 #if NX_CURRENT_COMPILER_RELEASE >= 500
442 # include <bsd/ctypes.h>
444 # if NX_CURRENT_COMPILER_RELEASE >= 400
445 # include <objc/NXCType.h>
446 # else /* NX_CURRENT_COMPILER_RELEASE < 400 */
447 # include <appkit/NXCType.h>
448 # endif /* NX_CURRENT_COMPILER_RELEASE >= 400 */
449 #endif /* NX_CURRENT_COMPILER_RELEASE >= 500 */
451 #else /* !USE_NEXT_CTYPE */
453 #endif /* USE_NEXT_CTYPE */
455 #ifdef METHOD /* Defined by OSF/1 v3.0 by ctype.h */
463 #if !defined(NO_LOCALE) && defined(HAS_SETLOCALE)
465 # if !defined(NO_LOCALE_COLLATE) && defined(LC_COLLATE) \
466 && defined(HAS_STRXFRM)
467 # define USE_LOCALE_COLLATE
469 # if !defined(NO_LOCALE_CTYPE) && defined(LC_CTYPE)
470 # define USE_LOCALE_CTYPE
472 # if !defined(NO_LOCALE_NUMERIC) && defined(LC_NUMERIC)
473 # define USE_LOCALE_NUMERIC
475 #endif /* !NO_LOCALE && HAS_SETLOCALE */
480 # ifdef PARAM_NEEDS_TYPES
481 # include <sys/types.h>
483 # include <sys/param.h>
487 /* Use all the "standard" definitions? */
488 #if defined(STANDARD_C) && defined(I_STDLIB)
492 #if !defined(PERL_FOR_X2P) && !defined(WIN32)
496 #define MEM_SIZE Size_t
498 #if defined(STANDARD_C) && defined(I_STDDEF)
500 # define STRUCT_OFFSET(s,m) offsetof(s,m)
502 # define STRUCT_OFFSET(s,m) (Size_t)(&(((s *)0)->m))
505 #if defined(I_STRING) || defined(__cplusplus)
508 # include <strings.h>
511 /* This comes after <stdlib.h> so we don't try to change the standard
512 * library prototypes; we'll use our own in proto.h instead. */
515 # ifdef PERL_POLLUTE_MALLOC
516 # ifndef PERL_EXTMALLOC_DEF
517 # define Perl_malloc malloc
518 # define Perl_calloc calloc
519 # define Perl_realloc realloc
520 # define Perl_mfree free
523 # define EMBEDMYMALLOC /* for compatibility */
525 Malloc_t Perl_malloc (MEM_SIZE nbytes);
526 Malloc_t Perl_calloc (MEM_SIZE elements, MEM_SIZE size);
527 Malloc_t Perl_realloc (Malloc_t where, MEM_SIZE nbytes);
528 /* 'mfree' rather than 'free', since there is already a 'perl_free'
529 * that causes clashes with case-insensitive linkers */
530 Free_t Perl_mfree (Malloc_t where);
532 # define safemalloc Perl_malloc
533 # define safecalloc Perl_calloc
534 # define saferealloc Perl_realloc
535 # define safefree Perl_mfree
537 # define safemalloc safesysmalloc
538 # define safecalloc safesyscalloc
539 # define saferealloc safesysrealloc
540 # define safefree safesysfree
541 #endif /* MYMALLOC */
543 #if !defined(HAS_STRCHR) && defined(HAS_INDEX) && !defined(strchr)
545 #define strrchr rindex
553 # if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
555 extern char * memcpy (char*, char*, int);
561 # define memcpy(d,s,l) bcopy(s,d,l)
563 # define memcpy(d,s,l) my_bcopy(s,d,l)
566 #endif /* HAS_MEMCPY */
569 # if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
571 extern char *memset (char*, int, int);
575 # define memset(d,c,l) my_memset(d,c,l)
576 #endif /* HAS_MEMSET */
578 #if !defined(HAS_MEMMOVE) && !defined(memmove)
579 # if defined(HAS_BCOPY) && defined(HAS_SAFE_BCOPY)
580 # define memmove(d,s,l) bcopy(s,d,l)
582 # if defined(HAS_MEMCPY) && defined(HAS_SAFE_MEMCPY)
583 # define memmove(d,s,l) memcpy(d,s,l)
585 # define memmove(d,s,l) my_bcopy(s,d,l)
590 #if defined(mips) && defined(ultrix) && !defined(__STDC__)
594 #if defined(HAS_MEMCMP) && defined(HAS_SANE_MEMCMP)
595 # if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
597 extern int memcmp (char*, char*, int);
601 # pragma function(memcmp)
605 # define memcmp my_memcmp
607 #endif /* HAS_MEMCMP && HAS_SANE_MEMCMP */
611 # define memzero(d,l) memset(d,0,l)
614 # define memzero(d,l) bzero(d,l)
616 # define memzero(d,l) my_bzero(d,l)
623 # define memchr(s,c,n) ninstr((char*)(s), ((char*)(s)) + n, &(c), &(c) + 1)
629 # define bcmp(s1,s2,l) memcmp(s1,s2,l)
631 #endif /* !HAS_BCMP */
634 # include <netinet/in.h>
638 # include <arpa/inet.h>
641 #if defined(SF_APPEND) && defined(USE_SFIO) && defined(I_SFIO)
642 /* <sfio.h> defines SF_APPEND and <sys/stat.h> might define SF_APPEND
643 * (the neo-BSD seem to do this). */
648 # include <sys/stat.h>
651 /* The stat macros for Amdahl UTS, Unisoft System V/88 (and derivatives
652 like UTekV) are broken, sometimes giving false positives. Undefine
653 them here and let the code below set them to proper values.
655 The ghs macro stands for GreenHills Software C-1.8.5 which
656 is the C compiler for sysV88 and the various derivatives.
657 This header file bug is corrected in gcc-2.5.8 and later versions.
658 --Kaveh Ghazi (ghazi@noc.rutgers.edu) 10/3/94. */
660 #if defined(uts) || (defined(m88k) && defined(ghs))
674 # ifdef I_SYS_TIME_KERNEL
677 # include <sys/time.h>
678 # ifdef I_SYS_TIME_KERNEL
683 #if defined(HAS_TIMES) && defined(I_SYS_TIMES)
684 # include <sys/times.h>
687 #if defined(HAS_STRERROR) && (!defined(HAS_MKDIR) || !defined(HAS_RMDIR))
694 # include <net/errno.h>
699 # define SETERRNO(errcode,vmserrcode) \
701 set_errno(errcode); \
702 set_vaxc_errno(vmserrcode); \
705 # define SETERRNO(errcode,vmserrcode) (errno = (errcode))
709 # define ERRSV (thr->errsv)
710 # define DEFSV THREADSV(0)
711 # define SAVE_DEFSV save_threadsv(0)
713 # define ERRSV GvSV(PL_errgv)
714 # define DEFSV GvSV(PL_defgv)
715 # define SAVE_DEFSV SAVESPTR(GvSV(PL_defgv))
716 #endif /* USE_THREADS */
718 #define ERRHV GvHV(PL_errgv) /* XXX unused, here for compatibility */
721 extern int errno; /* ANSI allows errno to be an lvalue expr.
722 * For example in multithreaded environments
723 * something like this might happen:
724 * extern int *_errno(void);
725 * #define errno (*_errno()) */
730 char *strerror (int,...);
732 #ifndef DONT_DECLARE_STD
733 char *strerror (int);
737 # define Strerror strerror
740 # ifdef HAS_SYS_ERRLIST
742 extern char *sys_errlist[];
744 # define Strerror(e) \
745 ((e) < 0 || (e) >= sys_nerr ? "(unknown)" : sys_errlist[e])
752 # include <sys/ioctl.h>
756 #if defined(mc300) || defined(mc500) || defined(mc700) || defined(mc6000)
757 # ifdef HAS_SOCKETPAIR
758 # undef HAS_SOCKETPAIR
773 /* Configure already sets Direntry_t */
774 #if defined(I_DIRENT)
776 /* NeXT needs dirent + sys/dir.h */
777 # if defined(I_SYS_DIR) && (defined(NeXT) || defined(__NeXT__))
778 # include <sys/dir.h>
782 # include <sys/ndir.h>
786 # include <ndir.h> /* may be wrong in the future */
788 # include <sys/dir.h>
795 /* work around botch in SunOS 4.0.1 and 4.0.2 */
797 # define fputs(sv,fp) fprintf(fp,"%s",sv)
802 * The following gobbledygook brought to you on behalf of __STDC__.
803 * (I could just use #ifndef __STDC__, but this is more bulletproof
804 * in the face of half-implementations.)
809 # define S_IFMT _S_IFMT
811 # define S_IFMT 0170000
816 # define S_ISDIR(m) ((m & S_IFMT) == S_IFDIR)
820 # define S_ISCHR(m) ((m & S_IFMT) == S_IFCHR)
825 # define S_ISBLK(m) ((m & S_IFMT) == S_IFBLK)
827 # define S_ISBLK(m) (0)
832 # define S_ISREG(m) ((m & S_IFMT) == S_IFREG)
837 # define S_ISFIFO(m) ((m & S_IFMT) == S_IFIFO)
839 # define S_ISFIFO(m) (0)
845 # define S_ISLNK(m) _S_ISLNK(m)
848 # define S_ISLNK(m) ((m & S_IFMT) == _S_IFLNK)
851 # define S_ISLNK(m) ((m & S_IFMT) == S_IFLNK)
853 # define S_ISLNK(m) (0)
861 # define S_ISSOCK(m) _S_ISSOCK(m)
864 # define S_ISSOCK(m) ((m & S_IFMT) == _S_IFSOCK)
867 # define S_ISSOCK(m) ((m & S_IFMT) == S_IFSOCK)
869 # define S_ISSOCK(m) (0)
877 # define S_IRUSR S_IREAD
878 # define S_IWUSR S_IWRITE
879 # define S_IXUSR S_IEXEC
881 # define S_IRUSR 0400
882 # define S_IWUSR 0200
883 # define S_IXUSR 0100
885 # define S_IRGRP (S_IRUSR>>3)
886 # define S_IWGRP (S_IWUSR>>3)
887 # define S_IXGRP (S_IXUSR>>3)
888 # define S_IROTH (S_IRUSR>>6)
889 # define S_IWOTH (S_IWUSR>>6)
890 # define S_IXOTH (S_IXUSR>>6)
894 # define S_ISUID 04000
898 # define S_ISGID 02000
905 #if defined(cray) || defined(gould) || defined(i860) || defined(pyr)
906 # define SLOPPYDIVIDE
914 The IV type is supposed to be long enough to hold any integral
916 --Andy Dougherty August 1996
922 #if defined(USE_64_BITS) && defined(HAS_QUAD)
923 # if QUADKIND == QUAD_IS_INT64_T && defined(INT64_MAX)
924 # define IV_MAX INT64_MAX
925 # define IV_MIN INT64_MIN
926 # define UV_MAX UINT64_MAX
928 # define UINT64_MIN 0
930 # define UV_MIN UINT64_MIN
932 # define IV_MAX PERL_QUAD_MAX
933 # define IV_MIN PERL_QUAD_MIN
934 # define UV_MAX PERL_UQUAD_MAX
935 # define UV_MIN PERL_UQUAD_MIN
940 # if defined(INT32_MAX) && IVSIZE == 4
941 # define IV_MAX INT32_MAX
942 # define IV_MIN INT32_MIN
943 # ifndef UINT32_MAX_BROKEN /* e.g. HP-UX with gcc messes this up */
944 # define UV_MAX UINT32_MAX
946 # define UV_MAX 4294967295U
949 # define UINT32_MIN 0
951 # define UV_MIN UINT32_MIN
953 # define IV_MAX PERL_LONG_MAX
954 # define IV_MIN PERL_LONG_MIN
955 # define UV_MAX PERL_ULONG_MAX
956 # define UV_MIN PERL_ULONG_MIN
971 #define IV_DIG (BIT_DIGITS(IVSIZE * 8))
972 #define UV_DIG (BIT_DIGITS(UVSIZE * 8))
975 * The macros INT2PTR and NUM2PTR are (despite their names)
976 * bi-directional: they will convert int/float to or from pointers.
977 * However the conversion to int/float are named explicitly:
978 * PTR2IV, PTR2UV, PTR2NV.
980 * For int conversions we do not need two casts if pointers are
981 * the same size as IV and UV. Otherwise we need an explicit
982 * cast (PTRV) to avoid compiler warnings.
984 #if (IVSIZE == PTRSIZE) && (UVSIZE == PTRSIZE)
986 # define INT2PTR(any,d) (any)(d)
988 # if PTRSIZE == LONGSIZE
989 # define PTRV unsigned long
991 # define PTRV unsigned
993 # define INT2PTR(any,d) (any)(PTRV)(d)
995 #define NUM2PTR(any,d) (any)(PTRV)(d)
996 #define PTR2IV(p) INT2PTR(IV,p)
997 #define PTR2UV(p) INT2PTR(UV,p)
998 #define PTR2NV(p) NUM2PTR(NV,p)
1000 #ifdef USE_LONG_DOUBLE
1001 # if !(defined(HAS_LONG_DOUBLE) && (LONG_DOUBLESIZE > DOUBLESIZE))
1002 # undef USE_LONG_DOUBLE /* Ouch! */
1007 /* Use an overridden DBL_DIG */
1011 # define DBL_DIG OVR_DBL_DIG
1013 /* The following is all to get DBL_DIG, in order to pick a nice
1014 default value for printing floating point numbers in Gconvert.
1024 #define DBL_DIG 15 /* A guess that works lots of places */
1031 #define DBL_DIG 15 /* A guess that works lots of places */
1035 /* Use an overridden LDBL_DIG */
1039 # define LDBL_DIG OVR_LDBL_DIG
1041 /* The following is all to get LDBL_DIG, in order to pick a nice
1042 default value for printing floating point numbers in Gconvert.
1046 # include <limits.h>
1051 # ifndef HAS_LDBL_DIG
1052 # if LONG_DOUBLESIZE == 10
1053 # define LDBL_DIG 18 /* assume IEEE */
1055 # if LONG_DOUBLESIZE == 12
1056 # define LDBL_DIG 18 /* gcc? */
1058 # if LONG_DOUBLESIZE == 16
1059 # define LDBL_DIG 33 /* assume IEEE */
1061 # if LONG_DOUBLESIZE == DOUBLESIZE
1062 # define LDBL_DIG DBL_DIG /* bummer */
1072 #ifdef USE_LONG_DOUBLE
1073 # define NV_DIG LDBL_DIG
1075 # define Perl_modf modfl
1076 # define Perl_frexp frexpl
1077 # define Perl_cos cosl
1078 # define Perl_sin sinl
1079 # define Perl_sqrt sqrtl
1080 # define Perl_exp expl
1081 # define Perl_log logl
1082 # define Perl_atan2 atan2l
1083 # define Perl_pow powl
1084 # define Perl_floor floorl
1085 # define Perl_fmod fmodl
1088 # define NV_DIG DBL_DIG
1089 # define Perl_modf modf
1090 # define Perl_frexp frexp
1091 # define Perl_cos cos
1092 # define Perl_sin sin
1093 # define Perl_sqrt sqrt
1094 # define Perl_exp exp
1095 # define Perl_log log
1096 # define Perl_atan2 atan2
1097 # define Perl_pow pow
1098 # define Perl_floor floor
1099 # define Perl_fmod fmod
1102 #if !defined(Perl_atof) && defined(USE_LONG_DOUBLE) && defined(HAS_LONG_DOUBLE)
1103 # if !defined(Perl_atof) && defined(HAS_STRTOLD)
1104 # define Perl_atof(s) strtold(s, (char**)NULL)
1106 # if !defined(Perl_atof) && defined(HAS_ATOLF)
1107 # define Perl_atof atolf
1110 #if !defined(Perl_atof)
1111 # define Perl_atof atof /* we assume atof being available anywhere */
1114 /* Previously these definitions used hardcoded figures.
1115 * It is hoped these formula are more portable, although
1116 * no data one way or another is presently known to me.
1117 * The "PERL_" names are used because these calculated constants
1118 * do not meet the ANSI requirements for LONG_MAX, etc., which
1119 * need to be constants acceptable to #if - kja
1120 * define PERL_LONG_MAX 2147483647L
1121 * define PERL_LONG_MIN (-LONG_MAX - 1)
1122 * define PERL ULONG_MAX 4294967295L
1125 #ifdef I_LIMITS /* Needed for cast_xxx() functions below. */
1126 # include <limits.h>
1129 # include <values.h>
1134 * Try to figure out max and min values for the integral types. THE CORRECT
1135 * SOLUTION TO THIS MESS: ADAPT enquire.c FROM GCC INTO CONFIGURE. The
1136 * following hacks are used if neither limits.h or values.h provide them:
1137 * U<TYPE>_MAX: for types >= int: ~(unsigned TYPE)0
1138 * for types < int: (unsigned TYPE)~(unsigned)0
1139 * The argument to ~ must be unsigned so that later signed->unsigned
1140 * conversion can't modify the value's bit pattern (e.g. -0 -> +0),
1141 * and it must not be smaller than int because ~ does integral promotion.
1142 * <type>_MAX: (<type>) (U<type>_MAX >> 1)
1143 * <type>_MIN: -<type>_MAX - <is_twos_complement_architecture: (3 & -1) == 3>.
1144 * The latter is a hack which happens to work on some machines but
1145 * does *not* catch any random system, or things like integer types
1146 * with NaN if that is possible.
1148 * All of the types are explicitly cast to prevent accidental loss of
1149 * numeric range, and in the hope that they will be less likely to confuse
1150 * over-eager optimizers.
1154 #define PERL_UCHAR_MIN ((unsigned char)0)
1157 # define PERL_UCHAR_MAX ((unsigned char)UCHAR_MAX)
1160 # define PERL_UCHAR_MAX ((unsigned char)MAXUCHAR)
1162 # define PERL_UCHAR_MAX ((unsigned char)~(unsigned)0)
1167 * CHAR_MIN and CHAR_MAX are not included here, as the (char) type may be
1168 * ambiguous. It may be equivalent to (signed char) or (unsigned char)
1169 * depending on local options. Until Configure detects this (or at least
1170 * detects whether the "signed" keyword is available) the CHAR ranges
1171 * will not be included. UCHAR functions normally.
1175 #define PERL_USHORT_MIN ((unsigned short)0)
1178 # define PERL_USHORT_MAX ((unsigned short)USHORT_MAX)
1181 # define PERL_USHORT_MAX ((unsigned short)MAXUSHORT)
1184 # define PERL_USHORT_MAX ((unsigned short)USHRT_MAX)
1186 # define PERL_USHORT_MAX ((unsigned short)~(unsigned)0)
1192 # define PERL_SHORT_MAX ((short)SHORT_MAX)
1194 # ifdef MAXSHORT /* Often used in <values.h> */
1195 # define PERL_SHORT_MAX ((short)MAXSHORT)
1198 # define PERL_SHORT_MAX ((short)SHRT_MAX)
1200 # define PERL_SHORT_MAX ((short) (PERL_USHORT_MAX >> 1))
1206 # define PERL_SHORT_MIN ((short)SHORT_MIN)
1209 # define PERL_SHORT_MIN ((short)MINSHORT)
1212 # define PERL_SHORT_MIN ((short)SHRT_MIN)
1214 # define PERL_SHORT_MIN (-PERL_SHORT_MAX - ((3 & -1) == 3))
1220 # define PERL_UINT_MAX ((unsigned int)UINT_MAX)
1223 # define PERL_UINT_MAX ((unsigned int)MAXUINT)
1225 # define PERL_UINT_MAX (~(unsigned int)0)
1229 #define PERL_UINT_MIN ((unsigned int)0)
1232 # define PERL_INT_MAX ((int)INT_MAX)
1234 # ifdef MAXINT /* Often used in <values.h> */
1235 # define PERL_INT_MAX ((int)MAXINT)
1237 # define PERL_INT_MAX ((int)(PERL_UINT_MAX >> 1))
1242 # define PERL_INT_MIN ((int)INT_MIN)
1245 # define PERL_INT_MIN ((int)MININT)
1247 # define PERL_INT_MIN (-PERL_INT_MAX - ((3 & -1) == 3))
1252 # define PERL_ULONG_MAX ((unsigned long)ULONG_MAX)
1255 # define PERL_ULONG_MAX ((unsigned long)MAXULONG)
1257 # define PERL_ULONG_MAX (~(unsigned long)0)
1261 #define PERL_ULONG_MIN ((unsigned long)0L)
1264 # define PERL_LONG_MAX ((long)LONG_MAX)
1266 # ifdef MAXLONG /* Often used in <values.h> */
1267 # define PERL_LONG_MAX ((long)MAXLONG)
1269 # define PERL_LONG_MAX ((long) (PERL_ULONG_MAX >> 1))
1274 # define PERL_LONG_MIN ((long)LONG_MIN)
1277 # define PERL_LONG_MIN ((long)MINLONG)
1279 # define PERL_LONG_MIN (-PERL_LONG_MAX - ((3 & -1) == 3))
1286 # define PERL_UQUAD_MAX ((UV)UQUAD_MAX)
1288 # define PERL_UQUAD_MAX (~(UV)0)
1291 # define PERL_UQUAD_MIN ((UV)0)
1294 # define PERL_QUAD_MAX ((IV)QUAD_MAX)
1296 # define PERL_QUAD_MAX ((IV) (PERL_UQUAD_MAX >> 1))
1300 # define PERL_QUAD_MIN ((IV)QUAD_MIN)
1302 # define PERL_QUAD_MIN (-PERL_QUAD_MAX - ((3 & -1) == 3))
1307 typedef MEM_SIZE STRLEN;
1309 typedef struct op OP;
1310 typedef struct cop COP;
1311 typedef struct unop UNOP;
1312 typedef struct binop BINOP;
1313 typedef struct listop LISTOP;
1314 typedef struct logop LOGOP;
1315 typedef struct pmop PMOP;
1316 typedef struct svop SVOP;
1317 typedef struct padop PADOP;
1318 typedef struct pvop PVOP;
1319 typedef struct loop LOOP;
1321 typedef struct interpreter PerlInterpreter;
1322 typedef struct sv SV;
1323 typedef struct av AV;
1324 typedef struct hv HV;
1325 typedef struct cv CV;
1326 typedef struct regexp REGEXP;
1327 typedef struct gp GP;
1328 typedef struct gv GV;
1329 typedef struct io IO;
1330 typedef struct context PERL_CONTEXT;
1331 typedef struct block BLOCK;
1333 typedef struct magic MAGIC;
1334 typedef struct xrv XRV;
1335 typedef struct xpv XPV;
1336 typedef struct xpviv XPVIV;
1337 typedef struct xpvuv XPVUV;
1338 typedef struct xpvnv XPVNV;
1339 typedef struct xpvmg XPVMG;
1340 typedef struct xpvlv XPVLV;
1341 typedef struct xpvav XPVAV;
1342 typedef struct xpvhv XPVHV;
1343 typedef struct xpvgv XPVGV;
1344 typedef struct xpvcv XPVCV;
1345 typedef struct xpvbm XPVBM;
1346 typedef struct xpvfm XPVFM;
1347 typedef struct xpvio XPVIO;
1348 typedef struct mgvtbl MGVTBL;
1349 typedef union any ANY;
1350 typedef struct ptr_tbl_ent PTR_TBL_ENT_t;
1351 typedef struct ptr_tbl PTR_TBL_t;
1355 #ifndef NO_LARGE_FILES
1356 # define USE_LARGE_FILES /* If available. */
1359 #if defined(USE_LARGE_FILES) && !defined(NO_64_BIT_RAWIO)
1360 # define USE_64_BIT_RAWIO /* explicit */
1361 # if LSEEKSIZE == 8 && !defined(USE_64_BIT_RAWIO)
1362 # define USE_64_BIT_RAWIO /* implicit */
1366 /* Notice the use of HAS_FSEEKO: now we are obligated to always use
1367 * fseeko/ftello if possible. Don't go #defining ftell to ftello yourself,
1368 * however, because operating systems like to do that themself. */
1371 # define FSEEKSIZE LSEEKSIZE
1373 # define FSEEKSIZE LONGSIZE
1377 #if defined(USE_LARGE_FILES) && !defined(NO_64_BIT_STDIO)
1378 # define USE_64_BIT_STDIO /* explicit */
1379 # if FSEEKSIZE == 8 && !defined(USE_64_BIT_STDIO)
1380 # define USE_64_BIT_STDIO /* implicit */
1384 #ifdef USE_64_BIT_RAWIO
1387 # define Off_t off64_t
1389 # define LSEEKSIZE 8
1391 /* Most 64-bit environments have defines like _LARGEFILE_SOURCE that
1392 * will trigger defines like the ones below. Some 64-bit environments,
1393 * however, do not. Therefore we have to explicitly mix and match. */
1394 # if defined(USE_OPEN64)
1395 # define open open64
1397 # if defined(USE_LSEEK64)
1398 # define lseek lseek64
1400 # if defined(USE_LLSEEK)
1401 # define lseek llseek
1404 # if defined(USE_STAT64)
1405 # define stat stat64
1407 # if defined(USE_FSTAT64)
1408 # define fstat fstat64
1410 # if defined(USE_LSTAT64)
1411 # define lstat lstat64
1413 # if defined(USE_FLOCK64)
1414 # define flock flock64
1416 # if defined(USE_LOCKF64)
1417 # define lockf lockf64
1419 # if defined(USE_FCNTL64)
1420 # define fcntl fcntl64
1422 # if defined(USE_TRUNCATE64)
1423 # define truncate truncate64
1425 # if defined(USE_FTRUNCATE64)
1426 # define ftruncate ftruncate64
1430 #ifdef USE_64_BIT_STDIO
1431 # ifdef HAS_FPOS64_T
1433 # define Fpos_t fpos64_t
1435 /* Most 64-bit environments have defines like _LARGEFILE_SOURCE that
1436 * will trigger defines like the ones below. Some 64-bit environments,
1437 * however, do not. */
1438 # if defined(USE_FOPEN64)
1439 # define fopen fopen64
1441 # if defined(USE_FSEEK64)
1442 # define fseek fseek64 /* don't do fseeko here, see perlio.c */
1444 # if defined(USE_FTELL64)
1445 # define ftell ftell64 /* don't do ftello here, see perlio.c */
1447 # if defined(USE_FSETPOS64)
1448 # define fsetpos fsetpos64
1450 # if defined(USE_FGETPOS64)
1451 # define fgetpos fgetpos64
1453 # if defined(USE_TMPFILE64)
1454 # define tmpfile tmpfile64
1456 # if defined(USE_FREOPEN64)
1457 # define freopen freopen64
1462 # include "iperlsys.h"
1465 #if defined(__OPEN_VM)
1466 # include "vmesa/vmesaish.h"
1471 # include "os2ish.h"
1473 # include "dosish.h"
1477 # include "vmsish.h"
1480 # include "./plan9/plan9ish.h"
1483 # include "mpeix/mpeixish.h"
1485 # if defined(__VOS__)
1486 # include "vosish.h"
1489 # include "epocish.h"
1491 # if defined(MACOS_TRADITIONAL)
1492 # include "macos/macish.h"
1494 # include "unixish.h"
1503 #ifndef PERL_SYS_INIT3
1504 # define PERL_SYS_INIT3(argvp,argcp,envp) PERL_SYS_INIT(argvp,argcp)
1509 # ifdef _POSIX_PATH_MAX
1510 # if PATH_MAX > _POSIX_PATH_MAX
1511 /* MAXPATHLEN is supposed to include the final null character,
1512 * as opposed to PATH_MAX and _POSIX_PATH_MAX. */
1513 # define MAXPATHLEN (PATH_MAX+1)
1515 # define MAXPATHLEN (_POSIX_PATH_MAX+1)
1518 # define MAXPATHLEN (PATH_MAX+1)
1521 # ifdef _POSIX_PATH_MAX
1522 # define MAXPATHLEN (_POSIX_PATH_MAX+1)
1524 # define MAXPATHLEN 1024 /* Err on the large side. */
1530 * USE_THREADS needs to be after unixish.h as <pthread.h> includes
1531 * <sys/signal.h> which defines NSIG - which will stop inclusion of <signal.h>
1532 * this results in many functions being undeclared which bothers C++
1533 * May make sense to have threads after "*ish.h" anyway
1536 #if defined(USE_THREADS) || defined(USE_ITHREADS)
1537 # if defined(USE_THREADS)
1538 /* pending resolution of licensing issues, we avoid the erstwhile
1539 * atomic.h everywhere */
1540 # define EMULATE_ATOMIC_REFCOUNTS
1542 # ifdef FAKE_THREADS
1543 # include "fakethr.h"
1546 # include <win32thread.h>
1549 # include "os2thread.h"
1551 # ifdef I_MACH_CTHREADS
1552 # include <mach/cthreads.h>
1553 # if (defined(NeXT) || defined(__NeXT__)) && defined(PERL_POLLUTE_MALLOC)
1554 # define MUTEX_INIT_CALLS_MALLOC
1556 typedef cthread_t perl_os_thread;
1557 typedef mutex_t perl_mutex;
1558 typedef condition_t perl_cond;
1559 typedef void * perl_key;
1560 # else /* Posix threads */
1562 # include <pthread.h>
1564 typedef pthread_t perl_os_thread;
1565 typedef pthread_mutex_t perl_mutex;
1566 typedef pthread_cond_t perl_cond;
1567 typedef pthread_key_t perl_key;
1568 # endif /* I_MACH_CTHREADS */
1571 # endif /* FAKE_THREADS */
1572 #endif /* USE_THREADS || USE_ITHREADS */
1579 # define STATUS_NATIVE PL_statusvalue_vms
1580 # define STATUS_NATIVE_EXPORT \
1581 ((I32)PL_statusvalue_vms == -1 ? 44 : PL_statusvalue_vms)
1582 # define STATUS_NATIVE_SET(n) \
1584 PL_statusvalue_vms = (n); \
1585 if ((I32)PL_statusvalue_vms == -1) \
1586 PL_statusvalue = -1; \
1587 else if (PL_statusvalue_vms & STS$M_SUCCESS) \
1588 PL_statusvalue = 0; \
1589 else if ((PL_statusvalue_vms & STS$M_SEVERITY) == 0) \
1590 PL_statusvalue = 1 << 8; \
1592 PL_statusvalue = (PL_statusvalue_vms & STS$M_SEVERITY) << 8; \
1594 # define STATUS_POSIX PL_statusvalue
1595 # ifdef VMSISH_STATUS
1596 # define STATUS_CURRENT (VMSISH_STATUS ? STATUS_NATIVE : STATUS_POSIX)
1598 # define STATUS_CURRENT STATUS_POSIX
1600 # define STATUS_POSIX_SET(n) \
1602 PL_statusvalue = (n); \
1603 if (PL_statusvalue != -1) { \
1604 PL_statusvalue &= 0xFFFF; \
1605 PL_statusvalue_vms = PL_statusvalue ? 44 : 1; \
1607 else PL_statusvalue_vms = -1; \
1609 # define STATUS_ALL_SUCCESS (PL_statusvalue = 0, PL_statusvalue_vms = 1)
1610 # define STATUS_ALL_FAILURE (PL_statusvalue = 1, PL_statusvalue_vms = 44)
1612 # define STATUS_NATIVE STATUS_POSIX
1613 # define STATUS_NATIVE_EXPORT STATUS_POSIX
1614 # define STATUS_NATIVE_SET STATUS_POSIX_SET
1615 # define STATUS_POSIX PL_statusvalue
1616 # define STATUS_POSIX_SET(n) \
1618 PL_statusvalue = (n); \
1619 if (PL_statusvalue != -1) \
1620 PL_statusvalue &= 0xFFFF; \
1622 # define STATUS_CURRENT STATUS_POSIX
1623 # define STATUS_ALL_SUCCESS (PL_statusvalue = 0)
1624 # define STATUS_ALL_FAILURE (PL_statusvalue = 1)
1627 /* flags in PL_exit_flags for nature of exit() */
1628 #define PERL_EXIT_EXPECTED 0x01
1630 #ifndef MEMBER_TO_FPTR
1631 # define MEMBER_TO_FPTR(name) name
1634 /* format to use for version numbers in file/directory names */
1635 /* XXX move to Configure? */
1636 #ifndef PERL_FS_VER_FMT
1637 # define PERL_FS_VER_FMT "%d.%d.%d"
1640 /* This defines a way to flush all output buffers. This may be a
1641 * performance issue, so we allow people to disable it.
1643 #ifndef PERL_FLUSHALL_FOR_CHILD
1644 # if defined(FFLUSH_NULL) || defined(USE_SFIO)
1645 # define PERL_FLUSHALL_FOR_CHILD PerlIO_flush((PerlIO*)NULL)
1648 # define PERL_FLUSHALL_FOR_CHILD my_fflush_all()
1650 # define PERL_FLUSHALL_FOR_CHILD NOOP
1655 #ifndef PERL_WAIT_FOR_CHILDREN
1656 # define PERL_WAIT_FOR_CHILDREN NOOP
1659 /* the traditional thread-unsafe notion of "current interpreter".
1660 * XXX todo: a thread-safe version that fetches it from TLS (akin to THR)
1661 * needs to be defined elsewhere (conditional on pthread_getspecific()
1663 #ifndef PERL_SET_INTERP
1664 # define PERL_SET_INTERP(i) (PL_curinterp = (PerlInterpreter*)(i))
1667 #ifndef PERL_GET_INTERP
1668 # define PERL_GET_INTERP (PL_curinterp)
1671 #if defined(PERL_IMPLICIT_CONTEXT) && !defined(PERL_GET_THX)
1673 # define PERL_GET_THX THR
1675 # ifdef MULTIPLICITY
1676 # define PERL_GET_THX PERL_GET_INTERP
1679 # define PERL_GET_THX ((CPerlObj*)PERL_GET_INTERP)
1681 # define PERL_GET_THX ((void*)0)
1688 # ifdef CHECK_FORMAT
1695 /* Some unistd.h's give a prototype for pause() even though
1696 HAS_PAUSE ends up undefined. This causes the #define
1697 below to be rejected by the compmiler. Sigh.
1702 #define Pause() sleep((32767<<16)+32767)
1706 # ifdef IOCPARM_MASK
1707 /* on BSDish systes we're safe */
1708 # define IOCPARM_LEN(x) (((x) >> 16) & IOCPARM_MASK)
1710 /* otherwise guess at what's safe */
1711 # define IOCPARM_LEN(x) 256
1717 * This symbol, if defined, indicates that the program should
1718 * use the routine my_binmode(FILE *fp, char iotype) to insure
1719 * that a file is in "binary" mode -- that is, that no translation
1720 * of bytes occurs on read or write operations.
1722 # define USEMYBINMODE / **/
1723 # define my_binmode(fp, iotype) \
1724 (PerlLIO_setmode(PerlIO_fileno(fp), O_BINARY) != -1 ? TRUE : FALSE)
1727 #ifdef UNION_ANY_DEFINITION
1728 UNION_ANY_DEFINITION;
1735 void (*any_dptr) (void*);
1736 void (*any_dxptr) (pTHXo_ void*);
1741 #define ARGSproto struct perl_thread *thr
1744 #endif /* USE_THREADS */
1746 typedef I32 (*filter_t) (pTHXo_ int, SV *, int);
1748 #define FILTER_READ(idx, sv, len) filter_read(idx, sv, len)
1749 #define FILTER_DATA(idx) (AvARRAY(PL_rsfp_filters)[idx])
1750 #define FILTER_ISREADER(idx) (idx >= AvFILLp(PL_rsfp_filters))
1753 # include "iperlsys.h"
1761 #include "opnames.h"
1768 #include "warnings.h"
1771 /* Current curly descriptor */
1772 typedef struct curcur CURCUR;
1774 int parenfloor; /* how far back to strip paren data */
1775 int cur; /* how many instances of scan we've matched */
1776 int min; /* the minimal number of scans to match */
1777 int max; /* the maximal number of scans to match */
1778 int minmod; /* whether to work our way up or down */
1779 regnode * scan; /* the thing to match */
1780 regnode * next; /* what has to match after it */
1781 char * lastloc; /* where we started matching this scan */
1782 CURCUR * oldcc; /* current curly before we started this one */
1785 typedef struct _sublex_info SUBLEXINFO;
1786 struct _sublex_info {
1787 I32 super_state; /* lexer state to save */
1788 I32 sub_inwhat; /* "lex_inwhat" to use */
1789 OP *sub_op; /* "lex_op" to use */
1790 char *super_bufptr; /* PL_bufptr that was */
1791 char *super_bufend; /* PL_bufend that was */
1794 typedef struct magic_state MGS; /* struct magic_state defined in mg.c */
1796 struct scan_data_t; /* Used in S_* functions in regcomp.c */
1797 struct regnode_charclass_class; /* Used in S_* functions in regcomp.c */
1799 typedef I32 CHECKPOINT;
1801 struct ptr_tbl_ent {
1802 struct ptr_tbl_ent* next;
1808 struct ptr_tbl_ent** tbl_ary;
1813 #if defined(iAPX286) || defined(M_I286) || defined(I80286)
1817 #if defined(htonl) && !defined(HAS_HTONL)
1820 #if defined(htons) && !defined(HAS_HTONS)
1823 #if defined(ntohl) && !defined(HAS_NTOHL)
1826 #if defined(ntohs) && !defined(HAS_NTOHS)
1830 #if (BYTEORDER & 0xffff) != 0x4321
1836 #define htons my_swap
1837 #define htonl my_htonl
1838 #define ntohs my_swap
1839 #define ntohl my_ntohl
1842 #if (BYTEORDER & 0xffff) == 0x4321
1851 * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
1854 #if BYTEORDER != 0x1234
1859 # if BYTEORDER == 0x4321 || BYTEORDER == 0x87654321
1860 # define vtohl(x) ((((x)&0xFF)<<24) \
1862 +(((x)&0x0000FF00)<<8) \
1863 +(((x)&0x00FF0000)>>8) )
1864 # define vtohs(x) ((((x)&0xFF)<<8) + (((x)>>8)&0xFF))
1865 # define htovl(x) vtohl(x)
1866 # define htovs(x) vtohs(x)
1868 /* otherwise default to functions in util.c */
1872 #define U_S(what) ((U16)(what))
1873 #define U_I(what) ((unsigned int)(what))
1874 #define U_L(what) ((U32)(what))
1876 #define U_S(what) ((U16)cast_ulong((NV)(what)))
1877 #define U_I(what) ((unsigned int)cast_ulong((NV)(what)))
1878 #define U_L(what) (cast_ulong((NV)(what)))
1882 #define I_32(what) ((I32)(what))
1883 #define I_V(what) ((IV)(what))
1884 #define U_V(what) ((UV)(what))
1886 #define I_32(what) (cast_i32((NV)(what)))
1887 #define I_V(what) (cast_iv((NV)(what)))
1888 #define U_V(what) (cast_uv((NV)(what)))
1891 /* These do not care about the fractional part, only about the range. */
1892 #define NV_WITHIN_IV(nv) (I_V(nv) >= IV_MIN && I_V(nv) <= IV_MAX)
1893 #define NV_WITHIN_UV(nv) ((nv)>=0.0 && U_V(nv) >= UV_MIN && U_V(nv) <= UV_MAX)
1895 /* Used with UV/IV arguments: */
1896 /* XXXX: need to speed it up */
1897 #define CLUMP_2UV(iv) ((iv) < 0 ? 0 : (UV)(iv))
1898 #define CLUMP_2IV(uv) ((uv) > (UV)IV_MAX ? IV_MAX : (IV)(uv))
1905 Uid_t getuid (void);
1906 Uid_t geteuid (void);
1907 Gid_t getgid (void);
1908 Gid_t getegid (void);
1911 #ifndef Perl_debug_log
1912 # define Perl_debug_log PerlIO_stderr()
1915 #ifndef Perl_error_log
1916 # define Perl_error_log (PL_stderrgv \
1917 && IoOFP(GvIOp(PL_stderrgv)) \
1918 ? IoOFP(GvIOp(PL_stderrgv)) \
1926 #define DEBUG(a) if (PL_debug) a
1927 #define DEBUG_p(a) if (PL_debug & 1) a
1928 #define DEBUG_s(a) if (PL_debug & 2) a
1929 #define DEBUG_l(a) if (PL_debug & 4) a
1930 #define DEBUG_t(a) if (PL_debug & 8) a
1931 #define DEBUG_o(a) if (PL_debug & 16) a
1932 #define DEBUG_c(a) if (PL_debug & 32) a
1933 #define DEBUG_P(a) if (PL_debug & 64) a
1934 # if defined(PERL_OBJECT)
1935 # define DEBUG_m(a) if (PL_debug & 128) a
1937 # define DEBUG_m(a) \
1939 if (PERL_GET_INTERP) { dTHX; if (PL_debug & 128) { a; } } \
1942 #define DEBUG_f(a) if (PL_debug & 256) a
1943 #define DEBUG_r(a) if (PL_debug & 512) a
1944 #define DEBUG_x(a) if (PL_debug & 1024) a
1945 #define DEBUG_u(a) if (PL_debug & 2048) a
1946 #define DEBUG_L(a) if (PL_debug & 4096) a
1947 #define DEBUG_H(a) if (PL_debug & 8192) a
1948 #define DEBUG_X(a) if (PL_debug & 16384) a
1949 #define DEBUG_D(a) if (PL_debug & 32768) a
1951 # define DEBUG_S(a) if (PL_debug & (1<<16)) a
1976 #define YYMAXDEPTH 300
1978 #ifndef assert /* <assert.h> might have been included somehow */
1979 #define assert(what) DEB( { \
1981 Perl_croak(aTHX_ "Assertion failed: file \"%s\", line %d", \
1982 __FILE__, __LINE__); \
1988 I32 (*uf_val)(IV, SV*);
1989 I32 (*uf_set)(IV, SV*);
1993 /* Fix these up for __STDC__ */
1994 #ifndef DONT_DECLARE_STD
1995 char *mktemp (char*);
1997 double atof (const char*);
2002 /* All of these are in stdlib.h or time.h for ANSI C */
2004 struct tm *gmtime(), *localtime();
2005 #if defined(OEMVS) || defined(__OPEN_VM)
2006 char *(strchr)(), *(strrchr)();
2007 char *(strcpy)(), *(strcat)();
2009 char *strchr(), *strrchr();
2010 char *strcpy(), *strcat();
2012 #endif /* ! STANDARD_C */
2019 double exp (double);
2020 double log (double);
2021 double log10 (double);
2022 double sqrt (double);
2023 double frexp (double,int*);
2024 double ldexp (double,int);
2025 double modf (double,double*);
2026 double sin (double);
2027 double cos (double);
2028 double atan2 (double,double);
2029 double pow (double,double);
2034 # if defined(NeXT) || defined(__NeXT__) /* or whatever catches all NeXTs */
2035 char *crypt (); /* Maybe more hosts will need the unprototyped version */
2037 # if !defined(WIN32)
2038 char *crypt (const char*, const char*);
2039 # endif /* !WIN32 */
2040 # endif /* !NeXT && !__NeXT__ */
2041 # ifndef DONT_DECLARE_STD
2043 char *getenv (const char*);
2044 # endif /* !getenv */
2046 Off_t lseek (int,Off_t,int);
2048 # endif /* !DONT_DECLARE_STD */
2049 char *getlogin (void);
2050 #endif /* !__cplusplus */
2052 #ifdef UNLINK_ALL_VERSIONS /* Currently only makes sense for VMS */
2053 #define UNLINK unlnk
2056 #define UNLINK PerlLIO_unlink
2059 #ifndef HAS_SETREUID
2060 # ifdef HAS_SETRESUID
2061 # define setreuid(r,e) setresuid(r,e,(Uid_t)-1)
2062 # define HAS_SETREUID
2065 #ifndef HAS_SETREGID
2066 # ifdef HAS_SETRESGID
2067 # define setregid(r,e) setresgid(r,e,(Gid_t)-1)
2068 # define HAS_SETREGID
2072 /* Sighandler_t defined in iperlsys.h */
2074 #ifdef HAS_SIGACTION
2075 typedef struct sigaction Sigsave_t;
2077 typedef Sighandler_t Sigsave_t;
2088 # define PAD_SV(po) pad_sv(po)
2089 # define RUNOPS_DEFAULT Perl_runops_debug
2091 # define PAD_SV(po) PL_curpad[po]
2092 # define RUNOPS_DEFAULT Perl_runops_standard
2096 # ifdef MUTEX_INIT_CALLS_MALLOC
2097 # define MALLOC_INIT \
2099 PL_malloc_mutex = NULL; \
2100 MUTEX_INIT(&PL_malloc_mutex); \
2102 # define MALLOC_TERM \
2104 perl_mutex tmp = PL_malloc_mutex; \
2105 PL_malloc_mutex = NULL; \
2106 MUTEX_DESTROY(&tmp); \
2109 # define MALLOC_INIT MUTEX_INIT(&PL_malloc_mutex)
2110 # define MALLOC_TERM MUTEX_DESTROY(&PL_malloc_mutex)
2113 # define MALLOC_INIT
2114 # define MALLOC_TERM
2118 typedef int (CPERLscope(*runops_proc_t)) (pTHX);
2119 typedef OP* (CPERLscope(*PPADDR_t)[]) (pTHX);
2121 /* _ (for $_) must be first in the following list (DEFSV requires it) */
2122 #define THREADSV_NAMES "_123456789&`'+/.,\\\";^-%=|~:\001\005!@"
2124 /* NeXT has problems with crt0.o globals */
2125 #if defined(__DYNAMIC__) && \
2126 (defined(NeXT) || defined(__NeXT__) || defined(__APPLE__))
2127 # if defined(NeXT) || defined(__NeXT)
2128 # include <mach-o/dyld.h>
2129 # define environ (*environ_pointer)
2130 EXT char *** environ_pointer;
2132 # if defined(__APPLE__)
2133 # include <crt_externs.h> /* for the env array */
2134 # define environ (*_NSGetEnviron())
2138 /* VMS and some other platforms don't use the environ array */
2140 # if !defined(DONT_DECLARE_STD) || \
2141 (defined(__svr4__) && defined(__GNUC__) && defined(sun)) || \
2143 defined(__DGUX) || defined(EPOC)
2144 extern char ** environ; /* environment variables supplied via exec */
2151 /* handy constants */
2152 EXTCONST char PL_warn_uninit[]
2153 INIT("Use of uninitialized value%s%s");
2154 EXTCONST char PL_warn_nosemi[]
2155 INIT("Semicolon seems to be missing");
2156 EXTCONST char PL_warn_reserved[]
2157 INIT("Unquoted string \"%s\" may clash with future reserved word");
2158 EXTCONST char PL_warn_nl[]
2159 INIT("Unsuccessful %s on filename containing newline");
2160 EXTCONST char PL_no_wrongref[]
2161 INIT("Can't use %s ref as %s ref");
2162 EXTCONST char PL_no_symref[]
2163 INIT("Can't use string (\"%.32s\") as %s ref while \"strict refs\" in use");
2164 EXTCONST char PL_no_usym[]
2165 INIT("Can't use an undefined value as %s reference");
2166 EXTCONST char PL_no_aelem[]
2167 INIT("Modification of non-creatable array value attempted, subscript %d");
2168 EXTCONST char PL_no_helem[]
2169 INIT("Modification of non-creatable hash value attempted, subscript \"%s\"");
2170 EXTCONST char PL_no_modify[]
2171 INIT("Modification of a read-only value attempted");
2172 EXTCONST char PL_no_mem[]
2173 INIT("Out of memory!\n");
2174 EXTCONST char PL_no_security[]
2175 INIT("Insecure dependency in %s%s");
2176 EXTCONST char PL_no_sock_func[]
2177 INIT("Unsupported socket function \"%s\" called");
2178 EXTCONST char PL_no_dir_func[]
2179 INIT("Unsupported directory function \"%s\" called");
2180 EXTCONST char PL_no_func[]
2181 INIT("The %s function is unimplemented");
2182 EXTCONST char PL_no_myglob[]
2183 INIT("\"my\" variable %s can't be in a package");
2185 EXTCONST char PL_uuemap[65]
2186 INIT("`!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_");
2190 EXT char *PL_sig_name[] = { SIG_NAME };
2191 EXT int PL_sig_num[] = { SIG_NUM };
2193 EXT char *PL_sig_name[];
2194 EXT int PL_sig_num[];
2197 /* fast case folding tables */
2201 EXT unsigned char PL_fold[] = { /* fast EBCDIC case folding table */
2202 0, 1, 2, 3, 4, 5, 6, 7,
2203 8, 9, 10, 11, 12, 13, 14, 15,
2204 16, 17, 18, 19, 20, 21, 22, 23,
2205 24, 25, 26, 27, 28, 29, 30, 31,
2206 32, 33, 34, 35, 36, 37, 38, 39,
2207 40, 41, 42, 43, 44, 45, 46, 47,
2208 48, 49, 50, 51, 52, 53, 54, 55,
2209 56, 57, 58, 59, 60, 61, 62, 63,
2210 64, 65, 66, 67, 68, 69, 70, 71,
2211 72, 73, 74, 75, 76, 77, 78, 79,
2212 80, 81, 82, 83, 84, 85, 86, 87,
2213 88, 89, 90, 91, 92, 93, 94, 95,
2214 96, 97, 98, 99, 100, 101, 102, 103,
2215 104, 105, 106, 107, 108, 109, 110, 111,
2216 112, 113, 114, 115, 116, 117, 118, 119,
2217 120, 121, 122, 123, 124, 125, 126, 127,
2218 128, 'A', 'B', 'C', 'D', 'E', 'F', 'G',
2219 'H', 'I', 138, 139, 140, 141, 142, 143,
2220 144, 'J', 'K', 'L', 'M', 'N', 'O', 'P',
2221 'Q', 'R', 154, 155, 156, 157, 158, 159,
2222 160, 161, 'S', 'T', 'U', 'V', 'W', 'X',
2223 'Y', 'Z', 170, 171, 172, 173, 174, 175,
2224 176, 177, 178, 179, 180, 181, 182, 183,
2225 184, 185, 186, 187, 188, 189, 190, 191,
2226 192, 'a', 'b', 'c', 'd', 'e', 'f', 'g',
2227 'h', 'i', 202, 203, 204, 205, 206, 207,
2228 208, 'j', 'k', 'l', 'm', 'n', 'o', 'p',
2229 'q', 'r', 218, 219, 220, 221, 222, 223,
2230 224, 225, 's', 't', 'u', 'v', 'w', 'x',
2231 'y', 'z', 234, 235, 236, 237, 238, 239,
2232 240, 241, 242, 243, 244, 245, 246, 247,
2233 248, 249, 250, 251, 252, 253, 254, 255
2235 #else /* ascii rather than ebcdic */
2236 EXTCONST unsigned char PL_fold[] = {
2237 0, 1, 2, 3, 4, 5, 6, 7,
2238 8, 9, 10, 11, 12, 13, 14, 15,
2239 16, 17, 18, 19, 20, 21, 22, 23,
2240 24, 25, 26, 27, 28, 29, 30, 31,
2241 32, 33, 34, 35, 36, 37, 38, 39,
2242 40, 41, 42, 43, 44, 45, 46, 47,
2243 48, 49, 50, 51, 52, 53, 54, 55,
2244 56, 57, 58, 59, 60, 61, 62, 63,
2245 64, 'a', 'b', 'c', 'd', 'e', 'f', 'g',
2246 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
2247 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
2248 'x', 'y', 'z', 91, 92, 93, 94, 95,
2249 96, 'A', 'B', 'C', 'D', 'E', 'F', 'G',
2250 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
2251 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
2252 'X', 'Y', 'Z', 123, 124, 125, 126, 127,
2253 128, 129, 130, 131, 132, 133, 134, 135,
2254 136, 137, 138, 139, 140, 141, 142, 143,
2255 144, 145, 146, 147, 148, 149, 150, 151,
2256 152, 153, 154, 155, 156, 157, 158, 159,
2257 160, 161, 162, 163, 164, 165, 166, 167,
2258 168, 169, 170, 171, 172, 173, 174, 175,
2259 176, 177, 178, 179, 180, 181, 182, 183,
2260 184, 185, 186, 187, 188, 189, 190, 191,
2261 192, 193, 194, 195, 196, 197, 198, 199,
2262 200, 201, 202, 203, 204, 205, 206, 207,
2263 208, 209, 210, 211, 212, 213, 214, 215,
2264 216, 217, 218, 219, 220, 221, 222, 223,
2265 224, 225, 226, 227, 228, 229, 230, 231,
2266 232, 233, 234, 235, 236, 237, 238, 239,
2267 240, 241, 242, 243, 244, 245, 246, 247,
2268 248, 249, 250, 251, 252, 253, 254, 255
2270 #endif /* !EBCDIC */
2272 EXTCONST unsigned char PL_fold[];
2276 EXT unsigned char PL_fold_locale[] = {
2277 0, 1, 2, 3, 4, 5, 6, 7,
2278 8, 9, 10, 11, 12, 13, 14, 15,
2279 16, 17, 18, 19, 20, 21, 22, 23,
2280 24, 25, 26, 27, 28, 29, 30, 31,
2281 32, 33, 34, 35, 36, 37, 38, 39,
2282 40, 41, 42, 43, 44, 45, 46, 47,
2283 48, 49, 50, 51, 52, 53, 54, 55,
2284 56, 57, 58, 59, 60, 61, 62, 63,
2285 64, 'a', 'b', 'c', 'd', 'e', 'f', 'g',
2286 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
2287 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
2288 'x', 'y', 'z', 91, 92, 93, 94, 95,
2289 96, 'A', 'B', 'C', 'D', 'E', 'F', 'G',
2290 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
2291 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
2292 'X', 'Y', 'Z', 123, 124, 125, 126, 127,
2293 128, 129, 130, 131, 132, 133, 134, 135,
2294 136, 137, 138, 139, 140, 141, 142, 143,
2295 144, 145, 146, 147, 148, 149, 150, 151,
2296 152, 153, 154, 155, 156, 157, 158, 159,
2297 160, 161, 162, 163, 164, 165, 166, 167,
2298 168, 169, 170, 171, 172, 173, 174, 175,
2299 176, 177, 178, 179, 180, 181, 182, 183,
2300 184, 185, 186, 187, 188, 189, 190, 191,
2301 192, 193, 194, 195, 196, 197, 198, 199,
2302 200, 201, 202, 203, 204, 205, 206, 207,
2303 208, 209, 210, 211, 212, 213, 214, 215,
2304 216, 217, 218, 219, 220, 221, 222, 223,
2305 224, 225, 226, 227, 228, 229, 230, 231,
2306 232, 233, 234, 235, 236, 237, 238, 239,
2307 240, 241, 242, 243, 244, 245, 246, 247,
2308 248, 249, 250, 251, 252, 253, 254, 255
2311 EXT unsigned char PL_fold_locale[];
2316 EXT unsigned char PL_freq[] = {/* EBCDIC frequencies for mixed English/C */
2317 1, 2, 84, 151, 154, 155, 156, 157,
2318 165, 246, 250, 3, 158, 7, 18, 29,
2319 40, 51, 62, 73, 85, 96, 107, 118,
2320 129, 140, 147, 148, 149, 150, 152, 153,
2321 255, 6, 8, 9, 10, 11, 12, 13,
2322 14, 15, 24, 25, 26, 27, 28, 226,
2323 29, 30, 31, 32, 33, 43, 44, 45,
2324 46, 47, 48, 49, 50, 76, 77, 78,
2325 79, 80, 81, 82, 83, 84, 85, 86,
2326 87, 94, 95, 234, 181, 233, 187, 190,
2327 180, 96, 97, 98, 99, 100, 101, 102,
2328 104, 112, 182, 174, 236, 232, 229, 103,
2329 228, 226, 114, 115, 116, 117, 118, 119,
2330 120, 121, 122, 235, 176, 230, 194, 162,
2331 130, 131, 132, 133, 134, 135, 136, 137,
2332 138, 139, 201, 205, 163, 217, 220, 224,
2333 5, 248, 227, 244, 242, 255, 241, 231,
2334 240, 253, 16, 197, 19, 20, 21, 187,
2335 23, 169, 210, 245, 237, 249, 247, 239,
2336 168, 252, 34, 196, 36, 37, 38, 39,
2337 41, 42, 251, 254, 238, 223, 221, 213,
2338 225, 177, 52, 53, 54, 55, 56, 57,
2339 58, 59, 60, 61, 63, 64, 65, 66,
2340 67, 68, 69, 70, 71, 72, 74, 75,
2341 205, 208, 186, 202, 200, 218, 198, 179,
2342 178, 214, 88, 89, 90, 91, 92, 93,
2343 217, 166, 170, 207, 199, 209, 206, 204,
2344 160, 212, 105, 106, 108, 109, 110, 111,
2345 203, 113, 216, 215, 192, 175, 193, 243,
2346 172, 161, 123, 124, 125, 126, 127, 128,
2347 222, 219, 211, 195, 188, 193, 185, 184,
2348 191, 183, 141, 142, 143, 144, 145, 146
2350 #else /* ascii rather than ebcdic */
2351 EXTCONST unsigned char PL_freq[] = { /* letter frequencies for mixed English/C */
2352 1, 2, 84, 151, 154, 155, 156, 157,
2353 165, 246, 250, 3, 158, 7, 18, 29,
2354 40, 51, 62, 73, 85, 96, 107, 118,
2355 129, 140, 147, 148, 149, 150, 152, 153,
2356 255, 182, 224, 205, 174, 176, 180, 217,
2357 233, 232, 236, 187, 235, 228, 234, 226,
2358 222, 219, 211, 195, 188, 193, 185, 184,
2359 191, 183, 201, 229, 181, 220, 194, 162,
2360 163, 208, 186, 202, 200, 218, 198, 179,
2361 178, 214, 166, 170, 207, 199, 209, 206,
2362 204, 160, 212, 216, 215, 192, 175, 173,
2363 243, 172, 161, 190, 203, 189, 164, 230,
2364 167, 248, 227, 244, 242, 255, 241, 231,
2365 240, 253, 169, 210, 245, 237, 249, 247,
2366 239, 168, 252, 251, 254, 238, 223, 221,
2367 213, 225, 177, 197, 171, 196, 159, 4,
2368 5, 6, 8, 9, 10, 11, 12, 13,
2369 14, 15, 16, 17, 19, 20, 21, 22,
2370 23, 24, 25, 26, 27, 28, 30, 31,
2371 32, 33, 34, 35, 36, 37, 38, 39,
2372 41, 42, 43, 44, 45, 46, 47, 48,
2373 49, 50, 52, 53, 54, 55, 56, 57,
2374 58, 59, 60, 61, 63, 64, 65, 66,
2375 67, 68, 69, 70, 71, 72, 74, 75,
2376 76, 77, 78, 79, 80, 81, 82, 83,
2377 86, 87, 88, 89, 90, 91, 92, 93,
2378 94, 95, 97, 98, 99, 100, 101, 102,
2379 103, 104, 105, 106, 108, 109, 110, 111,
2380 112, 113, 114, 115, 116, 117, 119, 120,
2381 121, 122, 123, 124, 125, 126, 127, 128,
2382 130, 131, 132, 133, 134, 135, 136, 137,
2383 138, 139, 141, 142, 143, 144, 145, 146
2387 EXTCONST unsigned char PL_freq[];
2392 EXTCONST char* PL_block_type[] = {
2401 EXTCONST char* PL_block_type[];
2407 /*****************************************************************************/
2408 /* This lexer/parser stuff is currently global since yacc is hard to reenter */
2409 /*****************************************************************************/
2410 /* XXX This needs to be revisited, since BEGIN makes yacc re-enter... */
2414 #define LEX_NOTPARSING 11 /* borrowed from toke.c */
2427 enum { /* pass one of these to get_vtbl */
2453 want_vtbl_amagicelem,
2462 /* Note: the lowest 8 bits are reserved for
2463 stuffing into op->op_private */
2464 #define HINT_PRIVATE_MASK 0x000000ff
2465 #define HINT_INTEGER 0x00000001
2466 #define HINT_STRICT_REFS 0x00000002
2467 /* #define HINT_notused4 0x00000004 */
2468 #define HINT_BYTE 0x00000008
2469 /* #define HINT_notused10 0x00000010 */
2470 /* Note: 20,40,80 used for NATIVE_HINTS */
2472 #define HINT_BLOCK_SCOPE 0x00000100
2473 #define HINT_STRICT_SUBS 0x00000200
2474 #define HINT_STRICT_VARS 0x00000400
2475 #define HINT_LOCALE 0x00000800
2477 #define HINT_NEW_INTEGER 0x00001000
2478 #define HINT_NEW_FLOAT 0x00002000
2479 #define HINT_NEW_BINARY 0x00004000
2480 #define HINT_NEW_STRING 0x00008000
2481 #define HINT_NEW_RE 0x00010000
2482 #define HINT_LOCALIZE_HH 0x00020000 /* %^H needs to be copied */
2484 #define HINT_RE_TAINT 0x00100000
2485 #define HINT_RE_EVAL 0x00200000
2487 #define HINT_FILETEST_ACCESS 0x00400000
2488 #define HINT_UTF8 0x00800000
2490 /* Various states of an input record separator SV (rs, nrs) */
2491 #define RsSNARF(sv) (! SvOK(sv))
2492 #define RsSIMPLE(sv) (SvOK(sv) && (! SvPOK(sv) || SvCUR(sv)))
2493 #define RsPARA(sv) (SvPOK(sv) && ! SvCUR(sv))
2494 #define RsRECORD(sv) (SvROK(sv) && (SvIV(SvRV(sv)) > 0))
2496 /* Enable variables which are pointers to functions */
2497 typedef regexp*(CPERLscope(*regcomp_t)) (pTHX_ char* exp, char* xend, PMOP* pm);
2498 typedef I32 (CPERLscope(*regexec_t)) (pTHX_ regexp* prog, char* stringarg,
2499 char* strend, char* strbeg, I32 minend,
2500 SV* screamer, void* data, U32 flags);
2501 typedef char* (CPERLscope(*re_intuit_start_t)) (pTHX_ regexp *prog, SV *sv,
2502 char *strpos, char *strend,
2504 struct re_scream_pos_data_s *d);
2505 typedef SV* (CPERLscope(*re_intuit_string_t)) (pTHX_ regexp *prog);
2506 typedef void (CPERLscope(*regfree_t)) (pTHX_ struct regexp* r);
2508 #ifdef USE_PURE_BISON
2509 int Perl_yylex(pTHX_ YYSTYPE *lvalp, int *lcharp);
2512 typedef void (*DESTRUCTORFUNC_NOCONTEXT_t) (void*);
2513 typedef void (*DESTRUCTORFUNC_t) (pTHXo_ void*);
2514 typedef void (*SVFUNC_t) (pTHXo_ SV*);
2515 typedef I32 (*SVCOMPARE_t) (pTHXo_ SV*, SV*);
2516 typedef void (*XSINIT_t) (pTHXo);
2517 typedef void (*ATEXIT_t) (pTHXo_ void*);
2518 typedef void (*XSUBADDR_t) (pTHXo_ CV *);
2520 /* Set up PERLVAR macros for populating structs */
2521 #define PERLVAR(var,type) type var;
2522 #define PERLVARA(var,n,type) type var[n];
2523 #define PERLVARI(var,type,init) type var;
2524 #define PERLVARIC(var,type,init) type var;
2526 /* Interpreter exitlist entry */
2527 typedef struct exitlistentry {
2528 void (*fn) (pTHXo_ void*);
2530 } PerlExitListEntry;
2532 #ifdef PERL_GLOBAL_STRUCT
2534 # include "perlvars.h"
2538 EXT struct perl_vars PL_Vars;
2539 EXT struct perl_vars *PL_VarsPtr INIT(&PL_Vars);
2540 # else /* PERL_CORE */
2541 # if !defined(__GNUC__) || !defined(WIN32)
2544 struct perl_vars *PL_VarsPtr;
2545 # define PL_Vars (*((PL_VarsPtr) \
2546 ? PL_VarsPtr : (PL_VarsPtr = Perl_GetVars(aTHX))))
2547 # endif /* PERL_CORE */
2548 #endif /* PERL_GLOBAL_STRUCT */
2550 #if defined(MULTIPLICITY) || defined(PERL_OBJECT)
2551 /* If we have multiple interpreters define a struct
2552 holding variables which must be per-interpreter
2553 If we don't have threads anything that would have
2554 be per-thread is per-interpreter.
2557 struct interpreter {
2558 # ifndef USE_THREADS
2559 # include "thrdvar.h"
2561 # include "intrpvar.h"
2563 * The following is a buffer where new variables must
2564 * be defined to maintain binary compatibility with PERL_OBJECT
2566 PERLVARA(object_compatibility,30, char)
2570 struct interpreter {
2573 #endif /* MULTIPLICITY || PERL_OBJECT */
2576 /* If we have threads define a struct with all the variables
2577 * that have to be per-thread
2581 struct perl_thread {
2582 #include "thrdvar.h"
2585 typedef struct perl_thread *Thread;
2588 typedef void *Thread;
2591 /* Done with PERLVAR macros for now ... */
2600 #ifndef PERL_CALLCONV
2601 # define PERL_CALLCONV
2604 #ifndef NEXT30_NO_ATTRIBUTE
2605 # ifndef HASATTRIBUTE /* disable GNU-cc attribute checking? */
2606 # ifdef __attribute__ /* Avoid possible redefinition errors */
2607 # undef __attribute__
2609 # define __attribute__(attr)
2614 # define PERL_DECL_PROT
2619 #define PERL_CKDEF(s) OP *s (pTHX_ OP *o);
2620 #define PERL_PPDEF(s) OP *s (pTHX);
2625 # undef PERL_DECL_PROT
2629 /* this has structure inits, so it cannot be included before here */
2630 # include "opcode.h"
2633 /* The following must follow proto.h as #defines mess up syntax */
2635 #if !defined(PERL_FOR_X2P)
2636 # include "embedvar.h"
2639 /* Now include all the 'global' variables
2640 * If we don't have threads or multiple interpreters
2641 * these include variables that would have been their struct-s
2644 #define PERLVAR(var,type) EXT type PL_##var;
2645 #define PERLVARA(var,n,type) EXT type PL_##var[n];
2646 #define PERLVARI(var,type,init) EXT type PL_##var INIT(init);
2647 #define PERLVARIC(var,type,init) EXTCONST type PL_##var INIT(init);
2649 #if !defined(MULTIPLICITY) && !defined(PERL_OBJECT)
2651 # include "intrpvar.h"
2652 # ifndef USE_THREADS
2653 # include "thrdvar.h"
2662 # include "INTERN.h"
2664 # include "EXTERN.h"
2667 /* this has structure inits, so it cannot be included before here */
2668 # include "opcode.h"
2674 #endif /* PERL_OBJECT */
2676 #ifndef PERL_GLOBAL_STRUCT
2679 # include "perlvars.h"
2693 EXT MGVTBL PL_vtbl_sv = {MEMBER_TO_FPTR(Perl_magic_get),
2694 MEMBER_TO_FPTR(Perl_magic_set),
2695 MEMBER_TO_FPTR(Perl_magic_len),
2697 EXT MGVTBL PL_vtbl_env = {0, MEMBER_TO_FPTR(Perl_magic_set_all_env),
2698 0, MEMBER_TO_FPTR(Perl_magic_clear_all_env),
2700 EXT MGVTBL PL_vtbl_envelem = {0, MEMBER_TO_FPTR(Perl_magic_setenv),
2701 0, MEMBER_TO_FPTR(Perl_magic_clearenv),
2703 EXT MGVTBL PL_vtbl_sig = {0, 0, 0, 0, 0};
2704 EXT MGVTBL PL_vtbl_sigelem = {MEMBER_TO_FPTR(Perl_magic_getsig),
2705 MEMBER_TO_FPTR(Perl_magic_setsig),
2706 0, MEMBER_TO_FPTR(Perl_magic_clearsig),
2708 EXT MGVTBL PL_vtbl_pack = {0, 0, MEMBER_TO_FPTR(Perl_magic_sizepack), MEMBER_TO_FPTR(Perl_magic_wipepack),
2710 EXT MGVTBL PL_vtbl_packelem = {MEMBER_TO_FPTR(Perl_magic_getpack),
2711 MEMBER_TO_FPTR(Perl_magic_setpack),
2712 0, MEMBER_TO_FPTR(Perl_magic_clearpack),
2714 EXT MGVTBL PL_vtbl_dbline = {0, MEMBER_TO_FPTR(Perl_magic_setdbline),
2716 EXT MGVTBL PL_vtbl_isa = {0, MEMBER_TO_FPTR(Perl_magic_setisa),
2717 0, MEMBER_TO_FPTR(Perl_magic_setisa),
2719 EXT MGVTBL PL_vtbl_isaelem = {0, MEMBER_TO_FPTR(Perl_magic_setisa),
2721 EXT MGVTBL PL_vtbl_arylen = {MEMBER_TO_FPTR(Perl_magic_getarylen),
2722 MEMBER_TO_FPTR(Perl_magic_setarylen),
2724 EXT MGVTBL PL_vtbl_glob = {MEMBER_TO_FPTR(Perl_magic_getglob),
2725 MEMBER_TO_FPTR(Perl_magic_setglob),
2727 EXT MGVTBL PL_vtbl_mglob = {0, MEMBER_TO_FPTR(Perl_magic_setmglob),
2729 EXT MGVTBL PL_vtbl_nkeys = {MEMBER_TO_FPTR(Perl_magic_getnkeys),
2730 MEMBER_TO_FPTR(Perl_magic_setnkeys),
2732 EXT MGVTBL PL_vtbl_taint = {MEMBER_TO_FPTR(Perl_magic_gettaint),MEMBER_TO_FPTR(Perl_magic_settaint),
2734 EXT MGVTBL PL_vtbl_substr = {MEMBER_TO_FPTR(Perl_magic_getsubstr), MEMBER_TO_FPTR(Perl_magic_setsubstr),
2736 EXT MGVTBL PL_vtbl_vec = {MEMBER_TO_FPTR(Perl_magic_getvec),
2737 MEMBER_TO_FPTR(Perl_magic_setvec),
2739 EXT MGVTBL PL_vtbl_pos = {MEMBER_TO_FPTR(Perl_magic_getpos),
2740 MEMBER_TO_FPTR(Perl_magic_setpos),
2742 EXT MGVTBL PL_vtbl_bm = {0, MEMBER_TO_FPTR(Perl_magic_setbm),
2744 EXT MGVTBL PL_vtbl_fm = {0, MEMBER_TO_FPTR(Perl_magic_setfm),
2746 EXT MGVTBL PL_vtbl_uvar = {MEMBER_TO_FPTR(Perl_magic_getuvar),
2747 MEMBER_TO_FPTR(Perl_magic_setuvar),
2750 EXT MGVTBL PL_vtbl_mutex = {0, 0, 0, 0, MEMBER_TO_FPTR(Perl_magic_mutexfree)};
2751 #endif /* USE_THREADS */
2752 EXT MGVTBL PL_vtbl_defelem = {MEMBER_TO_FPTR(Perl_magic_getdefelem),MEMBER_TO_FPTR(Perl_magic_setdefelem),
2755 EXT MGVTBL PL_vtbl_regexp = {0,0,0,0, MEMBER_TO_FPTR(Perl_magic_freeregexp)};
2756 EXT MGVTBL PL_vtbl_regdata = {0, 0, MEMBER_TO_FPTR(Perl_magic_regdata_cnt), 0, 0};
2757 EXT MGVTBL PL_vtbl_regdatum = {MEMBER_TO_FPTR(Perl_magic_regdatum_get), 0, 0, 0, 0};
2759 #ifdef USE_LOCALE_COLLATE
2760 EXT MGVTBL PL_vtbl_collxfrm = {0,
2761 MEMBER_TO_FPTR(Perl_magic_setcollxfrm),
2765 EXT MGVTBL PL_vtbl_amagic = {0, MEMBER_TO_FPTR(Perl_magic_setamagic),
2766 0, 0, MEMBER_TO_FPTR(Perl_magic_setamagic)};
2767 EXT MGVTBL PL_vtbl_amagicelem = {0, MEMBER_TO_FPTR(Perl_magic_setamagic),
2768 0, 0, MEMBER_TO_FPTR(Perl_magic_setamagic)};
2770 EXT MGVTBL PL_vtbl_backref = {0, 0,
2771 0, 0, MEMBER_TO_FPTR(Perl_magic_killbackrefs)};
2775 EXT MGVTBL PL_vtbl_sv;
2776 EXT MGVTBL PL_vtbl_env;
2777 EXT MGVTBL PL_vtbl_envelem;
2778 EXT MGVTBL PL_vtbl_sig;
2779 EXT MGVTBL PL_vtbl_sigelem;
2780 EXT MGVTBL PL_vtbl_pack;
2781 EXT MGVTBL PL_vtbl_packelem;
2782 EXT MGVTBL PL_vtbl_dbline;
2783 EXT MGVTBL PL_vtbl_isa;
2784 EXT MGVTBL PL_vtbl_isaelem;
2785 EXT MGVTBL PL_vtbl_arylen;
2786 EXT MGVTBL PL_vtbl_glob;
2787 EXT MGVTBL PL_vtbl_mglob;
2788 EXT MGVTBL PL_vtbl_nkeys;
2789 EXT MGVTBL PL_vtbl_taint;
2790 EXT MGVTBL PL_vtbl_substr;
2791 EXT MGVTBL PL_vtbl_vec;
2792 EXT MGVTBL PL_vtbl_pos;
2793 EXT MGVTBL PL_vtbl_bm;
2794 EXT MGVTBL PL_vtbl_fm;
2795 EXT MGVTBL PL_vtbl_uvar;
2798 EXT MGVTBL PL_vtbl_mutex;
2799 #endif /* USE_THREADS */
2801 EXT MGVTBL PL_vtbl_defelem;
2802 EXT MGVTBL PL_vtbl_regexp;
2803 EXT MGVTBL PL_vtbl_regdata;
2804 EXT MGVTBL PL_vtbl_regdatum;
2806 #ifdef USE_LOCALE_COLLATE
2807 EXT MGVTBL PL_vtbl_collxfrm;
2810 EXT MGVTBL PL_vtbl_amagic;
2811 EXT MGVTBL PL_vtbl_amagicelem;
2813 EXT MGVTBL PL_vtbl_backref;
2815 #endif /* !DOINIT */
2818 fallback_amg, abs_amg,
2819 bool__amg, nomethod_amg,
2820 string_amg, numer_amg,
2821 add_amg, add_ass_amg,
2822 subtr_amg, subtr_ass_amg,
2823 mult_amg, mult_ass_amg,
2824 div_amg, div_ass_amg,
2825 modulo_amg, modulo_ass_amg,
2826 pow_amg, pow_ass_amg,
2827 lshift_amg, lshift_ass_amg,
2828 rshift_amg, rshift_ass_amg,
2829 band_amg, band_ass_amg,
2830 bor_amg, bor_ass_amg,
2831 bxor_amg, bxor_ass_amg,
2844 repeat_amg, repeat_ass_amg,
2845 concat_amg, concat_ass_amg,
2847 to_sv_amg, to_av_amg,
2848 to_hv_amg, to_gv_amg,
2849 to_cv_amg, iter_amg,
2851 /* Do not leave a trailing comma here. C9X allows it, C89 doesn't. */
2854 #define NofAMmeth max_amg_code
2857 EXTCONST char * PL_AMG_names[NofAMmeth] = {
2858 "fallback", "abs", /* "fallback" should be the first. */
2892 EXTCONST char * PL_AMG_names[NofAMmeth];
2893 #endif /* def INITAMAGIC */
2901 CV* table[NofAMmeth];
2904 struct am_table_short {
2909 typedef struct am_table AMT;
2910 typedef struct am_table_short AMTS;
2912 #define AMGfallNEVER 1
2914 #define AMGfallYES 3
2916 #define AMTf_AMAGIC 1
2917 #define AMT_AMAGIC(amt) ((amt)->flags & AMTf_AMAGIC)
2918 #define AMT_AMAGIC_on(amt) ((amt)->flags |= AMTf_AMAGIC)
2919 #define AMT_AMAGIC_off(amt) ((amt)->flags &= ~AMTf_AMAGIC)
2923 * some compilers like to redefine cos et alia as faster
2924 * (and less accurate?) versions called F_cos et cetera (Quidquid
2925 * latine dictum sit, altum viditur.) This trick collides with
2926 * the Perl overloading (amg). The following #defines fool both.
2931 # define F_atan2_amg atan2_amg
2934 # define F_cos_amg cos_amg
2937 # define F_exp_amg exp_amg
2940 # define F_log_amg log_amg
2943 # define F_pow_amg pow_amg
2946 # define F_sin_amg sin_amg
2949 # define F_sqrt_amg sqrt_amg
2951 #endif /* _FASTMATH */
2953 #define PERLDB_ALL (PERLDBf_SUB | PERLDBf_LINE | \
2954 PERLDBf_NOOPT | PERLDBf_INTER | \
2955 PERLDBf_SUBLINE| PERLDBf_SINGLE| \
2956 PERLDBf_NAMEEVAL| PERLDBf_NAMEANON)
2957 /* No _NONAME, _GOTO */
2958 #define PERLDBf_SUB 0x01 /* Debug sub enter/exit */
2959 #define PERLDBf_LINE 0x02 /* Keep line # */
2960 #define PERLDBf_NOOPT 0x04 /* Switch off optimizations */
2961 #define PERLDBf_INTER 0x08 /* Preserve more data for
2962 later inspections */
2963 #define PERLDBf_SUBLINE 0x10 /* Keep subr source lines */
2964 #define PERLDBf_SINGLE 0x20 /* Start with single-step on */
2965 #define PERLDBf_NONAME 0x40 /* For _SUB: no name of the subr */
2966 #define PERLDBf_GOTO 0x80 /* Report goto: call DB::goto */
2967 #define PERLDBf_NAMEEVAL 0x100 /* Informative names for evals */
2968 #define PERLDBf_NAMEANON 0x200 /* Informative names for anon subs */
2970 #define PERLDB_SUB (PL_perldb && (PL_perldb & PERLDBf_SUB))
2971 #define PERLDB_LINE (PL_perldb && (PL_perldb & PERLDBf_LINE))
2972 #define PERLDB_NOOPT (PL_perldb && (PL_perldb & PERLDBf_NOOPT))
2973 #define PERLDB_INTER (PL_perldb && (PL_perldb & PERLDBf_INTER))
2974 #define PERLDB_SUBLINE (PL_perldb && (PL_perldb & PERLDBf_SUBLINE))
2975 #define PERLDB_SINGLE (PL_perldb && (PL_perldb & PERLDBf_SINGLE))
2976 #define PERLDB_SUB_NN (PL_perldb && (PL_perldb & (PERLDBf_NONAME)))
2977 #define PERLDB_GOTO (PL_perldb && (PL_perldb & PERLDBf_GOTO))
2978 #define PERLDB_NAMEEVAL (PL_perldb && (PL_perldb & PERLDBf_NAMEEVAL))
2979 #define PERLDB_NAMEANON (PL_perldb && (PL_perldb & PERLDBf_NAMEANON))
2982 #ifdef USE_LOCALE_NUMERIC
2984 #define SET_NUMERIC_STANDARD() \
2986 if (! PL_numeric_standard) \
2987 set_numeric_standard(); \
2990 #define SET_NUMERIC_LOCAL() \
2992 if (! PL_numeric_local) \
2993 set_numeric_local(); \
2996 #define IS_NUMERIC_RADIX(c) \
2997 ((PL_hints & HINT_LOCALE) && \
2998 PL_numeric_radix && (c) == PL_numeric_radix)
3000 #define RESTORE_NUMERIC_LOCAL() if ((PL_hints & HINT_LOCALE) && PL_numeric_standard) SET_NUMERIC_LOCAL()
3001 #define RESTORE_NUMERIC_STANDARD() if ((PL_hints & HINT_LOCALE) && PL_numeric_local) SET_NUMERIC_STANDARD()
3002 #define Atof my_atof
3004 #else /* !USE_LOCALE_NUMERIC */
3006 #define SET_NUMERIC_STANDARD() /**/
3007 #define SET_NUMERIC_LOCAL() /**/
3008 #define IS_NUMERIC_RADIX(c) (0)
3009 #define RESTORE_NUMERIC_LOCAL() /**/
3010 #define RESTORE_NUMERIC_STANDARD() /**/
3011 #define Atof Perl_atof
3013 #endif /* !USE_LOCALE_NUMERIC */
3015 #if !defined(Atol) && defined(HAS_LONG_LONG)
3016 # if !defined(Atol) && defined(HAS_STRTOLL)
3017 # define Atol(s) strtoll(s, (char**)NULL, 10)
3019 # if !defined(Atol) && defined(HAS_ATOLL)
3023 /* is there atoq() anywhere? */
3025 # define Atol atol /* we assume atol being available anywhere */
3028 #if !defined(Strtoul) && defined(USE_LONG_LONG) && defined(HAS_LONG_LONG) \
3029 && defined(HAS_STRTOULL)
3030 # define Strtoul strtoull
3032 /* is there atouq() anywhere? */
3033 #if !defined(Strtoul) && defined(USE_64_BITS) && defined(HAS_STRTOUQ)
3034 # define Strtoul strtouq
3036 #if !defined(Strtoul)
3037 # define Strtoul strtoul /* we assume strtoul being available anywhere */
3040 #if !defined(PERLIO_IS_STDIO) && defined(HASATTRIBUTE)
3042 * Now we have __attribute__ out of the way
3046 #define printf PerlIO_stdoutf
3049 #ifndef PERL_SCRIPT_MODE
3050 #define PERL_SCRIPT_MODE "r"
3054 * Some operating systems are stingy with stack allocation,
3055 * so perl may have to guard against stack overflow.
3057 #ifndef PERL_STACK_OVERFLOW_CHECK
3058 #define PERL_STACK_OVERFLOW_CHECK() NOOP
3062 * Some nonpreemptive operating systems find it convenient to
3063 * check for asynchronous conditions after each op execution.
3064 * Keep this check simple, or it may slow down execution
3067 #ifndef PERL_ASYNC_CHECK
3068 #define PERL_ASYNC_CHECK() NOOP
3072 * On some operating systems, a memory allocation may succeed,
3073 * but put the process too close to the system's comfort limit.
3074 * In this case, PERL_ALLOC_CHECK frees the pointer and sets
3077 #ifndef PERL_ALLOC_CHECK
3078 #define PERL_ALLOC_CHECK(p) NOOP
3082 * nice_chunk and nice_chunk size need to be set
3083 * and queried under the protection of sv_mutex
3085 #define offer_nice_chunk(chunk, chunk_size) do { \
3087 if (!PL_nice_chunk) { \
3088 PL_nice_chunk = (char*)(chunk); \
3089 PL_nice_chunk_size = (chunk_size); \
3098 # include <sys/ipc.h>
3099 # include <sys/sem.h>
3100 # ifndef HAS_UNION_SEMUN /* Provide the union semun. */
3103 struct semid_ds *buf;
3104 unsigned short *array;
3107 # ifdef USE_SEMCTL_SEMUN
3108 # ifdef IRIX32_SEMUN_BROKEN_BY_GCC
3109 union gccbug_semun {
3111 struct semid_ds *buf;
3112 unsigned short *array;
3115 # define semun gccbug_semun
3117 # define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun)
3119 # ifdef USE_SEMCTL_SEMID_DS
3120 # define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buf)
3127 #ifdef I_SYS_STATVFS
3128 # include <sys/statvfs.h> /* for f?statvfs() */
3131 # include <sys/mount.h> /* for *BSD f?statfs() */
3134 # include <mntent.h> /* for getmntent() */
3137 # include <sys/statfs.h> /* for some statfs() */
3141 # define sv IRIX_sv /* kludge: IRIX has an sv of its own */
3143 # include <sys/vfs.h> /* for some statfs() */
3149 # include <ustat.h> /* for ustat() */
3152 #if !defined(PERL_MOUNT_NOSUID) && defined(MOUNT_NOSUID)
3153 # define PERL_MOUNT_NOSUID MOUNT_NOSUID
3155 #if !defined(PERL_MOUNT_NOSUID) && defined(MNT_NOSUID)
3156 # define PERL_MOUNT_NOSUID MNT_NOSUID
3158 #if !defined(PERL_MOUNT_NOSUID) && defined(MS_NOSUID)
3159 # define PERL_MOUNT_NOSUID MS_NOSUID
3161 #if !defined(PERL_MOUNT_NOSUID) && defined(M_NOSUID)
3162 # define PERL_MOUNT_NOSUID M_NOSUID
3165 #endif /* IAMSUID */
3167 /* and finally... */
3168 #define PERL_PATCHLEVEL_H_IMPLICIT
3169 #include "patchlevel.h"
3170 #undef PERL_PATCHLEVEL_H_IMPLICIT
3178 so that Configure picks them up. */
3180 #endif /* Include guard */