1fffc52f62868f2cb1b7d5238f1e30f8dda4aedd
[p5sagit/p5-mst-13.2.git] / perl.h
1 /*    perl.h
2  *
3  *    Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4  *    2000, 2001, 2002, 2003, 2004, 2005, 2006, by Larry Wall and others
5  *
6  *    You may distribute under the terms of either the GNU General Public
7  *    License or the Artistic License, as specified in the README file.
8  *
9  */
10
11 #ifndef H_PERL
12 #define H_PERL 1
13
14 #ifdef PERL_FOR_X2P
15 /*
16  * This file is being used for x2p stuff.
17  * Above symbol is defined via -D in 'x2p/Makefile.SH'
18  * Decouple x2p stuff from some of perls more extreme eccentricities.
19  */
20 #undef MULTIPLICITY
21 #undef USE_STDIO
22 #define USE_STDIO
23 #endif /* PERL_FOR_X2P */
24
25 #if defined(DGUX)
26 #include <sys/fcntl.h>
27 #endif
28
29 #ifdef VOIDUSED
30 #   undef VOIDUSED
31 #endif 
32 #define VOIDUSED 1
33
34 #ifdef PERL_MICRO
35 #   include "uconfig.h"
36 #else
37 #   include "config.h"
38 #endif
39
40 /* See L<perlguts/"The Perl API"> for detailed notes on
41  * PERL_IMPLICIT_CONTEXT and PERL_IMPLICIT_SYS */
42
43 /* Note that from here --> to <-- the same logic is
44  * repeated in makedef.pl, so be certain to update
45  * both places when editing. */
46
47 #ifdef PERL_IMPLICIT_SYS
48 /* PERL_IMPLICIT_SYS implies PerlMemShared != PerlMem
49    so use slab allocator to avoid lots of MUTEX overhead
50  */
51 #  ifndef PL_OP_SLAB_ALLOC
52 #    define PL_OP_SLAB_ALLOC
53 #  endif
54 #endif
55
56 #ifdef USE_ITHREADS
57 #  if !defined(MULTIPLICITY)
58 #    define MULTIPLICITY
59 #  endif
60 #endif
61
62 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
63 #  ifndef PERL_GLOBAL_STRUCT
64 #    define PERL_GLOBAL_STRUCT
65 #  endif
66 #endif
67
68 #ifdef PERL_GLOBAL_STRUCT
69 #  ifndef MULTIPLICITY
70 #    define MULTIPLICITY
71 #  endif
72 #endif
73
74 #ifdef MULTIPLICITY
75 #  ifndef PERL_IMPLICIT_CONTEXT
76 #    define PERL_IMPLICIT_CONTEXT
77 #  endif
78 #endif
79
80 /* undef WIN32 when building on Cygwin (for libwin32) - gph */
81 #ifdef __CYGWIN__
82 #   undef WIN32
83 #   undef _WIN32
84 #endif
85
86 #if defined(__SYMBIAN32__) || (defined(__VC32__) && defined(WINS))
87 #   ifndef SYMBIAN
88 #       define SYMBIAN
89 #   endif
90 #endif
91
92 #ifdef __SYMBIAN32__
93 #  include "symbian/symbian_proto.h"
94 #endif
95
96 /* Any stack-challenged places.  The limit varies (and often
97  * is configurable), but using more than a kilobyte of stack
98  * is usually dubious in these systems. */
99 #if defined(EPOC) || defined(__SYMBIAN32__)
100 /* EPOC/Symbian: need to work around the SDK features. *
101  * On WINS: MS VC5 generates calls to _chkstk,         *
102  * if a "large" stack frame is allocated.              *
103  * gcc on MARM does not generate calls like these.     */
104 #   define USE_HEAP_INSTEAD_OF_STACK
105 #endif
106
107 #/* Use the reentrant APIs like localtime_r and getpwent_r */
108 /* Win32 has naturally threadsafe libraries, no need to use any _r variants. */
109 #if defined(USE_ITHREADS) && !defined(USE_REENTRANT_API) && !defined(NETWARE) && !defined(WIN32) && !defined(PERL_DARWIN)
110 #   define USE_REENTRANT_API
111 #endif
112
113 /* <--- here ends the logic shared by perl.h and makedef.pl */
114
115 /*
116  * PERL_DARWIN for MacOSX (__APPLE__ exists but is not officially sanctioned)
117  * (The -DPERL_DARWIN comes from the hints/darwin.sh.)
118  * __bsdi__ for BSD/OS
119  */
120 #if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(PERL_DARWIN) || defined(__bsdi__) || defined(BSD41) || defined(BSD42) || defined(BSD43) || defined(BSD44)
121 #   ifndef BSDish
122 #       define BSDish
123 #   endif
124 #endif
125
126 #ifdef PERL_GLOBAL_STRUCT
127 #  ifndef PERL_GET_VARS
128 #    ifdef PERL_GLOBAL_STRUCT_PRIVATE
129        extern struct perl_vars* Perl_GetVarsPrivate();
130 #      define PERL_GET_VARS() Perl_GetVarsPrivate() /* see miniperlmain.c */
131 #      ifndef PERLIO_FUNCS_CONST
132 #        define PERLIO_FUNCS_CONST /* Can't have these lying around. */
133 #      endif
134 #    else
135 #      define PERL_GET_VARS() PL_VarsPtr
136 #    endif
137 #  endif
138 #endif
139
140 #define pVAR    PERL_UNUSED_DECL(register struct perl_vars* const my_vars)
141
142 #ifdef PERL_GLOBAL_STRUCT
143 #  define dVAR          pVAR    = (struct perl_vars*)PERL_GET_VARS()
144 #else
145 #  define dVAR          dNOOP
146 #endif
147
148 #ifdef PERL_IMPLICIT_CONTEXT
149 #  ifndef MULTIPLICITY
150 #    define MULTIPLICITY
151 #  endif
152 #  define tTHX  PerlInterpreter*
153 #  define pTHX PERL_UNUSED_DECL(register tTHX my_perl)
154 #  define aTHX  my_perl
155 #  ifdef PERL_GLOBAL_STRUCT
156 #    define dTHXa(a)    dVAR; pTHX = (tTHX)a
157 #  else
158 #    define dTHXa(a)    pTHX = (tTHX)a
159 #  endif
160 #  ifdef PERL_GLOBAL_STRUCT
161 #    define dTHX                dVAR; pTHX = PERL_GET_THX
162 #  else
163 #    define dTHX                pTHX = PERL_GET_THX
164 #  endif
165 #  define pTHX_         pTHX,
166 #  define aTHX_         aTHX,
167 #  define pTHX_1        2
168 #  define pTHX_2        3
169 #  define pTHX_3        4
170 #  define pTHX_4        5
171 #  define pTHX_5        6
172 #  define pTHX_6        7
173 #  define pTHX_7        8
174 #  define pTHX_8        9
175 #  define pTHX_9        10
176 #  if defined(DEBUGGING) && !defined(PERL_TRACK_MEMPOOL)
177 #    define PERL_TRACK_MEMPOOL
178 #  endif
179 #else
180 #  undef PERL_TRACK_MEMPOOL
181 #endif
182
183 #define STATIC static
184 #define CPERLscope(x) x
185 #define CPERLarg void
186 #define CPERLarg_
187 #define _CPERLarg
188 #define PERL_OBJECT_THIS
189 #define _PERL_OBJECT_THIS
190 #define PERL_OBJECT_THIS_
191 #define CALL_FPTR(fptr) (*fptr)
192
193 #define CALLRUNOPS  CALL_FPTR(PL_runops)
194 #define CALLREGCOMP CALL_FPTR(PL_regcompp)
195 #define CALLREGEXEC CALL_FPTR(PL_regexecp)
196 #define CALLREG_INTUIT_START CALL_FPTR(PL_regint_start)
197 #define CALLREG_INTUIT_STRING CALL_FPTR(PL_regint_string)
198 #define CALLREGFREE CALL_FPTR(PL_regfree)
199
200 /* Note that there are C compilers such as MetroWerks CodeWarrior
201  * which do not have an "inlined" way (like the gcc __attribute__) of
202  * marking unused variables (they need e.g. a #pragma, and using e.g.
203  * (void)x is considered dubious) and therefore cpp macros like
204  * PERL_UNUSED_DECL(x) cannot work for this purpose. */
205
206 #if defined(__SYMBIAN32__) && defined(__GNUC__)
207 #  ifdef __cplusplus
208 #    define PERL_UNUSED_DECL(x) /*@unused@*/ x
209 #  else
210 #    define PERL_UNUSED_DECL(x) /*@unused@*/ x __attribute__((unused))
211 #  endif
212 #endif
213
214 #ifndef PERL_UNUSED_DECL
215 #  if defined(HASATTRIBUTE_UNUSED) && !defined(__cplusplus)
216 #    define PERL_UNUSED_DECL(x) /*@unused@*/ x __attribute__unused__
217 #  else
218 #    define PERL_UNUSED_DECL(x) /*@unused@*/ x
219 #  endif
220 #endif
221  
222 /* gcc -Wall:
223  * for silencing unused variables that are actually used most of the time,
224  * but we cannot quite get rid of, such as "ax" in PPCODE+noargs xsubs
225  */
226 #ifndef PERL_UNUSED_ARG
227 /* Which lint? Which <note.h>? Need more more robust cpp test. */
228 #  ifdef lint
229 #    include <note.h>
230 #    define PERL_UNUSED_ARG(x) NOTE(ARGUNUSED(x))
231 #  else
232 #    define PERL_UNUSED_ARG(x) ((void)x)
233 #  endif
234 #endif
235 #ifndef PERL_UNUSED_VAR
236 #  define PERL_UNUSED_VAR(x) ((void)x)
237 #endif
238
239 #ifdef USE_ITHREADS
240 #  define PERL_UNUSED_CONTEXT PERL_UNUSED_ARG(my_perl)
241 #else
242 #  define PERL_UNUSED_CONTEXT
243 #endif
244
245 #define NOOP (void)0
246 #define dNOOP PERL_UNUSED_DECL(extern int Perl___notused)
247
248 #ifndef pTHX
249 /* Don't bother defining tTHX and sTHX; using them outside
250  * code guarded by PERL_IMPLICIT_CONTEXT is an error.
251  */
252 #  define pTHX          void
253 #  define pTHX_
254 #  define aTHX
255 #  define aTHX_
256 #  define dTHXa(a)      dNOOP
257 #  define dTHX          dNOOP
258 #  define pTHX_1        1       
259 #  define pTHX_2        2
260 #  define pTHX_3        3
261 #  define pTHX_4        4
262 #  define pTHX_5        5
263 #  define pTHX_6        6
264 #  define pTHX_7        7
265 #  define pTHX_8        8
266 #  define pTHX_9        9
267 #endif
268
269 #ifndef dVAR
270 #  define dVAR          dNOOP
271 #endif
272
273 /* these are only defined for compatibility; should not be used internally */
274 #if !defined(pTHXo) && !defined(PERL_CORE)
275 #  define pTHXo         pTHX
276 #  define pTHXo_        pTHX_
277 #  define aTHXo         aTHX
278 #  define aTHXo_        aTHX_
279 #  define dTHXo         dTHX
280 #  define dTHXoa(x)     dTHXa(x)
281 #endif
282
283 #ifndef pTHXx
284 #  define pTHXx         register PerlInterpreter *my_perl
285 #  define pTHXx_        pTHXx,
286 #  define aTHXx         my_perl
287 #  define aTHXx_        aTHXx,
288 #  define dTHXx         dTHX
289 #endif
290
291 /* Under PERL_IMPLICIT_SYS (used in Windows for fork emulation)
292  * PerlIO_foo() expands to PL_StdIO->pFOO(PL_StdIO, ...).
293  * dTHXs is therefore needed for all functions using PerlIO_foo(). */
294 #ifdef PERL_IMPLICIT_SYS
295 #  ifdef PERL_GLOBAL_STRUCT_PRIVATE
296 #    define dTHXs               dVAR; dTHX
297 #  else
298 #    define dTHXs               dTHX
299 #  endif
300 #else
301 #  ifdef PERL_GLOBAL_STRUCT_PRIVATE
302 #    define dTHXs               dVAR
303 #  else
304 #    define dTHXs               dNOOP
305 #  endif
306 #endif
307
308 #undef START_EXTERN_C
309 #undef END_EXTERN_C
310 #undef EXTERN_C
311 #ifdef __cplusplus
312 #  define START_EXTERN_C extern "C" {
313 #  define END_EXTERN_C }
314 #  define EXTERN_C extern "C"
315 #else
316 #  define START_EXTERN_C
317 #  define END_EXTERN_C
318 #  define EXTERN_C extern
319 #endif
320
321 /* Some platforms require marking function declarations
322  * for them to be exportable.  Used in perlio.h, proto.h
323  * is handled either by the makedef.pl or by defining the
324  * PERL_CALLCONV to be something special.  See also the
325  * definition of XS() in XSUB.h. */
326 #ifndef PERL_EXPORT_C
327 #  define PERL_EXPORT_C extern
328 #endif
329 #ifndef PERL_XS_EXPORT_C
330 #  define PERL_XS_EXPORT_C
331 #endif
332
333 #ifdef OP_IN_REGISTER
334 #  ifdef __GNUC__
335 #    define stringify_immed(s) #s
336 #    define stringify(s) stringify_immed(s)
337 register struct op *Perl_op asm(stringify(OP_IN_REGISTER));
338 #  endif
339 #endif
340
341 #if defined(__STRICT_ANSI__) && defined(PERL_GCC_PEDANTIC)
342 #  if !defined(PERL_GCC_BRACE_GROUPS_FORBIDDEN)
343 #    define PERL_GCC_BRACE_GROUPS_FORBIDDEN
344 #  endif
345 #endif
346
347 /*
348  * STMT_START { statements; } STMT_END;
349  * can be used as a single statement, as in
350  * if (x) STMT_START { ... } STMT_END; else ...
351  *
352  * Trying to select a version that gives no warnings...
353  */
354 #if !(defined(STMT_START) && defined(STMT_END))
355 # if defined(__GNUC__) && !defined(PERL_GCC_BRACE_GROUPS_FORBIDDEN) && !defined(__cplusplus)
356 #   define STMT_START   (void)( /* gcc supports "({ STATEMENTS; })" */
357 #   define STMT_END     )
358 # else
359    /* Now which other defined()s do we need here ??? */
360 #  if (VOIDFLAGS) && (defined(sun) || defined(__sun__)) && !defined(__GNUC__)
361 #   define STMT_START   if (1)
362 #   define STMT_END     else (void)0
363 #  else
364 #   define STMT_START   do
365 #   define STMT_END     while (0)
366 #  endif
367 # endif
368 #endif
369
370 #define WITH_THX(s) STMT_START { dTHX; s; } STMT_END
371 #define WITH_THR(s) WITH_THX(s)
372
373 #ifndef BYTEORDER  /* Should never happen -- byteorder is in config.h */
374 #   define BYTEORDER 0x1234
375 #endif
376
377 /* Overall memory policy? */
378 #ifndef CONSERVATIVE
379 #   define LIBERAL 1
380 #endif
381
382 #if 'A' == 65 && 'I' == 73 && 'J' == 74 && 'Z' == 90
383 #define ASCIIish
384 #else
385 #undef  ASCIIish
386 #endif
387
388 /*
389  * The following contortions are brought to you on behalf of all the
390  * standards, semi-standards, de facto standards, not-so-de-facto standards
391  * of the world, as well as all the other botches anyone ever thought of.
392  * The basic theory is that if we work hard enough here, the rest of the
393  * code can be a lot prettier.  Well, so much for theory.  Sorry, Henry...
394  */
395
396 /* define this once if either system, instead of cluttering up the src */
397 #if defined(MSDOS) || defined(atarist) || defined(WIN32) || defined(NETWARE)
398 #define DOSISH 1
399 #endif
400
401 #if defined(__STDC__) || defined(_AIX) || defined(__stdc__) || defined(__cplusplus) || defined(EPOC) || defined(NETWARE) || defined(__SYMBIAN32__)
402 # define STANDARD_C 1
403 #endif
404
405 #if defined(__cplusplus) || defined(WIN32) || defined(__sgi) || defined(__EMX__) || defined(__DGUX) || defined(EPOC) || defined(__QNX__) || defined(NETWARE) || defined(PERL_MICRO)
406 # define DONT_DECLARE_STD 1
407 #endif
408
409 #if defined(HASVOLATILE) || defined(STANDARD_C)
410 #   ifdef __cplusplus
411 #       define VOL              /* to temporarily suppress warnings */
412 #   else
413 #       define VOL volatile
414 #   endif
415 #else
416 #   define VOL
417 #endif
418
419 #define TAINT           (PL_tainted = TRUE)
420 #define TAINT_NOT       (PL_tainted = FALSE)
421 #define TAINT_IF(c)     if (c) { PL_tainted = TRUE; }
422 #define TAINT_ENV()     if (PL_tainting) { taint_env(); }
423 #define TAINT_PROPER(s) if (PL_tainting) { taint_proper(NULL, s); }
424
425 /* XXX All process group stuff is handled in pp_sys.c.  Should these
426    defines move there?  If so, I could simplify this a lot. --AD  9/96.
427 */
428 /* Process group stuff changed from traditional BSD to POSIX.
429    perlfunc.pod documents the traditional BSD-style syntax, so we'll
430    try to preserve that, if possible.
431 */
432 #ifdef HAS_SETPGID
433 #  define BSD_SETPGRP(pid, pgrp)        setpgid((pid), (pgrp))
434 #else
435 #  if defined(HAS_SETPGRP) && defined(USE_BSD_SETPGRP)
436 #    define BSD_SETPGRP(pid, pgrp)      setpgrp((pid), (pgrp))
437 #  else
438 #    ifdef HAS_SETPGRP2  /* DG/UX */
439 #      define BSD_SETPGRP(pid, pgrp)    setpgrp2((pid), (pgrp))
440 #    endif
441 #  endif
442 #endif
443 #if defined(BSD_SETPGRP) && !defined(HAS_SETPGRP)
444 #  define HAS_SETPGRP  /* Well, effectively it does . . . */
445 #endif
446
447 /* getpgid isn't POSIX, but at least Solaris and Linux have it, and it makes
448     our life easier :-) so we'll try it.
449 */
450 #ifdef HAS_GETPGID
451 #  define BSD_GETPGRP(pid)              getpgid((pid))
452 #else
453 #  if defined(HAS_GETPGRP) && defined(USE_BSD_GETPGRP)
454 #    define BSD_GETPGRP(pid)            getpgrp((pid))
455 #  else
456 #    ifdef HAS_GETPGRP2  /* DG/UX */
457 #      define BSD_GETPGRP(pid)          getpgrp2((pid))
458 #    endif
459 #  endif
460 #endif
461 #if defined(BSD_GETPGRP) && !defined(HAS_GETPGRP)
462 #  define HAS_GETPGRP  /* Well, effectively it does . . . */
463 #endif
464
465 /* These are not exact synonyms, since setpgrp() and getpgrp() may
466    have different behaviors, but perl.h used to define USE_BSDPGRP
467    (prior to 5.003_05) so some extension might depend on it.
468 */
469 #if defined(USE_BSD_SETPGRP) || defined(USE_BSD_GETPGRP)
470 #  ifndef USE_BSDPGRP
471 #    define USE_BSDPGRP
472 #  endif
473 #endif
474
475 /* HP-UX 10.X CMA (Common Multithreaded Architecure) insists that
476    pthread.h must be included before all other header files.
477 */
478 #if defined(USE_ITHREADS) && defined(PTHREAD_H_FIRST) && defined(I_PTHREAD)
479 #  include <pthread.h>
480 #endif
481
482 #ifndef _TYPES_         /* If types.h defines this it's easy. */
483 #   ifndef major                /* Does everyone's types.h define this? */
484 #       include <sys/types.h>
485 #   endif
486 #endif
487
488 #ifdef __cplusplus
489 #  ifndef I_STDARG
490 #    define I_STDARG 1
491 #  endif
492 #endif
493
494 #ifdef I_STDARG
495 #  include <stdarg.h>
496 #else
497 #  ifdef I_VARARGS
498 #    include <varargs.h>
499 #  endif
500 #endif
501
502 #ifdef USE_NEXT_CTYPE
503
504 #if NX_CURRENT_COMPILER_RELEASE >= 500
505 #  include <bsd/ctypes.h>
506 #else
507 #  if NX_CURRENT_COMPILER_RELEASE >= 400
508 #    include <objc/NXCType.h>
509 #  else /*  NX_CURRENT_COMPILER_RELEASE < 400 */
510 #    include <appkit/NXCType.h>
511 #  endif /*  NX_CURRENT_COMPILER_RELEASE >= 400 */
512 #endif /*  NX_CURRENT_COMPILER_RELEASE >= 500 */
513
514 #else /* !USE_NEXT_CTYPE */
515 #include <ctype.h>
516 #endif /* USE_NEXT_CTYPE */
517
518 #ifdef METHOD   /* Defined by OSF/1 v3.0 by ctype.h */
519 #undef METHOD
520 #endif
521
522 #ifdef PERL_MICRO
523 #   define NO_LOCALE
524 #endif
525
526 #ifdef I_LOCALE
527 #   include <locale.h>
528 #endif
529
530 #if !defined(NO_LOCALE) && defined(HAS_SETLOCALE)
531 #   define USE_LOCALE
532 #   if !defined(NO_LOCALE_COLLATE) && defined(LC_COLLATE) \
533        && defined(HAS_STRXFRM)
534 #       define USE_LOCALE_COLLATE
535 #   endif
536 #   if !defined(NO_LOCALE_CTYPE) && defined(LC_CTYPE)
537 #       define USE_LOCALE_CTYPE
538 #   endif
539 #   if !defined(NO_LOCALE_NUMERIC) && defined(LC_NUMERIC)
540 #       define USE_LOCALE_NUMERIC
541 #   endif
542 #endif /* !NO_LOCALE && HAS_SETLOCALE */
543
544 #include <setjmp.h>
545
546 #ifdef I_SYS_PARAM
547 #   ifdef PARAM_NEEDS_TYPES
548 #       include <sys/types.h>
549 #   endif
550 #   include <sys/param.h>
551 #endif
552
553 /* Use all the "standard" definitions? */
554 #if defined(STANDARD_C) && defined(I_STDLIB)
555 #   include <stdlib.h>
556 #endif
557
558 /* If this causes problems, set i_unistd=undef in the hint file.  */
559 #ifdef I_UNISTD
560 #   include <unistd.h>
561 #endif
562
563 #ifdef __SYMBIAN32__
564 #   undef _SC_ARG_MAX /* Symbian has _SC_ARG_MAX but no sysconf() */
565 #endif
566
567 #if defined(HAS_SYSCALL) && !defined(HAS_SYSCALL_PROTO) && !defined(PERL_MICRO)
568 int syscall(int, ...);
569 #endif
570
571 #if defined(HAS_USLEEP) && !defined(HAS_USLEEP_PROTO) && !defined(PERL_MICRO)
572 int usleep(unsigned int);
573 #endif
574
575 #ifdef PERL_MICRO /* Last chance to export Perl_my_swap */
576 #  define MYSWAP
577 #endif
578
579 #ifdef PERL_CORE
580
581 /* macros for correct constant construction */
582 # if INTSIZE >= 2
583 #  define U16_CONST(x) ((U16)x##U)
584 # else
585 #  define U16_CONST(x) ((U16)x##UL)
586 # endif
587
588 # if INTSIZE >= 4
589 #  define U32_CONST(x) ((U32)x##U)
590 # else
591 #  define U32_CONST(x) ((U32)x##UL)
592 # endif
593
594 # ifdef HAS_QUAD
595 #  if INTSIZE >= 8
596 #   define U64_CONST(x) ((U64)x##U)
597 #  elif LONGSIZE >= 8
598 #   define U64_CONST(x) ((U64)x##UL)
599 #  elif QUADKIND == QUAD_IS_LONG_LONG
600 #   define U64_CONST(x) ((U64)x##ULL)
601 #  else /* best guess we can make */
602 #   define U64_CONST(x) ((U64)x##UL)
603 #  endif
604 # endif
605
606 /* byte-swapping functions for big-/little-endian conversion */
607 # define _swab_16_(x) ((U16)( \
608          (((U16)(x) & U16_CONST(0x00ff)) << 8) | \
609          (((U16)(x) & U16_CONST(0xff00)) >> 8) ))
610
611 # define _swab_32_(x) ((U32)( \
612          (((U32)(x) & U32_CONST(0x000000ff)) << 24) | \
613          (((U32)(x) & U32_CONST(0x0000ff00)) <<  8) | \
614          (((U32)(x) & U32_CONST(0x00ff0000)) >>  8) | \
615          (((U32)(x) & U32_CONST(0xff000000)) >> 24) ))
616
617 # ifdef HAS_QUAD
618 #  define _swab_64_(x) ((U64)( \
619           (((U64)(x) & U64_CONST(0x00000000000000ff)) << 56) | \
620           (((U64)(x) & U64_CONST(0x000000000000ff00)) << 40) | \
621           (((U64)(x) & U64_CONST(0x0000000000ff0000)) << 24) | \
622           (((U64)(x) & U64_CONST(0x00000000ff000000)) <<  8) | \
623           (((U64)(x) & U64_CONST(0x000000ff00000000)) >>  8) | \
624           (((U64)(x) & U64_CONST(0x0000ff0000000000)) >> 24) | \
625           (((U64)(x) & U64_CONST(0x00ff000000000000)) >> 40) | \
626           (((U64)(x) & U64_CONST(0xff00000000000000)) >> 56) ))
627 # endif
628
629 /*----------------------------------------------------------------------------*/
630 # if BYTEORDER == 0x1234 || BYTEORDER == 0x12345678  /*     little-endian     */
631 /*----------------------------------------------------------------------------*/
632 #  define my_htole16(x)         (x)
633 #  define my_letoh16(x)         (x)
634 #  define my_htole32(x)         (x)
635 #  define my_letoh32(x)         (x)
636 #  define my_htobe16(x)         _swab_16_(x)
637 #  define my_betoh16(x)         _swab_16_(x)
638 #  define my_htobe32(x)         _swab_32_(x)
639 #  define my_betoh32(x)         _swab_32_(x)
640 #  ifdef HAS_QUAD
641 #   define my_htole64(x)        (x)
642 #   define my_letoh64(x)        (x)
643 #   define my_htobe64(x)        _swab_64_(x)
644 #   define my_betoh64(x)        _swab_64_(x)
645 #  endif
646 #  define my_htoles(x)          (x)
647 #  define my_letohs(x)          (x)
648 #  define my_htolei(x)          (x)
649 #  define my_letohi(x)          (x)
650 #  define my_htolel(x)          (x)
651 #  define my_letohl(x)          (x)
652 #  if SHORTSIZE == 1
653 #   define my_htobes(x)         (x)
654 #   define my_betohs(x)         (x)
655 #  elif SHORTSIZE == 2
656 #   define my_htobes(x)         _swab_16_(x)
657 #   define my_betohs(x)         _swab_16_(x)
658 #  elif SHORTSIZE == 4
659 #   define my_htobes(x)         _swab_32_(x)
660 #   define my_betohs(x)         _swab_32_(x)
661 #  elif SHORTSIZE == 8
662 #   define my_htobes(x)         _swab_64_(x)
663 #   define my_betohs(x)         _swab_64_(x)
664 #  else
665 #   define PERL_NEED_MY_HTOBES
666 #   define PERL_NEED_MY_BETOHS
667 #  endif
668 #  if INTSIZE == 1
669 #   define my_htobei(x)         (x)
670 #   define my_betohi(x)         (x)
671 #  elif INTSIZE == 2
672 #   define my_htobei(x)         _swab_16_(x)
673 #   define my_betohi(x)         _swab_16_(x)
674 #  elif INTSIZE == 4
675 #   define my_htobei(x)         _swab_32_(x)
676 #   define my_betohi(x)         _swab_32_(x)
677 #  elif INTSIZE == 8
678 #   define my_htobei(x)         _swab_64_(x)
679 #   define my_betohi(x)         _swab_64_(x)
680 #  else
681 #   define PERL_NEED_MY_HTOBEI
682 #   define PERL_NEED_MY_BETOHI
683 #  endif
684 #  if LONGSIZE == 1
685 #   define my_htobel(x)         (x)
686 #   define my_betohl(x)         (x)
687 #  elif LONGSIZE == 2
688 #   define my_htobel(x)         _swab_16_(x)
689 #   define my_betohl(x)         _swab_16_(x)
690 #  elif LONGSIZE == 4
691 #   define my_htobel(x)         _swab_32_(x)
692 #   define my_betohl(x)         _swab_32_(x)
693 #  elif LONGSIZE == 8
694 #   define my_htobel(x)         _swab_64_(x)
695 #   define my_betohl(x)         _swab_64_(x)
696 #  else
697 #   define PERL_NEED_MY_HTOBEL
698 #   define PERL_NEED_MY_BETOHL
699 #  endif
700 #  define my_htolen(p,n)        NOOP
701 #  define my_letohn(p,n)        NOOP
702 #  define my_htoben(p,n)        my_swabn(p,n)
703 #  define my_betohn(p,n)        my_swabn(p,n)
704 /*----------------------------------------------------------------------------*/
705 # elif BYTEORDER == 0x4321 || BYTEORDER == 0x87654321  /*     big-endian      */
706 /*----------------------------------------------------------------------------*/
707 #  define my_htobe16(x)         (x)
708 #  define my_betoh16(x)         (x)
709 #  define my_htobe32(x)         (x)
710 #  define my_betoh32(x)         (x)
711 #  define my_htole16(x)         _swab_16_(x)
712 #  define my_letoh16(x)         _swab_16_(x)
713 #  define my_htole32(x)         _swab_32_(x)
714 #  define my_letoh32(x)         _swab_32_(x)
715 #  ifdef HAS_QUAD
716 #   define my_htobe64(x)        (x)
717 #   define my_betoh64(x)        (x)
718 #   define my_htole64(x)        _swab_64_(x)
719 #   define my_letoh64(x)        _swab_64_(x)
720 #  endif
721 #  define my_htobes(x)          (x)
722 #  define my_betohs(x)          (x)
723 #  define my_htobei(x)          (x)
724 #  define my_betohi(x)          (x)
725 #  define my_htobel(x)          (x)
726 #  define my_betohl(x)          (x)
727 #  if SHORTSIZE == 1
728 #   define my_htoles(x)         (x)
729 #   define my_letohs(x)         (x)
730 #  elif SHORTSIZE == 2
731 #   define my_htoles(x)         _swab_16_(x)
732 #   define my_letohs(x)         _swab_16_(x)
733 #  elif SHORTSIZE == 4
734 #   define my_htoles(x)         _swab_32_(x)
735 #   define my_letohs(x)         _swab_32_(x)
736 #  elif SHORTSIZE == 8
737 #   define my_htoles(x)         _swab_64_(x)
738 #   define my_letohs(x)         _swab_64_(x)
739 #  else
740 #   define PERL_NEED_MY_HTOLES
741 #   define PERL_NEED_MY_LETOHS
742 #  endif
743 #  if INTSIZE == 1
744 #   define my_htolei(x)         (x)
745 #   define my_letohi(x)         (x)
746 #  elif INTSIZE == 2
747 #   define my_htolei(x)         _swab_16_(x)
748 #   define my_letohi(x)         _swab_16_(x)
749 #  elif INTSIZE == 4
750 #   define my_htolei(x)         _swab_32_(x)
751 #   define my_letohi(x)         _swab_32_(x)
752 #  elif INTSIZE == 8
753 #   define my_htolei(x)         _swab_64_(x)
754 #   define my_letohi(x)         _swab_64_(x)
755 #  else
756 #   define PERL_NEED_MY_HTOLEI
757 #   define PERL_NEED_MY_LETOHI
758 #  endif
759 #  if LONGSIZE == 1
760 #   define my_htolel(x)         (x)
761 #   define my_letohl(x)         (x)
762 #  elif LONGSIZE == 2
763 #   define my_htolel(x)         _swab_16_(x)
764 #   define my_letohl(x)         _swab_16_(x)
765 #  elif LONGSIZE == 4
766 #   define my_htolel(x)         _swab_32_(x)
767 #   define my_letohl(x)         _swab_32_(x)
768 #  elif LONGSIZE == 8
769 #   define my_htolel(x)         _swab_64_(x)
770 #   define my_letohl(x)         _swab_64_(x)
771 #  else
772 #   define PERL_NEED_MY_HTOLEL
773 #   define PERL_NEED_MY_LETOHL
774 #  endif
775 #  define my_htolen(p,n)        my_swabn(p,n)
776 #  define my_letohn(p,n)        my_swabn(p,n)
777 #  define my_htoben(p,n)        NOOP
778 #  define my_betohn(p,n)        NOOP
779 /*----------------------------------------------------------------------------*/
780 # else /*                       all other byte-orders                         */
781 /*----------------------------------------------------------------------------*/
782 #  define PERL_NEED_MY_HTOLE16
783 #  define PERL_NEED_MY_LETOH16
784 #  define PERL_NEED_MY_HTOBE16
785 #  define PERL_NEED_MY_BETOH16
786 #  define PERL_NEED_MY_HTOLE32
787 #  define PERL_NEED_MY_LETOH32
788 #  define PERL_NEED_MY_HTOBE32
789 #  define PERL_NEED_MY_BETOH32
790 #  ifdef HAS_QUAD
791 #   define PERL_NEED_MY_HTOLE64
792 #   define PERL_NEED_MY_LETOH64
793 #   define PERL_NEED_MY_HTOBE64
794 #   define PERL_NEED_MY_BETOH64
795 #  endif
796 #  define PERL_NEED_MY_HTOLES
797 #  define PERL_NEED_MY_LETOHS
798 #  define PERL_NEED_MY_HTOBES
799 #  define PERL_NEED_MY_BETOHS
800 #  define PERL_NEED_MY_HTOLEI
801 #  define PERL_NEED_MY_LETOHI
802 #  define PERL_NEED_MY_HTOBEI
803 #  define PERL_NEED_MY_BETOHI
804 #  define PERL_NEED_MY_HTOLEL
805 #  define PERL_NEED_MY_LETOHL
806 #  define PERL_NEED_MY_HTOBEL
807 #  define PERL_NEED_MY_BETOHL
808 /*----------------------------------------------------------------------------*/
809 # endif /*                     end of byte-order macros                       */
810 /*----------------------------------------------------------------------------*/
811
812 /* The old value was hard coded at 1008. (4096-16) seems to be a bit faster,
813    at least on FreeBSD.  YMMV, so experiment.  */
814 #ifndef PERL_ARENA_SIZE
815 #define PERL_ARENA_SIZE 4080
816 #endif
817
818 #endif /* PERL_CORE */
819
820 /* We no longer default to creating a new SV for GvSV.
821    Do this before embed.  */
822 #ifndef PERL_CREATE_GVSV
823 #  ifndef PERL_DONT_CREATE_GVSV
824 #    define PERL_DONT_CREATE_GVSV
825 #  endif
826 #endif
827
828 #if !defined(HAS_WAITPID) && !defined(HAS_WAIT4) || defined(HAS_WAITPID_RUNTIME)
829 #define PERL_USES_PL_PIDSTATUS
830 #endif
831
832 #if !defined(OS2) && !defined(WIN32) && !defined(DJGPP) && !defined(EPOC) && !defined(__SYMBIAN32__) && !defined(MACOS_TRADITIONAL)
833 #define PERL_DEFAULT_DO_EXEC3_IMPLEMENTATION
834 #endif
835
836 /* Cannot include embed.h here on Win32 as win32.h has not 
837    yet been included and defines some config variables e.g. HAVE_INTERP_INTERN
838  */
839 #if !defined(PERL_FOR_X2P) && !(defined(WIN32)||defined(VMS))
840 #  include "embed.h"
841 #  ifndef PERL_MAD
842 #    undef op_getmad
843 #    define op_getmad(arg,pegop,slot) /*EMPTY*/
844 #  endif
845 #endif
846
847 #define MEM_SIZE Size_t
848
849 /* Round all values passed to malloc up, by default to a multiple of
850    sizeof(size_t)
851 */
852 #ifndef PERL_STRLEN_ROUNDUP_QUANTUM
853 #define PERL_STRLEN_ROUNDUP_QUANTUM Size_t_size
854 #endif
855
856 #if defined(STANDARD_C) && defined(I_STDDEF)
857 #   include <stddef.h>
858 #   define STRUCT_OFFSET(s,m)  offsetof(s,m)
859 #else
860 #   define STRUCT_OFFSET(s,m)  (Size_t)(&(((s *)0)->m))
861 #endif
862
863 #ifndef __SYMBIAN32__
864 #  if defined(I_STRING) || defined(__cplusplus)
865 #     include <string.h>
866 #  else
867 #     include <strings.h>
868 #  endif
869 #endif
870
871 /* This comes after <stdlib.h> so we don't try to change the standard
872  * library prototypes; we'll use our own in proto.h instead. */
873
874 #ifdef MYMALLOC
875 #  ifdef PERL_POLLUTE_MALLOC
876 #   ifndef PERL_EXTMALLOC_DEF
877 #    define Perl_malloc         malloc
878 #    define Perl_calloc         calloc
879 #    define Perl_realloc        realloc
880 #    define Perl_mfree          free
881 #   endif
882 #  else
883 #    define EMBEDMYMALLOC       /* for compatibility */
884 #  endif
885
886 #  define safemalloc  Perl_malloc
887 #  define safecalloc  Perl_calloc
888 #  define saferealloc Perl_realloc
889 #  define safefree    Perl_mfree
890 #  define CHECK_MALLOC_TOO_LATE_FOR_(code)      STMT_START {            \
891         if (!PL_tainting && MallocCfg_ptr[MallocCfg_cfg_env_read])      \
892                 code;                                                   \
893     } STMT_END
894 #  define CHECK_MALLOC_TOO_LATE_FOR(ch)                         \
895         CHECK_MALLOC_TOO_LATE_FOR_(MALLOC_TOO_LATE_FOR(ch))
896 #  define panic_write2(s)               write(2, s, strlen(s))
897 #  define CHECK_MALLOC_TAINT(newval)                            \
898         CHECK_MALLOC_TOO_LATE_FOR_(                             \
899                 if (newval) {                                   \
900                   panic_write2("panic: tainting with $ENV{PERL_MALLOC_OPT}\n");\
901                   exit(1); })
902 #  define MALLOC_CHECK_TAINT(argc,argv,env)     STMT_START {    \
903         if (doing_taint(argc,argv,env)) {                       \
904                 MallocCfg_ptr[MallocCfg_skip_cfg_env] = 1;      \
905     }} STMT_END;
906 #else  /* MYMALLOC */
907 #  define safemalloc  safesysmalloc
908 #  define safecalloc  safesyscalloc
909 #  define saferealloc safesysrealloc
910 #  define safefree    safesysfree
911 #  define CHECK_MALLOC_TOO_LATE_FOR(ch)         ((void)0)
912 #  define CHECK_MALLOC_TAINT(newval)            ((void)0)
913 #  define MALLOC_CHECK_TAINT(argc,argv,env)
914 #endif /* MYMALLOC */
915
916 #define TOO_LATE_FOR_(ch,what)  Perl_croak(aTHX_ "\"-%c\" is on the #! line, it must also be used on the command line%s", (char)(ch), what)
917 #define TOO_LATE_FOR(ch)        TOO_LATE_FOR_(ch, "")
918 #define MALLOC_TOO_LATE_FOR(ch) TOO_LATE_FOR_(ch, " with $ENV{PERL_MALLOC_OPT}")
919 #define MALLOC_CHECK_TAINT2(argc,argv)  MALLOC_CHECK_TAINT(argc,argv,NULL)
920
921 #if !defined(HAS_STRCHR) && defined(HAS_INDEX) && !defined(strchr)
922 #define strchr index
923 #define strrchr rindex
924 #endif
925
926 #ifdef I_MEMORY
927 #  include <memory.h>
928 #endif
929
930 #ifdef HAS_MEMCPY
931 #  if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
932 #    ifndef memcpy
933         extern char * memcpy (char*, char*, int);
934 #    endif
935 #  endif
936 #else
937 #   ifndef memcpy
938 #       ifdef HAS_BCOPY
939 #           define memcpy(d,s,l) bcopy(s,d,l)
940 #       else
941 #           define memcpy(d,s,l) my_bcopy(s,d,l)
942 #       endif
943 #   endif
944 #endif /* HAS_MEMCPY */
945
946 #ifdef HAS_MEMSET
947 #  if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
948 #    ifndef memset
949         extern char *memset (char*, int, int);
950 #    endif
951 #  endif
952 #else
953 #  undef  memset
954 #  define memset(d,c,l) my_memset(d,c,l)
955 #endif /* HAS_MEMSET */
956
957 #if !defined(HAS_MEMMOVE) && !defined(memmove)
958 #   if defined(HAS_BCOPY) && defined(HAS_SAFE_BCOPY)
959 #       define memmove(d,s,l) bcopy(s,d,l)
960 #   else
961 #       if defined(HAS_MEMCPY) && defined(HAS_SAFE_MEMCPY)
962 #           define memmove(d,s,l) memcpy(d,s,l)
963 #       else
964 #           define memmove(d,s,l) my_bcopy(s,d,l)
965 #       endif
966 #   endif
967 #endif
968
969 #if defined(mips) && defined(ultrix) && !defined(__STDC__)
970 #   undef HAS_MEMCMP
971 #endif
972
973 #if defined(HAS_MEMCMP) && defined(HAS_SANE_MEMCMP)
974 #  if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
975 #    ifndef memcmp
976         extern int memcmp (char*, char*, int);
977 #    endif
978 #  endif
979 #  ifdef BUGGY_MSC
980 #    pragma function(memcmp)
981 #  endif
982 #else
983 #   ifndef memcmp
984 #       define memcmp   my_memcmp
985 #   endif
986 #endif /* HAS_MEMCMP && HAS_SANE_MEMCMP */
987
988 #ifndef memzero
989 #   ifdef HAS_MEMSET
990 #       define memzero(d,l) memset(d,0,l)
991 #   else
992 #       ifdef HAS_BZERO
993 #           define memzero(d,l) bzero(d,l)
994 #       else
995 #           define memzero(d,l) my_bzero(d,l)
996 #       endif
997 #   endif
998 #endif
999
1000 #ifndef PERL_MICRO
1001 #ifndef memchr
1002 #   ifndef HAS_MEMCHR
1003 #       define memchr(s,c,n) ninstr((char*)(s), ((char*)(s)) + n, &(c), &(c) + 1)
1004 #   endif
1005 #endif
1006 #endif
1007
1008 #ifndef HAS_BCMP
1009 #   ifndef bcmp
1010 #       define bcmp(s1,s2,l) memcmp(s1,s2,l)
1011 #   endif
1012 #endif /* !HAS_BCMP */
1013
1014 #ifdef I_NETINET_IN
1015 #   include <netinet/in.h>
1016 #endif
1017
1018 #ifdef I_ARPA_INET
1019 #   include <arpa/inet.h>
1020 #endif
1021
1022 #if defined(SF_APPEND) && defined(USE_SFIO) && defined(I_SFIO)
1023 /* <sfio.h> defines SF_APPEND and <sys/stat.h> might define SF_APPEND
1024  * (the neo-BSD seem to do this).  */
1025 #   undef SF_APPEND
1026 #endif
1027
1028 #ifdef I_SYS_STAT
1029 #   include <sys/stat.h>
1030 #endif
1031
1032 /* The stat macros for Amdahl UTS, Unisoft System V/88 (and derivatives
1033    like UTekV) are broken, sometimes giving false positives.  Undefine
1034    them here and let the code below set them to proper values.
1035
1036    The ghs macro stands for GreenHills Software C-1.8.5 which
1037    is the C compiler for sysV88 and the various derivatives.
1038    This header file bug is corrected in gcc-2.5.8 and later versions.
1039    --Kaveh Ghazi (ghazi@noc.rutgers.edu) 10/3/94.  */
1040
1041 #if defined(uts) || (defined(m88k) && defined(ghs))
1042 #   undef S_ISDIR
1043 #   undef S_ISCHR
1044 #   undef S_ISBLK
1045 #   undef S_ISREG
1046 #   undef S_ISFIFO
1047 #   undef S_ISLNK
1048 #endif
1049
1050 #ifdef I_TIME
1051 #   include <time.h>
1052 #endif
1053
1054 #ifdef I_SYS_TIME
1055 #   ifdef I_SYS_TIME_KERNEL
1056 #       define KERNEL
1057 #   endif
1058 #   include <sys/time.h>
1059 #   ifdef I_SYS_TIME_KERNEL
1060 #       undef KERNEL
1061 #   endif
1062 #endif
1063
1064 #if defined(HAS_TIMES) && defined(I_SYS_TIMES)
1065 #    include <sys/times.h>
1066 #endif
1067
1068 #if defined(HAS_STRERROR) && (!defined(HAS_MKDIR) || !defined(HAS_RMDIR))
1069 #   undef HAS_STRERROR
1070 #endif
1071
1072 #include <errno.h>
1073
1074 #if defined(WIN32) && defined(PERL_IMPLICIT_SYS)
1075 #  define WIN32SCK_IS_STDSCK            /* don't pull in custom wsock layer */
1076 #endif
1077
1078 /* In Tru64 use the 4.4BSD struct msghdr, not the 4.3 one.
1079  * This is important for using IPv6. 
1080  * For OSF/1 3.2, however, defining _SOCKADDR_LEN would be
1081  * a bad idea since it breaks send() and recv(). */
1082 #if defined(__osf__) && defined(__alpha) && !defined(_SOCKADDR_LEN) && !defined(DEC_OSF1_3_X)
1083 #   define _SOCKADDR_LEN
1084 #endif
1085
1086 #if defined(HAS_SOCKET) && !defined(VMS) && !defined(WIN32) /* VMS/WIN32 handle sockets via vmsish.h/win32.h */
1087 # include <sys/socket.h>
1088 # if defined(USE_SOCKS) && defined(I_SOCKS)
1089 #   if !defined(INCLUDE_PROTOTYPES)
1090 #       define INCLUDE_PROTOTYPES /* for <socks.h> */
1091 #       define PERL_SOCKS_NEED_PROTOTYPES
1092 #   endif
1093 #   include <socks.h>
1094 #   ifdef PERL_SOCKS_NEED_PROTOTYPES /* keep cpp space clean */
1095 #       undef INCLUDE_PROTOTYPES
1096 #       undef PERL_SOCKS_NEED_PROTOTYPES
1097 #   endif
1098 # endif
1099 # ifdef I_NETDB
1100 #  ifdef NETWARE
1101 #   include<stdio.h>
1102 #  endif
1103 #  include <netdb.h>
1104 # endif
1105 # ifndef ENOTSOCK
1106 #  ifdef I_NET_ERRNO
1107 #   include <net/errno.h>
1108 #  endif
1109 # endif
1110 #endif
1111
1112 /* sockatmark() is so new (2001) that many places might have it hidden
1113  * behind some -D_BLAH_BLAH_SOURCE guard.  The __THROW magic is required
1114  * e.g. in Gentoo, see http://bugs.gentoo.org/show_bug.cgi?id=12605 */
1115 #if defined(HAS_SOCKATMARK) && !defined(HAS_SOCKATMARK_PROTO)
1116 # if defined(__THROW) && defined(__GLIBC__)
1117 int sockatmark(int) __THROW;
1118 # else
1119 int sockatmark(int);
1120 # endif
1121 #endif
1122
1123 #ifdef SETERRNO
1124 # undef SETERRNO  /* SOCKS might have defined this */
1125 #endif
1126
1127 #ifdef VMS
1128 #   define SETERRNO(errcode,vmserrcode) \
1129         STMT_START {                    \
1130             set_errno(errcode);         \
1131             set_vaxc_errno(vmserrcode); \
1132         } STMT_END
1133 #   define LIB_INVARG           LIB$_INVARG
1134 #   define RMS_DIR              RMS$_DIR
1135 #   define RMS_FAC              RMS$_FAC
1136 #   define RMS_FEX              RMS$_FEX
1137 #   define RMS_FNF              RMS$_FNF
1138 #   define RMS_IFI              RMS$_IFI
1139 #   define RMS_ISI              RMS$_ISI
1140 #   define RMS_PRV              RMS$_PRV
1141 #   define SS_ACCVIO            SS$_ACCVIO
1142 #   define SS_DEVOFFLINE        SS$_DEVOFFLINE
1143 #   define SS_IVCHAN            SS$_IVCHAN
1144 #   define SS_NORMAL            SS$_NORMAL
1145 #else
1146 #   define SETERRNO(errcode,vmserrcode) (errno = (errcode))
1147 #   define LIB_INVARG           0
1148 #   define RMS_DIR              0
1149 #   define RMS_FAC              0
1150 #   define RMS_FEX              0
1151 #   define RMS_FNF              0
1152 #   define RMS_IFI              0
1153 #   define RMS_ISI              0
1154 #   define RMS_PRV              0
1155 #   define SS_ACCVIO            0
1156 #   define SS_DEVOFFLINE        0
1157 #   define SS_IVCHAN            0
1158 #   define SS_NORMAL            0
1159 #endif
1160
1161 #define ERRSV GvSV(PL_errgv)
1162 /* FIXME? Change the assignments to PL_defgv to instantiate GvSV?  */
1163 #define DEFSV GvSVn(PL_defgv)
1164 #define SAVE_DEFSV SAVESPTR(GvSV(PL_defgv))
1165
1166 #define ERRHV GvHV(PL_errgv)    /* XXX unused, here for compatibility */
1167
1168 #ifndef errno
1169         extern int errno;     /* ANSI allows errno to be an lvalue expr.
1170                                * For example in multithreaded environments
1171                                * something like this might happen:
1172                                * extern int *_errno(void);
1173                                * #define errno (*_errno()) */
1174 #endif
1175
1176 #ifdef HAS_STRERROR
1177 #       ifdef VMS
1178         char *strerror (int,...);
1179 #       else
1180 #ifndef DONT_DECLARE_STD
1181         char *strerror (int);
1182 #endif
1183 #       endif
1184 #       ifndef Strerror
1185 #           define Strerror strerror
1186 #       endif
1187 #else
1188 #    ifdef HAS_SYS_ERRLIST
1189         extern int sys_nerr;
1190         extern char *sys_errlist[];
1191 #       ifndef Strerror
1192 #           define Strerror(e) \
1193                 ((e) < 0 || (e) >= sys_nerr ? "(unknown)" : sys_errlist[e])
1194 #       endif
1195 #   endif
1196 #endif
1197
1198 #ifdef I_SYS_IOCTL
1199 #   ifndef _IOCTL_
1200 #       include <sys/ioctl.h>
1201 #   endif
1202 #endif
1203
1204 #if defined(mc300) || defined(mc500) || defined(mc700) || defined(mc6000)
1205 #   ifdef HAS_SOCKETPAIR
1206 #       undef HAS_SOCKETPAIR
1207 #   endif
1208 #   ifdef I_NDBM
1209 #       undef I_NDBM
1210 #   endif
1211 #endif
1212
1213 #ifndef HAS_SOCKETPAIR
1214 #   ifdef HAS_SOCKET
1215 #       define socketpair Perl_my_socketpair
1216 #   endif
1217 #endif
1218
1219 #if INTSIZE == 2
1220 #   define htoni htons
1221 #   define ntohi ntohs
1222 #else
1223 #   define htoni htonl
1224 #   define ntohi ntohl
1225 #endif
1226
1227 /* Configure already sets Direntry_t */
1228 #if defined(I_DIRENT)
1229 #   include <dirent.h>
1230     /* NeXT needs dirent + sys/dir.h */
1231 #   if  defined(I_SYS_DIR) && (defined(NeXT) || defined(__NeXT__))
1232 #       include <sys/dir.h>
1233 #   endif
1234 #else
1235 #   ifdef I_SYS_NDIR
1236 #       include <sys/ndir.h>
1237 #   else
1238 #       ifdef I_SYS_DIR
1239 #           ifdef hp9000s500
1240 #               include <ndir.h>        /* may be wrong in the future */
1241 #           else
1242 #               include <sys/dir.h>
1243 #           endif
1244 #       endif
1245 #   endif
1246 #endif
1247
1248 #ifdef PERL_MICRO
1249 #   ifndef DIR
1250 #      define DIR void
1251 #   endif
1252 #endif
1253
1254 #ifdef FPUTS_BOTCH
1255 /* work around botch in SunOS 4.0.1 and 4.0.2 */
1256 #   ifndef fputs
1257 #       define fputs(sv,fp) fprintf(fp,"%s",sv)
1258 #   endif
1259 #endif
1260
1261 /*
1262  * The following gobbledygook brought to you on behalf of __STDC__.
1263  * (I could just use #ifndef __STDC__, but this is more bulletproof
1264  * in the face of half-implementations.)
1265  */
1266
1267 #if defined(I_SYSMODE) && !defined(PERL_MICRO)
1268 #include <sys/mode.h>
1269 #endif
1270
1271 #ifndef S_IFMT
1272 #   ifdef _S_IFMT
1273 #       define S_IFMT _S_IFMT
1274 #   else
1275 #       define S_IFMT 0170000
1276 #   endif
1277 #endif
1278
1279 #ifndef S_ISDIR
1280 #   define S_ISDIR(m) ((m & S_IFMT) == S_IFDIR)
1281 #endif
1282
1283 #ifndef S_ISCHR
1284 #   define S_ISCHR(m) ((m & S_IFMT) == S_IFCHR)
1285 #endif
1286
1287 #ifndef S_ISBLK
1288 #   ifdef S_IFBLK
1289 #       define S_ISBLK(m) ((m & S_IFMT) == S_IFBLK)
1290 #   else
1291 #       define S_ISBLK(m) (0)
1292 #   endif
1293 #endif
1294
1295 #ifndef S_ISREG
1296 #   define S_ISREG(m) ((m & S_IFMT) == S_IFREG)
1297 #endif
1298
1299 #ifndef S_ISFIFO
1300 #   ifdef S_IFIFO
1301 #       define S_ISFIFO(m) ((m & S_IFMT) == S_IFIFO)
1302 #   else
1303 #       define S_ISFIFO(m) (0)
1304 #   endif
1305 #endif
1306
1307 #ifndef S_ISLNK
1308 #   ifdef _S_ISLNK
1309 #       define S_ISLNK(m) _S_ISLNK(m)
1310 #   else
1311 #       ifdef _S_IFLNK
1312 #           define S_ISLNK(m) ((m & S_IFMT) == _S_IFLNK)
1313 #       else
1314 #           ifdef S_IFLNK
1315 #               define S_ISLNK(m) ((m & S_IFMT) == S_IFLNK)
1316 #           else
1317 #               define S_ISLNK(m) (0)
1318 #           endif
1319 #       endif
1320 #   endif
1321 #endif
1322
1323 #ifndef S_ISSOCK
1324 #   ifdef _S_ISSOCK
1325 #       define S_ISSOCK(m) _S_ISSOCK(m)
1326 #   else
1327 #       ifdef _S_IFSOCK
1328 #           define S_ISSOCK(m) ((m & S_IFMT) == _S_IFSOCK)
1329 #       else
1330 #           ifdef S_IFSOCK
1331 #               define S_ISSOCK(m) ((m & S_IFMT) == S_IFSOCK)
1332 #           else
1333 #               define S_ISSOCK(m) (0)
1334 #           endif
1335 #       endif
1336 #   endif
1337 #endif
1338
1339 #ifndef S_IRUSR
1340 #   ifdef S_IREAD
1341 #       define S_IRUSR S_IREAD
1342 #       define S_IWUSR S_IWRITE
1343 #       define S_IXUSR S_IEXEC
1344 #   else
1345 #       define S_IRUSR 0400
1346 #       define S_IWUSR 0200
1347 #       define S_IXUSR 0100
1348 #   endif
1349 #endif
1350
1351 #ifndef S_IRGRP
1352 #   ifdef S_IRUSR
1353 #       define S_IRGRP (S_IRUSR>>3)
1354 #       define S_IWGRP (S_IWUSR>>3)
1355 #       define S_IXGRP (S_IXUSR>>3)
1356 #   else
1357 #       define S_IRGRP 0040
1358 #       define S_IWGRP 0020
1359 #       define S_IXGRP 0010
1360 #   endif
1361 #endif
1362
1363 #ifndef S_IROTH
1364 #   ifdef S_IRUSR
1365 #       define S_IROTH (S_IRUSR>>6)
1366 #       define S_IWOTH (S_IWUSR>>6)
1367 #       define S_IXOTH (S_IXUSR>>6)
1368 #   else
1369 #       define S_IROTH 0040
1370 #       define S_IWOTH 0020
1371 #       define S_IXOTH 0010
1372 #   endif
1373 #endif
1374
1375 #ifndef S_ISUID
1376 #   define S_ISUID 04000
1377 #endif
1378
1379 #ifndef S_ISGID
1380 #   define S_ISGID 02000
1381 #endif
1382
1383 #ifndef S_IRWXU
1384 #   define S_IRWXU (S_IRUSR|S_IWUSR|S_IXUSR)
1385 #endif
1386
1387 #ifndef S_IRWXG
1388 #   define S_IRWXG (S_IRGRP|S_IWGRP|S_IXGRP)
1389 #endif
1390
1391 #ifndef S_IRWXO
1392 #   define S_IRWXO (S_IROTH|S_IWOTH|S_IXOTH)
1393 #endif
1394
1395 /* BeOS 5.0 seems to define S_IREAD and S_IWRITE in <posix/fcntl.h>
1396  * which would get included through <sys/file.h >, but that is 3000
1397  * lines in the future.  --jhi */
1398
1399 #if !defined(S_IREAD) && !defined(__BEOS__)
1400 #   define S_IREAD S_IRUSR
1401 #endif
1402
1403 #if !defined(S_IWRITE) && !defined(__BEOS__)
1404 #   define S_IWRITE S_IWUSR
1405 #endif
1406
1407 #ifndef S_IEXEC
1408 #   define S_IEXEC S_IXUSR
1409 #endif
1410
1411 #ifdef ff_next
1412 #   undef ff_next
1413 #endif
1414
1415 #if defined(cray) || defined(gould) || defined(i860) || defined(pyr)
1416 #   define SLOPPYDIVIDE
1417 #endif
1418
1419 #ifdef UV
1420 #undef UV
1421 #endif
1422
1423 #ifdef  SPRINTF_E_BUG
1424 #  define sprintf UTS_sprintf_wrap
1425 #endif
1426
1427 /* For the times when you want the return value of sprintf, and you want it
1428    to be the length. Can't have a thread variable passed in, because C89 has
1429    no varargs macros.
1430 */
1431 #ifdef SPRINTF_RETURNS_STRLEN
1432 #  define my_sprintf sprintf
1433 #else
1434 #  define my_sprintf Perl_my_sprintf
1435 #endif
1436
1437 /* Configure gets this right but the UTS compiler gets it wrong.
1438    -- Hal Morris <hom00@utsglobal.com> */
1439 #ifdef UTS
1440 #  undef  UVTYPE
1441 #  define UVTYPE unsigned
1442 #endif
1443
1444 /*
1445     The IV type is supposed to be long enough to hold any integral
1446     value or a pointer.
1447     --Andy Dougherty    August 1996
1448 */
1449
1450 typedef IVTYPE IV;
1451 typedef UVTYPE UV;
1452
1453 #if defined(USE_64_BIT_INT) && defined(HAS_QUAD)
1454 #  if QUADKIND == QUAD_IS_INT64_T && defined(INT64_MAX)
1455 #    define IV_MAX INT64_MAX
1456 #    define IV_MIN INT64_MIN
1457 #    define UV_MAX UINT64_MAX
1458 #    ifndef UINT64_MIN
1459 #      define UINT64_MIN 0
1460 #    endif
1461 #    define UV_MIN UINT64_MIN
1462 #  else
1463 #    define IV_MAX PERL_QUAD_MAX
1464 #    define IV_MIN PERL_QUAD_MIN
1465 #    define UV_MAX PERL_UQUAD_MAX
1466 #    define UV_MIN PERL_UQUAD_MIN
1467 #  endif
1468 #  define IV_IS_QUAD
1469 #  define UV_IS_QUAD
1470 #else
1471 #  if defined(INT32_MAX) && IVSIZE == 4
1472 #    define IV_MAX INT32_MAX
1473 #    define IV_MIN INT32_MIN
1474 #    ifndef UINT32_MAX_BROKEN /* e.g. HP-UX with gcc messes this up */
1475 #        define UV_MAX UINT32_MAX
1476 #    else
1477 #        define UV_MAX 4294967295U
1478 #    endif
1479 #    ifndef UINT32_MIN
1480 #      define UINT32_MIN 0
1481 #    endif
1482 #    define UV_MIN UINT32_MIN
1483 #  else
1484 #    define IV_MAX PERL_LONG_MAX
1485 #    define IV_MIN PERL_LONG_MIN
1486 #    define UV_MAX PERL_ULONG_MAX
1487 #    define UV_MIN PERL_ULONG_MIN
1488 #  endif
1489 #  if IVSIZE == 8
1490 #    define IV_IS_QUAD
1491 #    define UV_IS_QUAD
1492 #    ifndef HAS_QUAD
1493 #      define HAS_QUAD
1494 #    endif
1495 #  else
1496 #    undef IV_IS_QUAD
1497 #    undef UV_IS_QUAD
1498 #    undef HAS_QUAD
1499 #  endif
1500 #endif
1501
1502 #ifndef HAS_QUAD
1503 # undef PERL_NEED_MY_HTOLE64
1504 # undef PERL_NEED_MY_LETOH64
1505 # undef PERL_NEED_MY_HTOBE64
1506 # undef PERL_NEED_MY_BETOH64
1507 #endif
1508
1509 #if defined(uts) || defined(UTS)
1510 #       undef UV_MAX
1511 #       define UV_MAX (4294967295u)
1512 #endif
1513
1514 #define IV_DIG (BIT_DIGITS(IVSIZE * 8))
1515 #define UV_DIG (BIT_DIGITS(UVSIZE * 8))
1516
1517 #ifndef NO_PERL_PRESERVE_IVUV
1518 #define PERL_PRESERVE_IVUV      /* We like our integers to stay integers. */
1519 #endif
1520
1521 /*
1522  *  The macros INT2PTR and NUM2PTR are (despite their names)
1523  *  bi-directional: they will convert int/float to or from pointers.
1524  *  However the conversion to int/float are named explicitly:
1525  *  PTR2IV, PTR2UV, PTR2NV.
1526  *
1527  *  For int conversions we do not need two casts if pointers are
1528  *  the same size as IV and UV.   Otherwise we need an explicit
1529  *  cast (PTRV) to avoid compiler warnings.
1530  */
1531 #if (IVSIZE == PTRSIZE) && (UVSIZE == PTRSIZE)
1532 #  define PTRV                  UV
1533 #  define INT2PTR(any,d)        (any)(d)
1534 #else
1535 #  if PTRSIZE == LONGSIZE
1536 #    define PTRV                unsigned long
1537 #    define PTR2ul(p)           (unsigned long)(p)
1538 #  else
1539 #    define PTRV                unsigned
1540 #  endif
1541 #endif
1542
1543 #ifndef INT2PTR
1544 #  define INT2PTR(any,d)        (any)(PTRV)(d)
1545 #endif
1546
1547 #ifndef PTR2ul
1548 #  define PTR2ul(p)     INT2PTR(unsigned long,p)        
1549 #endif
1550
1551 #define NUM2PTR(any,d)  (any)(PTRV)(d)
1552 #define PTR2IV(p)       INT2PTR(IV,p)
1553 #define PTR2UV(p)       INT2PTR(UV,p)
1554 #define PTR2NV(p)       NUM2PTR(NV,p)
1555 #define PTR2nat(p)      (PTRV)(p)       /* pointer to integer of PTRSIZE */
1556
1557 /* According to strict ANSI C89 one cannot freely cast between
1558  * data pointers and function (code) pointers.  There are at least
1559  * two ways around this.  One (used below) is to do two casts,
1560  * first the other pointer to an (unsigned) integer, and then
1561  * the integer to the other pointer.  The other way would be
1562  * to use unions to "overlay" the pointers.  For an example of
1563  * the latter technique, see union dirpu in struct xpvio in sv.h.
1564  * The only feasible use is probably temporarily storing
1565  * function pointers in a data pointer (such as a void pointer). */
1566
1567 #define DPTR2FPTR(t,p) ((t)PTR2nat(p))  /* data pointer to function pointer */
1568 #define FPTR2DPTR(t,p) ((t)PTR2nat(p))  /* function pointer to data pointer */
1569
1570 #ifdef USE_LONG_DOUBLE
1571 #  if defined(HAS_LONG_DOUBLE) && LONG_DOUBLESIZE == DOUBLESIZE
1572 #      define LONG_DOUBLE_EQUALS_DOUBLE
1573 #  endif
1574 #  if !(defined(HAS_LONG_DOUBLE) && (LONG_DOUBLESIZE > DOUBLESIZE))
1575 #     undef USE_LONG_DOUBLE /* Ouch! */
1576 #  endif
1577 #endif
1578
1579 #ifdef OVR_DBL_DIG
1580 /* Use an overridden DBL_DIG */
1581 # ifdef DBL_DIG
1582 #  undef DBL_DIG
1583 # endif
1584 # define DBL_DIG OVR_DBL_DIG
1585 #else
1586 /* The following is all to get DBL_DIG, in order to pick a nice
1587    default value for printing floating point numbers in Gconvert
1588    (see config.h). (It also has other uses, such as figuring out if
1589    a given precision of printing can be done with a double instead of
1590    a long double - Allen).
1591 */
1592 #ifdef I_LIMITS
1593 #include <limits.h>
1594 #endif
1595 #ifdef I_FLOAT
1596 #include <float.h>
1597 #endif
1598 #ifndef HAS_DBL_DIG
1599 #define DBL_DIG 15   /* A guess that works lots of places */
1600 #endif
1601 #endif
1602 #ifdef I_FLOAT
1603 #include <float.h>
1604 #endif
1605 #ifndef HAS_DBL_DIG
1606 #define DBL_DIG 15   /* A guess that works lots of places */
1607 #endif
1608
1609 #ifdef OVR_LDBL_DIG
1610 /* Use an overridden LDBL_DIG */
1611 # ifdef LDBL_DIG
1612 #  undef LDBL_DIG
1613 # endif
1614 # define LDBL_DIG OVR_LDBL_DIG
1615 #else
1616 /* The following is all to get LDBL_DIG, in order to pick a nice
1617    default value for printing floating point numbers in Gconvert.
1618    (see config.h)
1619 */
1620 # ifdef I_LIMITS
1621 #   include <limits.h>
1622 # endif
1623 # ifdef I_FLOAT
1624 #  include <float.h>
1625 # endif
1626 # ifndef HAS_LDBL_DIG
1627 #  if LONG_DOUBLESIZE == 10
1628 #   define LDBL_DIG 18 /* assume IEEE */
1629 #  else
1630 #   if LONG_DOUBLESIZE == 12
1631 #    define LDBL_DIG 18 /* gcc? */
1632 #   else
1633 #    if LONG_DOUBLESIZE == 16
1634 #     define LDBL_DIG 33 /* assume IEEE */
1635 #    else
1636 #     if LONG_DOUBLESIZE == DOUBLESIZE
1637 #      define LDBL_DIG DBL_DIG /* bummer */
1638 #     endif
1639 #    endif
1640 #   endif
1641 #  endif
1642 # endif
1643 #endif
1644
1645 /*
1646  * This is for making sure we have a good DBL_MAX value, if possible,
1647  * either for usage as NV_MAX or for usage in figuring out if we can
1648  * fit a given long double into a double, if bug-fixing makes it
1649  * necessary to do so. - Allen <allens@cpan.org>
1650  */
1651
1652 #ifdef I_LIMITS
1653 #  include <limits.h>
1654 #endif
1655
1656 #ifdef I_VALUES
1657 #  if !(defined(DBL_MIN) && defined(DBL_MAX) && defined(I_LIMITS))
1658 #    include <values.h>
1659 #    if defined(MAXDOUBLE) && !defined(DBL_MAX)
1660 #      define DBL_MAX MAXDOUBLE
1661 #    endif
1662 #    if defined(MINDOUBLE) && !defined(DBL_MIN)
1663 #      define DBL_MIN MINDOUBLE
1664 #    endif
1665 #  endif
1666 #endif /* defined(I_VALUES) */
1667
1668 typedef NVTYPE NV;
1669
1670 #ifdef I_IEEEFP
1671 #   include <ieeefp.h>
1672 #endif
1673
1674 #ifdef USE_LONG_DOUBLE
1675 #   ifdef I_SUNMATH
1676 #       include <sunmath.h>
1677 #   endif
1678 #   define NV_DIG LDBL_DIG
1679 #   ifdef LDBL_MANT_DIG
1680 #       define NV_MANT_DIG LDBL_MANT_DIG
1681 #   endif
1682 #   ifdef LDBL_MIN
1683 #       define NV_MIN LDBL_MIN
1684 #   endif
1685 #   ifdef LDBL_MAX
1686 #       define NV_MAX LDBL_MAX
1687 #   endif
1688 #   ifdef LDBL_MIN_10_EXP
1689 #       define NV_MIN_10_EXP LDBL_MIN_10_EXP
1690 #   endif
1691 #   ifdef LDBL_MAX_10_EXP
1692 #       define NV_MAX_10_EXP LDBL_MAX_10_EXP
1693 #   endif
1694 #   ifdef LDBL_EPSILON
1695 #       define NV_EPSILON LDBL_EPSILON
1696 #   endif
1697 #   ifdef LDBL_MAX
1698 #       define NV_MAX LDBL_MAX
1699 /* Having LDBL_MAX doesn't necessarily mean that we have LDBL_MIN... -Allen */
1700 #   else
1701 #       ifdef HUGE_VALL
1702 #           define NV_MAX HUGE_VALL
1703 #       else
1704 #           ifdef HUGE_VAL
1705 #               define NV_MAX ((NV)HUGE_VAL)
1706 #           endif
1707 #       endif
1708 #   endif
1709 #   ifdef HAS_SQRTL
1710 #       define Perl_cos cosl
1711 #       define Perl_sin sinl
1712 #       define Perl_sqrt sqrtl
1713 #       define Perl_exp expl
1714 #       define Perl_log logl
1715 #       define Perl_atan2 atan2l
1716 #       define Perl_pow powl
1717 #       define Perl_floor floorl
1718 #       define Perl_ceil ceill
1719 #       define Perl_fmod fmodl
1720 #   endif
1721 /* e.g. libsunmath doesn't have modfl and frexpl as of mid-March 2000 */
1722 #   ifdef HAS_MODFL
1723 #       define Perl_modf(x,y) modfl(x,y)
1724 /* eg glibc 2.2 series seems to provide modfl on ppc and arm, but has no
1725    prototype in <math.h> */
1726 #       ifndef HAS_MODFL_PROTO
1727 EXTERN_C long double modfl(long double, long double *);
1728 #       endif
1729 #   else
1730 #       if defined(HAS_AINTL) && defined(HAS_COPYSIGNL)
1731         extern long double Perl_my_modfl(long double x, long double *ip);
1732 #           define Perl_modf(x,y) Perl_my_modfl(x,y)
1733 #       endif
1734 #   endif
1735 #   ifdef HAS_FREXPL
1736 #       define Perl_frexp(x,y) frexpl(x,y)
1737 #   else
1738 #       if defined(HAS_ILOGBL) && defined(HAS_SCALBNL)
1739         extern long double Perl_my_frexpl(long double x, int *e);
1740 #           define Perl_frexp(x,y) Perl_my_frexpl(x,y)
1741 #       endif
1742 #   endif
1743 #   ifndef Perl_isnan
1744 #       ifdef HAS_ISNANL
1745 #           define Perl_isnan(x) isnanl(x)
1746 #       endif
1747 #   endif
1748 #   ifndef Perl_isinf
1749 #       ifdef HAS_FINITEL
1750 #           define Perl_isinf(x) !(finitel(x)||Perl_isnan(x))
1751 #       endif
1752 #   endif
1753 #else
1754 #   define NV_DIG DBL_DIG
1755 #   ifdef DBL_MANT_DIG
1756 #       define NV_MANT_DIG DBL_MANT_DIG
1757 #   endif
1758 #   ifdef DBL_MIN
1759 #       define NV_MIN DBL_MIN
1760 #   endif
1761 #   ifdef DBL_MAX
1762 #       define NV_MAX DBL_MAX
1763 #   endif
1764 #   ifdef DBL_MIN_10_EXP
1765 #       define NV_MIN_10_EXP DBL_MIN_10_EXP
1766 #   endif
1767 #   ifdef DBL_MAX_10_EXP
1768 #       define NV_MAX_10_EXP DBL_MAX_10_EXP
1769 #   endif
1770 #   ifdef DBL_EPSILON
1771 #       define NV_EPSILON DBL_EPSILON
1772 #   endif
1773 #   ifdef DBL_MAX               /* XXX Does DBL_MAX imply having DBL_MIN? */
1774 #       define NV_MAX DBL_MAX
1775 #       define NV_MIN DBL_MIN
1776 #   else
1777 #       ifdef HUGE_VAL
1778 #           define NV_MAX HUGE_VAL
1779 #       endif
1780 #   endif
1781 #   define Perl_cos cos
1782 #   define Perl_sin sin
1783 #   define Perl_sqrt sqrt
1784 #   define Perl_exp exp
1785 #   define Perl_log log
1786 #   define Perl_atan2 atan2
1787 #   define Perl_pow pow
1788 #   define Perl_floor floor
1789 #   define Perl_ceil ceil
1790 #   define Perl_fmod fmod
1791 #   define Perl_modf(x,y) modf(x,y)
1792 #   define Perl_frexp(x,y) frexp(x,y)
1793 #endif
1794
1795 /* rumor has it that Win32 has _fpclass() */
1796
1797 /* SGI has fpclassl... but not with the same result values,
1798  * and it's via a typedef (not via #define), so will need to redo Configure
1799  * to use. Not worth the trouble, IMO, at least until the below is used
1800  * more places. Also has fp_class_l, BTW, via fp_class.h. Feel free to check
1801  * with me for the SGI manpages, SGI testing, etcetera, if you want to
1802  * try getting this to work with IRIX. - Allen <allens@cpan.org> */
1803
1804 #if !defined(Perl_fp_class) && (defined(HAS_FPCLASS)||defined(HAS_FPCLASSL))
1805 #    ifdef I_IEEFP
1806 #        include <ieeefp.h>
1807 #    endif
1808 #    ifdef I_FP
1809 #        include <fp.h>
1810 #    endif
1811 #    if defined(USE_LONG_DOUBLE) && defined(HAS_FPCLASSL)
1812 #        define Perl_fp_class()         fpclassl(x)
1813 #    else
1814 #        define Perl_fp_class()         fpclass(x)
1815 #    endif
1816 #    define Perl_fp_class_snan(x)       (Perl_fp_class(x)==FP_CLASS_SNAN)
1817 #    define Perl_fp_class_qnan(x)       (Perl_fp_class(x)==FP_CLASS_QNAN)
1818 #    define Perl_fp_class_nan(x)        (Perl_fp_class(x)==FP_CLASS_SNAN||Perl_fp_class(x)==FP_CLASS_QNAN)
1819 #    define Perl_fp_class_ninf(x)       (Perl_fp_class(x)==FP_CLASS_NINF)
1820 #    define Perl_fp_class_pinf(x)       (Perl_fp_class(x)==FP_CLASS_PINF)
1821 #    define Perl_fp_class_inf(x)        (Perl_fp_class(x)==FP_CLASS_NINF||Perl_fp_class(x)==FP_CLASS_PINF)
1822 #    define Perl_fp_class_nnorm(x)      (Perl_fp_class(x)==FP_CLASS_NNORM)
1823 #    define Perl_fp_class_pnorm(x)      (Perl_fp_class(x)==FP_CLASS_PNORM)
1824 #    define Perl_fp_class_norm(x)       (Perl_fp_class(x)==FP_CLASS_NNORM||Perl_fp_class(x)==FP_CLASS_PNORM)
1825 #    define Perl_fp_class_ndenorm(x)    (Perl_fp_class(x)==FP_CLASS_NDENORM)
1826 #    define Perl_fp_class_pdenorm(x)    (Perl_fp_class(x)==FP_CLASS_PDENORM)
1827 #    define Perl_fp_class_denorm(x)     (Perl_fp_class(x)==FP_CLASS_NDENORM||Perl_fp_class(x)==FP_CLASS_PDENORM)
1828 #    define Perl_fp_class_nzero(x)      (Perl_fp_class(x)==FP_CLASS_NZERO)
1829 #    define Perl_fp_class_pzero(x)      (Perl_fp_class(x)==FP_CLASS_PZERO)
1830 #    define Perl_fp_class_zero(x)       (Perl_fp_class(x)==FP_CLASS_NZERO||Perl_fp_class(x)==FP_CLASS_PZERO)
1831 #endif
1832
1833 #if !defined(Perl_fp_class) && defined(HAS_FP_CLASS) && !defined(PERL_MICRO)
1834 #    include <math.h>
1835 #    if !defined(FP_SNAN) && defined(I_FP_CLASS)
1836 #        include <fp_class.h>
1837 #    endif
1838 #    define Perl_fp_class(x)            fp_class(x)
1839 #    define Perl_fp_class_snan(x)       (fp_class(x)==FP_SNAN)
1840 #    define Perl_fp_class_qnan(x)       (fp_class(x)==FP_QNAN)
1841 #    define Perl_fp_class_nan(x)        (fp_class(x)==FP_SNAN||fp_class(x)==FP_QNAN)
1842 #    define Perl_fp_class_ninf(x)       (fp_class(x)==FP_NEG_INF)
1843 #    define Perl_fp_class_pinf(x)       (fp_class(x)==FP_POS_INF)
1844 #    define Perl_fp_class_inf(x)        (fp_class(x)==FP_NEG_INF||fp_class(x)==FP_POS_INF)
1845 #    define Perl_fp_class_nnorm(x)      (fp_class(x)==FP_NEG_NORM)
1846 #    define Perl_fp_class_pnorm(x)      (fp_class(x)==FP_POS_NORM)
1847 #    define Perl_fp_class_norm(x)       (fp_class(x)==FP_NEG_NORM||fp_class(x)==FP_POS_NORM)
1848 #    define Perl_fp_class_ndenorm(x)    (fp_class(x)==FP_NEG_DENORM)
1849 #    define Perl_fp_class_pdenorm(x)    (fp_class(x)==FP_POS_DENORM)
1850 #    define Perl_fp_class_denorm(x)     (fp_class(x)==FP_NEG_DENORM||fp_class(x)==FP_POS_DENORM)
1851 #    define Perl_fp_class_nzero(x)      (fp_class(x)==FP_NEG_ZERO)
1852 #    define Perl_fp_class_pzero(x)      (fp_class(x)==FP_POS_ZERO)
1853 #    define Perl_fp_class_zero(x)       (fp_class(x)==FP_NEG_ZERO||fp_class(x)==FP_POS_ZERO)
1854 #endif
1855
1856 #if !defined(Perl_fp_class) && defined(HAS_FPCLASSIFY)
1857 #    include <math.h>
1858 #    define Perl_fp_class(x)            fpclassify(x)
1859 #    define Perl_fp_class_nan(x)        (fp_classify(x)==FP_SNAN||fp_classify(x)==FP_QNAN)
1860 #    define Perl_fp_class_inf(x)        (fp_classify(x)==FP_INFINITE)
1861 #    define Perl_fp_class_norm(x)       (fp_classify(x)==FP_NORMAL)
1862 #    define Perl_fp_class_denorm(x)     (fp_classify(x)==FP_SUBNORMAL)
1863 #    define Perl_fp_class_zero(x)       (fp_classify(x)==FP_ZERO)
1864 #endif
1865
1866 #if !defined(Perl_fp_class) && defined(HAS_CLASS)
1867 #    include <math.h>
1868 #    ifndef _cplusplus
1869 #        define Perl_fp_class(x)        class(x)
1870 #    else
1871 #        define Perl_fp_class(x)        _class(x)
1872 #    endif
1873 #    define Perl_fp_class_snan(x)       (Perl_fp_class(x)==FP_NANS)
1874 #    define Perl_fp_class_qnan(x)       (Perl_fp_class(x)==FP_NANQ)
1875 #    define Perl_fp_class_nan(x)        (Perl_fp_class(x)==FP_SNAN||Perl_fp_class(x)==FP_QNAN)
1876 #    define Perl_fp_class_ninf(x)       (Perl_fp_class(x)==FP_MINUS_INF)
1877 #    define Perl_fp_class_pinf(x)       (Perl_fp_class(x)==FP_PLUS_INF)
1878 #    define Perl_fp_class_inf(x)        (Perl_fp_class(x)==FP_MINUS_INF||Perl_fp_class(x)==FP_PLUS_INF)
1879 #    define Perl_fp_class_nnorm(x)      (Perl_fp_class(x)==FP_MINUS_NORM)
1880 #    define Perl_fp_class_pnorm(x)      (Perl_fp_class(x)==FP_PLUS_NORM)
1881 #    define Perl_fp_class_norm(x)       (Perl_fp_class(x)==FP_MINUS_NORM||Perl_fp_class(x)==FP_PLUS_NORM)
1882 #    define Perl_fp_class_ndenorm(x)    (Perl_fp_class(x)==FP_MINUS_DENORM)
1883 #    define Perl_fp_class_pdenorm(x)    (Perl_fp_class(x)==FP_PLUS_DENORM)
1884 #    define Perl_fp_class_denorm(x)     (Perl_fp_class(x)==FP_MINUS_DENORM||Perl_fp_class(x)==FP_PLUS_DENORM)
1885 #    define Perl_fp_class_nzero(x)      (Perl_fp_class(x)==FP_MINUS_ZERO)
1886 #    define Perl_fp_class_pzero(x)      (Perl_fp_class(x)==FP_PLUS_ZERO)
1887 #    define Perl_fp_class_zero(x)       (Perl_fp_class(x)==FP_MINUS_ZERO||Perl_fp_class(x)==FP_PLUS_ZERO)
1888 #endif
1889
1890 /* rumor has it that Win32 has _isnan() */
1891
1892 #ifndef Perl_isnan
1893 #   ifdef HAS_ISNAN
1894 #       define Perl_isnan(x) isnan((NV)x)
1895 #   else
1896 #       ifdef Perl_fp_class_nan
1897 #           define Perl_isnan(x) Perl_fp_class_nan(x)
1898 #       else
1899 #           ifdef HAS_UNORDERED
1900 #               define Perl_isnan(x) unordered((x), 0.0)
1901 #           else
1902 #               define Perl_isnan(x) ((x)!=(x))
1903 #           endif
1904 #       endif
1905 #   endif
1906 #endif
1907
1908 #ifdef UNDER_CE
1909 int isnan(double d);
1910 #endif
1911
1912 #ifndef Perl_isinf
1913 #   ifdef HAS_ISINF
1914 #       define Perl_isinf(x) isinf((NV)x)
1915 #   else
1916 #       ifdef Perl_fp_class_inf
1917 #           define Perl_isinf(x) Perl_fp_class_inf(x)
1918 #       else
1919 #           define Perl_isinf(x) ((x)==NV_INF)
1920 #       endif
1921 #   endif
1922 #endif
1923
1924 #ifndef Perl_isfinite
1925 #   ifdef HAS_FINITE
1926 #       define Perl_isfinite(x) finite((NV)x)
1927 #   else
1928 #       ifdef HAS_ISFINITE
1929 #           define Perl_isfinite(x) isfinite(x)
1930 #       else
1931 #           ifdef Perl_fp_class_finite
1932 #               define Perl_isfinite(x) Perl_fp_class_finite(x)
1933 #           else
1934 #               define Perl_isfinite(x) !(Perl_is_inf(x)||Perl_is_nan(x))
1935 #           endif
1936 #       endif
1937 #   endif
1938 #endif
1939
1940 /* The default is to use Perl's own atof() implementation (in numeric.c).
1941  * Usually that is the one to use but for some platforms (e.g. UNICOS)
1942  * it is however best to use the native implementation of atof.
1943  * You can experiment with using your native one by -DUSE_PERL_ATOF=0.
1944  * Some good tests to try out with either setting are t/base/num.t,
1945  * t/op/numconvert.t, and t/op/pack.t. Note that if using long doubles
1946  * you may need to be using a different function than atof! */
1947
1948 #ifndef USE_PERL_ATOF
1949 #   ifndef _UNICOS
1950 #       define USE_PERL_ATOF
1951 #   endif
1952 #else
1953 #   if USE_PERL_ATOF == 0
1954 #       undef USE_PERL_ATOF
1955 #   endif
1956 #endif
1957
1958 #ifdef USE_PERL_ATOF
1959 #   define Perl_atof(s) Perl_my_atof(s)
1960 #   define Perl_atof2(s, n) Perl_my_atof2(aTHX_ (s), &(n))
1961 #else
1962 #   define Perl_atof(s) (NV)atof(s)
1963 #   define Perl_atof2(s, n) ((n) = atof(s))
1964 #endif
1965
1966 /* Previously these definitions used hardcoded figures.
1967  * It is hoped these formula are more portable, although
1968  * no data one way or another is presently known to me.
1969  * The "PERL_" names are used because these calculated constants
1970  * do not meet the ANSI requirements for LONG_MAX, etc., which
1971  * need to be constants acceptable to #if - kja
1972  *    define PERL_LONG_MAX        2147483647L
1973  *    define PERL_LONG_MIN        (-LONG_MAX - 1)
1974  *    define PERL ULONG_MAX       4294967295L
1975  */
1976
1977 #ifdef I_LIMITS  /* Needed for cast_xxx() functions below. */
1978 #  include <limits.h>
1979 #endif
1980 /* Included values.h above if necessary; still including limits.h down here,
1981  * despite doing above, because math.h might have overriden... XXX - Allen */
1982
1983 /*
1984  * Try to figure out max and min values for the integral types.  THE CORRECT
1985  * SOLUTION TO THIS MESS: ADAPT enquire.c FROM GCC INTO CONFIGURE.  The
1986  * following hacks are used if neither limits.h or values.h provide them:
1987  * U<TYPE>_MAX: for types >= int: ~(unsigned TYPE)0
1988  *              for types <  int:  (unsigned TYPE)~(unsigned)0
1989  *      The argument to ~ must be unsigned so that later signed->unsigned
1990  *      conversion can't modify the value's bit pattern (e.g. -0 -> +0),
1991  *      and it must not be smaller than int because ~ does integral promotion.
1992  * <type>_MAX: (<type>) (U<type>_MAX >> 1)
1993  * <type>_MIN: -<type>_MAX - <is_twos_complement_architecture: (3 & -1) == 3>.
1994  *      The latter is a hack which happens to work on some machines but
1995  *      does *not* catch any random system, or things like integer types
1996  *      with NaN if that is possible.
1997  *
1998  * All of the types are explicitly cast to prevent accidental loss of
1999  * numeric range, and in the hope that they will be less likely to confuse
2000  * over-eager optimizers.
2001  *
2002  */
2003
2004 #define PERL_UCHAR_MIN ((unsigned char)0)
2005
2006 #ifdef UCHAR_MAX
2007 #  define PERL_UCHAR_MAX ((unsigned char)UCHAR_MAX)
2008 #else
2009 #  ifdef MAXUCHAR
2010 #    define PERL_UCHAR_MAX ((unsigned char)MAXUCHAR)
2011 #  else
2012 #    define PERL_UCHAR_MAX       ((unsigned char)~(unsigned)0)
2013 #  endif
2014 #endif
2015
2016 /*
2017  * CHAR_MIN and CHAR_MAX are not included here, as the (char) type may be
2018  * ambiguous. It may be equivalent to (signed char) or (unsigned char)
2019  * depending on local options. Until Configure detects this (or at least
2020  * detects whether the "signed" keyword is available) the CHAR ranges
2021  * will not be included. UCHAR functions normally.
2022  *                                                           - kja
2023  */
2024
2025 #define PERL_USHORT_MIN ((unsigned short)0)
2026
2027 #ifdef USHORT_MAX
2028 #  define PERL_USHORT_MAX ((unsigned short)USHORT_MAX)
2029 #else
2030 #  ifdef MAXUSHORT
2031 #    define PERL_USHORT_MAX ((unsigned short)MAXUSHORT)
2032 #  else
2033 #    ifdef USHRT_MAX
2034 #      define PERL_USHORT_MAX ((unsigned short)USHRT_MAX)
2035 #    else
2036 #      define PERL_USHORT_MAX       ((unsigned short)~(unsigned)0)
2037 #    endif
2038 #  endif
2039 #endif
2040
2041 #ifdef SHORT_MAX
2042 #  define PERL_SHORT_MAX ((short)SHORT_MAX)
2043 #else
2044 #  ifdef MAXSHORT    /* Often used in <values.h> */
2045 #    define PERL_SHORT_MAX ((short)MAXSHORT)
2046 #  else
2047 #    ifdef SHRT_MAX
2048 #      define PERL_SHORT_MAX ((short)SHRT_MAX)
2049 #    else
2050 #      define PERL_SHORT_MAX      ((short) (PERL_USHORT_MAX >> 1))
2051 #    endif
2052 #  endif
2053 #endif
2054
2055 #ifdef SHORT_MIN
2056 #  define PERL_SHORT_MIN ((short)SHORT_MIN)
2057 #else
2058 #  ifdef MINSHORT
2059 #    define PERL_SHORT_MIN ((short)MINSHORT)
2060 #  else
2061 #    ifdef SHRT_MIN
2062 #      define PERL_SHORT_MIN ((short)SHRT_MIN)
2063 #    else
2064 #      define PERL_SHORT_MIN        (-PERL_SHORT_MAX - ((3 & -1) == 3))
2065 #    endif
2066 #  endif
2067 #endif
2068
2069 #ifdef UINT_MAX
2070 #  define PERL_UINT_MAX ((unsigned int)UINT_MAX)
2071 #else
2072 #  ifdef MAXUINT
2073 #    define PERL_UINT_MAX ((unsigned int)MAXUINT)
2074 #  else
2075 #    define PERL_UINT_MAX       (~(unsigned int)0)
2076 #  endif
2077 #endif
2078
2079 #define PERL_UINT_MIN ((unsigned int)0)
2080
2081 #ifdef INT_MAX
2082 #  define PERL_INT_MAX ((int)INT_MAX)
2083 #else
2084 #  ifdef MAXINT    /* Often used in <values.h> */
2085 #    define PERL_INT_MAX ((int)MAXINT)
2086 #  else
2087 #    define PERL_INT_MAX        ((int)(PERL_UINT_MAX >> 1))
2088 #  endif
2089 #endif
2090
2091 #ifdef INT_MIN
2092 #  define PERL_INT_MIN ((int)INT_MIN)
2093 #else
2094 #  ifdef MININT
2095 #    define PERL_INT_MIN ((int)MININT)
2096 #  else
2097 #    define PERL_INT_MIN        (-PERL_INT_MAX - ((3 & -1) == 3))
2098 #  endif
2099 #endif
2100
2101 #ifdef ULONG_MAX
2102 #  define PERL_ULONG_MAX ((unsigned long)ULONG_MAX)
2103 #else
2104 #  ifdef MAXULONG
2105 #    define PERL_ULONG_MAX ((unsigned long)MAXULONG)
2106 #  else
2107 #    define PERL_ULONG_MAX       (~(unsigned long)0)
2108 #  endif
2109 #endif
2110
2111 #define PERL_ULONG_MIN ((unsigned long)0L)
2112
2113 #ifdef LONG_MAX
2114 #  define PERL_LONG_MAX ((long)LONG_MAX)
2115 #else
2116 #  ifdef MAXLONG    /* Often used in <values.h> */
2117 #    define PERL_LONG_MAX ((long)MAXLONG)
2118 #  else
2119 #    define PERL_LONG_MAX        ((long) (PERL_ULONG_MAX >> 1))
2120 #  endif
2121 #endif
2122
2123 #ifdef LONG_MIN
2124 #  define PERL_LONG_MIN ((long)LONG_MIN)
2125 #else
2126 #  ifdef MINLONG
2127 #    define PERL_LONG_MIN ((long)MINLONG)
2128 #  else
2129 #    define PERL_LONG_MIN        (-PERL_LONG_MAX - ((3 & -1) == 3))
2130 #  endif
2131 #endif
2132
2133 #ifdef UV_IS_QUAD
2134
2135 #    define PERL_UQUAD_MAX      (~(UV)0)
2136 #    define PERL_UQUAD_MIN      ((UV)0)
2137 #    define PERL_QUAD_MAX       ((IV) (PERL_UQUAD_MAX >> 1))
2138 #    define PERL_QUAD_MIN       (-PERL_QUAD_MAX - ((3 & -1) == 3))
2139
2140 #endif
2141
2142 #ifdef MYMALLOC
2143 #  include "malloc_ctl.h"
2144 #endif
2145
2146 struct RExC_state_t;
2147
2148 typedef MEM_SIZE STRLEN;
2149
2150 #ifdef PERL_MAD
2151 typedef struct token TOKEN;
2152 typedef struct madprop MADPROP;
2153 typedef struct nexttoken NEXTTOKE;
2154 #endif
2155 typedef struct op OP;
2156 typedef struct cop COP;
2157 typedef struct unop UNOP;
2158 typedef struct binop BINOP;
2159 typedef struct listop LISTOP;
2160 typedef struct logop LOGOP;
2161 typedef struct pmop PMOP;
2162 typedef struct svop SVOP;
2163 typedef struct padop PADOP;
2164 typedef struct pvop PVOP;
2165 typedef struct loop LOOP;
2166
2167 typedef struct interpreter PerlInterpreter;
2168
2169 /* Amdahl's <ksync.h> has struct sv */
2170 /* SGI's <sys/sema.h> has struct sv */
2171 #if defined(UTS) || defined(__sgi)
2172 #   define STRUCT_SV perl_sv
2173 #else
2174 #   define STRUCT_SV sv
2175 #endif
2176 typedef struct STRUCT_SV SV;
2177 typedef struct av AV;
2178 typedef struct hv HV;
2179 typedef struct cv CV;
2180 typedef struct regexp REGEXP;
2181 typedef struct gp GP;
2182 typedef struct gv GV;
2183 typedef struct io IO;
2184 typedef struct context PERL_CONTEXT;
2185 typedef struct block BLOCK;
2186
2187 typedef struct magic MAGIC;
2188 typedef struct xpv XPV;
2189 typedef struct xpviv XPVIV;
2190 typedef struct xpvuv XPVUV;
2191 typedef struct xpvnv XPVNV;
2192 typedef struct xpvmg XPVMG;
2193 typedef struct xpvlv XPVLV;
2194 typedef struct xpvav XPVAV;
2195 typedef struct xpvhv XPVHV;
2196 typedef struct xpvgv XPVGV;
2197 typedef struct xpvcv XPVCV;
2198 typedef struct xpvbm XPVBM;
2199 typedef struct xpvfm XPVFM;
2200 typedef struct xpvio XPVIO;
2201 typedef struct mgvtbl MGVTBL;
2202 typedef union any ANY;
2203 typedef struct ptr_tbl_ent PTR_TBL_ENT_t;
2204 typedef struct ptr_tbl PTR_TBL_t;
2205 typedef struct clone_params CLONE_PARAMS;
2206
2207 #include "handy.h"
2208
2209 #if defined(USE_LARGE_FILES) && !defined(NO_64_BIT_RAWIO)
2210 #   if LSEEKSIZE == 8 && !defined(USE_64_BIT_RAWIO)
2211 #       define USE_64_BIT_RAWIO /* implicit */
2212 #   endif
2213 #endif
2214
2215 /* Notice the use of HAS_FSEEKO: now we are obligated to always use
2216  * fseeko/ftello if possible.  Don't go #defining ftell to ftello yourself,
2217  * however, because operating systems like to do that themself. */
2218 #ifndef FSEEKSIZE
2219 #   ifdef HAS_FSEEKO
2220 #       define FSEEKSIZE LSEEKSIZE
2221 #   else
2222 #       define FSEEKSIZE LONGSIZE
2223 #   endif
2224 #endif
2225
2226 #if defined(USE_LARGE_FILES) && !defined(NO_64_BIT_STDIO)
2227 #   if FSEEKSIZE == 8 && !defined(USE_64_BIT_STDIO)
2228 #       define USE_64_BIT_STDIO /* implicit */
2229 #   endif
2230 #endif
2231
2232 #ifdef USE_64_BIT_RAWIO
2233 #   ifdef HAS_OFF64_T
2234 #       undef Off_t
2235 #       define Off_t off64_t
2236 #       undef LSEEKSIZE
2237 #       define LSEEKSIZE 8
2238 #   endif
2239 /* Most 64-bit environments have defines like _LARGEFILE_SOURCE that
2240  * will trigger defines like the ones below.  Some 64-bit environments,
2241  * however, do not.  Therefore we have to explicitly mix and match. */
2242 #   if defined(USE_OPEN64)
2243 #       define open open64
2244 #   endif
2245 #   if defined(USE_LSEEK64)
2246 #       define lseek lseek64
2247 #   else
2248 #       if defined(USE_LLSEEK)
2249 #           define lseek llseek
2250 #       endif
2251 #   endif
2252 #   if defined(USE_STAT64)
2253 #       define stat stat64
2254 #   endif
2255 #   if defined(USE_FSTAT64)
2256 #       define fstat fstat64
2257 #   endif
2258 #   if defined(USE_LSTAT64)
2259 #       define lstat lstat64
2260 #   endif
2261 #   if defined(USE_FLOCK64)
2262 #       define flock flock64
2263 #   endif
2264 #   if defined(USE_LOCKF64)
2265 #       define lockf lockf64
2266 #   endif
2267 #   if defined(USE_FCNTL64)
2268 #       define fcntl fcntl64
2269 #   endif
2270 #   if defined(USE_TRUNCATE64)
2271 #       define truncate truncate64
2272 #   endif
2273 #   if defined(USE_FTRUNCATE64)
2274 #       define ftruncate ftruncate64
2275 #   endif
2276 #endif
2277
2278 #ifdef USE_64_BIT_STDIO
2279 #   ifdef HAS_FPOS64_T
2280 #       undef Fpos_t
2281 #       define Fpos_t fpos64_t
2282 #   endif
2283 /* Most 64-bit environments have defines like _LARGEFILE_SOURCE that
2284  * will trigger defines like the ones below.  Some 64-bit environments,
2285  * however, do not. */
2286 #   if defined(USE_FOPEN64)
2287 #       define fopen fopen64
2288 #   endif
2289 #   if defined(USE_FSEEK64)
2290 #       define fseek fseek64 /* don't do fseeko here, see perlio.c */
2291 #   endif
2292 #   if defined(USE_FTELL64)
2293 #       define ftell ftell64 /* don't do ftello here, see perlio.c */
2294 #   endif
2295 #   if defined(USE_FSETPOS64)
2296 #       define fsetpos fsetpos64
2297 #   endif
2298 #   if defined(USE_FGETPOS64)
2299 #       define fgetpos fgetpos64
2300 #   endif
2301 #   if defined(USE_TMPFILE64)
2302 #       define tmpfile tmpfile64
2303 #   endif
2304 #   if defined(USE_FREOPEN64)
2305 #       define freopen freopen64
2306 #   endif
2307 #endif
2308
2309 #if defined(OS2) || defined(MACOS_TRADITIONAL)
2310 #  include "iperlsys.h"
2311 #endif
2312
2313 #if defined(__OPEN_VM)
2314 #   include "vmesa/vmesaish.h"
2315 #   define ISHISH "vmesa"
2316 #endif
2317
2318 #ifdef DOSISH
2319 #   if defined(OS2)
2320 #       include "os2ish.h"
2321 #   else
2322 #       include "dosish.h"
2323 #   endif
2324 #   define ISHISH "dos"
2325 #endif
2326
2327 #if defined(VMS)
2328 #   include "vmsish.h"
2329 #   include "embed.h"
2330 #  ifndef PERL_MAD
2331 #    undef op_getmad
2332 #    define op_getmad(arg,pegop,slot) /*EMPTY*/
2333 #  endif
2334 #   define ISHISH "vms"
2335 #endif
2336
2337 #if defined(PLAN9)
2338 #   include "./plan9/plan9ish.h"
2339 #   define ISHISH "plan9"
2340 #endif
2341
2342 #if defined(MPE)
2343 #  include "mpeix/mpeixish.h"
2344 #  define ISHISH "mpeix"
2345 #endif
2346
2347 #if defined(__VOS__)
2348 #   ifdef __GNUC__
2349 #     include "./vos/vosish.h"
2350 #   else
2351 #     include "vos/vosish.h"
2352 #   endif
2353 #   define ISHISH "vos"
2354 #endif
2355
2356 #if defined(EPOC)
2357 #   include "epocish.h"
2358 #   define ISHISH "epoc"
2359 #endif
2360
2361 #ifdef __SYMBIAN32__
2362 #   include "symbian/symbianish.h"
2363 #   include "embed.h"
2364 #  ifndef PERL_MAD
2365 #    undef op_getmad
2366 #    define op_getmad(arg,pegop,slot) /*EMPTY*/
2367 #  endif
2368 #   define ISHISH "symbian"
2369 #endif
2370
2371 #if defined(MACOS_TRADITIONAL)
2372 #   include "macos/macish.h"
2373 #   ifndef NO_ENVIRON_ARRAY
2374 #       define NO_ENVIRON_ARRAY
2375 #   endif
2376 #   define ISHISH "macos classic"
2377 #endif
2378
2379 #if defined(__BEOS__)
2380 #   include "beos/beosish.h"
2381 #   define ISHISH "beos"
2382 #endif
2383
2384 #ifndef ISHISH
2385 #   include "unixish.h"
2386 #   define ISHISH "unix"
2387 #endif
2388
2389 /* NSIG logic from Configure --> */
2390 /* Strange style to avoid deeply-nested #if/#else/#endif */
2391 #ifndef NSIG
2392 #  ifdef _NSIG
2393 #    define NSIG (_NSIG)
2394 #  endif
2395 #endif
2396
2397 #ifndef NSIG
2398 #  ifdef SIGMAX
2399 #    define NSIG (SIGMAX+1)
2400 #  endif
2401 #endif
2402
2403 #ifndef NSIG
2404 #  ifdef SIG_MAX
2405 #    define NSIG (SIG_MAX+1)
2406 #  endif
2407 #endif
2408
2409 #ifndef NSIG
2410 #  ifdef _SIG_MAX
2411 #    define NSIG (_SIG_MAX+1)
2412 #  endif
2413 #endif
2414
2415 #ifndef NSIG
2416 #  ifdef MAXSIG
2417 #    define NSIG (MAXSIG+1)
2418 #  endif
2419 #endif
2420
2421 #ifndef NSIG
2422 #  ifdef MAX_SIG
2423 #    define NSIG (MAX_SIG+1)
2424 #  endif
2425 #endif
2426
2427 #ifndef NSIG
2428 #  ifdef SIGARRAYSIZE
2429 #    define NSIG SIGARRAYSIZE /* Assume ary[SIGARRAYSIZE] */
2430 #  endif
2431 #endif
2432
2433 #ifndef NSIG
2434 #  ifdef _sys_nsig
2435 #    define NSIG (_sys_nsig) /* Solaris 2.5 */
2436 #  endif
2437 #endif
2438
2439 /* Default to some arbitrary number that's big enough to get most
2440    of the common signals.
2441 */
2442 #ifndef NSIG
2443 #    define NSIG 50
2444 #endif
2445 /* <-- NSIG logic from Configure */
2446
2447 #ifndef NO_ENVIRON_ARRAY
2448 #  define USE_ENVIRON_ARRAY
2449 #endif
2450
2451 /*
2452  * initialise to avoid floating-point exceptions from overflow, etc
2453  */
2454 #ifndef PERL_FPU_INIT
2455 #  ifdef HAS_FPSETMASK
2456 #    if HAS_FLOATINGPOINT_H
2457 #      include <floatingpoint.h>
2458 #    endif
2459 #    define PERL_FPU_INIT fpsetmask(0);
2460 #  else
2461 #    if defined(SIGFPE) && defined(SIG_IGN) && !defined(PERL_MICRO)
2462 #      define PERL_FPU_INIT       PL_sigfpe_saved = (Sighandler_t) signal(SIGFPE, SIG_IGN);
2463 #      define PERL_FPU_PRE_EXEC   { Sigsave_t xfpe; rsignal_save(SIGFPE, PL_sigfpe_saved, &xfpe);
2464 #      define PERL_FPU_POST_EXEC    rsignal_restore(SIGFPE, &xfpe); }
2465 #    else
2466 #      define PERL_FPU_INIT
2467
2468 #    endif
2469 #  endif
2470 #endif
2471 #ifndef PERL_FPU_PRE_EXEC
2472 #  define PERL_FPU_PRE_EXEC   {
2473 #  define PERL_FPU_POST_EXEC  }
2474 #endif
2475
2476 #ifndef PERL_SYS_INIT3
2477 #  define PERL_SYS_INIT3(argvp,argcp,envp) PERL_SYS_INIT(argvp,argcp)
2478 #endif
2479
2480 #ifndef PERL_WRITE_MSG_TO_CONSOLE
2481 #  define PERL_WRITE_MSG_TO_CONSOLE(io, msg, len) PerlIO_write(io, msg, len)
2482 #endif
2483
2484 #ifndef MAXPATHLEN
2485 #  ifdef PATH_MAX
2486 #    ifdef _POSIX_PATH_MAX
2487 #       if PATH_MAX > _POSIX_PATH_MAX
2488 /* POSIX 1990 (and pre) was ambiguous about whether PATH_MAX
2489  * included the null byte or not.  Later amendments of POSIX,
2490  * XPG4, the Austin Group, and the Single UNIX Specification
2491  * all explicitly include the null byte in the PATH_MAX.
2492  * Ditto for _POSIX_PATH_MAX. */
2493 #         define MAXPATHLEN PATH_MAX
2494 #       else
2495 #         define MAXPATHLEN _POSIX_PATH_MAX
2496 #       endif
2497 #    else
2498 #      define MAXPATHLEN (PATH_MAX+1)
2499 #    endif
2500 #  else
2501 #    ifdef _POSIX_PATH_MAX
2502 #       define MAXPATHLEN _POSIX_PATH_MAX
2503 #    else
2504 #       define MAXPATHLEN 1024  /* Err on the large side. */
2505 #    endif
2506 #  endif
2507 #endif
2508
2509 /* In case Configure was not used (we are using a "canned config"
2510  * such as Win32, or a cross-compilation setup, for example) try going
2511  * by the gcc major and minor versions.  One useful URL is
2512  * http://www.ohse.de/uwe/articles/gcc-attributes.html,
2513  * but contrary to this information warn_unused_result seems
2514  * not to be in gcc 3.3.5, at least. --jhi
2515  * Set these up now otherwise we get confused when some of the <*thread.h>
2516  * includes below indirectly pull in <perlio.h> (which needs to know if we
2517  * have HASATTRIBUTE_FORMAT).
2518  */
2519
2520 #if defined __GNUC__ && !defined(__INTEL_COMPILER)
2521 #  if __GNUC__ >= 3 /* 3.0 -> */ /* XXX Verify this version */
2522 #    define HASATTRIBUTE_FORMAT
2523 #  endif
2524 #  if __GNUC__ >= 3 /* 3.0 -> */
2525 #    define HASATTRIBUTE_MALLOC
2526 #  endif
2527 #  if __GNUC__ == 3 && __GNUC_MINOR__ >= 3 || __GNUC__ > 3 /* 3.3 -> */
2528 #    define HASATTRIBUTE_NONNULL
2529 #  endif
2530 #  if __GNUC__ == 2 && __GNUC_MINOR__ >= 5 || __GNUC__ > 2 /* 2.5 -> */
2531 #    define HASATTRIBUTE_NORETURN
2532 #  endif
2533 #  if __GNUC__ >= 3 /* gcc 3.0 -> */
2534 #    define HASATTRIBUTE_PURE
2535 #  endif
2536 #  if __GNUC__ >= 3 /* gcc 3.0 -> */ /* XXX Verify this version */
2537 #    define HASATTRIBUTE_UNUSED
2538 #  endif
2539 #  if __GNUC__ == 3 && __GNUC_MINOR__ >= 4 || __GNUC__ > 3 /* 3.4 -> */
2540 #    define HASATTRIBUTE_WARN_UNUSED_RESULT
2541 #  endif
2542 #endif
2543
2544 /* USE_5005THREADS needs to be after unixish.h as <pthread.h> includes
2545  * <sys/signal.h> which defines NSIG - which will stop inclusion of <signal.h>
2546  * this results in many functions being undeclared which bothers C++
2547  * May make sense to have threads after "*ish.h" anyway
2548  */
2549
2550 #if defined(USE_ITHREADS)
2551 #  ifdef NETWARE
2552 #   include <nw5thread.h>
2553 #  else
2554 #  ifdef FAKE_THREADS
2555 #    include "fakethr.h"
2556 #  else
2557 #    ifdef WIN32
2558 #      include <win32thread.h>
2559 #    else
2560 #      ifdef OS2
2561 #        include "os2thread.h"
2562 #      else
2563 #        ifdef I_MACH_CTHREADS
2564 #          include <mach/cthreads.h>
2565 #          if (defined(NeXT) || defined(__NeXT__)) && defined(PERL_POLLUTE_MALLOC)
2566 #            define MUTEX_INIT_CALLS_MALLOC
2567 #          endif
2568 typedef cthread_t       perl_os_thread;
2569 typedef mutex_t         perl_mutex;
2570 typedef condition_t     perl_cond;
2571 typedef void *          perl_key;
2572 #        else /* Posix threads */
2573 #          ifdef I_PTHREAD
2574 #            include <pthread.h>
2575 #          endif
2576 typedef pthread_t       perl_os_thread;
2577 typedef pthread_mutex_t perl_mutex;
2578 typedef pthread_cond_t  perl_cond;
2579 typedef pthread_key_t   perl_key;
2580 #        endif /* I_MACH_CTHREADS */
2581 #      endif /* OS2 */
2582 #    endif /* WIN32 */
2583 #  endif /* FAKE_THREADS */
2584 #endif  /* NETWARE */
2585 #endif /* USE_ITHREADS */
2586
2587 #if defined(WIN32)
2588 #  include "win32.h"
2589 #endif
2590
2591 #ifdef NETWARE
2592 #  include "netware.h"
2593 #endif
2594
2595 #define STATUS_UNIX     PL_statusvalue
2596 #ifdef VMS
2597 #   define STATUS_NATIVE        PL_statusvalue_vms
2598 /*
2599  * vaxc$errno is only guaranteed to be valid if errno == EVMSERR, otherwise
2600  * its contents can not be trusted.  Unfortunately, Perl seems to check
2601  * it on exit, so it when PL_statusvalue_vms is updated, vaxc$errno should
2602  * be updated also.
2603  */
2604 #  include <stsdef.h>
2605 #  include <ssdef.h>
2606 /* Presume this because if VMS changes it, it will require a new
2607  * set of APIs for waiting on children for binary compatibility.
2608  */
2609 #  define child_offset_bits (8)
2610 #  ifndef C_FAC_POSIX
2611 #  define C_FAC_POSIX 0x35A000
2612 #  endif
2613
2614 /*  STATUS_EXIT - validates and returns a NATIVE exit status code for the
2615  * platform from the existing UNIX or Native status values.
2616  */
2617
2618 #   define STATUS_EXIT \
2619         (((I32)PL_statusvalue_vms == -1 ? SS$_ABORT : PL_statusvalue_vms) | \
2620            (VMSISH_HUSHED ? STS$M_INHIB_MSG : 0))
2621
2622
2623 /* STATUS_NATIVE_CHILD_SET - Calculate UNIX status that matches the child
2624  * exit code and shifts the UNIX value over the correct number of bits to
2625  * be a child status.  Usually the number of bits is 8, but that could be
2626  * platform dependent.  The NATIVE status code is presumed to have either
2627  * from a child process.
2628  */
2629
2630 /* This is complicated.  The child processes return a true native VMS
2631    status which must be saved.  But there is an assumption in Perl that
2632    the UNIX child status has some relationship to errno values, so
2633    Perl tries to translate it to text in some of the tests.  
2634    In order to get the string translation correct, for the error, errno
2635    must be EVMSERR, but that generates a different text message
2636    than what the test programs are expecting.  So an errno value must
2637    be derived from the native status value when an error occurs.
2638    That will hide the true native status message.  With this version of
2639    perl, the true native child status can always be retrieved so that
2640    is not a problem.  But in this case, Pl_statusvalue and errno may
2641    have different values in them.
2642  */
2643
2644 #   define STATUS_NATIVE_CHILD_SET(n) \
2645         STMT_START {                                                    \
2646             I32 evalue = (I32)n;                                        \
2647             if (evalue == EVMSERR) {                                    \
2648               PL_statusvalue_vms = vaxc$errno;                          \
2649               PL_statusvalue = evalue;                                  \
2650             } else {                                                    \
2651               PL_statusvalue_vms = evalue;                              \
2652               if (evalue == -1) {                                       \
2653                 PL_statusvalue = -1;                                    \
2654                 PL_statusvalue_vms = SS$_ABORT; /* Should not happen */ \
2655               } else                                                    \
2656                 PL_statusvalue = Perl_vms_status_to_unix(evalue, 1);    \
2657               set_vaxc_errno(evalue);                                   \
2658               if ((PL_statusvalue_vms & C_FAC_POSIX) == C_FAC_POSIX)    \
2659                   set_errno(EVMSERR);                                   \
2660               else set_errno(Perl_vms_status_to_unix(evalue, 0));       \
2661               PL_statusvalue = PL_statusvalue << child_offset_bits;     \
2662             }                                                           \
2663         } STMT_END
2664
2665 #   ifdef VMSISH_STATUS
2666 #       define STATUS_CURRENT   (VMSISH_STATUS ? STATUS_NATIVE : STATUS_UNIX)
2667 #   else
2668 #       define STATUS_CURRENT   STATUS_UNIX
2669 #   endif
2670
2671   /* STATUS_UNIX_SET - takes a UNIX/POSIX errno value and attempts to update
2672    * the NATIVE status to an equivalent value.  Can not be used to translate
2673    * exit code values as exit code values are not guaranteed to have any
2674    * relationship at all to errno values.
2675    * This is used when Perl is forcing errno to have a specific value.
2676    */
2677 #   define STATUS_UNIX_SET(n)                           \
2678         STMT_START {                                    \
2679             I32 evalue = (I32)n;                        \
2680             PL_statusvalue = evalue;                    \
2681             if (PL_statusvalue != -1) {                 \
2682                 if (PL_statusvalue != EVMSERR) {        \
2683                   PL_statusvalue &= 0xFFFF;             \
2684                   if (MY_POSIX_EXIT)                    \
2685                     PL_statusvalue_vms=PL_statusvalue ? SS$_ABORT : SS$_NORMAL;\
2686                   else PL_statusvalue_vms = Perl_unix_status_to_vms(evalue); \
2687                 }                                       \
2688                 else {                                  \
2689                   PL_statusvalue_vms = vaxc$errno;      \
2690                 }                                       \
2691             }                                           \
2692             else PL_statusvalue_vms = SS$_ABORT;        \
2693             set_vaxc_errno(PL_statusvalue_vms);         \
2694         } STMT_END
2695
2696   /* STATUS_UNIX_EXIT_SET - Takes a UNIX/POSIX exit code and sets
2697    * the NATIVE error status based on it.  It does not assume that
2698    * the UNIX/POSIX exit codes have any relationship to errno, except
2699    * that 0 indicates a success.  When in the default mode to comply
2700    * with the Perl VMS documentation, any other code sets the NATIVE
2701    * status to a failure code of SS$_ABORT.
2702    *
2703    * In the new POSIX EXIT mode, native status will be set so that the
2704    * actual exit code will can be retrieved by the calling program or
2705    * shell.
2706    *
2707    * If the exit code is not clearly a UNIX parent or child exit status,
2708    * it will be passed through as a VMS status.
2709    */
2710
2711 #   define STATUS_UNIX_EXIT_SET(n)                      \
2712         STMT_START {                                    \
2713             I32 evalue = (I32)n;                        \
2714             PL_statusvalue = evalue;                    \
2715             if (evalue != -1) {                         \
2716               if (evalue <= 0xFF00) {                   \
2717                 if (evalue > 0xFF)                      \
2718                   evalue = (evalue >> child_offset_bits) & 0xFF; \
2719                 if (evalue == 0)                        \
2720                   PL_statusvalue_vms == SS$_NORMAL;     \
2721                 else                                    \
2722                   if (MY_POSIX_EXIT)                    \
2723                     PL_statusvalue_vms =        \
2724                        (C_FAC_POSIX | (evalue << 3 ) | (evalue == 1)? \
2725                         (STS$K_ERROR | STS$M_INHIB_MSG) : 1); \
2726                   else                                  \
2727                     PL_statusvalue_vms = SS$_ABORT; \
2728               } else { /* forgive them Perl, for they have sinned */ \
2729                 if (evalue != EVMSERR) PL_statusvalue_vms = evalue; \
2730                 else PL_statusvalue_vms = vaxc$errno;           \
2731                 /* And obviously used a VMS status value instead of UNIX */ \
2732                 PL_statusvalue = EVMSERR;                               \
2733               }                                                 \
2734             }                                                   \
2735             else PL_statusvalue_vms = SS$_ABORT;                \
2736             set_vaxc_errno(PL_statusvalue_vms);                 \
2737         } STMT_END
2738
2739   /* STATUS_EXIT_SET - Takes a NATIVE/UNIX/POSIX exit code
2740    * and sets the NATIVE error status based on it.  This special case
2741    * is needed to maintain compatibility with past VMS behavior.
2742    *
2743    * In the default mode on VMS, this number is passed through as
2744    * both the NATIVE and UNIX status.  Which makes it different
2745    * that the STATUS_UNIX_EXIT_SET.
2746    *
2747    * In the new POSIX EXIT mode, native status will be set so that the
2748    * actual exit code will can be retrieved by the calling program or
2749    * shell.
2750    *
2751    */
2752
2753 #   define STATUS_EXIT_SET(n)                           \
2754         STMT_START {                                    \
2755             I32 evalue = (I32)n;                        \
2756             PL_statusvalue = evalue;                    \
2757             if (MY_POSIX_EXIT)                          \
2758                 PL_statusvalue_vms =                    \
2759                   (C_FAC_POSIX | (evalue << 3 ) | (evalue == 1)? \
2760                    (STS$K_ERROR | STS$M_INHIB_MSG) : 1); \
2761             else                                        \
2762                 PL_statusvalue_vms = evalue ? evalue : SS$_NORMAL; \
2763             set_vaxc_errno(PL_statusvalue_vms);         \
2764         } STMT_END
2765
2766
2767  /* This macro forces a success status */
2768 #   define STATUS_ALL_SUCCESS   \
2769         (PL_statusvalue = 0, PL_statusvalue_vms = SS$_NORMAL)
2770
2771  /* This macro forces a failure status */
2772 #   define STATUS_ALL_FAILURE   (PL_statusvalue = 1, \
2773      vaxc$errno = PL_statusvalue_vms = MY_POSIX_EXIT ? \
2774         (C_FAC_POSIX | (1 << 3) | STS$K_ERROR | STS$M_INHIB_MSG) : SS$_ABORT)
2775
2776 #else
2777 #   define STATUS_NATIVE        PL_statusvalue_posix
2778 #   if defined(WCOREDUMP)
2779 #       define STATUS_NATIVE_CHILD_SET(n)                  \
2780             STMT_START {                                   \
2781                 PL_statusvalue_posix = (n);                \
2782                 if (PL_statusvalue_posix == -1)            \
2783                     PL_statusvalue = -1;                   \
2784                 else {                                     \
2785                     PL_statusvalue =                       \
2786                         (WIFEXITED(PL_statusvalue_posix) ? (WEXITSTATUS(PL_statusvalue_posix) << 8) : 0) |  \
2787                         (WIFSIGNALED(PL_statusvalue_posix) ? (WTERMSIG(PL_statusvalue_posix) & 0x7F) : 0) | \
2788                         (WIFSIGNALED(PL_statusvalue_posix) && WCOREDUMP(PL_statusvalue_posix) ? 0x80 : 0);  \
2789                 }                                          \
2790             } STMT_END
2791 #   elif defined(WIFEXITED)
2792 #       define STATUS_NATIVE_CHILD_SET(n)                  \
2793             STMT_START {                                   \
2794                 PL_statusvalue_posix = (n);                \
2795                 if (PL_statusvalue_posix == -1)            \
2796                     PL_statusvalue = -1;                   \
2797                 else {                                     \
2798                     PL_statusvalue =                       \
2799                         (WIFEXITED(PL_statusvalue_posix) ? (WEXITSTATUS(PL_statusvalue_posix) << 8) : 0) |  \
2800                         (WIFSIGNALED(PL_statusvalue_posix) ? (WTERMSIG(PL_statusvalue_posix) & 0x7F) : 0);  \
2801                 }                                          \
2802             } STMT_END
2803 #   else
2804 #       define STATUS_NATIVE_CHILD_SET(n)                  \
2805             STMT_START {                                   \
2806                 PL_statusvalue_posix = (n);                \
2807                 if (PL_statusvalue_posix == -1)            \
2808                     PL_statusvalue = -1;                   \
2809                 else {                                     \
2810                     PL_statusvalue =                       \
2811                         PL_statusvalue_posix & 0xFFFF;     \
2812                 }                                          \
2813             } STMT_END
2814 #   endif
2815 #   define STATUS_UNIX_SET(n)           \
2816         STMT_START {                    \
2817             PL_statusvalue = (n);               \
2818             if (PL_statusvalue != -1)   \
2819                 PL_statusvalue &= 0xFFFF;       \
2820         } STMT_END
2821 #   define STATUS_UNIX_EXIT_SET(n) STATUS_UNIX_SET(n)
2822 #   define STATUS_EXIT_SET(n) STATUS_UNIX_SET(n)
2823 #   define STATUS_CURRENT STATUS_UNIX
2824 #   define STATUS_EXIT STATUS_UNIX
2825 #   define STATUS_ALL_SUCCESS   (PL_statusvalue = 0, PL_statusvalue_posix = 0)
2826 #   define STATUS_ALL_FAILURE   (PL_statusvalue = 1, PL_statusvalue_posix = 1)
2827 #endif
2828
2829 /* flags in PL_exit_flags for nature of exit() */
2830 #define PERL_EXIT_EXPECTED      0x01
2831 #define PERL_EXIT_DESTRUCT_END  0x02  /* Run END in perl_destruct */
2832
2833 #ifndef MEMBER_TO_FPTR
2834 #  define MEMBER_TO_FPTR(name)          name
2835 #endif
2836
2837 /* format to use for version numbers in file/directory names */
2838 /* XXX move to Configure? */
2839 #ifndef PERL_FS_VER_FMT
2840 #  define PERL_FS_VER_FMT       "%d.%d.%d"
2841 #endif
2842
2843 /* This defines a way to flush all output buffers.  This may be a
2844  * performance issue, so we allow people to disable it.  Also, if
2845  * we are using stdio, there are broken implementations of fflush(NULL)
2846  * out there, Solaris being the most prominent.
2847  */
2848 #ifndef PERL_FLUSHALL_FOR_CHILD
2849 # if defined(USE_PERLIO) || defined(FFLUSH_NULL) || defined(USE_SFIO)
2850 #  define PERL_FLUSHALL_FOR_CHILD       PerlIO_flush((PerlIO*)NULL)
2851 # else
2852 #  ifdef FFLUSH_ALL
2853 #   define PERL_FLUSHALL_FOR_CHILD      my_fflush_all()
2854 #  else
2855 #   define PERL_FLUSHALL_FOR_CHILD      NOOP
2856 #  endif
2857 # endif
2858 #endif
2859
2860 #ifndef PERL_WAIT_FOR_CHILDREN
2861 #  define PERL_WAIT_FOR_CHILDREN        NOOP
2862 #endif
2863
2864 /* the traditional thread-unsafe notion of "current interpreter". */
2865 #ifndef PERL_SET_INTERP
2866 #  define PERL_SET_INTERP(i)            (PL_curinterp = (PerlInterpreter*)(i))
2867 #endif
2868
2869 #ifndef PERL_GET_INTERP
2870 #  define PERL_GET_INTERP               (PL_curinterp)
2871 #endif
2872
2873 #if defined(PERL_IMPLICIT_CONTEXT) && !defined(PERL_GET_THX)
2874 #  ifdef MULTIPLICITY
2875 #    define PERL_GET_THX                ((PerlInterpreter *)PERL_GET_CONTEXT)
2876 #  endif
2877 #  define PERL_SET_THX(t)               PERL_SET_CONTEXT(t)
2878 #endif
2879
2880 /* 
2881     This replaces the previous %_ "hack" by the "%p" hacks.
2882     All that is required is that the perl source does not
2883     use "%-p" or "%-<number>p" or "%<number>p" formats.  
2884     These formats will still work in perl code.   
2885     See comments in sv.c for futher details.
2886
2887         -DvdNUMBER=<number> can be used to redefine VDf
2888
2889         -DvdNUMBER=0 reverts VDf to "vd", as in perl5.8.7,
2890             which works properly but gives compiler warnings
2891
2892     Robin Barker 2005-07-14
2893 */
2894
2895 #ifndef SVf_
2896 #  define SVf_(n) "-" STRINGIFY(n) "p"
2897 #endif
2898
2899 #ifndef SVf
2900 #  define SVf "-p"
2901 #endif
2902
2903 #ifndef SVf32
2904 #  define SVf32 SVf_(32)
2905 #endif
2906
2907 #ifndef SVf256
2908 #  define SVf256 SVf_(256)
2909 #endif
2910
2911 #ifndef vdNUMBER
2912 #  define vdNUMBER 1
2913 #endif
2914  
2915 #ifndef VDf
2916 #  if vdNUMBER 
2917 #    define VDf STRINGIFY(vdNUMBER) "p"
2918 #  else
2919 #    define VDf "vd"
2920 #  endif
2921 #endif
2922  
2923 #ifndef UVf
2924 #  define UVf UVuf
2925 #endif
2926
2927 #ifdef HASATTRIBUTE_FORMAT
2928 #  define __attribute__format__(x,y,z)      __attribute__((format(x,y,z)))
2929 #endif
2930 #ifdef HASATTRIBUTE_MALLOC
2931 #  define __attribute__malloc__             __attribute__((__malloc__))
2932 #endif
2933 #ifdef HASATTRIBUTE_NONNULL
2934 #  define __attribute__nonnull__(a)         __attribute__((nonnull(a)))
2935 #endif
2936 #ifdef HASATTRIBUTE_NORETURN
2937 #  define __attribute__noreturn__           __attribute__((noreturn))
2938 #endif
2939 #ifdef HASATTRIBUTE_PURE
2940 #  define __attribute__pure__               __attribute__((pure))
2941 #endif
2942 #ifdef HASATTRIBUTE_UNUSED
2943 #  define __attribute__unused__             __attribute__((unused))
2944 #endif
2945 #ifdef HASATTRIBUTE_WARN_UNUSED_RESULT
2946 #  define __attribute__warn_unused_result__ __attribute__((warn_unused_result))
2947 #endif
2948
2949 /* If we haven't defined the attributes yet, define them to blank. */
2950 #ifndef __attribute__format__
2951 #  define __attribute__format__(x,y,z)
2952 #endif
2953 #ifndef __attribute__malloc__
2954 #  define __attribute__malloc__
2955 #endif
2956 #ifndef __attribute__nonnull__
2957 #  define __attribute__nonnull__(a)
2958 #endif
2959 #ifndef __attribute__noreturn__
2960 #  define __attribute__noreturn__
2961 #endif
2962 #ifndef __attribute__pure__
2963 #  define __attribute__pure__
2964 #endif
2965 #ifndef __attribute__unused__
2966 #  define __attribute__unused__
2967 #endif
2968 #ifndef __attribute__warn_unused_result__
2969 #  define __attribute__warn_unused_result__
2970 #endif
2971
2972 /* For functions that are marked as __attribute__noreturn__, it's not
2973    appropriate to call return.  In either case, include the lint directive.
2974  */
2975 #ifdef HASATTRIBUTE_NORETURN
2976 #  define NORETURN_FUNCTION_END /* NOTREACHED */
2977 #else
2978 #  define NORETURN_FUNCTION_END /* NOTREACHED */ return 0
2979 #endif
2980
2981 #ifdef HAS_BUILTIN_EXPECT
2982 #  define EXPECT(expr,val)                  __builtin_expect(expr,val)
2983 #else
2984 #  define EXPECT(expr,val)                  (expr)
2985 #endif
2986 #define LIKELY(cond)                        EXPECT(cond,1)
2987 #define UNLIKELY(cond)                      EXPECT(cond,0)
2988 #ifdef HAS_BUILTIN_CHOOSE_EXPR
2989 /* placeholder */
2990 #endif
2991
2992 /* Some unistd.h's give a prototype for pause() even though
2993    HAS_PAUSE ends up undefined.  This causes the #define
2994    below to be rejected by the compiler.  Sigh.
2995 */
2996 #ifdef HAS_PAUSE
2997 #define Pause   pause
2998 #else
2999 #define Pause() sleep((32767<<16)+32767)
3000 #endif
3001
3002 #ifndef IOCPARM_LEN
3003 #   ifdef IOCPARM_MASK
3004         /* on BSDish systems we're safe */
3005 #       define IOCPARM_LEN(x)  (((x) >> 16) & IOCPARM_MASK)
3006 #   else
3007 #       if defined(_IOC_SIZE) && defined(__GLIBC__)
3008         /* on Linux systems we're safe; except when we're not [perl #38223] */
3009 #           define IOCPARM_LEN(x) (_IOC_SIZE(x) < 256 ? 256 : _IOC_SIZE(x))
3010 #       else
3011         /* otherwise guess at what's safe */
3012 #           define IOCPARM_LEN(x)       256
3013 #       endif
3014 #   endif
3015 #endif
3016
3017 #if defined(__CYGWIN__)
3018 /* USEMYBINMODE
3019  *   This symbol, if defined, indicates that the program should
3020  *   use the routine my_binmode(FILE *fp, char iotype, int mode) to insure
3021  *   that a file is in "binary" mode -- that is, that no translation
3022  *   of bytes occurs on read or write operations.
3023  */
3024 #  define USEMYBINMODE /**/
3025 #  include <io.h> /* for setmode() prototype */
3026 #  define my_binmode(fp, iotype, mode) \
3027             (PerlLIO_setmode(fileno(fp), mode) != -1 ? TRUE : FALSE)
3028 #endif
3029
3030 #ifdef __CYGWIN__
3031 void init_os_extras(void);
3032 #endif
3033
3034 #ifdef UNION_ANY_DEFINITION
3035 UNION_ANY_DEFINITION;
3036 #else
3037 union any {
3038     void*       any_ptr;
3039     I32         any_i32;
3040     IV          any_iv;
3041     long        any_long;
3042     bool        any_bool;
3043     void        (*any_dptr) (void*);
3044     void        (*any_dxptr) (pTHX_ void*);
3045 };
3046 #endif
3047
3048 typedef I32 (*filter_t) (pTHX_ int, SV *, int);
3049
3050 #define FILTER_READ(idx, sv, len)  filter_read(idx, sv, len)
3051 #define FILTER_DATA(idx)           (AvARRAY(PL_rsfp_filters)[idx])
3052 #define FILTER_ISREADER(idx)       (idx >= AvFILLp(PL_rsfp_filters))
3053
3054 #if defined(_AIX) && !defined(_AIX43)
3055 #if defined(USE_REENTRANT) || defined(_REENTRANT) || defined(_THREAD_SAFE)
3056 /* We cannot include <crypt.h> to get the struct crypt_data
3057  * because of setkey prototype problems when threading */
3058 typedef        struct crypt_data {     /* straight from /usr/include/crypt.h */
3059     /* From OSF, Not needed in AIX
3060        char C[28], D[28];
3061     */
3062     char E[48];
3063     char KS[16][48];
3064     char block[66];
3065     char iobuf[16];
3066 } CRYPTD;
3067 #endif /* threading */
3068 #endif /* AIX */
3069
3070 #if !defined(OS2) && !defined(MACOS_TRADITIONAL)
3071 #  include "iperlsys.h"
3072 #endif
3073
3074 /* [perl #22371] Algorimic Complexity Attack on Perl 5.6.1, 5.8.0.
3075  * Note that the USE_HASH_SEED and USE_HASH_SEED_EXPLICIT are *NOT*
3076  * defined by Configure, despite their names being similar to the
3077  * other defines like USE_ITHREADS.  Configure in fact knows nothing
3078  * about the randomised hashes.  Therefore to enable/disable the hash
3079  * randomisation defines use the Configure -Accflags=... instead. */
3080 #if !defined(NO_HASH_SEED) && !defined(USE_HASH_SEED) && !defined(USE_HASH_SEED_EXPLICIT)
3081 #  define USE_HASH_SEED
3082 #endif
3083
3084 /* Win32 defines a type 'WORD' in windef.h. This conflicts with the enumerator
3085  * 'WORD' defined in perly.h. The yytokentype enum is only a debugging aid, so
3086  * it's not really needed.
3087  */
3088 #if defined(WIN32)
3089 #  define YYTOKENTYPE
3090 #endif
3091 #include "perly.h"
3092
3093 #ifdef PERL_MAD
3094 struct nexttoken {
3095     YYSTYPE next_val;   /* value of next token, if any */
3096     I32 next_type;      /* type of next token */
3097     MADPROP *next_mad;  /* everything else about that token */
3098 };
3099 #endif
3100
3101 #include "regexp.h"
3102 #include "sv.h"
3103 #include "util.h"
3104 #include "form.h"
3105 #include "gv.h"
3106 #include "pad.h"
3107 #include "cv.h"
3108 #include "opnames.h"
3109 #include "op.h"
3110 #include "hv.h"
3111 #include "cop.h"
3112 #include "av.h"
3113 #include "mg.h"
3114 #include "scope.h"
3115 #include "warnings.h"
3116 #include "utf8.h"
3117
3118
3119 typedef struct _sublex_info SUBLEXINFO;
3120 struct _sublex_info {
3121     I32 super_state;    /* lexer state to save */
3122     I32 sub_inwhat;     /* "lex_inwhat" to use */
3123     OP *sub_op;         /* "lex_op" to use */
3124     char *super_bufptr; /* PL_bufptr that was */
3125     char *super_bufend; /* PL_bufend that was */
3126 };
3127
3128 typedef struct magic_state MGS; /* struct magic_state defined in mg.c */
3129
3130 struct scan_data_t;             /* Used in S_* functions in regcomp.c */
3131 struct regnode_charclass_class; /* Used in S_* functions in regcomp.c */
3132
3133 /* Keep next first in this structure, because sv_free_arenas take
3134    advantage of this to share code between the pte arenas and the SV
3135    body arenas  */
3136 struct ptr_tbl_ent {
3137     struct ptr_tbl_ent*         next;
3138     const void*                 oldval;
3139     void*                       newval;
3140 };
3141
3142 struct ptr_tbl {
3143     struct ptr_tbl_ent**        tbl_ary;
3144     UV                          tbl_max;
3145     UV                          tbl_items;
3146 };
3147
3148 #if defined(iAPX286) || defined(M_I286) || defined(I80286)
3149 #   define I286
3150 #endif
3151
3152 #if defined(htonl) && !defined(HAS_HTONL)
3153 #define HAS_HTONL
3154 #endif
3155 #if defined(htons) && !defined(HAS_HTONS)
3156 #define HAS_HTONS
3157 #endif
3158 #if defined(ntohl) && !defined(HAS_NTOHL)
3159 #define HAS_NTOHL
3160 #endif
3161 #if defined(ntohs) && !defined(HAS_NTOHS)
3162 #define HAS_NTOHS
3163 #endif
3164 #ifndef HAS_HTONL
3165 #if (BYTEORDER & 0xffff) != 0x4321
3166 #define HAS_HTONS
3167 #define HAS_HTONL
3168 #define HAS_NTOHS
3169 #define HAS_NTOHL
3170 #define MYSWAP
3171 #define htons my_swap
3172 #define htonl my_htonl
3173 #define ntohs my_swap
3174 #define ntohl my_ntohl
3175 #endif
3176 #else
3177 #if (BYTEORDER & 0xffff) == 0x4321
3178 #undef HAS_HTONS
3179 #undef HAS_HTONL
3180 #undef HAS_NTOHS
3181 #undef HAS_NTOHL
3182 #endif
3183 #endif
3184
3185 /*
3186  * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
3187  * -DWS
3188  */
3189 #if BYTEORDER != 0x1234
3190 # define HAS_VTOHL
3191 # define HAS_VTOHS
3192 # define HAS_HTOVL
3193 # define HAS_HTOVS
3194 # if BYTEORDER == 0x4321 || BYTEORDER == 0x87654321
3195 #  define vtohl(x)      ((((x)&0xFF)<<24)       \
3196                         +(((x)>>24)&0xFF)       \
3197                         +(((x)&0x0000FF00)<<8)  \
3198                         +(((x)&0x00FF0000)>>8)  )
3199 #  define vtohs(x)      ((((x)&0xFF)<<8) + (((x)>>8)&0xFF))
3200 #  define htovl(x)      vtohl(x)
3201 #  define htovs(x)      vtohs(x)
3202 # endif
3203         /* otherwise default to functions in util.c */
3204 #ifndef htovs
3205 short htovs(short n);
3206 short vtohs(short n);
3207 long htovl(long n);
3208 long vtohl(long n);
3209 #endif
3210 #endif
3211
3212 /* *MAX Plus 1. A floating point value.
3213    Hopefully expressed in a way that dodgy floating point can't mess up.
3214    >> 2 rather than 1, so that value is safely less than I32_MAX after 1
3215    is added to it
3216    May find that some broken compiler will want the value cast to I32.
3217    [after the shift, as signed >> may not be as secure as unsigned >>]
3218 */
3219 #define I32_MAX_P1 (2.0 * (1 + (((U32)I32_MAX) >> 1)))
3220 #define U32_MAX_P1 (4.0 * (1 + ((U32_MAX) >> 2)))
3221 /* For compilers that can't correctly cast NVs over 0x7FFFFFFF (or
3222    0x7FFFFFFFFFFFFFFF) to an unsigned integer. In the future, sizeof(UV)
3223    may be greater than sizeof(IV), so don't assume that half max UV is max IV.
3224 */
3225 #define U32_MAX_P1_HALF (2.0 * (1 + ((U32_MAX) >> 2)))
3226
3227 #define UV_MAX_P1 (4.0 * (1 + ((UV_MAX) >> 2)))
3228 #define IV_MAX_P1 (2.0 * (1 + (((UV)IV_MAX) >> 1)))
3229 #define UV_MAX_P1_HALF (2.0 * (1 + ((UV_MAX) >> 2)))
3230
3231 /* This may look like unnecessary jumping through hoops, but converting
3232    out of range floating point values to integers *is* undefined behaviour,
3233    and it is starting to bite.
3234 */
3235 #ifndef CAST_INLINE
3236 #define I_32(what) (cast_i32((NV)(what)))
3237 #define U_32(what) (cast_ulong((NV)(what)))
3238 #define I_V(what) (cast_iv((NV)(what)))
3239 #define U_V(what) (cast_uv((NV)(what)))
3240 #else
3241 #define I_32(n) ((n) < I32_MAX_P1 ? ((n) < I32_MIN ? I32_MIN : (I32) (n)) \
3242                   : ((n) < U32_MAX_P1 ? (I32)(U32) (n) \
3243                      : ((n) > 0 ? (I32) U32_MAX : 0 /* NaN */)))
3244 #define U_32(n) ((n) < 0.0 ? ((n) < I32_MIN ? (UV) I32_MIN : (U32)(I32) (n)) \
3245                   : ((n) < U32_MAX_P1 ? (U32) (n) \
3246                      : ((n) > 0 ? U32_MAX : 0 /* NaN */)))
3247 #define I_V(n) ((n) < IV_MAX_P1 ? ((n) < IV_MIN ? IV_MIN : (IV) (n)) \
3248                   : ((n) < UV_MAX_P1 ? (IV)(UV) (n) \
3249                      : ((n) > 0 ? (IV)UV_MAX : 0 /* NaN */)))
3250 #define U_V(n) ((n) < 0.0 ? ((n) < IV_MIN ? (UV) IV_MIN : (UV)(IV) (n)) \
3251                   : ((n) < UV_MAX_P1 ? (UV) (n) \
3252                      : ((n) > 0 ? UV_MAX : 0 /* NaN */)))
3253 #endif
3254
3255 #define U_S(what) ((U16)U_32(what))
3256 #define U_I(what) ((unsigned int)U_32(what))
3257 #define U_L(what) U_32(what)
3258
3259 /* These do not care about the fractional part, only about the range. */
3260 #define NV_WITHIN_IV(nv) (I_V(nv) >= IV_MIN && I_V(nv) <= IV_MAX)
3261 #define NV_WITHIN_UV(nv) ((nv)>=0.0 && U_V(nv) >= UV_MIN && U_V(nv) <= UV_MAX)
3262
3263 /* Used with UV/IV arguments: */
3264                                         /* XXXX: need to speed it up */
3265 #define CLUMP_2UV(iv)   ((iv) < 0 ? 0 : (UV)(iv))
3266 #define CLUMP_2IV(uv)   ((uv) > (UV)IV_MAX ? IV_MAX : (IV)(uv))
3267
3268 #ifndef MAXSYSFD
3269 #   define MAXSYSFD 2
3270 #endif
3271
3272 #ifndef __cplusplus
3273 #if !(defined(UNDER_CE) || defined(SYMBIAN))
3274 Uid_t getuid (void);
3275 Uid_t geteuid (void);
3276 Gid_t getgid (void);
3277 Gid_t getegid (void);
3278 #endif
3279 #endif
3280
3281 #ifndef Perl_debug_log
3282 #  define Perl_debug_log        PerlIO_stderr()
3283 #endif
3284
3285 #ifndef Perl_error_log
3286 #  define Perl_error_log        (PL_stderrgv                    \
3287                                  && isGV(PL_stderrgv)           \
3288                                  && GvIOp(PL_stderrgv)          \
3289                                  && IoOFP(GvIOp(PL_stderrgv))   \
3290                                  ? IoOFP(GvIOp(PL_stderrgv))    \
3291                                  : PerlIO_stderr())
3292 #endif
3293
3294
3295 #define DEBUG_p_FLAG            0x00000001 /*      1 */
3296 #define DEBUG_s_FLAG            0x00000002 /*      2 */
3297 #define DEBUG_l_FLAG            0x00000004 /*      4 */
3298 #define DEBUG_t_FLAG            0x00000008 /*      8 */
3299 #define DEBUG_o_FLAG            0x00000010 /*     16 */
3300 #define DEBUG_c_FLAG            0x00000020 /*     32 */
3301 #define DEBUG_P_FLAG            0x00000040 /*     64 */
3302 #define DEBUG_m_FLAG            0x00000080 /*    128 */
3303 #define DEBUG_f_FLAG            0x00000100 /*    256 */
3304 #define DEBUG_r_FLAG            0x00000200 /*    512 */
3305 #define DEBUG_x_FLAG            0x00000400 /*   1024 */
3306 #define DEBUG_u_FLAG            0x00000800 /*   2048 */
3307                                            /*  spare */
3308 #define DEBUG_H_FLAG            0x00002000 /*   8192 */
3309 #define DEBUG_X_FLAG            0x00004000 /*  16384 */
3310 #define DEBUG_D_FLAG            0x00008000 /*  32768 */
3311 #define DEBUG_S_FLAG            0x00010000 /*  65536 */
3312 #define DEBUG_T_FLAG            0x00020000 /* 131072 */
3313 #define DEBUG_R_FLAG            0x00040000 /* 262144 */
3314 #define DEBUG_J_FLAG            0x00080000 /* 524288 */
3315 #define DEBUG_v_FLAG            0x00100000 /*1048576 */
3316 #define DEBUG_C_FLAG            0x00200000 /*2097152 */
3317 #define DEBUG_A_FLAG            0x00400000 /*4194304 */
3318 #define DEBUG_q_FLAG            0x00800000 /*8388608 */
3319 #define DEBUG_MASK              0x00FFEFFF /* mask of all the standard flags */
3320
3321 #define DEBUG_DB_RECURSE_FLAG   0x40000000
3322 #define DEBUG_TOP_FLAG          0x80000000 /* XXX what's this for ??? Signal
3323                                               that something was done? */
3324
3325 #  define DEBUG_p_TEST_ (PL_debug & DEBUG_p_FLAG)
3326 #  define DEBUG_s_TEST_ (PL_debug & DEBUG_s_FLAG)
3327 #  define DEBUG_l_TEST_ (PL_debug & DEBUG_l_FLAG)
3328 #  define DEBUG_t_TEST_ (PL_debug & DEBUG_t_FLAG)
3329 #  define DEBUG_o_TEST_ (PL_debug & DEBUG_o_FLAG)
3330 #  define DEBUG_c_TEST_ (PL_debug & DEBUG_c_FLAG)
3331 #  define DEBUG_P_TEST_ (PL_debug & DEBUG_P_FLAG)
3332 #  define DEBUG_m_TEST_ (PL_debug & DEBUG_m_FLAG)
3333 #  define DEBUG_f_TEST_ (PL_debug & DEBUG_f_FLAG)
3334 #  define DEBUG_r_TEST_ (PL_debug & DEBUG_r_FLAG)
3335 #  define DEBUG_x_TEST_ (PL_debug & DEBUG_x_FLAG)
3336 #  define DEBUG_u_TEST_ (PL_debug & DEBUG_u_FLAG)
3337 #  define DEBUG_H_TEST_ (PL_debug & DEBUG_H_FLAG)
3338 #  define DEBUG_X_TEST_ (PL_debug & DEBUG_X_FLAG)
3339 #  define DEBUG_D_TEST_ (PL_debug & DEBUG_D_FLAG)
3340 #  define DEBUG_S_TEST_ (PL_debug & DEBUG_S_FLAG)
3341 #  define DEBUG_T_TEST_ (PL_debug & DEBUG_T_FLAG)
3342 #  define DEBUG_R_TEST_ (PL_debug & DEBUG_R_FLAG)
3343 #  define DEBUG_J_TEST_ (PL_debug & DEBUG_J_FLAG)
3344 #  define DEBUG_v_TEST_ (PL_debug & DEBUG_v_FLAG)
3345 #  define DEBUG_C_TEST_ (PL_debug & DEBUG_C_FLAG)
3346 #  define DEBUG_A_TEST_ (PL_debug & DEBUG_A_FLAG)
3347 #  define DEBUG_q_TEST_ (PL_debug & DEBUG_q_FLAG)
3348 #  define DEBUG_Xv_TEST_ (DEBUG_X_TEST_ && DEBUG_v_TEST_)
3349
3350 #ifdef DEBUGGING
3351
3352 #  define DEBUG_p_TEST DEBUG_p_TEST_
3353 #  define DEBUG_s_TEST DEBUG_s_TEST_
3354 #  define DEBUG_l_TEST DEBUG_l_TEST_
3355 #  define DEBUG_t_TEST DEBUG_t_TEST_
3356 #  define DEBUG_o_TEST DEBUG_o_TEST_
3357 #  define DEBUG_c_TEST DEBUG_c_TEST_
3358 #  define DEBUG_P_TEST DEBUG_P_TEST_
3359 #  define DEBUG_m_TEST DEBUG_m_TEST_
3360 #  define DEBUG_f_TEST DEBUG_f_TEST_
3361 #  define DEBUG_r_TEST DEBUG_r_TEST_
3362 #  define DEBUG_x_TEST DEBUG_x_TEST_
3363 #  define DEBUG_u_TEST DEBUG_u_TEST_
3364 #  define DEBUG_H_TEST DEBUG_H_TEST_
3365 #  define DEBUG_X_TEST DEBUG_X_TEST_
3366 #  define DEBUG_Xv_TEST DEBUG_Xv_TEST_
3367 #  define DEBUG_D_TEST DEBUG_D_TEST_
3368 #  define DEBUG_S_TEST DEBUG_S_TEST_
3369 #  define DEBUG_T_TEST DEBUG_T_TEST_
3370 #  define DEBUG_R_TEST DEBUG_R_TEST_
3371 #  define DEBUG_J_TEST DEBUG_J_TEST_
3372 #  define DEBUG_v_TEST DEBUG_v_TEST_
3373 #  define DEBUG_C_TEST DEBUG_C_TEST_
3374 #  define DEBUG_A_TEST DEBUG_A_TEST_
3375 #  define DEBUG_q_TEST DEBUG_q_TEST_
3376
3377 #  define PERL_DEB(a)                  a
3378 #  define PERL_DEBUG(a) if (PL_debug)  a
3379 #  define DEBUG_p(a) if (DEBUG_p_TEST) a
3380 #  define DEBUG_s(a) if (DEBUG_s_TEST) a
3381 #  define DEBUG_l(a) if (DEBUG_l_TEST) a
3382 #  define DEBUG_t(a) if (DEBUG_t_TEST) a
3383 #  define DEBUG_o(a) if (DEBUG_o_TEST) a
3384 #  define DEBUG_c(a) if (DEBUG_c_TEST) a
3385 #  define DEBUG_P(a) if (DEBUG_P_TEST) a
3386
3387      /* Temporarily turn off memory debugging in case the a
3388       * does memory allocation, either directly or indirectly. */
3389 #  define DEBUG_m(a)  \
3390     STMT_START {                                                        \
3391         if (PERL_GET_INTERP) { dTHX; if (DEBUG_m_TEST) {PL_debug&=~DEBUG_m_FLAG; a; PL_debug|=DEBUG_m_FLAG;} } \
3392     } STMT_END
3393
3394 #  define DEBUG__(t, a) \
3395         STMT_START { \
3396                 if (t) STMT_START {a;} STMT_END; \
3397         } STMT_END
3398
3399 #  define DEBUG_f(a) DEBUG__(DEBUG_f_TEST, a)
3400 #  define DEBUG_r(a) DEBUG__(DEBUG_r_TEST, a)
3401 #  define DEBUG_x(a) DEBUG__(DEBUG_x_TEST, a)
3402 #  define DEBUG_u(a) DEBUG__(DEBUG_u_TEST, a)
3403 #  define DEBUG_H(a) DEBUG__(DEBUG_H_TEST, a)
3404 #  define DEBUG_X(a) DEBUG__(DEBUG_X_TEST, a)
3405 #  define DEBUG_Xv(a) DEBUG__(DEBUG_Xv_TEST, a)
3406 #  define DEBUG_D(a) DEBUG__(DEBUG_D_TEST, a)
3407
3408 #  define DEBUG_S(a)
3409
3410 #  define DEBUG_T(a) DEBUG__(DEBUG_T_TEST, a)
3411 #  define DEBUG_R(a) DEBUG__(DEBUG_R_TEST, a)
3412 #  define DEBUG_v(a) DEBUG__(DEBUG_v_TEST, a)
3413 #  define DEBUG_C(a) DEBUG__(DEBUG_C_TEST, a)
3414 #  define DEBUG_A(a) DEBUG__(DEBUG_A_TEST, a)
3415 #  define DEBUG_q(a) DEBUG__(DEBUG_q_TEST, a)
3416
3417 #else /* DEBUGGING */
3418
3419 #  define DEBUG_p_TEST (0)
3420 #  define DEBUG_s_TEST (0)
3421 #  define DEBUG_l_TEST (0)
3422 #  define DEBUG_t_TEST (0)
3423 #  define DEBUG_o_TEST (0)
3424 #  define DEBUG_c_TEST (0)
3425 #  define DEBUG_P_TEST (0)
3426 #  define DEBUG_m_TEST (0)
3427 #  define DEBUG_f_TEST (0)
3428 #  define DEBUG_r_TEST (0)
3429 #  define DEBUG_x_TEST (0)
3430 #  define DEBUG_u_TEST (0)
3431 #  define DEBUG_H_TEST (0)
3432 #  define DEBUG_X_TEST (0)
3433 #  define DEBUG_Xv_TEST (0)
3434 #  define DEBUG_D_TEST (0)
3435 #  define DEBUG_S_TEST (0)
3436 #  define DEBUG_T_TEST (0)
3437 #  define DEBUG_R_TEST (0)
3438 #  define DEBUG_J_TEST (0)
3439 #  define DEBUG_v_TEST (0)
3440 #  define DEBUG_C_TEST (0)
3441 #  define DEBUG_A_TEST (0)
3442 #  define DEBUG_q_TEST (0)
3443
3444 #  define PERL_DEB(a)
3445 #  define PERL_DEBUG(a)
3446 #  define DEBUG_p(a)
3447 #  define DEBUG_s(a)
3448 #  define DEBUG_l(a)
3449 #  define DEBUG_t(a)
3450 #  define DEBUG_o(a)
3451 #  define DEBUG_c(a)
3452 #  define DEBUG_P(a)
3453 #  define DEBUG_m(a)
3454 #  define DEBUG_f(a)
3455 #  define DEBUG_r(a)
3456 #  define DEBUG_x(a)
3457 #  define DEBUG_u(a)
3458 #  define DEBUG_H(a)
3459 #  define DEBUG_X(a)
3460 #  define DEBUG_Xv(a)
3461 #  define DEBUG_D(a)
3462 #  define DEBUG_S(a)
3463 #  define DEBUG_T(a)
3464 #  define DEBUG_R(a)
3465 #  define DEBUG_v(a)
3466 #  define DEBUG_C(a)
3467 #  define DEBUG_A(a)
3468 #  define DEBUG_q(a)
3469 #endif /* DEBUGGING */
3470
3471
3472 #define DEBUG_SCOPE(where) \
3473     DEBUG_l(WITH_THR(Perl_deb(aTHX_ "%s scope %ld at %s:%d\n",  \
3474                     where, (long)PL_scopestack_ix, __FILE__, __LINE__)));
3475
3476
3477
3478
3479 /* These constants should be used in preference to raw characters
3480  * when using magic. Note that some perl guts still assume
3481  * certain character properties of these constants, namely that
3482  * isUPPER() and toLOWER() may do useful mappings.
3483  *
3484  * Update the magic_names table in dump.c when adding/amending these
3485  */
3486
3487 #define PERL_MAGIC_sv             '\0' /* Special scalar variable */
3488 #define PERL_MAGIC_overload       'A' /* %OVERLOAD hash */
3489 #define PERL_MAGIC_overload_elem  'a' /* %OVERLOAD hash element */
3490 #define PERL_MAGIC_overload_table 'c' /* Holds overload table (AMT) on stash */
3491 #define PERL_MAGIC_bm             'B' /* Boyer-Moore (fast string search) */
3492 #define PERL_MAGIC_regdata        'D' /* Regex match position data
3493                                         (@+ and @- vars) */
3494 #define PERL_MAGIC_regdatum       'd' /* Regex match position data element */
3495 #define PERL_MAGIC_env            'E' /* %ENV hash */
3496 #define PERL_MAGIC_envelem        'e' /* %ENV hash element */
3497 #define PERL_MAGIC_fm             'f' /* Formline ('compiled' format) */
3498 #define PERL_MAGIC_regex_global   'g' /* m//g target / study()ed string */
3499 #define PERL_MAGIC_hints          'H' /* %^H hash */
3500 #define PERL_MAGIC_hintselem      'h' /* %^H hash element */
3501 #define PERL_MAGIC_isa            'I' /* @ISA array */
3502 #define PERL_MAGIC_isaelem        'i' /* @ISA array element */
3503 #define PERL_MAGIC_nkeys          'k' /* scalar(keys()) lvalue */
3504 #define PERL_MAGIC_dbfile         'L' /* Debugger %_<filename */
3505 #define PERL_MAGIC_dbline         'l' /* Debugger %_<filename element */
3506 #define PERL_MAGIC_mutex          'm' /* for lock op */
3507 #define PERL_MAGIC_shared         'N' /* Shared between threads */
3508 #define PERL_MAGIC_shared_scalar  'n' /* Shared between threads */
3509 #define PERL_MAGIC_collxfrm       'o' /* Locale transformation */
3510 #define PERL_MAGIC_tied           'P' /* Tied array or hash */
3511 #define PERL_MAGIC_tiedelem       'p' /* Tied array or hash element */
3512 #define PERL_MAGIC_tiedscalar     'q' /* Tied scalar or handle */
3513 #define PERL_MAGIC_qr             'r' /* precompiled qr// regex */
3514 #define PERL_MAGIC_sig            'S' /* %SIG hash */
3515 #define PERL_MAGIC_sigelem        's' /* %SIG hash element */
3516 #define PERL_MAGIC_taint          't' /* Taintedness */
3517 #define PERL_MAGIC_uvar           'U' /* Available for use by extensions */
3518 #define PERL_MAGIC_uvar_elem      'u' /* Reserved for use by extensions */
3519 #define PERL_MAGIC_vec            'v' /* vec() lvalue */
3520 #define PERL_MAGIC_vstring        'V' /* SV was vstring literal */
3521 #define PERL_MAGIC_utf8           'w' /* Cached UTF-8 information */
3522 #define PERL_MAGIC_substr         'x' /* substr() lvalue */
3523 #define PERL_MAGIC_defelem        'y' /* Shadow "foreach" iterator variable /
3524                                         smart parameter vivification */
3525 #define PERL_MAGIC_arylen         '#' /* Array length ($#ary) */
3526 #define PERL_MAGIC_pos            '.' /* pos() lvalue */
3527 #define PERL_MAGIC_backref        '<' /* for weak ref data */
3528 #define PERL_MAGIC_symtab         ':' /* extra data for symbol tables */
3529 #define PERL_MAGIC_rhash          '%' /* extra data for restricted hashes */
3530 #define PERL_MAGIC_arylen_p       '@' /* to move arylen out of XPVAV */
3531 #define PERL_MAGIC_ext            '~' /* Available for use by extensions */
3532
3533
3534 #ifndef assert  /* <assert.h> might have been included somehow */
3535 #define assert(what)    PERL_DEB(                                       \
3536         ((what) ? ((void) 0) :                                          \
3537             (Perl_croak_nocontext("Assertion %s failed: file \"" __FILE__ \
3538                         "\", line %d", STRINGIFY(what), __LINE__),      \
3539             (void) 0)))
3540 #endif
3541
3542 struct ufuncs {
3543     I32 (*uf_val)(pTHX_ IV, SV*);
3544     I32 (*uf_set)(pTHX_ IV, SV*);
3545     IV uf_index;
3546 };
3547
3548 /* In pre-5.7-Perls the PERL_MAGIC_uvar magic didn't get the thread context.
3549  * XS code wanting to be backward compatible can do something
3550  * like the following:
3551
3552 #ifndef PERL_MG_UFUNC
3553 #define PERL_MG_UFUNC(name,ix,sv) I32 name(IV ix, SV *sv)
3554 #endif
3555
3556 static PERL_MG_UFUNC(foo_get, index, val)
3557 {
3558     sv_setsv(val, ...);
3559     return TRUE;
3560 }
3561
3562 -- Doug MacEachern
3563
3564 */
3565
3566 #ifndef PERL_MG_UFUNC
3567 #define PERL_MG_UFUNC(name,ix,sv) I32 name(pTHX_ IV ix, SV *sv)
3568 #endif
3569
3570 /* Fix these up for __STDC__ */
3571 #ifndef DONT_DECLARE_STD
3572 char *mktemp (char*);
3573 #ifndef atof
3574 double atof (const char*);
3575 #endif
3576 #endif
3577
3578 #ifndef STANDARD_C
3579 /* All of these are in stdlib.h or time.h for ANSI C */
3580 Time_t time();
3581 struct tm *gmtime(), *localtime();
3582 #if defined(OEMVS) || defined(__OPEN_VM)
3583 char *(strchr)(), *(strrchr)();
3584 char *(strcpy)(), *(strcat)();
3585 #else
3586 char *strchr(), *strrchr();
3587 char *strcpy(), *strcat();
3588 #endif
3589 #endif /* ! STANDARD_C */
3590
3591
3592 #ifdef I_MATH
3593 #    include <math.h>
3594 #else
3595 START_EXTERN_C
3596             double exp (double);
3597             double log (double);
3598             double log10 (double);
3599             double sqrt (double);
3600             double frexp (double,int*);
3601             double ldexp (double,int);
3602             double modf (double,double*);
3603             double sin (double);
3604             double cos (double);
3605             double atan2 (double,double);
3606             double pow (double,double);
3607 END_EXTERN_C
3608 #endif
3609
3610 #if !defined(NV_INF) && defined(USE_LONG_DOUBLE) && defined(LDBL_INFINITY)
3611 #  define NV_INF LDBL_INFINITY
3612 #endif
3613 #if !defined(NV_INF) && defined(DBL_INFINITY)
3614 #  define NV_INF (NV)DBL_INFINITY
3615 #endif
3616 #if !defined(NV_INF) && defined(INFINITY)
3617 #  define NV_INF (NV)INFINITY
3618 #endif
3619 #if !defined(NV_INF) && defined(INF)
3620 #  define NV_INF (NV)INF
3621 #endif
3622 #if !defined(NV_INF) && defined(USE_LONG_DOUBLE) && defined(HUGE_VALL)
3623 #  define NV_INF (NV)HUGE_VALL
3624 #endif
3625 #if !defined(NV_INF) && defined(HUGE_VAL)
3626 #  define NV_INF (NV)HUGE_VAL
3627 #endif
3628
3629 #if !defined(NV_NAN) && defined(USE_LONG_DOUBLE)
3630 #   if !defined(NV_NAN) && defined(LDBL_NAN)
3631 #       define NV_NAN LDBL_NAN
3632 #   endif
3633 #   if !defined(NV_NAN) && defined(LDBL_QNAN)
3634 #       define NV_NAN LDBL_QNAN
3635 #   endif
3636 #   if !defined(NV_NAN) && defined(LDBL_SNAN)
3637 #       define NV_NAN LDBL_SNAN
3638 #   endif
3639 #endif
3640 #if !defined(NV_NAN) && defined(DBL_NAN)
3641 #  define NV_NAN (NV)DBL_NAN
3642 #endif
3643 #if !defined(NV_NAN) && defined(DBL_QNAN)
3644 #  define NV_NAN (NV)DBL_QNAN
3645 #endif
3646 #if !defined(NV_NAN) && defined(DBL_SNAN)
3647 #  define NV_NAN (NV)DBL_SNAN
3648 #endif
3649 #if !defined(NV_NAN) && defined(QNAN)
3650 #  define NV_NAN (NV)QNAN
3651 #endif
3652 #if !defined(NV_NAN) && defined(SNAN)
3653 #  define NV_NAN (NV)SNAN
3654 #endif
3655 #if !defined(NV_NAN) && defined(NAN)
3656 #  define NV_NAN (NV)NAN
3657 #endif
3658
3659 #ifndef __cplusplus
3660 #  if defined(NeXT) || defined(__NeXT__) /* or whatever catches all NeXTs */
3661 char *crypt ();       /* Maybe more hosts will need the unprototyped version */
3662 #  else
3663 #    if !defined(WIN32) && !defined(VMS)
3664 #ifndef crypt
3665 char *crypt (const char*, const char*);
3666 #endif
3667 #    endif /* !WIN32 */
3668 #  endif /* !NeXT && !__NeXT__ */
3669 #  ifndef DONT_DECLARE_STD
3670 #    ifndef getenv
3671 char *getenv (const char*);
3672 #    endif /* !getenv */
3673 #    if !defined(HAS_LSEEK_PROTO) && !defined(EPOC) && !defined(__hpux)
3674 #      ifdef _FILE_OFFSET_BITS
3675 #        if _FILE_OFFSET_BITS == 64
3676 Off_t lseek (int,Off_t,int);
3677 #        endif
3678 #      endif
3679 #    endif
3680 #  endif /* !DONT_DECLARE_STD */
3681 #ifndef getlogin
3682 char *getlogin (void);
3683 #endif
3684 #endif /* !__cplusplus */
3685
3686 /* Fixme on VMS.  This needs to be a run-time, not build time options */
3687 /* Also rename() is affected by this */
3688 #ifdef UNLINK_ALL_VERSIONS /* Currently only makes sense for VMS */
3689 #define UNLINK unlnk
3690 I32 unlnk (pTHX_ const char*);
3691 #else
3692 #define UNLINK PerlLIO_unlink
3693 #endif
3694
3695 /* some versions of glibc are missing the setresuid() proto */
3696 #if defined(HAS_SETRESUID) && !defined(HAS_SETRESUID_PROTO)
3697 int setresuid(uid_t ruid, uid_t euid, uid_t suid);
3698 #endif
3699 /* some versions of glibc are missing the setresgid() proto */
3700 #if defined(HAS_SETRESGID) && !defined(HAS_SETRESGID_PROTO)
3701 int setresgid(gid_t rgid, gid_t egid, gid_t sgid);
3702 #endif
3703
3704 #ifndef HAS_SETREUID
3705 #  ifdef HAS_SETRESUID
3706 #    define setreuid(r,e) setresuid(r,e,(Uid_t)-1)
3707 #    define HAS_SETREUID
3708 #  endif
3709 #endif
3710 #ifndef HAS_SETREGID
3711 #  ifdef HAS_SETRESGID
3712 #    define setregid(r,e) setresgid(r,e,(Gid_t)-1)
3713 #    define HAS_SETREGID
3714 #  endif
3715 #endif
3716
3717 /* Sighandler_t defined in iperlsys.h */
3718
3719 #ifdef HAS_SIGACTION
3720 typedef struct sigaction Sigsave_t;
3721 #else
3722 typedef Sighandler_t Sigsave_t;
3723 #endif
3724
3725 #define SCAN_DEF 0
3726 #define SCAN_TR 1
3727 #define SCAN_REPL 2
3728
3729 #ifdef DEBUGGING
3730 # ifndef register
3731 #  define register
3732 # endif
3733 # define RUNOPS_DEFAULT Perl_runops_debug
3734 #else
3735 # define RUNOPS_DEFAULT Perl_runops_standard
3736 #endif
3737
3738 #ifdef MYMALLOC
3739 #  ifdef MUTEX_INIT_CALLS_MALLOC
3740 #    define MALLOC_INIT                                 \
3741         STMT_START {                                    \
3742                 PL_malloc_mutex = NULL;                 \
3743                 MUTEX_INIT(&PL_malloc_mutex);           \
3744         } STMT_END
3745 #    define MALLOC_TERM                                 \
3746         STMT_START {                                    \
3747                 perl_mutex tmp = PL_malloc_mutex;       \
3748                 PL_malloc_mutex = NULL;                 \
3749                 MUTEX_DESTROY(&tmp);                    \
3750         } STMT_END
3751 #  else
3752 #    define MALLOC_INIT MUTEX_INIT(&PL_malloc_mutex)
3753 #    define MALLOC_TERM MUTEX_DESTROY(&PL_malloc_mutex)
3754 #  endif
3755 #else
3756 #  define MALLOC_INIT
3757 #  define MALLOC_TERM
3758 #endif
3759
3760 #if defined(PERL_IMPLICIT_CONTEXT)
3761
3762 struct perl_memory_debug_header;
3763 struct perl_memory_debug_header {
3764   tTHX  interpreter;
3765 #  ifdef PERL_POISON
3766   MEM_SIZE size;
3767 #  endif
3768   struct perl_memory_debug_header *prev;
3769   struct perl_memory_debug_header *next;
3770 };
3771
3772 #  define sTHX  (sizeof(struct perl_memory_debug_header) + \
3773         (MEM_ALIGNBYTES - sizeof(struct perl_memory_debug_header) \
3774          %MEM_ALIGNBYTES) % MEM_ALIGNBYTES)
3775
3776 #endif
3777
3778 #ifdef PERL_TRACK_MEMPOOL
3779 #  define INIT_TRACK_MEMPOOL(header, interp)                    \
3780         STMT_START {                                            \
3781                 (header).interpreter = (interp);                \
3782                 (header).prev = (header).next = &(header);      \
3783         } STMT_END
3784 #  else
3785 #  define INIT_TRACK_MEMPOOL(header, interp)
3786 #endif
3787
3788
3789 typedef int (CPERLscope(*runops_proc_t)) (pTHX);
3790 typedef void (CPERLscope(*share_proc_t)) (pTHX_ SV *sv);
3791 typedef int  (CPERLscope(*thrhook_proc_t)) (pTHX);
3792 typedef OP* (CPERLscope(*PPADDR_t)[]) (pTHX);
3793
3794 /* _ (for $_) must be first in the following list (DEFSV requires it) */
3795 #define THREADSV_NAMES "_123456789&`'+/.,\\\";^-%=|~:\001\005!@"
3796
3797 /* NeXT has problems with crt0.o globals */
3798 #if defined(__DYNAMIC__) && \
3799     (defined(NeXT) || defined(__NeXT__) || defined(PERL_DARWIN))
3800 #  if defined(NeXT) || defined(__NeXT)
3801 #    include <mach-o/dyld.h>
3802 #    define environ (*environ_pointer)
3803 EXT char *** environ_pointer;
3804 #  else
3805 #    if defined(PERL_DARWIN) && defined(PERL_CORE)
3806 #      include <crt_externs.h>  /* for the env array */
3807 #      define environ (*_NSGetEnviron())
3808 #    endif
3809 #  endif
3810 #else
3811    /* VMS and some other platforms don't use the environ array */
3812 #  ifdef USE_ENVIRON_ARRAY
3813 #    if !defined(DONT_DECLARE_STD) || \
3814         (defined(__svr4__) && defined(__GNUC__) && defined(sun)) || \
3815         defined(__sgi) || \
3816         defined(__DGUX)
3817 extern char **  environ;        /* environment variables supplied via exec */
3818 #    endif
3819 #  endif
3820 #endif
3821
3822 START_EXTERN_C
3823
3824 /* handy constants */
3825 EXTCONST char PL_warn_uninit[]
3826   INIT("Use of uninitialized value%s%s%s");
3827 EXTCONST char PL_warn_nosemi[]
3828   INIT("Semicolon seems to be missing");
3829 EXTCONST char PL_warn_reserved[]
3830   INIT("Unquoted string \"%s\" may clash with future reserved word");
3831 EXTCONST char PL_warn_nl[]
3832   INIT("Unsuccessful %s on filename containing newline");
3833 EXTCONST char PL_no_wrongref[]
3834   INIT("Can't use %s ref as %s ref");
3835 EXTCONST char PL_no_symref[]
3836   INIT("Can't use string (\"%.32s\") as %s ref while \"strict refs\" in use");
3837 EXTCONST char PL_no_symref_sv[]
3838   INIT("Can't use string (\"%" SVf32 "\") as %s ref while \"strict refs\" in use");
3839 EXTCONST char PL_no_usym[]
3840   INIT("Can't use an undefined value as %s reference");
3841 EXTCONST char PL_no_aelem[]
3842   INIT("Modification of non-creatable array value attempted, subscript %d");
3843 EXTCONST char PL_no_helem_sv[]
3844   INIT("Modification of non-creatable hash value attempted, subscript \""SVf"\"");
3845 EXTCONST char PL_no_modify[]
3846   INIT("Modification of a read-only value attempted");
3847 EXTCONST char PL_no_mem[]
3848   INIT("Out of memory!\n");
3849 EXTCONST char PL_no_security[]
3850   INIT("Insecure dependency in %s%s");
3851 EXTCONST char PL_no_sock_func[]
3852   INIT("Unsupported socket function \"%s\" called");
3853 EXTCONST char PL_no_dir_func[]
3854   INIT("Unsupported directory function \"%s\" called");
3855 EXTCONST char PL_no_func[]
3856   INIT("The %s function is unimplemented");
3857 EXTCONST char PL_no_myglob[]
3858   INIT("\"my\" variable %s can't be in a package");
3859 EXTCONST char PL_no_localize_ref[]
3860   INIT("Can't localize through a reference");
3861 EXTCONST char PL_memory_wrap[]
3862   INIT("panic: memory wrap");
3863
3864 EXTCONST char PL_uuemap[65]
3865   INIT("`!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_");
3866
3867
3868 #ifdef DOINIT
3869 EXTCONST char* const PL_sig_name[] = { SIG_NAME };
3870 EXTCONST int         PL_sig_num[]  = { SIG_NUM };
3871 #else
3872 EXTCONST char* const PL_sig_name[];
3873 EXTCONST int         PL_sig_num[];
3874 #endif
3875
3876 /* fast conversion and case folding tables */
3877
3878 #ifdef DOINIT
3879 #ifdef EBCDIC
3880 EXTCONST unsigned char PL_fold[] = { /* fast EBCDIC case folding table */
3881     0,      1,      2,      3,      4,      5,      6,      7,
3882     8,      9,      10,     11,     12,     13,     14,     15,
3883     16,     17,     18,     19,     20,     21,     22,     23,
3884     24,     25,     26,     27,     28,     29,     30,     31,
3885     32,     33,     34,     35,     36,     37,     38,     39,
3886     40,     41,     42,     43,     44,     45,     46,     47,
3887     48,     49,     50,     51,     52,     53,     54,     55,
3888     56,     57,     58,     59,     60,     61,     62,     63,
3889     64,     65,     66,     67,     68,     69,     70,     71,
3890     72,     73,     74,     75,     76,     77,     78,     79,
3891     80,     81,     82,     83,     84,     85,     86,     87,
3892     88,     89,     90,     91,     92,     93,     94,     95,
3893     96,     97,     98,     99,     100,    101,    102,    103,
3894     104,    105,    106,    107,    108,    109,    110,    111,
3895     112,    113,    114,    115,    116,    117,    118,    119,
3896     120,    121,    122,    123,    124,    125,    126,    127,
3897     128,    'A',    'B',    'C',    'D',    'E',    'F',    'G',
3898     'H',    'I',    138,    139,    140,    141,    142,    143,
3899     144,    'J',    'K',    'L',    'M',    'N',    'O',    'P',
3900     'Q',    'R',    154,    155,    156,    157,    158,    159,
3901     160,    161,    'S',    'T',    'U',    'V',    'W',    'X',
3902     'Y',    'Z',    170,    171,    172,    173,    174,    175,
3903     176,    177,    178,    179,    180,    181,    182,    183,
3904     184,    185,    186,    187,    188,    189,    190,    191,
3905     192,    'a',    'b',    'c',    'd',    'e',    'f',    'g',
3906     'h',    'i',    202,    203,    204,    205,    206,    207,
3907     208,    'j',    'k',    'l',    'm',    'n',    'o',    'p',
3908     'q',    'r',    218,    219,    220,    221,    222,    223,
3909     224,    225,    's',    't',    'u',    'v',    'w',    'x',
3910     'y',    'z',    234,    235,    236,    237,    238,    239,
3911     240,    241,    242,    243,    244,    245,    246,    247,
3912     248,    249,    250,    251,    252,    253,    254,    255
3913 };
3914 #else   /* ascii rather than ebcdic */
3915 EXTCONST  unsigned char PL_fold[] = {
3916         0,      1,      2,      3,      4,      5,      6,      7,
3917         8,      9,      10,     11,     12,     13,     14,     15,
3918         16,     17,     18,     19,     20,     21,     22,     23,
3919         24,     25,     26,     27,     28,     29,     30,     31,
3920         32,     33,     34,     35,     36,     37,     38,     39,
3921         40,     41,     42,     43,     44,     45,     46,     47,
3922         48,     49,     50,     51,     52,     53,     54,     55,
3923         56,     57,     58,     59,     60,     61,     62,     63,
3924         64,     'a',    'b',    'c',    'd',    'e',    'f',    'g',
3925         'h',    'i',    'j',    'k',    'l',    'm',    'n',    'o',
3926         'p',    'q',    'r',    's',    't',    'u',    'v',    'w',
3927         'x',    'y',    'z',    91,     92,     93,     94,     95,
3928         96,     'A',    'B',    'C',    'D',    'E',    'F',    'G',
3929         'H',    'I',    'J',    'K',    'L',    'M',    'N',    'O',
3930         'P',    'Q',    'R',    'S',    'T',    'U',    'V',    'W',
3931         'X',    'Y',    'Z',    123,    124,    125,    126,    127,
3932         128,    129,    130,    131,    132,    133,    134,    135,
3933         136,    137,    138,    139,    140,    141,    142,    143,
3934         144,    145,    146,    147,    148,    149,    150,    151,
3935         152,    153,    154,    155,    156,    157,    158,    159,
3936         160,    161,    162,    163,    164,    165,    166,    167,
3937         168,    169,    170,    171,    172,    173,    174,    175,
3938         176,    177,    178,    179,    180,    181,    182,    183,
3939         184,    185,    186,    187,    188,    189,    190,    191,
3940         192,    193,    194,    195,    196,    197,    198,    199,
3941         200,    201,    202,    203,    204,    205,    206,    207,
3942         208,    209,    210,    211,    212,    213,    214,    215,
3943         216,    217,    218,    219,    220,    221,    222,    223,    
3944         224,    225,    226,    227,    228,    229,    230,    231,
3945         232,    233,    234,    235,    236,    237,    238,    239,
3946         240,    241,    242,    243,    244,    245,    246,    247,
3947         248,    249,    250,    251,    252,    253,    254,    255
3948 };
3949 #endif  /* !EBCDIC */
3950 #else
3951 EXTCONST unsigned char PL_fold[];
3952 #endif
3953
3954 #ifndef PERL_GLOBAL_STRUCT /* or perlvars.h */
3955 #ifdef DOINIT
3956 EXT unsigned char PL_fold_locale[] = { /* Unfortunately not EXTCONST. */
3957         0,      1,      2,      3,      4,      5,      6,      7,
3958         8,      9,      10,     11,     12,     13,     14,     15,
3959         16,     17,     18,     19,     20,     21,     22,     23,
3960         24,     25,     26,     27,     28,     29,     30,     31,
3961         32,     33,     34,     35,     36,     37,     38,     39,
3962         40,     41,     42,     43,     44,     45,     46,     47,
3963         48,     49,     50,     51,     52,     53,     54,     55,
3964         56,     57,     58,     59,     60,     61,     62,     63,
3965         64,     'a',    'b',    'c',    'd',    'e',    'f',    'g',
3966         'h',    'i',    'j',    'k',    'l',    'm',    'n',    'o',
3967         'p',    'q',    'r',    's',    't',    'u',    'v',    'w',
3968         'x',    'y',    'z',    91,     92,     93,     94,     95,
3969         96,     'A',    'B',    'C',    'D',    'E',    'F',    'G',
3970         'H',    'I',    'J',    'K',    'L',    'M',    'N',    'O',
3971         'P',    'Q',    'R',    'S',    'T',    'U',    'V',    'W',
3972         'X',    'Y',    'Z',    123,    124,    125,    126,    127,
3973         128,    129,    130,    131,    132,    133,    134,    135,
3974         136,    137,    138,    139,    140,    141,    142,    143,
3975         144,    145,    146,    147,    148,    149,    150,    151,
3976         152,    153,    154,    155,    156,    157,    158,    159,
3977         160,    161,    162,    163,    164,    165,    166,    167,
3978         168,    169,    170,    171,    172,    173,    174,    175,
3979         176,    177,    178,    179,    180,    181,    182,    183,
3980         184,    185,    186,    187,    188,    189,    190,    191,
3981         192,    193,    194,    195,    196,    197,    198,    199,
3982         200,    201,    202,    203,    204,    205,    206,    207,
3983         208,    209,    210,    211,    212,    213,    214,    215,
3984         216,    217,    218,    219,    220,    221,    222,    223,    
3985         224,    225,    226,    227,    228,    229,    230,    231,
3986         232,    233,    234,    235,    236,    237,    238,    239,
3987         240,    241,    242,    243,    244,    245,    246,    247,
3988         248,    249,    250,    251,    252,    253,    254,    255
3989 };
3990 #else
3991 EXT unsigned char PL_fold_locale[]; /* Unfortunately not EXTCONST. */
3992 #endif
3993 #endif /* !PERL_GLOBAL_STRUCT */
3994
3995 #ifdef DOINIT
3996 #ifdef EBCDIC
3997 EXTCONST unsigned char PL_freq[] = {/* EBCDIC frequencies for mixed English/C */
3998     1,      2,      84,     151,    154,    155,    156,    157,
3999     165,    246,    250,    3,      158,    7,      18,     29,
4000     40,     51,     62,     73,     85,     96,     107,    118,
4001     129,    140,    147,    148,    149,    150,    152,    153,
4002     255,      6,      8,      9,     10,     11,     12,     13,
4003      14,     15,     24,     25,     26,     27,     28,    226,
4004      29,     30,     31,     32,     33,     43,     44,     45,
4005      46,     47,     48,     49,     50,     76,     77,     78,
4006      79,     80,     81,     82,     83,     84,     85,     86,
4007      87,     94,     95,    234,    181,    233,    187,    190,
4008     180,     96,     97,     98,     99,    100,    101,    102,
4009     104,    112,    182,    174,    236,    232,    229,    103,
4010     228,    226,    114,    115,    116,    117,    118,    119,
4011     120,    121,    122,    235,    176,    230,    194,    162,
4012     130,    131,    132,    133,    134,    135,    136,    137,
4013     138,    139,    201,    205,    163,    217,    220,    224,
4014     5,      248,    227,    244,    242,    255,    241,    231,
4015     240,    253,    16,     197,    19,     20,     21,     187,
4016     23,     169,    210,    245,    237,    249,    247,    239,
4017     168,    252,    34,     196,    36,     37,     38,     39,
4018     41,     42,     251,    254,    238,    223,    221,    213,
4019     225,    177,    52,     53,     54,     55,     56,     57,
4020     58,     59,     60,     61,     63,     64,     65,     66,
4021     67,     68,     69,     70,     71,     72,     74,     75,
4022     205,    208,    186,    202,    200,    218,    198,    179,
4023     178,    214,    88,     89,     90,     91,     92,     93,
4024     217,    166,    170,    207,    199,    209,    206,    204,
4025     160,    212,    105,    106,    108,    109,    110,    111,
4026     203,    113,    216,    215,    192,    175,    193,    243,
4027     172,    161,    123,    124,    125,    126,    127,    128,
4028     222,    219,    211,    195,    188,    193,    185,    184,
4029     191,    183,    141,    142,    143,    144,    145,    146
4030 };
4031 #else  /* ascii rather than ebcdic */
4032 EXTCONST unsigned char PL_freq[] = {    /* letter frequencies for mixed English/C */
4033         1,      2,      84,     151,    154,    155,    156,    157,
4034         165,    246,    250,    3,      158,    7,      18,     29,
4035         40,     51,     62,     73,     85,     96,     107,    118,
4036         129,    140,    147,    148,    149,    150,    152,    153,
4037         255,    182,    224,    205,    174,    176,    180,    217,
4038         233,    232,    236,    187,    235,    228,    234,    226,
4039         222,    219,    211,    195,    188,    193,    185,    184,
4040         191,    183,    201,    229,    181,    220,    194,    162,
4041         163,    208,    186,    202,    200,    218,    198,    179,
4042         178,    214,    166,    170,    207,    199,    209,    206,
4043         204,    160,    212,    216,    215,    192,    175,    173,
4044         243,    172,    161,    190,    203,    189,    164,    230,
4045         167,    248,    227,    244,    242,    255,    241,    231,
4046         240,    253,    169,    210,    245,    237,    249,    247,
4047         239,    168,    252,    251,    254,    238,    223,    221,
4048         213,    225,    177,    197,    171,    196,    159,    4,
4049         5,      6,      8,      9,      10,     11,     12,     13,
4050         14,     15,     16,     17,     19,     20,     21,     22,
4051         23,     24,     25,     26,     27,     28,     30,     31,
4052         32,     33,     34,     35,     36,     37,     38,     39,
4053         41,     42,     43,     44,     45,     46,     47,     48,
4054         49,     50,     52,     53,     54,     55,     56,     57,
4055         58,     59,     60,     61,     63,     64,     65,     66,
4056         67,     68,     69,     70,     71,     72,     74,     75,
4057         76,     77,     78,     79,     80,     81,     82,     83,
4058         86,     87,     88,     89,     90,     91,     92,     93,
4059         94,     95,     97,     98,     99,     100,    101,    102,
4060         103,    104,    105,    106,    108,    109,    110,    111,
4061         112,    113,    114,    115,    116,    117,    119,    120,
4062         121,    122,    123,    124,    125,    126,    127,    128,
4063         130,    131,    132,    133,    134,    135,    136,    137,
4064         138,    139,    141,    142,    143,    144,    145,    146
4065 };
4066 #endif
4067 #else
4068 EXTCONST unsigned char PL_freq[];
4069 #endif
4070
4071 #ifdef DEBUGGING
4072 #ifdef DOINIT
4073 EXTCONST char* const PL_block_type[] = {
4074         "NULL",
4075         "SUB",
4076         "EVAL",
4077         "LOOP",
4078         "SUBST",
4079         "BLOCK",
4080         "FORMAT",
4081         "GIVEN",
4082         "WHEN"
4083 };
4084 #else
4085 EXTCONST char* PL_block_type[];
4086 #endif
4087 #endif
4088
4089 END_EXTERN_C
4090
4091 /*****************************************************************************/
4092 /* This lexer/parser stuff is currently global since yacc is hard to reenter */
4093 /*****************************************************************************/
4094 /* XXX This needs to be revisited, since BEGIN makes yacc re-enter... */
4095
4096 #ifdef __Lynx__
4097 /* LynxOS defines these in scsi.h which is included via ioctl.h */
4098 #ifdef FORMAT
4099 #undef FORMAT
4100 #endif
4101 #ifdef SPACE
4102 #undef SPACE
4103 #endif
4104 #endif
4105
4106 #define LEX_NOTPARSING          11      /* borrowed from toke.c */
4107
4108 typedef enum {
4109     XOPERATOR,
4110     XTERM,
4111     XREF,
4112     XSTATE,
4113     XBLOCK,
4114     XATTRBLOCK,
4115     XATTRTERM,
4116     XTERMBLOCK,
4117     XTERMORDORDOR /* evil hack */
4118     /* update exp_name[] in toke.c if adding to this enum */
4119 } expectation;
4120
4121 enum {          /* pass one of these to get_vtbl */
4122     want_vtbl_sv,
4123     want_vtbl_env,
4124     want_vtbl_envelem,
4125     want_vtbl_sig,
4126     want_vtbl_sigelem,
4127     want_vtbl_pack,
4128     want_vtbl_packelem,
4129     want_vtbl_dbline,
4130     want_vtbl_isa,
4131     want_vtbl_isaelem,
4132     want_vtbl_arylen,
4133     want_vtbl_glob,
4134     want_vtbl_mglob,
4135     want_vtbl_nkeys,
4136     want_vtbl_taint,
4137     want_vtbl_substr,
4138     want_vtbl_vec,
4139     want_vtbl_pos,
4140     want_vtbl_bm,
4141     want_vtbl_fm,
4142     want_vtbl_uvar,
4143     want_vtbl_defelem,
4144     want_vtbl_regexp,
4145     want_vtbl_collxfrm,
4146     want_vtbl_amagic,
4147     want_vtbl_amagicelem,
4148     want_vtbl_regdata,
4149     want_vtbl_regdatum,
4150     want_vtbl_backref,
4151     want_vtbl_utf8,
4152     want_vtbl_symtab,
4153     want_vtbl_arylen_p,
4154     want_vtbl_hintselem
4155 };
4156
4157                                 /* Note: the lowest 8 bits are reserved for
4158                                    stuffing into op->op_private */
4159 #define HINT_PRIVATE_MASK       0x000000ff
4160 #define HINT_INTEGER            0x00000001 /* integer pragma */
4161 #define HINT_STRICT_REFS        0x00000002 /* strict pragma */
4162 #define HINT_LOCALE             0x00000004 /* locale pragma */
4163 #define HINT_BYTES              0x00000008 /* bytes pragma */
4164 /* #define HINT_notused10       0x00000010 */
4165                                 /* Note: 20,40,80 used for NATIVE_HINTS */
4166                                 /* currently defined by vms/vmsish.h */
4167
4168 #define HINT_BLOCK_SCOPE        0x00000100
4169 #define HINT_STRICT_SUBS        0x00000200 /* strict pragma */
4170 #define HINT_STRICT_VARS        0x00000400 /* strict pragma */
4171
4172 /* The HINT_NEW_* constants are used by the overload pragma */
4173 #define HINT_NEW_INTEGER        0x00001000
4174 #define HINT_NEW_FLOAT          0x00002000
4175 #define HINT_NEW_BINARY         0x00004000
4176 #define HINT_NEW_STRING         0x00008000
4177 #define HINT_NEW_RE             0x00010000
4178 #define HINT_LOCALIZE_HH        0x00020000 /* %^H needs to be copied */
4179
4180 #define HINT_RE_TAINT           0x00100000 /* re pragma */
4181 #define HINT_RE_EVAL            0x00200000 /* re pragma */
4182
4183 #define HINT_FILETEST_ACCESS    0x00400000 /* filetest pragma */
4184 #define HINT_UTF8               0x00800000 /* utf8 pragma */
4185
4186 /* assertions pragma */
4187 #define HINT_ASSERTING          0x01000000
4188 #define HINT_ASSERTIONSSEEN     0x02000000
4189
4190 /* The following are stored in $^H{sort}, not in PL_hints */
4191 #define HINT_SORT_SORT_BITS     0x000000FF /* allow 256 different ones */
4192 #define HINT_SORT_QUICKSORT     0x00000001
4193 #define HINT_SORT_MERGESORT     0x00000002
4194 #define HINT_SORT_STABLE        0x00000100 /* sort styles (currently one) */
4195
4196 /* Various states of the input record separator SV (rs) */
4197 #define RsSNARF(sv)   (! SvOK(sv))
4198 #define RsSIMPLE(sv)  (SvOK(sv) && (! SvPOK(sv) || SvCUR(sv)))
4199 #define RsPARA(sv)    (SvPOK(sv) && ! SvCUR(sv))
4200 #define RsRECORD(sv)  (SvROK(sv) && (SvIV(SvRV(sv)) > 0))
4201
4202 /* A struct for keeping various DEBUGGING related stuff,
4203  * neatly packed.  Currently only scratch variables for
4204  * constructing debug output are included.  Needed always,
4205  * not just when DEBUGGING, though, because of the re extension. c*/
4206 struct perl_debug_pad {
4207   SV pad[3];
4208 };
4209
4210 #define PERL_DEBUG_PAD(i)       &(PL_debug_pad.pad[i])
4211 #define PERL_DEBUG_PAD_ZERO(i)  (SvPVX(PERL_DEBUG_PAD(i))[0] = 0, \
4212         (((XPV*) SvANY(PERL_DEBUG_PAD(i)))->xpv_cur = 0), \
4213         PERL_DEBUG_PAD(i))
4214
4215 /* Enable variables which are pointers to functions */
4216 typedef void (CPERLscope(*peep_t))(pTHX_ OP* o);
4217 typedef regexp*(CPERLscope(*regcomp_t)) (pTHX_ char* exp, char* xend, PMOP* pm);
4218 typedef I32 (CPERLscope(*regexec_t)) (pTHX_ regexp* prog, char* stringarg,
4219                                       char* strend, char* strbeg, I32 minend,
4220                                       SV* screamer, void* data, U32 flags);
4221 typedef char* (CPERLscope(*re_intuit_start_t)) (pTHX_ regexp *prog, SV *sv,
4222                                                 char *strpos, char *strend,
4223                                                 U32 flags,
4224                                                 struct re_scream_pos_data_s *d);
4225 typedef SV*     (CPERLscope(*re_intuit_string_t)) (pTHX_ regexp *prog);
4226 typedef void    (CPERLscope(*regfree_t)) (pTHX_ struct regexp* r);
4227
4228 typedef void (*DESTRUCTORFUNC_NOCONTEXT_t) (void*);
4229 typedef void (*DESTRUCTORFUNC_t) (pTHX_ void*);
4230 typedef void (*SVFUNC_t) (pTHX_ SV*);
4231 typedef I32  (*SVCOMPARE_t) (pTHX_ SV*, SV*);
4232 typedef void (*XSINIT_t) (pTHX);
4233 typedef void (*ATEXIT_t) (pTHX_ void*);
4234 typedef void (*XSUBADDR_t) (pTHX_ CV *);
4235
4236 /* Set up PERLVAR macros for populating structs */
4237 #define PERLVAR(var,type) type var;
4238 #define PERLVARA(var,n,type) type var[n];
4239 #define PERLVARI(var,type,init) type var;
4240 #define PERLVARIC(var,type,init) type var;
4241 #define PERLVARISC(var,init) const char var[sizeof(init)];
4242
4243 typedef OP* (CPERLscope(*Perl_ppaddr_t))(pTHX);
4244 typedef OP* (CPERLscope(*Perl_check_t)) (pTHX_ OP*);
4245
4246 /* Interpreter exitlist entry */
4247 typedef struct exitlistentry {
4248     void (*fn) (pTHX_ void*);
4249     void *ptr;
4250 } PerlExitListEntry;
4251
4252 /* if you only have signal() and it resets on each signal, FAKE_PERSISTENT_SIGNAL_HANDLERS fixes */
4253 /* These have to be before perlvars.h */
4254 #if !defined(HAS_SIGACTION) && defined(VMS)
4255 #  define  FAKE_PERSISTENT_SIGNAL_HANDLERS
4256 #endif
4257 /* if we're doing kill() with sys$sigprc on VMS, FAKE_DEFAULT_SIGNAL_HANDLERS */
4258 #if defined(KILL_BY_SIGPRC)
4259 #  define  FAKE_DEFAULT_SIGNAL_HANDLERS
4260 #endif
4261
4262 #ifdef PERL_GLOBAL_STRUCT
4263 struct perl_vars {
4264 #  include "perlvars.h"
4265 };
4266
4267 #  ifdef PERL_CORE
4268 #    ifndef PERL_GLOBAL_STRUCT_PRIVATE
4269 EXT struct perl_vars PL_Vars;
4270 EXT struct perl_vars *PL_VarsPtr INIT(&PL_Vars);
4271 #      undef PERL_GET_VARS
4272 #      define PERL_GET_VARS() PL_VarsPtr
4273 #    endif /* !PERL_GLOBAL_STRUCT_PRIVATE */
4274 #  else /* PERL_CORE */
4275 #    if !defined(__GNUC__) || !defined(WIN32)
4276 EXT
4277 #    endif /* WIN32 */
4278 struct perl_vars *PL_VarsPtr;
4279 #    define PL_Vars (*((PL_VarsPtr) \
4280                        ? PL_VarsPtr : (PL_VarsPtr = Perl_GetVars(aTHX))))
4281 #  endif /* PERL_CORE */
4282 #endif /* PERL_GLOBAL_STRUCT */
4283
4284 #if defined(MULTIPLICITY)
4285 /* If we have multiple interpreters define a struct
4286    holding variables which must be per-interpreter
4287    If we don't have threads anything that would have
4288    be per-thread is per-interpreter.
4289 */
4290
4291 struct interpreter {
4292 #  include "thrdvar.h"
4293 #  include "intrpvar.h"
4294 /*
4295  * The following is a buffer where new variables must
4296  * be defined to maintain binary compatibility with previous versions
4297  */
4298 PERLVARA(object_compatibility,30,       char)
4299 };
4300
4301 #else
4302 struct interpreter {
4303     char broiled;
4304 };
4305 #endif /* MULTIPLICITY */
4306
4307 typedef void *Thread;
4308
4309 /* Done with PERLVAR macros for now ... */
4310 #undef PERLVAR
4311 #undef PERLVARA
4312 #undef PERLVARI
4313 #undef PERLVARIC
4314 #undef PERLVARISC
4315
4316 struct tempsym; /* defined in pp_pack.c */
4317
4318 #include "thread.h"
4319 #include "pp.h"
4320
4321 #ifndef PERL_CALLCONV
4322 #  define PERL_CALLCONV
4323 #endif
4324 #undef PERL_CKDEF
4325 #undef PERL_PPDEF
4326 #define PERL_CKDEF(s)   PERL_CALLCONV OP *s (pTHX_ OP *o);
4327 #define PERL_PPDEF(s)   PERL_CALLCONV OP *s (pTHX);
4328
4329 #include "proto.h"
4330
4331 /* this has structure inits, so it cannot be included before here */
4332 #include "opcode.h"
4333
4334 /* The following must follow proto.h as #defines mess up syntax */
4335
4336 #if !defined(PERL_FOR_X2P)
4337 #  include "embedvar.h"
4338 #endif
4339 #ifndef PERL_MAD
4340 #  undef PL_madskills
4341 #  undef PL_xmlfp
4342 #  define PL_madskills 0
4343 #  define PL_xmlfp 0
4344 #endif
4345
4346 /* Now include all the 'global' variables
4347  * If we don't have threads or multiple interpreters
4348  * these include variables that would have been their struct-s
4349  */
4350
4351 #define PERLVAR(var,type) EXT type PL_##var;
4352 #define PERLVARA(var,n,type) EXT type PL_##var[n];
4353 #define PERLVARI(var,type,init) EXT type  PL_##var INIT(init);
4354 #define PERLVARIC(var,type,init) EXTCONST type PL_##var INIT(init);
4355 #define PERLVARISC(var,init) EXTCONST char PL_##var[sizeof(init)] INIT(init);
4356
4357 #if !defined(MULTIPLICITY)
4358 START_EXTERN_C
4359 #  include "intrpvar.h"
4360 #  include "thrdvar.h"
4361 END_EXTERN_C
4362 #endif
4363
4364 #if defined(WIN32)
4365 /* Now all the config stuff is setup we can include embed.h */
4366 #  include "embed.h"
4367 #  ifndef PERL_MAD
4368 #    undef op_getmad
4369 #    define op_getmad(arg,pegop,slot) /*EMPTY*/
4370 #  endif
4371 #endif
4372
4373 #ifndef PERL_GLOBAL_STRUCT
4374 START_EXTERN_C
4375
4376 #  include "perlvars.h"
4377
4378 END_EXTERN_C
4379 #endif
4380
4381 #undef PERLVAR
4382 #undef PERLVARA
4383 #undef PERLVARI
4384 #undef PERLVARIC
4385
4386 START_EXTERN_C
4387
4388 #ifdef DOINIT
4389 #  define MGVTBL_SET(var,a,b,c,d,e,f,g,h) EXT MGVTBL var = {a,b,c,d,e,f,g,h}
4390 /* Like MGVTBL_SET but with the get magic having a const MG* */
4391 #  define MGVTBL_SET_CONST_MAGIC_GET(var,a,b,c,d,e,f,g,h) EXT MGVTBL var \
4392     = {(int (*)(pTHX_ SV *, MAGIC *))a,b,c,d,e,f,g,h}
4393 #else
4394 #  define MGVTBL_SET(var,a,b,c,d,e,f,g,h) EXT MGVTBL var
4395 #  define MGVTBL_SET_CONST_MAGIC_GET(var,a,b,c,d,e,f,g,h) EXT MGVTBL var
4396 #endif
4397
4398 MGVTBL_SET(
4399     PL_vtbl_sv,
4400     MEMBER_TO_FPTR(Perl_magic_get),
4401     MEMBER_TO_FPTR(Perl_magic_set),
4402     MEMBER_TO_FPTR(Perl_magic_len),
4403     NULL,
4404     NULL,
4405     NULL,
4406     NULL,
4407     NULL
4408 );
4409
4410 MGVTBL_SET(
4411     PL_vtbl_env,
4412     NULL,
4413     MEMBER_TO_FPTR(Perl_magic_set_all_env),
4414     NULL,
4415     MEMBER_TO_FPTR(Perl_magic_clear_all_env),
4416     NULL,
4417     NULL,
4418     NULL,
4419     NULL
4420 );
4421
4422 MGVTBL_SET(
4423     PL_vtbl_envelem,
4424     NULL,
4425     MEMBER_TO_FPTR(Perl_magic_setenv),
4426     NULL,
4427     MEMBER_TO_FPTR(Perl_magic_clearenv),
4428     NULL,
4429     NULL,
4430     NULL,
4431     NULL
4432 );
4433
4434 /* For now, hints magic will also use vtbl_sig, because it is all NULL  */
4435 MGVTBL_SET(
4436     PL_vtbl_sig,
4437     NULL,
4438     NULL,
4439     NULL,
4440     NULL,
4441     NULL,
4442     NULL,
4443     NULL,
4444     NULL
4445 );
4446
4447 #ifdef PERL_MICRO
4448 MGVTBL_SET(
4449     PL_vtbl_sigelem,
4450     NULL,
4451     NULL,
4452     NULL,
4453     NULL,
4454     NULL,
4455     NULL,
4456     NULL,
4457     NULL
4458 );
4459
4460 #else
4461 MGVTBL_SET(
4462     PL_vtbl_sigelem,
4463     MEMBER_TO_FPTR(Perl_magic_getsig),
4464     MEMBER_TO_FPTR(Perl_magic_setsig),
4465     NULL,
4466     MEMBER_TO_FPTR(Perl_magic_clearsig),
4467     NULL,
4468     NULL,
4469     NULL,
4470     NULL
4471 );
4472 #endif
4473
4474 MGVTBL_SET(
4475     PL_vtbl_pack,
4476     NULL,
4477     NULL,
4478     MEMBER_TO_FPTR(Perl_magic_sizepack),
4479     MEMBER_TO_FPTR(Perl_magic_wipepack),
4480     NULL,
4481     NULL,
4482     NULL,
4483     NULL
4484 );
4485
4486 MGVTBL_SET(
4487     PL_vtbl_packelem,
4488     MEMBER_TO_FPTR(Perl_magic_getpack),
4489     MEMBER_TO_FPTR(Perl_magic_setpack),
4490     NULL,
4491     MEMBER_TO_FPTR(Perl_magic_clearpack),
4492     NULL,
4493     NULL,
4494     NULL,
4495     NULL
4496 );
4497
4498 MGVTBL_SET(
4499     PL_vtbl_dbline,
4500     NULL,
4501     MEMBER_TO_FPTR(Perl_magic_setdbline),
4502     NULL,
4503     NULL,
4504     NULL,
4505     NULL,
4506     NULL,
4507     NULL
4508 );
4509
4510 MGVTBL_SET(
4511     PL_vtbl_isa,
4512     NULL,
4513     MEMBER_TO_FPTR(Perl_magic_setisa),
4514     NULL,
4515     MEMBER_TO_FPTR(Perl_magic_setisa),
4516     NULL,
4517     NULL,
4518     NULL,
4519     NULL
4520 );
4521
4522 MGVTBL_SET(
4523     PL_vtbl_isaelem,
4524     NULL,
4525     MEMBER_TO_FPTR(Perl_magic_setisa),
4526     NULL,
4527     NULL,
4528     NULL,
4529     NULL,
4530     NULL,
4531     NULL
4532 );
4533
4534 MGVTBL_SET_CONST_MAGIC_GET(
4535     PL_vtbl_arylen,
4536     MEMBER_TO_FPTR(Perl_magic_getarylen),
4537     MEMBER_TO_FPTR(Perl_magic_setarylen),
4538     NULL,
4539     NULL,
4540     NULL,
4541     NULL,
4542     NULL,
4543     NULL
4544 );
4545
4546 MGVTBL_SET(
4547     PL_vtbl_arylen_p,
4548     NULL,
4549     NULL,
4550     NULL,
4551     NULL,
4552     MEMBER_TO_FPTR(Perl_magic_freearylen_p),
4553     NULL,
4554     NULL,
4555     NULL
4556 );
4557
4558 MGVTBL_SET(
4559     PL_vtbl_mglob,
4560     NULL,
4561     MEMBER_TO_FPTR(Perl_magic_setmglob),
4562     NULL,
4563     NULL,
4564     NULL,
4565     NULL,
4566     NULL,
4567     NULL
4568 );
4569
4570 MGVTBL_SET(
4571     PL_vtbl_nkeys,
4572     MEMBER_TO_FPTR(Perl_magic_getnkeys),
4573     MEMBER_TO_FPTR(Perl_magic_setnkeys),
4574     NULL,
4575     NULL,
4576     NULL,
4577     NULL,
4578     NULL,
4579     NULL
4580 );
4581
4582 MGVTBL_SET(
4583     PL_vtbl_taint,
4584     MEMBER_TO_FPTR(Perl_magic_gettaint),
4585     MEMBER_TO_FPTR(Perl_magic_settaint),
4586     NULL,
4587     NULL,
4588     NULL,
4589     NULL,
4590     NULL,
4591     NULL
4592 );
4593
4594 MGVTBL_SET(
4595     PL_vtbl_substr,
4596     MEMBER_TO_FPTR(Perl_magic_getsubstr),
4597     MEMBER_TO_FPTR(Perl_magic_setsubstr),
4598     NULL,
4599     NULL,
4600     NULL,
4601     NULL,
4602     NULL,
4603     NULL
4604 );
4605
4606 MGVTBL_SET(
4607     PL_vtbl_vec,
4608     MEMBER_TO_FPTR(Perl_magic_getvec),
4609     MEMBER_TO_FPTR(Perl_magic_setvec),
4610     NULL,
4611     NULL,
4612     NULL,
4613     NULL,
4614     NULL,
4615     NULL
4616 );
4617
4618 MGVTBL_SET(
4619     PL_vtbl_pos,
4620     MEMBER_TO_FPTR(Perl_magic_getpos),
4621     MEMBER_TO_FPTR(Perl_magic_setpos),
4622     NULL,
4623     NULL,
4624     NULL,
4625     NULL,
4626     NULL,
4627     NULL
4628 );
4629
4630 MGVTBL_SET(
4631     PL_vtbl_bm,
4632     NULL,
4633     MEMBER_TO_FPTR(Perl_magic_setbm),
4634     NULL,
4635     NULL,
4636     NULL,
4637     NULL,
4638     NULL,
4639     NULL
4640 );
4641
4642 MGVTBL_SET(
4643     PL_vtbl_fm,
4644     NULL,
4645     MEMBER_TO_FPTR(Perl_magic_setfm),
4646     NULL,
4647     NULL,
4648     NULL,
4649     NULL,
4650     NULL,
4651     NULL
4652 );
4653
4654 MGVTBL_SET(
4655     PL_vtbl_uvar,
4656     MEMBER_TO_FPTR(Perl_magic_getuvar),
4657     MEMBER_TO_FPTR(Perl_magic_setuvar),
4658     NULL,
4659     NULL,
4660     NULL,
4661     NULL,
4662     NULL,
4663     NULL
4664 );
4665
4666 MGVTBL_SET(
4667     PL_vtbl_defelem,
4668     MEMBER_TO_FPTR(Perl_magic_getdefelem),
4669     MEMBER_TO_FPTR(Perl_magic_setdefelem),
4670     NULL,
4671     NULL,
4672     NULL,
4673     NULL,
4674     NULL,
4675     NULL
4676 );
4677
4678 MGVTBL_SET(
4679     PL_vtbl_regexp,
4680     NULL,
4681     MEMBER_TO_FPTR(Perl_magic_setregexp),
4682     NULL,
4683     NULL,
4684     MEMBER_TO_FPTR(Perl_magic_freeregexp),
4685     NULL,
4686     NULL,
4687     NULL
4688 );
4689
4690 MGVTBL_SET(
4691     PL_vtbl_regdata,
4692     NULL,
4693     NULL,
4694     MEMBER_TO_FPTR(Perl_magic_regdata_cnt),
4695     NULL,
4696     NULL,
4697     NULL,
4698     NULL,
4699     NULL
4700 );
4701
4702 MGVTBL_SET(
4703     PL_vtbl_regdatum,
4704     MEMBER_TO_FPTR(Perl_magic_regdatum_get),
4705     MEMBER_TO_FPTR(Perl_magic_regdatum_set),
4706     NULL,
4707     NULL,
4708     NULL,
4709     NULL,
4710     NULL,
4711     NULL
4712 );
4713
4714 MGVTBL_SET(
4715     PL_vtbl_amagic,
4716     NULL,
4717     MEMBER_TO_FPTR(Perl_magic_setamagic),
4718     NULL,
4719     NULL,
4720     MEMBER_TO_FPTR(Perl_magic_setamagic),
4721     NULL,
4722     NULL,
4723     NULL
4724 );
4725
4726 MGVTBL_SET(
4727     PL_vtbl_amagicelem,
4728     NULL,
4729     MEMBER_TO_FPTR(Perl_magic_setamagic),
4730     NULL,
4731     NULL,
4732     MEMBER_TO_FPTR(Perl_magic_setamagic),
4733     NULL,
4734     NULL,
4735     NULL
4736 );
4737
4738 MGVTBL_SET(
4739     PL_vtbl_backref,
4740     NULL,
4741     NULL,
4742     NULL,
4743     NULL,
4744     MEMBER_TO_FPTR(Perl_magic_killbackrefs),
4745     NULL,
4746     NULL,
4747     NULL
4748 );
4749
4750 MGVTBL_SET(
4751     PL_vtbl_ovrld,
4752     NULL,
4753     NULL,
4754     NULL,
4755     NULL,
4756     MEMBER_TO_FPTR(Perl_magic_freeovrld),
4757     NULL,
4758     NULL,
4759     NULL
4760 );
4761
4762 MGVTBL_SET(
4763     PL_vtbl_utf8,
4764     NULL,
4765     MEMBER_TO_FPTR(Perl_magic_setutf8),
4766     NULL,
4767     NULL,
4768     NULL,
4769     NULL,
4770     NULL,
4771     NULL
4772 );
4773 #ifdef USE_LOCALE_COLLATE
4774 MGVTBL_SET(
4775     PL_vtbl_collxfrm,
4776     NULL,
4777     MEMBER_TO_FPTR(Perl_magic_setcollxfrm),
4778     NULL,
4779     NULL,
4780     NULL,
4781     NULL,
4782     NULL,
4783     NULL
4784 );
4785 #endif
4786
4787 MGVTBL_SET(
4788     PL_vtbl_hintselem,
4789     NULL,
4790     MEMBER_TO_FPTR(Perl_magic_sethint),
4791     NULL,
4792     MEMBER_TO_FPTR(Perl_magic_clearhint),
4793     NULL,
4794     NULL,
4795     NULL,
4796     NULL
4797 );
4798
4799
4800 enum {
4801   fallback_amg,        abs_amg,
4802   bool__amg,   nomethod_amg,
4803   string_amg,  numer_amg,
4804   add_amg,     add_ass_amg,
4805   subtr_amg,   subtr_ass_amg,
4806   mult_amg,    mult_ass_amg,
4807   div_amg,     div_ass_amg,
4808   modulo_amg,  modulo_ass_amg,
4809   pow_amg,     pow_ass_amg,
4810   lshift_amg,  lshift_ass_amg,
4811   rshift_amg,  rshift_ass_amg,
4812   band_amg,    band_ass_amg,
4813   bor_amg,     bor_ass_amg,
4814   bxor_amg,    bxor_ass_amg,
4815   lt_amg,      le_amg,
4816   gt_amg,      ge_amg,
4817   eq_amg,      ne_amg,
4818   ncmp_amg,    scmp_amg,
4819   slt_amg,     sle_amg,
4820   sgt_amg,     sge_amg,
4821   seq_amg,     sne_amg,
4822   not_amg,     compl_amg,
4823   inc_amg,     dec_amg,
4824   atan2_amg,   cos_amg,
4825   sin_amg,     exp_amg,
4826   log_amg,     sqrt_amg,
4827   repeat_amg,   repeat_ass_amg,
4828   concat_amg,  concat_ass_amg,
4829   copy_amg,    neg_amg,
4830   to_sv_amg,   to_av_amg,
4831   to_hv_amg,   to_gv_amg,
4832   to_cv_amg,   iter_amg,
4833   int_amg,     smart_amg,
4834
4835   /* Note: Perl_Gv_AMupdate() assumes that DESTROY is the last entry */
4836   DESTROY_amg,
4837   max_amg_code
4838   /* Do not leave a trailing comma here.  C9X allows it, C89 doesn't. */
4839 };
4840
4841 #define NofAMmeth max_amg_code
4842 #define AMG_id2name(id) (PL_AMG_names[id]+1)
4843
4844 #ifdef DOINIT
4845 EXTCONST char * const PL_AMG_names[NofAMmeth] = {
4846   /* Names kept in the symbol table.  fallback => "()", the rest has
4847      "(" prepended.  The only other place in perl which knows about
4848      this convention is AMG_id2name (used for debugging output and
4849      'nomethod' only), the only other place which has it hardwired is
4850      overload.pm.  */
4851   "()",         "(abs",                 /* "fallback" should be the first. */
4852   "(bool",      "(nomethod",
4853   "(\"\"",      "(0+",
4854   "(+",         "(+=",
4855   "(-",         "(-=",
4856   "(*",         "(*=",
4857   "(/",         "(/=",
4858   "(%",         "(%=",
4859   "(**",        "(**=",
4860   "(<<",        "(<<=",
4861   "(>>",        "(>>=",
4862   "(&",         "(&=",
4863   "(|",         "(|=",
4864   "(^",         "(^=",
4865   "(<",         "(<=",
4866   "(>",         "(>=",
4867   "(==",        "(!=",
4868   "(<=>",       "(cmp",
4869   "(lt",        "(le",
4870   "(gt",        "(ge",
4871   "(eq",        "(ne",
4872   "(!",         "(~",
4873   "(++",        "(--",
4874   "(atan2",     "(cos",
4875   "(sin",       "(exp",
4876   "(log",       "(sqrt",
4877   "(x",         "(x=",
4878   "(.",         "(.=",
4879   "(=",         "(neg",
4880   "(${}",       "(@{}",
4881   "(%{}",       "(*{}",
4882   "(&{}",       "(<>",
4883   "(int",       "(~~",
4884   "DESTROY"
4885 };
4886 #else
4887 EXTCONST char * PL_AMG_names[NofAMmeth];
4888 #endif /* def INITAMAGIC */
4889
4890 END_EXTERN_C
4891
4892 struct am_table {
4893   U32 was_ok_sub;
4894   long was_ok_am;
4895   U32 flags;
4896   CV* table[NofAMmeth];
4897   long fallback;
4898 };
4899 struct am_table_short {
4900   U32 was_ok_sub;
4901   long was_ok_am;
4902   U32 flags;
4903 };
4904 typedef struct am_table AMT;
4905 typedef struct am_table_short AMTS;
4906
4907 #define AMGfallNEVER    1
4908 #define AMGfallNO       2
4909 #define AMGfallYES      3
4910
4911 #define AMTf_AMAGIC             1
4912 #define AMTf_OVERLOADED         2
4913 #define AMT_AMAGIC(amt)         ((amt)->flags & AMTf_AMAGIC)
4914 #define AMT_AMAGIC_on(amt)      ((amt)->flags |= AMTf_AMAGIC)
4915 #define AMT_AMAGIC_off(amt)     ((amt)->flags &= ~AMTf_AMAGIC)
4916 #define AMT_OVERLOADED(amt)     ((amt)->flags & AMTf_OVERLOADED)
4917 #define AMT_OVERLOADED_on(amt)  ((amt)->flags |= AMTf_OVERLOADED)
4918 #define AMT_OVERLOADED_off(amt) ((amt)->flags &= ~AMTf_OVERLOADED)
4919
4920 #define StashHANDLER(stash,meth)        gv_handler((stash),CAT2(meth,_amg))
4921
4922 /*
4923  * some compilers like to redefine cos et alia as faster
4924  * (and less accurate?) versions called F_cos et cetera (Quidquid
4925  * latine dictum sit, altum viditur.)  This trick collides with
4926  * the Perl overloading (amg).  The following #defines fool both.
4927  */
4928
4929 #ifdef _FASTMATH
4930 #   ifdef atan2
4931 #       define F_atan2_amg  atan2_amg
4932 #   endif
4933 #   ifdef cos
4934 #       define F_cos_amg    cos_amg
4935 #   endif
4936 #   ifdef exp
4937 #       define F_exp_amg    exp_amg
4938 #   endif
4939 #   ifdef log
4940 #       define F_log_amg    log_amg
4941 #   endif
4942 #   ifdef pow
4943 #       define F_pow_amg    pow_amg
4944 #   endif
4945 #   ifdef sin
4946 #       define F_sin_amg    sin_amg
4947 #   endif
4948 #   ifdef sqrt
4949 #       define F_sqrt_amg   sqrt_amg
4950 #   endif
4951 #endif /* _FASTMATH */
4952
4953 #define PERLDB_ALL              (PERLDBf_SUB    | PERLDBf_LINE  |       \
4954                                  PERLDBf_NOOPT  | PERLDBf_INTER |       \
4955                                  PERLDBf_SUBLINE| PERLDBf_SINGLE|       \
4956                                  PERLDBf_NAMEEVAL| PERLDBf_NAMEANON )
4957                                         /* No _NONAME, _GOTO, _ASSERTION */
4958 #define PERLDBf_SUB             0x01    /* Debug sub enter/exit */
4959 #define PERLDBf_LINE            0x02    /* Keep line # */
4960 #define PERLDBf_NOOPT           0x04    /* Switch off optimizations */
4961 #define PERLDBf_INTER           0x08    /* Preserve more data for
4962                                            later inspections  */
4963 #define PERLDBf_SUBLINE         0x10    /* Keep subr source lines */
4964 #define PERLDBf_SINGLE          0x20    /* Start with single-step on */
4965 #define PERLDBf_NONAME          0x40    /* For _SUB: no name of the subr */
4966 #define PERLDBf_GOTO            0x80    /* Report goto: call DB::goto */
4967 #define PERLDBf_NAMEEVAL        0x100   /* Informative names for evals */
4968 #define PERLDBf_NAMEANON        0x200   /* Informative names for anon subs */
4969 #define PERLDBf_ASSERTION       0x400   /* Debug assertion subs enter/exit */
4970
4971 #define PERLDB_SUB      (PL_perldb && (PL_perldb & PERLDBf_SUB))
4972 #define PERLDB_LINE     (PL_perldb && (PL_perldb & PERLDBf_LINE))
4973 #define PERLDB_NOOPT    (PL_perldb && (PL_perldb & PERLDBf_NOOPT))
4974 #define PERLDB_INTER    (PL_perldb && (PL_perldb & PERLDBf_INTER))
4975 #define PERLDB_SUBLINE  (PL_perldb && (PL_perldb & PERLDBf_SUBLINE))
4976 #define PERLDB_SINGLE   (PL_perldb && (PL_perldb & PERLDBf_SINGLE))
4977 #define PERLDB_SUB_NN   (PL_perldb && (PL_perldb & (PERLDBf_NONAME)))
4978 #define PERLDB_GOTO     (PL_perldb && (PL_perldb & PERLDBf_GOTO))
4979 #define PERLDB_NAMEEVAL (PL_perldb && (PL_perldb & PERLDBf_NAMEEVAL))
4980 #define PERLDB_NAMEANON (PL_perldb && (PL_perldb & PERLDBf_NAMEANON))
4981 #define PERLDB_ASSERTION (PL_perldb && (PL_perldb & PERLDBf_ASSERTION))
4982
4983 #ifdef USE_LOCALE_NUMERIC
4984
4985 #define SET_NUMERIC_STANDARD() \
4986         set_numeric_standard();
4987
4988 #define SET_NUMERIC_LOCAL() \
4989         set_numeric_local();
4990
4991 #define IN_LOCALE_RUNTIME       (PL_curcop->op_private & HINT_LOCALE)
4992 #define IN_LOCALE_COMPILETIME   (PL_hints & HINT_LOCALE)
4993
4994 #define IN_LOCALE \
4995         (IN_PERL_COMPILETIME ? IN_LOCALE_COMPILETIME : IN_LOCALE_RUNTIME)
4996
4997 #define STORE_NUMERIC_LOCAL_SET_STANDARD() \
4998         bool was_local = PL_numeric_local && IN_LOCALE; \
4999         if (was_local) SET_NUMERIC_STANDARD();
5000
5001 #define STORE_NUMERIC_STANDARD_SET_LOCAL() \
5002         bool was_standard = PL_numeric_standard && IN_LOCALE; \
5003         if (was_standard) SET_NUMERIC_LOCAL();
5004
5005 #define RESTORE_NUMERIC_LOCAL() \
5006         if (was_local) SET_NUMERIC_LOCAL();
5007
5008 #define RESTORE_NUMERIC_STANDARD() \
5009         if (was_standard) SET_NUMERIC_STANDARD();
5010
5011 #define Atof                            my_atof
5012
5013 #else /* !USE_LOCALE_NUMERIC */
5014
5015 #define SET_NUMERIC_STANDARD()          /**/
5016 #define SET_NUMERIC_LOCAL()             /**/
5017 #define IS_NUMERIC_RADIX(a, b)          (0)
5018 #define STORE_NUMERIC_LOCAL_SET_STANDARD()      /**/
5019 #define STORE_NUMERIC_STANDARD_SET_LOCAL()      /**/
5020 #define RESTORE_NUMERIC_LOCAL()         /**/
5021 #define RESTORE_NUMERIC_STANDARD()      /**/
5022 #define Atof                            my_atof
5023 #define IN_LOCALE_RUNTIME               0
5024
5025 #endif /* !USE_LOCALE_NUMERIC */
5026
5027 #if !defined(Strtol) && defined(USE_64_BIT_INT) && defined(IV_IS_QUAD) && QUADKIND == QUAD_IS_LONG_LONG
5028 #    ifdef __hpux
5029 #        define strtoll __strtoll       /* secret handshake */
5030 #    endif
5031 #    ifdef WIN64
5032 #        define strtoll _strtoi64       /* secret handshake */
5033 #    endif
5034 #   if !defined(Strtol) && defined(HAS_STRTOLL)
5035 #       define Strtol   strtoll
5036 #   endif
5037 #    if !defined(Strtol) && defined(HAS_STRTOQ)
5038 #       define Strtol   strtoq
5039 #    endif
5040 /* is there atoq() anywhere? */
5041 #endif
5042 #if !defined(Strtol) && defined(HAS_STRTOL)
5043 #   define Strtol       strtol
5044 #endif
5045 #ifndef Atol
5046 /* It would be more fashionable to use Strtol() to define atol()
5047  * (as is done for Atoul(), see below) but for backward compatibility
5048  * we just assume atol(). */
5049 #   if defined(USE_64_BIT_INT) && defined(IV_IS_QUAD) && QUADKIND == QUAD_IS_LONG_LONG && defined(HAS_ATOLL)
5050 #    ifdef WIN64
5051 #       define atoll    _atoi64         /* secret handshake */
5052 #    endif
5053 #       define Atol     atoll
5054 #   else
5055 #       define Atol     atol
5056 #   endif
5057 #endif
5058
5059 #if !defined(Strtoul) && defined(USE_64_BIT_INT) && defined(UV_IS_QUAD) && QUADKIND == QUAD_IS_LONG_LONG
5060 #    ifdef __hpux
5061 #        define strtoull __strtoull     /* secret handshake */
5062 #    endif
5063 #    ifdef WIN64
5064 #        define strtoull _strtoui64     /* secret handshake */
5065 #    endif
5066 #    if !defined(Strtoul) && defined(HAS_STRTOULL)
5067 #       define Strtoul  strtoull
5068 #    endif
5069 #    if !defined(Strtoul) && defined(HAS_STRTOUQ)
5070 #       define Strtoul  strtouq
5071 #    endif
5072 /* is there atouq() anywhere? */
5073 #endif
5074 #if !defined(Strtoul) && defined(HAS_STRTOUL)
5075 #   define Strtoul      strtoul
5076 #endif
5077 #if !defined(Strtoul) && defined(HAS_STRTOL) /* Last resort. */
5078 #   define Strtoul(s, e, b)     strchr((s), '-') ? ULONG_MAX : (unsigned long)strtol((s), (e), (b))
5079 #endif
5080 #ifndef Atoul
5081 #   define Atoul(s)     Strtoul(s, NULL, 10)
5082 #endif
5083
5084
5085 /* if these never got defined, they need defaults */
5086 #ifndef PERL_SET_CONTEXT
5087 #  define PERL_SET_CONTEXT(i)           PERL_SET_INTERP(i)
5088 #endif
5089
5090 #ifndef PERL_GET_CONTEXT
5091 #  define PERL_GET_CONTEXT              PERL_GET_INTERP
5092 #endif
5093
5094 #ifndef PERL_GET_THX
5095 #  define PERL_GET_THX                  ((void*)NULL)
5096 #endif
5097
5098 #ifndef PERL_SET_THX
5099 #  define PERL_SET_THX(t)               NOOP
5100 #endif
5101
5102 #ifndef PERL_SCRIPT_MODE
5103 #define PERL_SCRIPT_MODE "r"
5104 #endif
5105
5106 /*
5107  * Some operating systems are stingy with stack allocation,
5108  * so perl may have to guard against stack overflow.
5109  */
5110 #ifndef PERL_STACK_OVERFLOW_CHECK
5111 #define PERL_STACK_OVERFLOW_CHECK()  NOOP
5112 #endif
5113
5114 /*
5115  * Some nonpreemptive operating systems find it convenient to
5116  * check for asynchronous conditions after each op execution.
5117  * Keep this check simple, or it may slow down execution
5118  * massively.
5119  */
5120
5121 #ifndef PERL_MICRO
5122 #       ifndef PERL_ASYNC_CHECK
5123 #               define PERL_ASYNC_CHECK() if (PL_sig_pending) despatch_signals()
5124 #       endif
5125 #endif
5126
5127 #ifndef PERL_ASYNC_CHECK
5128 #   define PERL_ASYNC_CHECK()  NOOP
5129 #endif
5130
5131 /*
5132  * On some operating systems, a memory allocation may succeed,
5133  * but put the process too close to the system's comfort limit.
5134  * In this case, PERL_ALLOC_CHECK frees the pointer and sets
5135  * it to NULL.
5136  */
5137 #ifndef PERL_ALLOC_CHECK
5138 #define PERL_ALLOC_CHECK(p)  NOOP
5139 #endif
5140
5141 #ifdef HAS_SEM
5142 #   include <sys/ipc.h>
5143 #   include <sys/sem.h>
5144 #   ifndef HAS_UNION_SEMUN      /* Provide the union semun. */
5145     union semun {
5146         int             val;
5147         struct semid_ds *buf;
5148         unsigned short  *array;
5149     };
5150 #   endif
5151 #   ifdef USE_SEMCTL_SEMUN
5152 #       ifdef IRIX32_SEMUN_BROKEN_BY_GCC
5153             union gccbug_semun {
5154                 int             val;
5155                 struct semid_ds *buf;
5156                 unsigned short  *array;
5157                 char            __dummy[5];
5158             };
5159 #           define semun gccbug_semun
5160 #       endif
5161 #       define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun)
5162 #   else
5163 #       ifdef USE_SEMCTL_SEMID_DS
5164 #           ifdef EXTRA_F_IN_SEMUN_BUF
5165 #               define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buff)
5166 #           else
5167 #               define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buf)
5168 #           endif
5169 #       endif
5170 #   endif
5171 #endif
5172
5173 /*
5174  * Boilerplate macros for initializing and accessing interpreter-local
5175  * data from C.  All statics in extensions should be reworked to use
5176  * this, if you want to make the extension thread-safe.  See ext/re/re.xs
5177  * for an example of the use of these macros, and perlxs.pod for more.
5178  *
5179  * Code that uses these macros is responsible for the following:
5180  * 1. #define MY_CXT_KEY to a unique string, e.g.
5181  *    "DynaLoader::_guts" XS_VERSION
5182  *    XXX in the current implementation, this string is ignored.
5183  * 2. Declare a typedef named my_cxt_t that is a structure that contains
5184  *    all the data that needs to be interpreter-local.
5185  * 3. Use the START_MY_CXT macro after the declaration of my_cxt_t.
5186  * 4. Use the MY_CXT_INIT macro such that it is called exactly once
5187  *    (typically put in the BOOT: section).
5188  * 5. Use the members of the my_cxt_t structure everywhere as
5189  *    MY_CXT.member.
5190  * 6. Use the dMY_CXT macro (a declaration) in all the functions that
5191  *    access MY_CXT.
5192  */
5193
5194 #if defined(PERL_IMPLICIT_CONTEXT)
5195
5196 /* This must appear in all extensions that define a my_cxt_t structure,
5197  * right after the definition (i.e. at file scope).  The non-threads
5198  * case below uses it to declare the data as static. */
5199 #define START_MY_CXT static int my_cxt_index = -1;
5200
5201 /* This declaration should be used within all functions that use the
5202  * interpreter-local data. */
5203 #define dMY_CXT \
5204         my_cxt_t *my_cxtp = (my_cxt_t *)PL_my_cxt_list[my_cxt_index]
5205 #define dMY_CXT_INTERP(my_perl) \
5206         my_cxt_t *my_cxtp = (my_cxt_t *)(my_perl)->Imy_cxt_list[my_cxt_index]
5207
5208 /* Creates and zeroes the per-interpreter data.
5209  * (We allocate my_cxtp in a Perl SV so that it will be released when
5210  * the interpreter goes away.) */
5211 #define MY_CXT_INIT \
5212         my_cxt_t *my_cxtp = \
5213             (my_cxt_t*)Perl_my_cxt_init(aTHX_ &my_cxt_index, sizeof(my_cxt_t))
5214 #define MY_CXT_INIT_INTERP(my_perl) \
5215         my_cxt_t *my_cxtp = \
5216             (my_cxt_t*)Perl_my_cxt_init(my_perl, &my_cxt_index, sizeof(my_cxt_t))
5217
5218 /* Clones the per-interpreter data. */
5219 #define MY_CXT_CLONE \
5220         my_cxt_t *my_cxtp = (my_cxt_t*)SvPVX(newSV(sizeof(my_cxt_t)-1));\
5221         Copy(PL_my_cxt_list[my_cxt_index], my_cxtp, 1, my_cxt_t);\
5222         PL_my_cxt_list[my_cxt_index] = my_cxtp                          \
5223
5224 /* This macro must be used to access members of the my_cxt_t structure.
5225  * e.g. MYCXT.some_data */
5226 #define MY_CXT          (*my_cxtp)
5227
5228 /* Judicious use of these macros can reduce the number of times dMY_CXT
5229  * is used.  Use is similar to pTHX, aTHX etc. */
5230 #define pMY_CXT         my_cxt_t *my_cxtp
5231 #define pMY_CXT_        pMY_CXT,
5232 #define _pMY_CXT        ,pMY_CXT
5233 #define aMY_CXT         my_cxtp
5234 #define aMY_CXT_        aMY_CXT,
5235 #define _aMY_CXT        ,aMY_CXT
5236
5237 #else /* PERL_IMPLICIT_CONTEXT */
5238
5239 #define START_MY_CXT    static my_cxt_t my_cxt;
5240 #define dMY_CXT_SV      dNOOP
5241 #define dMY_CXT         dNOOP
5242 #define MY_CXT_INIT     NOOP
5243 #define MY_CXT_CLONE    NOOP
5244 #define MY_CXT          my_cxt
5245
5246 #define pMY_CXT         void
5247 #define pMY_CXT_
5248 #define _pMY_CXT
5249 #define aMY_CXT
5250 #define aMY_CXT_
5251 #define _aMY_CXT
5252
5253 #endif /* !defined(PERL_IMPLICIT_CONTEXT) */
5254
5255 #ifdef I_FCNTL
5256 #  include <fcntl.h>
5257 #endif
5258
5259 #ifdef __Lynx__
5260 #  include <fcntl.h>
5261 #endif
5262
5263 #ifdef I_SYS_FILE
5264 #  include <sys/file.h>
5265 #endif
5266
5267 #if defined(HAS_FLOCK) && !defined(HAS_FLOCK_PROTO)
5268 int flock(int fd, int op);
5269 #endif
5270
5271 #ifndef O_RDONLY
5272 /* Assume UNIX defaults */
5273 #    define O_RDONLY    0000
5274 #    define O_WRONLY    0001
5275 #    define O_RDWR      0002
5276 #    define O_CREAT     0100
5277 #endif
5278
5279 #ifndef O_BINARY
5280 #  define O_BINARY 0
5281 #endif
5282
5283 #ifndef O_TEXT
5284 #  define O_TEXT 0
5285 #endif
5286
5287 #if O_TEXT != O_BINARY
5288     /* If you have different O_TEXT and O_BINARY and you are a CLRF shop,
5289      * that is, you are somehow DOSish. */
5290 #   if defined(__BEOS__) || defined(__VOS__) || defined(__CYGWIN__)
5291     /* BeOS has O_TEXT != O_BINARY but O_TEXT and O_BINARY have no effect;
5292      * BeOS is always UNIXoid (LF), not DOSish (CRLF). */
5293     /* VOS has O_TEXT != O_BINARY, and they have effect,
5294      * but VOS always uses LF, never CRLF. */
5295     /* If you have O_TEXT different from your O_BINARY but you still are
5296      * not a CRLF shop. */
5297 #       undef PERLIO_USING_CRLF
5298 #   else
5299     /* If you really are DOSish. */
5300 #      define PERLIO_USING_CRLF 1
5301 #   endif
5302 #endif
5303
5304 #ifdef IAMSUID
5305
5306 #ifdef I_SYS_STATVFS
5307 #   if defined(PERL_SCO) && !defined(_SVID3)
5308 #       define _SVID3
5309 #   endif
5310 #   include <sys/statvfs.h>     /* for f?statvfs() */
5311 #endif
5312 #ifdef I_SYS_MOUNT
5313 #   include <sys/mount.h>       /* for *BSD f?statfs() */
5314 #endif
5315 #ifdef I_MNTENT
5316 #   include <mntent.h>          /* for getmntent() */
5317 #endif
5318 #ifdef I_SYS_STATFS
5319 #   include <sys/statfs.h>      /* for some statfs() */
5320 #endif
5321 #ifdef I_SYS_VFS
5322 #  ifdef __sgi
5323 #    define sv IRIX_sv          /* kludge: IRIX has an sv of its own */
5324 #  endif
5325 #    include <sys/vfs.h>        /* for some statfs() */
5326 #  ifdef __sgi
5327 #    undef IRIX_sv
5328 #  endif
5329 #endif
5330 #ifdef I_USTAT
5331 #   include <ustat.h>           /* for ustat() */
5332 #endif
5333
5334 #if !defined(PERL_MOUNT_NOSUID) && defined(MOUNT_NOSUID)
5335 #    define PERL_MOUNT_NOSUID MOUNT_NOSUID
5336 #endif
5337 #if !defined(PERL_MOUNT_NOSUID) && defined(MNT_NOSUID)
5338 #    define PERL_MOUNT_NOSUID MNT_NOSUID
5339 #endif
5340 #if !defined(PERL_MOUNT_NOSUID) && defined(MS_NOSUID)
5341 #   define PERL_MOUNT_NOSUID MS_NOSUID
5342 #endif
5343 #if !defined(PERL_MOUNT_NOSUID) && defined(M_NOSUID)
5344 #   define PERL_MOUNT_NOSUID M_NOSUID
5345 #endif
5346
5347 #if !defined(PERL_MOUNT_NOEXEC) && defined(MOUNT_NOEXEC)
5348 #    define PERL_MOUNT_NOEXEC MOUNT_NOEXEC
5349 #endif
5350 #if !defined(PERL_MOUNT_NOEXEC) && defined(MNT_NOEXEC)
5351 #    define PERL_MOUNT_NOEXEC MNT_NOEXEC
5352 #endif
5353 #if !defined(PERL_MOUNT_NOEXEC) && defined(MS_NOEXEC)
5354 #   define PERL_MOUNT_NOEXEC MS_NOEXEC
5355 #endif
5356 #if !defined(PERL_MOUNT_NOEXEC) && defined(M_NOEXEC)
5357 #   define PERL_MOUNT_NOEXEC M_NOEXEC
5358 #endif
5359
5360 #endif /* IAMSUID */
5361
5362 #ifdef I_LIBUTIL
5363 #   include <libutil.h>         /* setproctitle() in some FreeBSDs */
5364 #endif
5365
5366 #ifndef EXEC_ARGV_CAST
5367 #define EXEC_ARGV_CAST(x) x
5368 #endif
5369
5370 #define IS_NUMBER_IN_UV               0x01 /* number within UV range (maybe not
5371                                               int).  value returned in pointed-
5372                                               to UV */
5373 #define IS_NUMBER_GREATER_THAN_UV_MAX 0x02 /* pointed to UV undefined */
5374 #define IS_NUMBER_NOT_INT             0x04 /* saw . or E notation */
5375 #define IS_NUMBER_NEG                 0x08 /* leading minus sign */
5376 #define IS_NUMBER_INFINITY            0x10 /* this is big */
5377 #define IS_NUMBER_NAN                 0x20 /* this is not */
5378
5379 #define GROK_NUMERIC_RADIX(sp, send) grok_numeric_radix(sp, send)
5380
5381 /* Input flags: */
5382 #define PERL_SCAN_ALLOW_UNDERSCORES   0x01 /* grok_??? accept _ in numbers */
5383 #define PERL_SCAN_DISALLOW_PREFIX     0x02 /* grok_??? reject 0x in hex etc */
5384 #define PERL_SCAN_SILENT_ILLDIGIT     0x04 /* grok_??? not warn about illegal digits */
5385 /* Output flags: */
5386 #define PERL_SCAN_GREATER_THAN_UV_MAX 0x02 /* should this merge with above? */
5387
5388 /* to let user control profiling */
5389 #ifdef PERL_GPROF_CONTROL
5390 extern void moncontrol(int);
5391 #define PERL_GPROF_MONCONTROL(x) moncontrol(x)
5392 #else
5393 #define PERL_GPROF_MONCONTROL(x)
5394 #endif
5395
5396 #ifdef UNDER_CE
5397 #include "wince.h"
5398 #endif
5399
5400 /* ISO 6429 NEL - C1 control NExt Line */
5401 /* See http://www.unicode.org/unicode/reports/tr13/ */
5402 #ifdef EBCDIC   /* In EBCDIC NEL is just an alias for LF */
5403 #   if '^' == 95        /* CP 1047: MVS OpenEdition - OS/390 - z/OS */
5404 #       define NEXT_LINE_CHAR   0x15
5405 #   else                /* CDRA */
5406 #       define NEXT_LINE_CHAR   0x25
5407 #   endif
5408 #else
5409 #   define NEXT_LINE_CHAR       0x85
5410 #endif
5411
5412 /* The UTF-8 bytes of the Unicode LS and PS, U+2028 and U+2029 */
5413 #define UNICODE_LINE_SEPA_0     0xE2
5414 #define UNICODE_LINE_SEPA_1     0x80
5415 #define UNICODE_LINE_SEPA_2     0xA8
5416 #define UNICODE_PARA_SEPA_0     0xE2
5417 #define UNICODE_PARA_SEPA_1     0x80
5418 #define UNICODE_PARA_SEPA_2     0xA9
5419
5420 #ifndef PIPESOCK_MODE
5421 #  define PIPESOCK_MODE
5422 #endif
5423
5424 #ifndef SOCKET_OPEN_MODE
5425 #  define SOCKET_OPEN_MODE      PIPESOCK_MODE
5426 #endif
5427
5428 #ifndef PIPE_OPEN_MODE
5429 #  define PIPE_OPEN_MODE        PIPESOCK_MODE
5430 #endif
5431
5432 #define PERL_MAGIC_UTF8_CACHESIZE       2
5433
5434 #define PERL_UNICODE_STDIN_FLAG                 0x0001
5435 #define PERL_UNICODE_STDOUT_FLAG                0x0002
5436 #define PERL_UNICODE_STDERR_FLAG                0x0004
5437 #define PERL_UNICODE_IN_FLAG                    0x0008
5438 #define PERL_UNICODE_OUT_FLAG                   0x0010
5439 #define PERL_UNICODE_ARGV_FLAG                  0x0020
5440 #define PERL_UNICODE_LOCALE_FLAG                0x0040
5441 #define PERL_UNICODE_WIDESYSCALLS_FLAG          0x0080 /* for Sarathy */
5442
5443 #define PERL_UNICODE_STD_FLAG           \
5444         (PERL_UNICODE_STDIN_FLAG        | \
5445          PERL_UNICODE_STDOUT_FLAG       | \
5446          PERL_UNICODE_STDERR_FLAG)
5447
5448 #define PERL_UNICODE_INOUT_FLAG         \
5449         (PERL_UNICODE_IN_FLAG   | \
5450          PERL_UNICODE_OUT_FLAG)
5451
5452 #define PERL_UNICODE_DEFAULT_FLAGS      \
5453         (PERL_UNICODE_STD_FLAG          | \
5454          PERL_UNICODE_INOUT_FLAG        | \
5455          PERL_UNICODE_LOCALE_FLAG)
5456
5457 #define PERL_UNICODE_ALL_FLAGS                  0x00ff
5458
5459 #define PERL_UNICODE_STDIN                      'I'
5460 #define PERL_UNICODE_STDOUT                     'O'
5461 #define PERL_UNICODE_STDERR                     'E'
5462 #define PERL_UNICODE_STD                        'S'
5463 #define PERL_UNICODE_IN                         'i'
5464 #define PERL_UNICODE_OUT                        'o'
5465 #define PERL_UNICODE_INOUT                      'D'
5466 #define PERL_UNICODE_ARGV                       'A'
5467 #define PERL_UNICODE_LOCALE                     'L'
5468 #define PERL_UNICODE_WIDESYSCALLS               'W'
5469
5470 #define PERL_SIGNALS_UNSAFE_FLAG        0x0001
5471
5472 /* From sigaction(2) (FreeBSD man page):
5473  * | Signal routines normally execute with the signal that
5474  * | caused their invocation blocked, but other signals may
5475  * | yet occur.
5476  * Emulation of this behavior (from within Perl) is enabled
5477  * by defining PERL_BLOCK_SIGNALS.
5478  */
5479 #define PERL_BLOCK_SIGNALS
5480
5481 #if defined(HAS_SIGPROCMASK) && defined(PERL_BLOCK_SIGNALS)
5482 #   define PERL_BLOCKSIG_ADD(set,sig) \
5483         sigset_t set; sigemptyset(&(set)); sigaddset(&(set), sig)
5484 #   define PERL_BLOCKSIG_BLOCK(set) \
5485         sigprocmask(SIG_BLOCK, &(set), NULL)
5486 #   define PERL_BLOCKSIG_UNBLOCK(set) \
5487         sigprocmask(SIG_UNBLOCK, &(set), NULL)
5488 #endif /* HAS_SIGPROCMASK && PERL_BLOCK_SIGNALS */
5489
5490 /* How about the old style of sigblock()? */
5491
5492 #ifndef PERL_BLOCKSIG_ADD
5493 #   define PERL_BLOCKSIG_ADD(set, sig)  NOOP
5494 #endif
5495 #ifndef PERL_BLOCKSIG_BLOCK
5496 #   define PERL_BLOCKSIG_BLOCK(set)     NOOP
5497 #endif
5498 #ifndef PERL_BLOCKSIG_UNBLOCK
5499 #   define PERL_BLOCKSIG_UNBLOCK(set)   NOOP
5500 #endif
5501
5502 /* Use instead of abs() since abs() forces its argument to be an int,
5503  * but also beware since this evaluates its argument twice, so no x++. */
5504 #define PERL_ABS(x) ((x) < 0 ? -(x) : (x))
5505
5506 #if defined(__DECC) && defined(__osf__)
5507 #pragma message disable (mainparm) /* Perl uses the envp in main(). */
5508 #endif
5509
5510 #define do_open(g, n, l, a, rm, rp, sf) \
5511         do_openn(g, n, l, a, rm, rp, sf, (SV **) NULL, 0)
5512 #ifdef PERL_DEFAULT_DO_EXEC3_IMPLEMENTATION
5513 #  define do_exec(cmd)                  do_exec3(cmd,0,0)
5514 #endif
5515 #ifdef OS2
5516 #  define do_aexec                      Perl_do_aexec
5517 #else
5518 #  define do_aexec(really, mark,sp)     do_aexec5(really, mark, sp, 0, 0)
5519 #endif
5520
5521 /* and finally... */
5522 #define PERL_PATCHLEVEL_H_IMPLICIT
5523 #include "patchlevel.h"
5524 #undef PERL_PATCHLEVEL_H_IMPLICIT
5525
5526 /* Mention
5527
5528    NV_PRESERVES_UV
5529
5530    HAS_MKSTEMP
5531    HAS_MKSTEMPS
5532    HAS_MKDTEMP
5533
5534    HAS_GETCWD
5535
5536    HAS_MMAP
5537    HAS_MPROTECT
5538    HAS_MSYNC
5539    HAS_MADVISE
5540    HAS_MUNMAP
5541    I_SYSMMAN
5542    Mmap_t
5543
5544    NVef
5545    NVff
5546    NVgf
5547
5548    HAS_UALARM
5549    HAS_USLEEP
5550
5551    HAS_SETITIMER
5552    HAS_GETITIMER
5553
5554    HAS_SENDMSG
5555    HAS_RECVMSG
5556    HAS_READV
5557    HAS_WRITEV
5558    I_SYSUIO
5559    HAS_STRUCT_MSGHDR
5560    HAS_STRUCT_CMSGHDR
5561
5562    HAS_NL_LANGINFO
5563
5564    HAS_DIRFD
5565
5566    so that Configure picks them up. */
5567
5568 #endif /* Include guard */
5569