91e1b58647499947b8c2f6ba4640e349a63b4969
[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 #define my_snprintf  Perl_my_snprintf
1453 #define my_vsnprintf Perl_my_vsnprintf
1454
1455 /* Configure gets this right but the UTS compiler gets it wrong.
1456    -- Hal Morris <hom00@utsglobal.com> */
1457 #ifdef UTS
1458 #  undef  UVTYPE
1459 #  define UVTYPE unsigned
1460 #endif
1461
1462 /*
1463     The IV type is supposed to be long enough to hold any integral
1464     value or a pointer.
1465     --Andy Dougherty    August 1996
1466 */
1467
1468 typedef IVTYPE IV;
1469 typedef UVTYPE UV;
1470
1471 #if defined(USE_64_BIT_INT) && defined(HAS_QUAD)
1472 #  if QUADKIND == QUAD_IS_INT64_T && defined(INT64_MAX)
1473 #    define IV_MAX INT64_MAX
1474 #    define IV_MIN INT64_MIN
1475 #    define UV_MAX UINT64_MAX
1476 #    ifndef UINT64_MIN
1477 #      define UINT64_MIN 0
1478 #    endif
1479 #    define UV_MIN UINT64_MIN
1480 #  else
1481 #    define IV_MAX PERL_QUAD_MAX
1482 #    define IV_MIN PERL_QUAD_MIN
1483 #    define UV_MAX PERL_UQUAD_MAX
1484 #    define UV_MIN PERL_UQUAD_MIN
1485 #  endif
1486 #  define IV_IS_QUAD
1487 #  define UV_IS_QUAD
1488 #else
1489 #  if defined(INT32_MAX) && IVSIZE == 4
1490 #    define IV_MAX INT32_MAX
1491 #    define IV_MIN INT32_MIN
1492 #    ifndef UINT32_MAX_BROKEN /* e.g. HP-UX with gcc messes this up */
1493 #        define UV_MAX UINT32_MAX
1494 #    else
1495 #        define UV_MAX 4294967295U
1496 #    endif
1497 #    ifndef UINT32_MIN
1498 #      define UINT32_MIN 0
1499 #    endif
1500 #    define UV_MIN UINT32_MIN
1501 #  else
1502 #    define IV_MAX PERL_LONG_MAX
1503 #    define IV_MIN PERL_LONG_MIN
1504 #    define UV_MAX PERL_ULONG_MAX
1505 #    define UV_MIN PERL_ULONG_MIN
1506 #  endif
1507 #  if IVSIZE == 8
1508 #    define IV_IS_QUAD
1509 #    define UV_IS_QUAD
1510 #    ifndef HAS_QUAD
1511 #      define HAS_QUAD
1512 #    endif
1513 #  else
1514 #    undef IV_IS_QUAD
1515 #    undef UV_IS_QUAD
1516 #    undef HAS_QUAD
1517 #  endif
1518 #endif
1519
1520 #ifndef HAS_QUAD
1521 # undef PERL_NEED_MY_HTOLE64
1522 # undef PERL_NEED_MY_LETOH64
1523 # undef PERL_NEED_MY_HTOBE64
1524 # undef PERL_NEED_MY_BETOH64
1525 #endif
1526
1527 #if defined(uts) || defined(UTS)
1528 #       undef UV_MAX
1529 #       define UV_MAX (4294967295u)
1530 #endif
1531
1532 #define IV_DIG (BIT_DIGITS(IVSIZE * 8))
1533 #define UV_DIG (BIT_DIGITS(UVSIZE * 8))
1534
1535 #ifndef NO_PERL_PRESERVE_IVUV
1536 #define PERL_PRESERVE_IVUV      /* We like our integers to stay integers. */
1537 #endif
1538
1539 /*
1540  *  The macros INT2PTR and NUM2PTR are (despite their names)
1541  *  bi-directional: they will convert int/float to or from pointers.
1542  *  However the conversion to int/float are named explicitly:
1543  *  PTR2IV, PTR2UV, PTR2NV.
1544  *
1545  *  For int conversions we do not need two casts if pointers are
1546  *  the same size as IV and UV.   Otherwise we need an explicit
1547  *  cast (PTRV) to avoid compiler warnings.
1548  */
1549 #if (IVSIZE == PTRSIZE) && (UVSIZE == PTRSIZE)
1550 #  define PTRV                  UV
1551 #  define INT2PTR(any,d)        (any)(d)
1552 #else
1553 #  if PTRSIZE == LONGSIZE
1554 #    define PTRV                unsigned long
1555 #    define PTR2ul(p)           (unsigned long)(p)
1556 #  else
1557 #    define PTRV                unsigned
1558 #  endif
1559 #endif
1560
1561 #ifndef INT2PTR
1562 #  define INT2PTR(any,d)        (any)(PTRV)(d)
1563 #endif
1564
1565 #ifndef PTR2ul
1566 #  define PTR2ul(p)     INT2PTR(unsigned long,p)        
1567 #endif
1568
1569 #define NUM2PTR(any,d)  (any)(PTRV)(d)
1570 #define PTR2IV(p)       INT2PTR(IV,p)
1571 #define PTR2UV(p)       INT2PTR(UV,p)
1572 #define PTR2NV(p)       NUM2PTR(NV,p)
1573 #define PTR2nat(p)      (PTRV)(p)       /* pointer to integer of PTRSIZE */
1574
1575 /* According to strict ANSI C89 one cannot freely cast between
1576  * data pointers and function (code) pointers.  There are at least
1577  * two ways around this.  One (used below) is to do two casts,
1578  * first the other pointer to an (unsigned) integer, and then
1579  * the integer to the other pointer.  The other way would be
1580  * to use unions to "overlay" the pointers.  For an example of
1581  * the latter technique, see union dirpu in struct xpvio in sv.h.
1582  * The only feasible use is probably temporarily storing
1583  * function pointers in a data pointer (such as a void pointer). */
1584
1585 #define DPTR2FPTR(t,p) ((t)PTR2nat(p))  /* data pointer to function pointer */
1586 #define FPTR2DPTR(t,p) ((t)PTR2nat(p))  /* function pointer to data pointer */
1587
1588 #ifdef USE_LONG_DOUBLE
1589 #  if defined(HAS_LONG_DOUBLE) && LONG_DOUBLESIZE == DOUBLESIZE
1590 #      define LONG_DOUBLE_EQUALS_DOUBLE
1591 #  endif
1592 #  if !(defined(HAS_LONG_DOUBLE) && (LONG_DOUBLESIZE > DOUBLESIZE))
1593 #     undef USE_LONG_DOUBLE /* Ouch! */
1594 #  endif
1595 #endif
1596
1597 #ifdef OVR_DBL_DIG
1598 /* Use an overridden DBL_DIG */
1599 # ifdef DBL_DIG
1600 #  undef DBL_DIG
1601 # endif
1602 # define DBL_DIG OVR_DBL_DIG
1603 #else
1604 /* The following is all to get DBL_DIG, in order to pick a nice
1605    default value for printing floating point numbers in Gconvert
1606    (see config.h). (It also has other uses, such as figuring out if
1607    a given precision of printing can be done with a double instead of
1608    a long double - Allen).
1609 */
1610 #ifdef I_LIMITS
1611 #include <limits.h>
1612 #endif
1613 #ifdef I_FLOAT
1614 #include <float.h>
1615 #endif
1616 #ifndef HAS_DBL_DIG
1617 #define DBL_DIG 15   /* A guess that works lots of places */
1618 #endif
1619 #endif
1620 #ifdef I_FLOAT
1621 #include <float.h>
1622 #endif
1623 #ifndef HAS_DBL_DIG
1624 #define DBL_DIG 15   /* A guess that works lots of places */
1625 #endif
1626
1627 #ifdef OVR_LDBL_DIG
1628 /* Use an overridden LDBL_DIG */
1629 # ifdef LDBL_DIG
1630 #  undef LDBL_DIG
1631 # endif
1632 # define LDBL_DIG OVR_LDBL_DIG
1633 #else
1634 /* The following is all to get LDBL_DIG, in order to pick a nice
1635    default value for printing floating point numbers in Gconvert.
1636    (see config.h)
1637 */
1638 # ifdef I_LIMITS
1639 #   include <limits.h>
1640 # endif
1641 # ifdef I_FLOAT
1642 #  include <float.h>
1643 # endif
1644 # ifndef HAS_LDBL_DIG
1645 #  if LONG_DOUBLESIZE == 10
1646 #   define LDBL_DIG 18 /* assume IEEE */
1647 #  else
1648 #   if LONG_DOUBLESIZE == 12
1649 #    define LDBL_DIG 18 /* gcc? */
1650 #   else
1651 #    if LONG_DOUBLESIZE == 16
1652 #     define LDBL_DIG 33 /* assume IEEE */
1653 #    else
1654 #     if LONG_DOUBLESIZE == DOUBLESIZE
1655 #      define LDBL_DIG DBL_DIG /* bummer */
1656 #     endif
1657 #    endif
1658 #   endif
1659 #  endif
1660 # endif
1661 #endif
1662
1663 /*
1664  * This is for making sure we have a good DBL_MAX value, if possible,
1665  * either for usage as NV_MAX or for usage in figuring out if we can
1666  * fit a given long double into a double, if bug-fixing makes it
1667  * necessary to do so. - Allen <allens@cpan.org>
1668  */
1669
1670 #ifdef I_LIMITS
1671 #  include <limits.h>
1672 #endif
1673
1674 #ifdef I_VALUES
1675 #  if !(defined(DBL_MIN) && defined(DBL_MAX) && defined(I_LIMITS))
1676 #    include <values.h>
1677 #    if defined(MAXDOUBLE) && !defined(DBL_MAX)
1678 #      define DBL_MAX MAXDOUBLE
1679 #    endif
1680 #    if defined(MINDOUBLE) && !defined(DBL_MIN)
1681 #      define DBL_MIN MINDOUBLE
1682 #    endif
1683 #  endif
1684 #endif /* defined(I_VALUES) */
1685
1686 typedef NVTYPE NV;
1687
1688 #ifdef I_IEEEFP
1689 #   include <ieeefp.h>
1690 #endif
1691
1692 #ifdef USE_LONG_DOUBLE
1693 #   ifdef I_SUNMATH
1694 #       include <sunmath.h>
1695 #   endif
1696 #   define NV_DIG LDBL_DIG
1697 #   ifdef LDBL_MANT_DIG
1698 #       define NV_MANT_DIG LDBL_MANT_DIG
1699 #   endif
1700 #   ifdef LDBL_MIN
1701 #       define NV_MIN LDBL_MIN
1702 #   endif
1703 #   ifdef LDBL_MAX
1704 #       define NV_MAX LDBL_MAX
1705 #   endif
1706 #   ifdef LDBL_MIN_10_EXP
1707 #       define NV_MIN_10_EXP LDBL_MIN_10_EXP
1708 #   endif
1709 #   ifdef LDBL_MAX_10_EXP
1710 #       define NV_MAX_10_EXP LDBL_MAX_10_EXP
1711 #   endif
1712 #   ifdef LDBL_EPSILON
1713 #       define NV_EPSILON LDBL_EPSILON
1714 #   endif
1715 #   ifdef LDBL_MAX
1716 #       define NV_MAX LDBL_MAX
1717 /* Having LDBL_MAX doesn't necessarily mean that we have LDBL_MIN... -Allen */
1718 #   else
1719 #       ifdef HUGE_VALL
1720 #           define NV_MAX HUGE_VALL
1721 #       else
1722 #           ifdef HUGE_VAL
1723 #               define NV_MAX ((NV)HUGE_VAL)
1724 #           endif
1725 #       endif
1726 #   endif
1727 #   ifdef HAS_SQRTL
1728 #       define Perl_cos cosl
1729 #       define Perl_sin sinl
1730 #       define Perl_sqrt sqrtl
1731 #       define Perl_exp expl
1732 #       define Perl_log logl
1733 #       define Perl_atan2 atan2l
1734 #       define Perl_pow powl
1735 #       define Perl_floor floorl
1736 #       define Perl_ceil ceill
1737 #       define Perl_fmod fmodl
1738 #   endif
1739 /* e.g. libsunmath doesn't have modfl and frexpl as of mid-March 2000 */
1740 #   ifdef HAS_MODFL
1741 #       define Perl_modf(x,y) modfl(x,y)
1742 /* eg glibc 2.2 series seems to provide modfl on ppc and arm, but has no
1743    prototype in <math.h> */
1744 #       ifndef HAS_MODFL_PROTO
1745 EXTERN_C long double modfl(long double, long double *);
1746 #       endif
1747 #   else
1748 #       if defined(HAS_AINTL) && defined(HAS_COPYSIGNL)
1749         extern long double Perl_my_modfl(long double x, long double *ip);
1750 #           define Perl_modf(x,y) Perl_my_modfl(x,y)
1751 #       endif
1752 #   endif
1753 #   ifdef HAS_FREXPL
1754 #       define Perl_frexp(x,y) frexpl(x,y)
1755 #   else
1756 #       if defined(HAS_ILOGBL) && defined(HAS_SCALBNL)
1757         extern long double Perl_my_frexpl(long double x, int *e);
1758 #           define Perl_frexp(x,y) Perl_my_frexpl(x,y)
1759 #       endif
1760 #   endif
1761 #   ifndef Perl_isnan
1762 #       ifdef HAS_ISNANL
1763 #           define Perl_isnan(x) isnanl(x)
1764 #       endif
1765 #   endif
1766 #   ifndef Perl_isinf
1767 #       ifdef HAS_FINITEL
1768 #           define Perl_isinf(x) !(finitel(x)||Perl_isnan(x))
1769 #       endif
1770 #   endif
1771 #else
1772 #   define NV_DIG DBL_DIG
1773 #   ifdef DBL_MANT_DIG
1774 #       define NV_MANT_DIG DBL_MANT_DIG
1775 #   endif
1776 #   ifdef DBL_MIN
1777 #       define NV_MIN DBL_MIN
1778 #   endif
1779 #   ifdef DBL_MAX
1780 #       define NV_MAX DBL_MAX
1781 #   endif
1782 #   ifdef DBL_MIN_10_EXP
1783 #       define NV_MIN_10_EXP DBL_MIN_10_EXP
1784 #   endif
1785 #   ifdef DBL_MAX_10_EXP
1786 #       define NV_MAX_10_EXP DBL_MAX_10_EXP
1787 #   endif
1788 #   ifdef DBL_EPSILON
1789 #       define NV_EPSILON DBL_EPSILON
1790 #   endif
1791 #   ifdef DBL_MAX               /* XXX Does DBL_MAX imply having DBL_MIN? */
1792 #       define NV_MAX DBL_MAX
1793 #       define NV_MIN DBL_MIN
1794 #   else
1795 #       ifdef HUGE_VAL
1796 #           define NV_MAX HUGE_VAL
1797 #       endif
1798 #   endif
1799 #   define Perl_cos cos
1800 #   define Perl_sin sin
1801 #   define Perl_sqrt sqrt
1802 #   define Perl_exp exp
1803 #   define Perl_log log
1804 #   define Perl_atan2 atan2
1805 #   define Perl_pow pow
1806 #   define Perl_floor floor
1807 #   define Perl_ceil ceil
1808 #   define Perl_fmod fmod
1809 #   define Perl_modf(x,y) modf(x,y)
1810 #   define Perl_frexp(x,y) frexp(x,y)
1811 #endif
1812
1813 /* rumor has it that Win32 has _fpclass() */
1814
1815 /* SGI has fpclassl... but not with the same result values,
1816  * and it's via a typedef (not via #define), so will need to redo Configure
1817  * to use. Not worth the trouble, IMO, at least until the below is used
1818  * more places. Also has fp_class_l, BTW, via fp_class.h. Feel free to check
1819  * with me for the SGI manpages, SGI testing, etcetera, if you want to
1820  * try getting this to work with IRIX. - Allen <allens@cpan.org> */
1821
1822 #if !defined(Perl_fp_class) && (defined(HAS_FPCLASS)||defined(HAS_FPCLASSL))
1823 #    ifdef I_IEEFP
1824 #        include <ieeefp.h>
1825 #    endif
1826 #    ifdef I_FP
1827 #        include <fp.h>
1828 #    endif
1829 #    if defined(USE_LONG_DOUBLE) && defined(HAS_FPCLASSL)
1830 #        define Perl_fp_class()         fpclassl(x)
1831 #    else
1832 #        define Perl_fp_class()         fpclass(x)
1833 #    endif
1834 #    define Perl_fp_class_snan(x)       (Perl_fp_class(x)==FP_CLASS_SNAN)
1835 #    define Perl_fp_class_qnan(x)       (Perl_fp_class(x)==FP_CLASS_QNAN)
1836 #    define Perl_fp_class_nan(x)        (Perl_fp_class(x)==FP_CLASS_SNAN||Perl_fp_class(x)==FP_CLASS_QNAN)
1837 #    define Perl_fp_class_ninf(x)       (Perl_fp_class(x)==FP_CLASS_NINF)
1838 #    define Perl_fp_class_pinf(x)       (Perl_fp_class(x)==FP_CLASS_PINF)
1839 #    define Perl_fp_class_inf(x)        (Perl_fp_class(x)==FP_CLASS_NINF||Perl_fp_class(x)==FP_CLASS_PINF)
1840 #    define Perl_fp_class_nnorm(x)      (Perl_fp_class(x)==FP_CLASS_NNORM)
1841 #    define Perl_fp_class_pnorm(x)      (Perl_fp_class(x)==FP_CLASS_PNORM)
1842 #    define Perl_fp_class_norm(x)       (Perl_fp_class(x)==FP_CLASS_NNORM||Perl_fp_class(x)==FP_CLASS_PNORM)
1843 #    define Perl_fp_class_ndenorm(x)    (Perl_fp_class(x)==FP_CLASS_NDENORM)
1844 #    define Perl_fp_class_pdenorm(x)    (Perl_fp_class(x)==FP_CLASS_PDENORM)
1845 #    define Perl_fp_class_denorm(x)     (Perl_fp_class(x)==FP_CLASS_NDENORM||Perl_fp_class(x)==FP_CLASS_PDENORM)
1846 #    define Perl_fp_class_nzero(x)      (Perl_fp_class(x)==FP_CLASS_NZERO)
1847 #    define Perl_fp_class_pzero(x)      (Perl_fp_class(x)==FP_CLASS_PZERO)
1848 #    define Perl_fp_class_zero(x)       (Perl_fp_class(x)==FP_CLASS_NZERO||Perl_fp_class(x)==FP_CLASS_PZERO)
1849 #endif
1850
1851 #if !defined(Perl_fp_class) && defined(HAS_FP_CLASS) && !defined(PERL_MICRO)
1852 #    include <math.h>
1853 #    if !defined(FP_SNAN) && defined(I_FP_CLASS)
1854 #        include <fp_class.h>
1855 #    endif
1856 #    define Perl_fp_class(x)            fp_class(x)
1857 #    define Perl_fp_class_snan(x)       (fp_class(x)==FP_SNAN)
1858 #    define Perl_fp_class_qnan(x)       (fp_class(x)==FP_QNAN)
1859 #    define Perl_fp_class_nan(x)        (fp_class(x)==FP_SNAN||fp_class(x)==FP_QNAN)
1860 #    define Perl_fp_class_ninf(x)       (fp_class(x)==FP_NEG_INF)
1861 #    define Perl_fp_class_pinf(x)       (fp_class(x)==FP_POS_INF)
1862 #    define Perl_fp_class_inf(x)        (fp_class(x)==FP_NEG_INF||fp_class(x)==FP_POS_INF)
1863 #    define Perl_fp_class_nnorm(x)      (fp_class(x)==FP_NEG_NORM)
1864 #    define Perl_fp_class_pnorm(x)      (fp_class(x)==FP_POS_NORM)
1865 #    define Perl_fp_class_norm(x)       (fp_class(x)==FP_NEG_NORM||fp_class(x)==FP_POS_NORM)
1866 #    define Perl_fp_class_ndenorm(x)    (fp_class(x)==FP_NEG_DENORM)
1867 #    define Perl_fp_class_pdenorm(x)    (fp_class(x)==FP_POS_DENORM)
1868 #    define Perl_fp_class_denorm(x)     (fp_class(x)==FP_NEG_DENORM||fp_class(x)==FP_POS_DENORM)
1869 #    define Perl_fp_class_nzero(x)      (fp_class(x)==FP_NEG_ZERO)
1870 #    define Perl_fp_class_pzero(x)      (fp_class(x)==FP_POS_ZERO)
1871 #    define Perl_fp_class_zero(x)       (fp_class(x)==FP_NEG_ZERO||fp_class(x)==FP_POS_ZERO)
1872 #endif
1873
1874 #if !defined(Perl_fp_class) && defined(HAS_FPCLASSIFY)
1875 #    include <math.h>
1876 #    define Perl_fp_class(x)            fpclassify(x)
1877 #    define Perl_fp_class_nan(x)        (fp_classify(x)==FP_SNAN||fp_classify(x)==FP_QNAN)
1878 #    define Perl_fp_class_inf(x)        (fp_classify(x)==FP_INFINITE)
1879 #    define Perl_fp_class_norm(x)       (fp_classify(x)==FP_NORMAL)
1880 #    define Perl_fp_class_denorm(x)     (fp_classify(x)==FP_SUBNORMAL)
1881 #    define Perl_fp_class_zero(x)       (fp_classify(x)==FP_ZERO)
1882 #endif
1883
1884 #if !defined(Perl_fp_class) && defined(HAS_CLASS)
1885 #    include <math.h>
1886 #    ifndef _cplusplus
1887 #        define Perl_fp_class(x)        class(x)
1888 #    else
1889 #        define Perl_fp_class(x)        _class(x)
1890 #    endif
1891 #    define Perl_fp_class_snan(x)       (Perl_fp_class(x)==FP_NANS)
1892 #    define Perl_fp_class_qnan(x)       (Perl_fp_class(x)==FP_NANQ)
1893 #    define Perl_fp_class_nan(x)        (Perl_fp_class(x)==FP_SNAN||Perl_fp_class(x)==FP_QNAN)
1894 #    define Perl_fp_class_ninf(x)       (Perl_fp_class(x)==FP_MINUS_INF)
1895 #    define Perl_fp_class_pinf(x)       (Perl_fp_class(x)==FP_PLUS_INF)
1896 #    define Perl_fp_class_inf(x)        (Perl_fp_class(x)==FP_MINUS_INF||Perl_fp_class(x)==FP_PLUS_INF)
1897 #    define Perl_fp_class_nnorm(x)      (Perl_fp_class(x)==FP_MINUS_NORM)
1898 #    define Perl_fp_class_pnorm(x)      (Perl_fp_class(x)==FP_PLUS_NORM)
1899 #    define Perl_fp_class_norm(x)       (Perl_fp_class(x)==FP_MINUS_NORM||Perl_fp_class(x)==FP_PLUS_NORM)
1900 #    define Perl_fp_class_ndenorm(x)    (Perl_fp_class(x)==FP_MINUS_DENORM)
1901 #    define Perl_fp_class_pdenorm(x)    (Perl_fp_class(x)==FP_PLUS_DENORM)
1902 #    define Perl_fp_class_denorm(x)     (Perl_fp_class(x)==FP_MINUS_DENORM||Perl_fp_class(x)==FP_PLUS_DENORM)
1903 #    define Perl_fp_class_nzero(x)      (Perl_fp_class(x)==FP_MINUS_ZERO)
1904 #    define Perl_fp_class_pzero(x)      (Perl_fp_class(x)==FP_PLUS_ZERO)
1905 #    define Perl_fp_class_zero(x)       (Perl_fp_class(x)==FP_MINUS_ZERO||Perl_fp_class(x)==FP_PLUS_ZERO)
1906 #endif
1907
1908 /* rumor has it that Win32 has _isnan() */
1909
1910 #ifndef Perl_isnan
1911 #   ifdef HAS_ISNAN
1912 #       define Perl_isnan(x) isnan((NV)x)
1913 #   else
1914 #       ifdef Perl_fp_class_nan
1915 #           define Perl_isnan(x) Perl_fp_class_nan(x)
1916 #       else
1917 #           ifdef HAS_UNORDERED
1918 #               define Perl_isnan(x) unordered((x), 0.0)
1919 #           else
1920 #               define Perl_isnan(x) ((x)!=(x))
1921 #           endif
1922 #       endif
1923 #   endif
1924 #endif
1925
1926 #ifdef UNDER_CE
1927 int isnan(double d);
1928 #endif
1929
1930 #ifndef Perl_isinf
1931 #   ifdef HAS_ISINF
1932 #       define Perl_isinf(x) isinf((NV)x)
1933 #   else
1934 #       ifdef Perl_fp_class_inf
1935 #           define Perl_isinf(x) Perl_fp_class_inf(x)
1936 #       else
1937 #           define Perl_isinf(x) ((x)==NV_INF)
1938 #       endif
1939 #   endif
1940 #endif
1941
1942 #ifndef Perl_isfinite
1943 #   ifdef HAS_FINITE
1944 #       define Perl_isfinite(x) finite((NV)x)
1945 #   else
1946 #       ifdef HAS_ISFINITE
1947 #           define Perl_isfinite(x) isfinite(x)
1948 #       else
1949 #           ifdef Perl_fp_class_finite
1950 #               define Perl_isfinite(x) Perl_fp_class_finite(x)
1951 #           else
1952 #               define Perl_isfinite(x) !(Perl_is_inf(x)||Perl_is_nan(x))
1953 #           endif
1954 #       endif
1955 #   endif
1956 #endif
1957
1958 /* The default is to use Perl's own atof() implementation (in numeric.c).
1959  * Usually that is the one to use but for some platforms (e.g. UNICOS)
1960  * it is however best to use the native implementation of atof.
1961  * You can experiment with using your native one by -DUSE_PERL_ATOF=0.
1962  * Some good tests to try out with either setting are t/base/num.t,
1963  * t/op/numconvert.t, and t/op/pack.t. Note that if using long doubles
1964  * you may need to be using a different function than atof! */
1965
1966 #ifndef USE_PERL_ATOF
1967 #   ifndef _UNICOS
1968 #       define USE_PERL_ATOF
1969 #   endif
1970 #else
1971 #   if USE_PERL_ATOF == 0
1972 #       undef USE_PERL_ATOF
1973 #   endif
1974 #endif
1975
1976 #ifdef USE_PERL_ATOF
1977 #   define Perl_atof(s) Perl_my_atof(s)
1978 #   define Perl_atof2(s, n) Perl_my_atof2(aTHX_ (s), &(n))
1979 #else
1980 #   define Perl_atof(s) (NV)atof(s)
1981 #   define Perl_atof2(s, n) ((n) = atof(s))
1982 #endif
1983
1984 /* Previously these definitions used hardcoded figures.
1985  * It is hoped these formula are more portable, although
1986  * no data one way or another is presently known to me.
1987  * The "PERL_" names are used because these calculated constants
1988  * do not meet the ANSI requirements for LONG_MAX, etc., which
1989  * need to be constants acceptable to #if - kja
1990  *    define PERL_LONG_MAX        2147483647L
1991  *    define PERL_LONG_MIN        (-LONG_MAX - 1)
1992  *    define PERL ULONG_MAX       4294967295L
1993  */
1994
1995 #ifdef I_LIMITS  /* Needed for cast_xxx() functions below. */
1996 #  include <limits.h>
1997 #endif
1998 /* Included values.h above if necessary; still including limits.h down here,
1999  * despite doing above, because math.h might have overriden... XXX - Allen */
2000
2001 /*
2002  * Try to figure out max and min values for the integral types.  THE CORRECT
2003  * SOLUTION TO THIS MESS: ADAPT enquire.c FROM GCC INTO CONFIGURE.  The
2004  * following hacks are used if neither limits.h or values.h provide them:
2005  * U<TYPE>_MAX: for types >= int: ~(unsigned TYPE)0
2006  *              for types <  int:  (unsigned TYPE)~(unsigned)0
2007  *      The argument to ~ must be unsigned so that later signed->unsigned
2008  *      conversion can't modify the value's bit pattern (e.g. -0 -> +0),
2009  *      and it must not be smaller than int because ~ does integral promotion.
2010  * <type>_MAX: (<type>) (U<type>_MAX >> 1)
2011  * <type>_MIN: -<type>_MAX - <is_twos_complement_architecture: (3 & -1) == 3>.
2012  *      The latter is a hack which happens to work on some machines but
2013  *      does *not* catch any random system, or things like integer types
2014  *      with NaN if that is possible.
2015  *
2016  * All of the types are explicitly cast to prevent accidental loss of
2017  * numeric range, and in the hope that they will be less likely to confuse
2018  * over-eager optimizers.
2019  *
2020  */
2021
2022 #define PERL_UCHAR_MIN ((unsigned char)0)
2023
2024 #ifdef UCHAR_MAX
2025 #  define PERL_UCHAR_MAX ((unsigned char)UCHAR_MAX)
2026 #else
2027 #  ifdef MAXUCHAR
2028 #    define PERL_UCHAR_MAX ((unsigned char)MAXUCHAR)
2029 #  else
2030 #    define PERL_UCHAR_MAX       ((unsigned char)~(unsigned)0)
2031 #  endif
2032 #endif
2033
2034 /*
2035  * CHAR_MIN and CHAR_MAX are not included here, as the (char) type may be
2036  * ambiguous. It may be equivalent to (signed char) or (unsigned char)
2037  * depending on local options. Until Configure detects this (or at least
2038  * detects whether the "signed" keyword is available) the CHAR ranges
2039  * will not be included. UCHAR functions normally.
2040  *                                                           - kja
2041  */
2042
2043 #define PERL_USHORT_MIN ((unsigned short)0)
2044
2045 #ifdef USHORT_MAX
2046 #  define PERL_USHORT_MAX ((unsigned short)USHORT_MAX)
2047 #else
2048 #  ifdef MAXUSHORT
2049 #    define PERL_USHORT_MAX ((unsigned short)MAXUSHORT)
2050 #  else
2051 #    ifdef USHRT_MAX
2052 #      define PERL_USHORT_MAX ((unsigned short)USHRT_MAX)
2053 #    else
2054 #      define PERL_USHORT_MAX       ((unsigned short)~(unsigned)0)
2055 #    endif
2056 #  endif
2057 #endif
2058
2059 #ifdef SHORT_MAX
2060 #  define PERL_SHORT_MAX ((short)SHORT_MAX)
2061 #else
2062 #  ifdef MAXSHORT    /* Often used in <values.h> */
2063 #    define PERL_SHORT_MAX ((short)MAXSHORT)
2064 #  else
2065 #    ifdef SHRT_MAX
2066 #      define PERL_SHORT_MAX ((short)SHRT_MAX)
2067 #    else
2068 #      define PERL_SHORT_MAX      ((short) (PERL_USHORT_MAX >> 1))
2069 #    endif
2070 #  endif
2071 #endif
2072
2073 #ifdef SHORT_MIN
2074 #  define PERL_SHORT_MIN ((short)SHORT_MIN)
2075 #else
2076 #  ifdef MINSHORT
2077 #    define PERL_SHORT_MIN ((short)MINSHORT)
2078 #  else
2079 #    ifdef SHRT_MIN
2080 #      define PERL_SHORT_MIN ((short)SHRT_MIN)
2081 #    else
2082 #      define PERL_SHORT_MIN        (-PERL_SHORT_MAX - ((3 & -1) == 3))
2083 #    endif
2084 #  endif
2085 #endif
2086
2087 #ifdef UINT_MAX
2088 #  define PERL_UINT_MAX ((unsigned int)UINT_MAX)
2089 #else
2090 #  ifdef MAXUINT
2091 #    define PERL_UINT_MAX ((unsigned int)MAXUINT)
2092 #  else
2093 #    define PERL_UINT_MAX       (~(unsigned int)0)
2094 #  endif
2095 #endif
2096
2097 #define PERL_UINT_MIN ((unsigned int)0)
2098
2099 #ifdef INT_MAX
2100 #  define PERL_INT_MAX ((int)INT_MAX)
2101 #else
2102 #  ifdef MAXINT    /* Often used in <values.h> */
2103 #    define PERL_INT_MAX ((int)MAXINT)
2104 #  else
2105 #    define PERL_INT_MAX        ((int)(PERL_UINT_MAX >> 1))
2106 #  endif
2107 #endif
2108
2109 #ifdef INT_MIN
2110 #  define PERL_INT_MIN ((int)INT_MIN)
2111 #else
2112 #  ifdef MININT
2113 #    define PERL_INT_MIN ((int)MININT)
2114 #  else
2115 #    define PERL_INT_MIN        (-PERL_INT_MAX - ((3 & -1) == 3))
2116 #  endif
2117 #endif
2118
2119 #ifdef ULONG_MAX
2120 #  define PERL_ULONG_MAX ((unsigned long)ULONG_MAX)
2121 #else
2122 #  ifdef MAXULONG
2123 #    define PERL_ULONG_MAX ((unsigned long)MAXULONG)
2124 #  else
2125 #    define PERL_ULONG_MAX       (~(unsigned long)0)
2126 #  endif
2127 #endif
2128
2129 #define PERL_ULONG_MIN ((unsigned long)0L)
2130
2131 #ifdef LONG_MAX
2132 #  define PERL_LONG_MAX ((long)LONG_MAX)
2133 #else
2134 #  ifdef MAXLONG    /* Often used in <values.h> */
2135 #    define PERL_LONG_MAX ((long)MAXLONG)
2136 #  else
2137 #    define PERL_LONG_MAX        ((long) (PERL_ULONG_MAX >> 1))
2138 #  endif
2139 #endif
2140
2141 #ifdef LONG_MIN
2142 #  define PERL_LONG_MIN ((long)LONG_MIN)
2143 #else
2144 #  ifdef MINLONG
2145 #    define PERL_LONG_MIN ((long)MINLONG)
2146 #  else
2147 #    define PERL_LONG_MIN        (-PERL_LONG_MAX - ((3 & -1) == 3))
2148 #  endif
2149 #endif
2150
2151 #ifdef UV_IS_QUAD
2152
2153 #    define PERL_UQUAD_MAX      (~(UV)0)
2154 #    define PERL_UQUAD_MIN      ((UV)0)
2155 #    define PERL_QUAD_MAX       ((IV) (PERL_UQUAD_MAX >> 1))
2156 #    define PERL_QUAD_MIN       (-PERL_QUAD_MAX - ((3 & -1) == 3))
2157
2158 #endif
2159
2160 #ifdef MYMALLOC
2161 #  include "malloc_ctl.h"
2162 #endif
2163
2164 struct RExC_state_t;
2165
2166 typedef MEM_SIZE STRLEN;
2167
2168 #ifdef PERL_MAD
2169 typedef struct token TOKEN;
2170 typedef struct madprop MADPROP;
2171 typedef struct nexttoken NEXTTOKE;
2172 #endif
2173 typedef struct op OP;
2174 typedef struct cop COP;
2175 typedef struct unop UNOP;
2176 typedef struct binop BINOP;
2177 typedef struct listop LISTOP;
2178 typedef struct logop LOGOP;
2179 typedef struct pmop PMOP;
2180 typedef struct svop SVOP;
2181 typedef struct padop PADOP;
2182 typedef struct pvop PVOP;
2183 typedef struct loop LOOP;
2184
2185 typedef struct interpreter PerlInterpreter;
2186
2187 /* Amdahl's <ksync.h> has struct sv */
2188 /* SGI's <sys/sema.h> has struct sv */
2189 #if defined(UTS) || defined(__sgi)
2190 #   define STRUCT_SV perl_sv
2191 #else
2192 #   define STRUCT_SV sv
2193 #endif
2194 typedef struct STRUCT_SV SV;
2195 typedef struct av AV;
2196 typedef struct hv HV;
2197 typedef struct cv CV;
2198 typedef struct regexp REGEXP;
2199 typedef struct gp GP;
2200 typedef struct gv GV;
2201 typedef struct io IO;
2202 typedef struct context PERL_CONTEXT;
2203 typedef struct block BLOCK;
2204
2205 typedef struct magic MAGIC;
2206 typedef struct xpv XPV;
2207 typedef struct xpviv XPVIV;
2208 typedef struct xpvuv XPVUV;
2209 typedef struct xpvnv XPVNV;
2210 typedef struct xpvmg XPVMG;
2211 typedef struct xpvlv XPVLV;
2212 typedef struct xpvav XPVAV;
2213 typedef struct xpvhv XPVHV;
2214 typedef struct xpvgv XPVGV;
2215 typedef struct xpvcv XPVCV;
2216 typedef struct xpvbm XPVBM;
2217 typedef struct xpvfm XPVFM;
2218 typedef struct xpvio XPVIO;
2219 typedef struct mgvtbl MGVTBL;
2220 typedef union any ANY;
2221 typedef struct ptr_tbl_ent PTR_TBL_ENT_t;
2222 typedef struct ptr_tbl PTR_TBL_t;
2223 typedef struct clone_params CLONE_PARAMS;
2224
2225 #include "handy.h"
2226
2227 #if defined(USE_LARGE_FILES) && !defined(NO_64_BIT_RAWIO)
2228 #   if LSEEKSIZE == 8 && !defined(USE_64_BIT_RAWIO)
2229 #       define USE_64_BIT_RAWIO /* implicit */
2230 #   endif
2231 #endif
2232
2233 /* Notice the use of HAS_FSEEKO: now we are obligated to always use
2234  * fseeko/ftello if possible.  Don't go #defining ftell to ftello yourself,
2235  * however, because operating systems like to do that themself. */
2236 #ifndef FSEEKSIZE
2237 #   ifdef HAS_FSEEKO
2238 #       define FSEEKSIZE LSEEKSIZE
2239 #   else
2240 #       define FSEEKSIZE LONGSIZE
2241 #   endif
2242 #endif
2243
2244 #if defined(USE_LARGE_FILES) && !defined(NO_64_BIT_STDIO)
2245 #   if FSEEKSIZE == 8 && !defined(USE_64_BIT_STDIO)
2246 #       define USE_64_BIT_STDIO /* implicit */
2247 #   endif
2248 #endif
2249
2250 #ifdef USE_64_BIT_RAWIO
2251 #   ifdef HAS_OFF64_T
2252 #       undef Off_t
2253 #       define Off_t off64_t
2254 #       undef LSEEKSIZE
2255 #       define LSEEKSIZE 8
2256 #   endif
2257 /* Most 64-bit environments have defines like _LARGEFILE_SOURCE that
2258  * will trigger defines like the ones below.  Some 64-bit environments,
2259  * however, do not.  Therefore we have to explicitly mix and match. */
2260 #   if defined(USE_OPEN64)
2261 #       define open open64
2262 #   endif
2263 #   if defined(USE_LSEEK64)
2264 #       define lseek lseek64
2265 #   else
2266 #       if defined(USE_LLSEEK)
2267 #           define lseek llseek
2268 #       endif
2269 #   endif
2270 #   if defined(USE_STAT64)
2271 #       define stat stat64
2272 #   endif
2273 #   if defined(USE_FSTAT64)
2274 #       define fstat fstat64
2275 #   endif
2276 #   if defined(USE_LSTAT64)
2277 #       define lstat lstat64
2278 #   endif
2279 #   if defined(USE_FLOCK64)
2280 #       define flock flock64
2281 #   endif
2282 #   if defined(USE_LOCKF64)
2283 #       define lockf lockf64
2284 #   endif
2285 #   if defined(USE_FCNTL64)
2286 #       define fcntl fcntl64
2287 #   endif
2288 #   if defined(USE_TRUNCATE64)
2289 #       define truncate truncate64
2290 #   endif
2291 #   if defined(USE_FTRUNCATE64)
2292 #       define ftruncate ftruncate64
2293 #   endif
2294 #endif
2295
2296 #ifdef USE_64_BIT_STDIO
2297 #   ifdef HAS_FPOS64_T
2298 #       undef Fpos_t
2299 #       define Fpos_t fpos64_t
2300 #   endif
2301 /* Most 64-bit environments have defines like _LARGEFILE_SOURCE that
2302  * will trigger defines like the ones below.  Some 64-bit environments,
2303  * however, do not. */
2304 #   if defined(USE_FOPEN64)
2305 #       define fopen fopen64
2306 #   endif
2307 #   if defined(USE_FSEEK64)
2308 #       define fseek fseek64 /* don't do fseeko here, see perlio.c */
2309 #   endif
2310 #   if defined(USE_FTELL64)
2311 #       define ftell ftell64 /* don't do ftello here, see perlio.c */
2312 #   endif
2313 #   if defined(USE_FSETPOS64)
2314 #       define fsetpos fsetpos64
2315 #   endif
2316 #   if defined(USE_FGETPOS64)
2317 #       define fgetpos fgetpos64
2318 #   endif
2319 #   if defined(USE_TMPFILE64)
2320 #       define tmpfile tmpfile64
2321 #   endif
2322 #   if defined(USE_FREOPEN64)
2323 #       define freopen freopen64
2324 #   endif
2325 #endif
2326
2327 #if defined(OS2) || defined(MACOS_TRADITIONAL)
2328 #  include "iperlsys.h"
2329 #endif
2330
2331 #if defined(__OPEN_VM)
2332 #   include "vmesa/vmesaish.h"
2333 #   define ISHISH "vmesa"
2334 #endif
2335
2336 #ifdef DOSISH
2337 #   if defined(OS2)
2338 #       include "os2ish.h"
2339 #   else
2340 #       include "dosish.h"
2341 #   endif
2342 #   define ISHISH "dos"
2343 #endif
2344
2345 #if defined(VMS)
2346 #   include "vmsish.h"
2347 #   include "embed.h"
2348 #  ifndef PERL_MAD
2349 #    undef op_getmad
2350 #    define op_getmad(arg,pegop,slot) NOOP
2351 #  endif
2352 #   define ISHISH "vms"
2353 #endif
2354
2355 #if defined(PLAN9)
2356 #   include "./plan9/plan9ish.h"
2357 #   define ISHISH "plan9"
2358 #endif
2359
2360 #if defined(MPE)
2361 #  include "mpeix/mpeixish.h"
2362 #  define ISHISH "mpeix"
2363 #endif
2364
2365 #if defined(__VOS__)
2366 #   ifdef __GNUC__
2367 #     include "./vos/vosish.h"
2368 #   else
2369 #     include "vos/vosish.h"
2370 #   endif
2371 #   define ISHISH "vos"
2372 #endif
2373
2374 #if defined(EPOC)
2375 #   include "epocish.h"
2376 #   define ISHISH "epoc"
2377 #endif
2378
2379 #ifdef __SYMBIAN32__
2380 #   include "symbian/symbianish.h"
2381 #   include "embed.h"
2382 #  ifndef PERL_MAD
2383 #    undef op_getmad
2384 #    define op_getmad(arg,pegop,slot) NOOP
2385 #  endif
2386 #   define ISHISH "symbian"
2387 #endif
2388
2389 #if defined(MACOS_TRADITIONAL)
2390 #   include "macos/macish.h"
2391 #   ifndef NO_ENVIRON_ARRAY
2392 #       define NO_ENVIRON_ARRAY
2393 #   endif
2394 #   define ISHISH "macos classic"
2395 #endif
2396
2397 #if defined(__BEOS__)
2398 #   include "beos/beosish.h"
2399 #   define ISHISH "beos"
2400 #endif
2401
2402 #ifndef ISHISH
2403 #   include "unixish.h"
2404 #   define ISHISH "unix"
2405 #endif
2406
2407 /* NSIG logic from Configure --> */
2408 /* Strange style to avoid deeply-nested #if/#else/#endif */
2409 #ifndef NSIG
2410 #  ifdef _NSIG
2411 #    define NSIG (_NSIG)
2412 #  endif
2413 #endif
2414
2415 #ifndef NSIG
2416 #  ifdef SIGMAX
2417 #    define NSIG (SIGMAX+1)
2418 #  endif
2419 #endif
2420
2421 #ifndef NSIG
2422 #  ifdef SIG_MAX
2423 #    define NSIG (SIG_MAX+1)
2424 #  endif
2425 #endif
2426
2427 #ifndef NSIG
2428 #  ifdef _SIG_MAX
2429 #    define NSIG (_SIG_MAX+1)
2430 #  endif
2431 #endif
2432
2433 #ifndef NSIG
2434 #  ifdef MAXSIG
2435 #    define NSIG (MAXSIG+1)
2436 #  endif
2437 #endif
2438
2439 #ifndef NSIG
2440 #  ifdef MAX_SIG
2441 #    define NSIG (MAX_SIG+1)
2442 #  endif
2443 #endif
2444
2445 #ifndef NSIG
2446 #  ifdef SIGARRAYSIZE
2447 #    define NSIG SIGARRAYSIZE /* Assume ary[SIGARRAYSIZE] */
2448 #  endif
2449 #endif
2450
2451 #ifndef NSIG
2452 #  ifdef _sys_nsig
2453 #    define NSIG (_sys_nsig) /* Solaris 2.5 */
2454 #  endif
2455 #endif
2456
2457 /* Default to some arbitrary number that's big enough to get most
2458    of the common signals.
2459 */
2460 #ifndef NSIG
2461 #    define NSIG 50
2462 #endif
2463 /* <-- NSIG logic from Configure */
2464
2465 #ifndef NO_ENVIRON_ARRAY
2466 #  define USE_ENVIRON_ARRAY
2467 #endif
2468
2469 /*
2470  * initialise to avoid floating-point exceptions from overflow, etc
2471  */
2472 #ifndef PERL_FPU_INIT
2473 #  ifdef HAS_FPSETMASK
2474 #    if HAS_FLOATINGPOINT_H
2475 #      include <floatingpoint.h>
2476 #    endif
2477 #    define PERL_FPU_INIT fpsetmask(0);
2478 #  else
2479 #    if defined(SIGFPE) && defined(SIG_IGN) && !defined(PERL_MICRO)
2480 #      define PERL_FPU_INIT       PL_sigfpe_saved = (Sighandler_t) signal(SIGFPE, SIG_IGN);
2481 #      define PERL_FPU_PRE_EXEC   { Sigsave_t xfpe; rsignal_save(SIGFPE, PL_sigfpe_saved, &xfpe);
2482 #      define PERL_FPU_POST_EXEC    rsignal_restore(SIGFPE, &xfpe); }
2483 #    else
2484 #      define PERL_FPU_INIT
2485
2486 #    endif
2487 #  endif
2488 #endif
2489 #ifndef PERL_FPU_PRE_EXEC
2490 #  define PERL_FPU_PRE_EXEC   {
2491 #  define PERL_FPU_POST_EXEC  }
2492 #endif
2493
2494 #ifndef PERL_SYS_INIT3
2495 #  define PERL_SYS_INIT3(argvp,argcp,envp) PERL_SYS_INIT(argvp,argcp)
2496 #endif
2497
2498 #ifndef PERL_WRITE_MSG_TO_CONSOLE
2499 #  define PERL_WRITE_MSG_TO_CONSOLE(io, msg, len) PerlIO_write(io, msg, len)
2500 #endif
2501
2502 #ifndef MAXPATHLEN
2503 #  ifdef PATH_MAX
2504 #    ifdef _POSIX_PATH_MAX
2505 #       if PATH_MAX > _POSIX_PATH_MAX
2506 /* POSIX 1990 (and pre) was ambiguous about whether PATH_MAX
2507  * included the null byte or not.  Later amendments of POSIX,
2508  * XPG4, the Austin Group, and the Single UNIX Specification
2509  * all explicitly include the null byte in the PATH_MAX.
2510  * Ditto for _POSIX_PATH_MAX. */
2511 #         define MAXPATHLEN PATH_MAX
2512 #       else
2513 #         define MAXPATHLEN _POSIX_PATH_MAX
2514 #       endif
2515 #    else
2516 #      define MAXPATHLEN (PATH_MAX+1)
2517 #    endif
2518 #  else
2519 #    ifdef _POSIX_PATH_MAX
2520 #       define MAXPATHLEN _POSIX_PATH_MAX
2521 #    else
2522 #       define MAXPATHLEN 1024  /* Err on the large side. */
2523 #    endif
2524 #  endif
2525 #endif
2526
2527 /* In case Configure was not used (we are using a "canned config"
2528  * such as Win32, or a cross-compilation setup, for example) try going
2529  * by the gcc major and minor versions.  One useful URL is
2530  * http://www.ohse.de/uwe/articles/gcc-attributes.html,
2531  * but contrary to this information warn_unused_result seems
2532  * not to be in gcc 3.3.5, at least. --jhi
2533  * Set these up now otherwise we get confused when some of the <*thread.h>
2534  * includes below indirectly pull in <perlio.h> (which needs to know if we
2535  * have HASATTRIBUTE_FORMAT).
2536  */
2537
2538 #if defined __GNUC__ && !defined(__INTEL_COMPILER)
2539 #  if __GNUC__ >= 3 /* 3.0 -> */ /* XXX Verify this version */
2540 #    define HASATTRIBUTE_FORMAT
2541 #  endif
2542 #  if __GNUC__ >= 3 /* 3.0 -> */
2543 #    define HASATTRIBUTE_MALLOC
2544 #  endif
2545 #  if __GNUC__ == 3 && __GNUC_MINOR__ >= 3 || __GNUC__ > 3 /* 3.3 -> */
2546 #    define HASATTRIBUTE_NONNULL
2547 #  endif
2548 #  if __GNUC__ == 2 && __GNUC_MINOR__ >= 5 || __GNUC__ > 2 /* 2.5 -> */
2549 #    define HASATTRIBUTE_NORETURN
2550 #  endif
2551 #  if __GNUC__ >= 3 /* gcc 3.0 -> */
2552 #    define HASATTRIBUTE_PURE
2553 #  endif
2554 #  if __GNUC__ >= 3 /* gcc 3.0 -> */ /* XXX Verify this version */
2555 #    define HASATTRIBUTE_UNUSED
2556 #  endif
2557 #  if __GNUC__ == 3 && __GNUC_MINOR__ >= 4 || __GNUC__ > 3 /* 3.4 -> */
2558 #    define HASATTRIBUTE_WARN_UNUSED_RESULT
2559 #  endif
2560 #endif
2561
2562 /* USE_5005THREADS needs to be after unixish.h as <pthread.h> includes
2563  * <sys/signal.h> which defines NSIG - which will stop inclusion of <signal.h>
2564  * this results in many functions being undeclared which bothers C++
2565  * May make sense to have threads after "*ish.h" anyway
2566  */
2567
2568 #if defined(USE_ITHREADS)
2569 #  ifdef NETWARE
2570 #   include <nw5thread.h>
2571 #  else
2572 #  ifdef FAKE_THREADS
2573 #    include "fakethr.h"
2574 #  else
2575 #    ifdef WIN32
2576 #      include <win32thread.h>
2577 #    else
2578 #      ifdef OS2
2579 #        include "os2thread.h"
2580 #      else
2581 #        ifdef I_MACH_CTHREADS
2582 #          include <mach/cthreads.h>
2583 #          if (defined(NeXT) || defined(__NeXT__)) && defined(PERL_POLLUTE_MALLOC)
2584 #            define MUTEX_INIT_CALLS_MALLOC
2585 #          endif
2586 typedef cthread_t       perl_os_thread;
2587 typedef mutex_t         perl_mutex;
2588 typedef condition_t     perl_cond;
2589 typedef void *          perl_key;
2590 #        else /* Posix threads */
2591 #          ifdef I_PTHREAD
2592 #            include <pthread.h>
2593 #          endif
2594 typedef pthread_t       perl_os_thread;
2595 typedef pthread_mutex_t perl_mutex;
2596 typedef pthread_cond_t  perl_cond;
2597 typedef pthread_key_t   perl_key;
2598 #        endif /* I_MACH_CTHREADS */
2599 #      endif /* OS2 */
2600 #    endif /* WIN32 */
2601 #  endif /* FAKE_THREADS */
2602 #endif  /* NETWARE */
2603 #endif /* USE_ITHREADS */
2604
2605 #if defined(WIN32)
2606 #  include "win32.h"
2607 #endif
2608
2609 #ifdef NETWARE
2610 #  include "netware.h"
2611 #endif
2612
2613 #define STATUS_UNIX     PL_statusvalue
2614 #ifdef VMS
2615 #   define STATUS_NATIVE        PL_statusvalue_vms
2616 /*
2617  * vaxc$errno is only guaranteed to be valid if errno == EVMSERR, otherwise
2618  * its contents can not be trusted.  Unfortunately, Perl seems to check
2619  * it on exit, so it when PL_statusvalue_vms is updated, vaxc$errno should
2620  * be updated also.
2621  */
2622 #  include <stsdef.h>
2623 #  include <ssdef.h>
2624 /* Presume this because if VMS changes it, it will require a new
2625  * set of APIs for waiting on children for binary compatibility.
2626  */
2627 #  define child_offset_bits (8)
2628 #  ifndef C_FAC_POSIX
2629 #  define C_FAC_POSIX 0x35A000
2630 #  endif
2631
2632 /*  STATUS_EXIT - validates and returns a NATIVE exit status code for the
2633  * platform from the existing UNIX or Native status values.
2634  */
2635
2636 #   define STATUS_EXIT \
2637         (((I32)PL_statusvalue_vms == -1 ? SS$_ABORT : PL_statusvalue_vms) | \
2638            (VMSISH_HUSHED ? STS$M_INHIB_MSG : 0))
2639
2640
2641 /* STATUS_NATIVE_CHILD_SET - Calculate UNIX status that matches the child
2642  * exit code and shifts the UNIX value over the correct number of bits to
2643  * be a child status.  Usually the number of bits is 8, but that could be
2644  * platform dependent.  The NATIVE status code is presumed to have either
2645  * from a child process.
2646  */
2647
2648 /* This is complicated.  The child processes return a true native VMS
2649    status which must be saved.  But there is an assumption in Perl that
2650    the UNIX child status has some relationship to errno values, so
2651    Perl tries to translate it to text in some of the tests.  
2652    In order to get the string translation correct, for the error, errno
2653    must be EVMSERR, but that generates a different text message
2654    than what the test programs are expecting.  So an errno value must
2655    be derived from the native status value when an error occurs.
2656    That will hide the true native status message.  With this version of
2657    perl, the true native child status can always be retrieved so that
2658    is not a problem.  But in this case, Pl_statusvalue and errno may
2659    have different values in them.
2660  */
2661
2662 #   define STATUS_NATIVE_CHILD_SET(n) \
2663         STMT_START {                                                    \
2664             I32 evalue = (I32)n;                                        \
2665             if (evalue == EVMSERR) {                                    \
2666               PL_statusvalue_vms = vaxc$errno;                          \
2667               PL_statusvalue = evalue;                                  \
2668             } else {                                                    \
2669               PL_statusvalue_vms = evalue;                              \
2670               if (evalue == -1) {                                       \
2671                 PL_statusvalue = -1;                                    \
2672                 PL_statusvalue_vms = SS$_ABORT; /* Should not happen */ \
2673               } else                                                    \
2674                 PL_statusvalue = Perl_vms_status_to_unix(evalue, 1);    \
2675               set_vaxc_errno(evalue);                                   \
2676               if ((PL_statusvalue_vms & C_FAC_POSIX) == C_FAC_POSIX)    \
2677                   set_errno(EVMSERR);                                   \
2678               else set_errno(Perl_vms_status_to_unix(evalue, 0));       \
2679               PL_statusvalue = PL_statusvalue << child_offset_bits;     \
2680             }                                                           \
2681         } STMT_END
2682
2683 #   ifdef VMSISH_STATUS
2684 #       define STATUS_CURRENT   (VMSISH_STATUS ? STATUS_NATIVE : STATUS_UNIX)
2685 #   else
2686 #       define STATUS_CURRENT   STATUS_UNIX
2687 #   endif
2688
2689   /* STATUS_UNIX_SET - takes a UNIX/POSIX errno value and attempts to update
2690    * the NATIVE status to an equivalent value.  Can not be used to translate
2691    * exit code values as exit code values are not guaranteed to have any
2692    * relationship at all to errno values.
2693    * This is used when Perl is forcing errno to have a specific value.
2694    */
2695 #   define STATUS_UNIX_SET(n)                           \
2696         STMT_START {                                    \
2697             I32 evalue = (I32)n;                        \
2698             PL_statusvalue = evalue;                    \
2699             if (PL_statusvalue != -1) {                 \
2700                 if (PL_statusvalue != EVMSERR) {        \
2701                   PL_statusvalue &= 0xFFFF;             \
2702                   if (MY_POSIX_EXIT)                    \
2703                     PL_statusvalue_vms=PL_statusvalue ? SS$_ABORT : SS$_NORMAL;\
2704                   else PL_statusvalue_vms = Perl_unix_status_to_vms(evalue); \
2705                 }                                       \
2706                 else {                                  \
2707                   PL_statusvalue_vms = vaxc$errno;      \
2708                 }                                       \
2709             }                                           \
2710             else PL_statusvalue_vms = SS$_ABORT;        \
2711             set_vaxc_errno(PL_statusvalue_vms);         \
2712         } STMT_END
2713
2714   /* STATUS_UNIX_EXIT_SET - Takes a UNIX/POSIX exit code and sets
2715    * the NATIVE error status based on it.  It does not assume that
2716    * the UNIX/POSIX exit codes have any relationship to errno, except
2717    * that 0 indicates a success.  When in the default mode to comply
2718    * with the Perl VMS documentation, any other code sets the NATIVE
2719    * status to a failure code of SS$_ABORT.
2720    *
2721    * In the new POSIX EXIT mode, native status will be set so that the
2722    * actual exit code will can be retrieved by the calling program or
2723    * shell.
2724    *
2725    * If the exit code is not clearly a UNIX parent or child exit status,
2726    * it will be passed through as a VMS status.
2727    */
2728
2729 #   define STATUS_UNIX_EXIT_SET(n)                      \
2730         STMT_START {                                    \
2731             I32 evalue = (I32)n;                        \
2732             PL_statusvalue = evalue;                    \
2733             if (evalue != -1) {                         \
2734               if (evalue <= 0xFF00) {                   \
2735                 if (evalue > 0xFF)                      \
2736                   evalue = (evalue >> child_offset_bits) & 0xFF; \
2737                 if (evalue == 0)                        \
2738                   PL_statusvalue_vms == SS$_NORMAL;     \
2739                 else                                    \
2740                   if (MY_POSIX_EXIT)                    \
2741                     PL_statusvalue_vms =        \
2742                        (C_FAC_POSIX | (evalue << 3 ) | (evalue == 1)? \
2743                         (STS$K_ERROR | STS$M_INHIB_MSG) : 1); \
2744                   else                                  \
2745                     PL_statusvalue_vms = SS$_ABORT; \
2746               } else { /* forgive them Perl, for they have sinned */ \
2747                 if (evalue != EVMSERR) PL_statusvalue_vms = evalue; \
2748                 else PL_statusvalue_vms = vaxc$errno;           \
2749                 /* And obviously used a VMS status value instead of UNIX */ \
2750                 PL_statusvalue = EVMSERR;                               \
2751               }                                                 \
2752             }                                                   \
2753             else PL_statusvalue_vms = SS$_ABORT;                \
2754             set_vaxc_errno(PL_statusvalue_vms);                 \
2755         } STMT_END
2756
2757   /* STATUS_EXIT_SET - Takes a NATIVE/UNIX/POSIX exit code
2758    * and sets the NATIVE error status based on it.  This special case
2759    * is needed to maintain compatibility with past VMS behavior.
2760    *
2761    * In the default mode on VMS, this number is passed through as
2762    * both the NATIVE and UNIX status.  Which makes it different
2763    * that the STATUS_UNIX_EXIT_SET.
2764    *
2765    * In the new POSIX EXIT mode, native status will be set so that the
2766    * actual exit code will can be retrieved by the calling program or
2767    * shell.
2768    *
2769    */
2770
2771 #   define STATUS_EXIT_SET(n)                           \
2772         STMT_START {                                    \
2773             I32 evalue = (I32)n;                        \
2774             PL_statusvalue = evalue;                    \
2775             if (MY_POSIX_EXIT)                          \
2776                 PL_statusvalue_vms =                    \
2777                   (C_FAC_POSIX | (evalue << 3 ) | (evalue == 1)? \
2778                    (STS$K_ERROR | STS$M_INHIB_MSG) : 1); \
2779             else                                        \
2780                 PL_statusvalue_vms = evalue ? evalue : SS$_NORMAL; \
2781             set_vaxc_errno(PL_statusvalue_vms);         \
2782         } STMT_END
2783
2784
2785  /* This macro forces a success status */
2786 #   define STATUS_ALL_SUCCESS   \
2787         (PL_statusvalue = 0, PL_statusvalue_vms = SS$_NORMAL)
2788
2789  /* This macro forces a failure status */
2790 #   define STATUS_ALL_FAILURE   (PL_statusvalue = 1, \
2791      vaxc$errno = PL_statusvalue_vms = MY_POSIX_EXIT ? \
2792         (C_FAC_POSIX | (1 << 3) | STS$K_ERROR | STS$M_INHIB_MSG) : SS$_ABORT)
2793
2794 #else
2795 #   define STATUS_NATIVE        PL_statusvalue_posix
2796 #   if defined(WCOREDUMP)
2797 #       define STATUS_NATIVE_CHILD_SET(n)                  \
2798             STMT_START {                                   \
2799                 PL_statusvalue_posix = (n);                \
2800                 if (PL_statusvalue_posix == -1)            \
2801                     PL_statusvalue = -1;                   \
2802                 else {                                     \
2803                     PL_statusvalue =                       \
2804                         (WIFEXITED(PL_statusvalue_posix) ? (WEXITSTATUS(PL_statusvalue_posix) << 8) : 0) |  \
2805                         (WIFSIGNALED(PL_statusvalue_posix) ? (WTERMSIG(PL_statusvalue_posix) & 0x7F) : 0) | \
2806                         (WIFSIGNALED(PL_statusvalue_posix) && WCOREDUMP(PL_statusvalue_posix) ? 0x80 : 0);  \
2807                 }                                          \
2808             } STMT_END
2809 #   elif defined(WIFEXITED)
2810 #       define STATUS_NATIVE_CHILD_SET(n)                  \
2811             STMT_START {                                   \
2812                 PL_statusvalue_posix = (n);                \
2813                 if (PL_statusvalue_posix == -1)            \
2814                     PL_statusvalue = -1;                   \
2815                 else {                                     \
2816                     PL_statusvalue =                       \
2817                         (WIFEXITED(PL_statusvalue_posix) ? (WEXITSTATUS(PL_statusvalue_posix) << 8) : 0) |  \
2818                         (WIFSIGNALED(PL_statusvalue_posix) ? (WTERMSIG(PL_statusvalue_posix) & 0x7F) : 0);  \
2819                 }                                          \
2820             } STMT_END
2821 #   else
2822 #       define STATUS_NATIVE_CHILD_SET(n)                  \
2823             STMT_START {                                   \
2824                 PL_statusvalue_posix = (n);                \
2825                 if (PL_statusvalue_posix == -1)            \
2826                     PL_statusvalue = -1;                   \
2827                 else {                                     \
2828                     PL_statusvalue =                       \
2829                         PL_statusvalue_posix & 0xFFFF;     \
2830                 }                                          \
2831             } STMT_END
2832 #   endif
2833 #   define STATUS_UNIX_SET(n)           \
2834         STMT_START {                    \
2835             PL_statusvalue = (n);               \
2836             if (PL_statusvalue != -1)   \
2837                 PL_statusvalue &= 0xFFFF;       \
2838         } STMT_END
2839 #   define STATUS_UNIX_EXIT_SET(n) STATUS_UNIX_SET(n)
2840 #   define STATUS_EXIT_SET(n) STATUS_UNIX_SET(n)
2841 #   define STATUS_CURRENT STATUS_UNIX
2842 #   define STATUS_EXIT STATUS_UNIX
2843 #   define STATUS_ALL_SUCCESS   (PL_statusvalue = 0, PL_statusvalue_posix = 0)
2844 #   define STATUS_ALL_FAILURE   (PL_statusvalue = 1, PL_statusvalue_posix = 1)
2845 #endif
2846
2847 /* flags in PL_exit_flags for nature of exit() */
2848 #define PERL_EXIT_EXPECTED      0x01
2849 #define PERL_EXIT_DESTRUCT_END  0x02  /* Run END in perl_destruct */
2850
2851 #ifndef MEMBER_TO_FPTR
2852 #  define MEMBER_TO_FPTR(name)          name
2853 #endif
2854
2855 /* format to use for version numbers in file/directory names */
2856 /* XXX move to Configure? */
2857 #ifndef PERL_FS_VER_FMT
2858 #  define PERL_FS_VER_FMT       "%d.%d.%d"
2859 #endif
2860
2861 /* This defines a way to flush all output buffers.  This may be a
2862  * performance issue, so we allow people to disable it.  Also, if
2863  * we are using stdio, there are broken implementations of fflush(NULL)
2864  * out there, Solaris being the most prominent.
2865  */
2866 #ifndef PERL_FLUSHALL_FOR_CHILD
2867 # if defined(USE_PERLIO) || defined(FFLUSH_NULL) || defined(USE_SFIO)
2868 #  define PERL_FLUSHALL_FOR_CHILD       PerlIO_flush((PerlIO*)NULL)
2869 # else
2870 #  ifdef FFLUSH_ALL
2871 #   define PERL_FLUSHALL_FOR_CHILD      my_fflush_all()
2872 #  else
2873 #   define PERL_FLUSHALL_FOR_CHILD      NOOP
2874 #  endif
2875 # endif
2876 #endif
2877
2878 #ifndef PERL_WAIT_FOR_CHILDREN
2879 #  define PERL_WAIT_FOR_CHILDREN        NOOP
2880 #endif
2881
2882 /* the traditional thread-unsafe notion of "current interpreter". */
2883 #ifndef PERL_SET_INTERP
2884 #  define PERL_SET_INTERP(i)            (PL_curinterp = (PerlInterpreter*)(i))
2885 #endif
2886
2887 #ifndef PERL_GET_INTERP
2888 #  define PERL_GET_INTERP               (PL_curinterp)
2889 #endif
2890
2891 #if defined(PERL_IMPLICIT_CONTEXT) && !defined(PERL_GET_THX)
2892 #  ifdef MULTIPLICITY
2893 #    define PERL_GET_THX                ((PerlInterpreter *)PERL_GET_CONTEXT)
2894 #  endif
2895 #  define PERL_SET_THX(t)               PERL_SET_CONTEXT(t)
2896 #endif
2897
2898 /* 
2899     This replaces the previous %_ "hack" by the "%p" hacks.
2900     All that is required is that the perl source does not
2901     use "%-p" or "%-<number>p" or "%<number>p" formats.  
2902     These formats will still work in perl code.   
2903     See comments in sv.c for futher details.
2904
2905         -DvdNUMBER=<number> can be used to redefine VDf
2906
2907         -DvdNUMBER=0 reverts VDf to "vd", as in perl5.8.7,
2908             which works properly but gives compiler warnings
2909
2910     Robin Barker 2005-07-14
2911 */
2912
2913 #ifndef SVf_
2914 #  define SVf_(n) "-" STRINGIFY(n) "p"
2915 #endif
2916
2917 #ifndef SVf
2918 #  define SVf "-p"
2919 #endif
2920
2921 #ifndef SVf32
2922 #  define SVf32 SVf_(32)
2923 #endif
2924
2925 #ifndef SVf256
2926 #  define SVf256 SVf_(256)
2927 #endif
2928
2929 #ifndef vdNUMBER
2930 #  define vdNUMBER 1
2931 #endif
2932  
2933 #ifndef VDf
2934 #  if vdNUMBER 
2935 #    define VDf STRINGIFY(vdNUMBER) "p"
2936 #  else
2937 #    define VDf "vd"
2938 #  endif
2939 #endif
2940  
2941 #ifndef UVf
2942 #  define UVf UVuf
2943 #endif
2944
2945 #ifdef HASATTRIBUTE_FORMAT
2946 #  define __attribute__format__(x,y,z)      __attribute__((format(x,y,z)))
2947 #endif
2948 #ifdef HASATTRIBUTE_MALLOC
2949 #  define __attribute__malloc__             __attribute__((__malloc__))
2950 #endif
2951 #ifdef HASATTRIBUTE_NONNULL
2952 #  define __attribute__nonnull__(a)         __attribute__((nonnull(a)))
2953 #endif
2954 #ifdef HASATTRIBUTE_NORETURN
2955 #  define __attribute__noreturn__           __attribute__((noreturn))
2956 #endif
2957 #ifdef HASATTRIBUTE_PURE
2958 #  define __attribute__pure__               __attribute__((pure))
2959 #endif
2960 #ifdef HASATTRIBUTE_UNUSED
2961 #  define __attribute__unused__             __attribute__((unused))
2962 #endif
2963 #ifdef HASATTRIBUTE_WARN_UNUSED_RESULT
2964 #  define __attribute__warn_unused_result__ __attribute__((warn_unused_result))
2965 #endif
2966
2967 /* If we haven't defined the attributes yet, define them to blank. */
2968 #ifndef __attribute__format__
2969 #  define __attribute__format__(x,y,z)
2970 #endif
2971 #ifndef __attribute__malloc__
2972 #  define __attribute__malloc__
2973 #endif
2974 #ifndef __attribute__nonnull__
2975 #  define __attribute__nonnull__(a)
2976 #endif
2977 #ifndef __attribute__noreturn__
2978 #  define __attribute__noreturn__
2979 #endif
2980 #ifndef __attribute__pure__
2981 #  define __attribute__pure__
2982 #endif
2983 #ifndef __attribute__unused__
2984 #  define __attribute__unused__
2985 #endif
2986 #ifndef __attribute__warn_unused_result__
2987 #  define __attribute__warn_unused_result__
2988 #endif
2989
2990 /* For functions that are marked as __attribute__noreturn__, it's not
2991    appropriate to call return.  In either case, include the lint directive.
2992  */
2993 #ifdef HASATTRIBUTE_NORETURN
2994 #  define NORETURN_FUNCTION_END /* NOTREACHED */
2995 #else
2996 #  define NORETURN_FUNCTION_END /* NOTREACHED */ return 0
2997 #endif
2998
2999 #ifdef HAS_BUILTIN_EXPECT
3000 #  define EXPECT(expr,val)                  __builtin_expect(expr,val)
3001 #else
3002 #  define EXPECT(expr,val)                  (expr)
3003 #endif
3004 #define LIKELY(cond)                        EXPECT(cond,1)
3005 #define UNLIKELY(cond)                      EXPECT(cond,0)
3006 #ifdef HAS_BUILTIN_CHOOSE_EXPR
3007 /* placeholder */
3008 #endif
3009
3010 /* Some unistd.h's give a prototype for pause() even though
3011    HAS_PAUSE ends up undefined.  This causes the #define
3012    below to be rejected by the compiler.  Sigh.
3013 */
3014 #ifdef HAS_PAUSE
3015 #define Pause   pause
3016 #else
3017 #define Pause() sleep((32767<<16)+32767)
3018 #endif
3019
3020 #ifndef IOCPARM_LEN
3021 #   ifdef IOCPARM_MASK
3022         /* on BSDish systems we're safe */
3023 #       define IOCPARM_LEN(x)  (((x) >> 16) & IOCPARM_MASK)
3024 #   else
3025 #       if defined(_IOC_SIZE) && defined(__GLIBC__)
3026         /* on Linux systems we're safe; except when we're not [perl #38223] */
3027 #           define IOCPARM_LEN(x) (_IOC_SIZE(x) < 256 ? 256 : _IOC_SIZE(x))
3028 #       else
3029         /* otherwise guess at what's safe */
3030 #           define IOCPARM_LEN(x)       256
3031 #       endif
3032 #   endif
3033 #endif
3034
3035 #if defined(__CYGWIN__)
3036 /* USEMYBINMODE
3037  *   This symbol, if defined, indicates that the program should
3038  *   use the routine my_binmode(FILE *fp, char iotype, int mode) to insure
3039  *   that a file is in "binary" mode -- that is, that no translation
3040  *   of bytes occurs on read or write operations.
3041  */
3042 #  define USEMYBINMODE /**/
3043 #  include <io.h> /* for setmode() prototype */
3044 #  define my_binmode(fp, iotype, mode) \
3045             (PerlLIO_setmode(fileno(fp), mode) != -1 ? TRUE : FALSE)
3046 #endif
3047
3048 #ifdef __CYGWIN__
3049 void init_os_extras(void);
3050 #endif
3051
3052 #ifdef UNION_ANY_DEFINITION
3053 UNION_ANY_DEFINITION;
3054 #else
3055 union any {
3056     void*       any_ptr;
3057     I32         any_i32;
3058     IV          any_iv;
3059     long        any_long;
3060     bool        any_bool;
3061     void        (*any_dptr) (void*);
3062     void        (*any_dxptr) (pTHX_ void*);
3063 };
3064 #endif
3065
3066 typedef I32 (*filter_t) (pTHX_ int, SV *, int);
3067
3068 #define FILTER_READ(idx, sv, len)  filter_read(idx, sv, len)
3069 #define FILTER_DATA(idx)           (AvARRAY(PL_rsfp_filters)[idx])
3070 #define FILTER_ISREADER(idx)       (idx >= AvFILLp(PL_rsfp_filters))
3071
3072 #if defined(_AIX) && !defined(_AIX43)
3073 #if defined(USE_REENTRANT) || defined(_REENTRANT) || defined(_THREAD_SAFE)
3074 /* We cannot include <crypt.h> to get the struct crypt_data
3075  * because of setkey prototype problems when threading */
3076 typedef        struct crypt_data {     /* straight from /usr/include/crypt.h */
3077     /* From OSF, Not needed in AIX
3078        char C[28], D[28];
3079     */
3080     char E[48];
3081     char KS[16][48];
3082     char block[66];
3083     char iobuf[16];
3084 } CRYPTD;
3085 #endif /* threading */
3086 #endif /* AIX */
3087
3088 #if !defined(OS2) && !defined(MACOS_TRADITIONAL)
3089 #  include "iperlsys.h"
3090 #endif
3091
3092 /* [perl #22371] Algorimic Complexity Attack on Perl 5.6.1, 5.8.0.
3093  * Note that the USE_HASH_SEED and USE_HASH_SEED_EXPLICIT are *NOT*
3094  * defined by Configure, despite their names being similar to the
3095  * other defines like USE_ITHREADS.  Configure in fact knows nothing
3096  * about the randomised hashes.  Therefore to enable/disable the hash
3097  * randomisation defines use the Configure -Accflags=... instead. */
3098 #if !defined(NO_HASH_SEED) && !defined(USE_HASH_SEED) && !defined(USE_HASH_SEED_EXPLICIT)
3099 #  define USE_HASH_SEED
3100 #endif
3101
3102 /* Win32 defines a type 'WORD' in windef.h. This conflicts with the enumerator
3103  * 'WORD' defined in perly.h. The yytokentype enum is only a debugging aid, so
3104  * it's not really needed.
3105  */
3106 #if defined(WIN32)
3107 #  define YYTOKENTYPE
3108 #endif
3109 #include "perly.h"
3110
3111 #ifdef PERL_MAD
3112 struct nexttoken {
3113     YYSTYPE next_val;   /* value of next token, if any */
3114     I32 next_type;      /* type of next token */
3115     MADPROP *next_mad;  /* everything else about that token */
3116 };
3117 #endif
3118
3119 #include "regexp.h"
3120 #include "sv.h"
3121 #include "util.h"
3122 #include "form.h"
3123 #include "gv.h"
3124 #include "pad.h"
3125 #include "cv.h"
3126 #include "opnames.h"
3127 #include "op.h"
3128 #include "hv.h"
3129 #include "cop.h"
3130 #include "av.h"
3131 #include "mg.h"
3132 #include "scope.h"
3133 #include "warnings.h"
3134 #include "utf8.h"
3135
3136
3137 typedef struct _sublex_info SUBLEXINFO;
3138 struct _sublex_info {
3139     I32 super_state;    /* lexer state to save */
3140     I32 sub_inwhat;     /* "lex_inwhat" to use */
3141     OP *sub_op;         /* "lex_op" to use */
3142     char *super_bufptr; /* PL_bufptr that was */
3143     char *super_bufend; /* PL_bufend that was */
3144 };
3145
3146 typedef struct magic_state MGS; /* struct magic_state defined in mg.c */
3147
3148 struct scan_data_t;             /* Used in S_* functions in regcomp.c */
3149 struct regnode_charclass_class; /* Used in S_* functions in regcomp.c */
3150
3151 /* Keep next first in this structure, because sv_free_arenas take
3152    advantage of this to share code between the pte arenas and the SV
3153    body arenas  */
3154 struct ptr_tbl_ent {
3155     struct ptr_tbl_ent*         next;
3156     const void*                 oldval;
3157     void*                       newval;
3158 };
3159
3160 struct ptr_tbl {
3161     struct ptr_tbl_ent**        tbl_ary;
3162     UV                          tbl_max;
3163     UV                          tbl_items;
3164 };
3165
3166 #if defined(iAPX286) || defined(M_I286) || defined(I80286)
3167 #   define I286
3168 #endif
3169
3170 #if defined(htonl) && !defined(HAS_HTONL)
3171 #define HAS_HTONL
3172 #endif
3173 #if defined(htons) && !defined(HAS_HTONS)
3174 #define HAS_HTONS
3175 #endif
3176 #if defined(ntohl) && !defined(HAS_NTOHL)
3177 #define HAS_NTOHL
3178 #endif
3179 #if defined(ntohs) && !defined(HAS_NTOHS)
3180 #define HAS_NTOHS
3181 #endif
3182 #ifndef HAS_HTONL
3183 #if (BYTEORDER & 0xffff) != 0x4321
3184 #define HAS_HTONS
3185 #define HAS_HTONL
3186 #define HAS_NTOHS
3187 #define HAS_NTOHL
3188 #define MYSWAP
3189 #define htons my_swap
3190 #define htonl my_htonl
3191 #define ntohs my_swap
3192 #define ntohl my_ntohl
3193 #endif
3194 #else
3195 #if (BYTEORDER & 0xffff) == 0x4321
3196 #undef HAS_HTONS
3197 #undef HAS_HTONL
3198 #undef HAS_NTOHS
3199 #undef HAS_NTOHL
3200 #endif
3201 #endif
3202
3203 /*
3204  * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
3205  * -DWS
3206  */
3207 #if BYTEORDER != 0x1234
3208 # define HAS_VTOHL
3209 # define HAS_VTOHS
3210 # define HAS_HTOVL
3211 # define HAS_HTOVS
3212 # if BYTEORDER == 0x4321 || BYTEORDER == 0x87654321
3213 #  define vtohl(x)      ((((x)&0xFF)<<24)       \
3214                         +(((x)>>24)&0xFF)       \
3215                         +(((x)&0x0000FF00)<<8)  \
3216                         +(((x)&0x00FF0000)>>8)  )
3217 #  define vtohs(x)      ((((x)&0xFF)<<8) + (((x)>>8)&0xFF))
3218 #  define htovl(x)      vtohl(x)
3219 #  define htovs(x)      vtohs(x)
3220 # endif
3221         /* otherwise default to functions in util.c */
3222 #ifndef htovs
3223 short htovs(short n);
3224 short vtohs(short n);
3225 long htovl(long n);
3226 long vtohl(long n);
3227 #endif
3228 #endif
3229
3230 /* *MAX Plus 1. A floating point value.
3231    Hopefully expressed in a way that dodgy floating point can't mess up.
3232    >> 2 rather than 1, so that value is safely less than I32_MAX after 1
3233    is added to it
3234    May find that some broken compiler will want the value cast to I32.
3235    [after the shift, as signed >> may not be as secure as unsigned >>]
3236 */
3237 #define I32_MAX_P1 (2.0 * (1 + (((U32)I32_MAX) >> 1)))
3238 #define U32_MAX_P1 (4.0 * (1 + ((U32_MAX) >> 2)))
3239 /* For compilers that can't correctly cast NVs over 0x7FFFFFFF (or
3240    0x7FFFFFFFFFFFFFFF) to an unsigned integer. In the future, sizeof(UV)
3241    may be greater than sizeof(IV), so don't assume that half max UV is max IV.
3242 */
3243 #define U32_MAX_P1_HALF (2.0 * (1 + ((U32_MAX) >> 2)))
3244
3245 #define UV_MAX_P1 (4.0 * (1 + ((UV_MAX) >> 2)))
3246 #define IV_MAX_P1 (2.0 * (1 + (((UV)IV_MAX) >> 1)))
3247 #define UV_MAX_P1_HALF (2.0 * (1 + ((UV_MAX) >> 2)))
3248
3249 /* This may look like unnecessary jumping through hoops, but converting
3250    out of range floating point values to integers *is* undefined behaviour,
3251    and it is starting to bite.
3252 */
3253 #ifndef CAST_INLINE
3254 #define I_32(what) (cast_i32((NV)(what)))
3255 #define U_32(what) (cast_ulong((NV)(what)))
3256 #define I_V(what) (cast_iv((NV)(what)))
3257 #define U_V(what) (cast_uv((NV)(what)))
3258 #else
3259 #define I_32(n) ((n) < I32_MAX_P1 ? ((n) < I32_MIN ? I32_MIN : (I32) (n)) \
3260                   : ((n) < U32_MAX_P1 ? (I32)(U32) (n) \
3261                      : ((n) > 0 ? (I32) U32_MAX : 0 /* NaN */)))
3262 #define U_32(n) ((n) < 0.0 ? ((n) < I32_MIN ? (UV) I32_MIN : (U32)(I32) (n)) \
3263                   : ((n) < U32_MAX_P1 ? (U32) (n) \
3264                      : ((n) > 0 ? U32_MAX : 0 /* NaN */)))
3265 #define I_V(n) ((n) < IV_MAX_P1 ? ((n) < IV_MIN ? IV_MIN : (IV) (n)) \
3266                   : ((n) < UV_MAX_P1 ? (IV)(UV) (n) \
3267                      : ((n) > 0 ? (IV)UV_MAX : 0 /* NaN */)))
3268 #define U_V(n) ((n) < 0.0 ? ((n) < IV_MIN ? (UV) IV_MIN : (UV)(IV) (n)) \
3269                   : ((n) < UV_MAX_P1 ? (UV) (n) \
3270                      : ((n) > 0 ? UV_MAX : 0 /* NaN */)))
3271 #endif
3272
3273 #define U_S(what) ((U16)U_32(what))
3274 #define U_I(what) ((unsigned int)U_32(what))
3275 #define U_L(what) U_32(what)
3276
3277 /* These do not care about the fractional part, only about the range. */
3278 #define NV_WITHIN_IV(nv) (I_V(nv) >= IV_MIN && I_V(nv) <= IV_MAX)
3279 #define NV_WITHIN_UV(nv) ((nv)>=0.0 && U_V(nv) >= UV_MIN && U_V(nv) <= UV_MAX)
3280
3281 /* Used with UV/IV arguments: */
3282                                         /* XXXX: need to speed it up */
3283 #define CLUMP_2UV(iv)   ((iv) < 0 ? 0 : (UV)(iv))
3284 #define CLUMP_2IV(uv)   ((uv) > (UV)IV_MAX ? IV_MAX : (IV)(uv))
3285
3286 #ifndef MAXSYSFD
3287 #   define MAXSYSFD 2
3288 #endif
3289
3290 #ifndef __cplusplus
3291 #if !(defined(UNDER_CE) || defined(SYMBIAN))
3292 Uid_t getuid (void);
3293 Uid_t geteuid (void);
3294 Gid_t getgid (void);
3295 Gid_t getegid (void);
3296 #endif
3297 #endif
3298
3299 #ifndef Perl_debug_log
3300 #  define Perl_debug_log        PerlIO_stderr()
3301 #endif
3302
3303 #ifndef Perl_error_log
3304 #  define Perl_error_log        (PL_stderrgv                    \
3305                                  && isGV(PL_stderrgv)           \
3306                                  && GvIOp(PL_stderrgv)          \
3307                                  && IoOFP(GvIOp(PL_stderrgv))   \
3308                                  ? IoOFP(GvIOp(PL_stderrgv))    \
3309                                  : PerlIO_stderr())
3310 #endif
3311
3312
3313 #define DEBUG_p_FLAG            0x00000001 /*      1 */
3314 #define DEBUG_s_FLAG            0x00000002 /*      2 */
3315 #define DEBUG_l_FLAG            0x00000004 /*      4 */
3316 #define DEBUG_t_FLAG            0x00000008 /*      8 */
3317 #define DEBUG_o_FLAG            0x00000010 /*     16 */
3318 #define DEBUG_c_FLAG            0x00000020 /*     32 */
3319 #define DEBUG_P_FLAG            0x00000040 /*     64 */
3320 #define DEBUG_m_FLAG            0x00000080 /*    128 */
3321 #define DEBUG_f_FLAG            0x00000100 /*    256 */
3322 #define DEBUG_r_FLAG            0x00000200 /*    512 */
3323 #define DEBUG_x_FLAG            0x00000400 /*   1024 */
3324 #define DEBUG_u_FLAG            0x00000800 /*   2048 */
3325                                            /*  spare */
3326 #define DEBUG_H_FLAG            0x00002000 /*   8192 */
3327 #define DEBUG_X_FLAG            0x00004000 /*  16384 */
3328 #define DEBUG_D_FLAG            0x00008000 /*  32768 */
3329 #define DEBUG_S_FLAG            0x00010000 /*  65536 */
3330 #define DEBUG_T_FLAG            0x00020000 /* 131072 */
3331 #define DEBUG_R_FLAG            0x00040000 /* 262144 */
3332 #define DEBUG_J_FLAG            0x00080000 /* 524288 */
3333 #define DEBUG_v_FLAG            0x00100000 /*1048576 */
3334 #define DEBUG_C_FLAG            0x00200000 /*2097152 */
3335 #define DEBUG_A_FLAG            0x00400000 /*4194304 */
3336 #define DEBUG_q_FLAG            0x00800000 /*8388608 */
3337 #define DEBUG_MASK              0x00FFEFFF /* mask of all the standard flags */
3338
3339 #define DEBUG_DB_RECURSE_FLAG   0x40000000
3340 #define DEBUG_TOP_FLAG          0x80000000 /* XXX what's this for ??? Signal
3341                                               that something was done? */
3342
3343 #  define DEBUG_p_TEST_ (PL_debug & DEBUG_p_FLAG)
3344 #  define DEBUG_s_TEST_ (PL_debug & DEBUG_s_FLAG)
3345 #  define DEBUG_l_TEST_ (PL_debug & DEBUG_l_FLAG)
3346 #  define DEBUG_t_TEST_ (PL_debug & DEBUG_t_FLAG)
3347 #  define DEBUG_o_TEST_ (PL_debug & DEBUG_o_FLAG)
3348 #  define DEBUG_c_TEST_ (PL_debug & DEBUG_c_FLAG)
3349 #  define DEBUG_P_TEST_ (PL_debug & DEBUG_P_FLAG)
3350 #  define DEBUG_m_TEST_ (PL_debug & DEBUG_m_FLAG)
3351 #  define DEBUG_f_TEST_ (PL_debug & DEBUG_f_FLAG)
3352 #  define DEBUG_r_TEST_ (PL_debug & DEBUG_r_FLAG)
3353 #  define DEBUG_x_TEST_ (PL_debug & DEBUG_x_FLAG)
3354 #  define DEBUG_u_TEST_ (PL_debug & DEBUG_u_FLAG)
3355 #  define DEBUG_H_TEST_ (PL_debug & DEBUG_H_FLAG)
3356 #  define DEBUG_X_TEST_ (PL_debug & DEBUG_X_FLAG)
3357 #  define DEBUG_D_TEST_ (PL_debug & DEBUG_D_FLAG)
3358 #  define DEBUG_S_TEST_ (PL_debug & DEBUG_S_FLAG)
3359 #  define DEBUG_T_TEST_ (PL_debug & DEBUG_T_FLAG)
3360 #  define DEBUG_R_TEST_ (PL_debug & DEBUG_R_FLAG)
3361 #  define DEBUG_J_TEST_ (PL_debug & DEBUG_J_FLAG)
3362 #  define DEBUG_v_TEST_ (PL_debug & DEBUG_v_FLAG)
3363 #  define DEBUG_C_TEST_ (PL_debug & DEBUG_C_FLAG)
3364 #  define DEBUG_A_TEST_ (PL_debug & DEBUG_A_FLAG)
3365 #  define DEBUG_q_TEST_ (PL_debug & DEBUG_q_FLAG)
3366 #  define DEBUG_Xv_TEST_ (DEBUG_X_TEST_ && DEBUG_v_TEST_)
3367
3368 #ifdef DEBUGGING
3369
3370 #  define DEBUG_p_TEST DEBUG_p_TEST_
3371 #  define DEBUG_s_TEST DEBUG_s_TEST_
3372 #  define DEBUG_l_TEST DEBUG_l_TEST_
3373 #  define DEBUG_t_TEST DEBUG_t_TEST_
3374 #  define DEBUG_o_TEST DEBUG_o_TEST_
3375 #  define DEBUG_c_TEST DEBUG_c_TEST_
3376 #  define DEBUG_P_TEST DEBUG_P_TEST_
3377 #  define DEBUG_m_TEST DEBUG_m_TEST_
3378 #  define DEBUG_f_TEST DEBUG_f_TEST_
3379 #  define DEBUG_r_TEST DEBUG_r_TEST_
3380 #  define DEBUG_x_TEST DEBUG_x_TEST_
3381 #  define DEBUG_u_TEST DEBUG_u_TEST_
3382 #  define DEBUG_H_TEST DEBUG_H_TEST_
3383 #  define DEBUG_X_TEST DEBUG_X_TEST_
3384 #  define DEBUG_Xv_TEST DEBUG_Xv_TEST_
3385 #  define DEBUG_D_TEST DEBUG_D_TEST_
3386 #  define DEBUG_S_TEST DEBUG_S_TEST_
3387 #  define DEBUG_T_TEST DEBUG_T_TEST_
3388 #  define DEBUG_R_TEST DEBUG_R_TEST_
3389 #  define DEBUG_J_TEST DEBUG_J_TEST_
3390 #  define DEBUG_v_TEST DEBUG_v_TEST_
3391 #  define DEBUG_C_TEST DEBUG_C_TEST_
3392 #  define DEBUG_A_TEST DEBUG_A_TEST_
3393 #  define DEBUG_q_TEST DEBUG_q_TEST_
3394
3395 #  define PERL_DEB(a)                  a
3396 #  define PERL_DEBUG(a) if (PL_debug)  a
3397 #  define DEBUG_p(a) if (DEBUG_p_TEST) a
3398 #  define DEBUG_s(a) if (DEBUG_s_TEST) a
3399 #  define DEBUG_l(a) if (DEBUG_l_TEST) a
3400 #  define DEBUG_t(a) if (DEBUG_t_TEST) a
3401 #  define DEBUG_o(a) if (DEBUG_o_TEST) a
3402 #  define DEBUG_c(a) if (DEBUG_c_TEST) a
3403 #  define DEBUG_P(a) if (DEBUG_P_TEST) a
3404
3405      /* Temporarily turn off memory debugging in case the a
3406       * does memory allocation, either directly or indirectly. */
3407 #  define DEBUG_m(a)  \
3408     STMT_START {                                                        \
3409         if (PERL_GET_INTERP) { dTHX; if (DEBUG_m_TEST) {PL_debug&=~DEBUG_m_FLAG; a; PL_debug|=DEBUG_m_FLAG;} } \
3410     } STMT_END
3411
3412 #  define DEBUG__(t, a) \
3413         STMT_START { \
3414                 if (t) STMT_START {a;} STMT_END; \
3415         } STMT_END
3416
3417 #  define DEBUG_f(a) DEBUG__(DEBUG_f_TEST, a)
3418 #  define DEBUG_r(a) DEBUG__(DEBUG_r_TEST, a)
3419 #  define DEBUG_x(a) DEBUG__(DEBUG_x_TEST, a)
3420 #  define DEBUG_u(a) DEBUG__(DEBUG_u_TEST, a)
3421 #  define DEBUG_H(a) DEBUG__(DEBUG_H_TEST, a)
3422 #  define DEBUG_X(a) DEBUG__(DEBUG_X_TEST, a)
3423 #  define DEBUG_Xv(a) DEBUG__(DEBUG_Xv_TEST, a)
3424 #  define DEBUG_D(a) DEBUG__(DEBUG_D_TEST, a)
3425
3426 #  define DEBUG_S(a)
3427
3428 #  define DEBUG_T(a) DEBUG__(DEBUG_T_TEST, a)
3429 #  define DEBUG_R(a) DEBUG__(DEBUG_R_TEST, a)
3430 #  define DEBUG_v(a) DEBUG__(DEBUG_v_TEST, a)
3431 #  define DEBUG_C(a) DEBUG__(DEBUG_C_TEST, a)
3432 #  define DEBUG_A(a) DEBUG__(DEBUG_A_TEST, a)
3433 #  define DEBUG_q(a) DEBUG__(DEBUG_q_TEST, a)
3434
3435 #else /* DEBUGGING */
3436
3437 #  define DEBUG_p_TEST (0)
3438 #  define DEBUG_s_TEST (0)
3439 #  define DEBUG_l_TEST (0)
3440 #  define DEBUG_t_TEST (0)
3441 #  define DEBUG_o_TEST (0)
3442 #  define DEBUG_c_TEST (0)
3443 #  define DEBUG_P_TEST (0)
3444 #  define DEBUG_m_TEST (0)
3445 #  define DEBUG_f_TEST (0)
3446 #  define DEBUG_r_TEST (0)
3447 #  define DEBUG_x_TEST (0)
3448 #  define DEBUG_u_TEST (0)
3449 #  define DEBUG_H_TEST (0)
3450 #  define DEBUG_X_TEST (0)
3451 #  define DEBUG_Xv_TEST (0)
3452 #  define DEBUG_D_TEST (0)
3453 #  define DEBUG_S_TEST (0)
3454 #  define DEBUG_T_TEST (0)
3455 #  define DEBUG_R_TEST (0)
3456 #  define DEBUG_J_TEST (0)
3457 #  define DEBUG_v_TEST (0)
3458 #  define DEBUG_C_TEST (0)
3459 #  define DEBUG_A_TEST (0)
3460 #  define DEBUG_q_TEST (0)
3461
3462 #  define PERL_DEB(a)
3463 #  define PERL_DEBUG(a)
3464 #  define DEBUG_p(a)
3465 #  define DEBUG_s(a)
3466 #  define DEBUG_l(a)
3467 #  define DEBUG_t(a)
3468 #  define DEBUG_o(a)
3469 #  define DEBUG_c(a)
3470 #  define DEBUG_P(a)
3471 #  define DEBUG_m(a)
3472 #  define DEBUG_f(a)
3473 #  define DEBUG_r(a)
3474 #  define DEBUG_x(a)
3475 #  define DEBUG_u(a)
3476 #  define DEBUG_H(a)
3477 #  define DEBUG_X(a)
3478 #  define DEBUG_Xv(a)
3479 #  define DEBUG_D(a)
3480 #  define DEBUG_S(a)
3481 #  define DEBUG_T(a)
3482 #  define DEBUG_R(a)
3483 #  define DEBUG_v(a)
3484 #  define DEBUG_C(a)
3485 #  define DEBUG_A(a)
3486 #  define DEBUG_q(a)
3487 #endif /* DEBUGGING */
3488
3489
3490 #define DEBUG_SCOPE(where) \
3491     DEBUG_l(WITH_THR(Perl_deb(aTHX_ "%s scope %ld at %s:%d\n",  \
3492                     where, (long)PL_scopestack_ix, __FILE__, __LINE__)));
3493
3494
3495
3496
3497 /* These constants should be used in preference to raw characters
3498  * when using magic. Note that some perl guts still assume
3499  * certain character properties of these constants, namely that
3500  * isUPPER() and toLOWER() may do useful mappings.
3501  *
3502  * Update the magic_names table in dump.c when adding/amending these
3503  */
3504
3505 #define PERL_MAGIC_sv             '\0' /* Special scalar variable */
3506 #define PERL_MAGIC_overload       'A' /* %OVERLOAD hash */
3507 #define PERL_MAGIC_overload_elem  'a' /* %OVERLOAD hash element */
3508 #define PERL_MAGIC_overload_table 'c' /* Holds overload table (AMT) on stash */
3509 #define PERL_MAGIC_bm             'B' /* Boyer-Moore (fast string search) */
3510 #define PERL_MAGIC_regdata        'D' /* Regex match position data
3511                                         (@+ and @- vars) */
3512 #define PERL_MAGIC_regdatum       'd' /* Regex match position data element */
3513 #define PERL_MAGIC_env            'E' /* %ENV hash */
3514 #define PERL_MAGIC_envelem        'e' /* %ENV hash element */
3515 #define PERL_MAGIC_fm             'f' /* Formline ('compiled' format) */
3516 #define PERL_MAGIC_regex_global   'g' /* m//g target / study()ed string */
3517 #define PERL_MAGIC_hints          'H' /* %^H hash */
3518 #define PERL_MAGIC_hintselem      'h' /* %^H hash element */
3519 #define PERL_MAGIC_isa            'I' /* @ISA array */
3520 #define PERL_MAGIC_isaelem        'i' /* @ISA array element */
3521 #define PERL_MAGIC_nkeys          'k' /* scalar(keys()) lvalue */
3522 #define PERL_MAGIC_dbfile         'L' /* Debugger %_<filename */
3523 #define PERL_MAGIC_dbline         'l' /* Debugger %_<filename element */
3524 #define PERL_MAGIC_mutex          'm' /* for lock op */
3525 #define PERL_MAGIC_shared         'N' /* Shared between threads */
3526 #define PERL_MAGIC_shared_scalar  'n' /* Shared between threads */
3527 #define PERL_MAGIC_collxfrm       'o' /* Locale transformation */
3528 #define PERL_MAGIC_tied           'P' /* Tied array or hash */
3529 #define PERL_MAGIC_tiedelem       'p' /* Tied array or hash element */
3530 #define PERL_MAGIC_tiedscalar     'q' /* Tied scalar or handle */
3531 #define PERL_MAGIC_qr             'r' /* precompiled qr// regex */
3532 #define PERL_MAGIC_sig            'S' /* %SIG hash */
3533 #define PERL_MAGIC_sigelem        's' /* %SIG hash element */
3534 #define PERL_MAGIC_taint          't' /* Taintedness */
3535 #define PERL_MAGIC_uvar           'U' /* Available for use by extensions */
3536 #define PERL_MAGIC_uvar_elem      'u' /* Reserved for use by extensions */
3537 #define PERL_MAGIC_vec            'v' /* vec() lvalue */
3538 #define PERL_MAGIC_vstring        'V' /* SV was vstring literal */
3539 #define PERL_MAGIC_utf8           'w' /* Cached UTF-8 information */
3540 #define PERL_MAGIC_substr         'x' /* substr() lvalue */
3541 #define PERL_MAGIC_defelem        'y' /* Shadow "foreach" iterator variable /
3542                                         smart parameter vivification */
3543 #define PERL_MAGIC_arylen         '#' /* Array length ($#ary) */
3544 #define PERL_MAGIC_pos            '.' /* pos() lvalue */
3545 #define PERL_MAGIC_backref        '<' /* for weak ref data */
3546 #define PERL_MAGIC_symtab         ':' /* extra data for symbol tables */
3547 #define PERL_MAGIC_rhash          '%' /* extra data for restricted hashes */
3548 #define PERL_MAGIC_arylen_p       '@' /* to move arylen out of XPVAV */
3549 #define PERL_MAGIC_ext            '~' /* Available for use by extensions */
3550
3551
3552 #ifndef assert  /* <assert.h> might have been included somehow */
3553 #define assert(what)    PERL_DEB(                                       \
3554         ((what) ? ((void) 0) :                                          \
3555             (Perl_croak_nocontext("Assertion %s failed: file \"" __FILE__ \
3556                         "\", line %d", STRINGIFY(what), __LINE__),      \
3557             (void) 0)))
3558 #endif
3559
3560 struct ufuncs {
3561     I32 (*uf_val)(pTHX_ IV, SV*);
3562     I32 (*uf_set)(pTHX_ IV, SV*);
3563     IV uf_index;
3564 };
3565
3566 /* In pre-5.7-Perls the PERL_MAGIC_uvar magic didn't get the thread context.
3567  * XS code wanting to be backward compatible can do something
3568  * like the following:
3569
3570 #ifndef PERL_MG_UFUNC
3571 #define PERL_MG_UFUNC(name,ix,sv) I32 name(IV ix, SV *sv)
3572 #endif
3573
3574 static PERL_MG_UFUNC(foo_get, index, val)
3575 {
3576     sv_setsv(val, ...);
3577     return TRUE;
3578 }
3579
3580 -- Doug MacEachern
3581
3582 */
3583
3584 #ifndef PERL_MG_UFUNC
3585 #define PERL_MG_UFUNC(name,ix,sv) I32 name(pTHX_ IV ix, SV *sv)
3586 #endif
3587
3588 /* Fix these up for __STDC__ */
3589 #ifndef DONT_DECLARE_STD
3590 char *mktemp (char*);
3591 #ifndef atof
3592 double atof (const char*);
3593 #endif
3594 #endif
3595
3596 #ifndef STANDARD_C
3597 /* All of these are in stdlib.h or time.h for ANSI C */
3598 Time_t time();
3599 struct tm *gmtime(), *localtime();
3600 #if defined(OEMVS) || defined(__OPEN_VM)
3601 char *(strchr)(), *(strrchr)();
3602 char *(strcpy)(), *(strcat)();
3603 #else
3604 char *strchr(), *strrchr();
3605 char *strcpy(), *strcat();
3606 #endif
3607 #endif /* ! STANDARD_C */
3608
3609
3610 #ifdef I_MATH
3611 #    include <math.h>
3612 #else
3613 START_EXTERN_C
3614             double exp (double);
3615             double log (double);
3616             double log10 (double);
3617             double sqrt (double);
3618             double frexp (double,int*);
3619             double ldexp (double,int);
3620             double modf (double,double*);
3621             double sin (double);
3622             double cos (double);
3623             double atan2 (double,double);
3624             double pow (double,double);
3625 END_EXTERN_C
3626 #endif
3627
3628 #if !defined(NV_INF) && defined(USE_LONG_DOUBLE) && defined(LDBL_INFINITY)
3629 #  define NV_INF LDBL_INFINITY
3630 #endif
3631 #if !defined(NV_INF) && defined(DBL_INFINITY)
3632 #  define NV_INF (NV)DBL_INFINITY
3633 #endif
3634 #if !defined(NV_INF) && defined(INFINITY)
3635 #  define NV_INF (NV)INFINITY
3636 #endif
3637 #if !defined(NV_INF) && defined(INF)
3638 #  define NV_INF (NV)INF
3639 #endif
3640 #if !defined(NV_INF) && defined(USE_LONG_DOUBLE) && defined(HUGE_VALL)
3641 #  define NV_INF (NV)HUGE_VALL
3642 #endif
3643 #if !defined(NV_INF) && defined(HUGE_VAL)
3644 #  define NV_INF (NV)HUGE_VAL
3645 #endif
3646
3647 #if !defined(NV_NAN) && defined(USE_LONG_DOUBLE)
3648 #   if !defined(NV_NAN) && defined(LDBL_NAN)
3649 #       define NV_NAN LDBL_NAN
3650 #   endif
3651 #   if !defined(NV_NAN) && defined(LDBL_QNAN)
3652 #       define NV_NAN LDBL_QNAN
3653 #   endif
3654 #   if !defined(NV_NAN) && defined(LDBL_SNAN)
3655 #       define NV_NAN LDBL_SNAN
3656 #   endif
3657 #endif
3658 #if !defined(NV_NAN) && defined(DBL_NAN)
3659 #  define NV_NAN (NV)DBL_NAN
3660 #endif
3661 #if !defined(NV_NAN) && defined(DBL_QNAN)
3662 #  define NV_NAN (NV)DBL_QNAN
3663 #endif
3664 #if !defined(NV_NAN) && defined(DBL_SNAN)
3665 #  define NV_NAN (NV)DBL_SNAN
3666 #endif
3667 #if !defined(NV_NAN) && defined(QNAN)
3668 #  define NV_NAN (NV)QNAN
3669 #endif
3670 #if !defined(NV_NAN) && defined(SNAN)
3671 #  define NV_NAN (NV)SNAN
3672 #endif
3673 #if !defined(NV_NAN) && defined(NAN)
3674 #  define NV_NAN (NV)NAN
3675 #endif
3676
3677 #ifndef __cplusplus
3678 #  if defined(NeXT) || defined(__NeXT__) /* or whatever catches all NeXTs */
3679 char *crypt ();       /* Maybe more hosts will need the unprototyped version */
3680 #  else
3681 #    if !defined(WIN32) && !defined(VMS)
3682 #ifndef crypt
3683 char *crypt (const char*, const char*);
3684 #endif
3685 #    endif /* !WIN32 */
3686 #  endif /* !NeXT && !__NeXT__ */
3687 #  ifndef DONT_DECLARE_STD
3688 #    ifndef getenv
3689 char *getenv (const char*);
3690 #    endif /* !getenv */
3691 #    if !defined(HAS_LSEEK_PROTO) && !defined(EPOC) && !defined(__hpux)
3692 #      ifdef _FILE_OFFSET_BITS
3693 #        if _FILE_OFFSET_BITS == 64
3694 Off_t lseek (int,Off_t,int);
3695 #        endif
3696 #      endif
3697 #    endif
3698 #  endif /* !DONT_DECLARE_STD */
3699 #ifndef getlogin
3700 char *getlogin (void);
3701 #endif
3702 #endif /* !__cplusplus */
3703
3704 /* Fixme on VMS.  This needs to be a run-time, not build time options */
3705 /* Also rename() is affected by this */
3706 #ifdef UNLINK_ALL_VERSIONS /* Currently only makes sense for VMS */
3707 #define UNLINK unlnk
3708 I32 unlnk (pTHX_ const char*);
3709 #else
3710 #define UNLINK PerlLIO_unlink
3711 #endif
3712
3713 /* some versions of glibc are missing the setresuid() proto */
3714 #if defined(HAS_SETRESUID) && !defined(HAS_SETRESUID_PROTO)
3715 int setresuid(uid_t ruid, uid_t euid, uid_t suid);
3716 #endif
3717 /* some versions of glibc are missing the setresgid() proto */
3718 #if defined(HAS_SETRESGID) && !defined(HAS_SETRESGID_PROTO)
3719 int setresgid(gid_t rgid, gid_t egid, gid_t sgid);
3720 #endif
3721
3722 #ifndef HAS_SETREUID
3723 #  ifdef HAS_SETRESUID
3724 #    define setreuid(r,e) setresuid(r,e,(Uid_t)-1)
3725 #    define HAS_SETREUID
3726 #  endif
3727 #endif
3728 #ifndef HAS_SETREGID
3729 #  ifdef HAS_SETRESGID
3730 #    define setregid(r,e) setresgid(r,e,(Gid_t)-1)
3731 #    define HAS_SETREGID
3732 #  endif
3733 #endif
3734
3735 /* Sighandler_t defined in iperlsys.h */
3736
3737 #ifdef HAS_SIGACTION
3738 typedef struct sigaction Sigsave_t;
3739 #else
3740 typedef Sighandler_t Sigsave_t;
3741 #endif
3742
3743 #define SCAN_DEF 0
3744 #define SCAN_TR 1
3745 #define SCAN_REPL 2
3746
3747 #ifdef DEBUGGING
3748 # ifndef register
3749 #  define register
3750 # endif
3751 # define RUNOPS_DEFAULT Perl_runops_debug
3752 #else
3753 # define RUNOPS_DEFAULT Perl_runops_standard
3754 #endif
3755
3756 #ifdef MYMALLOC
3757 #  ifdef MUTEX_INIT_CALLS_MALLOC
3758 #    define MALLOC_INIT                                 \
3759         STMT_START {                                    \
3760                 PL_malloc_mutex = NULL;                 \
3761                 MUTEX_INIT(&PL_malloc_mutex);           \
3762         } STMT_END
3763 #    define MALLOC_TERM                                 \
3764         STMT_START {                                    \
3765                 perl_mutex tmp = PL_malloc_mutex;       \
3766                 PL_malloc_mutex = NULL;                 \
3767                 MUTEX_DESTROY(&tmp);                    \
3768         } STMT_END
3769 #  else
3770 #    define MALLOC_INIT MUTEX_INIT(&PL_malloc_mutex)
3771 #    define MALLOC_TERM MUTEX_DESTROY(&PL_malloc_mutex)
3772 #  endif
3773 #else
3774 #  define MALLOC_INIT
3775 #  define MALLOC_TERM
3776 #endif
3777
3778 #if defined(PERL_IMPLICIT_CONTEXT)
3779
3780 struct perl_memory_debug_header;
3781 struct perl_memory_debug_header {
3782   tTHX  interpreter;
3783 #  ifdef PERL_POISON
3784   MEM_SIZE size;
3785 #  endif
3786   struct perl_memory_debug_header *prev;
3787   struct perl_memory_debug_header *next;
3788 };
3789
3790 #  define sTHX  (sizeof(struct perl_memory_debug_header) + \
3791         (MEM_ALIGNBYTES - sizeof(struct perl_memory_debug_header) \
3792          %MEM_ALIGNBYTES) % MEM_ALIGNBYTES)
3793
3794 #endif
3795
3796 #ifdef PERL_TRACK_MEMPOOL
3797 #  define INIT_TRACK_MEMPOOL(header, interp)                    \
3798         STMT_START {                                            \
3799                 (header).interpreter = (interp);                \
3800                 (header).prev = (header).next = &(header);      \
3801         } STMT_END
3802 #  else
3803 #  define INIT_TRACK_MEMPOOL(header, interp)
3804 #endif
3805
3806
3807 typedef int (CPERLscope(*runops_proc_t)) (pTHX);
3808 typedef void (CPERLscope(*share_proc_t)) (pTHX_ SV *sv);
3809 typedef int  (CPERLscope(*thrhook_proc_t)) (pTHX);
3810 typedef OP* (CPERLscope(*PPADDR_t)[]) (pTHX);
3811
3812 /* _ (for $_) must be first in the following list (DEFSV requires it) */
3813 #define THREADSV_NAMES "_123456789&`'+/.,\\\";^-%=|~:\001\005!@"
3814
3815 /* NeXT has problems with crt0.o globals */
3816 #if defined(__DYNAMIC__) && \
3817     (defined(NeXT) || defined(__NeXT__) || defined(PERL_DARWIN))
3818 #  if defined(NeXT) || defined(__NeXT)
3819 #    include <mach-o/dyld.h>
3820 #    define environ (*environ_pointer)
3821 EXT char *** environ_pointer;
3822 #  else
3823 #    if defined(PERL_DARWIN) && defined(PERL_CORE)
3824 #      include <crt_externs.h>  /* for the env array */
3825 #      define environ (*_NSGetEnviron())
3826 #    endif
3827 #  endif
3828 #else
3829    /* VMS and some other platforms don't use the environ array */
3830 #  ifdef USE_ENVIRON_ARRAY
3831 #    if !defined(DONT_DECLARE_STD) || \
3832         (defined(__svr4__) && defined(__GNUC__) && defined(sun)) || \
3833         defined(__sgi) || \
3834         defined(__DGUX)
3835 extern char **  environ;        /* environment variables supplied via exec */
3836 #    endif
3837 #  endif
3838 #endif
3839
3840 START_EXTERN_C
3841
3842 /* handy constants */
3843 EXTCONST char PL_warn_uninit[]
3844   INIT("Use of uninitialized value%s%s%s");
3845 EXTCONST char PL_warn_nosemi[]
3846   INIT("Semicolon seems to be missing");
3847 EXTCONST char PL_warn_reserved[]
3848   INIT("Unquoted string \"%s\" may clash with future reserved word");
3849 EXTCONST char PL_warn_nl[]
3850   INIT("Unsuccessful %s on filename containing newline");
3851 EXTCONST char PL_no_wrongref[]
3852   INIT("Can't use %s ref as %s ref");
3853 EXTCONST char PL_no_symref[]
3854   INIT("Can't use string (\"%.32s\") as %s ref while \"strict refs\" in use");
3855 EXTCONST char PL_no_symref_sv[]
3856   INIT("Can't use string (\"%" SVf32 "\") as %s ref while \"strict refs\" in use");
3857 EXTCONST char PL_no_usym[]
3858   INIT("Can't use an undefined value as %s reference");
3859 EXTCONST char PL_no_aelem[]
3860   INIT("Modification of non-creatable array value attempted, subscript %d");
3861 EXTCONST char PL_no_helem_sv[]
3862   INIT("Modification of non-creatable hash value attempted, subscript \""SVf"\"");
3863 EXTCONST char PL_no_modify[]
3864   INIT("Modification of a read-only value attempted");
3865 EXTCONST char PL_no_mem[]
3866   INIT("Out of memory!\n");
3867 EXTCONST char PL_no_security[]
3868   INIT("Insecure dependency in %s%s");
3869 EXTCONST char PL_no_sock_func[]
3870   INIT("Unsupported socket function \"%s\" called");
3871 EXTCONST char PL_no_dir_func[]
3872   INIT("Unsupported directory function \"%s\" called");
3873 EXTCONST char PL_no_func[]
3874   INIT("The %s function is unimplemented");
3875 EXTCONST char PL_no_myglob[]
3876   INIT("\"%s\" variable %s can't be in a package");
3877 EXTCONST char PL_no_localize_ref[]
3878   INIT("Can't localize through a reference");
3879 EXTCONST char PL_memory_wrap[]
3880   INIT("panic: memory wrap");
3881
3882 EXTCONST char PL_uuemap[65]
3883   INIT("`!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_");
3884
3885
3886 #ifdef DOINIT
3887 EXTCONST char* const PL_sig_name[] = { SIG_NAME };
3888 EXTCONST int         PL_sig_num[]  = { SIG_NUM };
3889 #else
3890 EXTCONST char* const PL_sig_name[];
3891 EXTCONST int         PL_sig_num[];
3892 #endif
3893
3894 /* fast conversion and case folding tables */
3895
3896 #ifdef DOINIT
3897 #ifdef EBCDIC
3898 EXTCONST unsigned char PL_fold[] = { /* fast EBCDIC case folding table */
3899     0,      1,      2,      3,      4,      5,      6,      7,
3900     8,      9,      10,     11,     12,     13,     14,     15,
3901     16,     17,     18,     19,     20,     21,     22,     23,
3902     24,     25,     26,     27,     28,     29,     30,     31,
3903     32,     33,     34,     35,     36,     37,     38,     39,
3904     40,     41,     42,     43,     44,     45,     46,     47,
3905     48,     49,     50,     51,     52,     53,     54,     55,
3906     56,     57,     58,     59,     60,     61,     62,     63,
3907     64,     65,     66,     67,     68,     69,     70,     71,
3908     72,     73,     74,     75,     76,     77,     78,     79,
3909     80,     81,     82,     83,     84,     85,     86,     87,
3910     88,     89,     90,     91,     92,     93,     94,     95,
3911     96,     97,     98,     99,     100,    101,    102,    103,
3912     104,    105,    106,    107,    108,    109,    110,    111,
3913     112,    113,    114,    115,    116,    117,    118,    119,
3914     120,    121,    122,    123,    124,    125,    126,    127,
3915     128,    'A',    'B',    'C',    'D',    'E',    'F',    'G',
3916     'H',    'I',    138,    139,    140,    141,    142,    143,
3917     144,    'J',    'K',    'L',    'M',    'N',    'O',    'P',
3918     'Q',    'R',    154,    155,    156,    157,    158,    159,
3919     160,    161,    'S',    'T',    'U',    'V',    'W',    'X',
3920     'Y',    'Z',    170,    171,    172,    173,    174,    175,
3921     176,    177,    178,    179,    180,    181,    182,    183,
3922     184,    185,    186,    187,    188,    189,    190,    191,
3923     192,    'a',    'b',    'c',    'd',    'e',    'f',    'g',
3924     'h',    'i',    202,    203,    204,    205,    206,    207,
3925     208,    'j',    'k',    'l',    'm',    'n',    'o',    'p',
3926     'q',    'r',    218,    219,    220,    221,    222,    223,
3927     224,    225,    's',    't',    'u',    'v',    'w',    'x',
3928     'y',    'z',    234,    235,    236,    237,    238,    239,
3929     240,    241,    242,    243,    244,    245,    246,    247,
3930     248,    249,    250,    251,    252,    253,    254,    255
3931 };
3932 #else   /* ascii rather than ebcdic */
3933 EXTCONST  unsigned char PL_fold[] = {
3934         0,      1,      2,      3,      4,      5,      6,      7,
3935         8,      9,      10,     11,     12,     13,     14,     15,
3936         16,     17,     18,     19,     20,     21,     22,     23,
3937         24,     25,     26,     27,     28,     29,     30,     31,
3938         32,     33,     34,     35,     36,     37,     38,     39,
3939         40,     41,     42,     43,     44,     45,     46,     47,
3940         48,     49,     50,     51,     52,     53,     54,     55,
3941         56,     57,     58,     59,     60,     61,     62,     63,
3942         64,     'a',    'b',    'c',    'd',    'e',    'f',    'g',
3943         'h',    'i',    'j',    'k',    'l',    'm',    'n',    'o',
3944         'p',    'q',    'r',    's',    't',    'u',    'v',    'w',
3945         'x',    'y',    'z',    91,     92,     93,     94,     95,
3946         96,     'A',    'B',    'C',    'D',    'E',    'F',    'G',
3947         'H',    'I',    'J',    'K',    'L',    'M',    'N',    'O',
3948         'P',    'Q',    'R',    'S',    'T',    'U',    'V',    'W',
3949         'X',    'Y',    'Z',    123,    124,    125,    126,    127,
3950         128,    129,    130,    131,    132,    133,    134,    135,
3951         136,    137,    138,    139,    140,    141,    142,    143,
3952         144,    145,    146,    147,    148,    149,    150,    151,
3953         152,    153,    154,    155,    156,    157,    158,    159,
3954         160,    161,    162,    163,    164,    165,    166,    167,
3955         168,    169,    170,    171,    172,    173,    174,    175,
3956         176,    177,    178,    179,    180,    181,    182,    183,
3957         184,    185,    186,    187,    188,    189,    190,    191,
3958         192,    193,    194,    195,    196,    197,    198,    199,
3959         200,    201,    202,    203,    204,    205,    206,    207,
3960         208,    209,    210,    211,    212,    213,    214,    215,
3961         216,    217,    218,    219,    220,    221,    222,    223,    
3962         224,    225,    226,    227,    228,    229,    230,    231,
3963         232,    233,    234,    235,    236,    237,    238,    239,
3964         240,    241,    242,    243,    244,    245,    246,    247,
3965         248,    249,    250,    251,    252,    253,    254,    255
3966 };
3967 #endif  /* !EBCDIC */
3968 #else
3969 EXTCONST unsigned char PL_fold[];
3970 #endif
3971
3972 #ifndef PERL_GLOBAL_STRUCT /* or perlvars.h */
3973 #ifdef DOINIT
3974 EXT unsigned char PL_fold_locale[] = { /* Unfortunately not EXTCONST. */
3975         0,      1,      2,      3,      4,      5,      6,      7,
3976         8,      9,      10,     11,     12,     13,     14,     15,
3977         16,     17,     18,     19,     20,     21,     22,     23,
3978         24,     25,     26,     27,     28,     29,     30,     31,
3979         32,     33,     34,     35,     36,     37,     38,     39,
3980         40,     41,     42,     43,     44,     45,     46,     47,
3981         48,     49,     50,     51,     52,     53,     54,     55,
3982         56,     57,     58,     59,     60,     61,     62,     63,
3983         64,     'a',    'b',    'c',    'd',    'e',    'f',    'g',
3984         'h',    'i',    'j',    'k',    'l',    'm',    'n',    'o',
3985         'p',    'q',    'r',    's',    't',    'u',    'v',    'w',
3986         'x',    'y',    'z',    91,     92,     93,     94,     95,
3987         96,     'A',    'B',    'C',    'D',    'E',    'F',    'G',
3988         'H',    'I',    'J',    'K',    'L',    'M',    'N',    'O',
3989         'P',    'Q',    'R',    'S',    'T',    'U',    'V',    'W',
3990         'X',    'Y',    'Z',    123,    124,    125,    126,    127,
3991         128,    129,    130,    131,    132,    133,    134,    135,
3992         136,    137,    138,    139,    140,    141,    142,    143,
3993         144,    145,    146,    147,    148,    149,    150,    151,
3994         152,    153,    154,    155,    156,    157,    158,    159,
3995         160,    161,    162,    163,    164,    165,    166,    167,
3996         168,    169,    170,    171,    172,    173,    174,    175,
3997         176,    177,    178,    179,    180,    181,    182,    183,
3998         184,    185,    186,    187,    188,    189,    190,    191,
3999         192,    193,    194,    195,    196,    197,    198,    199,
4000         200,    201,    202,    203,    204,    205,    206,    207,
4001         208,    209,    210,    211,    212,    213,    214,    215,
4002         216,    217,    218,    219,    220,    221,    222,    223,    
4003         224,    225,    226,    227,    228,    229,    230,    231,
4004         232,    233,    234,    235,    236,    237,    238,    239,
4005         240,    241,    242,    243,    244,    245,    246,    247,
4006         248,    249,    250,    251,    252,    253,    254,    255
4007 };
4008 #else
4009 EXT unsigned char PL_fold_locale[]; /* Unfortunately not EXTCONST. */
4010 #endif
4011 #endif /* !PERL_GLOBAL_STRUCT */
4012
4013 #ifdef DOINIT
4014 #ifdef EBCDIC
4015 EXTCONST unsigned char PL_freq[] = {/* EBCDIC frequencies for mixed English/C */
4016     1,      2,      84,     151,    154,    155,    156,    157,
4017     165,    246,    250,    3,      158,    7,      18,     29,
4018     40,     51,     62,     73,     85,     96,     107,    118,
4019     129,    140,    147,    148,    149,    150,    152,    153,
4020     255,      6,      8,      9,     10,     11,     12,     13,
4021      14,     15,     24,     25,     26,     27,     28,    226,
4022      29,     30,     31,     32,     33,     43,     44,     45,
4023      46,     47,     48,     49,     50,     76,     77,     78,
4024      79,     80,     81,     82,     83,     84,     85,     86,
4025      87,     94,     95,    234,    181,    233,    187,    190,
4026     180,     96,     97,     98,     99,    100,    101,    102,
4027     104,    112,    182,    174,    236,    232,    229,    103,
4028     228,    226,    114,    115,    116,    117,    118,    119,
4029     120,    121,    122,    235,    176,    230,    194,    162,
4030     130,    131,    132,    133,    134,    135,    136,    137,
4031     138,    139,    201,    205,    163,    217,    220,    224,
4032     5,      248,    227,    244,    242,    255,    241,    231,
4033     240,    253,    16,     197,    19,     20,     21,     187,
4034     23,     169,    210,    245,    237,    249,    247,    239,
4035     168,    252,    34,     196,    36,     37,     38,     39,
4036     41,     42,     251,    254,    238,    223,    221,    213,
4037     225,    177,    52,     53,     54,     55,     56,     57,
4038     58,     59,     60,     61,     63,     64,     65,     66,
4039     67,     68,     69,     70,     71,     72,     74,     75,
4040     205,    208,    186,    202,    200,    218,    198,    179,
4041     178,    214,    88,     89,     90,     91,     92,     93,
4042     217,    166,    170,    207,    199,    209,    206,    204,
4043     160,    212,    105,    106,    108,    109,    110,    111,
4044     203,    113,    216,    215,    192,    175,    193,    243,
4045     172,    161,    123,    124,    125,    126,    127,    128,
4046     222,    219,    211,    195,    188,    193,    185,    184,
4047     191,    183,    141,    142,    143,    144,    145,    146
4048 };
4049 #else  /* ascii rather than ebcdic */
4050 EXTCONST unsigned char PL_freq[] = {    /* letter frequencies for mixed English/C */
4051         1,      2,      84,     151,    154,    155,    156,    157,
4052         165,    246,    250,    3,      158,    7,      18,     29,
4053         40,     51,     62,     73,     85,     96,     107,    118,
4054         129,    140,    147,    148,    149,    150,    152,    153,
4055         255,    182,    224,    205,    174,    176,    180,    217,
4056         233,    232,    236,    187,    235,    228,    234,    226,
4057         222,    219,    211,    195,    188,    193,    185,    184,
4058         191,    183,    201,    229,    181,    220,    194,    162,
4059         163,    208,    186,    202,    200,    218,    198,    179,
4060         178,    214,    166,    170,    207,    199,    209,    206,
4061         204,    160,    212,    216,    215,    192,    175,    173,
4062         243,    172,    161,    190,    203,    189,    164,    230,
4063         167,    248,    227,    244,    242,    255,    241,    231,
4064         240,    253,    169,    210,    245,    237,    249,    247,
4065         239,    168,    252,    251,    254,    238,    223,    221,
4066         213,    225,    177,    197,    171,    196,    159,    4,
4067         5,      6,      8,      9,      10,     11,     12,     13,
4068         14,     15,     16,     17,     19,     20,     21,     22,
4069         23,     24,     25,     26,     27,     28,     30,     31,
4070         32,     33,     34,     35,     36,     37,     38,     39,
4071         41,     42,     43,     44,     45,     46,     47,     48,
4072         49,     50,     52,     53,     54,     55,     56,     57,
4073         58,     59,     60,     61,     63,     64,     65,     66,
4074         67,     68,     69,     70,     71,     72,     74,     75,
4075         76,     77,     78,     79,     80,     81,     82,     83,
4076         86,     87,     88,     89,     90,     91,     92,     93,
4077         94,     95,     97,     98,     99,     100,    101,    102,
4078         103,    104,    105,    106,    108,    109,    110,    111,
4079         112,    113,    114,    115,    116,    117,    119,    120,
4080         121,    122,    123,    124,    125,    126,    127,    128,
4081         130,    131,    132,    133,    134,    135,    136,    137,
4082         138,    139,    141,    142,    143,    144,    145,    146
4083 };
4084 #endif
4085 #else
4086 EXTCONST unsigned char PL_freq[];
4087 #endif
4088
4089 #ifdef DEBUGGING
4090 #ifdef DOINIT
4091 EXTCONST char* const PL_block_type[] = {
4092         "NULL",
4093         "SUB",
4094         "EVAL",
4095         "LOOP",
4096         "SUBST",
4097         "BLOCK",
4098         "FORMAT",
4099         "GIVEN",
4100         "WHEN"
4101 };
4102 #else
4103 EXTCONST char* PL_block_type[];
4104 #endif
4105 #endif
4106
4107 END_EXTERN_C
4108
4109 /*****************************************************************************/
4110 /* This lexer/parser stuff is currently global since yacc is hard to reenter */
4111 /*****************************************************************************/
4112 /* XXX This needs to be revisited, since BEGIN makes yacc re-enter... */
4113
4114 #ifdef __Lynx__
4115 /* LynxOS defines these in scsi.h which is included via ioctl.h */
4116 #ifdef FORMAT
4117 #undef FORMAT
4118 #endif
4119 #ifdef SPACE
4120 #undef SPACE
4121 #endif
4122 #endif
4123
4124 #define LEX_NOTPARSING          11      /* borrowed from toke.c */
4125
4126 typedef enum {
4127     XOPERATOR,
4128     XTERM,
4129     XREF,
4130     XSTATE,
4131     XBLOCK,
4132     XATTRBLOCK,
4133     XATTRTERM,
4134     XTERMBLOCK,
4135     XTERMORDORDOR /* evil hack */
4136     /* update exp_name[] in toke.c if adding to this enum */
4137 } expectation;
4138
4139 enum {          /* pass one of these to get_vtbl */
4140     want_vtbl_sv,
4141     want_vtbl_env,
4142     want_vtbl_envelem,
4143     want_vtbl_sig,
4144     want_vtbl_sigelem,
4145     want_vtbl_pack,
4146     want_vtbl_packelem,
4147     want_vtbl_dbline,
4148     want_vtbl_isa,
4149     want_vtbl_isaelem,
4150     want_vtbl_arylen,
4151     want_vtbl_glob,
4152     want_vtbl_mglob,
4153     want_vtbl_nkeys,
4154     want_vtbl_taint,
4155     want_vtbl_substr,
4156     want_vtbl_vec,
4157     want_vtbl_pos,
4158     want_vtbl_bm,
4159     want_vtbl_fm,
4160     want_vtbl_uvar,
4161     want_vtbl_defelem,
4162     want_vtbl_regexp,
4163     want_vtbl_collxfrm,
4164     want_vtbl_amagic,
4165     want_vtbl_amagicelem,
4166     want_vtbl_regdata,
4167     want_vtbl_regdatum,
4168     want_vtbl_backref,
4169     want_vtbl_utf8,
4170     want_vtbl_symtab,
4171     want_vtbl_arylen_p,
4172     want_vtbl_hintselem
4173 };
4174
4175                                 /* Note: the lowest 8 bits are reserved for
4176                                    stuffing into op->op_private */
4177 #define HINT_PRIVATE_MASK       0x000000ff
4178 #define HINT_INTEGER            0x00000001 /* integer pragma */
4179 #define HINT_STRICT_REFS        0x00000002 /* strict pragma */
4180 #define HINT_LOCALE             0x00000004 /* locale pragma */
4181 #define HINT_BYTES              0x00000008 /* bytes pragma */
4182 /* #define HINT_notused10       0x00000010 */
4183                                 /* Note: 20,40,80 used for NATIVE_HINTS */
4184                                 /* currently defined by vms/vmsish.h */
4185
4186 #define HINT_BLOCK_SCOPE        0x00000100
4187 #define HINT_STRICT_SUBS        0x00000200 /* strict pragma */
4188 #define HINT_STRICT_VARS        0x00000400 /* strict pragma */
4189
4190 /* The HINT_NEW_* constants are used by the overload pragma */
4191 #define HINT_NEW_INTEGER        0x00001000
4192 #define HINT_NEW_FLOAT          0x00002000
4193 #define HINT_NEW_BINARY         0x00004000
4194 #define HINT_NEW_STRING         0x00008000
4195 #define HINT_NEW_RE             0x00010000
4196 #define HINT_LOCALIZE_HH        0x00020000 /* %^H needs to be copied */
4197
4198 #define HINT_RE_TAINT           0x00100000 /* re pragma */
4199 #define HINT_RE_EVAL            0x00200000 /* re pragma */
4200
4201 #define HINT_FILETEST_ACCESS    0x00400000 /* filetest pragma */
4202 #define HINT_UTF8               0x00800000 /* utf8 pragma */
4203
4204 /* assertions pragma */
4205 #define HINT_ASSERTING          0x01000000
4206 #define HINT_ASSERTIONSSEEN     0x02000000
4207
4208 /* The following are stored in $^H{sort}, not in PL_hints */
4209 #define HINT_SORT_SORT_BITS     0x000000FF /* allow 256 different ones */
4210 #define HINT_SORT_QUICKSORT     0x00000001
4211 #define HINT_SORT_MERGESORT     0x00000002
4212 #define HINT_SORT_STABLE        0x00000100 /* sort styles (currently one) */
4213
4214 /* Various states of the input record separator SV (rs) */
4215 #define RsSNARF(sv)   (! SvOK(sv))
4216 #define RsSIMPLE(sv)  (SvOK(sv) && (! SvPOK(sv) || SvCUR(sv)))
4217 #define RsPARA(sv)    (SvPOK(sv) && ! SvCUR(sv))
4218 #define RsRECORD(sv)  (SvROK(sv) && (SvIV(SvRV(sv)) > 0))
4219
4220 /* A struct for keeping various DEBUGGING related stuff,
4221  * neatly packed.  Currently only scratch variables for
4222  * constructing debug output are included.  Needed always,
4223  * not just when DEBUGGING, though, because of the re extension. c*/
4224 struct perl_debug_pad {
4225   SV pad[3];
4226 };
4227
4228 #define PERL_DEBUG_PAD(i)       &(PL_debug_pad.pad[i])
4229 #define PERL_DEBUG_PAD_ZERO(i)  (SvPVX(PERL_DEBUG_PAD(i))[0] = 0, \
4230         (((XPV*) SvANY(PERL_DEBUG_PAD(i)))->xpv_cur = 0), \
4231         PERL_DEBUG_PAD(i))
4232
4233 /* Enable variables which are pointers to functions */
4234 typedef void (CPERLscope(*peep_t))(pTHX_ OP* o);
4235 typedef regexp*(CPERLscope(*regcomp_t)) (pTHX_ char* exp, char* xend, PMOP* pm);
4236 typedef I32 (CPERLscope(*regexec_t)) (pTHX_ regexp* prog, char* stringarg,
4237                                       char* strend, char* strbeg, I32 minend,
4238                                       SV* screamer, void* data, U32 flags);
4239 typedef char* (CPERLscope(*re_intuit_start_t)) (pTHX_ regexp *prog, SV *sv,
4240                                                 char *strpos, char *strend,
4241                                                 U32 flags,
4242                                                 struct re_scream_pos_data_s *d);
4243 typedef SV*     (CPERLscope(*re_intuit_string_t)) (pTHX_ regexp *prog);
4244 typedef void    (CPERLscope(*regfree_t)) (pTHX_ struct regexp* r);
4245
4246 typedef void (*DESTRUCTORFUNC_NOCONTEXT_t) (void*);
4247 typedef void (*DESTRUCTORFUNC_t) (pTHX_ void*);
4248 typedef void (*SVFUNC_t) (pTHX_ SV*);
4249 typedef I32  (*SVCOMPARE_t) (pTHX_ SV*, SV*);
4250 typedef void (*XSINIT_t) (pTHX);
4251 typedef void (*ATEXIT_t) (pTHX_ void*);
4252 typedef void (*XSUBADDR_t) (pTHX_ CV *);
4253
4254 /* Set up PERLVAR macros for populating structs */
4255 #define PERLVAR(var,type) type var;
4256 #define PERLVARA(var,n,type) type var[n];
4257 #define PERLVARI(var,type,init) type var;
4258 #define PERLVARIC(var,type,init) type var;
4259 #define PERLVARISC(var,init) const char var[sizeof(init)];
4260
4261 typedef OP* (CPERLscope(*Perl_ppaddr_t))(pTHX);
4262 typedef OP* (CPERLscope(*Perl_check_t)) (pTHX_ OP*);
4263
4264 /* Interpreter exitlist entry */
4265 typedef struct exitlistentry {
4266     void (*fn) (pTHX_ void*);
4267     void *ptr;
4268 } PerlExitListEntry;
4269
4270 /* if you only have signal() and it resets on each signal, FAKE_PERSISTENT_SIGNAL_HANDLERS fixes */
4271 /* These have to be before perlvars.h */
4272 #if !defined(HAS_SIGACTION) && defined(VMS)
4273 #  define  FAKE_PERSISTENT_SIGNAL_HANDLERS
4274 #endif
4275 /* if we're doing kill() with sys$sigprc on VMS, FAKE_DEFAULT_SIGNAL_HANDLERS */
4276 #if defined(KILL_BY_SIGPRC)
4277 #  define  FAKE_DEFAULT_SIGNAL_HANDLERS
4278 #endif
4279
4280 #ifdef PERL_GLOBAL_STRUCT
4281 struct perl_vars {
4282 #  include "perlvars.h"
4283 };
4284
4285 #  ifdef PERL_CORE
4286 #    ifndef PERL_GLOBAL_STRUCT_PRIVATE
4287 EXT struct perl_vars PL_Vars;
4288 EXT struct perl_vars *PL_VarsPtr INIT(&PL_Vars);
4289 #      undef PERL_GET_VARS
4290 #      define PERL_GET_VARS() PL_VarsPtr
4291 #    endif /* !PERL_GLOBAL_STRUCT_PRIVATE */
4292 #  else /* PERL_CORE */
4293 #    if !defined(__GNUC__) || !defined(WIN32)
4294 EXT
4295 #    endif /* WIN32 */
4296 struct perl_vars *PL_VarsPtr;
4297 #    define PL_Vars (*((PL_VarsPtr) \
4298                        ? PL_VarsPtr : (PL_VarsPtr = Perl_GetVars(aTHX))))
4299 #  endif /* PERL_CORE */
4300 #endif /* PERL_GLOBAL_STRUCT */
4301
4302 #if defined(MULTIPLICITY)
4303 /* If we have multiple interpreters define a struct
4304    holding variables which must be per-interpreter
4305    If we don't have threads anything that would have
4306    be per-thread is per-interpreter.
4307 */
4308
4309 struct interpreter {
4310 #  include "thrdvar.h"
4311 #  include "intrpvar.h"
4312 /*
4313  * The following is a buffer where new variables must
4314  * be defined to maintain binary compatibility with previous versions
4315  */
4316 PERLVARA(object_compatibility,30,       char)
4317 };
4318
4319 #else
4320 struct interpreter {
4321     char broiled;
4322 };
4323 #endif /* MULTIPLICITY */
4324
4325 typedef void *Thread;
4326
4327 /* Done with PERLVAR macros for now ... */
4328 #undef PERLVAR
4329 #undef PERLVARA
4330 #undef PERLVARI
4331 #undef PERLVARIC
4332 #undef PERLVARISC
4333
4334 struct tempsym; /* defined in pp_pack.c */
4335
4336 #include "thread.h"
4337 #include "pp.h"
4338
4339 #ifndef PERL_CALLCONV
4340 #  define PERL_CALLCONV
4341 #endif
4342 #undef PERL_CKDEF
4343 #undef PERL_PPDEF
4344 #define PERL_CKDEF(s)   PERL_CALLCONV OP *s (pTHX_ OP *o);
4345 #define PERL_PPDEF(s)   PERL_CALLCONV OP *s (pTHX);
4346
4347 #include "proto.h"
4348
4349 /* this has structure inits, so it cannot be included before here */
4350 #include "opcode.h"
4351
4352 /* The following must follow proto.h as #defines mess up syntax */
4353
4354 #if !defined(PERL_FOR_X2P)
4355 #  include "embedvar.h"
4356 #endif
4357 #ifndef PERL_MAD
4358 #  undef PL_madskills
4359 #  undef PL_xmlfp
4360 #  define PL_madskills 0
4361 #  define PL_xmlfp 0
4362 #endif
4363
4364 /* Now include all the 'global' variables
4365  * If we don't have threads or multiple interpreters
4366  * these include variables that would have been their struct-s
4367  */
4368
4369 #define PERLVAR(var,type) EXT type PL_##var;
4370 #define PERLVARA(var,n,type) EXT type PL_##var[n];
4371 #define PERLVARI(var,type,init) EXT type  PL_##var INIT(init);
4372 #define PERLVARIC(var,type,init) EXTCONST type PL_##var INIT(init);
4373 #define PERLVARISC(var,init) EXTCONST char PL_##var[sizeof(init)] INIT(init);
4374
4375 #if !defined(MULTIPLICITY)
4376 START_EXTERN_C
4377 #  include "intrpvar.h"
4378 #  include "thrdvar.h"
4379 END_EXTERN_C
4380 #endif
4381
4382 #if defined(WIN32)
4383 /* Now all the config stuff is setup we can include embed.h */
4384 #  include "embed.h"
4385 #  ifndef PERL_MAD
4386 #    undef op_getmad
4387 #    define op_getmad(arg,pegop,slot) NOOP
4388 #  endif
4389 #endif
4390
4391 #ifndef PERL_GLOBAL_STRUCT
4392 START_EXTERN_C
4393
4394 #  include "perlvars.h"
4395
4396 END_EXTERN_C
4397 #endif
4398
4399 #undef PERLVAR
4400 #undef PERLVARA
4401 #undef PERLVARI
4402 #undef PERLVARIC
4403
4404 START_EXTERN_C
4405
4406 #ifdef DOINIT
4407 #  define MGVTBL_SET(var,a,b,c,d,e,f,g,h) EXT MGVTBL var = {a,b,c,d,e,f,g,h}
4408 /* Like MGVTBL_SET but with the get magic having a const MG* */
4409 #  define MGVTBL_SET_CONST_MAGIC_GET(var,a,b,c,d,e,f,g,h) EXT MGVTBL var \
4410     = {(int (*)(pTHX_ SV *, MAGIC *))a,b,c,d,e,f,g,h}
4411 #else
4412 #  define MGVTBL_SET(var,a,b,c,d,e,f,g,h) EXT MGVTBL var
4413 #  define MGVTBL_SET_CONST_MAGIC_GET(var,a,b,c,d,e,f,g,h) EXT MGVTBL var
4414 #endif
4415
4416 MGVTBL_SET(
4417     PL_vtbl_sv,
4418     MEMBER_TO_FPTR(Perl_magic_get),
4419     MEMBER_TO_FPTR(Perl_magic_set),
4420     MEMBER_TO_FPTR(Perl_magic_len),
4421     NULL,
4422     NULL,
4423     NULL,
4424     NULL,
4425     NULL
4426 );
4427
4428 MGVTBL_SET(
4429     PL_vtbl_env,
4430     NULL,
4431     MEMBER_TO_FPTR(Perl_magic_set_all_env),
4432     NULL,
4433     MEMBER_TO_FPTR(Perl_magic_clear_all_env),
4434     NULL,
4435     NULL,
4436     NULL,
4437     NULL
4438 );
4439
4440 MGVTBL_SET(
4441     PL_vtbl_envelem,
4442     NULL,
4443     MEMBER_TO_FPTR(Perl_magic_setenv),
4444     NULL,
4445     MEMBER_TO_FPTR(Perl_magic_clearenv),
4446     NULL,
4447     NULL,
4448     NULL,
4449     NULL
4450 );
4451
4452 /* For now, hints magic will also use vtbl_sig, because it is all NULL  */
4453 MGVTBL_SET(
4454     PL_vtbl_sig,
4455     NULL,
4456     NULL,
4457     NULL,
4458     NULL,
4459     NULL,
4460     NULL,
4461     NULL,
4462     NULL
4463 );
4464
4465 #ifdef PERL_MICRO
4466 MGVTBL_SET(
4467     PL_vtbl_sigelem,
4468     NULL,
4469     NULL,
4470     NULL,
4471     NULL,
4472     NULL,
4473     NULL,
4474     NULL,
4475     NULL
4476 );
4477
4478 #else
4479 MGVTBL_SET(
4480     PL_vtbl_sigelem,
4481     MEMBER_TO_FPTR(Perl_magic_getsig),
4482     MEMBER_TO_FPTR(Perl_magic_setsig),
4483     NULL,
4484     MEMBER_TO_FPTR(Perl_magic_clearsig),
4485     NULL,
4486     NULL,
4487     NULL,
4488     NULL
4489 );
4490 #endif
4491
4492 MGVTBL_SET(
4493     PL_vtbl_pack,
4494     NULL,
4495     NULL,
4496     MEMBER_TO_FPTR(Perl_magic_sizepack),
4497     MEMBER_TO_FPTR(Perl_magic_wipepack),
4498     NULL,
4499     NULL,
4500     NULL,
4501     NULL
4502 );
4503
4504 MGVTBL_SET(
4505     PL_vtbl_packelem,
4506     MEMBER_TO_FPTR(Perl_magic_getpack),
4507     MEMBER_TO_FPTR(Perl_magic_setpack),
4508     NULL,
4509     MEMBER_TO_FPTR(Perl_magic_clearpack),
4510     NULL,
4511     NULL,
4512     NULL,
4513     NULL
4514 );
4515
4516 MGVTBL_SET(
4517     PL_vtbl_dbline,
4518     NULL,
4519     MEMBER_TO_FPTR(Perl_magic_setdbline),
4520     NULL,
4521     NULL,
4522     NULL,
4523     NULL,
4524     NULL,
4525     NULL
4526 );
4527
4528 MGVTBL_SET(
4529     PL_vtbl_isa,
4530     NULL,
4531     MEMBER_TO_FPTR(Perl_magic_setisa),
4532     NULL,
4533     MEMBER_TO_FPTR(Perl_magic_setisa),
4534     NULL,
4535     NULL,
4536     NULL,
4537     NULL
4538 );
4539
4540 MGVTBL_SET(
4541     PL_vtbl_isaelem,
4542     NULL,
4543     MEMBER_TO_FPTR(Perl_magic_setisa),
4544     NULL,
4545     NULL,
4546     NULL,
4547     NULL,
4548     NULL,
4549     NULL
4550 );
4551
4552 MGVTBL_SET_CONST_MAGIC_GET(
4553     PL_vtbl_arylen,
4554     MEMBER_TO_FPTR(Perl_magic_getarylen),
4555     MEMBER_TO_FPTR(Perl_magic_setarylen),
4556     NULL,
4557     NULL,
4558     NULL,
4559     NULL,
4560     NULL,
4561     NULL
4562 );
4563
4564 MGVTBL_SET(
4565     PL_vtbl_arylen_p,
4566     NULL,
4567     NULL,
4568     NULL,
4569     NULL,
4570     MEMBER_TO_FPTR(Perl_magic_freearylen_p),
4571     NULL,
4572     NULL,
4573     NULL
4574 );
4575
4576 MGVTBL_SET(
4577     PL_vtbl_mglob,
4578     NULL,
4579     MEMBER_TO_FPTR(Perl_magic_setmglob),
4580     NULL,
4581     NULL,
4582     NULL,
4583     NULL,
4584     NULL,
4585     NULL
4586 );
4587
4588 MGVTBL_SET(
4589     PL_vtbl_nkeys,
4590     MEMBER_TO_FPTR(Perl_magic_getnkeys),
4591     MEMBER_TO_FPTR(Perl_magic_setnkeys),
4592     NULL,
4593     NULL,
4594     NULL,
4595     NULL,
4596     NULL,
4597     NULL
4598 );
4599
4600 MGVTBL_SET(
4601     PL_vtbl_taint,
4602     MEMBER_TO_FPTR(Perl_magic_gettaint),
4603     MEMBER_TO_FPTR(Perl_magic_settaint),
4604     NULL,
4605     NULL,
4606     NULL,
4607     NULL,
4608     NULL,
4609     NULL
4610 );
4611
4612 MGVTBL_SET(
4613     PL_vtbl_substr,
4614     MEMBER_TO_FPTR(Perl_magic_getsubstr),
4615     MEMBER_TO_FPTR(Perl_magic_setsubstr),
4616     NULL,
4617     NULL,
4618     NULL,
4619     NULL,
4620     NULL,
4621     NULL
4622 );
4623
4624 MGVTBL_SET(
4625     PL_vtbl_vec,
4626     MEMBER_TO_FPTR(Perl_magic_getvec),
4627     MEMBER_TO_FPTR(Perl_magic_setvec),
4628     NULL,
4629     NULL,
4630     NULL,
4631     NULL,
4632     NULL,
4633     NULL
4634 );
4635
4636 MGVTBL_SET(
4637     PL_vtbl_pos,
4638     MEMBER_TO_FPTR(Perl_magic_getpos),
4639     MEMBER_TO_FPTR(Perl_magic_setpos),
4640     NULL,
4641     NULL,
4642     NULL,
4643     NULL,
4644     NULL,
4645     NULL
4646 );
4647
4648 MGVTBL_SET(
4649     PL_vtbl_bm,
4650     NULL,
4651     MEMBER_TO_FPTR(Perl_magic_setbm),
4652     NULL,
4653     NULL,
4654     NULL,
4655     NULL,
4656     NULL,
4657     NULL
4658 );
4659
4660 MGVTBL_SET(
4661     PL_vtbl_fm,
4662     NULL,
4663     MEMBER_TO_FPTR(Perl_magic_setfm),
4664     NULL,
4665     NULL,
4666     NULL,
4667     NULL,
4668     NULL,
4669     NULL
4670 );
4671
4672 MGVTBL_SET(
4673     PL_vtbl_uvar,
4674     MEMBER_TO_FPTR(Perl_magic_getuvar),
4675     MEMBER_TO_FPTR(Perl_magic_setuvar),
4676     NULL,
4677     NULL,
4678     NULL,
4679     NULL,
4680     NULL,
4681     NULL
4682 );
4683
4684 MGVTBL_SET(
4685     PL_vtbl_defelem,
4686     MEMBER_TO_FPTR(Perl_magic_getdefelem),
4687     MEMBER_TO_FPTR(Perl_magic_setdefelem),
4688     NULL,
4689     NULL,
4690     NULL,
4691     NULL,
4692     NULL,
4693     NULL
4694 );
4695
4696 MGVTBL_SET(
4697     PL_vtbl_regexp,
4698     NULL,
4699     MEMBER_TO_FPTR(Perl_magic_setregexp),
4700     NULL,
4701     NULL,
4702     MEMBER_TO_FPTR(Perl_magic_freeregexp),
4703     NULL,
4704     NULL,
4705     NULL
4706 );
4707
4708 MGVTBL_SET(
4709     PL_vtbl_regdata,
4710     NULL,
4711     NULL,
4712     MEMBER_TO_FPTR(Perl_magic_regdata_cnt),
4713     NULL,
4714     NULL,
4715     NULL,
4716     NULL,
4717     NULL
4718 );
4719
4720 MGVTBL_SET(
4721     PL_vtbl_regdatum,
4722     MEMBER_TO_FPTR(Perl_magic_regdatum_get),
4723     MEMBER_TO_FPTR(Perl_magic_regdatum_set),
4724     NULL,
4725     NULL,
4726     NULL,
4727     NULL,
4728     NULL,
4729     NULL
4730 );
4731
4732 MGVTBL_SET(
4733     PL_vtbl_amagic,
4734     NULL,
4735     MEMBER_TO_FPTR(Perl_magic_setamagic),
4736     NULL,
4737     NULL,
4738     MEMBER_TO_FPTR(Perl_magic_setamagic),
4739     NULL,
4740     NULL,
4741     NULL
4742 );
4743
4744 MGVTBL_SET(
4745     PL_vtbl_amagicelem,
4746     NULL,
4747     MEMBER_TO_FPTR(Perl_magic_setamagic),
4748     NULL,
4749     NULL,
4750     MEMBER_TO_FPTR(Perl_magic_setamagic),
4751     NULL,
4752     NULL,
4753     NULL
4754 );
4755
4756 MGVTBL_SET(
4757     PL_vtbl_backref,
4758     NULL,
4759     NULL,
4760     NULL,
4761     NULL,
4762     MEMBER_TO_FPTR(Perl_magic_killbackrefs),
4763     NULL,
4764     NULL,
4765     NULL
4766 );
4767
4768 MGVTBL_SET(
4769     PL_vtbl_ovrld,
4770     NULL,
4771     NULL,
4772     NULL,
4773     NULL,
4774     MEMBER_TO_FPTR(Perl_magic_freeovrld),
4775     NULL,
4776     NULL,
4777     NULL
4778 );
4779
4780 MGVTBL_SET(
4781     PL_vtbl_utf8,
4782     NULL,
4783     MEMBER_TO_FPTR(Perl_magic_setutf8),
4784     NULL,
4785     NULL,
4786     NULL,
4787     NULL,
4788     NULL,
4789     NULL
4790 );
4791 #ifdef USE_LOCALE_COLLATE
4792 MGVTBL_SET(
4793     PL_vtbl_collxfrm,
4794     NULL,
4795     MEMBER_TO_FPTR(Perl_magic_setcollxfrm),
4796     NULL,
4797     NULL,
4798     NULL,
4799     NULL,
4800     NULL,
4801     NULL
4802 );
4803 #endif
4804
4805 MGVTBL_SET(
4806     PL_vtbl_hintselem,
4807     NULL,
4808     MEMBER_TO_FPTR(Perl_magic_sethint),
4809     NULL,
4810     MEMBER_TO_FPTR(Perl_magic_clearhint),
4811     NULL,
4812     NULL,
4813     NULL,
4814     NULL
4815 );
4816
4817
4818 enum {
4819   fallback_amg,        abs_amg,
4820   bool__amg,   nomethod_amg,
4821   string_amg,  numer_amg,
4822   add_amg,     add_ass_amg,
4823   subtr_amg,   subtr_ass_amg,
4824   mult_amg,    mult_ass_amg,
4825   div_amg,     div_ass_amg,
4826   modulo_amg,  modulo_ass_amg,
4827   pow_amg,     pow_ass_amg,
4828   lshift_amg,  lshift_ass_amg,
4829   rshift_amg,  rshift_ass_amg,
4830   band_amg,    band_ass_amg,
4831   bor_amg,     bor_ass_amg,
4832   bxor_amg,    bxor_ass_amg,
4833   lt_amg,      le_amg,
4834   gt_amg,      ge_amg,
4835   eq_amg,      ne_amg,
4836   ncmp_amg,    scmp_amg,
4837   slt_amg,     sle_amg,
4838   sgt_amg,     sge_amg,
4839   seq_amg,     sne_amg,
4840   not_amg,     compl_amg,
4841   inc_amg,     dec_amg,
4842   atan2_amg,   cos_amg,
4843   sin_amg,     exp_amg,
4844   log_amg,     sqrt_amg,
4845   repeat_amg,   repeat_ass_amg,
4846   concat_amg,  concat_ass_amg,
4847   copy_amg,    neg_amg,
4848   to_sv_amg,   to_av_amg,
4849   to_hv_amg,   to_gv_amg,
4850   to_cv_amg,   iter_amg,
4851   int_amg,     smart_amg,
4852
4853   /* Note: Perl_Gv_AMupdate() assumes that DESTROY is the last entry */
4854   DESTROY_amg,
4855   max_amg_code
4856   /* Do not leave a trailing comma here.  C9X allows it, C89 doesn't. */
4857 };
4858
4859 #define NofAMmeth max_amg_code
4860 #define AMG_id2name(id) (PL_AMG_names[id]+1)
4861
4862 #ifdef DOINIT
4863 EXTCONST char * const PL_AMG_names[NofAMmeth] = {
4864   /* Names kept in the symbol table.  fallback => "()", the rest has
4865      "(" prepended.  The only other place in perl which knows about
4866      this convention is AMG_id2name (used for debugging output and
4867      'nomethod' only), the only other place which has it hardwired is
4868      overload.pm.  */
4869   "()",         "(abs",                 /* "fallback" should be the first. */
4870   "(bool",      "(nomethod",
4871   "(\"\"",      "(0+",
4872   "(+",         "(+=",
4873   "(-",         "(-=",
4874   "(*",         "(*=",
4875   "(/",         "(/=",
4876   "(%",         "(%=",
4877   "(**",        "(**=",
4878   "(<<",        "(<<=",
4879   "(>>",        "(>>=",
4880   "(&",         "(&=",
4881   "(|",         "(|=",
4882   "(^",         "(^=",
4883   "(<",         "(<=",
4884   "(>",         "(>=",
4885   "(==",        "(!=",
4886   "(<=>",       "(cmp",
4887   "(lt",        "(le",
4888   "(gt",        "(ge",
4889   "(eq",        "(ne",
4890   "(!",         "(~",
4891   "(++",        "(--",
4892   "(atan2",     "(cos",
4893   "(sin",       "(exp",
4894   "(log",       "(sqrt",
4895   "(x",         "(x=",
4896   "(.",         "(.=",
4897   "(=",         "(neg",
4898   "(${}",       "(@{}",
4899   "(%{}",       "(*{}",
4900   "(&{}",       "(<>",
4901   "(int",       "(~~",
4902   "DESTROY"
4903 };
4904 #else
4905 EXTCONST char * PL_AMG_names[NofAMmeth];
4906 #endif /* def INITAMAGIC */
4907
4908 END_EXTERN_C
4909
4910 struct am_table {
4911   U32 was_ok_sub;
4912   long was_ok_am;
4913   U32 flags;
4914   CV* table[NofAMmeth];
4915   long fallback;
4916 };
4917 struct am_table_short {
4918   U32 was_ok_sub;
4919   long was_ok_am;
4920   U32 flags;
4921 };
4922 typedef struct am_table AMT;
4923 typedef struct am_table_short AMTS;
4924
4925 #define AMGfallNEVER    1
4926 #define AMGfallNO       2
4927 #define AMGfallYES      3
4928
4929 #define AMTf_AMAGIC             1
4930 #define AMTf_OVERLOADED         2
4931 #define AMT_AMAGIC(amt)         ((amt)->flags & AMTf_AMAGIC)
4932 #define AMT_AMAGIC_on(amt)      ((amt)->flags |= AMTf_AMAGIC)
4933 #define AMT_AMAGIC_off(amt)     ((amt)->flags &= ~AMTf_AMAGIC)
4934 #define AMT_OVERLOADED(amt)     ((amt)->flags & AMTf_OVERLOADED)
4935 #define AMT_OVERLOADED_on(amt)  ((amt)->flags |= AMTf_OVERLOADED)
4936 #define AMT_OVERLOADED_off(amt) ((amt)->flags &= ~AMTf_OVERLOADED)
4937
4938 #define StashHANDLER(stash,meth)        gv_handler((stash),CAT2(meth,_amg))
4939
4940 /*
4941  * some compilers like to redefine cos et alia as faster
4942  * (and less accurate?) versions called F_cos et cetera (Quidquid
4943  * latine dictum sit, altum viditur.)  This trick collides with
4944  * the Perl overloading (amg).  The following #defines fool both.
4945  */
4946
4947 #ifdef _FASTMATH
4948 #   ifdef atan2
4949 #       define F_atan2_amg  atan2_amg
4950 #   endif
4951 #   ifdef cos
4952 #       define F_cos_amg    cos_amg
4953 #   endif
4954 #   ifdef exp
4955 #       define F_exp_amg    exp_amg
4956 #   endif
4957 #   ifdef log
4958 #       define F_log_amg    log_amg
4959 #   endif
4960 #   ifdef pow
4961 #       define F_pow_amg    pow_amg
4962 #   endif
4963 #   ifdef sin
4964 #       define F_sin_amg    sin_amg
4965 #   endif
4966 #   ifdef sqrt
4967 #       define F_sqrt_amg   sqrt_amg
4968 #   endif
4969 #endif /* _FASTMATH */
4970
4971 #define PERLDB_ALL              (PERLDBf_SUB    | PERLDBf_LINE  |       \
4972                                  PERLDBf_NOOPT  | PERLDBf_INTER |       \
4973                                  PERLDBf_SUBLINE| PERLDBf_SINGLE|       \
4974                                  PERLDBf_NAMEEVAL| PERLDBf_NAMEANON )
4975                                         /* No _NONAME, _GOTO, _ASSERTION */
4976 #define PERLDBf_SUB             0x01    /* Debug sub enter/exit */
4977 #define PERLDBf_LINE            0x02    /* Keep line # */
4978 #define PERLDBf_NOOPT           0x04    /* Switch off optimizations */
4979 #define PERLDBf_INTER           0x08    /* Preserve more data for
4980                                            later inspections  */
4981 #define PERLDBf_SUBLINE         0x10    /* Keep subr source lines */
4982 #define PERLDBf_SINGLE          0x20    /* Start with single-step on */
4983 #define PERLDBf_NONAME          0x40    /* For _SUB: no name of the subr */
4984 #define PERLDBf_GOTO            0x80    /* Report goto: call DB::goto */
4985 #define PERLDBf_NAMEEVAL        0x100   /* Informative names for evals */
4986 #define PERLDBf_NAMEANON        0x200   /* Informative names for anon subs */
4987 #define PERLDBf_ASSERTION       0x400   /* Debug assertion subs enter/exit */
4988
4989 #define PERLDB_SUB      (PL_perldb && (PL_perldb & PERLDBf_SUB))
4990 #define PERLDB_LINE     (PL_perldb && (PL_perldb & PERLDBf_LINE))
4991 #define PERLDB_NOOPT    (PL_perldb && (PL_perldb & PERLDBf_NOOPT))
4992 #define PERLDB_INTER    (PL_perldb && (PL_perldb & PERLDBf_INTER))
4993 #define PERLDB_SUBLINE  (PL_perldb && (PL_perldb & PERLDBf_SUBLINE))
4994 #define PERLDB_SINGLE   (PL_perldb && (PL_perldb & PERLDBf_SINGLE))
4995 #define PERLDB_SUB_NN   (PL_perldb && (PL_perldb & (PERLDBf_NONAME)))
4996 #define PERLDB_GOTO     (PL_perldb && (PL_perldb & PERLDBf_GOTO))
4997 #define PERLDB_NAMEEVAL (PL_perldb && (PL_perldb & PERLDBf_NAMEEVAL))
4998 #define PERLDB_NAMEANON (PL_perldb && (PL_perldb & PERLDBf_NAMEANON))
4999 #define PERLDB_ASSERTION (PL_perldb && (PL_perldb & PERLDBf_ASSERTION))
5000
5001 #ifdef USE_LOCALE_NUMERIC
5002
5003 #define SET_NUMERIC_STANDARD() \
5004         set_numeric_standard();
5005
5006 #define SET_NUMERIC_LOCAL() \
5007         set_numeric_local();
5008
5009 #define IN_LOCALE_RUNTIME       (CopHINTS_get(PL_curcop) & HINT_LOCALE)
5010 #define IN_LOCALE_COMPILETIME   (PL_hints & HINT_LOCALE)
5011
5012 #define IN_LOCALE \
5013         (IN_PERL_COMPILETIME ? IN_LOCALE_COMPILETIME : IN_LOCALE_RUNTIME)
5014
5015 #define STORE_NUMERIC_LOCAL_SET_STANDARD() \
5016         bool was_local = PL_numeric_local && IN_LOCALE; \
5017         if (was_local) SET_NUMERIC_STANDARD();
5018
5019 #define STORE_NUMERIC_STANDARD_SET_LOCAL() \
5020         bool was_standard = PL_numeric_standard && IN_LOCALE; \
5021         if (was_standard) SET_NUMERIC_LOCAL();
5022
5023 #define RESTORE_NUMERIC_LOCAL() \
5024         if (was_local) SET_NUMERIC_LOCAL();
5025
5026 #define RESTORE_NUMERIC_STANDARD() \
5027         if (was_standard) SET_NUMERIC_STANDARD();
5028
5029 #define Atof                            my_atof
5030
5031 #else /* !USE_LOCALE_NUMERIC */
5032
5033 #define SET_NUMERIC_STANDARD()          /**/
5034 #define SET_NUMERIC_LOCAL()             /**/
5035 #define IS_NUMERIC_RADIX(a, b)          (0)
5036 #define STORE_NUMERIC_LOCAL_SET_STANDARD()      /**/
5037 #define STORE_NUMERIC_STANDARD_SET_LOCAL()      /**/
5038 #define RESTORE_NUMERIC_LOCAL()         /**/
5039 #define RESTORE_NUMERIC_STANDARD()      /**/
5040 #define Atof                            my_atof
5041 #define IN_LOCALE_RUNTIME               0
5042
5043 #endif /* !USE_LOCALE_NUMERIC */
5044
5045 #if !defined(Strtol) && defined(USE_64_BIT_INT) && defined(IV_IS_QUAD) && QUADKIND == QUAD_IS_LONG_LONG
5046 #    ifdef __hpux
5047 #        define strtoll __strtoll       /* secret handshake */
5048 #    endif
5049 #    ifdef WIN64
5050 #        define strtoll _strtoi64       /* secret handshake */
5051 #    endif
5052 #   if !defined(Strtol) && defined(HAS_STRTOLL)
5053 #       define Strtol   strtoll
5054 #   endif
5055 #    if !defined(Strtol) && defined(HAS_STRTOQ)
5056 #       define Strtol   strtoq
5057 #    endif
5058 /* is there atoq() anywhere? */
5059 #endif
5060 #if !defined(Strtol) && defined(HAS_STRTOL)
5061 #   define Strtol       strtol
5062 #endif
5063 #ifndef Atol
5064 /* It would be more fashionable to use Strtol() to define atol()
5065  * (as is done for Atoul(), see below) but for backward compatibility
5066  * we just assume atol(). */
5067 #   if defined(USE_64_BIT_INT) && defined(IV_IS_QUAD) && QUADKIND == QUAD_IS_LONG_LONG && defined(HAS_ATOLL)
5068 #    ifdef WIN64
5069 #       define atoll    _atoi64         /* secret handshake */
5070 #    endif
5071 #       define Atol     atoll
5072 #   else
5073 #       define Atol     atol
5074 #   endif
5075 #endif
5076
5077 #if !defined(Strtoul) && defined(USE_64_BIT_INT) && defined(UV_IS_QUAD) && QUADKIND == QUAD_IS_LONG_LONG
5078 #    ifdef __hpux
5079 #        define strtoull __strtoull     /* secret handshake */
5080 #    endif
5081 #    ifdef WIN64
5082 #        define strtoull _strtoui64     /* secret handshake */
5083 #    endif
5084 #    if !defined(Strtoul) && defined(HAS_STRTOULL)
5085 #       define Strtoul  strtoull
5086 #    endif
5087 #    if !defined(Strtoul) && defined(HAS_STRTOUQ)
5088 #       define Strtoul  strtouq
5089 #    endif
5090 /* is there atouq() anywhere? */
5091 #endif
5092 #if !defined(Strtoul) && defined(HAS_STRTOUL)
5093 #   define Strtoul      strtoul
5094 #endif
5095 #if !defined(Strtoul) && defined(HAS_STRTOL) /* Last resort. */
5096 #   define Strtoul(s, e, b)     strchr((s), '-') ? ULONG_MAX : (unsigned long)strtol((s), (e), (b))
5097 #endif
5098 #ifndef Atoul
5099 #   define Atoul(s)     Strtoul(s, NULL, 10)
5100 #endif
5101
5102
5103 /* if these never got defined, they need defaults */
5104 #ifndef PERL_SET_CONTEXT
5105 #  define PERL_SET_CONTEXT(i)           PERL_SET_INTERP(i)
5106 #endif
5107
5108 #ifndef PERL_GET_CONTEXT
5109 #  define PERL_GET_CONTEXT              PERL_GET_INTERP
5110 #endif
5111
5112 #ifndef PERL_GET_THX
5113 #  define PERL_GET_THX                  ((void*)NULL)
5114 #endif
5115
5116 #ifndef PERL_SET_THX
5117 #  define PERL_SET_THX(t)               NOOP
5118 #endif
5119
5120 #ifndef PERL_SCRIPT_MODE
5121 #define PERL_SCRIPT_MODE "r"
5122 #endif
5123
5124 /*
5125  * Some operating systems are stingy with stack allocation,
5126  * so perl may have to guard against stack overflow.
5127  */
5128 #ifndef PERL_STACK_OVERFLOW_CHECK
5129 #define PERL_STACK_OVERFLOW_CHECK()  NOOP
5130 #endif
5131
5132 /*
5133  * Some nonpreemptive operating systems find it convenient to
5134  * check for asynchronous conditions after each op execution.
5135  * Keep this check simple, or it may slow down execution
5136  * massively.
5137  */
5138
5139 #ifndef PERL_MICRO
5140 #       ifndef PERL_ASYNC_CHECK
5141 #               define PERL_ASYNC_CHECK() if (PL_sig_pending) despatch_signals()
5142 #       endif
5143 #endif
5144
5145 #ifndef PERL_ASYNC_CHECK
5146 #   define PERL_ASYNC_CHECK()  NOOP
5147 #endif
5148
5149 /*
5150  * On some operating systems, a memory allocation may succeed,
5151  * but put the process too close to the system's comfort limit.
5152  * In this case, PERL_ALLOC_CHECK frees the pointer and sets
5153  * it to NULL.
5154  */
5155 #ifndef PERL_ALLOC_CHECK
5156 #define PERL_ALLOC_CHECK(p)  NOOP
5157 #endif
5158
5159 #ifdef HAS_SEM
5160 #   include <sys/ipc.h>
5161 #   include <sys/sem.h>
5162 #   ifndef HAS_UNION_SEMUN      /* Provide the union semun. */
5163     union semun {
5164         int             val;
5165         struct semid_ds *buf;
5166         unsigned short  *array;
5167     };
5168 #   endif
5169 #   ifdef USE_SEMCTL_SEMUN
5170 #       ifdef IRIX32_SEMUN_BROKEN_BY_GCC
5171             union gccbug_semun {
5172                 int             val;
5173                 struct semid_ds *buf;
5174                 unsigned short  *array;
5175                 char            __dummy[5];
5176             };
5177 #           define semun gccbug_semun
5178 #       endif
5179 #       define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun)
5180 #   else
5181 #       ifdef USE_SEMCTL_SEMID_DS
5182 #           ifdef EXTRA_F_IN_SEMUN_BUF
5183 #               define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buff)
5184 #           else
5185 #               define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buf)
5186 #           endif
5187 #       endif
5188 #   endif
5189 #endif
5190
5191 /*
5192  * Boilerplate macros for initializing and accessing interpreter-local
5193  * data from C.  All statics in extensions should be reworked to use
5194  * this, if you want to make the extension thread-safe.  See ext/re/re.xs
5195  * for an example of the use of these macros, and perlxs.pod for more.
5196  *
5197  * Code that uses these macros is responsible for the following:
5198  * 1. #define MY_CXT_KEY to a unique string, e.g.
5199  *    "DynaLoader::_guts" XS_VERSION
5200  *    XXX in the current implementation, this string is ignored.
5201  * 2. Declare a typedef named my_cxt_t that is a structure that contains
5202  *    all the data that needs to be interpreter-local.
5203  * 3. Use the START_MY_CXT macro after the declaration of my_cxt_t.
5204  * 4. Use the MY_CXT_INIT macro such that it is called exactly once
5205  *    (typically put in the BOOT: section).
5206  * 5. Use the members of the my_cxt_t structure everywhere as
5207  *    MY_CXT.member.
5208  * 6. Use the dMY_CXT macro (a declaration) in all the functions that
5209  *    access MY_CXT.
5210  */
5211
5212 #if defined(PERL_IMPLICIT_CONTEXT)
5213
5214 /* This must appear in all extensions that define a my_cxt_t structure,
5215  * right after the definition (i.e. at file scope).  The non-threads
5216  * case below uses it to declare the data as static. */
5217 #define START_MY_CXT static int my_cxt_index = -1;
5218
5219 /* This declaration should be used within all functions that use the
5220  * interpreter-local data. */
5221 #define dMY_CXT \
5222         my_cxt_t *my_cxtp = (my_cxt_t *)PL_my_cxt_list[my_cxt_index]
5223 #define dMY_CXT_INTERP(my_perl) \
5224         my_cxt_t *my_cxtp = (my_cxt_t *)(my_perl)->Imy_cxt_list[my_cxt_index]
5225
5226 /* Creates and zeroes the per-interpreter data.
5227  * (We allocate my_cxtp in a Perl SV so that it will be released when
5228  * the interpreter goes away.) */
5229 #define MY_CXT_INIT \
5230         my_cxt_t *my_cxtp = \
5231             (my_cxt_t*)Perl_my_cxt_init(aTHX_ &my_cxt_index, sizeof(my_cxt_t))
5232 #define MY_CXT_INIT_INTERP(my_perl) \
5233         my_cxt_t *my_cxtp = \
5234             (my_cxt_t*)Perl_my_cxt_init(my_perl, &my_cxt_index, sizeof(my_cxt_t))
5235
5236 /* Clones the per-interpreter data. */
5237 #define MY_CXT_CLONE \
5238         my_cxt_t *my_cxtp = (my_cxt_t*)SvPVX(newSV(sizeof(my_cxt_t)-1));\
5239         Copy(PL_my_cxt_list[my_cxt_index], my_cxtp, 1, my_cxt_t);\
5240         PL_my_cxt_list[my_cxt_index] = my_cxtp                          \
5241
5242 /* This macro must be used to access members of the my_cxt_t structure.
5243  * e.g. MYCXT.some_data */
5244 #define MY_CXT          (*my_cxtp)
5245
5246 /* Judicious use of these macros can reduce the number of times dMY_CXT
5247  * is used.  Use is similar to pTHX, aTHX etc. */
5248 #define pMY_CXT         my_cxt_t *my_cxtp
5249 #define pMY_CXT_        pMY_CXT,
5250 #define _pMY_CXT        ,pMY_CXT
5251 #define aMY_CXT         my_cxtp
5252 #define aMY_CXT_        aMY_CXT,
5253 #define _aMY_CXT        ,aMY_CXT
5254
5255 #else /* PERL_IMPLICIT_CONTEXT */
5256
5257 #define START_MY_CXT    static my_cxt_t my_cxt;
5258 #define dMY_CXT_SV      dNOOP
5259 #define dMY_CXT         dNOOP
5260 #define MY_CXT_INIT     NOOP
5261 #define MY_CXT_CLONE    NOOP
5262 #define MY_CXT          my_cxt
5263
5264 #define pMY_CXT         void
5265 #define pMY_CXT_
5266 #define _pMY_CXT
5267 #define aMY_CXT
5268 #define aMY_CXT_
5269 #define _aMY_CXT
5270
5271 #endif /* !defined(PERL_IMPLICIT_CONTEXT) */
5272
5273 #ifdef I_FCNTL
5274 #  include <fcntl.h>
5275 #endif
5276
5277 #ifdef __Lynx__
5278 #  include <fcntl.h>
5279 #endif
5280
5281 #ifdef I_SYS_FILE
5282 #  include <sys/file.h>
5283 #endif
5284
5285 #if defined(HAS_FLOCK) && !defined(HAS_FLOCK_PROTO)
5286 int flock(int fd, int op);
5287 #endif
5288
5289 #ifndef O_RDONLY
5290 /* Assume UNIX defaults */
5291 #    define O_RDONLY    0000
5292 #    define O_WRONLY    0001
5293 #    define O_RDWR      0002
5294 #    define O_CREAT     0100
5295 #endif
5296
5297 #ifndef O_BINARY
5298 #  define O_BINARY 0
5299 #endif
5300
5301 #ifndef O_TEXT
5302 #  define O_TEXT 0
5303 #endif
5304
5305 #if O_TEXT != O_BINARY
5306     /* If you have different O_TEXT and O_BINARY and you are a CLRF shop,
5307      * that is, you are somehow DOSish. */
5308 #   if defined(__BEOS__) || defined(__VOS__) || defined(__CYGWIN__)
5309     /* BeOS has O_TEXT != O_BINARY but O_TEXT and O_BINARY have no effect;
5310      * BeOS is always UNIXoid (LF), not DOSish (CRLF). */
5311     /* VOS has O_TEXT != O_BINARY, and they have effect,
5312      * but VOS always uses LF, never CRLF. */
5313     /* If you have O_TEXT different from your O_BINARY but you still are
5314      * not a CRLF shop. */
5315 #       undef PERLIO_USING_CRLF
5316 #   else
5317     /* If you really are DOSish. */
5318 #      define PERLIO_USING_CRLF 1
5319 #   endif
5320 #endif
5321
5322 #ifdef IAMSUID
5323
5324 #ifdef I_SYS_STATVFS
5325 #   if defined(PERL_SCO) && !defined(_SVID3)
5326 #       define _SVID3
5327 #   endif
5328 #   include <sys/statvfs.h>     /* for f?statvfs() */
5329 #endif
5330 #ifdef I_SYS_MOUNT
5331 #   include <sys/mount.h>       /* for *BSD f?statfs() */
5332 #endif
5333 #ifdef I_MNTENT
5334 #   include <mntent.h>          /* for getmntent() */
5335 #endif
5336 #ifdef I_SYS_STATFS
5337 #   include <sys/statfs.h>      /* for some statfs() */
5338 #endif
5339 #ifdef I_SYS_VFS
5340 #  ifdef __sgi
5341 #    define sv IRIX_sv          /* kludge: IRIX has an sv of its own */
5342 #  endif
5343 #    include <sys/vfs.h>        /* for some statfs() */
5344 #  ifdef __sgi
5345 #    undef IRIX_sv
5346 #  endif
5347 #endif
5348 #ifdef I_USTAT
5349 #   include <ustat.h>           /* for ustat() */
5350 #endif
5351
5352 #if !defined(PERL_MOUNT_NOSUID) && defined(MOUNT_NOSUID)
5353 #    define PERL_MOUNT_NOSUID MOUNT_NOSUID
5354 #endif
5355 #if !defined(PERL_MOUNT_NOSUID) && defined(MNT_NOSUID)
5356 #    define PERL_MOUNT_NOSUID MNT_NOSUID
5357 #endif
5358 #if !defined(PERL_MOUNT_NOSUID) && defined(MS_NOSUID)
5359 #   define PERL_MOUNT_NOSUID MS_NOSUID
5360 #endif
5361 #if !defined(PERL_MOUNT_NOSUID) && defined(M_NOSUID)
5362 #   define PERL_MOUNT_NOSUID M_NOSUID
5363 #endif
5364
5365 #if !defined(PERL_MOUNT_NOEXEC) && defined(MOUNT_NOEXEC)
5366 #    define PERL_MOUNT_NOEXEC MOUNT_NOEXEC
5367 #endif
5368 #if !defined(PERL_MOUNT_NOEXEC) && defined(MNT_NOEXEC)
5369 #    define PERL_MOUNT_NOEXEC MNT_NOEXEC
5370 #endif
5371 #if !defined(PERL_MOUNT_NOEXEC) && defined(MS_NOEXEC)
5372 #   define PERL_MOUNT_NOEXEC MS_NOEXEC
5373 #endif
5374 #if !defined(PERL_MOUNT_NOEXEC) && defined(M_NOEXEC)
5375 #   define PERL_MOUNT_NOEXEC M_NOEXEC
5376 #endif
5377
5378 #endif /* IAMSUID */
5379
5380 #ifdef I_LIBUTIL
5381 #   include <libutil.h>         /* setproctitle() in some FreeBSDs */
5382 #endif
5383
5384 #ifndef EXEC_ARGV_CAST
5385 #define EXEC_ARGV_CAST(x) x
5386 #endif
5387
5388 #define IS_NUMBER_IN_UV               0x01 /* number within UV range (maybe not
5389                                               int).  value returned in pointed-
5390                                               to UV */
5391 #define IS_NUMBER_GREATER_THAN_UV_MAX 0x02 /* pointed to UV undefined */
5392 #define IS_NUMBER_NOT_INT             0x04 /* saw . or E notation */
5393 #define IS_NUMBER_NEG                 0x08 /* leading minus sign */
5394 #define IS_NUMBER_INFINITY            0x10 /* this is big */
5395 #define IS_NUMBER_NAN                 0x20 /* this is not */
5396
5397 #define GROK_NUMERIC_RADIX(sp, send) grok_numeric_radix(sp, send)
5398
5399 /* Input flags: */
5400 #define PERL_SCAN_ALLOW_UNDERSCORES   0x01 /* grok_??? accept _ in numbers */
5401 #define PERL_SCAN_DISALLOW_PREFIX     0x02 /* grok_??? reject 0x in hex etc */
5402 #define PERL_SCAN_SILENT_ILLDIGIT     0x04 /* grok_??? not warn about illegal digits */
5403 /* Output flags: */
5404 #define PERL_SCAN_GREATER_THAN_UV_MAX 0x02 /* should this merge with above? */
5405
5406 /* to let user control profiling */
5407 #ifdef PERL_GPROF_CONTROL
5408 extern void moncontrol(int);
5409 #define PERL_GPROF_MONCONTROL(x) moncontrol(x)
5410 #else
5411 #define PERL_GPROF_MONCONTROL(x)
5412 #endif
5413
5414 #ifdef UNDER_CE
5415 #include "wince.h"
5416 #endif
5417
5418 /* ISO 6429 NEL - C1 control NExt Line */
5419 /* See http://www.unicode.org/unicode/reports/tr13/ */
5420 #ifdef EBCDIC   /* In EBCDIC NEL is just an alias for LF */
5421 #   if '^' == 95        /* CP 1047: MVS OpenEdition - OS/390 - z/OS */
5422 #       define NEXT_LINE_CHAR   0x15
5423 #   else                /* CDRA */
5424 #       define NEXT_LINE_CHAR   0x25
5425 #   endif
5426 #else
5427 #   define NEXT_LINE_CHAR       0x85
5428 #endif
5429
5430 /* The UTF-8 bytes of the Unicode LS and PS, U+2028 and U+2029 */
5431 #define UNICODE_LINE_SEPA_0     0xE2
5432 #define UNICODE_LINE_SEPA_1     0x80
5433 #define UNICODE_LINE_SEPA_2     0xA8
5434 #define UNICODE_PARA_SEPA_0     0xE2
5435 #define UNICODE_PARA_SEPA_1     0x80
5436 #define UNICODE_PARA_SEPA_2     0xA9
5437
5438 #ifndef PIPESOCK_MODE
5439 #  define PIPESOCK_MODE
5440 #endif
5441
5442 #ifndef SOCKET_OPEN_MODE
5443 #  define SOCKET_OPEN_MODE      PIPESOCK_MODE
5444 #endif
5445
5446 #ifndef PIPE_OPEN_MODE
5447 #  define PIPE_OPEN_MODE        PIPESOCK_MODE
5448 #endif
5449
5450 #define PERL_MAGIC_UTF8_CACHESIZE       2
5451
5452 #define PERL_UNICODE_STDIN_FLAG                 0x0001
5453 #define PERL_UNICODE_STDOUT_FLAG                0x0002
5454 #define PERL_UNICODE_STDERR_FLAG                0x0004
5455 #define PERL_UNICODE_IN_FLAG                    0x0008
5456 #define PERL_UNICODE_OUT_FLAG                   0x0010
5457 #define PERL_UNICODE_ARGV_FLAG                  0x0020
5458 #define PERL_UNICODE_LOCALE_FLAG                0x0040
5459 #define PERL_UNICODE_WIDESYSCALLS_FLAG          0x0080 /* for Sarathy */
5460 #define PERL_UNICODE_UTF8CACHEASSERT_FLAG       0x0100
5461
5462 #define PERL_UNICODE_STD_FLAG           \
5463         (PERL_UNICODE_STDIN_FLAG        | \
5464          PERL_UNICODE_STDOUT_FLAG       | \
5465          PERL_UNICODE_STDERR_FLAG)
5466
5467 #define PERL_UNICODE_INOUT_FLAG         \
5468         (PERL_UNICODE_IN_FLAG   | \
5469          PERL_UNICODE_OUT_FLAG)
5470
5471 #define PERL_UNICODE_DEFAULT_FLAGS      \
5472         (PERL_UNICODE_STD_FLAG          | \
5473          PERL_UNICODE_INOUT_FLAG        | \
5474          PERL_UNICODE_LOCALE_FLAG)
5475
5476 #define PERL_UNICODE_ALL_FLAGS                  0x01ff
5477
5478 #define PERL_UNICODE_STDIN                      'I'
5479 #define PERL_UNICODE_STDOUT                     'O'
5480 #define PERL_UNICODE_STDERR                     'E'
5481 #define PERL_UNICODE_STD                        'S'
5482 #define PERL_UNICODE_IN                         'i'
5483 #define PERL_UNICODE_OUT                        'o'
5484 #define PERL_UNICODE_INOUT                      'D'
5485 #define PERL_UNICODE_ARGV                       'A'
5486 #define PERL_UNICODE_LOCALE                     'L'
5487 #define PERL_UNICODE_WIDESYSCALLS               'W'
5488 #define PERL_UNICODE_UTF8CACHEASSERT            'a'
5489
5490 #define PERL_SIGNALS_UNSAFE_FLAG        0x0001
5491
5492 /* From sigaction(2) (FreeBSD man page):
5493  * | Signal routines normally execute with the signal that
5494  * | caused their invocation blocked, but other signals may
5495  * | yet occur.
5496  * Emulation of this behavior (from within Perl) is enabled
5497  * by defining PERL_BLOCK_SIGNALS.
5498  */
5499 #define PERL_BLOCK_SIGNALS
5500
5501 #if defined(HAS_SIGPROCMASK) && defined(PERL_BLOCK_SIGNALS)
5502 #   define PERL_BLOCKSIG_ADD(set,sig) \
5503         sigset_t set; sigemptyset(&(set)); sigaddset(&(set), sig)
5504 #   define PERL_BLOCKSIG_BLOCK(set) \
5505         sigprocmask(SIG_BLOCK, &(set), NULL)
5506 #   define PERL_BLOCKSIG_UNBLOCK(set) \
5507         sigprocmask(SIG_UNBLOCK, &(set), NULL)
5508 #endif /* HAS_SIGPROCMASK && PERL_BLOCK_SIGNALS */
5509
5510 /* How about the old style of sigblock()? */
5511
5512 #ifndef PERL_BLOCKSIG_ADD
5513 #   define PERL_BLOCKSIG_ADD(set, sig)  NOOP
5514 #endif
5515 #ifndef PERL_BLOCKSIG_BLOCK
5516 #   define PERL_BLOCKSIG_BLOCK(set)     NOOP
5517 #endif
5518 #ifndef PERL_BLOCKSIG_UNBLOCK
5519 #   define PERL_BLOCKSIG_UNBLOCK(set)   NOOP
5520 #endif
5521
5522 /* Use instead of abs() since abs() forces its argument to be an int,
5523  * but also beware since this evaluates its argument twice, so no x++. */
5524 #define PERL_ABS(x) ((x) < 0 ? -(x) : (x))
5525
5526 #if defined(__DECC) && defined(__osf__)
5527 #pragma message disable (mainparm) /* Perl uses the envp in main(). */
5528 #endif
5529
5530 #define do_open(g, n, l, a, rm, rp, sf) \
5531         do_openn(g, n, l, a, rm, rp, sf, (SV **) NULL, 0)
5532 #ifdef PERL_DEFAULT_DO_EXEC3_IMPLEMENTATION
5533 #  define do_exec(cmd)                  do_exec3(cmd,0,0)
5534 #endif
5535 #ifdef OS2
5536 #  define do_aexec                      Perl_do_aexec
5537 #else
5538 #  define do_aexec(really, mark,sp)     do_aexec5(really, mark, sp, 0, 0)
5539 #endif
5540
5541 /* and finally... */
5542 #define PERL_PATCHLEVEL_H_IMPLICIT
5543 #include "patchlevel.h"
5544 #undef PERL_PATCHLEVEL_H_IMPLICIT
5545
5546 /* Mention
5547
5548    NV_PRESERVES_UV
5549
5550    HAS_MKSTEMP
5551    HAS_MKSTEMPS
5552    HAS_MKDTEMP
5553
5554    HAS_GETCWD
5555
5556    HAS_MMAP
5557    HAS_MPROTECT
5558    HAS_MSYNC
5559    HAS_MADVISE
5560    HAS_MUNMAP
5561    I_SYSMMAN
5562    Mmap_t
5563
5564    NVef
5565    NVff
5566    NVgf
5567
5568    HAS_UALARM
5569    HAS_USLEEP
5570
5571    HAS_SETITIMER
5572    HAS_GETITIMER
5573
5574    HAS_SENDMSG
5575    HAS_RECVMSG
5576    HAS_READV
5577    HAS_WRITEV
5578    I_SYSUIO
5579    HAS_STRUCT_MSGHDR
5580    HAS_STRUCT_CMSGHDR
5581
5582    HAS_NL_LANGINFO
5583
5584    HAS_DIRFD
5585
5586    so that Configure picks them up. */
5587
5588 #endif /* Include guard */
5589