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