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