a2de563263068fd460d7cbaea262894389c60c85
[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 #endif
170
171 #define STATIC static
172 #define CPERLscope(x) x
173 #define CPERLarg void
174 #define CPERLarg_
175 #define _CPERLarg
176 #define PERL_OBJECT_THIS
177 #define _PERL_OBJECT_THIS
178 #define PERL_OBJECT_THIS_
179 #define CALL_FPTR(fptr) (*fptr)
180
181 #define CALLRUNOPS  CALL_FPTR(PL_runops)
182 #define CALLREGCOMP CALL_FPTR(PL_regcompp)
183 #define CALLREGEXEC CALL_FPTR(PL_regexecp)
184 #define CALLREG_INTUIT_START CALL_FPTR(PL_regint_start)
185 #define CALLREG_INTUIT_STRING CALL_FPTR(PL_regint_string)
186 #define CALLREGFREE CALL_FPTR(PL_regfree)
187
188 #if defined(SYMBIAN) && defined(__GNUC__)
189 #  undef __attribute__
190 #  undef __attribute__(_arg_)
191 #  define HASATTRIBUTE
192 #endif
193
194 #ifdef HASATTRIBUTE
195 #  if (defined(__GNUC__) && defined(__cplusplus)) || defined(__INTEL_COMPILER)
196 #    define PERL_UNUSED_DECL
197 #  else
198 #    define PERL_UNUSED_DECL __attribute__((unused))
199 #  endif
200 #else
201 #  define PERL_UNUSED_DECL
202 #endif
203  
204 #if defined(SYMBIAN) && defined(__GNUC__)
205 #  undef __attribute__
206 #  undef __attribute__(_arg_)
207 #  define HASATTRIBUTE
208 #endif
209
210 /* gcc -Wall:
211  * for silencing unused variables that are actually used most of the time,
212  * but we cannot quite get rid of, such `ax' in PPCODE+noargs xsubs
213  */
214 #define PERL_UNUSED_VAR(var) if (0) var = var
215
216 #define NOOP (void)0
217 #define dNOOP extern int Perl___notused PERL_UNUSED_DECL
218
219 #ifndef pTHX
220 #  define pTHX          void
221 #  define pTHX_
222 #  define aTHX
223 #  define aTHX_
224 #  define dTHXa(a)      dNOOP
225 #  define dTHX          dNOOP
226 #  define pTHX_1        1       
227 #  define pTHX_2        2
228 #  define pTHX_3        3
229 #  define pTHX_4        4
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 #ifdef VMS
2408 #   define STATUS_NATIVE        PL_statusvalue_vms
2409 #   define STATUS_NATIVE_EXPORT \
2410         (((I32)PL_statusvalue_vms == -1 ? 44 : PL_statusvalue_vms) | (VMSISH_HUSHED ? 0x10000000 : 0))
2411 #   define STATUS_NATIVE_SET(n)                                         \
2412         STMT_START {                                                    \
2413             PL_statusvalue_vms = (n);                                   \
2414             if ((I32)PL_statusvalue_vms == -1)                          \
2415                 PL_statusvalue = -1;                                    \
2416             else if (PL_statusvalue_vms & STS$M_SUCCESS)                \
2417                 PL_statusvalue = 0;                                     \
2418             else if ((PL_statusvalue_vms & STS$M_SEVERITY) == 0)        \
2419                 PL_statusvalue = 1 << 8;                                \
2420             else                                                        \
2421                 PL_statusvalue = (PL_statusvalue_vms & STS$M_SEVERITY) << 8;    \
2422         } STMT_END
2423 #   define STATUS_POSIX PL_statusvalue
2424 #   ifdef VMSISH_STATUS
2425 #       define STATUS_CURRENT   (VMSISH_STATUS ? STATUS_NATIVE : STATUS_POSIX)
2426 #   else
2427 #       define STATUS_CURRENT   STATUS_POSIX
2428 #   endif
2429 #   define STATUS_POSIX_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        STATUS_POSIX
2442 #   define STATUS_NATIVE_EXPORT STATUS_POSIX
2443 #   define STATUS_NATIVE_SET    STATUS_POSIX_SET
2444 #   define STATUS_POSIX         PL_statusvalue
2445 #   define STATUS_POSIX_SET(n)          \
2446         STMT_START {                    \
2447             PL_statusvalue = (n);               \
2448             if (PL_statusvalue != -1)   \
2449                 PL_statusvalue &= 0xFFFF;       \
2450         } STMT_END
2451 #   define STATUS_CURRENT STATUS_POSIX
2452 #   define STATUS_ALL_SUCCESS   (PL_statusvalue = 0)
2453 #   define STATUS_ALL_FAILURE   (PL_statusvalue = 1)
2454 #endif
2455
2456 /* flags in PL_exit_flags for nature of exit() */
2457 #define PERL_EXIT_EXPECTED      0x01
2458 #define PERL_EXIT_DESTRUCT_END  0x02  /* Run END in perl_destruct */
2459
2460 #ifndef MEMBER_TO_FPTR
2461 #  define MEMBER_TO_FPTR(name)          name
2462 #endif
2463
2464 /* format to use for version numbers in file/directory names */
2465 /* XXX move to Configure? */
2466 #ifndef PERL_FS_VER_FMT
2467 #  define PERL_FS_VER_FMT       "%d.%d.%d"
2468 #endif
2469
2470 /* This defines a way to flush all output buffers.  This may be a
2471  * performance issue, so we allow people to disable it.  Also, if
2472  * we are using stdio, there are broken implementations of fflush(NULL)
2473  * out there, Solaris being the most prominent.
2474  */
2475 #ifndef PERL_FLUSHALL_FOR_CHILD
2476 # if defined(USE_PERLIO) || defined(FFLUSH_NULL) || defined(USE_SFIO)
2477 #  define PERL_FLUSHALL_FOR_CHILD       PerlIO_flush((PerlIO*)NULL)
2478 # else
2479 #  ifdef FFLUSH_ALL
2480 #   define PERL_FLUSHALL_FOR_CHILD      my_fflush_all()
2481 #  else
2482 #   define PERL_FLUSHALL_FOR_CHILD      NOOP
2483 #  endif
2484 # endif
2485 #endif
2486
2487 #ifndef PERL_WAIT_FOR_CHILDREN
2488 #  define PERL_WAIT_FOR_CHILDREN        NOOP
2489 #endif
2490
2491 /* the traditional thread-unsafe notion of "current interpreter". */
2492 #ifndef PERL_SET_INTERP
2493 #  define PERL_SET_INTERP(i)            (PL_curinterp = (PerlInterpreter*)(i))
2494 #endif
2495
2496 #ifndef PERL_GET_INTERP
2497 #  define PERL_GET_INTERP               (PL_curinterp)
2498 #endif
2499
2500 #if defined(PERL_IMPLICIT_CONTEXT) && !defined(PERL_GET_THX)
2501 #  ifdef MULTIPLICITY
2502 #    define PERL_GET_THX                ((PerlInterpreter *)PERL_GET_CONTEXT)
2503 #  endif
2504 #  define PERL_SET_THX(t)               PERL_SET_CONTEXT(t)
2505 #endif
2506
2507 #ifndef SVf
2508 #  ifdef CHECK_FORMAT
2509 #    define SVf "-p"
2510 #  else
2511 #    define SVf "_"
2512 #  endif
2513 #endif
2514
2515 #ifndef SVf_precision
2516 #  ifdef CHECK_FORMAT
2517 #    define SVf_precision(n) "-" n "p"
2518 #  else
2519 #    define SVf_precision(n) "." n "_"
2520 #  endif
2521 #endif
2522
2523 #ifndef SVf32
2524 #  define SVf32 SVf_precision("32")
2525 #endif
2526
2527 #ifndef SVf256
2528 #  define SVf256 SVf_precision("256")
2529 #endif
2530  
2531 #ifndef UVf
2532 #  define UVf UVuf
2533 #endif
2534
2535 #ifndef DieNull
2536 #  ifdef CHECK_FORMAT
2537 #    define DieNull Perl_vdie(aTHX_ Nullch, Null(va_list *))
2538 #  else
2539 #    define DieNull Perl_die(aTHX_ Nullch)
2540 #  endif
2541 #endif
2542
2543 #ifndef __attribute__format__
2544 #  ifdef CHECK_FORMAT
2545 #    define __attribute__format__(x,y,z) __attribute__((format(x,y,z)))
2546 #  else
2547 #    define __attribute__format__(x,y,z)
2548 #  endif
2549 #endif
2550
2551 /* Some unistd.h's give a prototype for pause() even though
2552    HAS_PAUSE ends up undefined.  This causes the #define
2553    below to be rejected by the compiler.  Sigh.
2554 */
2555 #ifdef HAS_PAUSE
2556 #define Pause   pause
2557 #else
2558 #define Pause() sleep((32767<<16)+32767)
2559 #endif
2560
2561 #ifndef IOCPARM_LEN
2562 #   ifdef IOCPARM_MASK
2563         /* on BSDish systes we're safe */
2564 #       define IOCPARM_LEN(x)  (((x) >> 16) & IOCPARM_MASK)
2565 #   else
2566         /* otherwise guess at what's safe */
2567 #       define IOCPARM_LEN(x)   256
2568 #   endif
2569 #endif
2570
2571 #if defined(__CYGWIN__)
2572 /* USEMYBINMODE
2573  *   This symbol, if defined, indicates that the program should
2574  *   use the routine my_binmode(FILE *fp, char iotype, int mode) to insure
2575  *   that a file is in "binary" mode -- that is, that no translation
2576  *   of bytes occurs on read or write operations.
2577  */
2578 #  define USEMYBINMODE /**/
2579 #  include <io.h> /* for setmode() prototype */
2580 #  define my_binmode(fp, iotype, mode) \
2581             (PerlLIO_setmode(fileno(fp), mode) != -1 ? TRUE : FALSE)
2582 #endif
2583
2584 #ifdef __CYGWIN__
2585 void init_os_extras(void);
2586 #endif
2587
2588 #ifdef UNION_ANY_DEFINITION
2589 UNION_ANY_DEFINITION;
2590 #else
2591 union any {
2592     void*       any_ptr;
2593     I32         any_i32;
2594     IV          any_iv;
2595     long        any_long;
2596     bool        any_bool;
2597     void        (*any_dptr) (void*);
2598     void        (*any_dxptr) (pTHX_ void*);
2599 };
2600 #endif
2601
2602 typedef I32 (*filter_t) (pTHX_ int, SV *, int);
2603
2604 #define FILTER_READ(idx, sv, len)  filter_read(idx, sv, len)
2605 #define FILTER_DATA(idx)           (AvARRAY(PL_rsfp_filters)[idx])
2606 #define FILTER_ISREADER(idx)       (idx >= AvFILLp(PL_rsfp_filters))
2607
2608 #if defined(_AIX) && !defined(_AIX43)
2609 #if defined(USE_REENTRANT) || defined(_REENTRANT) || defined(_THREAD_SAFE)
2610 /* We cannot include <crypt.h> to get the struct crypt_data
2611  * because of setkey prototype problems when threading */
2612 typedef        struct crypt_data {     /* straight from /usr/include/crypt.h */
2613     /* From OSF, Not needed in AIX
2614        char C[28], D[28];
2615     */
2616     char E[48];
2617     char KS[16][48];
2618     char block[66];
2619     char iobuf[16];
2620 } CRYPTD;
2621 #endif /* threading */
2622 #endif /* AIX */
2623
2624 #if !defined(OS2) && !defined(MACOS_TRADITIONAL)
2625 #  include "iperlsys.h"
2626 #endif
2627
2628 /* [perl #22371] Algorimic Complexity Attack on Perl 5.6.1, 5.8.0.
2629  * Note that the USE_HASH_SEED and USE_HASH_SEED_EXPLICIT are *NOT*
2630  * defined by Configure, despite their names being similar to the
2631  * other defines like USE_ITHREADS.  Configure in fact knows nothing
2632  * about the randomised hashes.  Therefore to enable/disable the hash
2633  * randomisation defines use the Configure -Accflags=... instead. */
2634 #if !defined(NO_HASH_SEED) && !defined(USE_HASH_SEED) && !defined(USE_HASH_SEED_EXPLICIT)
2635 #  define USE_HASH_SEED
2636 #endif
2637
2638 #include "regexp.h"
2639 #include "sv.h"
2640 #include "util.h"
2641 #include "form.h"
2642 #include "gv.h"
2643 #include "pad.h"
2644 #include "cv.h"
2645 #include "opnames.h"
2646 #include "op.h"
2647 #include "cop.h"
2648 #include "av.h"
2649 #include "hv.h"
2650 #include "mg.h"
2651 #include "scope.h"
2652 #include "warnings.h"
2653 #include "utf8.h"
2654
2655 /* Current curly descriptor */
2656 typedef struct curcur CURCUR;
2657 struct curcur {
2658     int         parenfloor;     /* how far back to strip paren data */
2659     int         cur;            /* how many instances of scan we've matched */
2660     int         min;            /* the minimal number of scans to match */
2661     int         max;            /* the maximal number of scans to match */
2662     int         minmod;         /* whether to work our way up or down */
2663     regnode *   scan;           /* the thing to match */
2664     regnode *   next;           /* what has to match after it */
2665     char *      lastloc;        /* where we started matching this scan */
2666     CURCUR *    oldcc;          /* current curly before we started this one */
2667 };
2668
2669 typedef struct _sublex_info SUBLEXINFO;
2670 struct _sublex_info {
2671     I32 super_state;    /* lexer state to save */
2672     I32 sub_inwhat;     /* "lex_inwhat" to use */
2673     OP *sub_op;         /* "lex_op" to use */
2674     char *super_bufptr; /* PL_bufptr that was */
2675     char *super_bufend; /* PL_bufend that was */
2676 };
2677
2678 typedef struct magic_state MGS; /* struct magic_state defined in mg.c */
2679
2680 struct scan_data_t;             /* Used in S_* functions in regcomp.c */
2681 struct regnode_charclass_class; /* Used in S_* functions in regcomp.c */
2682
2683 typedef I32 CHECKPOINT;
2684
2685 struct ptr_tbl_ent {
2686     struct ptr_tbl_ent*         next;
2687     void*                       oldval;
2688     void*                       newval;
2689 };
2690
2691 struct ptr_tbl {
2692     struct ptr_tbl_ent**        tbl_ary;
2693     UV                          tbl_max;
2694     UV                          tbl_items;
2695 };
2696
2697 #if defined(iAPX286) || defined(M_I286) || defined(I80286)
2698 #   define I286
2699 #endif
2700
2701 #if defined(htonl) && !defined(HAS_HTONL)
2702 #define HAS_HTONL
2703 #endif
2704 #if defined(htons) && !defined(HAS_HTONS)
2705 #define HAS_HTONS
2706 #endif
2707 #if defined(ntohl) && !defined(HAS_NTOHL)
2708 #define HAS_NTOHL
2709 #endif
2710 #if defined(ntohs) && !defined(HAS_NTOHS)
2711 #define HAS_NTOHS
2712 #endif
2713 #ifndef HAS_HTONL
2714 #if (BYTEORDER & 0xffff) != 0x4321
2715 #define HAS_HTONS
2716 #define HAS_HTONL
2717 #define HAS_NTOHS
2718 #define HAS_NTOHL
2719 #define MYSWAP
2720 #define htons my_swap
2721 #define htonl my_htonl
2722 #define ntohs my_swap
2723 #define ntohl my_ntohl
2724 #endif
2725 #else
2726 #if (BYTEORDER & 0xffff) == 0x4321
2727 #undef HAS_HTONS
2728 #undef HAS_HTONL
2729 #undef HAS_NTOHS
2730 #undef HAS_NTOHL
2731 #endif
2732 #endif
2733
2734 /*
2735  * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
2736  * -DWS
2737  */
2738 #if BYTEORDER != 0x1234
2739 # define HAS_VTOHL
2740 # define HAS_VTOHS
2741 # define HAS_HTOVL
2742 # define HAS_HTOVS
2743 # if BYTEORDER == 0x4321 || BYTEORDER == 0x87654321
2744 #  define vtohl(x)      ((((x)&0xFF)<<24)       \
2745                         +(((x)>>24)&0xFF)       \
2746                         +(((x)&0x0000FF00)<<8)  \
2747                         +(((x)&0x00FF0000)>>8)  )
2748 #  define vtohs(x)      ((((x)&0xFF)<<8) + (((x)>>8)&0xFF))
2749 #  define htovl(x)      vtohl(x)
2750 #  define htovs(x)      vtohs(x)
2751 # endif
2752         /* otherwise default to functions in util.c */
2753 #ifndef htovs
2754 short htovs(short n);
2755 short vtohs(short n);
2756 long htovl(long n);
2757 long vtohl(long n);
2758 #endif
2759 #endif
2760
2761 /* *MAX Plus 1. A floating point value.
2762    Hopefully expressed in a way that dodgy floating point can't mess up.
2763    >> 2 rather than 1, so that value is safely less than I32_MAX after 1
2764    is added to it
2765    May find that some broken compiler will want the value cast to I32.
2766    [after the shift, as signed >> may not be as secure as unsigned >>]
2767 */
2768 #define I32_MAX_P1 (2.0 * (1 + (((U32)I32_MAX) >> 1)))
2769 #define U32_MAX_P1 (4.0 * (1 + ((U32_MAX) >> 2)))
2770 /* For compilers that can't correctly cast NVs over 0x7FFFFFFF (or
2771    0x7FFFFFFFFFFFFFFF) to an unsigned integer. In the future, sizeof(UV)
2772    may be greater than sizeof(IV), so don't assume that half max UV is max IV.
2773 */
2774 #define U32_MAX_P1_HALF (2.0 * (1 + ((U32_MAX) >> 2)))
2775
2776 #define UV_MAX_P1 (4.0 * (1 + ((UV_MAX) >> 2)))
2777 #define IV_MAX_P1 (2.0 * (1 + (((UV)IV_MAX) >> 1)))
2778 #define UV_MAX_P1_HALF (2.0 * (1 + ((UV_MAX) >> 2)))
2779
2780 /* This may look like unnecessary jumping through hoops, but converting
2781    out of range floating point values to integers *is* undefined behaviour,
2782    and it is starting to bite.
2783 */
2784 #ifndef CAST_INLINE
2785 #define I_32(what) (cast_i32((NV)(what)))
2786 #define U_32(what) (cast_ulong((NV)(what)))
2787 #define I_V(what) (cast_iv((NV)(what)))
2788 #define U_V(what) (cast_uv((NV)(what)))
2789 #else
2790 #define I_32(n) ((n) < I32_MAX_P1 ? ((n) < I32_MIN ? I32_MIN : (I32) (n)) \
2791                   : ((n) < U32_MAX_P1 ? (I32)(U32) (n) \
2792                      : ((n) > 0 ? (I32) U32_MAX : 0 /* NaN */)))
2793 #define U_32(n) ((n) < 0.0 ? ((n) < I32_MIN ? (UV) I32_MIN : (U32)(I32) (n)) \
2794                   : ((n) < U32_MAX_P1 ? (U32) (n) \
2795                      : ((n) > 0 ? U32_MAX : 0 /* NaN */)))
2796 #define I_V(n) ((n) < IV_MAX_P1 ? ((n) < IV_MIN ? IV_MIN : (IV) (n)) \
2797                   : ((n) < UV_MAX_P1 ? (IV)(UV) (n) \
2798                      : ((n) > 0 ? (IV)UV_MAX : 0 /* NaN */)))
2799 #define U_V(n) ((n) < 0.0 ? ((n) < IV_MIN ? (UV) IV_MIN : (UV)(IV) (n)) \
2800                   : ((n) < UV_MAX_P1 ? (UV) (n) \
2801                      : ((n) > 0 ? UV_MAX : 0 /* NaN */)))
2802 #endif
2803
2804 #define U_S(what) ((U16)U_32(what))
2805 #define U_I(what) ((unsigned int)U_32(what))
2806 #define U_L(what) U_32(what)
2807
2808 /* These do not care about the fractional part, only about the range. */
2809 #define NV_WITHIN_IV(nv) (I_V(nv) >= IV_MIN && I_V(nv) <= IV_MAX)
2810 #define NV_WITHIN_UV(nv) ((nv)>=0.0 && U_V(nv) >= UV_MIN && U_V(nv) <= UV_MAX)
2811
2812 /* Used with UV/IV arguments: */
2813                                         /* XXXX: need to speed it up */
2814 #define CLUMP_2UV(iv)   ((iv) < 0 ? 0 : (UV)(iv))
2815 #define CLUMP_2IV(uv)   ((uv) > (UV)IV_MAX ? IV_MAX : (IV)(uv))
2816
2817 #ifndef MAXSYSFD
2818 #   define MAXSYSFD 2
2819 #endif
2820
2821 #ifndef __cplusplus
2822 #if !(defined(UNDER_CE) || defined(SYMBIAN))
2823 Uid_t getuid (void);
2824 Uid_t geteuid (void);
2825 Gid_t getgid (void);
2826 Gid_t getegid (void);
2827 #endif
2828 #endif
2829
2830 #ifndef Perl_debug_log
2831 #  define Perl_debug_log        PerlIO_stderr()
2832 #endif
2833
2834 #ifndef Perl_error_log
2835 #  define Perl_error_log        (PL_stderrgv                    \
2836                                  && isGV(PL_stderrgv)           \
2837                                  && GvIOp(PL_stderrgv)          \
2838                                  && IoOFP(GvIOp(PL_stderrgv))   \
2839                                  ? IoOFP(GvIOp(PL_stderrgv))    \
2840                                  : PerlIO_stderr())
2841 #endif
2842
2843
2844 #define DEBUG_p_FLAG            0x00000001 /*      1 */
2845 #define DEBUG_s_FLAG            0x00000002 /*      2 */
2846 #define DEBUG_l_FLAG            0x00000004 /*      4 */
2847 #define DEBUG_t_FLAG            0x00000008 /*      8 */
2848 #define DEBUG_o_FLAG            0x00000010 /*     16 */
2849 #define DEBUG_c_FLAG            0x00000020 /*     32 */
2850 #define DEBUG_P_FLAG            0x00000040 /*     64 */
2851 #define DEBUG_m_FLAG            0x00000080 /*    128 */
2852 #define DEBUG_f_FLAG            0x00000100 /*    256 */
2853 #define DEBUG_r_FLAG            0x00000200 /*    512 */
2854 #define DEBUG_x_FLAG            0x00000400 /*   1024 */
2855 #define DEBUG_u_FLAG            0x00000800 /*   2048 */
2856                                            /*  spare */
2857 #define DEBUG_H_FLAG            0x00002000 /*   8192 */
2858 #define DEBUG_X_FLAG            0x00004000 /*  16384 */
2859 #define DEBUG_D_FLAG            0x00008000 /*  32768 */
2860 #define DEBUG_S_FLAG            0x00010000 /*  65536 */
2861 #define DEBUG_T_FLAG            0x00020000 /* 131072 */
2862 #define DEBUG_R_FLAG            0x00040000 /* 262144 */
2863 #define DEBUG_J_FLAG            0x00080000 /* 524288 */
2864 #define DEBUG_v_FLAG            0x00100000 /*1048576 */
2865 #define DEBUG_C_FLAG            0x00200000 /*2097152 */
2866 #define DEBUG_A_FLAG            0x00400000 /*4194304 */
2867 #define DEBUG_q_FLAG            0x00800000 /*8388608 */
2868 #define DEBUG_MASK              0x00FFEFFF /* mask of all the standard flags */
2869
2870 #define DEBUG_DB_RECURSE_FLAG   0x40000000
2871 #define DEBUG_TOP_FLAG          0x80000000 /* XXX what's this for ??? Signal
2872                                               that something was done? */
2873
2874 #  define DEBUG_p_TEST_ (PL_debug & DEBUG_p_FLAG)
2875 #  define DEBUG_s_TEST_ (PL_debug & DEBUG_s_FLAG)
2876 #  define DEBUG_l_TEST_ (PL_debug & DEBUG_l_FLAG)
2877 #  define DEBUG_t_TEST_ (PL_debug & DEBUG_t_FLAG)
2878 #  define DEBUG_o_TEST_ (PL_debug & DEBUG_o_FLAG)
2879 #  define DEBUG_c_TEST_ (PL_debug & DEBUG_c_FLAG)
2880 #  define DEBUG_P_TEST_ (PL_debug & DEBUG_P_FLAG)
2881 #  define DEBUG_m_TEST_ (PL_debug & DEBUG_m_FLAG)
2882 #  define DEBUG_f_TEST_ (PL_debug & DEBUG_f_FLAG)
2883 #  define DEBUG_r_TEST_ (PL_debug & DEBUG_r_FLAG)
2884 #  define DEBUG_x_TEST_ (PL_debug & DEBUG_x_FLAG)
2885 #  define DEBUG_u_TEST_ (PL_debug & DEBUG_u_FLAG)
2886 #  define DEBUG_H_TEST_ (PL_debug & DEBUG_H_FLAG)
2887 #  define DEBUG_X_TEST_ (PL_debug & DEBUG_X_FLAG)
2888 #  define DEBUG_D_TEST_ (PL_debug & DEBUG_D_FLAG)
2889 #  define DEBUG_S_TEST_ (PL_debug & DEBUG_S_FLAG)
2890 #  define DEBUG_T_TEST_ (PL_debug & DEBUG_T_FLAG)
2891 #  define DEBUG_R_TEST_ (PL_debug & DEBUG_R_FLAG)
2892 #  define DEBUG_J_TEST_ (PL_debug & DEBUG_J_FLAG)
2893 #  define DEBUG_v_TEST_ (PL_debug & DEBUG_v_FLAG)
2894 #  define DEBUG_C_TEST_ (PL_debug & DEBUG_C_FLAG)
2895 #  define DEBUG_A_TEST_ (PL_debug & DEBUG_A_FLAG)
2896 #  define DEBUG_q_TEST_ (PL_debug & DEBUG_q_FLAG)
2897 #  define DEBUG_Xv_TEST_ (DEBUG_X_TEST_ && DEBUG_v_TEST_)
2898
2899 #ifdef DEBUGGING
2900
2901 #  define DEBUG_p_TEST DEBUG_p_TEST_
2902 #  define DEBUG_s_TEST DEBUG_s_TEST_
2903 #  define DEBUG_l_TEST DEBUG_l_TEST_
2904 #  define DEBUG_t_TEST DEBUG_t_TEST_
2905 #  define DEBUG_o_TEST DEBUG_o_TEST_
2906 #  define DEBUG_c_TEST DEBUG_c_TEST_
2907 #  define DEBUG_P_TEST DEBUG_P_TEST_
2908 #  define DEBUG_m_TEST DEBUG_m_TEST_
2909 #  define DEBUG_f_TEST DEBUG_f_TEST_
2910 #  define DEBUG_r_TEST DEBUG_r_TEST_
2911 #  define DEBUG_x_TEST DEBUG_x_TEST_
2912 #  define DEBUG_u_TEST DEBUG_u_TEST_
2913 #  define DEBUG_H_TEST DEBUG_H_TEST_
2914 #  define DEBUG_X_TEST DEBUG_X_TEST_
2915 #  define DEBUG_Xv_TEST DEBUG_Xv_TEST_
2916 #  define DEBUG_D_TEST DEBUG_D_TEST_
2917 #  define DEBUG_S_TEST DEBUG_S_TEST_
2918 #  define DEBUG_T_TEST DEBUG_T_TEST_
2919 #  define DEBUG_R_TEST DEBUG_R_TEST_
2920 #  define DEBUG_J_TEST DEBUG_J_TEST_
2921 #  define DEBUG_v_TEST DEBUG_v_TEST_
2922 #  define DEBUG_C_TEST DEBUG_C_TEST_
2923 #  define DEBUG_A_TEST DEBUG_A_TEST_
2924 #  define DEBUG_q_TEST DEBUG_q_TEST_
2925
2926 #  define PERL_DEB(a)                  a
2927 #  define PERL_DEBUG(a) if (PL_debug)  a
2928 #  define DEBUG_p(a) if (DEBUG_p_TEST) a
2929 #  define DEBUG_s(a) if (DEBUG_s_TEST) a
2930 #  define DEBUG_l(a) if (DEBUG_l_TEST) a
2931 #  define DEBUG_t(a) if (DEBUG_t_TEST) a
2932 #  define DEBUG_o(a) if (DEBUG_o_TEST) a
2933 #  define DEBUG_c(a) if (DEBUG_c_TEST) a
2934 #  define DEBUG_P(a) if (DEBUG_P_TEST) a
2935
2936      /* Temporarily turn off memory debugging in case the a
2937       * does memory allocation, either directly or indirectly. */
2938 #  define DEBUG_m(a)  \
2939     STMT_START {                                                        \
2940         if (PERL_GET_INTERP) { dTHX; if (DEBUG_m_TEST) {PL_debug&=~DEBUG_m_FLAG; a; PL_debug|=DEBUG_m_FLAG;} } \
2941     } STMT_END
2942
2943 #  define DEBUG__(t, a) \
2944         STMT_START { \
2945                 if (t) STMT_START {a;} STMT_END; \
2946         } STMT_END
2947
2948 #  define DEBUG_f(a) DEBUG__(DEBUG_f_TEST, a)
2949 #  define DEBUG_r(a) DEBUG__(DEBUG_r_TEST, a)
2950 #  define DEBUG_x(a) DEBUG__(DEBUG_x_TEST, a)
2951 #  define DEBUG_u(a) DEBUG__(DEBUG_u_TEST, a)
2952 #  define DEBUG_H(a) DEBUG__(DEBUG_H_TEST, a)
2953 #  define DEBUG_X(a) DEBUG__(DEBUG_X_TEST, a)
2954 #  define DEBUG_Xv(a) DEBUG__(DEBUG_Xv_TEST, a)
2955 #  define DEBUG_D(a) DEBUG__(DEBUG_D_TEST, a)
2956
2957 #  define DEBUG_S(a)
2958
2959 #  define DEBUG_T(a) DEBUG__(DEBUG_T_TEST, a)
2960 #  define DEBUG_R(a) DEBUG__(DEBUG_R_TEST, a)
2961 #  define DEBUG_v(a) DEBUG__(DEBUG_v_TEST, a)
2962 #  define DEBUG_C(a) DEBUG__(DEBUG_C_TEST, a)
2963 #  define DEBUG_A(a) DEBUG__(DEBUG_A_TEST, a)
2964 #  define DEBUG_q(a) DEBUG__(DEBUG_q_TEST, a)
2965
2966 #else /* DEBUGGING */
2967
2968 #  define DEBUG_p_TEST (0)
2969 #  define DEBUG_s_TEST (0)
2970 #  define DEBUG_l_TEST (0)
2971 #  define DEBUG_t_TEST (0)
2972 #  define DEBUG_o_TEST (0)
2973 #  define DEBUG_c_TEST (0)
2974 #  define DEBUG_P_TEST (0)
2975 #  define DEBUG_m_TEST (0)
2976 #  define DEBUG_f_TEST (0)
2977 #  define DEBUG_r_TEST (0)
2978 #  define DEBUG_x_TEST (0)
2979 #  define DEBUG_u_TEST (0)
2980 #  define DEBUG_H_TEST (0)
2981 #  define DEBUG_X_TEST (0)
2982 #  define DEBUG_Xv_TEST (0)
2983 #  define DEBUG_D_TEST (0)
2984 #  define DEBUG_S_TEST (0)
2985 #  define DEBUG_T_TEST (0)
2986 #  define DEBUG_R_TEST (0)
2987 #  define DEBUG_J_TEST (0)
2988 #  define DEBUG_v_TEST (0)
2989 #  define DEBUG_C_TEST (0)
2990 #  define DEBUG_A_TEST (0)
2991 #  define DEBUG_q_TEST (0)
2992
2993 #  define PERL_DEB(a)
2994 #  define PERL_DEBUG(a)
2995 #  define DEBUG_p(a)
2996 #  define DEBUG_s(a)
2997 #  define DEBUG_l(a)
2998 #  define DEBUG_t(a)
2999 #  define DEBUG_o(a)
3000 #  define DEBUG_c(a)
3001 #  define DEBUG_P(a)
3002 #  define DEBUG_m(a)
3003 #  define DEBUG_f(a)
3004 #  define DEBUG_r(a)
3005 #  define DEBUG_x(a)
3006 #  define DEBUG_u(a)
3007 #  define DEBUG_H(a)
3008 #  define DEBUG_X(a)
3009 #  define DEBUG_Xv(a)
3010 #  define DEBUG_D(a)
3011 #  define DEBUG_S(a)
3012 #  define DEBUG_T(a)
3013 #  define DEBUG_R(a)
3014 #  define DEBUG_v(a)
3015 #  define DEBUG_C(a)
3016 #  define DEBUG_A(a)
3017 #  define DEBUG_q(a)
3018 #endif /* DEBUGGING */
3019
3020
3021 #define DEBUG_SCOPE(where) \
3022     DEBUG_l(WITH_THR(Perl_deb(aTHX_ "%s scope %ld at %s:%d\n",  \
3023                     where, PL_scopestack_ix, __FILE__, __LINE__)));
3024
3025
3026
3027
3028 /* These constants should be used in preference to raw characters
3029  * when using magic. Note that some perl guts still assume
3030  * certain character properties of these constants, namely that
3031  * isUPPER() and toLOWER() may do useful mappings.
3032  *
3033  * Update the magic_names table in dump.c when adding/amending these
3034  */
3035
3036 #define PERL_MAGIC_sv             '\0' /* Special scalar variable */
3037 #define PERL_MAGIC_overload       'A' /* %OVERLOAD hash */
3038 #define PERL_MAGIC_overload_elem  'a' /* %OVERLOAD hash element */
3039 #define PERL_MAGIC_overload_table 'c' /* Holds overload table (AMT) on stash */
3040 #define PERL_MAGIC_bm             'B' /* Boyer-Moore (fast string search) */
3041 #define PERL_MAGIC_regdata        'D' /* Regex match position data
3042                                         (@+ and @- vars) */
3043 #define PERL_MAGIC_regdatum       'd' /* Regex match position data element */
3044 #define PERL_MAGIC_env            'E' /* %ENV hash */
3045 #define PERL_MAGIC_envelem        'e' /* %ENV hash element */
3046 #define PERL_MAGIC_fm             'f' /* Formline ('compiled' format) */
3047 #define PERL_MAGIC_regex_global   'g' /* m//g target / study()ed string */
3048 #define PERL_MAGIC_isa            'I' /* @ISA array */
3049 #define PERL_MAGIC_isaelem        'i' /* @ISA array element */
3050 #define PERL_MAGIC_nkeys          'k' /* scalar(keys()) lvalue */
3051 #define PERL_MAGIC_dbfile         'L' /* Debugger %_<filename */
3052 #define PERL_MAGIC_dbline         'l' /* Debugger %_<filename element */
3053 #define PERL_MAGIC_mutex          'm' /* for lock op */
3054 #define PERL_MAGIC_shared         'N' /* Shared between threads */
3055 #define PERL_MAGIC_shared_scalar  'n' /* Shared between threads */
3056 #define PERL_MAGIC_collxfrm       'o' /* Locale transformation */
3057 #define PERL_MAGIC_tied           'P' /* Tied array or hash */
3058 #define PERL_MAGIC_tiedelem       'p' /* Tied array or hash element */
3059 #define PERL_MAGIC_tiedscalar     'q' /* Tied scalar or handle */
3060 #define PERL_MAGIC_qr             'r' /* precompiled qr// regex */
3061 #define PERL_MAGIC_sig            'S' /* %SIG hash */
3062 #define PERL_MAGIC_sigelem        's' /* %SIG hash element */
3063 #define PERL_MAGIC_taint          't' /* Taintedness */
3064 #define PERL_MAGIC_uvar           'U' /* Available for use by extensions */
3065 #define PERL_MAGIC_uvar_elem      'u' /* Reserved for use by extensions */
3066 #define PERL_MAGIC_vec            'v' /* vec() lvalue */
3067 #define PERL_MAGIC_vstring        'V' /* SV was vstring literal */
3068 #define PERL_MAGIC_utf8           'w' /* Cached UTF-8 information */
3069 #define PERL_MAGIC_substr         'x' /* substr() lvalue */
3070 #define PERL_MAGIC_defelem        'y' /* Shadow "foreach" iterator variable /
3071                                         smart parameter vivification */
3072 #define PERL_MAGIC_glob           '*' /* GV (typeglob) */
3073 #define PERL_MAGIC_arylen         '#' /* Array length ($#ary) */
3074 #define PERL_MAGIC_pos            '.' /* pos() lvalue */
3075 #define PERL_MAGIC_backref        '<' /* for weak ref data */
3076 #define PERL_MAGIC_ext            '~' /* Available for use by extensions */
3077
3078
3079 #ifndef assert  /* <assert.h> might have been included somehow */
3080 #define assert(what)    PERL_DEB(                                       \
3081         ((what) ? ((void) 0) :                                          \
3082             (Perl_croak(aTHX_ "Assertion " STRINGIFY(what) " failed: file \"%s\", line %d",     \
3083                 __FILE__, __LINE__),                                    \
3084             PerlProc_exit(1),                                           \
3085             (void) 0)))
3086 #endif
3087
3088 struct ufuncs {
3089     I32 (*uf_val)(pTHX_ IV, SV*);
3090     I32 (*uf_set)(pTHX_ IV, SV*);
3091     IV uf_index;
3092 };
3093
3094 /* In pre-5.7-Perls the PERL_MAGIC_uvar magic didn't get the thread context.
3095  * XS code wanting to be backward compatible can do something
3096  * like the following:
3097
3098 #ifndef PERL_MG_UFUNC
3099 #define PERL_MG_UFUNC(name,ix,sv) I32 name(IV ix, SV *sv)
3100 #endif
3101
3102 static PERL_MG_UFUNC(foo_get, index, val)
3103 {
3104     sv_setsv(val, ...);
3105     return TRUE;
3106 }
3107
3108 -- Doug MacEachern
3109
3110 */
3111
3112 #ifndef PERL_MG_UFUNC
3113 #define PERL_MG_UFUNC(name,ix,sv) I32 name(pTHX_ IV ix, SV *sv)
3114 #endif
3115
3116 /* Fix these up for __STDC__ */
3117 #ifndef DONT_DECLARE_STD
3118 char *mktemp (char*);
3119 #ifndef atof
3120 double atof (const char*);
3121 #endif
3122 #endif
3123
3124 #ifndef STANDARD_C
3125 /* All of these are in stdlib.h or time.h for ANSI C */
3126 Time_t time();
3127 struct tm *gmtime(), *localtime();
3128 #if defined(OEMVS) || defined(__OPEN_VM)
3129 char *(strchr)(), *(strrchr)();
3130 char *(strcpy)(), *(strcat)();
3131 #else
3132 char *strchr(), *strrchr();
3133 char *strcpy(), *strcat();
3134 #endif
3135 #endif /* ! STANDARD_C */
3136
3137
3138 #ifdef I_MATH
3139 #    include <math.h>
3140 #else
3141 START_EXTERN_C
3142             double exp (double);
3143             double log (double);
3144             double log10 (double);
3145             double sqrt (double);
3146             double frexp (double,int*);
3147             double ldexp (double,int);
3148             double modf (double,double*);
3149             double sin (double);
3150             double cos (double);
3151             double atan2 (double,double);
3152             double pow (double,double);
3153 END_EXTERN_C
3154 #endif
3155
3156 #if !defined(NV_INF) && defined(USE_LONG_DOUBLE) && defined(LDBL_INFINITY)
3157 #  define NV_INF LDBL_INFINITY
3158 #endif
3159 #if !defined(NV_INF) && defined(DBL_INFINITY)
3160 #  define NV_INF (NV)DBL_INFINITY
3161 #endif
3162 #if !defined(NV_INF) && defined(INFINITY)
3163 #  define NV_INF (NV)INFINITY
3164 #endif
3165 #if !defined(NV_INF) && defined(INF)
3166 #  define NV_INF (NV)INF
3167 #endif
3168 #if !defined(NV_INF) && defined(USE_LONG_DOUBLE) && defined(HUGE_VALL)
3169 #  define NV_INF (NV)HUGE_VALL
3170 #endif
3171 #if !defined(NV_INF) && defined(HUGE_VAL)
3172 #  define NV_INF (NV)HUGE_VAL
3173 #endif
3174
3175 #if !defined(NV_NAN) && defined(USE_LONG_DOUBLE)
3176 #   if !defined(NV_NAN) && defined(LDBL_NAN)
3177 #       define NV_NAN LDBL_NAN
3178 #   endif
3179 #   if !defined(NV_NAN) && defined(LDBL_QNAN)
3180 #       define NV_NAN LDBL_QNAN
3181 #   endif
3182 #   if !defined(NV_NAN) && defined(LDBL_SNAN)
3183 #       define NV_NAN LDBL_SNAN
3184 #   endif
3185 #endif
3186 #if !defined(NV_NAN) && defined(DBL_NAN)
3187 #  define NV_NAN (NV)DBL_NAN
3188 #endif
3189 #if !defined(NV_NAN) && defined(DBL_QNAN)
3190 #  define NV_NAN (NV)DBL_QNAN
3191 #endif
3192 #if !defined(NV_NAN) && defined(DBL_SNAN)
3193 #  define NV_NAN (NV)DBL_SNAN
3194 #endif
3195 #if !defined(NV_NAN) && defined(QNAN)
3196 #  define NV_NAN (NV)QNAN
3197 #endif
3198 #if !defined(NV_NAN) && defined(SNAN)
3199 #  define NV_NAN (NV)SNAN
3200 #endif
3201 #if !defined(NV_NAN) && defined(NAN)
3202 #  define NV_NAN (NV)NAN
3203 #endif
3204
3205 #ifndef __cplusplus
3206 #  if defined(NeXT) || defined(__NeXT__) /* or whatever catches all NeXTs */
3207 char *crypt ();       /* Maybe more hosts will need the unprototyped version */
3208 #  else
3209 #    if !defined(WIN32) && !defined(VMS)
3210 #ifndef crypt
3211 char *crypt (const char*, const char*);
3212 #endif
3213 #    endif /* !WIN32 */
3214 #  endif /* !NeXT && !__NeXT__ */
3215 #  ifndef DONT_DECLARE_STD
3216 #    ifndef getenv
3217 char *getenv (const char*);
3218 #    endif /* !getenv */
3219 #    if !defined(HAS_LSEEK_PROTO) && !defined(EPOC) && !defined(__hpux)
3220 #      ifdef _FILE_OFFSET_BITS
3221 #        if _FILE_OFFSET_BITS == 64
3222 Off_t lseek (int,Off_t,int);
3223 #        endif
3224 #      endif
3225 #    endif
3226 #  endif /* !DONT_DECLARE_STD */
3227 #ifndef getlogin
3228 char *getlogin (void);
3229 #endif
3230 #endif /* !__cplusplus */
3231
3232 #ifdef UNLINK_ALL_VERSIONS /* Currently only makes sense for VMS */
3233 #define UNLINK unlnk
3234 I32 unlnk (char*);
3235 #else
3236 #define UNLINK PerlLIO_unlink
3237 #endif
3238
3239 /* some versions of glibc are missing the setresuid() proto */
3240 #if defined(HAS_SETRESUID) && !defined(HAS_SETRESUID_PROTO)
3241 int setresuid(uid_t ruid, uid_t euid, uid_t suid);
3242 #endif
3243 /* some versions of glibc are missing the setresgid() proto */
3244 #if defined(HAS_SETRESGID) && !defined(HAS_SETRESGID_PROTO)
3245 int setresgid(gid_t rgid, gid_t egid, gid_t sgid);
3246 #endif
3247
3248 #ifndef HAS_SETREUID
3249 #  ifdef HAS_SETRESUID
3250 #    define setreuid(r,e) setresuid(r,e,(Uid_t)-1)
3251 #    define HAS_SETREUID
3252 #  endif
3253 #endif
3254 #ifndef HAS_SETREGID
3255 #  ifdef HAS_SETRESGID
3256 #    define setregid(r,e) setresgid(r,e,(Gid_t)-1)
3257 #    define HAS_SETREGID
3258 #  endif
3259 #endif
3260
3261 /* Sighandler_t defined in iperlsys.h */
3262
3263 #ifdef HAS_SIGACTION
3264 typedef struct sigaction Sigsave_t;
3265 #else
3266 typedef Sighandler_t Sigsave_t;
3267 #endif
3268
3269 #define SCAN_DEF 0
3270 #define SCAN_TR 1
3271 #define SCAN_REPL 2
3272
3273 #ifdef DEBUGGING
3274 # ifndef register
3275 #  define register
3276 # endif
3277 # define RUNOPS_DEFAULT Perl_runops_debug
3278 #else
3279 # define RUNOPS_DEFAULT Perl_runops_standard
3280 #endif
3281
3282 #ifdef MYMALLOC
3283 #  ifdef MUTEX_INIT_CALLS_MALLOC
3284 #    define MALLOC_INIT                                 \
3285         STMT_START {                                    \
3286                 PL_malloc_mutex = NULL;                 \
3287                 MUTEX_INIT(&PL_malloc_mutex);           \
3288         } STMT_END
3289 #    define MALLOC_TERM                                 \
3290         STMT_START {                                    \
3291                 perl_mutex tmp = PL_malloc_mutex;       \
3292                 PL_malloc_mutex = NULL;                 \
3293                 MUTEX_DESTROY(&tmp);                    \
3294         } STMT_END
3295 #  else
3296 #    define MALLOC_INIT MUTEX_INIT(&PL_malloc_mutex)
3297 #    define MALLOC_TERM MUTEX_DESTROY(&PL_malloc_mutex)
3298 #  endif
3299 #else
3300 #  define MALLOC_INIT
3301 #  define MALLOC_TERM
3302 #endif
3303
3304
3305 typedef int (CPERLscope(*runops_proc_t)) (pTHX);
3306 typedef void (CPERLscope(*share_proc_t)) (pTHX_ SV *sv);
3307 typedef int  (CPERLscope(*thrhook_proc_t)) (pTHX);
3308 typedef OP* (CPERLscope(*PPADDR_t)[]) (pTHX);
3309
3310 /* _ (for $_) must be first in the following list (DEFSV requires it) */
3311 #define THREADSV_NAMES "_123456789&`'+/.,\\\";^-%=|~:\001\005!@"
3312
3313 /* NeXT has problems with crt0.o globals */
3314 #if defined(__DYNAMIC__) && \
3315     (defined(NeXT) || defined(__NeXT__) || defined(PERL_DARWIN))
3316 #  if defined(NeXT) || defined(__NeXT)
3317 #    include <mach-o/dyld.h>
3318 #    define environ (*environ_pointer)
3319 EXT char *** environ_pointer;
3320 #  else
3321 #    if defined(PERL_DARWIN) && defined(PERL_CORE)
3322 #      include <crt_externs.h>  /* for the env array */
3323 #      define environ (*_NSGetEnviron())
3324 #    endif
3325 #  endif
3326 #else
3327    /* VMS and some other platforms don't use the environ array */
3328 #  ifdef USE_ENVIRON_ARRAY
3329 #    if !defined(DONT_DECLARE_STD) || \
3330         (defined(__svr4__) && defined(__GNUC__) && defined(sun)) || \
3331         defined(__sgi) || \
3332         defined(__DGUX)
3333 extern char **  environ;        /* environment variables supplied via exec */
3334 #    endif
3335 #  endif
3336 #endif
3337
3338 START_EXTERN_C
3339
3340 /* handy constants */
3341 EXTCONST char PL_warn_uninit[]
3342   INIT("Use of uninitialized value%s%s%s");
3343 EXTCONST char PL_warn_nosemi[]
3344   INIT("Semicolon seems to be missing");
3345 EXTCONST char PL_warn_reserved[]
3346   INIT("Unquoted string \"%s\" may clash with future reserved word");
3347 EXTCONST char PL_warn_nl[]
3348   INIT("Unsuccessful %s on filename containing newline");
3349 EXTCONST char PL_no_wrongref[]
3350   INIT("Can't use %s ref as %s ref");
3351 EXTCONST char PL_no_symref[]
3352   INIT("Can't use string (\"%.32s\") as %s ref while \"strict refs\" in use");
3353 EXTCONST char PL_no_symref_sv[]
3354   INIT("Can't use string (\"%" SVf32 "\") as %s ref while \"strict refs\" in use");
3355 EXTCONST char PL_no_usym[]
3356   INIT("Can't use an undefined value as %s reference");
3357 EXTCONST char PL_no_aelem[]
3358   INIT("Modification of non-creatable array value attempted, subscript %d");
3359 EXTCONST char PL_no_helem[]
3360   INIT("Modification of non-creatable hash value attempted, subscript \"%s\"");
3361 EXTCONST char PL_no_modify[]
3362   INIT("Modification of a read-only value attempted");
3363 EXTCONST char PL_no_mem[]
3364   INIT("Out of memory!\n");
3365 EXTCONST char PL_no_security[]
3366   INIT("Insecure dependency in %s%s");
3367 EXTCONST char PL_no_sock_func[]
3368   INIT("Unsupported socket function \"%s\" called");
3369 EXTCONST char PL_no_dir_func[]
3370   INIT("Unsupported directory function \"%s\" called");
3371 EXTCONST char PL_no_func[]
3372   INIT("The %s function is unimplemented");
3373 EXTCONST char PL_no_myglob[]
3374   INIT("\"my\" variable %s can't be in a package");
3375 EXTCONST char PL_no_localize_ref[]
3376   INIT("Can't localize through a reference");
3377 #ifdef PERL_MALLOC_WRAP
3378 EXTCONST char PL_memory_wrap[]
3379   INIT("panic: memory wrap");
3380 #endif
3381
3382 EXTCONST char PL_uuemap[65]
3383   INIT("`!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_");
3384
3385
3386 #ifdef DOINIT
3387 EXTCONST char* const PL_sig_name[] = { SIG_NAME };
3388 EXTCONST int         PL_sig_num[]  = { SIG_NUM };
3389 #else
3390 EXTCONST char* const PL_sig_name[];
3391 EXTCONST int         PL_sig_num[];
3392 #endif
3393
3394 /* fast conversion and case folding tables */
3395
3396 #ifdef DOINIT
3397 #ifdef EBCDIC
3398 EXTCONST unsigned char PL_fold[] = { /* fast EBCDIC case folding table */
3399     0,      1,      2,      3,      4,      5,      6,      7,
3400     8,      9,      10,     11,     12,     13,     14,     15,
3401     16,     17,     18,     19,     20,     21,     22,     23,
3402     24,     25,     26,     27,     28,     29,     30,     31,
3403     32,     33,     34,     35,     36,     37,     38,     39,
3404     40,     41,     42,     43,     44,     45,     46,     47,
3405     48,     49,     50,     51,     52,     53,     54,     55,
3406     56,     57,     58,     59,     60,     61,     62,     63,
3407     64,     65,     66,     67,     68,     69,     70,     71,
3408     72,     73,     74,     75,     76,     77,     78,     79,
3409     80,     81,     82,     83,     84,     85,     86,     87,
3410     88,     89,     90,     91,     92,     93,     94,     95,
3411     96,     97,     98,     99,     100,    101,    102,    103,
3412     104,    105,    106,    107,    108,    109,    110,    111,
3413     112,    113,    114,    115,    116,    117,    118,    119,
3414     120,    121,    122,    123,    124,    125,    126,    127,
3415     128,    'A',    'B',    'C',    'D',    'E',    'F',    'G',
3416     'H',    'I',    138,    139,    140,    141,    142,    143,
3417     144,    'J',    'K',    'L',    'M',    'N',    'O',    'P',
3418     'Q',    'R',    154,    155,    156,    157,    158,    159,
3419     160,    161,    'S',    'T',    'U',    'V',    'W',    'X',
3420     'Y',    'Z',    170,    171,    172,    173,    174,    175,
3421     176,    177,    178,    179,    180,    181,    182,    183,
3422     184,    185,    186,    187,    188,    189,    190,    191,
3423     192,    'a',    'b',    'c',    'd',    'e',    'f',    'g',
3424     'h',    'i',    202,    203,    204,    205,    206,    207,
3425     208,    'j',    'k',    'l',    'm',    'n',    'o',    'p',
3426     'q',    'r',    218,    219,    220,    221,    222,    223,
3427     224,    225,    's',    't',    'u',    'v',    'w',    'x',
3428     'y',    'z',    234,    235,    236,    237,    238,    239,
3429     240,    241,    242,    243,    244,    245,    246,    247,
3430     248,    249,    250,    251,    252,    253,    254,    255
3431 };
3432 #else   /* ascii rather than ebcdic */
3433 EXTCONST  unsigned char PL_fold[] = {
3434         0,      1,      2,      3,      4,      5,      6,      7,
3435         8,      9,      10,     11,     12,     13,     14,     15,
3436         16,     17,     18,     19,     20,     21,     22,     23,
3437         24,     25,     26,     27,     28,     29,     30,     31,
3438         32,     33,     34,     35,     36,     37,     38,     39,
3439         40,     41,     42,     43,     44,     45,     46,     47,
3440         48,     49,     50,     51,     52,     53,     54,     55,
3441         56,     57,     58,     59,     60,     61,     62,     63,
3442         64,     'a',    'b',    'c',    'd',    'e',    'f',    'g',
3443         'h',    'i',    'j',    'k',    'l',    'm',    'n',    'o',
3444         'p',    'q',    'r',    's',    't',    'u',    'v',    'w',
3445         'x',    'y',    'z',    91,     92,     93,     94,     95,
3446         96,     'A',    'B',    'C',    'D',    'E',    'F',    'G',
3447         'H',    'I',    'J',    'K',    'L',    'M',    'N',    'O',
3448         'P',    'Q',    'R',    'S',    'T',    'U',    'V',    'W',
3449         'X',    'Y',    'Z',    123,    124,    125,    126,    127,
3450         128,    129,    130,    131,    132,    133,    134,    135,
3451         136,    137,    138,    139,    140,    141,    142,    143,
3452         144,    145,    146,    147,    148,    149,    150,    151,
3453         152,    153,    154,    155,    156,    157,    158,    159,
3454         160,    161,    162,    163,    164,    165,    166,    167,
3455         168,    169,    170,    171,    172,    173,    174,    175,
3456         176,    177,    178,    179,    180,    181,    182,    183,
3457         184,    185,    186,    187,    188,    189,    190,    191,
3458         192,    193,    194,    195,    196,    197,    198,    199,
3459         200,    201,    202,    203,    204,    205,    206,    207,
3460         208,    209,    210,    211,    212,    213,    214,    215,
3461         216,    217,    218,    219,    220,    221,    222,    223,    
3462         224,    225,    226,    227,    228,    229,    230,    231,
3463         232,    233,    234,    235,    236,    237,    238,    239,
3464         240,    241,    242,    243,    244,    245,    246,    247,
3465         248,    249,    250,    251,    252,    253,    254,    255
3466 };
3467 #endif  /* !EBCDIC */
3468 #else
3469 EXTCONST unsigned char PL_fold[];
3470 #endif
3471
3472 #ifndef PERL_GLOBAL_STRUCT /* or perlvars.h */
3473 #ifdef DOINIT
3474 EXT unsigned char PL_fold_locale[] = { /* Unfortunately not EXTCONST. */
3475         0,      1,      2,      3,      4,      5,      6,      7,
3476         8,      9,      10,     11,     12,     13,     14,     15,
3477         16,     17,     18,     19,     20,     21,     22,     23,
3478         24,     25,     26,     27,     28,     29,     30,     31,
3479         32,     33,     34,     35,     36,     37,     38,     39,
3480         40,     41,     42,     43,     44,     45,     46,     47,
3481         48,     49,     50,     51,     52,     53,     54,     55,
3482         56,     57,     58,     59,     60,     61,     62,     63,
3483         64,     'a',    'b',    'c',    'd',    'e',    'f',    'g',
3484         'h',    'i',    'j',    'k',    'l',    'm',    'n',    'o',
3485         'p',    'q',    'r',    's',    't',    'u',    'v',    'w',
3486         'x',    'y',    'z',    91,     92,     93,     94,     95,
3487         96,     'A',    'B',    'C',    'D',    'E',    'F',    'G',
3488         'H',    'I',    'J',    'K',    'L',    'M',    'N',    'O',
3489         'P',    'Q',    'R',    'S',    'T',    'U',    'V',    'W',
3490         'X',    'Y',    'Z',    123,    124,    125,    126,    127,
3491         128,    129,    130,    131,    132,    133,    134,    135,
3492         136,    137,    138,    139,    140,    141,    142,    143,
3493         144,    145,    146,    147,    148,    149,    150,    151,
3494         152,    153,    154,    155,    156,    157,    158,    159,
3495         160,    161,    162,    163,    164,    165,    166,    167,
3496         168,    169,    170,    171,    172,    173,    174,    175,
3497         176,    177,    178,    179,    180,    181,    182,    183,
3498         184,    185,    186,    187,    188,    189,    190,    191,
3499         192,    193,    194,    195,    196,    197,    198,    199,
3500         200,    201,    202,    203,    204,    205,    206,    207,
3501         208,    209,    210,    211,    212,    213,    214,    215,
3502         216,    217,    218,    219,    220,    221,    222,    223,    
3503         224,    225,    226,    227,    228,    229,    230,    231,
3504         232,    233,    234,    235,    236,    237,    238,    239,
3505         240,    241,    242,    243,    244,    245,    246,    247,
3506         248,    249,    250,    251,    252,    253,    254,    255
3507 };
3508 #else
3509 EXT unsigned char PL_fold_locale[]; /* Unfortunately not EXTCONST. */
3510 #endif
3511 #endif /* !PERL_GLOBAL_STRUCT */
3512
3513 #ifdef DOINIT
3514 #ifdef EBCDIC
3515 EXTCONST unsigned char PL_freq[] = {/* EBCDIC frequencies for mixed English/C */
3516     1,      2,      84,     151,    154,    155,    156,    157,
3517     165,    246,    250,    3,      158,    7,      18,     29,
3518     40,     51,     62,     73,     85,     96,     107,    118,
3519     129,    140,    147,    148,    149,    150,    152,    153,
3520     255,      6,      8,      9,     10,     11,     12,     13,
3521      14,     15,     24,     25,     26,     27,     28,    226,
3522      29,     30,     31,     32,     33,     43,     44,     45,
3523      46,     47,     48,     49,     50,     76,     77,     78,
3524      79,     80,     81,     82,     83,     84,     85,     86,
3525      87,     94,     95,    234,    181,    233,    187,    190,
3526     180,     96,     97,     98,     99,    100,    101,    102,
3527     104,    112,    182,    174,    236,    232,    229,    103,
3528     228,    226,    114,    115,    116,    117,    118,    119,
3529     120,    121,    122,    235,    176,    230,    194,    162,
3530     130,    131,    132,    133,    134,    135,    136,    137,
3531     138,    139,    201,    205,    163,    217,    220,    224,
3532     5,      248,    227,    244,    242,    255,    241,    231,
3533     240,    253,    16,     197,    19,     20,     21,     187,
3534     23,     169,    210,    245,    237,    249,    247,    239,
3535     168,    252,    34,     196,    36,     37,     38,     39,
3536     41,     42,     251,    254,    238,    223,    221,    213,
3537     225,    177,    52,     53,     54,     55,     56,     57,
3538     58,     59,     60,     61,     63,     64,     65,     66,
3539     67,     68,     69,     70,     71,     72,     74,     75,
3540     205,    208,    186,    202,    200,    218,    198,    179,
3541     178,    214,    88,     89,     90,     91,     92,     93,
3542     217,    166,    170,    207,    199,    209,    206,    204,
3543     160,    212,    105,    106,    108,    109,    110,    111,
3544     203,    113,    216,    215,    192,    175,    193,    243,
3545     172,    161,    123,    124,    125,    126,    127,    128,
3546     222,    219,    211,    195,    188,    193,    185,    184,
3547     191,    183,    141,    142,    143,    144,    145,    146
3548 };
3549 #else  /* ascii rather than ebcdic */
3550 EXTCONST unsigned char PL_freq[] = {    /* letter frequencies for mixed English/C */
3551         1,      2,      84,     151,    154,    155,    156,    157,
3552         165,    246,    250,    3,      158,    7,      18,     29,
3553         40,     51,     62,     73,     85,     96,     107,    118,
3554         129,    140,    147,    148,    149,    150,    152,    153,
3555         255,    182,    224,    205,    174,    176,    180,    217,
3556         233,    232,    236,    187,    235,    228,    234,    226,
3557         222,    219,    211,    195,    188,    193,    185,    184,
3558         191,    183,    201,    229,    181,    220,    194,    162,
3559         163,    208,    186,    202,    200,    218,    198,    179,
3560         178,    214,    166,    170,    207,    199,    209,    206,
3561         204,    160,    212,    216,    215,    192,    175,    173,
3562         243,    172,    161,    190,    203,    189,    164,    230,
3563         167,    248,    227,    244,    242,    255,    241,    231,
3564         240,    253,    169,    210,    245,    237,    249,    247,
3565         239,    168,    252,    251,    254,    238,    223,    221,
3566         213,    225,    177,    197,    171,    196,    159,    4,
3567         5,      6,      8,      9,      10,     11,     12,     13,
3568         14,     15,     16,     17,     19,     20,     21,     22,
3569         23,     24,     25,     26,     27,     28,     30,     31,
3570         32,     33,     34,     35,     36,     37,     38,     39,
3571         41,     42,     43,     44,     45,     46,     47,     48,
3572         49,     50,     52,     53,     54,     55,     56,     57,
3573         58,     59,     60,     61,     63,     64,     65,     66,
3574         67,     68,     69,     70,     71,     72,     74,     75,
3575         76,     77,     78,     79,     80,     81,     82,     83,
3576         86,     87,     88,     89,     90,     91,     92,     93,
3577         94,     95,     97,     98,     99,     100,    101,    102,
3578         103,    104,    105,    106,    108,    109,    110,    111,
3579         112,    113,    114,    115,    116,    117,    119,    120,
3580         121,    122,    123,    124,    125,    126,    127,    128,
3581         130,    131,    132,    133,    134,    135,    136,    137,
3582         138,    139,    141,    142,    143,    144,    145,    146
3583 };
3584 #endif
3585 #else
3586 EXTCONST unsigned char PL_freq[];
3587 #endif
3588
3589 #ifdef DEBUGGING
3590 #ifdef DOINIT
3591 EXTCONST char* const PL_block_type[] = {
3592         "NULL",
3593         "SUB",
3594         "EVAL",
3595         "LOOP",
3596         "SUBST",
3597         "BLOCK",
3598 };
3599 #else
3600 EXTCONST char* PL_block_type[];
3601 #endif
3602 #endif
3603
3604 END_EXTERN_C
3605
3606 /*****************************************************************************/
3607 /* This lexer/parser stuff is currently global since yacc is hard to reenter */
3608 /*****************************************************************************/
3609 /* XXX This needs to be revisited, since BEGIN makes yacc re-enter... */
3610
3611 #ifdef __Lynx__
3612 /* LynxOS defines these in scsi.h which is included via ioctl.h */
3613 #ifdef FORMAT
3614 #undef FORMAT
3615 #endif
3616 #ifdef SPACE
3617 #undef SPACE
3618 #endif
3619 #endif
3620
3621 /* Win32 defines a type 'WORD' in windef.h. This conflicts with the enumerator
3622  * 'WORD' defined in perly.h. The yytokentype enum is only a debugging aid, so
3623  * it's not really needed.
3624  */
3625 #if defined(WIN32)
3626 #  define YYTOKENTYPE
3627 #endif
3628 #include "perly.h"
3629
3630 #define LEX_NOTPARSING          11      /* borrowed from toke.c */
3631
3632 typedef enum {
3633     XOPERATOR,
3634     XTERM,
3635     XREF,
3636     XSTATE,
3637     XBLOCK,
3638     XATTRBLOCK,
3639     XATTRTERM,
3640     XTERMBLOCK,
3641     XTERMORDORDOR /* evil hack */
3642     /* update exp_name[] in toke.c if adding to this enum */
3643 } expectation;
3644
3645 enum {          /* pass one of these to get_vtbl */
3646     want_vtbl_sv,
3647     want_vtbl_env,
3648     want_vtbl_envelem,
3649     want_vtbl_sig,
3650     want_vtbl_sigelem,
3651     want_vtbl_pack,
3652     want_vtbl_packelem,
3653     want_vtbl_dbline,
3654     want_vtbl_isa,
3655     want_vtbl_isaelem,
3656     want_vtbl_arylen,
3657     want_vtbl_glob,
3658     want_vtbl_mglob,
3659     want_vtbl_nkeys,
3660     want_vtbl_taint,
3661     want_vtbl_substr,
3662     want_vtbl_vec,
3663     want_vtbl_pos,
3664     want_vtbl_bm,
3665     want_vtbl_fm,
3666     want_vtbl_uvar,
3667     want_vtbl_defelem,
3668     want_vtbl_regexp,
3669     want_vtbl_collxfrm,
3670     want_vtbl_amagic,
3671     want_vtbl_amagicelem,
3672     want_vtbl_regdata,
3673     want_vtbl_regdatum,
3674     want_vtbl_backref,
3675     want_vtbl_utf8
3676 };
3677
3678                                 /* Note: the lowest 8 bits are reserved for
3679                                    stuffing into op->op_private */
3680 #define HINT_PRIVATE_MASK       0x000000ff
3681 #define HINT_INTEGER            0x00000001 /* integer pragma */
3682 #define HINT_STRICT_REFS        0x00000002 /* strict pragma */
3683 #define HINT_LOCALE             0x00000004 /* locale pragma */
3684 #define HINT_BYTES              0x00000008 /* bytes pragma */
3685 /* #define HINT_notused10       0x00000010 */
3686                                 /* Note: 20,40,80 used for NATIVE_HINTS */
3687                                 /* currently defined by vms/vmsish.h */
3688
3689 #define HINT_BLOCK_SCOPE        0x00000100
3690 #define HINT_STRICT_SUBS        0x00000200 /* strict pragma */
3691 #define HINT_STRICT_VARS        0x00000400 /* strict pragma */
3692
3693 /* The HINT_NEW_* constants are used by the overload pragma */
3694 #define HINT_NEW_INTEGER        0x00001000
3695 #define HINT_NEW_FLOAT          0x00002000
3696 #define HINT_NEW_BINARY         0x00004000
3697 #define HINT_NEW_STRING         0x00008000
3698 #define HINT_NEW_RE             0x00010000
3699 #define HINT_LOCALIZE_HH        0x00020000 /* %^H needs to be copied */
3700
3701 #define HINT_RE_TAINT           0x00100000 /* re pragma */
3702 #define HINT_RE_EVAL            0x00200000 /* re pragma */
3703
3704 #define HINT_FILETEST_ACCESS    0x00400000 /* filetest pragma */
3705 #define HINT_UTF8               0x00800000 /* utf8 pragma */
3706
3707 /* assertions pragma */
3708 #define HINT_ASSERTING          0x01000000
3709 #define HINT_ASSERTIONSSEEN     0x02000000
3710
3711 /* The following are stored in $sort::hints, not in PL_hints */
3712 #define HINT_SORT_SORT_BITS     0x000000FF /* allow 256 different ones */
3713 #define HINT_SORT_QUICKSORT     0x00000001
3714 #define HINT_SORT_MERGESORT     0x00000002
3715 #define HINT_SORT_STABLE        0x00000100 /* sort styles (currently one) */
3716
3717 /* Various states of the input record separator SV (rs) */
3718 #define RsSNARF(sv)   (! SvOK(sv))
3719 #define RsSIMPLE(sv)  (SvOK(sv) && (! SvPOK(sv) || SvCUR(sv)))
3720 #define RsPARA(sv)    (SvPOK(sv) && ! SvCUR(sv))
3721 #define RsRECORD(sv)  (SvROK(sv) && (SvIV(SvRV(sv)) > 0))
3722
3723 /* A struct for keeping various DEBUGGING related stuff,
3724  * neatly packed.  Currently only scratch variables for
3725  * constructing debug output are included.  Needed always,
3726  * not just when DEBUGGING, though, because of the re extension. c*/
3727 struct perl_debug_pad {
3728   SV pad[3];
3729 };
3730
3731 #define PERL_DEBUG_PAD(i)       &(PL_debug_pad.pad[i])
3732 #define PERL_DEBUG_PAD_ZERO(i)  (SvPVX(PERL_DEBUG_PAD(i))[0] = 0, \
3733         (((XPV*) SvANY(PERL_DEBUG_PAD(i)))->xpv_cur = 0), \
3734         PERL_DEBUG_PAD(i))
3735
3736 /* Enable variables which are pointers to functions */
3737 typedef void (CPERLscope(*peep_t))(pTHX_ OP* o);
3738 typedef regexp*(CPERLscope(*regcomp_t)) (pTHX_ char* exp, char* xend, PMOP* pm);
3739 typedef I32 (CPERLscope(*regexec_t)) (pTHX_ regexp* prog, char* stringarg,
3740                                       char* strend, char* strbeg, I32 minend,
3741                                       SV* screamer, void* data, U32 flags);
3742 typedef char* (CPERLscope(*re_intuit_start_t)) (pTHX_ regexp *prog, SV *sv,
3743                                                 char *strpos, char *strend,
3744                                                 U32 flags,
3745                                                 struct re_scream_pos_data_s *d);
3746 typedef SV*     (CPERLscope(*re_intuit_string_t)) (pTHX_ regexp *prog);
3747 typedef void    (CPERLscope(*regfree_t)) (pTHX_ struct regexp* r);
3748
3749 typedef void (*DESTRUCTORFUNC_NOCONTEXT_t) (void*);
3750 typedef void (*DESTRUCTORFUNC_t) (pTHX_ void*);
3751 typedef void (*SVFUNC_t) (pTHX_ SV*);
3752 typedef I32  (*SVCOMPARE_t) (pTHX_ SV*, SV*);
3753 typedef void (*XSINIT_t) (pTHX);
3754 typedef void (*ATEXIT_t) (pTHX_ void*);
3755 typedef void (*XSUBADDR_t) (pTHX_ CV *);
3756
3757 /* Set up PERLVAR macros for populating structs */
3758 #define PERLVAR(var,type) type var;
3759 #define PERLVARA(var,n,type) type var[n];
3760 #define PERLVARI(var,type,init) type var;
3761 #define PERLVARIC(var,type,init) type var;
3762 #define PERLVARISC(var,init) const char var[sizeof(init)];
3763
3764 typedef OP* (CPERLscope(*Perl_ppaddr_t))(pTHX);
3765 typedef OP* (CPERLscope(*Perl_check_t)) (pTHX_ OP*);
3766
3767 /* Interpreter exitlist entry */
3768 typedef struct exitlistentry {
3769     void (*fn) (pTHX_ void*);
3770     void *ptr;
3771 } PerlExitListEntry;
3772
3773 /* if you only have signal() and it resets on each signal, FAKE_PERSISTENT_SIGNAL_HANDLERS fixes */
3774 /* These have to be before perlvars.h */
3775 #if !defined(HAS_SIGACTION) && defined(VMS)
3776 #  define  FAKE_PERSISTENT_SIGNAL_HANDLERS
3777 #endif
3778 /* if we're doing kill() with sys$sigprc on VMS, FAKE_DEFAULT_SIGNAL_HANDLERS */
3779 #if defined(KILL_BY_SIGPRC)
3780 #  define  FAKE_DEFAULT_SIGNAL_HANDLERS
3781 #endif
3782
3783 #ifdef PERL_GLOBAL_STRUCT
3784 struct perl_vars {
3785 #  include "perlvars.h"
3786 };
3787
3788 #  ifdef PERL_CORE
3789 #    ifndef PERL_GLOBAL_STRUCT_PRIVATE
3790 EXT struct perl_vars PL_Vars;
3791 EXT struct perl_vars *PL_VarsPtr INIT(&PL_Vars);
3792 #      undef PERL_GET_VARS
3793 #      define PERL_GET_VARS() PL_VarsPtr
3794 #    endif /* !PERL_GLOBAL_STRUCT_PRIVATE */
3795 #  else /* PERL_CORE */
3796 #    if !defined(__GNUC__) || !defined(WIN32)
3797 EXT
3798 #    endif /* WIN32 */
3799 struct perl_vars *PL_VarsPtr;
3800 #    define PL_Vars (*((PL_VarsPtr) \
3801                        ? PL_VarsPtr : (PL_VarsPtr = Perl_GetVars(aTHX))))
3802 #  endif /* PERL_CORE */
3803 #endif /* PERL_GLOBAL_STRUCT */
3804
3805 #if defined(MULTIPLICITY)
3806 /* If we have multiple interpreters define a struct
3807    holding variables which must be per-interpreter
3808    If we don't have threads anything that would have
3809    be per-thread is per-interpreter.
3810 */
3811
3812 struct interpreter {
3813 #  include "thrdvar.h"
3814 #  include "intrpvar.h"
3815 /*
3816  * The following is a buffer where new variables must
3817  * be defined to maintain binary compatibility with previous versions
3818  */
3819 PERLVARA(object_compatibility,30,       char)
3820 };
3821
3822 #else
3823 struct interpreter {
3824     char broiled;
3825 };
3826 #endif /* MULTIPLICITY */
3827
3828 typedef void *Thread;
3829
3830 /* Done with PERLVAR macros for now ... */
3831 #undef PERLVAR
3832 #undef PERLVARA
3833 #undef PERLVARI
3834 #undef PERLVARIC
3835 #undef PERLVARISC
3836
3837 struct tempsym; /* defined in pp_pack.c */
3838
3839 #include "thread.h"
3840 #include "pp.h"
3841
3842 #ifndef PERL_CALLCONV
3843 #  define PERL_CALLCONV
3844 #endif
3845
3846 #ifndef NEXT30_NO_ATTRIBUTE
3847 #  ifndef HASATTRIBUTE       /* disable GNU-cc attribute checking? */
3848 #    ifdef  __attribute__      /* Avoid possible redefinition errors */
3849 #      undef  __attribute__
3850 #    endif
3851 #    define __attribute__(attr)
3852 #  endif
3853 #endif
3854
3855 #undef PERL_CKDEF
3856 #undef PERL_PPDEF
3857 #define PERL_CKDEF(s)   OP *s (pTHX_ OP *o);
3858 #define PERL_PPDEF(s)   OP *s (pTHX);
3859
3860 #include "proto.h"
3861
3862 /* this has structure inits, so it cannot be included before here */
3863 #include "opcode.h"
3864
3865 /* The following must follow proto.h as #defines mess up syntax */
3866
3867 #if !defined(PERL_FOR_X2P)
3868 #  include "embedvar.h"
3869 #endif
3870
3871 /* Now include all the 'global' variables
3872  * If we don't have threads or multiple interpreters
3873  * these include variables that would have been their struct-s
3874  */
3875
3876 #define PERLVAR(var,type) EXT type PL_##var;
3877 #define PERLVARA(var,n,type) EXT type PL_##var[n];
3878 #define PERLVARI(var,type,init) EXT type  PL_##var INIT(init);
3879 #define PERLVARIC(var,type,init) EXTCONST type PL_##var INIT(init);
3880 #define PERLVARISC(var,init) EXTCONST char PL_##var[sizeof(init)] INIT(init);
3881
3882 #if !defined(MULTIPLICITY)
3883 START_EXTERN_C
3884 #  include "intrpvar.h"
3885 #  include "thrdvar.h"
3886 END_EXTERN_C
3887 #endif
3888
3889 #if defined(WIN32)
3890 /* Now all the config stuff is setup we can include embed.h */
3891 #  include "embed.h"
3892 #endif
3893
3894 #ifndef PERL_GLOBAL_STRUCT
3895 START_EXTERN_C
3896
3897 #  include "perlvars.h"
3898
3899 END_EXTERN_C
3900 #endif
3901
3902 #undef PERLVAR
3903 #undef PERLVARA
3904 #undef PERLVARI
3905 #undef PERLVARIC
3906
3907 START_EXTERN_C
3908
3909 #ifdef DOINIT
3910 #  define MGVTBL_SET(var,a,b,c,d,e,f,g) EXTCONST MGVTBL var = {a,b,c,d,e,f,g}
3911 #else
3912 #  define MGVTBL_SET(var,a,b,c,d,e,f,g) EXTCONST MGVTBL var
3913 #endif
3914
3915 MGVTBL_SET(
3916     PL_vtbl_sv,
3917     MEMBER_TO_FPTR(Perl_magic_get),
3918     MEMBER_TO_FPTR(Perl_magic_set),
3919     MEMBER_TO_FPTR(Perl_magic_len),
3920     NULL,
3921     NULL,
3922     NULL,
3923     NULL
3924 );
3925
3926 MGVTBL_SET(
3927     PL_vtbl_env,
3928     NULL,
3929     MEMBER_TO_FPTR(Perl_magic_set_all_env),
3930     NULL,
3931     MEMBER_TO_FPTR(Perl_magic_clear_all_env),
3932     NULL,
3933     NULL,
3934     NULL
3935 );
3936
3937 MGVTBL_SET(
3938     PL_vtbl_envelem,
3939     NULL,
3940     MEMBER_TO_FPTR(Perl_magic_setenv),
3941     NULL,
3942     MEMBER_TO_FPTR(Perl_magic_clearenv),
3943     NULL,
3944     NULL,
3945     NULL
3946 );
3947
3948 MGVTBL_SET(
3949     PL_vtbl_sig,
3950     NULL,
3951     NULL,
3952     NULL,
3953     NULL,
3954     NULL,
3955     NULL,
3956     NULL
3957 );
3958
3959 #ifdef PERL_MICRO
3960 MGVTBL_SET(
3961     PL_vtbl_sigelem,
3962     NULL, NULL, NULL, NULL, NULL, NULL, NULL
3963 );
3964
3965 #else
3966 MGVTBL_SET(
3967     PL_vtbl_sigelem,
3968     MEMBER_TO_FPTR(Perl_magic_getsig),
3969     MEMBER_TO_FPTR(Perl_magic_setsig),
3970     NULL,
3971     MEMBER_TO_FPTR(Perl_magic_clearsig),
3972     NULL,
3973     NULL,
3974     NULL
3975 );
3976 #endif
3977
3978 MGVTBL_SET(
3979     PL_vtbl_pack,
3980     NULL,
3981     NULL,
3982     MEMBER_TO_FPTR(Perl_magic_sizepack),
3983     MEMBER_TO_FPTR(Perl_magic_wipepack),
3984     NULL,
3985     NULL,
3986     NULL
3987 );
3988
3989 MGVTBL_SET(
3990     PL_vtbl_packelem,
3991     MEMBER_TO_FPTR(Perl_magic_getpack),
3992     MEMBER_TO_FPTR(Perl_magic_setpack),
3993     NULL,
3994     MEMBER_TO_FPTR(Perl_magic_clearpack),
3995     NULL,
3996     NULL,
3997     NULL
3998 );
3999
4000 MGVTBL_SET(
4001     PL_vtbl_dbline,
4002     NULL,
4003     MEMBER_TO_FPTR(Perl_magic_setdbline),
4004     NULL,
4005     NULL,
4006     NULL,
4007     NULL,
4008     NULL
4009 );
4010
4011 MGVTBL_SET(
4012     PL_vtbl_isa,
4013     NULL,
4014     MEMBER_TO_FPTR(Perl_magic_setisa),
4015     NULL,
4016     MEMBER_TO_FPTR(Perl_magic_setisa),
4017     NULL,
4018     NULL,
4019     NULL
4020 );
4021
4022 MGVTBL_SET(
4023     PL_vtbl_isaelem,
4024     NULL,
4025     MEMBER_TO_FPTR(Perl_magic_setisa),
4026     NULL,
4027     NULL,
4028     NULL,
4029     NULL,
4030     NULL
4031 );
4032
4033 MGVTBL_SET(
4034     PL_vtbl_arylen,
4035     MEMBER_TO_FPTR(Perl_magic_getarylen),
4036     MEMBER_TO_FPTR(Perl_magic_setarylen),
4037     NULL,
4038     NULL,
4039     NULL,
4040     NULL,
4041     NULL
4042 );
4043
4044 MGVTBL_SET(
4045     PL_vtbl_glob,
4046     MEMBER_TO_FPTR(Perl_magic_getglob),
4047     MEMBER_TO_FPTR(Perl_magic_setglob),
4048     NULL,
4049     NULL,
4050     NULL,
4051     NULL,
4052     NULL
4053 );
4054
4055 MGVTBL_SET(
4056     PL_vtbl_mglob,
4057     NULL,
4058     MEMBER_TO_FPTR(Perl_magic_setmglob),
4059     NULL,
4060     NULL,
4061     NULL,
4062     NULL,
4063     NULL
4064 );
4065
4066 MGVTBL_SET(
4067     PL_vtbl_nkeys,
4068     MEMBER_TO_FPTR(Perl_magic_getnkeys),
4069     MEMBER_TO_FPTR(Perl_magic_setnkeys),
4070     NULL,
4071     NULL,
4072     NULL,
4073     NULL,
4074     NULL
4075 );
4076
4077 MGVTBL_SET(
4078     PL_vtbl_taint,
4079     MEMBER_TO_FPTR(Perl_magic_gettaint),
4080     MEMBER_TO_FPTR(Perl_magic_settaint),
4081     NULL,
4082     NULL,
4083     NULL,
4084     NULL,
4085     NULL
4086 );
4087
4088 MGVTBL_SET(
4089     PL_vtbl_substr,
4090     MEMBER_TO_FPTR(Perl_magic_getsubstr),
4091     MEMBER_TO_FPTR(Perl_magic_setsubstr),
4092     NULL,
4093     NULL,
4094     NULL,
4095     NULL,
4096     NULL
4097 );
4098
4099 MGVTBL_SET(
4100     PL_vtbl_vec,
4101     MEMBER_TO_FPTR(Perl_magic_getvec),
4102     MEMBER_TO_FPTR(Perl_magic_setvec),
4103     NULL,
4104     NULL,
4105     NULL,
4106     NULL,
4107     NULL
4108 );
4109
4110 MGVTBL_SET(
4111     PL_vtbl_pos,
4112     MEMBER_TO_FPTR(Perl_magic_getpos),
4113     MEMBER_TO_FPTR(Perl_magic_setpos),
4114     NULL,
4115     NULL,
4116     NULL,
4117     NULL,
4118     NULL
4119 );
4120
4121 MGVTBL_SET(
4122     PL_vtbl_bm,
4123     NULL,
4124     MEMBER_TO_FPTR(Perl_magic_setbm),
4125     NULL,
4126     NULL,
4127     NULL,
4128     NULL,
4129     NULL
4130 );
4131
4132 MGVTBL_SET(
4133     PL_vtbl_fm,
4134     NULL,
4135     MEMBER_TO_FPTR(Perl_magic_setfm),
4136     NULL,
4137     NULL,
4138     NULL,
4139     NULL,
4140     NULL
4141 );
4142
4143 MGVTBL_SET(
4144     PL_vtbl_uvar,
4145     MEMBER_TO_FPTR(Perl_magic_getuvar),
4146     MEMBER_TO_FPTR(Perl_magic_setuvar),
4147     NULL,
4148     NULL,
4149     NULL,
4150     NULL,
4151     NULL
4152 );
4153
4154 MGVTBL_SET(
4155     PL_vtbl_defelem,
4156     MEMBER_TO_FPTR(Perl_magic_getdefelem),
4157     MEMBER_TO_FPTR(Perl_magic_setdefelem),
4158     NULL,
4159     NULL,
4160     NULL,
4161     NULL,
4162     NULL
4163 );
4164
4165 MGVTBL_SET(
4166     PL_vtbl_regexp,
4167     NULL,
4168     MEMBER_TO_FPTR(Perl_magic_setregexp),
4169     NULL,
4170     NULL,
4171     MEMBER_TO_FPTR(Perl_magic_freeregexp),
4172     NULL,
4173     NULL
4174 );
4175
4176 MGVTBL_SET(
4177     PL_vtbl_regdata,
4178     NULL,
4179     NULL,
4180     MEMBER_TO_FPTR(Perl_magic_regdata_cnt),
4181     NULL,
4182     NULL,
4183     NULL,
4184     NULL
4185 );
4186
4187 MGVTBL_SET(
4188     PL_vtbl_regdatum,
4189     MEMBER_TO_FPTR(Perl_magic_regdatum_get),
4190     MEMBER_TO_FPTR(Perl_magic_regdatum_set),
4191     NULL,
4192     NULL,
4193     NULL,
4194     NULL,
4195     NULL
4196 );
4197
4198 MGVTBL_SET(
4199     PL_vtbl_amagic,
4200     NULL,
4201     MEMBER_TO_FPTR(Perl_magic_setamagic),
4202     NULL,
4203     NULL,
4204     MEMBER_TO_FPTR(Perl_magic_setamagic),
4205     NULL,
4206     NULL
4207 );
4208
4209 MGVTBL_SET(
4210     PL_vtbl_amagicelem,
4211     NULL,
4212     MEMBER_TO_FPTR(Perl_magic_setamagic),
4213     NULL,
4214     NULL,
4215     MEMBER_TO_FPTR(Perl_magic_setamagic),
4216     NULL,
4217     NULL
4218 );
4219
4220 MGVTBL_SET(
4221     PL_vtbl_backref,
4222     NULL,
4223     NULL,
4224     NULL,
4225     NULL,
4226     MEMBER_TO_FPTR(Perl_magic_killbackrefs),
4227     NULL,
4228     NULL
4229 );
4230
4231 MGVTBL_SET(
4232     PL_vtbl_ovrld,
4233     NULL,
4234     NULL,
4235     NULL,
4236     NULL,
4237     MEMBER_TO_FPTR(Perl_magic_freeovrld),
4238     NULL,
4239     NULL
4240 );
4241
4242 MGVTBL_SET(
4243     PL_vtbl_utf8,
4244     NULL,
4245     MEMBER_TO_FPTR(Perl_magic_setutf8),
4246     NULL,
4247     NULL,
4248     NULL,
4249     NULL,
4250     NULL
4251 );
4252 #ifdef USE_LOCALE_COLLATE
4253 MGVTBL_SET(
4254     PL_vtbl_collxfrm,
4255     NULL,
4256     MEMBER_TO_FPTR(Perl_magic_setcollxfrm),
4257     NULL,
4258     NULL,
4259     NULL,
4260     NULL,
4261     NULL
4262 );
4263 #endif
4264
4265
4266 enum {
4267   fallback_amg,        abs_amg,
4268   bool__amg,   nomethod_amg,
4269   string_amg,  numer_amg,
4270   add_amg,     add_ass_amg,
4271   subtr_amg,   subtr_ass_amg,
4272   mult_amg,    mult_ass_amg,
4273   div_amg,     div_ass_amg,
4274   modulo_amg,  modulo_ass_amg,
4275   pow_amg,     pow_ass_amg,
4276   lshift_amg,  lshift_ass_amg,
4277   rshift_amg,  rshift_ass_amg,
4278   band_amg,    band_ass_amg,
4279   bor_amg,     bor_ass_amg,
4280   bxor_amg,    bxor_ass_amg,
4281   lt_amg,      le_amg,
4282   gt_amg,      ge_amg,
4283   eq_amg,      ne_amg,
4284   ncmp_amg,    scmp_amg,
4285   slt_amg,     sle_amg,
4286   sgt_amg,     sge_amg,
4287   seq_amg,     sne_amg,
4288   not_amg,     compl_amg,
4289   inc_amg,     dec_amg,
4290   atan2_amg,   cos_amg,
4291   sin_amg,     exp_amg,
4292   log_amg,     sqrt_amg,
4293   repeat_amg,   repeat_ass_amg,
4294   concat_amg,  concat_ass_amg,
4295   copy_amg,    neg_amg,
4296   to_sv_amg,   to_av_amg,
4297   to_hv_amg,   to_gv_amg,
4298   to_cv_amg,   iter_amg,
4299   int_amg,      DESTROY_amg,
4300   max_amg_code
4301   /* Do not leave a trailing comma here.  C9X allows it, C89 doesn't. */
4302 };
4303
4304 #define NofAMmeth max_amg_code
4305 #define AMG_id2name(id) (PL_AMG_names[id]+1)
4306
4307 #ifdef DOINIT
4308 EXTCONST char * const PL_AMG_names[NofAMmeth] = {
4309   /* Names kept in the symbol table.  fallback => "()", the rest has
4310      "(" prepended.  The only other place in perl which knows about
4311      this convention is AMG_id2name (used for debugging output and
4312      'nomethod' only), the only other place which has it hardwired is
4313      overload.pm.  */
4314   "()",         "(abs",                 /* "fallback" should be the first. */
4315   "(bool",      "(nomethod",
4316   "(\"\"",      "(0+",
4317   "(+",         "(+=",
4318   "(-",         "(-=",
4319   "(*",         "(*=",
4320   "(/",         "(/=",
4321   "(%",         "(%=",
4322   "(**",        "(**=",
4323   "(<<",        "(<<=",
4324   "(>>",        "(>>=",
4325   "(&",         "(&=",
4326   "(|",         "(|=",
4327   "(^",         "(^=",
4328   "(<",         "(<=",
4329   "(>",         "(>=",
4330   "(==",        "(!=",
4331   "(<=>",       "(cmp",
4332   "(lt",        "(le",
4333   "(gt",        "(ge",
4334   "(eq",        "(ne",
4335   "(!",         "(~",
4336   "(++",        "(--",
4337   "(atan2",     "(cos",
4338   "(sin",       "(exp",
4339   "(log",       "(sqrt",
4340   "(x",         "(x=",
4341   "(.",         "(.=",
4342   "(=",         "(neg",
4343   "(${}",       "(@{}",
4344   "(%{}",       "(*{}",
4345   "(&{}",       "(<>",
4346   "(int",       "DESTROY",
4347 };
4348 #else
4349 EXTCONST char * PL_AMG_names[NofAMmeth];
4350 #endif /* def INITAMAGIC */
4351
4352 END_EXTERN_C
4353
4354 struct am_table {
4355   U32 was_ok_sub;
4356   long was_ok_am;
4357   U32 flags;
4358   CV* table[NofAMmeth];
4359   long fallback;
4360 };
4361 struct am_table_short {
4362   U32 was_ok_sub;
4363   long was_ok_am;
4364   U32 flags;
4365 };
4366 typedef struct am_table AMT;
4367 typedef struct am_table_short AMTS;
4368
4369 #define AMGfallNEVER    1
4370 #define AMGfallNO       2
4371 #define AMGfallYES      3
4372
4373 #define AMTf_AMAGIC             1
4374 #define AMTf_OVERLOADED         2
4375 #define AMT_AMAGIC(amt)         ((amt)->flags & AMTf_AMAGIC)
4376 #define AMT_AMAGIC_on(amt)      ((amt)->flags |= AMTf_AMAGIC)
4377 #define AMT_AMAGIC_off(amt)     ((amt)->flags &= ~AMTf_AMAGIC)
4378 #define AMT_OVERLOADED(amt)     ((amt)->flags & AMTf_OVERLOADED)
4379 #define AMT_OVERLOADED_on(amt)  ((amt)->flags |= AMTf_OVERLOADED)
4380 #define AMT_OVERLOADED_off(amt) ((amt)->flags &= ~AMTf_OVERLOADED)
4381
4382 #define StashHANDLER(stash,meth)        gv_handler((stash),CAT2(meth,_amg))
4383
4384 /*
4385  * some compilers like to redefine cos et alia as faster
4386  * (and less accurate?) versions called F_cos et cetera (Quidquid
4387  * latine dictum sit, altum viditur.)  This trick collides with
4388  * the Perl overloading (amg).  The following #defines fool both.
4389  */
4390
4391 #ifdef _FASTMATH
4392 #   ifdef atan2
4393 #       define F_atan2_amg  atan2_amg
4394 #   endif
4395 #   ifdef cos
4396 #       define F_cos_amg    cos_amg
4397 #   endif
4398 #   ifdef exp
4399 #       define F_exp_amg    exp_amg
4400 #   endif
4401 #   ifdef log
4402 #       define F_log_amg    log_amg
4403 #   endif
4404 #   ifdef pow
4405 #       define F_pow_amg    pow_amg
4406 #   endif
4407 #   ifdef sin
4408 #       define F_sin_amg    sin_amg
4409 #   endif
4410 #   ifdef sqrt
4411 #       define F_sqrt_amg   sqrt_amg
4412 #   endif
4413 #endif /* _FASTMATH */
4414
4415 #define PERLDB_ALL              (PERLDBf_SUB    | PERLDBf_LINE  |       \
4416                                  PERLDBf_NOOPT  | PERLDBf_INTER |       \
4417                                  PERLDBf_SUBLINE| PERLDBf_SINGLE|       \
4418                                  PERLDBf_NAMEEVAL| PERLDBf_NAMEANON )
4419                                         /* No _NONAME, _GOTO, _ASSERTION */
4420 #define PERLDBf_SUB             0x01    /* Debug sub enter/exit */
4421 #define PERLDBf_LINE            0x02    /* Keep line # */
4422 #define PERLDBf_NOOPT           0x04    /* Switch off optimizations */
4423 #define PERLDBf_INTER           0x08    /* Preserve more data for
4424                                            later inspections  */
4425 #define PERLDBf_SUBLINE         0x10    /* Keep subr source lines */
4426 #define PERLDBf_SINGLE          0x20    /* Start with single-step on */
4427 #define PERLDBf_NONAME          0x40    /* For _SUB: no name of the subr */
4428 #define PERLDBf_GOTO            0x80    /* Report goto: call DB::goto */
4429 #define PERLDBf_NAMEEVAL        0x100   /* Informative names for evals */
4430 #define PERLDBf_NAMEANON        0x200   /* Informative names for anon subs */
4431 #define PERLDBf_ASSERTION       0x400   /* Debug assertion subs enter/exit */
4432
4433 #define PERLDB_SUB      (PL_perldb && (PL_perldb & PERLDBf_SUB))
4434 #define PERLDB_LINE     (PL_perldb && (PL_perldb & PERLDBf_LINE))
4435 #define PERLDB_NOOPT    (PL_perldb && (PL_perldb & PERLDBf_NOOPT))
4436 #define PERLDB_INTER    (PL_perldb && (PL_perldb & PERLDBf_INTER))
4437 #define PERLDB_SUBLINE  (PL_perldb && (PL_perldb & PERLDBf_SUBLINE))
4438 #define PERLDB_SINGLE   (PL_perldb && (PL_perldb & PERLDBf_SINGLE))
4439 #define PERLDB_SUB_NN   (PL_perldb && (PL_perldb & (PERLDBf_NONAME)))
4440 #define PERLDB_GOTO     (PL_perldb && (PL_perldb & PERLDBf_GOTO))
4441 #define PERLDB_NAMEEVAL (PL_perldb && (PL_perldb & PERLDBf_NAMEEVAL))
4442 #define PERLDB_NAMEANON (PL_perldb && (PL_perldb & PERLDBf_NAMEANON))
4443 #define PERLDB_ASSERTION (PL_perldb && (PL_perldb & PERLDBf_ASSERTION))
4444
4445 #ifdef USE_LOCALE_NUMERIC
4446
4447 #define SET_NUMERIC_STANDARD() \
4448         set_numeric_standard();
4449
4450 #define SET_NUMERIC_LOCAL() \
4451         set_numeric_local();
4452
4453 #define IN_LOCALE_RUNTIME       (PL_curcop->op_private & HINT_LOCALE)
4454 #define IN_LOCALE_COMPILETIME   (PL_hints & HINT_LOCALE)
4455
4456 #define IN_LOCALE \
4457         (IN_PERL_COMPILETIME ? IN_LOCALE_COMPILETIME : IN_LOCALE_RUNTIME)
4458
4459 #define STORE_NUMERIC_LOCAL_SET_STANDARD() \
4460         bool was_local = PL_numeric_local && IN_LOCALE; \
4461         if (was_local) SET_NUMERIC_STANDARD();
4462
4463 #define STORE_NUMERIC_STANDARD_SET_LOCAL() \
4464         bool was_standard = PL_numeric_standard && IN_LOCALE; \
4465         if (was_standard) SET_NUMERIC_LOCAL();
4466
4467 #define RESTORE_NUMERIC_LOCAL() \
4468         if (was_local) SET_NUMERIC_LOCAL();
4469
4470 #define RESTORE_NUMERIC_STANDARD() \
4471         if (was_standard) SET_NUMERIC_STANDARD();
4472
4473 #define Atof                            my_atof
4474
4475 #else /* !USE_LOCALE_NUMERIC */
4476
4477 #define SET_NUMERIC_STANDARD()          /**/
4478 #define SET_NUMERIC_LOCAL()             /**/
4479 #define IS_NUMERIC_RADIX(a, b)          (0)
4480 #define STORE_NUMERIC_LOCAL_SET_STANDARD()      /**/
4481 #define STORE_NUMERIC_STANDARD_SET_LOCAL()      /**/
4482 #define RESTORE_NUMERIC_LOCAL()         /**/
4483 #define RESTORE_NUMERIC_STANDARD()      /**/
4484 #define Atof                            my_atof
4485 #define IN_LOCALE_RUNTIME               0
4486
4487 #endif /* !USE_LOCALE_NUMERIC */
4488
4489 #if !defined(Strtol) && defined(USE_64_BIT_INT) && defined(IV_IS_QUAD) && QUADKIND == QUAD_IS_LONG_LONG
4490 #    ifdef __hpux
4491 #        define strtoll __strtoll       /* secret handshake */
4492 #    endif
4493 #    ifdef WIN64
4494 #        define strtoll _strtoi64       /* secret handshake */
4495 #    endif
4496 #   if !defined(Strtol) && defined(HAS_STRTOLL)
4497 #       define Strtol   strtoll
4498 #   endif
4499 #    if !defined(Strtol) && defined(HAS_STRTOQ)
4500 #       define Strtol   strtoq
4501 #    endif
4502 /* is there atoq() anywhere? */
4503 #endif
4504 #if !defined(Strtol) && defined(HAS_STRTOL)
4505 #   define Strtol       strtol
4506 #endif
4507 #ifndef Atol
4508 /* It would be more fashionable to use Strtol() to define atol()
4509  * (as is done for Atoul(), see below) but for backward compatibility
4510  * we just assume atol(). */
4511 #   if defined(USE_64_BIT_INT) && defined(IV_IS_QUAD) && QUADKIND == QUAD_IS_LONG_LONG && defined(HAS_ATOLL)
4512 #    ifdef WIN64
4513 #       define atoll    _atoi64         /* secret handshake */
4514 #    endif
4515 #       define Atol     atoll
4516 #   else
4517 #       define Atol     atol
4518 #   endif
4519 #endif
4520
4521 #if !defined(Strtoul) && defined(USE_64_BIT_INT) && defined(UV_IS_QUAD) && QUADKIND == QUAD_IS_LONG_LONG
4522 #    ifdef __hpux
4523 #        define strtoull __strtoull     /* secret handshake */
4524 #    endif
4525 #    ifdef WIN64
4526 #        define strtoull _strtoui64     /* secret handshake */
4527 #    endif
4528 #    if !defined(Strtoul) && defined(HAS_STRTOULL)
4529 #       define Strtoul  strtoull
4530 #    endif
4531 #    if !defined(Strtoul) && defined(HAS_STRTOUQ)
4532 #       define Strtoul  strtouq
4533 #    endif
4534 /* is there atouq() anywhere? */
4535 #endif
4536 #if !defined(Strtoul) && defined(HAS_STRTOUL)
4537 #   define Strtoul      strtoul
4538 #endif
4539 #if !defined(Strtoul) && defined(HAS_STRTOL) /* Last resort. */
4540 #   define Strtoul(s, e, b)     strchr((s), '-') ? ULONG_MAX : (unsigned long)strtol((s), (e), (b))
4541 #endif
4542 #ifndef Atoul
4543 #   define Atoul(s)     Strtoul(s, (char **)NULL, 10)
4544 #endif
4545
4546
4547 /* if these never got defined, they need defaults */
4548 #ifndef PERL_SET_CONTEXT
4549 #  define PERL_SET_CONTEXT(i)           PERL_SET_INTERP(i)
4550 #endif
4551
4552 #ifndef PERL_GET_CONTEXT
4553 #  define PERL_GET_CONTEXT              PERL_GET_INTERP
4554 #endif
4555
4556 #ifndef PERL_GET_THX
4557 #  define PERL_GET_THX                  ((void*)NULL)
4558 #endif
4559
4560 #ifndef PERL_SET_THX
4561 #  define PERL_SET_THX(t)               NOOP
4562 #endif
4563
4564 #ifndef PERL_SCRIPT_MODE
4565 #define PERL_SCRIPT_MODE "r"
4566 #endif
4567
4568 /*
4569  * Some operating systems are stingy with stack allocation,
4570  * so perl may have to guard against stack overflow.
4571  */
4572 #ifndef PERL_STACK_OVERFLOW_CHECK
4573 #define PERL_STACK_OVERFLOW_CHECK()  NOOP
4574 #endif
4575
4576 /*
4577  * Some nonpreemptive operating systems find it convenient to
4578  * check for asynchronous conditions after each op execution.
4579  * Keep this check simple, or it may slow down execution
4580  * massively.
4581  */
4582
4583 #ifndef PERL_MICRO
4584 #       ifndef PERL_ASYNC_CHECK
4585 #               define PERL_ASYNC_CHECK() if (PL_sig_pending) despatch_signals()
4586 #       endif
4587 #endif
4588
4589 #ifndef PERL_ASYNC_CHECK
4590 #   define PERL_ASYNC_CHECK()  NOOP
4591 #endif
4592
4593 /*
4594  * On some operating systems, a memory allocation may succeed,
4595  * but put the process too close to the system's comfort limit.
4596  * In this case, PERL_ALLOC_CHECK frees the pointer and sets
4597  * it to NULL.
4598  */
4599 #ifndef PERL_ALLOC_CHECK
4600 #define PERL_ALLOC_CHECK(p)  NOOP
4601 #endif
4602
4603 /*
4604  * nice_chunk and nice_chunk size need to be set
4605  * and queried under the protection of sv_mutex
4606  */
4607 #define offer_nice_chunk(chunk, chunk_size) STMT_START {  \
4608        void *new_chunk;                                   \
4609        U32 new_chunk_size;                                \
4610        LOCK_SV_MUTEX;                                     \
4611        new_chunk = (void *)(chunk);                       \
4612        new_chunk_size = (chunk_size);                     \
4613        if (new_chunk_size > PL_nice_chunk_size) {         \
4614            if (PL_nice_chunk) Safefree(PL_nice_chunk);    \
4615            PL_nice_chunk = (char *) new_chunk;            \
4616            PL_nice_chunk_size = new_chunk_size;           \
4617        } else {                                           \
4618            Safefree(chunk);                               \
4619        }                                                  \
4620        UNLOCK_SV_MUTEX;                                   \
4621    } STMT_END
4622
4623 #ifdef HAS_SEM
4624 #   include <sys/ipc.h>
4625 #   include <sys/sem.h>
4626 #   ifndef HAS_UNION_SEMUN      /* Provide the union semun. */
4627     union semun {
4628         int             val;
4629         struct semid_ds *buf;
4630         unsigned short  *array;
4631     };
4632 #   endif
4633 #   ifdef USE_SEMCTL_SEMUN
4634 #       ifdef IRIX32_SEMUN_BROKEN_BY_GCC
4635             union gccbug_semun {
4636                 int             val;
4637                 struct semid_ds *buf;
4638                 unsigned short  *array;
4639                 char            __dummy[5];
4640             };
4641 #           define semun gccbug_semun
4642 #       endif
4643 #       define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun)
4644 #   else
4645 #       ifdef USE_SEMCTL_SEMID_DS
4646 #           ifdef EXTRA_F_IN_SEMUN_BUF
4647 #               define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buff)
4648 #           else
4649 #               define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buf)
4650 #           endif
4651 #       endif
4652 #   endif
4653 #endif
4654
4655 /*
4656  * Boilerplate macros for initializing and accessing interpreter-local
4657  * data from C.  All statics in extensions should be reworked to use
4658  * this, if you want to make the extension thread-safe.  See ext/re/re.xs
4659  * for an example of the use of these macros, and perlxs.pod for more.
4660  *
4661  * Code that uses these macros is responsible for the following:
4662  * 1. #define MY_CXT_KEY to a unique string, e.g.
4663  *    "DynaLoader::_guts" XS_VERSION
4664  * 2. Declare a typedef named my_cxt_t that is a structure that contains
4665  *    all the data that needs to be interpreter-local.
4666  * 3. Use the START_MY_CXT macro after the declaration of my_cxt_t.
4667  * 4. Use the MY_CXT_INIT macro such that it is called exactly once
4668  *    (typically put in the BOOT: section).
4669  * 5. Use the members of the my_cxt_t structure everywhere as
4670  *    MY_CXT.member.
4671  * 6. Use the dMY_CXT macro (a declaration) in all the functions that
4672  *    access MY_CXT.
4673  */
4674
4675 #if defined(PERL_IMPLICIT_CONTEXT)
4676
4677 /* This must appear in all extensions that define a my_cxt_t structure,
4678  * right after the definition (i.e. at file scope).  The non-threads
4679  * case below uses it to declare the data as static. */
4680 #define START_MY_CXT
4681
4682 /* Fetches the SV that keeps the per-interpreter data. */
4683 #define dMY_CXT_SV \
4684         SV *my_cxt_sv = *hv_fetch(PL_modglobal, MY_CXT_KEY,             \
4685                                   sizeof(MY_CXT_KEY)-1, TRUE)
4686
4687 /* This declaration should be used within all functions that use the
4688  * interpreter-local data. */
4689 #define dMY_CXT \
4690         dMY_CXT_SV;                                                     \
4691         my_cxt_t *my_cxtp = INT2PTR(my_cxt_t*, SvUV(my_cxt_sv))
4692
4693 /* Creates and zeroes the per-interpreter data.
4694  * (We allocate my_cxtp in a Perl SV so that it will be released when
4695  * the interpreter goes away.) */
4696 #define MY_CXT_INIT \
4697         dMY_CXT_SV;                                                     \
4698         /* newSV() allocates one more than needed */                    \
4699         my_cxt_t *my_cxtp = (my_cxt_t*)SvPVX(newSV(sizeof(my_cxt_t)-1));\
4700         Zero(my_cxtp, 1, my_cxt_t);                                     \
4701         sv_setuv(my_cxt_sv, PTR2UV(my_cxtp))
4702
4703 /* Clones the per-interpreter data. */
4704 #define MY_CXT_CLONE \
4705         dMY_CXT_SV;                                                     \
4706         my_cxt_t *my_cxtp = (my_cxt_t*)SvPVX(newSV(sizeof(my_cxt_t)-1));\
4707         Copy(INT2PTR(my_cxt_t*, SvUV(my_cxt_sv)), my_cxtp, 1, my_cxt_t);\
4708         sv_setuv(my_cxt_sv, PTR2UV(my_cxtp))
4709
4710 /* This macro must be used to access members of the my_cxt_t structure.
4711  * e.g. MYCXT.some_data */
4712 #define MY_CXT          (*my_cxtp)
4713
4714 /* Judicious use of these macros can reduce the number of times dMY_CXT
4715  * is used.  Use is similar to pTHX, aTHX etc. */
4716 #define pMY_CXT         my_cxt_t *my_cxtp
4717 #define pMY_CXT_        pMY_CXT,
4718 #define _pMY_CXT        ,pMY_CXT
4719 #define aMY_CXT         my_cxtp
4720 #define aMY_CXT_        aMY_CXT,
4721 #define _aMY_CXT        ,aMY_CXT
4722
4723 #else /* USE_ITHREADS */
4724
4725 #define START_MY_CXT    static my_cxt_t my_cxt;
4726 #define dMY_CXT_SV      dNOOP
4727 #define dMY_CXT         dNOOP
4728 #define MY_CXT_INIT     NOOP
4729 #define MY_CXT_CLONE    NOOP
4730 #define MY_CXT          my_cxt
4731
4732 #define pMY_CXT         void
4733 #define pMY_CXT_
4734 #define _pMY_CXT
4735 #define aMY_CXT
4736 #define aMY_CXT_
4737 #define _aMY_CXT
4738
4739 #endif /* !defined(USE_ITHREADS) */
4740
4741 #ifdef I_FCNTL
4742 #  include <fcntl.h>
4743 #endif
4744
4745 #ifdef __Lynx__
4746 #  include <fcntl.h>
4747 #endif
4748
4749 #ifdef I_SYS_FILE
4750 #  include <sys/file.h>
4751 #endif
4752
4753 #if defined(HAS_FLOCK) && !defined(HAS_FLOCK_PROTO)
4754 int flock(int fd, int op);
4755 #endif
4756
4757 #ifndef O_RDONLY
4758 /* Assume UNIX defaults */
4759 #    define O_RDONLY    0000
4760 #    define O_WRONLY    0001
4761 #    define O_RDWR      0002
4762 #    define O_CREAT     0100
4763 #endif
4764
4765 #ifndef O_BINARY
4766 #  define O_BINARY 0
4767 #endif
4768
4769 #ifndef O_TEXT
4770 #  define O_TEXT 0
4771 #endif
4772
4773 #if O_TEXT != O_BINARY
4774     /* If you have different O_TEXT and O_BINARY and you are a CLRF shop,
4775      * that is, you are somehow DOSish. */
4776 #   if defined(__BEOS__) || defined(__VOS__) || defined(__CYGWIN__)
4777     /* BeOS has O_TEXT != O_BINARY but O_TEXT and O_BINARY have no effect;
4778      * BeOS is always UNIXoid (LF), not DOSish (CRLF). */
4779     /* VOS has O_TEXT != O_BINARY, and they have effect,
4780      * but VOS always uses LF, never CRLF. */
4781     /* If you have O_TEXT different from your O_BINARY but you still are
4782      * not a CRLF shop. */
4783 #       undef PERLIO_USING_CRLF
4784 #   else
4785     /* If you really are DOSish. */
4786 #      define PERLIO_USING_CRLF 1
4787 #   endif
4788 #endif
4789
4790 #ifdef IAMSUID
4791
4792 #ifdef I_SYS_STATVFS
4793 #   if defined(PERL_SCO) && !defined(_SVID3)
4794 #       define _SVID3
4795 #   endif
4796 #   include <sys/statvfs.h>     /* for f?statvfs() */
4797 #endif
4798 #ifdef I_SYS_MOUNT
4799 #   include <sys/mount.h>       /* for *BSD f?statfs() */
4800 #endif
4801 #ifdef I_MNTENT
4802 #   include <mntent.h>          /* for getmntent() */
4803 #endif
4804 #ifdef I_SYS_STATFS
4805 #   include <sys/statfs.h>      /* for some statfs() */
4806 #endif
4807 #ifdef I_SYS_VFS
4808 #  ifdef __sgi
4809 #    define sv IRIX_sv          /* kludge: IRIX has an sv of its own */
4810 #  endif
4811 #    include <sys/vfs.h>        /* for some statfs() */
4812 #  ifdef __sgi
4813 #    undef IRIX_sv
4814 #  endif
4815 #endif
4816 #ifdef I_USTAT
4817 #   include <ustat.h>           /* for ustat() */
4818 #endif
4819
4820 #if !defined(PERL_MOUNT_NOSUID) && defined(MOUNT_NOSUID)
4821 #    define PERL_MOUNT_NOSUID MOUNT_NOSUID
4822 #endif
4823 #if !defined(PERL_MOUNT_NOSUID) && defined(MNT_NOSUID)
4824 #    define PERL_MOUNT_NOSUID MNT_NOSUID
4825 #endif
4826 #if !defined(PERL_MOUNT_NOSUID) && defined(MS_NOSUID)
4827 #   define PERL_MOUNT_NOSUID MS_NOSUID
4828 #endif
4829 #if !defined(PERL_MOUNT_NOSUID) && defined(M_NOSUID)
4830 #   define PERL_MOUNT_NOSUID M_NOSUID
4831 #endif
4832
4833 #if !defined(PERL_MOUNT_NOEXEC) && defined(MOUNT_NOEXEC)
4834 #    define PERL_MOUNT_NOEXEC MOUNT_NOEXEC
4835 #endif
4836 #if !defined(PERL_MOUNT_NOEXEC) && defined(MNT_NOEXEC)
4837 #    define PERL_MOUNT_NOEXEC MNT_NOEXEC
4838 #endif
4839 #if !defined(PERL_MOUNT_NOEXEC) && defined(MS_NOEXEC)
4840 #   define PERL_MOUNT_NOEXEC MS_NOEXEC
4841 #endif
4842 #if !defined(PERL_MOUNT_NOEXEC) && defined(M_NOEXEC)
4843 #   define PERL_MOUNT_NOEXEC M_NOEXEC
4844 #endif
4845
4846 #endif /* IAMSUID */
4847
4848 #ifdef I_LIBUTIL
4849 #   include <libutil.h>         /* setproctitle() in some FreeBSDs */
4850 #endif
4851
4852 #ifndef EXEC_ARGV_CAST
4853 #define EXEC_ARGV_CAST(x) x
4854 #endif
4855
4856 #define IS_NUMBER_IN_UV               0x01 /* number within UV range (maybe not
4857                                               int).  value returned in pointed-
4858                                               to UV */
4859 #define IS_NUMBER_GREATER_THAN_UV_MAX 0x02 /* pointed to UV undefined */
4860 #define IS_NUMBER_NOT_INT             0x04 /* saw . or E notation */
4861 #define IS_NUMBER_NEG                 0x08 /* leading minus sign */
4862 #define IS_NUMBER_INFINITY            0x10 /* this is big */
4863 #define IS_NUMBER_NAN                 0x20 /* this is not */
4864
4865 #define GROK_NUMERIC_RADIX(sp, send) grok_numeric_radix(sp, send)
4866
4867 /* Input flags: */
4868 #define PERL_SCAN_ALLOW_UNDERSCORES   0x01 /* grok_??? accept _ in numbers */
4869 #define PERL_SCAN_DISALLOW_PREFIX     0x02 /* grok_??? reject 0x in hex etc */
4870 #define PERL_SCAN_SILENT_ILLDIGIT     0x04 /* grok_??? not warn about illegal digits */
4871 /* Output flags: */
4872 #define PERL_SCAN_GREATER_THAN_UV_MAX 0x02 /* should this merge with above? */
4873
4874 /* to let user control profiling */
4875 #ifdef PERL_GPROF_CONTROL
4876 extern void moncontrol(int);
4877 #define PERL_GPROF_MONCONTROL(x) moncontrol(x)
4878 #else
4879 #define PERL_GPROF_MONCONTROL(x)
4880 #endif
4881
4882 #ifdef UNDER_CE
4883 #include "wince.h"
4884 #endif
4885
4886 /* ISO 6429 NEL - C1 control NExt Line */
4887 /* See http://www.unicode.org/unicode/reports/tr13/ */
4888 #ifdef EBCDIC   /* In EBCDIC NEL is just an alias for LF */
4889 #   if '^' == 95        /* CP 1047: MVS OpenEdition - OS/390 - z/OS */
4890 #       define NEXT_LINE_CHAR   0x15
4891 #   else                /* CDRA */
4892 #       define NEXT_LINE_CHAR   0x25
4893 #   endif
4894 #else
4895 #   define NEXT_LINE_CHAR       0x85
4896 #endif
4897
4898 /* The UTF-8 bytes of the Unicode LS and PS, U+2028 and U+2029 */
4899 #define UNICODE_LINE_SEPA_0     0xE2
4900 #define UNICODE_LINE_SEPA_1     0x80
4901 #define UNICODE_LINE_SEPA_2     0xA8
4902 #define UNICODE_PARA_SEPA_0     0xE2
4903 #define UNICODE_PARA_SEPA_1     0x80
4904 #define UNICODE_PARA_SEPA_2     0xA9
4905
4906 #ifndef PIPESOCK_MODE
4907 #  define PIPESOCK_MODE
4908 #endif
4909
4910 #ifndef SOCKET_OPEN_MODE
4911 #  define SOCKET_OPEN_MODE      PIPESOCK_MODE
4912 #endif
4913
4914 #ifndef PIPE_OPEN_MODE
4915 #  define PIPE_OPEN_MODE        PIPESOCK_MODE
4916 #endif
4917
4918 #define PERL_MAGIC_UTF8_CACHESIZE       2
4919
4920 #define PERL_UNICODE_STDIN_FLAG                 0x0001
4921 #define PERL_UNICODE_STDOUT_FLAG                0x0002
4922 #define PERL_UNICODE_STDERR_FLAG                0x0004
4923 #define PERL_UNICODE_IN_FLAG                    0x0008
4924 #define PERL_UNICODE_OUT_FLAG                   0x0010
4925 #define PERL_UNICODE_ARGV_FLAG                  0x0020
4926 #define PERL_UNICODE_LOCALE_FLAG                0x0040
4927 #define PERL_UNICODE_WIDESYSCALLS_FLAG          0x0080 /* for Sarathy */
4928
4929 #define PERL_UNICODE_STD_FLAG           \
4930         (PERL_UNICODE_STDIN_FLAG        | \
4931          PERL_UNICODE_STDOUT_FLAG       | \
4932          PERL_UNICODE_STDERR_FLAG)
4933
4934 #define PERL_UNICODE_INOUT_FLAG         \
4935         (PERL_UNICODE_IN_FLAG   | \
4936          PERL_UNICODE_OUT_FLAG)
4937
4938 #define PERL_UNICODE_DEFAULT_FLAGS      \
4939         (PERL_UNICODE_STD_FLAG          | \
4940          PERL_UNICODE_INOUT_FLAG        | \
4941          PERL_UNICODE_LOCALE_FLAG)
4942
4943 #define PERL_UNICODE_ALL_FLAGS                  0x00ff
4944
4945 #define PERL_UNICODE_STDIN                      'I'
4946 #define PERL_UNICODE_STDOUT                     'O'
4947 #define PERL_UNICODE_STDERR                     'E'
4948 #define PERL_UNICODE_STD                        'S'
4949 #define PERL_UNICODE_IN                         'i'
4950 #define PERL_UNICODE_OUT                        'o'
4951 #define PERL_UNICODE_INOUT                      'D'
4952 #define PERL_UNICODE_ARGV                       'A'
4953 #define PERL_UNICODE_LOCALE                     'L'
4954 #define PERL_UNICODE_WIDESYSCALLS               'W'
4955
4956 #define PERL_SIGNALS_UNSAFE_FLAG        0x0001
4957
4958 /* From sigaction(2) (FreeBSD man page):
4959  * | Signal routines normally execute with the signal that
4960  * | caused their invocation blocked, but other signals may
4961  * | yet occur.
4962  * Emulation of this behavior (from within Perl) is enabled
4963  * by defining PERL_BLOCK_SIGNALS.
4964  */
4965 #define PERL_BLOCK_SIGNALS
4966
4967 #if defined(HAS_SIGPROCMASK) && defined(PERL_BLOCK_SIGNALS)
4968 #   define PERL_BLOCKSIG_ADD(set,sig) \
4969         sigset_t set; sigemptyset(&(set)); sigaddset(&(set), sig)
4970 #   define PERL_BLOCKSIG_BLOCK(set) \
4971         sigprocmask(SIG_BLOCK, &(set), NULL)
4972 #   define PERL_BLOCKSIG_UNBLOCK(set) \
4973         sigprocmask(SIG_UNBLOCK, &(set), NULL)
4974 #endif /* HAS_SIGPROCMASK && PERL_BLOCK_SIGNALS */
4975
4976 /* How about the old style of sigblock()? */
4977
4978 #ifndef PERL_BLOCKSIG_ADD
4979 #   define PERL_BLOCKSIG_ADD(set, sig)  NOOP
4980 #endif
4981 #ifndef PERL_BLOCKSIG_BLOCK
4982 #   define PERL_BLOCKSIG_BLOCK(set)     NOOP
4983 #endif
4984 #ifndef PERL_BLOCKSIG_UNBLOCK
4985 #   define PERL_BLOCKSIG_UNBLOCK(set)   NOOP
4986 #endif
4987
4988 /* Use instead of abs() since abs() forces its argument to be an int,
4989  * but also beware since this evaluates its argument twice, so no x++. */
4990 #define PERL_ABS(x) ((x) < 0 ? -(x) : (x))
4991
4992 /* and finally... */
4993 #define PERL_PATCHLEVEL_H_IMPLICIT
4994 #include "patchlevel.h"
4995 #undef PERL_PATCHLEVEL_H_IMPLICIT
4996
4997 /* Mention
4998
4999    NV_PRESERVES_UV
5000
5001    HAS_MKSTEMP
5002    HAS_MKSTEMPS
5003    HAS_MKDTEMP
5004
5005    HAS_GETCWD
5006
5007    HAS_MMAP
5008    HAS_MPROTECT
5009    HAS_MSYNC
5010    HAS_MADVISE
5011    HAS_MUNMAP
5012    I_SYSMMAN
5013    Mmap_t
5014
5015    NVef
5016    NVff
5017    NVgf
5018
5019    HAS_UALARM
5020    HAS_USLEEP
5021
5022    HAS_SETITIMER
5023    HAS_GETITIMER
5024
5025    HAS_SENDMSG
5026    HAS_RECVMSG
5027    HAS_READV
5028    HAS_WRITEV
5029    I_SYSUIO
5030    HAS_STRUCT_MSGHDR
5031    HAS_STRUCT_CMSGHDR
5032
5033    HAS_NL_LANGINFO
5034
5035    HAS_DIRFD
5036
5037    so that Configure picks them up. */
5038
5039 #endif /* Include guard */
5040