ace2aac382122c77ebcbd7aa70464c5f7f6dda03
[p5sagit/p5-mst-13.2.git] / perl.h
1 /*    perl.h
2  *
3  *    Copyright (c) 1987-2001, Larry Wall
4  *
5  *    You may distribute under the terms of either the GNU General Public
6  *    License or the Artistic License, as specified in the README file.
7  *
8  */
9 #ifndef H_PERL
10 #define H_PERL 1
11
12 #ifdef PERL_FOR_X2P
13 /*
14  * This file is being used for x2p stuff.
15  * Above symbol is defined via -D in 'x2p/Makefile.SH'
16  * Decouple x2p stuff from some of perls more extreme eccentricities.
17  */
18 #undef MULTIPLICITY
19 #undef USE_STDIO
20 #define USE_STDIO
21 #endif /* PERL_FOR_X2P */
22
23 #define VOIDUSED 1
24 #ifdef PERL_MICRO
25 #   include "uconfig.h"
26 #else
27 #   include "config.h"
28 #endif
29
30 #if defined(USE_ITHREADS) && defined(USE_5005THREADS)
31 #  include "error: USE_ITHREADS and USE_5005THREADS are incompatible"
32 #endif
33
34 /* XXX This next guard can disappear if the sources are revised
35    to use USE_5005THREADS throughout. -- A.D  1/6/2000
36 */
37 #if defined(USE_ITHREADS) && defined(USE_5005THREADS)
38 #  include "error: USE_ITHREADS and USE_5005THREADS are incompatible"
39 #endif
40
41 /* See L<perlguts/"The Perl API"> for detailed notes on
42  * PERL_IMPLICIT_CONTEXT and PERL_IMPLICIT_SYS */
43
44 #ifdef USE_ITHREADS
45 #  if !defined(MULTIPLICITY)
46 #    define MULTIPLICITY
47 #  endif
48 #endif
49
50 #ifdef USE_5005THREADS
51 #  ifndef PERL_IMPLICIT_CONTEXT
52 #    define PERL_IMPLICIT_CONTEXT
53 #  endif
54 #endif
55
56 #if defined(MULTIPLICITY)
57 #  ifndef PERL_IMPLICIT_CONTEXT
58 #    define PERL_IMPLICIT_CONTEXT
59 #  endif
60 #endif
61
62 #ifdef PERL_IMPLICIT_CONTEXT
63 #  ifdef USE_5005THREADS
64 struct perl_thread;
65 #    define pTHX        register struct perl_thread *thr PERL_UNUSED_DECL
66 #    define aTHX        thr
67 #    define dTHR        dNOOP /* only backward compatibility */
68 #    define dTHXa(a)    pTHX = (struct perl_thread*)a
69 #  else
70 #    ifndef MULTIPLICITY
71 #      define MULTIPLICITY
72 #    endif
73 #    define pTHX        register PerlInterpreter *my_perl PERL_UNUSED_DECL
74 #    define aTHX        my_perl
75 #    define dTHXa(a)    pTHX = (PerlInterpreter*)a
76 #  endif
77 #  define dTHX          pTHX = PERL_GET_THX
78 #  define pTHX_         pTHX,
79 #  define aTHX_         aTHX,
80 #  define pTHX_1        2       
81 #  define pTHX_2        3
82 #  define pTHX_3        4
83 #  define pTHX_4        5
84 #endif
85
86 #define STATIC static
87 #define CPERLscope(x) x
88 #define CPERLarg void
89 #define CPERLarg_
90 #define _CPERLarg
91 #define PERL_OBJECT_THIS
92 #define _PERL_OBJECT_THIS
93 #define PERL_OBJECT_THIS_
94 #define CALL_FPTR(fptr) (*fptr)
95
96 #define CALLRUNOPS  CALL_FPTR(PL_runops)
97 #define CALLREGCOMP CALL_FPTR(PL_regcompp)
98 #define CALLREGEXEC CALL_FPTR(PL_regexecp)
99 #define CALLREG_INTUIT_START CALL_FPTR(PL_regint_start)
100 #define CALLREG_INTUIT_STRING CALL_FPTR(PL_regint_string)
101 #define CALLREGFREE CALL_FPTR(PL_regfree)
102
103 #ifdef PERL_FLEXIBLE_EXCEPTIONS
104 #  define CALLPROTECT CALL_FPTR(PL_protect)
105 #endif
106
107 #ifdef HASATTRIBUTE
108 #  define PERL_UNUSED_DECL __attribute__((unused))
109 #else
110 #  define PERL_UNUSED_DECL
111 #endif
112
113 /* gcc -Wall:
114  * for silencing unused variables that are actually used most of the time,
115  * but we cannot quite get rid of, such `ax' in PPCODE+noargs xsubs
116  */
117 #define PERL_UNUSED_VAR(var) if (0) var = var
118
119 #define NOOP (void)0
120 #define dNOOP extern int Perl___notused PERL_UNUSED_DECL
121
122 #ifndef pTHX
123 #  define pTHX          void
124 #  define pTHX_
125 #  define aTHX
126 #  define aTHX_
127 #  define dTHXa(a)      dNOOP
128 #  define dTHX          dNOOP
129 #  define pTHX_1        1       
130 #  define pTHX_2        2
131 #  define pTHX_3        3
132 #  define pTHX_4        4
133 #endif
134
135 /* these are only defined for compatibility; should not be used internally */
136 #if !defined(pTHXo) && !defined(PERL_CORE)
137 #  define pTHXo         pTHX
138 #  define pTHXo_        pTHX_
139 #  define aTHXo         aTHX
140 #  define aTHXo_        aTHX_
141 #  define dTHXo         dTHX
142 #  define dTHXoa(x)     dTHXa(x)
143 #endif
144
145 #ifndef pTHXx
146 #  define pTHXx         register PerlInterpreter *my_perl
147 #  define pTHXx_        pTHXx,
148 #  define aTHXx         my_perl
149 #  define aTHXx_        aTHXx,
150 #  define dTHXx         dTHX
151 #endif
152
153 /* Under PERL_IMPLICIT_SYS (used in Windows for fork emulation)
154  * PerlIO_foo() expands to PL_StdIO->pFOO(PL_StdIO, ...).
155  * dTHXs is therefore needed for all functions using PerlIO_foo(). */
156 #ifdef PERL_IMPLICIT_SYS
157 #  define dTHXs         dTHX
158 #else
159 #  define dTHXs         dNOOP
160 #endif
161
162 #undef START_EXTERN_C
163 #undef END_EXTERN_C
164 #undef EXTERN_C
165 #ifdef __cplusplus
166 #  define START_EXTERN_C extern "C" {
167 #  define END_EXTERN_C }
168 #  define EXTERN_C extern "C"
169 #else
170 #  define START_EXTERN_C
171 #  define END_EXTERN_C
172 #  define EXTERN_C extern
173 #endif
174
175 #ifdef OP_IN_REGISTER
176 #  ifdef __GNUC__
177 #    define stringify_immed(s) #s
178 #    define stringify(s) stringify_immed(s)
179 register struct op *Perl_op asm(stringify(OP_IN_REGISTER));
180 #  endif
181 #endif
182
183 /*
184  * STMT_START { statements; } STMT_END;
185  * can be used as a single statement, as in
186  * if (x) STMT_START { ... } STMT_END; else ...
187  *
188  * Trying to select a version that gives no warnings...
189  */
190 #if !(defined(STMT_START) && defined(STMT_END))
191 # if defined(__GNUC__) && !defined(__STRICT_ANSI__) && !defined(__cplusplus)
192 #   define STMT_START   (void)( /* gcc supports ``({ STATEMENTS; })'' */
193 #   define STMT_END     )
194 # else
195    /* Now which other defined()s do we need here ??? */
196 #  if (VOIDFLAGS) && (defined(sun) || defined(__sun__))
197 #   define STMT_START   if (1)
198 #   define STMT_END     else (void)0
199 #  else
200 #   define STMT_START   do
201 #   define STMT_END     while (0)
202 #  endif
203 # endif
204 #endif
205
206 #define WITH_THX(s) STMT_START { dTHX; s; } STMT_END
207 #define WITH_THR(s) WITH_THX(s)
208
209 /*
210  * SOFT_CAST can be used for args to prototyped functions to retain some
211  * type checking; it only casts if the compiler does not know prototypes.
212  */
213 #if defined(CAN_PROTOTYPE) && defined(DEBUGGING_COMPILE)
214 #define SOFT_CAST(type) 
215 #else
216 #define SOFT_CAST(type) (type)
217 #endif
218
219 #ifndef BYTEORDER  /* Should never happen -- byteorder is in config.h */
220 #   define BYTEORDER 0x1234
221 #endif
222
223 /* Overall memory policy? */
224 #ifndef CONSERVATIVE
225 #   define LIBERAL 1
226 #endif
227
228 #if 'A' == 65 && 'I' == 73 && 'J' == 74 && 'Z' == 90
229 #define ASCIIish
230 #else
231 #undef  ASCIIish
232 #endif
233
234 /*
235  * The following contortions are brought to you on behalf of all the
236  * standards, semi-standards, de facto standards, not-so-de-facto standards
237  * of the world, as well as all the other botches anyone ever thought of.
238  * The basic theory is that if we work hard enough here, the rest of the
239  * code can be a lot prettier.  Well, so much for theory.  Sorry, Henry...
240  */
241
242 /* define this once if either system, instead of cluttering up the src */
243 #if defined(MSDOS) || defined(atarist) || defined(WIN32) || defined(NETWARE)
244 #define DOSISH 1
245 #endif
246
247 #if defined(__STDC__) || defined(vax11c) || defined(_AIX) || defined(__stdc__) || defined(__cplusplus) || defined( EPOC) || defined(NETWARE)
248 # define STANDARD_C 1
249 #endif
250
251 #if defined(__cplusplus) || defined(WIN32) || defined(__sgi) || defined(OS2) || defined(__DGUX) || defined( EPOC) || defined(__QNX__) || defined(NETWARE)
252 # define DONT_DECLARE_STD 1
253 #endif
254
255 #if defined(HASVOLATILE) || defined(STANDARD_C)
256 #   ifdef __cplusplus
257 #       define VOL              // to temporarily suppress warnings
258 #   else
259 #       define VOL volatile
260 #   endif
261 #else
262 #   define VOL
263 #endif
264
265 #define TAINT           (PL_tainted = TRUE)
266 #define TAINT_NOT       (PL_tainted = FALSE)
267 #define TAINT_IF(c)     if (c) { PL_tainted = TRUE; }
268 #define TAINT_ENV()     if (PL_tainting) { taint_env(); }
269 #define TAINT_PROPER(s) if (PL_tainting) { taint_proper(Nullch, s); }
270
271 /* XXX All process group stuff is handled in pp_sys.c.  Should these
272    defines move there?  If so, I could simplify this a lot. --AD  9/96.
273 */
274 /* Process group stuff changed from traditional BSD to POSIX.
275    perlfunc.pod documents the traditional BSD-style syntax, so we'll
276    try to preserve that, if possible.
277 */
278 #ifdef HAS_SETPGID
279 #  define BSD_SETPGRP(pid, pgrp)        setpgid((pid), (pgrp))
280 #else
281 #  if defined(HAS_SETPGRP) && defined(USE_BSD_SETPGRP)
282 #    define BSD_SETPGRP(pid, pgrp)      setpgrp((pid), (pgrp))
283 #  else
284 #    ifdef HAS_SETPGRP2  /* DG/UX */
285 #      define BSD_SETPGRP(pid, pgrp)    setpgrp2((pid), (pgrp))
286 #    endif
287 #  endif
288 #endif
289 #if defined(BSD_SETPGRP) && !defined(HAS_SETPGRP)
290 #  define HAS_SETPGRP  /* Well, effectively it does . . . */
291 #endif
292
293 /* getpgid isn't POSIX, but at least Solaris and Linux have it, and it makes
294     our life easier :-) so we'll try it.
295 */
296 #ifdef HAS_GETPGID
297 #  define BSD_GETPGRP(pid)              getpgid((pid))
298 #else
299 #  if defined(HAS_GETPGRP) && defined(USE_BSD_GETPGRP)
300 #    define BSD_GETPGRP(pid)            getpgrp((pid))
301 #  else
302 #    ifdef HAS_GETPGRP2  /* DG/UX */
303 #      define BSD_GETPGRP(pid)          getpgrp2((pid))
304 #    endif
305 #  endif
306 #endif
307 #if defined(BSD_GETPGRP) && !defined(HAS_GETPGRP)
308 #  define HAS_GETPGRP  /* Well, effectively it does . . . */
309 #endif
310
311 /* These are not exact synonyms, since setpgrp() and getpgrp() may
312    have different behaviors, but perl.h used to define USE_BSDPGRP
313    (prior to 5.003_05) so some extension might depend on it.
314 */
315 #if defined(USE_BSD_SETPGRP) || defined(USE_BSD_GETPGRP)
316 #  ifndef USE_BSDPGRP
317 #    define USE_BSDPGRP
318 #  endif
319 #endif
320
321 /* Use the reentrant APIs like localtime_r and getpwent_r */
322 /* Win32 has naturally threadsafe libraries, no need to use any _r variants. */
323 #if defined(USE_ITHREADS) && !defined(USE_REENTRANT_API) && !defined(WIN32)
324 #   define USE_REENTRANT_API
325 #endif
326
327 /* HP-UX 10.X CMA (Common Multithreaded Architecure) insists that
328    pthread.h must be included before all other header files.
329 */
330 #if (defined(USE_5005THREADS) || defined(USE_ITHREADS)) \
331     && defined(PTHREAD_H_FIRST) && defined(I_PTHREAD)
332 #  include <pthread.h>
333 #endif
334
335 #ifndef _TYPES_         /* If types.h defines this it's easy. */
336 #   ifndef major                /* Does everyone's types.h define this? */
337 #       include <sys/types.h>
338 #   endif
339 #endif
340
341 #ifdef __cplusplus
342 #  ifndef I_STDARG
343 #    define I_STDARG 1
344 #  endif
345 #endif
346
347 #ifdef I_STDARG
348 #  include <stdarg.h>
349 #else
350 #  ifdef I_VARARGS
351 #    include <varargs.h>
352 #  endif
353 #endif
354
355 #ifdef USE_NEXT_CTYPE
356
357 #if NX_CURRENT_COMPILER_RELEASE >= 500
358 #  include <bsd/ctypes.h>
359 #else
360 #  if NX_CURRENT_COMPILER_RELEASE >= 400
361 #    include <objc/NXCType.h>
362 #  else /*  NX_CURRENT_COMPILER_RELEASE < 400 */
363 #    include <appkit/NXCType.h>
364 #  endif /*  NX_CURRENT_COMPILER_RELEASE >= 400 */
365 #endif /*  NX_CURRENT_COMPILER_RELEASE >= 500 */
366
367 #else /* !USE_NEXT_CTYPE */
368 #include <ctype.h>
369 #endif /* USE_NEXT_CTYPE */
370
371 #ifdef METHOD   /* Defined by OSF/1 v3.0 by ctype.h */
372 #undef METHOD
373 #endif
374
375 #ifdef PERL_MICRO
376 #   define NO_LOCALE
377 #endif
378
379 #ifdef I_LOCALE
380 #   include <locale.h>
381 #endif
382
383 #if !defined(NO_LOCALE) && defined(HAS_SETLOCALE)
384 #   define USE_LOCALE
385 #   if !defined(NO_LOCALE_COLLATE) && defined(LC_COLLATE) \
386        && defined(HAS_STRXFRM)
387 #       define USE_LOCALE_COLLATE
388 #   endif
389 #   if !defined(NO_LOCALE_CTYPE) && defined(LC_CTYPE)
390 #       define USE_LOCALE_CTYPE
391 #   endif
392 #   if !defined(NO_LOCALE_NUMERIC) && defined(LC_NUMERIC)
393 #       define USE_LOCALE_NUMERIC
394 #   endif
395 #endif /* !NO_LOCALE && HAS_SETLOCALE */
396
397 #include <setjmp.h>
398
399 #ifdef I_SYS_PARAM
400 #   ifdef PARAM_NEEDS_TYPES
401 #       include <sys/types.h>
402 #   endif
403 #   include <sys/param.h>
404 #endif
405
406 /* Use all the "standard" definitions? */
407 #if defined(STANDARD_C) && defined(I_STDLIB)
408 #   include <stdlib.h>
409 #endif
410
411 /* If this causes problems, set i_unistd=undef in the hint file.  */
412 #ifdef I_UNISTD
413 #   include <unistd.h>
414 #endif
415
416 #if defined(HAS_SYSCALL) && !defined(HAS_SYSCALL_PROTO) && !defined(PERL_MICRO)
417 int syscall(int, ...);
418 #endif
419
420 #if defined(HAS_USLEEP) && !defined(HAS_USLEEP_PROTO) && !defined(PERL_MICRO)
421 int usleep(unsigned int);
422 #endif
423
424 #ifdef PERL_MICRO /* Last chance to export Perl_my_swap */
425 #  define MYSWAP
426 #endif
427
428 /* Cannot include embed.h here on Win32 as win32.h has not 
429    yet been included and defines some config variables e.g. HAVE_INTERP_INTERN
430  */
431 #if !defined(PERL_FOR_X2P) && !(defined(WIN32)||defined(VMS))
432 #  include "embed.h"
433 #endif
434
435 #define MEM_SIZE Size_t
436
437 #if defined(STANDARD_C) && defined(I_STDDEF)
438 #   include <stddef.h>
439 #   define STRUCT_OFFSET(s,m)  offsetof(s,m)
440 #else
441 #   define STRUCT_OFFSET(s,m)  (Size_t)(&(((s *)0)->m))
442 #endif
443
444 #if defined(I_STRING) || defined(__cplusplus)
445 #   include <string.h>
446 #else
447 #   include <strings.h>
448 #endif
449
450 /* This comes after <stdlib.h> so we don't try to change the standard
451  * library prototypes; we'll use our own in proto.h instead. */
452
453 #ifdef MYMALLOC
454 #  ifdef PERL_POLLUTE_MALLOC
455 #   ifndef PERL_EXTMALLOC_DEF
456 #    define Perl_malloc         malloc
457 #    define Perl_calloc         calloc
458 #    define Perl_realloc        realloc
459 #    define Perl_mfree          free
460 #   endif
461 #  else
462 #    define EMBEDMYMALLOC       /* for compatibility */
463 #  endif
464 Malloc_t Perl_malloc (MEM_SIZE nbytes);
465 Malloc_t Perl_calloc (MEM_SIZE elements, MEM_SIZE size);
466 Malloc_t Perl_realloc (Malloc_t where, MEM_SIZE nbytes);
467 /* 'mfree' rather than 'free', since there is already a 'perl_free'
468  * that causes clashes with case-insensitive linkers */
469 Free_t   Perl_mfree (Malloc_t where);
470
471 typedef struct perl_mstats perl_mstats_t;
472
473 #  define safemalloc  Perl_malloc
474 #  define safecalloc  Perl_calloc
475 #  define saferealloc Perl_realloc
476 #  define safefree    Perl_mfree
477 #else  /* MYMALLOC */
478 #  define safemalloc  safesysmalloc
479 #  define safecalloc  safesyscalloc
480 #  define saferealloc safesysrealloc
481 #  define safefree    safesysfree
482 #endif /* MYMALLOC */
483
484 #if !defined(HAS_STRCHR) && defined(HAS_INDEX) && !defined(strchr)
485 #define strchr index
486 #define strrchr rindex
487 #endif
488
489 #ifdef I_MEMORY
490 #  include <memory.h>
491 #endif
492
493 #ifdef HAS_MEMCPY
494 #  if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
495 #    ifndef memcpy
496         extern char * memcpy (char*, char*, int);
497 #    endif
498 #  endif
499 #else
500 #   ifndef memcpy
501 #       ifdef HAS_BCOPY
502 #           define memcpy(d,s,l) bcopy(s,d,l)
503 #       else
504 #           define memcpy(d,s,l) my_bcopy(s,d,l)
505 #       endif
506 #   endif
507 #endif /* HAS_MEMCPY */
508
509 #ifdef HAS_MEMSET
510 #  if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
511 #    ifndef memset
512         extern char *memset (char*, int, int);
513 #    endif
514 #  endif
515 #else
516 #  undef  memset
517 #  define memset(d,c,l) my_memset(d,c,l)
518 #endif /* HAS_MEMSET */
519
520 #if !defined(HAS_MEMMOVE) && !defined(memmove)
521 #   if defined(HAS_BCOPY) && defined(HAS_SAFE_BCOPY)
522 #       define memmove(d,s,l) bcopy(s,d,l)
523 #   else
524 #       if defined(HAS_MEMCPY) && defined(HAS_SAFE_MEMCPY)
525 #           define memmove(d,s,l) memcpy(d,s,l)
526 #       else
527 #           define memmove(d,s,l) my_bcopy(s,d,l)
528 #       endif
529 #   endif
530 #endif
531
532 #if defined(mips) && defined(ultrix) && !defined(__STDC__)
533 #   undef HAS_MEMCMP
534 #endif
535
536 #if defined(HAS_MEMCMP) && defined(HAS_SANE_MEMCMP)
537 #  if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
538 #    ifndef memcmp
539         extern int memcmp (char*, char*, int);
540 #    endif
541 #  endif
542 #  ifdef BUGGY_MSC
543   #  pragma function(memcmp)
544 #  endif
545 #else
546 #   ifndef memcmp
547 #       define memcmp   my_memcmp
548 #   endif
549 #endif /* HAS_MEMCMP && HAS_SANE_MEMCMP */
550
551 #ifndef memzero
552 #   ifdef HAS_MEMSET
553 #       define memzero(d,l) memset(d,0,l)
554 #   else
555 #       ifdef HAS_BZERO
556 #           define memzero(d,l) bzero(d,l)
557 #       else
558 #           define memzero(d,l) my_bzero(d,l)
559 #       endif
560 #   endif
561 #endif
562
563 #ifndef memchr
564 #   ifndef HAS_MEMCHR
565 #       define memchr(s,c,n) ninstr((char*)(s), ((char*)(s)) + n, &(c), &(c) + 1)
566 #   endif
567 #endif
568
569 #ifndef HAS_BCMP
570 #   ifndef bcmp
571 #       define bcmp(s1,s2,l) memcmp(s1,s2,l)
572 #   endif
573 #endif /* !HAS_BCMP */
574
575 #ifdef I_NETINET_IN
576 #   include <netinet/in.h>
577 #endif
578
579 #ifdef I_ARPA_INET
580 #   include <arpa/inet.h>
581 #endif
582
583 #if defined(SF_APPEND) && defined(USE_SFIO) && defined(I_SFIO)
584 /* <sfio.h> defines SF_APPEND and <sys/stat.h> might define SF_APPEND
585  * (the neo-BSD seem to do this).  */
586 #   undef SF_APPEND
587 #endif
588
589 #ifdef I_SYS_STAT
590 #   include <sys/stat.h>
591 #endif
592
593 /* The stat macros for Amdahl UTS, Unisoft System V/88 (and derivatives
594    like UTekV) are broken, sometimes giving false positives.  Undefine
595    them here and let the code below set them to proper values.
596
597    The ghs macro stands for GreenHills Software C-1.8.5 which
598    is the C compiler for sysV88 and the various derivatives.
599    This header file bug is corrected in gcc-2.5.8 and later versions.
600    --Kaveh Ghazi (ghazi@noc.rutgers.edu) 10/3/94.  */
601
602 #if defined(uts) || (defined(m88k) && defined(ghs))
603 #   undef S_ISDIR
604 #   undef S_ISCHR
605 #   undef S_ISBLK
606 #   undef S_ISREG
607 #   undef S_ISFIFO
608 #   undef S_ISLNK
609 #endif
610
611 #ifdef I_TIME
612 #   include <time.h>
613 #endif
614
615 #ifdef I_SYS_TIME
616 #   ifdef I_SYS_TIME_KERNEL
617 #       define KERNEL
618 #   endif
619 #   include <sys/time.h>
620 #   ifdef I_SYS_TIME_KERNEL
621 #       undef KERNEL
622 #   endif
623 #endif
624
625 #if defined(HAS_TIMES) && defined(I_SYS_TIMES)
626 #    include <sys/times.h>
627 #endif
628
629 #if defined(HAS_STRERROR) && (!defined(HAS_MKDIR) || !defined(HAS_RMDIR))
630 #   undef HAS_STRERROR
631 #endif
632
633 #include <errno.h>
634
635 #if defined(WIN32) && defined(PERL_IMPLICIT_SYS)
636 #  define WIN32SCK_IS_STDSCK            /* don't pull in custom wsock layer */
637 #endif
638
639 /* In Tru64 use the 4.4BSD struct msghdr, not the 4.3 one */
640 #if defined(__osf__) && defined(__alpha) && !defined(_SOCKADDR_LEN)
641 #  define _SOCKADDR_LEN
642 #endif
643
644 #if defined(HAS_SOCKET) && !defined(VMS) && !defined(WIN32) /* VMS/WIN32 handle sockets via vmsish.h/win32.h */
645 # include <sys/socket.h>
646 # if defined(USE_SOCKS) && defined(I_SOCKS)
647 #   if !defined(INCLUDE_PROTOTYPES)
648 #       define INCLUDE_PROTOTYPES /* for <socks.h> */
649 #       define PERL_SOCKS_NEED_PROTOTYPES
650 #   endif
651 #   ifdef USE_5005THREADS
652 #       define PERL_USE_THREADS /* store our value */
653 #       undef USE_5005THREADS
654 #   endif
655 #   include <socks.h>
656 #   ifdef USE_5005THREADS
657 #       undef USE_5005THREADS /* socks.h does this on its own */
658 #   endif
659 #   ifdef PERL_USE_THREADS
660 #       define USE_5005THREADS /* restore our value */
661 #       undef PERL_USE_THREADS
662 #   endif
663 #   ifdef PERL_SOCKS_NEED_PROTOTYPES /* keep cpp space clean */
664 #       undef INCLUDE_PROTOTYPES
665 #       undef PERL_SOCKS_NEED_PROTOTYPES
666 #   endif
667 # endif
668 # ifdef I_NETDB
669 #  ifdef NETWARE
670 #   include<stdio.h>
671 #  endif
672 #  include <netdb.h>
673 # endif
674 # ifndef ENOTSOCK
675 #  ifdef I_NET_ERRNO
676 #   include <net/errno.h>
677 #  endif
678 # endif
679 #endif
680
681 /* sockatmark() is so new (2001) that many places might have it hidden
682  * behind some -D_BLAH_BLAH_SOURCE guard. */
683 #if defined(HAS_SOCKATMARK) && !defined(HAS_SOCKATMARK_PROTO)
684 int sockatmark(int);
685 #endif
686
687 #ifdef SETERRNO
688 # undef SETERRNO  /* SOCKS might have defined this */
689 #endif
690
691 #ifdef VMS
692 #   define SETERRNO(errcode,vmserrcode) \
693         STMT_START {                    \
694             set_errno(errcode);         \
695             set_vaxc_errno(vmserrcode); \
696         } STMT_END
697 #else
698 #   define SETERRNO(errcode,vmserrcode) (errno = (errcode))
699 #endif
700
701 #ifdef USE_5005THREADS
702 #  define ERRSV (thr->errsv)
703 #  define DEFSV THREADSV(0)
704 #  define SAVE_DEFSV save_threadsv(0)
705 #else
706 #  define ERRSV GvSV(PL_errgv)
707 #  define DEFSV GvSV(PL_defgv)
708 #  define SAVE_DEFSV SAVESPTR(GvSV(PL_defgv))
709 #endif /* USE_5005THREADS */
710
711 #define ERRHV GvHV(PL_errgv)    /* XXX unused, here for compatibility */
712
713 #ifndef errno
714         extern int errno;     /* ANSI allows errno to be an lvalue expr.
715                                * For example in multithreaded environments
716                                * something like this might happen:
717                                * extern int *_errno(void);
718                                * #define errno (*_errno()) */
719 #endif
720
721 #ifdef HAS_STRERROR
722 #       ifdef VMS
723         char *strerror (int,...);
724 #       else
725 #ifndef DONT_DECLARE_STD
726         char *strerror (int);
727 #endif
728 #       endif
729 #       ifndef Strerror
730 #           define Strerror strerror
731 #       endif
732 #else
733 #    ifdef HAS_SYS_ERRLIST
734         extern int sys_nerr;
735         extern char *sys_errlist[];
736 #       ifndef Strerror
737 #           define Strerror(e) \
738                 ((e) < 0 || (e) >= sys_nerr ? "(unknown)" : sys_errlist[e])
739 #       endif
740 #   endif
741 #endif
742
743 #ifdef I_SYS_IOCTL
744 #   ifndef _IOCTL_
745 #       include <sys/ioctl.h>
746 #   endif
747 #endif
748
749 #if defined(mc300) || defined(mc500) || defined(mc700) || defined(mc6000)
750 #   ifdef HAS_SOCKETPAIR
751 #       undef HAS_SOCKETPAIR
752 #   endif
753 #   ifdef I_NDBM
754 #       undef I_NDBM
755 #   endif
756 #endif
757
758 #if INTSIZE == 2
759 #   define htoni htons
760 #   define ntohi ntohs
761 #else
762 #   define htoni htonl
763 #   define ntohi ntohl
764 #endif
765
766 /* Configure already sets Direntry_t */
767 #if defined(I_DIRENT)
768 #   include <dirent.h>
769     /* NeXT needs dirent + sys/dir.h */
770 #   if  defined(I_SYS_DIR) && (defined(NeXT) || defined(__NeXT__))
771 #       include <sys/dir.h>
772 #   endif
773 #else
774 #   ifdef I_SYS_NDIR
775 #       include <sys/ndir.h>
776 #   else
777 #       ifdef I_SYS_DIR
778 #           ifdef hp9000s500
779 #               include <ndir.h>        /* may be wrong in the future */
780 #           else
781 #               include <sys/dir.h>
782 #           endif
783 #       endif
784 #   endif
785 #endif
786
787 #ifdef PERL_MICRO
788 #   ifndef DIR
789 #      define DIR void
790 #   endif
791 #endif
792
793 #ifdef FPUTS_BOTCH
794 /* work around botch in SunOS 4.0.1 and 4.0.2 */
795 #   ifndef fputs
796 #       define fputs(sv,fp) fprintf(fp,"%s",sv)
797 #   endif
798 #endif
799
800 /*
801  * The following gobbledygook brought to you on behalf of __STDC__.
802  * (I could just use #ifndef __STDC__, but this is more bulletproof
803  * in the face of half-implementations.)
804  */
805
806 #if defined(I_SYSMODE) && !defined(PERL_MICRO)
807 #include <sys/mode.h>
808 #endif
809
810 #ifndef S_IFMT
811 #   ifdef _S_IFMT
812 #       define S_IFMT _S_IFMT
813 #   else
814 #       define S_IFMT 0170000
815 #   endif
816 #endif
817
818 #ifndef S_ISDIR
819 #   define S_ISDIR(m) ((m & S_IFMT) == S_IFDIR)
820 #endif
821
822 #ifndef S_ISCHR
823 #   define S_ISCHR(m) ((m & S_IFMT) == S_IFCHR)
824 #endif
825
826 #ifndef S_ISBLK
827 #   ifdef S_IFBLK
828 #       define S_ISBLK(m) ((m & S_IFMT) == S_IFBLK)
829 #   else
830 #       define S_ISBLK(m) (0)
831 #   endif
832 #endif
833
834 #ifndef S_ISREG
835 #   define S_ISREG(m) ((m & S_IFMT) == S_IFREG)
836 #endif
837
838 #ifndef S_ISFIFO
839 #   ifdef S_IFIFO
840 #       define S_ISFIFO(m) ((m & S_IFMT) == S_IFIFO)
841 #   else
842 #       define S_ISFIFO(m) (0)
843 #   endif
844 #endif
845
846 #ifndef S_ISLNK
847 #   ifdef _S_ISLNK
848 #       define S_ISLNK(m) _S_ISLNK(m)
849 #   else
850 #       ifdef _S_IFLNK
851 #           define S_ISLNK(m) ((m & S_IFMT) == _S_IFLNK)
852 #       else
853 #           ifdef S_IFLNK
854 #               define S_ISLNK(m) ((m & S_IFMT) == S_IFLNK)
855 #           else
856 #               define S_ISLNK(m) (0)
857 #           endif
858 #       endif
859 #   endif
860 #endif
861
862 #ifndef S_ISSOCK
863 #   ifdef _S_ISSOCK
864 #       define S_ISSOCK(m) _S_ISSOCK(m)
865 #   else
866 #       ifdef _S_IFSOCK
867 #           define S_ISSOCK(m) ((m & S_IFMT) == _S_IFSOCK)
868 #       else
869 #           ifdef S_IFSOCK
870 #               define S_ISSOCK(m) ((m & S_IFMT) == S_IFSOCK)
871 #           else
872 #               define S_ISSOCK(m) (0)
873 #           endif
874 #       endif
875 #   endif
876 #endif
877
878 #ifndef S_IRUSR
879 #   ifdef S_IREAD
880 #       define S_IRUSR S_IREAD
881 #       define S_IWUSR S_IWRITE
882 #       define S_IXUSR S_IEXEC
883 #   else
884 #       define S_IRUSR 0400
885 #       define S_IWUSR 0200
886 #       define S_IXUSR 0100
887 #   endif
888 #endif
889
890 #ifndef S_IRGRP
891 #   ifdef S_IRUSR
892 #       define S_IRGRP (S_IRUSR>>3)
893 #       define S_IWGRP (S_IWUSR>>3)
894 #       define S_IXGRP (S_IXUSR>>3)
895 #   else
896 #       define S_IRGRP 0040
897 #       define S_IWGRP 0020
898 #       define S_IXGRP 0010
899 #   endif
900 #endif
901
902 #ifndef S_IROTH
903 #   ifdef S_IRUSR
904 #       define S_IROTH (S_IRUSR>>6)
905 #       define S_IWOTH (S_IWUSR>>6)
906 #       define S_IXOTH (S_IXUSR>>6)
907 #   else
908 #       define S_IROTH 0040
909 #       define S_IWOTH 0020
910 #       define S_IXOTH 0010
911 #   endif
912 #endif
913
914 #ifndef S_ISUID
915 #   define S_ISUID 04000
916 #endif
917
918 #ifndef S_ISGID
919 #   define S_ISGID 02000
920 #endif
921
922 #ifndef S_IRWXU
923 #   define S_IRWXU (S_IRUSR|S_IWUSR|S_IXUSR)
924 #endif
925
926 #ifndef S_IRWXG
927 #   define S_IRWXG (S_IRGRP|S_IWGRP|S_IXGRP)
928 #endif
929
930 #ifndef S_IRWXO
931 #   define S_IRWXO (S_IROTH|S_IWOTH|S_IXOTH)
932 #endif
933
934 /* BeOS 5.0 seems to define S_IREAD and S_IWRITE in <posix/fcntl.h>
935  * which would get included through <sys/file.h >, but that is 3000
936  * lines in the future.  --jhi */
937
938 #if !defined(S_IREAD) && !defined(__BEOS__)
939 #   define S_IREAD S_IRUSR
940 #endif
941
942 #if !defined(S_IWRITE) && !defined(__BEOS__)
943 #   define S_IWRITE S_IWUSR
944 #endif
945
946 #ifndef S_IEXEC
947 #   define S_IEXEC S_IXUSR
948 #endif
949
950 #ifdef ff_next
951 #   undef ff_next
952 #endif
953
954 #if defined(cray) || defined(gould) || defined(i860) || defined(pyr)
955 #   define SLOPPYDIVIDE
956 #endif
957
958 #ifdef UV
959 #undef UV
960 #endif
961
962 #ifdef  SPRINTF_E_BUG
963 #  define sprintf UTS_sprintf_wrap
964 #endif
965
966 /* Configure gets this right but the UTS compiler gets it wrong.
967    -- Hal Morris <hom00@utsglobal.com> */
968 #ifdef UTS
969 #  undef  UVTYPE
970 #  define UVTYPE unsigned
971 #endif
972
973 /*
974     The IV type is supposed to be long enough to hold any integral
975     value or a pointer.
976     --Andy Dougherty    August 1996
977 */
978
979 typedef IVTYPE IV;
980 typedef UVTYPE UV;
981
982 #if defined(USE_64_BIT_INT) && defined(HAS_QUAD)
983 #  if QUADKIND == QUAD_IS_INT64_T && defined(INT64_MAX)
984 #    define IV_MAX INT64_MAX
985 #    define IV_MIN INT64_MIN
986 #    define UV_MAX UINT64_MAX
987 #    ifndef UINT64_MIN
988 #      define UINT64_MIN 0
989 #    endif
990 #    define UV_MIN UINT64_MIN
991 #  else
992 #    define IV_MAX PERL_QUAD_MAX
993 #    define IV_MIN PERL_QUAD_MIN
994 #    define UV_MAX PERL_UQUAD_MAX
995 #    define UV_MIN PERL_UQUAD_MIN
996 #  endif
997 #  define IV_IS_QUAD
998 #  define UV_IS_QUAD
999 #else
1000 #  if defined(INT32_MAX) && IVSIZE == 4
1001 #    define IV_MAX INT32_MAX
1002 #    define IV_MIN INT32_MIN
1003 #    ifndef UINT32_MAX_BROKEN /* e.g. HP-UX with gcc messes this up */
1004 #        define UV_MAX UINT32_MAX
1005 #    else
1006 #        define UV_MAX 4294967295U
1007 #    endif
1008 #    ifndef UINT32_MIN
1009 #      define UINT32_MIN 0
1010 #    endif
1011 #    define UV_MIN UINT32_MIN
1012 #  else
1013 #    define IV_MAX PERL_LONG_MAX
1014 #    define IV_MIN PERL_LONG_MIN
1015 #    define UV_MAX PERL_ULONG_MAX
1016 #    define UV_MIN PERL_ULONG_MIN
1017 #  endif
1018 #  if IVSIZE == 8
1019 #    define IV_IS_QUAD
1020 #    define UV_IS_QUAD
1021 #    ifndef HAS_QUAD
1022 #      define HAS_QUAD
1023 #    endif
1024 #  else
1025 #    undef IV_IS_QUAD
1026 #    undef UV_IS_QUAD
1027 #    undef HAS_QUAD
1028 #  endif
1029 #endif
1030
1031 #if defined(uts) || defined(UTS)
1032 #       undef UV_MAX
1033 #       define UV_MAX (4294967295u)
1034 #endif
1035
1036 #define IV_DIG (BIT_DIGITS(IVSIZE * 8))
1037 #define UV_DIG (BIT_DIGITS(UVSIZE * 8))
1038
1039 #ifndef NO_PERL_PRESERVE_IVUV
1040 #define PERL_PRESERVE_IVUV      /* We like our integers to stay integers. */
1041 #endif
1042
1043 /*
1044  *  The macros INT2PTR and NUM2PTR are (despite their names)
1045  *  bi-directional: they will convert int/float to or from pointers.
1046  *  However the conversion to int/float are named explicitly:
1047  *  PTR2IV, PTR2UV, PTR2NV.
1048  *
1049  *  For int conversions we do not need two casts if pointers are
1050  *  the same size as IV and UV.   Otherwise we need an explicit
1051  *  cast (PTRV) to avoid compiler warnings.
1052  */
1053 #if (IVSIZE == PTRSIZE) && (UVSIZE == PTRSIZE)
1054 #  define PTRV                  UV
1055 #  define INT2PTR(any,d)        (any)(d)
1056 #else
1057 #  if PTRSIZE == LONGSIZE
1058 #    define PTRV                unsigned long
1059 #  else
1060 #    define PTRV                unsigned
1061 #  endif
1062 #  define INT2PTR(any,d)        (any)(PTRV)(d)
1063 #endif
1064 #define NUM2PTR(any,d)  (any)(PTRV)(d)
1065 #define PTR2IV(p)       INT2PTR(IV,p)
1066 #define PTR2UV(p)       INT2PTR(UV,p)
1067 #define PTR2NV(p)       NUM2PTR(NV,p)
1068 #if PTRSIZE == LONGSIZE
1069 #  define PTR2ul(p)     (unsigned long)(p)
1070 #else
1071 #  define PTR2ul(p)     INT2PTR(unsigned long,p)        
1072 #endif
1073
1074 #ifdef USE_LONG_DOUBLE
1075 #  if defined(HAS_LONG_DOUBLE) && LONG_DOUBLESIZE == DOUBLESIZE
1076 #      define LONG_DOUBLE_EQUALS_DOUBLE
1077 #  endif
1078 #  if !(defined(HAS_LONG_DOUBLE) && (LONG_DOUBLESIZE > DOUBLESIZE))
1079 #     undef USE_LONG_DOUBLE /* Ouch! */
1080 #  endif
1081 #endif
1082
1083 #ifdef OVR_DBL_DIG
1084 /* Use an overridden DBL_DIG */
1085 # ifdef DBL_DIG
1086 #  undef DBL_DIG
1087 # endif
1088 # define DBL_DIG OVR_DBL_DIG
1089 #else
1090 /* The following is all to get DBL_DIG, in order to pick a nice
1091    default value for printing floating point numbers in Gconvert.
1092    (see config.h)
1093 */
1094 #ifdef I_LIMITS
1095 #include <limits.h>
1096 #endif
1097 #ifdef I_FLOAT
1098 #include <float.h>
1099 #endif
1100 #ifndef HAS_DBL_DIG
1101 #define DBL_DIG 15   /* A guess that works lots of places */
1102 #endif
1103 #endif
1104 #ifdef I_FLOAT
1105 #include <float.h>
1106 #endif
1107 #ifndef HAS_DBL_DIG
1108 #define DBL_DIG 15   /* A guess that works lots of places */
1109 #endif
1110
1111 #ifdef OVR_LDBL_DIG
1112 /* Use an overridden LDBL_DIG */
1113 # ifdef LDBL_DIG
1114 #  undef LDBL_DIG
1115 # endif
1116 # define LDBL_DIG OVR_LDBL_DIG
1117 #else
1118 /* The following is all to get LDBL_DIG, in order to pick a nice
1119    default value for printing floating point numbers in Gconvert.
1120    (see config.h)
1121 */
1122 # ifdef I_LIMITS
1123 #   include <limits.h>
1124 # endif
1125 # ifdef I_FLOAT
1126 #  include <float.h>
1127 # endif
1128 # ifndef HAS_LDBL_DIG
1129 #  if LONG_DOUBLESIZE == 10
1130 #   define LDBL_DIG 18 /* assume IEEE */
1131 #  else
1132 #   if LONG_DOUBLESIZE == 12
1133 #    define LDBL_DIG 18 /* gcc? */
1134 #   else
1135 #    if LONG_DOUBLESIZE == 16
1136 #     define LDBL_DIG 33 /* assume IEEE */
1137 #    else
1138 #     if LONG_DOUBLESIZE == DOUBLESIZE
1139 #      define LDBL_DIG DBL_DIG /* bummer */
1140 #     endif
1141 #    endif
1142 #   endif
1143 #  endif
1144 # endif
1145 #endif
1146
1147 typedef NVTYPE NV;
1148
1149 #ifdef I_IEEEFP
1150 #   include <ieeefp.h>
1151 #endif
1152
1153 #ifdef USE_LONG_DOUBLE
1154 #   ifdef I_SUNMATH
1155 #       include <sunmath.h>
1156 #   endif
1157 #   define NV_DIG LDBL_DIG
1158 #   ifdef LDBL_MANT_DIG
1159 #       define NV_MANT_DIG LDBL_MANT_DIG
1160 #   endif
1161 #   ifdef LDBL_MIN
1162 #       define NV_MIN LDBL_MIN
1163 #   endif
1164 #   ifdef LDBL_MAX
1165 #       define NV_MAX LDBL_MAX
1166 #   endif
1167 #   ifdef LDBL_MIN_10_EXP
1168 #       define NV_MIN_10_EXP LDBL_MIN_10_EXP
1169 #   endif
1170 #   ifdef LDBL_MAX_10_EXP
1171 #       define NV_MAX_10_EXP LDBL_MAX_10_EXP
1172 #   endif
1173 #   ifdef LDBL_EPSILON
1174 #       define NV_EPSILON LDBL_EPSILON
1175 #   endif
1176 #   ifdef LDBL_MAX
1177 #       define NV_MAX LDBL_MAX
1178 #       define NV_MIN LDBL_MIN
1179 #   else
1180 #       ifdef HUGE_VALL
1181 #           define NV_MAX HUGE_VALL
1182 #       else
1183 #           ifdef HUGE_VAL
1184 #               define NV_MAX ((NV)HUGE_VAL)
1185 #           endif
1186 #       endif
1187 #   endif
1188 #   ifdef HAS_SQRTL
1189 #       define Perl_cos cosl
1190 #       define Perl_sin sinl
1191 #       define Perl_sqrt sqrtl
1192 #       define Perl_exp expl
1193 #       define Perl_log logl
1194 #       define Perl_atan2 atan2l
1195 #       define Perl_pow powl
1196 #       define Perl_floor floorl
1197 #       define Perl_fmod fmodl
1198 #   endif
1199 /* e.g. libsunmath doesn't have modfl and frexpl as of mid-March 2000 */
1200 #   ifdef HAS_MODFL
1201 #       define Perl_modf(x,y) modfl(x,y)
1202 #   else
1203 #       define Perl_modf(x,y) ((long double)modf((double)(x),(double*)(y)))
1204 #   endif
1205 #   ifdef HAS_FREXPL
1206 #       define Perl_frexp(x,y) frexpl(x,y)
1207 #   else
1208 #       define Perl_frexp(x,y) ((long double)frexp((double)(x),y))
1209 #   endif
1210 #   ifndef Perl_isinf
1211 #       ifdef HAS_ISNANL
1212 #           define Perl_isnan(x) isnanl(x)
1213 #       endif
1214 #   endif
1215 #   ifndef Perl_isinf
1216 #       ifdef HAS_FINITEL
1217 #           define Perl_isinf(x) !(finitel(x)||Perl_isnan(x))
1218 #       endif
1219 #   endif
1220 #else
1221 #   define NV_DIG DBL_DIG
1222 #   ifdef DBL_MANT_DIG
1223 #       define NV_MANT_DIG DBL_MANT_DIG
1224 #   endif
1225 #   ifdef DBL_MIN
1226 #       define NV_MIN DBL_MIN
1227 #   endif
1228 #   ifdef DBL_MAX
1229 #       define NV_MAX DBL_MAX
1230 #   endif
1231 #   ifdef DBL_MIN_10_EXP
1232 #       define NV_MIN_10_EXP DBL_MIN_10_EXP
1233 #   endif
1234 #   ifdef DBL_MAX_10_EXP
1235 #       define NV_MAX_10_EXP DBL_MAX_10_EXP
1236 #   endif
1237 #   ifdef DBL_EPSILON
1238 #       define NV_EPSILON DBL_EPSILON
1239 #   endif
1240 #   ifdef DBL_MAX
1241 #       define NV_MAX DBL_MAX
1242 #       define NV_MIN DBL_MIN
1243 #   else
1244 #       ifdef HUGE_VAL
1245 #           define NV_MAX HUGE_VAL
1246 #       endif
1247 #   endif
1248 #   define Perl_cos cos
1249 #   define Perl_sin sin
1250 #   define Perl_sqrt sqrt
1251 #   define Perl_exp exp
1252 #   define Perl_log log
1253 #   define Perl_atan2 atan2
1254 #   define Perl_pow pow
1255 #   define Perl_floor floor
1256 #   define Perl_fmod fmod
1257 #   define Perl_modf(x,y) modf(x,y)
1258 #   define Perl_frexp(x,y) frexp(x,y)
1259 #endif
1260
1261 /* rumor has it that Win32 has _fpclass() */
1262
1263 #if !defined(Perl_fp_class) && (defined(HAS_FPCLASS)||defined(HAS_FPCLASSL))
1264 #    ifdef I_IEEFP
1265 #        include <ieeefp.h>
1266 #    endif
1267 #    ifdef I_FP
1268 #        include <fp.h>
1269 #    endif
1270 #    if defined(USE_LONG_DOUBLE) && defined(HAS_FPCLASSL)
1271 #        define Perl_fp_class()         fpclassl(x)
1272 #    else
1273 #        define Perl_fp_class()         fpclass(x)
1274 #    endif
1275 #    define Perl_fp_class_snan(x)       (Perl_fp_class(x)==FP_CLASS_SNAN)
1276 #    define Perl_fp_class_qnan(x)       (Perl_fp_class(x)==FP_CLASS_QNAN)
1277 #    define Perl_fp_class_nan(x)        (Perl_fp_class(x)==FP_CLASS_SNAN||Perl_fp_class(x)==FP_CLASS_QNAN)
1278 #    define Perl_fp_class_ninf(x)       (Perl_fp_class(x)==FP_CLASS_NINF)
1279 #    define Perl_fp_class_pinf(x)       (Perl_fp_class(x)==FP_CLASS_PINF)
1280 #    define Perl_fp_class_inf(x)        (Perl_fp_class(x)==FP_CLASS_NINF||Perl_fp_class(x)==FP_CLASS_PINF)
1281 #    define Perl_fp_class_nnorm(x)      (Perl_fp_class(x)==FP_CLASS_NNORM)
1282 #    define Perl_fp_class_pnorm(x)      (Perl_fp_class(x)==FP_CLASS_PNORM)
1283 #    define Perl_fp_class_norm(x)       (Perl_fp_class(x)==FP_CLASS_NNORM||Perl_fp_class(x)==FP_CLASS_PNORM)
1284 #    define Perl_fp_class_ndenorm(x)    (Perl_fp_class(x)==FP_CLASS_NDENORM)
1285 #    define Perl_fp_class_pdenorm(x)    (Perl_fp_class(x)==FP_CLASS_PDENORM)
1286 #    define Perl_fp_class_denorm(x)     (Perl_fp_class(x)==FP_CLASS_NDENORM||Perl_fp_class(x)==FP_CLASS_PDENORM)
1287 #    define Perl_fp_class_nzero(x)      (Perl_fp_class(x)==FP_CLASS_NZERO)
1288 #    define Perl_fp_class_pzero(x)      (Perl_fp_class(x)==FP_CLASS_PZERO)
1289 #    define Perl_fp_class_zero(x)       (Perl_fp_class(x)==FP_CLASS_NZERO||Perl_fp_class(x)==FP_CLASS_PZERO)
1290 #endif
1291
1292 #if !defined(Perl_fp_class) && defined(HAS_FP_CLASS) && !defined(PERL_MICRO)
1293 #    include <math.h>
1294 #    if !defined(FP_SNAN) && defined(I_FP_CLASS)
1295 #        include <fp_class.h>
1296 #    endif
1297 #    define Perl_fp_class(x)            fp_class(x)
1298 #    define Perl_fp_class_snan(x)       (fp_class(x)==FP_SNAN)
1299 #    define Perl_fp_class_qnan(x)       (fp_class(x)==FP_QNAN)
1300 #    define Perl_fp_class_nan(x)        (fp_class(x)==FP_SNAN||fp_class(x)==FP_QNAN)
1301 #    define Perl_fp_class_ninf(x)       (fp_class(x)==FP_NEG_INF)
1302 #    define Perl_fp_class_pinf(x)       (fp_class(x)==FP_POS_INF)
1303 #    define Perl_fp_class_inf(x)        (fp_class(x)==FP_NEG_INF||fp_class(x)==FP_POS_INF)
1304 #    define Perl_fp_class_nnorm(x)      (fp_class(x)==FP_NEG_NORM)
1305 #    define Perl_fp_class_pnorm(x)      (fp_class(x)==FP_POS_NORM)
1306 #    define Perl_fp_class_norm(x)       (fp_class(x)==FP_NEG_NORM||fp_class(x)==FP_POS_NORM)
1307 #    define Perl_fp_class_ndenorm(x)    (fp_class(x)==FP_NEG_DENORM)
1308 #    define Perl_fp_class_pdenorm(x)    (fp_class(x)==FP_POS_DENORM)
1309 #    define Perl_fp_class_denorm(x)     (fp_class(x)==FP_NEG_DENORM||fp_class(x)==FP_POS_DENORM)
1310 #    define Perl_fp_class_nzero(x)      (fp_class(x)==FP_NEG_ZERO)
1311 #    define Perl_fp_class_pzero(x)      (fp_class(x)==FP_POS_ZERO)
1312 #    define Perl_fp_class_zero(x)       (fp_class(x)==FP_NEG_ZERO||fp_class(x)==FP_POS_ZERO)
1313 #endif
1314
1315 #if !defined(Perl_fp_class) && defined(HAS_FPCLASSIFY)
1316 #    include <math.h>
1317 #    define Perl_fp_class(x)            fpclassify(x)
1318 #    define Perl_fp_class_nan(x)        (fp_classify(x)==FP_SNAN|FP|_fp_classify(x)==QNAN)
1319 #    define Perl_fp_class_inf(x)        (fp_classify(x)==FP_INFINITE)
1320 #    define Perl_fp_class_norm(x)       (fp_classify(x)==FP_NORMAL)
1321 #    define Perl_fp_class_denorm(x)     (fp_classify(x)==FP_SUBNORMAL)
1322 #    define Perl_fp_class_zero(x)       (fp_classify(x)==FP_ZERO)
1323 #endif
1324
1325 #if !defined(Perl_fp_class) && defined(HAS_CLASS)
1326 #    include <math.h>
1327 #    ifndef _cplusplus
1328 #        define Perl_fp_class(x)        class(x)
1329 #    else
1330 #        define Perl_fp_class(x)        _class(x)
1331 #    endif
1332 #    define Perl_fp_class_snan(x)       (Perl_fp_class(x)==FP_NANS)
1333 #    define Perl_fp_class_qnan(x)       (Perl_fp_class(x)==FP_NANQ)
1334 #    define Perl_fp_class_nan(x)        (Perl_fp_class(x)==FP_SNAN||Perl_fp_class(x)==FP_QNAN)
1335 #    define Perl_fp_class_ninf(x)       (Perl_fp_class(x)==FP_MINUS_INF)
1336 #    define Perl_fp_class_pinf(x)       (Perl_fp_class(x)==FP_PLUS_INF)
1337 #    define Perl_fp_class_inf(x)        (Perl_fp_class(x)==FP_MINUS_INF||Perl_fp_class(x)==FP_PLUS_INF)
1338 #    define Perl_fp_class_nnorm(x)      (Perl_fp_class(x)==FP_MINUS_NORM)
1339 #    define Perl_fp_class_pnorm(x)      (Perl_fp_class(x)==FP_PLUS_NORM)
1340 #    define Perl_fp_class_norm(x)       (Perl_fp_class(x)==FP_MINUS_NORM||Perl_fp_class(x)==FP_PLUS_NORM)
1341 #    define Perl_fp_class_ndenorm(x)    (Perl_fp_class(x)==FP_MINUS_DENORM)
1342 #    define Perl_fp_class_pdenorm(x)    (Perl_fp_class(x)==FP_PLUS_DENORM)
1343 #    define Perl_fp_class_denorm(x)     (Perl_fp_class(x)==FP_MINUS_DENORM||Perl_fp_class(x)==FP_PLUS_DENORM)
1344 #    define Perl_fp_class_nzero(x)      (Perl_fp_class(x)==FP_MINUS_ZERO)
1345 #    define Perl_fp_class_pzero(x)      (Perl_fp_class(x)==FP_PLUS_ZERO)
1346 #    define Perl_fp_class_zero(x)       (Perl_fp_class(x)==FP_MINUS_ZERO||Perl_fp_class(x)==FP_PLUS_ZERO)
1347 #endif
1348
1349 /* rumor has it that Win32 has _isnan() */
1350
1351 #ifndef Perl_isnan
1352 #   ifdef HAS_ISNAN
1353 #       define Perl_isnan(x) isnan((NV)x)
1354 #   else
1355 #       ifdef Perl_fp_class_nan
1356 #           define Perl_isnan(x) Perl_fp_class_nan(x)
1357 #       else
1358 #           ifdef HAS_UNORDERED
1359 #               define Perl_isnan(x) unordered((x), 0.0)
1360 #           else
1361 #               define Perl_isnan(x) ((x)!=(x))
1362 #           endif
1363 #       endif
1364 #   endif
1365 #endif
1366
1367 #ifdef UNDER_CE
1368 int isnan(double d);
1369 #endif
1370
1371 #ifndef Perl_isinf
1372 #   ifdef HAS_ISINF
1373 #       define Perl_isinf(x) isinf((NV)x)
1374 #   else
1375 #       ifdef Perl_fp_class_inf
1376 #           define Perl_isinf(x) Perl_fp_class_inf(x)
1377 #       else
1378 #           define Perl_isinf(x) ((x)==NV_INF)
1379 #       endif
1380 #   endif
1381 #endif
1382
1383 #ifndef Perl_isfinite
1384 #   ifdef HAS_FINITE
1385 #       define Perl_isfinite(x) finite((NV)x)
1386 #   else
1387 #       ifdef HAS_ISFINITE
1388 #           define Perl_isfinite(x) isfinite(x)
1389 #       else
1390 #           ifdef Perl_fp_class_finite
1391 #               define Perl_isfinite(x) Perl_fp_class_finite(x)
1392 #           else
1393 #               define Perl_isfinite(x) !(Perl_is_inf(x)||Perl_is_nan(x))
1394 #           endif
1395 #       endif
1396 #   endif
1397 #endif
1398
1399 #define Perl_atof(s) Perl_my_atof(s)
1400 #define Perl_atof2(s, np) Perl_my_atof2(s, np)
1401
1402 /* Previously these definitions used hardcoded figures.
1403  * It is hoped these formula are more portable, although
1404  * no data one way or another is presently known to me.
1405  * The "PERL_" names are used because these calculated constants
1406  * do not meet the ANSI requirements for LONG_MAX, etc., which
1407  * need to be constants acceptable to #if - kja
1408  *    define PERL_LONG_MAX        2147483647L
1409  *    define PERL_LONG_MIN        (-LONG_MAX - 1)
1410  *    define PERL ULONG_MAX       4294967295L
1411  */
1412
1413 #ifdef I_LIMITS  /* Needed for cast_xxx() functions below. */
1414 #  include <limits.h>
1415 #else
1416 #ifdef I_VALUES
1417 #  include <values.h>
1418 #endif
1419 #endif
1420
1421 /*
1422  * Try to figure out max and min values for the integral types.  THE CORRECT
1423  * SOLUTION TO THIS MESS: ADAPT enquire.c FROM GCC INTO CONFIGURE.  The
1424  * following hacks are used if neither limits.h or values.h provide them:
1425  * U<TYPE>_MAX: for types >= int: ~(unsigned TYPE)0
1426  *              for types <  int:  (unsigned TYPE)~(unsigned)0
1427  *      The argument to ~ must be unsigned so that later signed->unsigned
1428  *      conversion can't modify the value's bit pattern (e.g. -0 -> +0),
1429  *      and it must not be smaller than int because ~ does integral promotion.
1430  * <type>_MAX: (<type>) (U<type>_MAX >> 1)
1431  * <type>_MIN: -<type>_MAX - <is_twos_complement_architecture: (3 & -1) == 3>.
1432  *      The latter is a hack which happens to work on some machines but
1433  *      does *not* catch any random system, or things like integer types
1434  *      with NaN if that is possible.
1435  *
1436  * All of the types are explicitly cast to prevent accidental loss of
1437  * numeric range, and in the hope that they will be less likely to confuse
1438  * over-eager optimizers.
1439  *
1440  */
1441
1442 #define PERL_UCHAR_MIN ((unsigned char)0)
1443
1444 #ifdef UCHAR_MAX
1445 #  define PERL_UCHAR_MAX ((unsigned char)UCHAR_MAX)
1446 #else
1447 #  ifdef MAXUCHAR
1448 #    define PERL_UCHAR_MAX ((unsigned char)MAXUCHAR)
1449 #  else
1450 #    define PERL_UCHAR_MAX       ((unsigned char)~(unsigned)0)
1451 #  endif
1452 #endif
1453
1454 /*
1455  * CHAR_MIN and CHAR_MAX are not included here, as the (char) type may be
1456  * ambiguous. It may be equivalent to (signed char) or (unsigned char)
1457  * depending on local options. Until Configure detects this (or at least
1458  * detects whether the "signed" keyword is available) the CHAR ranges
1459  * will not be included. UCHAR functions normally.
1460  *                                                           - kja
1461  */
1462
1463 #define PERL_USHORT_MIN ((unsigned short)0)
1464
1465 #ifdef USHORT_MAX
1466 #  define PERL_USHORT_MAX ((unsigned short)USHORT_MAX)
1467 #else
1468 #  ifdef MAXUSHORT
1469 #    define PERL_USHORT_MAX ((unsigned short)MAXUSHORT)
1470 #  else
1471 #    ifdef USHRT_MAX
1472 #      define PERL_USHORT_MAX ((unsigned short)USHRT_MAX)
1473 #    else
1474 #      define PERL_USHORT_MAX       ((unsigned short)~(unsigned)0)
1475 #    endif
1476 #  endif
1477 #endif
1478
1479 #ifdef SHORT_MAX
1480 #  define PERL_SHORT_MAX ((short)SHORT_MAX)
1481 #else
1482 #  ifdef MAXSHORT    /* Often used in <values.h> */
1483 #    define PERL_SHORT_MAX ((short)MAXSHORT)
1484 #  else
1485 #    ifdef SHRT_MAX
1486 #      define PERL_SHORT_MAX ((short)SHRT_MAX)
1487 #    else
1488 #      define PERL_SHORT_MAX      ((short) (PERL_USHORT_MAX >> 1))
1489 #    endif
1490 #  endif
1491 #endif
1492
1493 #ifdef SHORT_MIN
1494 #  define PERL_SHORT_MIN ((short)SHORT_MIN)
1495 #else
1496 #  ifdef MINSHORT
1497 #    define PERL_SHORT_MIN ((short)MINSHORT)
1498 #  else
1499 #    ifdef SHRT_MIN
1500 #      define PERL_SHORT_MIN ((short)SHRT_MIN)
1501 #    else
1502 #      define PERL_SHORT_MIN        (-PERL_SHORT_MAX - ((3 & -1) == 3))
1503 #    endif
1504 #  endif
1505 #endif
1506
1507 #ifdef UINT_MAX
1508 #  define PERL_UINT_MAX ((unsigned int)UINT_MAX)
1509 #else
1510 #  ifdef MAXUINT
1511 #    define PERL_UINT_MAX ((unsigned int)MAXUINT)
1512 #  else
1513 #    define PERL_UINT_MAX       (~(unsigned int)0)
1514 #  endif
1515 #endif
1516
1517 #define PERL_UINT_MIN ((unsigned int)0)
1518
1519 #ifdef INT_MAX
1520 #  define PERL_INT_MAX ((int)INT_MAX)
1521 #else
1522 #  ifdef MAXINT    /* Often used in <values.h> */
1523 #    define PERL_INT_MAX ((int)MAXINT)
1524 #  else
1525 #    define PERL_INT_MAX        ((int)(PERL_UINT_MAX >> 1))
1526 #  endif
1527 #endif
1528
1529 #ifdef INT_MIN
1530 #  define PERL_INT_MIN ((int)INT_MIN)
1531 #else
1532 #  ifdef MININT
1533 #    define PERL_INT_MIN ((int)MININT)
1534 #  else
1535 #    define PERL_INT_MIN        (-PERL_INT_MAX - ((3 & -1) == 3))
1536 #  endif
1537 #endif
1538
1539 #ifdef ULONG_MAX
1540 #  define PERL_ULONG_MAX ((unsigned long)ULONG_MAX)
1541 #else
1542 #  ifdef MAXULONG
1543 #    define PERL_ULONG_MAX ((unsigned long)MAXULONG)
1544 #  else
1545 #    define PERL_ULONG_MAX       (~(unsigned long)0)
1546 #  endif
1547 #endif
1548
1549 #define PERL_ULONG_MIN ((unsigned long)0L)
1550
1551 #ifdef LONG_MAX
1552 #  define PERL_LONG_MAX ((long)LONG_MAX)
1553 #else
1554 #  ifdef MAXLONG    /* Often used in <values.h> */
1555 #    define PERL_LONG_MAX ((long)MAXLONG)
1556 #  else
1557 #    define PERL_LONG_MAX        ((long) (PERL_ULONG_MAX >> 1))
1558 #  endif
1559 #endif
1560
1561 #ifdef LONG_MIN
1562 #  define PERL_LONG_MIN ((long)LONG_MIN)
1563 #else
1564 #  ifdef MINLONG
1565 #    define PERL_LONG_MIN ((long)MINLONG)
1566 #  else
1567 #    define PERL_LONG_MIN        (-PERL_LONG_MAX - ((3 & -1) == 3))
1568 #  endif
1569 #endif
1570
1571 #ifdef UV_IS_QUAD
1572
1573 #    define PERL_UQUAD_MAX      (~(UV)0)
1574 #    define PERL_UQUAD_MIN      ((UV)0)
1575 #    define PERL_QUAD_MAX       ((IV) (PERL_UQUAD_MAX >> 1))
1576 #    define PERL_QUAD_MIN       (-PERL_QUAD_MAX - ((3 & -1) == 3))
1577
1578 #endif
1579
1580 struct perl_mstats {
1581     UV *nfree;
1582     UV *ntotal;
1583     IV topbucket, topbucket_ev, topbucket_odd, totfree, total, total_chain;
1584     IV total_sbrk, sbrks, sbrk_good, sbrk_slack, start_slack, sbrked_remains;
1585     IV minbucket;
1586     /* Level 1 info */
1587     UV *bucket_mem_size;
1588     UV *bucket_available_size;
1589     UV nbuckets;
1590 };
1591 struct RExC_state_t;
1592
1593 typedef MEM_SIZE STRLEN;
1594
1595 typedef struct op OP;
1596 typedef struct cop COP;
1597 typedef struct unop UNOP;
1598 typedef struct binop BINOP;
1599 typedef struct listop LISTOP;
1600 typedef struct logop LOGOP;
1601 typedef struct pmop PMOP;
1602 typedef struct svop SVOP;
1603 typedef struct padop PADOP;
1604 typedef struct pvop PVOP;
1605 typedef struct loop LOOP;
1606
1607 typedef struct interpreter PerlInterpreter;
1608
1609 /* Amdahl's <ksync.h> has struct sv */
1610 /* SGI's <sys/sema.h> has struct sv */
1611 #if defined(UTS) || defined(__sgi)
1612 #   define STRUCT_SV perl_sv
1613 #else
1614 #   define STRUCT_SV sv
1615 #endif
1616 typedef struct STRUCT_SV SV;
1617 typedef struct av AV;
1618 typedef struct hv HV;
1619 typedef struct cv CV;
1620 typedef struct regexp REGEXP;
1621 typedef struct gp GP;
1622 typedef struct gv GV;
1623 typedef struct io IO;
1624 typedef struct context PERL_CONTEXT;
1625 typedef struct block BLOCK;
1626
1627 typedef struct magic MAGIC;
1628 typedef struct xrv XRV;
1629 typedef struct xpv XPV;
1630 typedef struct xpviv XPVIV;
1631 typedef struct xpvuv XPVUV;
1632 typedef struct xpvnv XPVNV;
1633 typedef struct xpvmg XPVMG;
1634 typedef struct xpvlv XPVLV;
1635 typedef struct xpvav XPVAV;
1636 typedef struct xpvhv XPVHV;
1637 typedef struct xpvgv XPVGV;
1638 typedef struct xpvcv XPVCV;
1639 typedef struct xpvbm XPVBM;
1640 typedef struct xpvfm XPVFM;
1641 typedef struct xpvio XPVIO;
1642 typedef struct mgvtbl MGVTBL;
1643 typedef union any ANY;
1644 typedef struct ptr_tbl_ent PTR_TBL_ENT_t;
1645 typedef struct ptr_tbl PTR_TBL_t;
1646 typedef struct clone_params CLONE_PARAMS;
1647
1648
1649 #include "handy.h"
1650
1651 #if defined(USE_LARGE_FILES) && !defined(NO_64_BIT_RAWIO)
1652 #   if LSEEKSIZE == 8 && !defined(USE_64_BIT_RAWIO)
1653 #       define USE_64_BIT_RAWIO /* implicit */
1654 #   endif
1655 #endif
1656
1657 /* Notice the use of HAS_FSEEKO: now we are obligated to always use
1658  * fseeko/ftello if possible.  Don't go #defining ftell to ftello yourself,
1659  * however, because operating systems like to do that themself. */
1660 #ifndef FSEEKSIZE
1661 #   ifdef HAS_FSEEKO
1662 #       define FSEEKSIZE LSEEKSIZE
1663 #   else
1664 #       define FSEEKSIZE LONGSIZE
1665 #   endif
1666 #endif
1667
1668 #if defined(USE_LARGE_FILES) && !defined(NO_64_BIT_STDIO)
1669 #   if FSEEKSIZE == 8 && !defined(USE_64_BIT_STDIO)
1670 #       define USE_64_BIT_STDIO /* implicit */
1671 #   endif
1672 #endif
1673
1674 #ifdef USE_64_BIT_RAWIO
1675 #   ifdef HAS_OFF64_T
1676 #       undef Off_t
1677 #       define Off_t off64_t
1678 #       undef LSEEKSIZE
1679 #       define LSEEKSIZE 8
1680 #   endif
1681 /* Most 64-bit environments have defines like _LARGEFILE_SOURCE that
1682  * will trigger defines like the ones below.  Some 64-bit environments,
1683  * however, do not.  Therefore we have to explicitly mix and match. */
1684 #   if defined(USE_OPEN64)
1685 #       define open open64
1686 #   endif
1687 #   if defined(USE_LSEEK64)
1688 #       define lseek lseek64
1689 #   else
1690 #       if defined(USE_LLSEEK)
1691 #           define lseek llseek
1692 #       endif
1693 #   endif
1694 #   if defined(USE_STAT64)
1695 #       define stat stat64
1696 #   endif
1697 #   if defined(USE_FSTAT64)
1698 #       define fstat fstat64
1699 #   endif
1700 #   if defined(USE_LSTAT64)
1701 #       define lstat lstat64
1702 #   endif
1703 #   if defined(USE_FLOCK64)
1704 #       define flock flock64
1705 #   endif
1706 #   if defined(USE_LOCKF64)
1707 #       define lockf lockf64
1708 #   endif
1709 #   if defined(USE_FCNTL64)
1710 #       define fcntl fcntl64
1711 #   endif
1712 #   if defined(USE_TRUNCATE64)
1713 #       define truncate truncate64
1714 #   endif
1715 #   if defined(USE_FTRUNCATE64)
1716 #       define ftruncate ftruncate64
1717 #   endif
1718 #endif
1719
1720 #ifdef USE_64_BIT_STDIO
1721 #   ifdef HAS_FPOS64_T
1722 #       undef Fpos_t
1723 #       define Fpos_t fpos64_t
1724 #   endif
1725 /* Most 64-bit environments have defines like _LARGEFILE_SOURCE that
1726  * will trigger defines like the ones below.  Some 64-bit environments,
1727  * however, do not. */
1728 #   if defined(USE_FOPEN64)
1729 #       define fopen fopen64
1730 #   endif
1731 #   if defined(USE_FSEEK64)
1732 #       define fseek fseek64 /* don't do fseeko here, see perlio.c */
1733 #   endif
1734 #   if defined(USE_FTELL64)
1735 #       define ftell ftell64 /* don't do ftello here, see perlio.c */
1736 #   endif
1737 #   if defined(USE_FSETPOS64)
1738 #       define fsetpos fsetpos64
1739 #   endif
1740 #   if defined(USE_FGETPOS64)
1741 #       define fgetpos fgetpos64
1742 #   endif
1743 #   if defined(USE_TMPFILE64)
1744 #       define tmpfile tmpfile64
1745 #   endif
1746 #   if defined(USE_FREOPEN64)
1747 #       define freopen freopen64
1748 #   endif
1749 #endif
1750
1751 #if defined(OS2) || defined(MACOS_TRADITIONAL)
1752 #  include "iperlsys.h"
1753 #endif
1754
1755 #if defined(__OPEN_VM)
1756 #   include "vmesa/vmesaish.h"
1757 #   define ISHISH "vmesa"
1758 #endif
1759
1760 #ifdef DOSISH
1761 #   if defined(OS2)
1762 #       include "os2ish.h"
1763 #   else
1764 #       include "dosish.h"
1765 #   endif
1766 #   define ISHISH "dos"
1767 #endif
1768
1769 #if defined(VMS)
1770 #   include "vmsish.h"
1771 #   include "embed.h"
1772 #   define ISHISH "vms"
1773 #endif
1774
1775 #if defined(PLAN9)
1776 #   include "./plan9/plan9ish.h"
1777 #   define ISHISH "plan9"
1778 #endif
1779
1780 #if defined(MPE)
1781 #  include "mpeix/mpeixish.h"
1782 #  define ISHISH "mpeix"
1783 #endif
1784
1785 #if defined(__VOS__)
1786 #   include "vosish.h"
1787 #   define ISHISH "vos"
1788 #endif
1789
1790 #if defined(EPOC)
1791 #   include "epocish.h"
1792 #   define ISHISH "epoc"
1793 #endif
1794
1795 #if defined(MACOS_TRADITIONAL)
1796 #   include "macos/macish.h"
1797 #   ifndef NO_ENVIRON_ARRAY
1798 #       define NO_ENVIRON_ARRAY
1799 #   endif
1800 #   define ISHISH "macos classic"
1801 #endif
1802
1803 #ifndef ISHISH
1804 #   include "unixish.h"
1805 #   define ISHISH "unix"
1806 #endif
1807
1808 #ifndef NO_ENVIRON_ARRAY
1809 #  define USE_ENVIRON_ARRAY
1810 #endif
1811
1812 #ifdef JPL
1813     /* E.g. JPL needs to operate on a copy of the real environment.
1814      * JDK 1.2 and 1.3 seem to get upset if the original environment
1815      * is diddled with. */
1816 #   define NEED_ENVIRON_DUP_FOR_MODIFY
1817 #endif
1818
1819 /*
1820  * initialise to avoid floating-point exceptions from overflow, etc
1821  */
1822 #ifndef PERL_FPU_INIT
1823 #  ifdef HAS_FPSETMASK
1824 #    if HAS_FLOATINGPOINT_H
1825 #      include <floatingpoint.h>
1826 #    endif
1827 #    define PERL_FPU_INIT fpsetmask(0);
1828 #  else
1829 #    if defined(SIGFPE) && defined(SIG_IGN)
1830 #      define PERL_FPU_INIT signal(SIGFPE, SIG_IGN);
1831 #    else
1832 #      define PERL_FPU_INIT
1833 #    endif
1834 #  endif
1835 #endif
1836
1837 #ifndef PERL_SYS_INIT3
1838 #  define PERL_SYS_INIT3(argvp,argcp,envp) PERL_SYS_INIT(argvp,argcp)
1839 #endif
1840
1841 #ifndef PERL_WRITE_MSG_TO_CONSOLE
1842 #  define PERL_WRITE_MSG_TO_CONSOLE(io, msg, len) PerlIO_write(io, msg, len)
1843 #endif
1844
1845 #ifndef MAXPATHLEN
1846 #  ifdef PATH_MAX
1847 #    ifdef _POSIX_PATH_MAX
1848 #       if PATH_MAX > _POSIX_PATH_MAX
1849 /* MAXPATHLEN is supposed to include the final null character,
1850  * as opposed to PATH_MAX and _POSIX_PATH_MAX. */
1851 #         define MAXPATHLEN (PATH_MAX+1)
1852 #       else
1853 #         define MAXPATHLEN (_POSIX_PATH_MAX+1)
1854 #       endif
1855 #    else
1856 #      define MAXPATHLEN (PATH_MAX+1)
1857 #    endif
1858 #  else
1859 #    ifdef _POSIX_PATH_MAX
1860 #       define MAXPATHLEN (_POSIX_PATH_MAX+1)
1861 #    else
1862 #       define MAXPATHLEN 1024  /* Err on the large side. */
1863 #    endif
1864 #  endif
1865 #endif
1866
1867 /*
1868  * USE_5005THREADS needs to be after unixish.h as <pthread.h> includes
1869  * <sys/signal.h> which defines NSIG - which will stop inclusion of <signal.h>
1870  * this results in many functions being undeclared which bothers C++
1871  * May make sense to have threads after "*ish.h" anyway
1872  */
1873
1874 #if defined(USE_5005THREADS) || defined(USE_ITHREADS)
1875 #  if defined(USE_5005THREADS)
1876    /* pending resolution of licensing issues, we avoid the erstwhile
1877     * atomic.h everywhere */
1878 #  define EMULATE_ATOMIC_REFCOUNTS
1879 #  endif
1880 #  ifdef NETWARE
1881 #   include <nw5thread.h>
1882 #  else
1883 #  ifdef FAKE_THREADS
1884 #    include "fakethr.h"
1885 #  else
1886 #    ifdef WIN32
1887 #      include <win32thread.h>
1888 #    else
1889 #      ifdef OS2
1890 #        include "os2thread.h"
1891 #      else
1892 #        ifdef I_MACH_CTHREADS
1893 #          include <mach/cthreads.h>
1894 #          if (defined(NeXT) || defined(__NeXT__)) && defined(PERL_POLLUTE_MALLOC)
1895 #            define MUTEX_INIT_CALLS_MALLOC
1896 #          endif
1897 typedef cthread_t       perl_os_thread;
1898 typedef mutex_t         perl_mutex;
1899 typedef condition_t     perl_cond;
1900 typedef void *          perl_key;
1901 #        else /* Posix threads */
1902 #          ifdef I_PTHREAD
1903 #            include <pthread.h>
1904 #          endif
1905 typedef pthread_t       perl_os_thread;
1906 typedef pthread_mutex_t perl_mutex;
1907 typedef pthread_cond_t  perl_cond;
1908 typedef pthread_key_t   perl_key;
1909 #        endif /* I_MACH_CTHREADS */
1910 #      endif /* OS2 */
1911 #    endif /* WIN32 */
1912 #  endif /* FAKE_THREADS */
1913 #endif  /* NETWARE */
1914 #endif /* USE_5005THREADS || USE_ITHREADS */
1915
1916 #if defined(WIN32)
1917 #  include "win32.h"
1918 #endif
1919
1920 #ifdef NETWARE
1921 #  include "netware.h"
1922 #endif
1923
1924 #ifdef VMS
1925 #   define STATUS_NATIVE        PL_statusvalue_vms
1926 #   define STATUS_NATIVE_EXPORT \
1927         (((I32)PL_statusvalue_vms == -1 ? 44 : PL_statusvalue_vms) | (VMSISH_HUSHED ? 0x10000000 : 0))
1928 #   define STATUS_NATIVE_SET(n)                                         \
1929         STMT_START {                                                    \
1930             PL_statusvalue_vms = (n);                                   \
1931             if ((I32)PL_statusvalue_vms == -1)                          \
1932                 PL_statusvalue = -1;                                    \
1933             else if (PL_statusvalue_vms & STS$M_SUCCESS)                \
1934                 PL_statusvalue = 0;                                     \
1935             else if ((PL_statusvalue_vms & STS$M_SEVERITY) == 0)        \
1936                 PL_statusvalue = 1 << 8;                                \
1937             else                                                        \
1938                 PL_statusvalue = (PL_statusvalue_vms & STS$M_SEVERITY) << 8;    \
1939         } STMT_END
1940 #   define STATUS_POSIX PL_statusvalue
1941 #   ifdef VMSISH_STATUS
1942 #       define STATUS_CURRENT   (VMSISH_STATUS ? STATUS_NATIVE : STATUS_POSIX)
1943 #   else
1944 #       define STATUS_CURRENT   STATUS_POSIX
1945 #   endif
1946 #   define STATUS_POSIX_SET(n)                          \
1947         STMT_START {                                    \
1948             PL_statusvalue = (n);                               \
1949             if (PL_statusvalue != -1) {                 \
1950                 PL_statusvalue &= 0xFFFF;                       \
1951                 PL_statusvalue_vms = PL_statusvalue ? 44 : 1;   \
1952             }                                           \
1953             else PL_statusvalue_vms = -1;                       \
1954         } STMT_END
1955 #   define STATUS_ALL_SUCCESS   (PL_statusvalue = 0, PL_statusvalue_vms = 1)
1956 #   define STATUS_ALL_FAILURE   (PL_statusvalue = 1, PL_statusvalue_vms = 44)
1957 #else
1958 #   define STATUS_NATIVE        STATUS_POSIX
1959 #   define STATUS_NATIVE_EXPORT STATUS_POSIX
1960 #   define STATUS_NATIVE_SET    STATUS_POSIX_SET
1961 #   define STATUS_POSIX         PL_statusvalue
1962 #   define STATUS_POSIX_SET(n)          \
1963         STMT_START {                    \
1964             PL_statusvalue = (n);               \
1965             if (PL_statusvalue != -1)   \
1966                 PL_statusvalue &= 0xFFFF;       \
1967         } STMT_END
1968 #   define STATUS_CURRENT STATUS_POSIX
1969 #   define STATUS_ALL_SUCCESS   (PL_statusvalue = 0)
1970 #   define STATUS_ALL_FAILURE   (PL_statusvalue = 1)
1971 #endif
1972
1973 /* flags in PL_exit_flags for nature of exit() */
1974 #define PERL_EXIT_EXPECTED      0x01
1975 #define PERL_EXIT_DESTRUCT_END  0x02  /* Run END in perl_destruct */
1976
1977 #ifndef MEMBER_TO_FPTR
1978 #  define MEMBER_TO_FPTR(name)          name
1979 #endif
1980
1981 /* format to use for version numbers in file/directory names */
1982 /* XXX move to Configure? */
1983 #ifndef PERL_FS_VER_FMT
1984 #  define PERL_FS_VER_FMT       "%d.%d.%d"
1985 #endif
1986
1987 /* This defines a way to flush all output buffers.  This may be a
1988  * performance issue, so we allow people to disable it.  Also, if
1989  * we are using stdio, there are broken implementations of fflush(NULL)
1990  * out there, Solaris being the most prominent.
1991  */
1992 #ifndef PERL_FLUSHALL_FOR_CHILD
1993 # if defined(USE_PERLIO) || defined(FFLUSH_NULL) || defined(USE_SFIO)
1994 #  define PERL_FLUSHALL_FOR_CHILD       PerlIO_flush((PerlIO*)NULL)
1995 # else
1996 #  ifdef FFLUSH_ALL
1997 #   define PERL_FLUSHALL_FOR_CHILD      my_fflush_all()
1998 #  else
1999 #   define PERL_FLUSHALL_FOR_CHILD      NOOP
2000 #  endif
2001 # endif
2002 #endif
2003
2004 #ifndef PERL_WAIT_FOR_CHILDREN
2005 #  define PERL_WAIT_FOR_CHILDREN        NOOP
2006 #endif
2007
2008 /* the traditional thread-unsafe notion of "current interpreter". */
2009 #ifndef PERL_SET_INTERP
2010 #  define PERL_SET_INTERP(i)            (PL_curinterp = (PerlInterpreter*)(i))
2011 #endif
2012
2013 #ifndef PERL_GET_INTERP
2014 #  define PERL_GET_INTERP               (PL_curinterp)
2015 #endif
2016
2017 #if defined(PERL_IMPLICIT_CONTEXT) && !defined(PERL_GET_THX)
2018 #  ifdef USE_5005THREADS
2019 #    define PERL_GET_THX                ((struct perl_thread *)PERL_GET_CONTEXT)
2020 #  else
2021 #  ifdef MULTIPLICITY
2022 #    define PERL_GET_THX                ((PerlInterpreter *)PERL_GET_CONTEXT)
2023 #  endif
2024 #  endif
2025 #  define PERL_SET_THX(t)               PERL_SET_CONTEXT(t)
2026 #endif
2027
2028 #ifndef SVf
2029 #  ifdef CHECK_FORMAT
2030 #    define SVf "p"
2031 #  else
2032 #    define SVf "_"
2033 #  endif
2034 #endif
2035
2036 #ifndef UVf
2037 #  ifdef CHECK_FORMAT
2038 #    define UVf UVuf
2039 #  else
2040 #    define UVf "Vu"
2041 #  endif
2042 #endif
2043
2044 #ifndef VDf
2045 #  ifdef CHECK_FORMAT
2046 #    define VDf "p"
2047 #  else
2048 #    define VDf "vd"
2049 #  endif
2050 #endif
2051
2052 #ifndef Nullformat
2053 #  ifdef CHECK_FORMAT
2054 #    define Nullformat "%s",""
2055 #  else
2056 #    define Nullformat Nullch
2057 #  endif
2058 #endif
2059
2060 /* Some unistd.h's give a prototype for pause() even though
2061    HAS_PAUSE ends up undefined.  This causes the #define
2062    below to be rejected by the compiler.  Sigh.
2063 */
2064 #ifdef HAS_PAUSE
2065 #define Pause   pause
2066 #else
2067 #define Pause() sleep((32767<<16)+32767)
2068 #endif
2069
2070 #ifndef IOCPARM_LEN
2071 #   ifdef IOCPARM_MASK
2072         /* on BSDish systes we're safe */
2073 #       define IOCPARM_LEN(x)  (((x) >> 16) & IOCPARM_MASK)
2074 #   else
2075         /* otherwise guess at what's safe */
2076 #       define IOCPARM_LEN(x)   256
2077 #   endif
2078 #endif
2079
2080 #if defined(__CYGWIN__)
2081 /* USEMYBINMODE
2082  *   This symbol, if defined, indicates that the program should
2083  *   use the routine my_binmode(FILE *fp, char iotype, int mode) to insure
2084  *   that a file is in "binary" mode -- that is, that no translation
2085  *   of bytes occurs on read or write operations.
2086  */
2087 #  define USEMYBINMODE / **/
2088 #  define my_binmode(fp, iotype, mode) \
2089             (PerlLIO_setmode(PerlIO_fileno(fp), mode) != -1 ? TRUE : FALSE)
2090 #endif
2091
2092 #ifdef UNION_ANY_DEFINITION
2093 UNION_ANY_DEFINITION;
2094 #else
2095 union any {
2096     void*       any_ptr;
2097     I32         any_i32;
2098     IV          any_iv;
2099     long        any_long;
2100     void        (*any_dptr) (void*);
2101     void        (*any_dxptr) (pTHX_ void*);
2102 };
2103 #endif
2104
2105 #ifdef USE_5005THREADS
2106 #define ARGSproto struct perl_thread *thr
2107 #else
2108 #define ARGSproto
2109 #endif /* USE_5005THREADS */
2110
2111 typedef I32 (*filter_t) (pTHX_ int, SV *, int);
2112
2113 #define FILTER_READ(idx, sv, len)  filter_read(idx, sv, len)
2114 #define FILTER_DATA(idx)           (AvARRAY(PL_rsfp_filters)[idx])
2115 #define FILTER_ISREADER(idx)       (idx >= AvFILLp(PL_rsfp_filters))
2116
2117 #if !defined(OS2) && !defined(MACOS_TRADITIONAL)
2118 #  include "iperlsys.h"
2119 #endif
2120 #include "regexp.h"
2121 #include "sv.h"
2122 #include "util.h"
2123 #include "form.h"
2124 #include "gv.h"
2125 #include "cv.h"
2126 #include "opnames.h"
2127 #include "op.h"
2128 #include "cop.h"
2129 #include "av.h"
2130 #include "hv.h"
2131 #include "mg.h"
2132 #include "scope.h"
2133 #include "warnings.h"
2134 #include "utf8.h"
2135 #include "sharedsv.h"
2136
2137 /* Current curly descriptor */
2138 typedef struct curcur CURCUR;
2139 struct curcur {
2140     int         parenfloor;     /* how far back to strip paren data */
2141     int         cur;            /* how many instances of scan we've matched */
2142     int         min;            /* the minimal number of scans to match */
2143     int         max;            /* the maximal number of scans to match */
2144     int         minmod;         /* whether to work our way up or down */
2145     regnode *   scan;           /* the thing to match */
2146     regnode *   next;           /* what has to match after it */
2147     char *      lastloc;        /* where we started matching this scan */
2148     CURCUR *    oldcc;          /* current curly before we started this one */
2149 };
2150
2151 typedef struct _sublex_info SUBLEXINFO;
2152 struct _sublex_info {
2153     I32 super_state;    /* lexer state to save */
2154     I32 sub_inwhat;     /* "lex_inwhat" to use */
2155     OP *sub_op;         /* "lex_op" to use */
2156     char *super_bufptr; /* PL_bufptr that was */
2157     char *super_bufend; /* PL_bufend that was */
2158 };
2159
2160 typedef struct magic_state MGS; /* struct magic_state defined in mg.c */
2161
2162 struct scan_data_t;             /* Used in S_* functions in regcomp.c */
2163 struct regnode_charclass_class; /* Used in S_* functions in regcomp.c */
2164
2165 typedef I32 CHECKPOINT;
2166
2167 struct ptr_tbl_ent {
2168     struct ptr_tbl_ent*         next;
2169     void*                       oldval;
2170     void*                       newval;
2171 };
2172
2173 struct ptr_tbl {
2174     struct ptr_tbl_ent**        tbl_ary;
2175     UV                          tbl_max;
2176     UV                          tbl_items;
2177 };
2178
2179 #if defined(iAPX286) || defined(M_I286) || defined(I80286)
2180 #   define I286
2181 #endif
2182
2183 #if defined(htonl) && !defined(HAS_HTONL)
2184 #define HAS_HTONL
2185 #endif
2186 #if defined(htons) && !defined(HAS_HTONS)
2187 #define HAS_HTONS
2188 #endif
2189 #if defined(ntohl) && !defined(HAS_NTOHL)
2190 #define HAS_NTOHL
2191 #endif
2192 #if defined(ntohs) && !defined(HAS_NTOHS)
2193 #define HAS_NTOHS
2194 #endif
2195 #ifndef HAS_HTONL
2196 #if (BYTEORDER & 0xffff) != 0x4321
2197 #define HAS_HTONS
2198 #define HAS_HTONL
2199 #define HAS_NTOHS
2200 #define HAS_NTOHL
2201 #define MYSWAP
2202 #define htons my_swap
2203 #define htonl my_htonl
2204 #define ntohs my_swap
2205 #define ntohl my_ntohl
2206 #endif
2207 #else
2208 #if (BYTEORDER & 0xffff) == 0x4321
2209 #undef HAS_HTONS
2210 #undef HAS_HTONL
2211 #undef HAS_NTOHS
2212 #undef HAS_NTOHL
2213 #endif
2214 #endif
2215
2216 /*
2217  * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
2218  * -DWS
2219  */
2220 #if BYTEORDER != 0x1234
2221 # define HAS_VTOHL
2222 # define HAS_VTOHS
2223 # define HAS_HTOVL
2224 # define HAS_HTOVS
2225 # if BYTEORDER == 0x4321 || BYTEORDER == 0x87654321
2226 #  define vtohl(x)      ((((x)&0xFF)<<24)       \
2227                         +(((x)>>24)&0xFF)       \
2228                         +(((x)&0x0000FF00)<<8)  \
2229                         +(((x)&0x00FF0000)>>8)  )
2230 #  define vtohs(x)      ((((x)&0xFF)<<8) + (((x)>>8)&0xFF))
2231 #  define htovl(x)      vtohl(x)
2232 #  define htovs(x)      vtohs(x)
2233 # endif
2234         /* otherwise default to functions in util.c */
2235 #endif
2236
2237 /* *MAX Plus 1. A floating point value.
2238    Hopefully expressed in a way that dodgy floating point can't mess up.
2239    >> 2 rather than 1, so that value is safely less than I32_MAX after 1
2240    is added to it
2241    May find that some broken compiler will want the value cast to I32.
2242    [after the shift, as signed >> may not be as secure as unsigned >>]
2243 */
2244 #define I32_MAX_P1 (2.0 * (1 + (((U32)I32_MAX) >> 1)))
2245 #define U32_MAX_P1 (4.0 * (1 + ((U32_MAX) >> 2)))
2246 /* For compilers that can't correctly cast NVs over 0x7FFFFFFF (or
2247    0x7FFFFFFFFFFFFFFF) to an unsigned integer. In the future, sizeof(UV)
2248    may be greater than sizeof(IV), so don't assume that half max UV is max IV.
2249 */
2250 #define U32_MAX_P1_HALF (2.0 * (1 + ((U32_MAX) >> 2)))
2251
2252 #define UV_MAX_P1 (4.0 * (1 + ((UV_MAX) >> 2)))
2253 #define IV_MAX_P1 (2.0 * (1 + (((UV)IV_MAX) >> 1)))
2254 #define UV_MAX_P1_HALF (2.0 * (1 + ((UV_MAX) >> 2)))
2255
2256 /* This may look like unnecessary jumping through hoops, but converting
2257    out of range floating point values to integers *is* undefined behaviour,
2258    and it is starting to bite.
2259 */
2260 #ifndef CAST_INLINE
2261 #define I_32(what) (cast_i32((NV)(what)))
2262 #define U_32(what) (cast_ulong((NV)(what)))
2263 #define I_V(what) (cast_iv((NV)(what)))
2264 #define U_V(what) (cast_uv((NV)(what)))
2265 #else
2266 #define I_32(n) ((n) < I32_MAX_P1 ? ((n) < I32_MIN ? I32_MIN : (I32) (n)) \
2267                   : ((n) < U32_MAX_P1 ? (I32)(U32) (n) \
2268                      : ((n) > 0 ? (I32) U32_MAX : 0 /* NaN */)))
2269 #define U_32(n) ((n) < 0.0 ? ((n) < I32_MIN ? (UV) I32_MIN : (U32)(I32) (n)) \
2270                   : ((n) < U32_MAX_P1 ? (U32) (n) \
2271                      : ((n) > 0 ? U32_MAX : 0 /* NaN */)))
2272 #define I_V(n) ((n) < IV_MAX_P1 ? ((n) < IV_MIN ? IV_MIN : (IV) (n)) \
2273                   : ((n) < UV_MAX_P1 ? (IV)(UV) (n) \
2274                      : ((n) > 0 ? (IV)UV_MAX : 0 /* NaN */)))
2275 #define U_V(n) ((n) < 0.0 ? ((n) < IV_MIN ? (UV) IV_MIN : (UV)(IV) (n)) \
2276                   : ((n) < UV_MAX_P1 ? (UV) (n) \
2277                      : ((n) > 0 ? UV_MAX : 0 /* NaN */)))
2278 #endif
2279
2280 #define U_S(what) ((U16)U_32(what))
2281 #define U_I(what) ((unsigned int)U_32(what))
2282 #define U_L(what) U_32(what)
2283
2284 /* These do not care about the fractional part, only about the range. */
2285 #define NV_WITHIN_IV(nv) (I_V(nv) >= IV_MIN && I_V(nv) <= IV_MAX)
2286 #define NV_WITHIN_UV(nv) ((nv)>=0.0 && U_V(nv) >= UV_MIN && U_V(nv) <= UV_MAX)
2287
2288 /* Used with UV/IV arguments: */
2289                                         /* XXXX: need to speed it up */
2290 #define CLUMP_2UV(iv)   ((iv) < 0 ? 0 : (UV)(iv))
2291 #define CLUMP_2IV(uv)   ((uv) > (UV)IV_MAX ? IV_MAX : (IV)(uv))
2292
2293 #ifndef MAXSYSFD
2294 #   define MAXSYSFD 2
2295 #endif
2296
2297 #ifndef __cplusplus
2298 #ifndef UNDER_CE
2299 Uid_t getuid (void);
2300 Uid_t geteuid (void);
2301 Gid_t getgid (void);
2302 Gid_t getegid (void);
2303 #endif
2304 #endif
2305
2306 #ifndef Perl_debug_log
2307 #  define Perl_debug_log        PerlIO_stderr()
2308 #endif
2309
2310 #ifndef Perl_error_log
2311 #  define Perl_error_log        (PL_stderrgv                    \
2312                                  && GvIOp(PL_stderrgv)          \
2313                                  && IoOFP(GvIOp(PL_stderrgv))   \
2314                                  ? IoOFP(GvIOp(PL_stderrgv))    \
2315                                  : PerlIO_stderr())
2316 #endif
2317
2318
2319 #define DEBUG_p_FLAG            0x00000001 /*      1 */
2320 #define DEBUG_s_FLAG            0x00000002 /*      2 */
2321 #define DEBUG_l_FLAG            0x00000004 /*      4 */
2322 #define DEBUG_t_FLAG            0x00000008 /*      8 */
2323 #define DEBUG_o_FLAG            0x00000010 /*     16 */
2324 #define DEBUG_c_FLAG            0x00000020 /*     32 */
2325 #define DEBUG_P_FLAG            0x00000040 /*     64 */
2326 #define DEBUG_m_FLAG            0x00000080 /*    128 */
2327 #define DEBUG_f_FLAG            0x00000100 /*    256 */
2328 #define DEBUG_r_FLAG            0x00000200 /*    512 */
2329 #define DEBUG_x_FLAG            0x00000400 /*   1024 */
2330 #define DEBUG_u_FLAG            0x00000800 /*   2048 */
2331 #define DEBUG_L_FLAG            0x00001000 /*   4096 */
2332 #define DEBUG_H_FLAG            0x00002000 /*   8192 */
2333 #define DEBUG_X_FLAG            0x00004000 /*  16384 */
2334 #define DEBUG_D_FLAG            0x00008000 /*  32768 */
2335 #define DEBUG_S_FLAG            0x00010000 /*  65536 */
2336 #define DEBUG_T_FLAG            0x00020000 /* 131072 */
2337 #define DEBUG_R_FLAG            0x00040000 /* 262144 */
2338 #define DEBUG_MASK              0x0007FFFF /* mask of all the standard flags */
2339
2340 #define DEBUG_DB_RECURSE_FLAG   0x40000000
2341 #define DEBUG_TOP_FLAG          0x80000000 /* XXX what's this for ??? */
2342
2343
2344 #  define DEBUG_p_TEST_ (PL_debug & DEBUG_p_FLAG)
2345 #  define DEBUG_s_TEST_ (PL_debug & DEBUG_s_FLAG)
2346 #  define DEBUG_l_TEST_ (PL_debug & DEBUG_l_FLAG)
2347 #  define DEBUG_t_TEST_ (PL_debug & DEBUG_t_FLAG)
2348 #  define DEBUG_o_TEST_ (PL_debug & DEBUG_o_FLAG)
2349 #  define DEBUG_c_TEST_ (PL_debug & DEBUG_c_FLAG)
2350 #  define DEBUG_P_TEST_ (PL_debug & DEBUG_P_FLAG)
2351 #  define DEBUG_m_TEST_ (PL_debug & DEBUG_m_FLAG)
2352 #  define DEBUG_f_TEST_ (PL_debug & DEBUG_f_FLAG)
2353 #  define DEBUG_r_TEST_ (PL_debug & DEBUG_r_FLAG)
2354 #  define DEBUG_x_TEST_ (PL_debug & DEBUG_x_FLAG)
2355 #  define DEBUG_u_TEST_ (PL_debug & DEBUG_u_FLAG)
2356 #  define DEBUG_L_TEST_ (PL_debug & DEBUG_L_FLAG)
2357 #  define DEBUG_H_TEST_ (PL_debug & DEBUG_H_FLAG)
2358 #  define DEBUG_X_TEST_ (PL_debug & DEBUG_X_FLAG)
2359 #  define DEBUG_D_TEST_ (PL_debug & DEBUG_D_FLAG)
2360 #  define DEBUG_S_TEST_ (PL_debug & DEBUG_S_FLAG)
2361 #  define DEBUG_T_TEST_ (PL_debug & DEBUG_T_FLAG)
2362 #  define DEBUG_R_TEST_ (PL_debug & DEBUG_R_FLAG)
2363
2364 #ifdef DEBUGGING
2365
2366 #  undef  YYDEBUG
2367 #  define YYDEBUG 1
2368
2369 #  define DEBUG_p_TEST DEBUG_p_TEST_
2370 #  define DEBUG_s_TEST DEBUG_s_TEST_
2371 #  define DEBUG_l_TEST DEBUG_l_TEST_
2372 #  define DEBUG_t_TEST DEBUG_t_TEST_
2373 #  define DEBUG_o_TEST DEBUG_o_TEST_
2374 #  define DEBUG_c_TEST DEBUG_c_TEST_
2375 #  define DEBUG_P_TEST DEBUG_P_TEST_
2376 #  define DEBUG_m_TEST DEBUG_m_TEST_
2377 #  define DEBUG_f_TEST DEBUG_f_TEST_
2378 #  define DEBUG_r_TEST DEBUG_r_TEST_
2379 #  define DEBUG_x_TEST DEBUG_x_TEST_
2380 #  define DEBUG_u_TEST DEBUG_u_TEST_
2381 #  define DEBUG_L_TEST DEBUG_L_TEST_
2382 #  define DEBUG_H_TEST DEBUG_H_TEST_
2383 #  define DEBUG_X_TEST DEBUG_X_TEST_
2384 #  define DEBUG_D_TEST DEBUG_D_TEST_
2385 #  define DEBUG_S_TEST DEBUG_S_TEST_
2386 #  define DEBUG_T_TEST DEBUG_T_TEST_
2387 #  define DEBUG_R_TEST DEBUG_R_TEST_
2388
2389 #  define DEB(a)     a
2390 #  define DEBUG(a)   if (PL_debug)   a
2391 #  define DEBUG_p(a) if (DEBUG_p_TEST) a
2392 #  define DEBUG_s(a) if (DEBUG_s_TEST) a
2393 #  define DEBUG_l(a) if (DEBUG_l_TEST) a
2394 #  define DEBUG_t(a) if (DEBUG_t_TEST) a
2395 #  define DEBUG_o(a) if (DEBUG_o_TEST) a
2396 #  define DEBUG_c(a) if (DEBUG_c_TEST) a
2397 #  define DEBUG_P(a) if (DEBUG_P_TEST) a
2398
2399      /* Temporarily turn off memory debugging in case the a
2400       * does memory allocation, either directly or indirectly. */
2401 #  define DEBUG_m(a)  \
2402     STMT_START {                                                        \
2403         if (PERL_GET_INTERP) { dTHX; if (DEBUG_m_TEST) {PL_debug&=~DEBUG_m_FLAG; a; PL_debug|=DEBUG_m_FLAG;} } \
2404     } STMT_END
2405
2406 #  define DEBUG__(t, a) \
2407         STMT_START { \
2408                 if (t) STMT_START {a;} STMT_END; \
2409         } STMT_END
2410
2411 #  define DEBUG_f(a) DEBUG__(DEBUG_f_TEST, a)
2412 #  define DEBUG_r(a) DEBUG__(DEBUG_r_TEST, a)
2413 #  define DEBUG_x(a) DEBUG__(DEBUG_x_TEST, a)
2414 #  define DEBUG_u(a) DEBUG__(DEBUG_u_TEST, a)
2415 #  define DEBUG_L(a) DEBUG__(DEBUG_L_TEST, a)
2416 #  define DEBUG_H(a) DEBUG__(DEBUG_H_TEST, a)
2417 #  define DEBUG_X(a) DEBUG__(DEBUG_X_TEST, a)
2418 #  define DEBUG_D(a) DEBUG__(DEBUG_D_TEST, a)
2419
2420 #  ifdef USE_5005THREADS
2421 #    define DEBUG_S(a) DEBUG__(DEBUG_S_TEST, a)
2422 #  else
2423 #    define DEBUG_S(a)
2424 #  endif
2425
2426 #  define DEBUG_T(a) DEBUG__(DEBUG_T_TEST, a)
2427 #  define DEBUG_R(a) DEBUG__(DEBUG_R_TEST, a)
2428
2429 #else /* DEBUGGING */
2430
2431 #  define DEBUG_p_TEST (0)
2432 #  define DEBUG_s_TEST (0)
2433 #  define DEBUG_l_TEST (0)
2434 #  define DEBUG_t_TEST (0)
2435 #  define DEBUG_o_TEST (0)
2436 #  define DEBUG_c_TEST (0)
2437 #  define DEBUG_P_TEST (0)
2438 #  define DEBUG_m_TEST (0)
2439 #  define DEBUG_f_TEST (0)
2440 #  define DEBUG_r_TEST (0)
2441 #  define DEBUG_x_TEST (0)
2442 #  define DEBUG_u_TEST (0)
2443 #  define DEBUG_L_TEST (0)
2444 #  define DEBUG_H_TEST (0)
2445 #  define DEBUG_X_TEST (0)
2446 #  define DEBUG_D_TEST (0)
2447 #  define DEBUG_S_TEST (0)
2448 #  define DEBUG_T_TEST (0)
2449 #  define DEBUG_R_TEST (0)
2450
2451 #  define DEB(a)
2452 #  define DEBUG(a)
2453 #  define DEBUG_p(a)
2454 #  define DEBUG_s(a)
2455 #  define DEBUG_l(a)
2456 #  define DEBUG_t(a)
2457 #  define DEBUG_o(a)
2458 #  define DEBUG_c(a)
2459 #  define DEBUG_P(a)
2460 #  define DEBUG_m(a)
2461 #  define DEBUG_f(a)
2462 #  define DEBUG_r(a)
2463 #  define DEBUG_x(a)
2464 #  define DEBUG_u(a)
2465 #  define DEBUG_L(a)
2466 #  define DEBUG_H(a)
2467 #  define DEBUG_X(a)
2468 #  define DEBUG_D(a)
2469 #  define DEBUG_S(a)
2470 #  define DEBUG_T(a)
2471 #  define DEBUG_R(a)
2472 #endif /* DEBUGGING */
2473
2474
2475 /* These constants should be used in preference to raw characters
2476  * when using magic. Note that some perl guts still assume
2477  * certain character properties of these constants, namely that
2478  * isUPPER() and toLOWER() may do useful mappings.
2479  *
2480  * Update the magic_names table in dump.c when adding/amending these
2481  */
2482
2483 #define PERL_MAGIC_sv             '\0' /* Special scalar variable */
2484 #define PERL_MAGIC_overload       'A' /* %OVERLOAD hash */
2485 #define PERL_MAGIC_overload_elem  'a' /* %OVERLOAD hash element */
2486 #define PERL_MAGIC_overload_table 'c' /* Holds overload table (AMT) on stash */
2487 #define PERL_MAGIC_bm             'B' /* Boyer-Moore (fast string search) */
2488 #define PERL_MAGIC_regdata        'D' /* Regex match position data
2489                                         (@+ and @- vars) */
2490 #define PERL_MAGIC_regdatum       'd' /* Regex match position data element */
2491 #define PERL_MAGIC_env            'E' /* %ENV hash */
2492 #define PERL_MAGIC_envelem        'e' /* %ENV hash element */
2493 #define PERL_MAGIC_fm             'f' /* Formline ('compiled' format) */
2494 #define PERL_MAGIC_regex_global   'g' /* m//g target / study()ed string */
2495 #define PERL_MAGIC_isa            'I' /* @ISA array */
2496 #define PERL_MAGIC_isaelem        'i' /* @ISA array element */
2497 #define PERL_MAGIC_nkeys          'k' /* scalar(keys()) lvalue */
2498 #define PERL_MAGIC_dbfile         'L' /* Debugger %_<filename */
2499 #define PERL_MAGIC_dbline         'l' /* Debugger %_<filename element */
2500 #define PERL_MAGIC_mutex          'm' /* ??? */
2501 #define PERL_MAGIC_collxfrm       'o' /* Locale transformation */
2502 #define PERL_MAGIC_tied           'P' /* Tied array or hash */
2503 #define PERL_MAGIC_tiedelem       'p' /* Tied array or hash element */
2504 #define PERL_MAGIC_tiedscalar     'q' /* Tied scalar or handle */
2505 #define PERL_MAGIC_qr             'r' /* precompiled qr// regex */
2506 #define PERL_MAGIC_sig            'S' /* %SIG hash */
2507 #define PERL_MAGIC_sigelem        's' /* %SIG hash element */
2508 #define PERL_MAGIC_taint          't' /* Taintedness */
2509 #define PERL_MAGIC_uvar           'U' /* Available for use by extensions */
2510 #define PERL_MAGIC_vec            'v' /* vec() lvalue */
2511 #define PERL_MAGIC_substr         'x' /* substr() lvalue */
2512 #define PERL_MAGIC_defelem        'y' /* Shadow "foreach" iterator variable /
2513                                         smart parameter vivification */
2514 #define PERL_MAGIC_glob           '*' /* GV (typeglob) */
2515 #define PERL_MAGIC_arylen         '#' /* Array length ($#ary) */
2516 #define PERL_MAGIC_pos            '.' /* pos() lvalue */
2517 #define PERL_MAGIC_backref        '<' /* ??? */
2518 #define PERL_MAGIC_ext            '~' /* Available for use by extensions */
2519
2520
2521 #define YYMAXDEPTH 300
2522
2523 #ifndef assert  /* <assert.h> might have been included somehow */
2524 #define assert(what)    DEB( {                                          \
2525         if (!(what)) {                                                  \
2526             Perl_croak(aTHX_ "Assertion failed: file \"%s\", line %d",  \
2527                 __FILE__, __LINE__);                                    \
2528             PerlProc_exit(1);                                           \
2529         }})
2530 #endif
2531
2532 struct ufuncs {
2533     I32 (*uf_val)(pTHX_ IV, SV*);
2534     I32 (*uf_set)(pTHX_ IV, SV*);
2535     IV uf_index;
2536 };
2537
2538 /* In pre-5.7-Perls the PERL_MAGIC_uvar magic didn't get the thread context.
2539  * XS code wanting to be backward compatible can do something
2540  * like the following:
2541
2542 #ifndef PERL_MG_UFUNC
2543 #define PERL_MG_UFUNC(name,ix,sv) I32 name(IV ix, SV *sv)
2544 #endif
2545
2546 static PERL_MG_UFUNC(foo_get, index, val)
2547 {
2548     sv_setsv(val, ...);
2549     return TRUE;
2550 }
2551
2552 -- Doug MacEachern
2553
2554 */
2555
2556 #ifndef PERL_MG_UFUNC
2557 #define PERL_MG_UFUNC(name,ix,sv) I32 name(pTHX_ IV ix, SV *sv)
2558 #endif
2559
2560 /* Fix these up for __STDC__ */
2561 #ifndef DONT_DECLARE_STD
2562 char *mktemp (char*);
2563 #ifndef atof
2564 double atof (const char*);
2565 #endif
2566 #endif
2567
2568 #ifndef STANDARD_C
2569 /* All of these are in stdlib.h or time.h for ANSI C */
2570 Time_t time();
2571 struct tm *gmtime(), *localtime();
2572 #if defined(OEMVS) || defined(__OPEN_VM)
2573 char *(strchr)(), *(strrchr)();
2574 char *(strcpy)(), *(strcat)();
2575 #else
2576 char *strchr(), *strrchr();
2577 char *strcpy(), *strcat();
2578 #endif
2579 #endif /* ! STANDARD_C */
2580
2581
2582 #ifdef I_MATH
2583 #    include <math.h>
2584 #else
2585 START_EXTERN_C
2586             double exp (double);
2587             double log (double);
2588             double log10 (double);
2589             double sqrt (double);
2590             double frexp (double,int*);
2591             double ldexp (double,int);
2592             double modf (double,double*);
2593             double sin (double);
2594             double cos (double);
2595             double atan2 (double,double);
2596             double pow (double,double);
2597 END_EXTERN_C
2598 #endif
2599
2600 #if !defined(NV_INF) && defined(USE_LONG_DOUBLE) && defined(LDBL_INFINITY)
2601 #  define NV_INF LDBL_INFINITY
2602 #endif
2603 #if !defined(NV_INF) && defined(DBL_INFINITY)
2604 #  define NV_INF (NV)DBL_INFINITY
2605 #endif
2606 #if !defined(NV_INF) && defined(INFINITY)
2607 #  define NV_INF (NV)INFINITY
2608 #endif
2609 #if !defined(NV_INF) && defined(INF)
2610 #  define NV_INF (NV)INF
2611 #endif
2612 #if !defined(NV_INF) && defined(USE_LONG_DOUBLE) && defined(HUGE_VALL)
2613 #  define NV_INF (NV)HUGE_VALL
2614 #endif
2615 #if !defined(NV_INF) && defined(HUGE_VAL)
2616 #  define NV_INF (NV)HUGE_VAL
2617 #endif
2618
2619 #if !defined(NV_NAN) && defined(USE_LONG_DOUBLE)
2620 #   if !defined(NV_NAN) && defined(LDBL_NAN)
2621 #       define NV_NAN LDBL_NAN
2622 #   endif
2623 #   if !defined(NV_NAN) && defined(LDBL_QNAN)
2624 #       define NV_NAN LDBL_QNAN
2625 #   endif
2626 #   if !defined(NV_NAN) && defined(LDBL_SNAN)
2627 #       define NV_NAN LDBL_SNAN
2628 #   endif
2629 #endif
2630 #if !defined(NV_NAN) && defined(DBL_NAN)
2631 #  define NV_NAN (NV)DBL_NAN
2632 #endif
2633 #if !defined(NV_NAN) && defined(DBL_QNAN)
2634 #  define NV_NAN (NV)DBL_QNAN
2635 #endif
2636 #if !defined(NV_NAN) && defined(DBL_SNAN)
2637 #  define NV_NAN (NV)DBL_SNAN
2638 #endif
2639 #if !defined(NV_NAN) && defined(QNAN)
2640 #  define NV_NAN (NV)QNAN
2641 #endif
2642 #if !defined(NV_NAN) && defined(SNAN)
2643 #  define NV_NAN (NV)SNAN
2644 #endif
2645 #if !defined(NV_NAN) && defined(NAN)
2646 #  define NV_NAN (NV)NAN
2647 #endif
2648
2649 #ifndef __cplusplus
2650 #  if defined(NeXT) || defined(__NeXT__) /* or whatever catches all NeXTs */
2651 char *crypt ();       /* Maybe more hosts will need the unprototyped version */
2652 #  else
2653 #    if !defined(WIN32) && !defined(VMS)
2654 char *crypt (const char*, const char*);
2655 #    endif /* !WIN32 */
2656 #  endif /* !NeXT && !__NeXT__ */
2657 #  ifndef DONT_DECLARE_STD
2658 #    ifndef getenv
2659 char *getenv (const char*);
2660 #    endif /* !getenv */
2661 #    if !defined(HAS_LSEEK_PROTO) && !defined(EPOC) && !defined(__hpux)
2662 #      ifdef _FILE_OFFSET_BITS
2663 #        if _FILE_OFFSET_BITS == 64
2664 Off_t lseek (int,Off_t,int);
2665 #        endif
2666 #      endif
2667 #    endif
2668 #  endif /* !DONT_DECLARE_STD */
2669 char *getlogin (void);
2670 #endif /* !__cplusplus */
2671
2672 #ifdef UNLINK_ALL_VERSIONS /* Currently only makes sense for VMS */
2673 #define UNLINK unlnk
2674 I32 unlnk (char*);
2675 #else
2676 #define UNLINK PerlLIO_unlink
2677 #endif
2678
2679 /* some versions of glibc are missing the setresuid() proto */
2680 #if defined(HAS_SETRESUID) && !defined(HAS_SETRESUID_PROTO)
2681 int setresuid(uid_t ruid, uid_t euid, uid_t suid);
2682 #endif
2683 /* some versions of glibc are missing the setresgid() proto */
2684 #if defined(HAS_SETRESGID) && !defined(HAS_SETRESGID_PROTO)
2685 int setresgid(gid_t rgid, gid_t egid, gid_t sgid);
2686 #endif
2687
2688 #ifndef HAS_SETREUID
2689 #  ifdef HAS_SETRESUID
2690 #    define setreuid(r,e) setresuid(r,e,(Uid_t)-1)
2691 #    define HAS_SETREUID
2692 #  endif
2693 #endif
2694 #ifndef HAS_SETREGID
2695 #  ifdef HAS_SETRESGID
2696 #    define setregid(r,e) setresgid(r,e,(Gid_t)-1)
2697 #    define HAS_SETREGID
2698 #  endif
2699 #endif
2700
2701 /* Sighandler_t defined in iperlsys.h */
2702
2703 #ifdef HAS_SIGACTION
2704 typedef struct sigaction Sigsave_t;
2705 #else
2706 typedef Sighandler_t Sigsave_t;
2707 #endif
2708
2709 #define SCAN_DEF 0
2710 #define SCAN_TR 1
2711 #define SCAN_REPL 2
2712
2713 #ifdef DEBUGGING
2714 # ifndef register
2715 #  define register
2716 # endif
2717 # define PAD_SV(po) pad_sv(po)
2718 # define RUNOPS_DEFAULT Perl_runops_debug
2719 #else
2720 # define PAD_SV(po) PL_curpad[po]
2721 # define RUNOPS_DEFAULT Perl_runops_standard
2722 #endif
2723
2724 #ifdef MYMALLOC
2725 #  ifdef MUTEX_INIT_CALLS_MALLOC
2726 #    define MALLOC_INIT                                 \
2727         STMT_START {                                    \
2728                 PL_malloc_mutex = NULL;                 \
2729                 MUTEX_INIT(&PL_malloc_mutex);           \
2730         } STMT_END
2731 #    define MALLOC_TERM                                 \
2732         STMT_START {                                    \
2733                 perl_mutex tmp = PL_malloc_mutex;       \
2734                 PL_malloc_mutex = NULL;                 \
2735                 MUTEX_DESTROY(&tmp);                    \
2736         } STMT_END
2737 #  else
2738 #    define MALLOC_INIT MUTEX_INIT(&PL_malloc_mutex)
2739 #    define MALLOC_TERM MUTEX_DESTROY(&PL_malloc_mutex)
2740 #  endif
2741 #else
2742 #  define MALLOC_INIT
2743 #  define MALLOC_TERM
2744 #endif
2745
2746
2747 typedef int (CPERLscope(*runops_proc_t)) (pTHX);
2748 typedef OP* (CPERLscope(*PPADDR_t)[]) (pTHX);
2749
2750 /* _ (for $_) must be first in the following list (DEFSV requires it) */
2751 #define THREADSV_NAMES "_123456789&`'+/.,\\\";^-%=|~:\001\005!@"
2752
2753 /* NeXT has problems with crt0.o globals */
2754 #if defined(__DYNAMIC__) && \
2755     (defined(NeXT) || defined(__NeXT__) || defined(__APPLE__))
2756 #  if defined(NeXT) || defined(__NeXT)
2757 #    include <mach-o/dyld.h>
2758 #    define environ (*environ_pointer)
2759 EXT char *** environ_pointer;
2760 #  else
2761 #    if defined(__APPLE__) && defined(PERL_CORE)
2762 #      include <crt_externs.h>  /* for the env array */
2763 #      define environ (*_NSGetEnviron())
2764 #    endif
2765 #  endif
2766 #else
2767    /* VMS and some other platforms don't use the environ array */
2768 #  ifdef USE_ENVIRON_ARRAY
2769 #    if !defined(DONT_DECLARE_STD) || \
2770         (defined(__svr4__) && defined(__GNUC__) && defined(sun)) || \
2771         defined(__sgi) || \
2772         defined(__DGUX)
2773 extern char **  environ;        /* environment variables supplied via exec */
2774 #    endif
2775 #  endif
2776 #endif
2777
2778 START_EXTERN_C
2779
2780 /* handy constants */
2781 EXTCONST char PL_warn_uninit[]
2782   INIT("Use of uninitialized value%s%s");
2783 EXTCONST char PL_warn_nosemi[]
2784   INIT("Semicolon seems to be missing");
2785 EXTCONST char PL_warn_reserved[]
2786   INIT("Unquoted string \"%s\" may clash with future reserved word");
2787 EXTCONST char PL_warn_nl[]
2788   INIT("Unsuccessful %s on filename containing newline");
2789 EXTCONST char PL_no_wrongref[]
2790   INIT("Can't use %s ref as %s ref");
2791 EXTCONST char PL_no_symref[]
2792   INIT("Can't use string (\"%.32s\") as %s ref while \"strict refs\" in use");
2793 EXTCONST char PL_no_usym[]
2794   INIT("Can't use an undefined value as %s reference");
2795 EXTCONST char PL_no_aelem[]
2796   INIT("Modification of non-creatable array value attempted, subscript %d");
2797 EXTCONST char PL_no_helem[]
2798   INIT("Modification of non-creatable hash value attempted, subscript \"%s\"");
2799 EXTCONST char PL_no_modify[]
2800   INIT("Modification of a read-only value attempted");
2801 EXTCONST char PL_no_mem[]
2802   INIT("Out of memory!\n");
2803 EXTCONST char PL_no_security[]
2804   INIT("Insecure dependency in %s%s");
2805 EXTCONST char PL_no_sock_func[]
2806   INIT("Unsupported socket function \"%s\" called");
2807 EXTCONST char PL_no_dir_func[]
2808   INIT("Unsupported directory function \"%s\" called");
2809 EXTCONST char PL_no_func[]
2810   INIT("The %s function is unimplemented");
2811 EXTCONST char PL_no_myglob[]
2812   INIT("\"my\" variable %s can't be in a package");
2813
2814 EXTCONST char PL_uuemap[65]
2815   INIT("`!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_");
2816
2817
2818 #ifdef DOINIT
2819 EXT char *PL_sig_name[] = { SIG_NAME };
2820 EXT int   PL_sig_num[]  = { SIG_NUM };
2821 #else
2822 EXT char *PL_sig_name[];
2823 EXT int   PL_sig_num[];
2824 #endif
2825
2826 /* fast conversion and case folding tables */
2827
2828 #ifdef DOINIT
2829 #ifdef EBCDIC
2830 EXT unsigned char PL_fold[] = { /* fast EBCDIC case folding table */
2831     0,      1,      2,      3,      4,      5,      6,      7,
2832     8,      9,      10,     11,     12,     13,     14,     15,
2833     16,     17,     18,     19,     20,     21,     22,     23,
2834     24,     25,     26,     27,     28,     29,     30,     31,
2835     32,     33,     34,     35,     36,     37,     38,     39,
2836     40,     41,     42,     43,     44,     45,     46,     47,
2837     48,     49,     50,     51,     52,     53,     54,     55,
2838     56,     57,     58,     59,     60,     61,     62,     63,
2839     64,     65,     66,     67,     68,     69,     70,     71,
2840     72,     73,     74,     75,     76,     77,     78,     79,
2841     80,     81,     82,     83,     84,     85,     86,     87,
2842     88,     89,     90,     91,     92,     93,     94,     95,
2843     96,     97,     98,     99,     100,    101,    102,    103,
2844     104,    105,    106,    107,    108,    109,    110,    111,
2845     112,    113,    114,    115,    116,    117,    118,    119,
2846     120,    121,    122,    123,    124,    125,    126,    127,
2847     128,    'A',    'B',    'C',    'D',    'E',    'F',    'G',
2848     'H',    'I',    138,    139,    140,    141,    142,    143,
2849     144,    'J',    'K',    'L',    'M',    'N',    'O',    'P',
2850     'Q',    'R',    154,    155,    156,    157,    158,    159,
2851     160,    161,    'S',    'T',    'U',    'V',    'W',    'X',
2852     'Y',    'Z',    170,    171,    172,    173,    174,    175,
2853     176,    177,    178,    179,    180,    181,    182,    183,
2854     184,    185,    186,    187,    188,    189,    190,    191,
2855     192,    'a',    'b',    'c',    'd',    'e',    'f',    'g',
2856     'h',    'i',    202,    203,    204,    205,    206,    207,
2857     208,    'j',    'k',    'l',    'm',    'n',    'o',    'p',
2858     'q',    'r',    218,    219,    220,    221,    222,    223,
2859     224,    225,    's',    't',    'u',    'v',    'w',    'x',
2860     'y',    'z',    234,    235,    236,    237,    238,    239,
2861     240,    241,    242,    243,    244,    245,    246,    247,
2862     248,    249,    250,    251,    252,    253,    254,    255
2863 };
2864 #else   /* ascii rather than ebcdic */
2865 EXTCONST  unsigned char PL_fold[] = {
2866         0,      1,      2,      3,      4,      5,      6,      7,
2867         8,      9,      10,     11,     12,     13,     14,     15,
2868         16,     17,     18,     19,     20,     21,     22,     23,
2869         24,     25,     26,     27,     28,     29,     30,     31,
2870         32,     33,     34,     35,     36,     37,     38,     39,
2871         40,     41,     42,     43,     44,     45,     46,     47,
2872         48,     49,     50,     51,     52,     53,     54,     55,
2873         56,     57,     58,     59,     60,     61,     62,     63,
2874         64,     'a',    'b',    'c',    'd',    'e',    'f',    'g',
2875         'h',    'i',    'j',    'k',    'l',    'm',    'n',    'o',
2876         'p',    'q',    'r',    's',    't',    'u',    'v',    'w',
2877         'x',    'y',    'z',    91,     92,     93,     94,     95,
2878         96,     'A',    'B',    'C',    'D',    'E',    'F',    'G',
2879         'H',    'I',    'J',    'K',    'L',    'M',    'N',    'O',
2880         'P',    'Q',    'R',    'S',    'T',    'U',    'V',    'W',
2881         'X',    'Y',    'Z',    123,    124,    125,    126,    127,
2882         128,    129,    130,    131,    132,    133,    134,    135,
2883         136,    137,    138,    139,    140,    141,    142,    143,
2884         144,    145,    146,    147,    148,    149,    150,    151,
2885         152,    153,    154,    155,    156,    157,    158,    159,
2886         160,    161,    162,    163,    164,    165,    166,    167,
2887         168,    169,    170,    171,    172,    173,    174,    175,
2888         176,    177,    178,    179,    180,    181,    182,    183,
2889         184,    185,    186,    187,    188,    189,    190,    191,
2890         192,    193,    194,    195,    196,    197,    198,    199,
2891         200,    201,    202,    203,    204,    205,    206,    207,
2892         208,    209,    210,    211,    212,    213,    214,    215,
2893         216,    217,    218,    219,    220,    221,    222,    223,    
2894         224,    225,    226,    227,    228,    229,    230,    231,
2895         232,    233,    234,    235,    236,    237,    238,    239,
2896         240,    241,    242,    243,    244,    245,    246,    247,
2897         248,    249,    250,    251,    252,    253,    254,    255
2898 };
2899 #endif  /* !EBCDIC */
2900 #else
2901 EXTCONST unsigned char PL_fold[];
2902 #endif
2903
2904 #ifdef DOINIT
2905 EXT unsigned char PL_fold_locale[] = {
2906         0,      1,      2,      3,      4,      5,      6,      7,
2907         8,      9,      10,     11,     12,     13,     14,     15,
2908         16,     17,     18,     19,     20,     21,     22,     23,
2909         24,     25,     26,     27,     28,     29,     30,     31,
2910         32,     33,     34,     35,     36,     37,     38,     39,
2911         40,     41,     42,     43,     44,     45,     46,     47,
2912         48,     49,     50,     51,     52,     53,     54,     55,
2913         56,     57,     58,     59,     60,     61,     62,     63,
2914         64,     'a',    'b',    'c',    'd',    'e',    'f',    'g',
2915         'h',    'i',    'j',    'k',    'l',    'm',    'n',    'o',
2916         'p',    'q',    'r',    's',    't',    'u',    'v',    'w',
2917         'x',    'y',    'z',    91,     92,     93,     94,     95,
2918         96,     'A',    'B',    'C',    'D',    'E',    'F',    'G',
2919         'H',    'I',    'J',    'K',    'L',    'M',    'N',    'O',
2920         'P',    'Q',    'R',    'S',    'T',    'U',    'V',    'W',
2921         'X',    'Y',    'Z',    123,    124,    125,    126,    127,
2922         128,    129,    130,    131,    132,    133,    134,    135,
2923         136,    137,    138,    139,    140,    141,    142,    143,
2924         144,    145,    146,    147,    148,    149,    150,    151,
2925         152,    153,    154,    155,    156,    157,    158,    159,
2926         160,    161,    162,    163,    164,    165,    166,    167,
2927         168,    169,    170,    171,    172,    173,    174,    175,
2928         176,    177,    178,    179,    180,    181,    182,    183,
2929         184,    185,    186,    187,    188,    189,    190,    191,
2930         192,    193,    194,    195,    196,    197,    198,    199,
2931         200,    201,    202,    203,    204,    205,    206,    207,
2932         208,    209,    210,    211,    212,    213,    214,    215,
2933         216,    217,    218,    219,    220,    221,    222,    223,    
2934         224,    225,    226,    227,    228,    229,    230,    231,
2935         232,    233,    234,    235,    236,    237,    238,    239,
2936         240,    241,    242,    243,    244,    245,    246,    247,
2937         248,    249,    250,    251,    252,    253,    254,    255
2938 };
2939 #else
2940 EXT unsigned char PL_fold_locale[];
2941 #endif
2942
2943 #ifdef DOINIT
2944 #ifdef EBCDIC
2945 EXT unsigned char PL_freq[] = {/* EBCDIC frequencies for mixed English/C */
2946     1,      2,      84,     151,    154,    155,    156,    157,
2947     165,    246,    250,    3,      158,    7,      18,     29,
2948     40,     51,     62,     73,     85,     96,     107,    118,
2949     129,    140,    147,    148,    149,    150,    152,    153,
2950     255,      6,      8,      9,     10,     11,     12,     13,
2951      14,     15,     24,     25,     26,     27,     28,    226,
2952      29,     30,     31,     32,     33,     43,     44,     45,
2953      46,     47,     48,     49,     50,     76,     77,     78,
2954      79,     80,     81,     82,     83,     84,     85,     86,
2955      87,     94,     95,    234,    181,    233,    187,    190,
2956     180,     96,     97,     98,     99,    100,    101,    102,
2957     104,    112,    182,    174,    236,    232,    229,    103,
2958     228,    226,    114,    115,    116,    117,    118,    119,
2959     120,    121,    122,    235,    176,    230,    194,    162,
2960     130,    131,    132,    133,    134,    135,    136,    137,
2961     138,    139,    201,    205,    163,    217,    220,    224,
2962     5,      248,    227,    244,    242,    255,    241,    231,
2963     240,    253,    16,     197,    19,     20,     21,     187,
2964     23,     169,    210,    245,    237,    249,    247,    239,
2965     168,    252,    34,     196,    36,     37,     38,     39,
2966     41,     42,     251,    254,    238,    223,    221,    213,
2967     225,    177,    52,     53,     54,     55,     56,     57,
2968     58,     59,     60,     61,     63,     64,     65,     66,
2969     67,     68,     69,     70,     71,     72,     74,     75,
2970     205,    208,    186,    202,    200,    218,    198,    179,
2971     178,    214,    88,     89,     90,     91,     92,     93,
2972     217,    166,    170,    207,    199,    209,    206,    204,
2973     160,    212,    105,    106,    108,    109,    110,    111,
2974     203,    113,    216,    215,    192,    175,    193,    243,
2975     172,    161,    123,    124,    125,    126,    127,    128,
2976     222,    219,    211,    195,    188,    193,    185,    184,
2977     191,    183,    141,    142,    143,    144,    145,    146
2978 };
2979 #else  /* ascii rather than ebcdic */
2980 EXTCONST unsigned char PL_freq[] = {    /* letter frequencies for mixed English/C */
2981         1,      2,      84,     151,    154,    155,    156,    157,
2982         165,    246,    250,    3,      158,    7,      18,     29,
2983         40,     51,     62,     73,     85,     96,     107,    118,
2984         129,    140,    147,    148,    149,    150,    152,    153,
2985         255,    182,    224,    205,    174,    176,    180,    217,
2986         233,    232,    236,    187,    235,    228,    234,    226,
2987         222,    219,    211,    195,    188,    193,    185,    184,
2988         191,    183,    201,    229,    181,    220,    194,    162,
2989         163,    208,    186,    202,    200,    218,    198,    179,
2990         178,    214,    166,    170,    207,    199,    209,    206,
2991         204,    160,    212,    216,    215,    192,    175,    173,
2992         243,    172,    161,    190,    203,    189,    164,    230,
2993         167,    248,    227,    244,    242,    255,    241,    231,
2994         240,    253,    169,    210,    245,    237,    249,    247,
2995         239,    168,    252,    251,    254,    238,    223,    221,
2996         213,    225,    177,    197,    171,    196,    159,    4,
2997         5,      6,      8,      9,      10,     11,     12,     13,
2998         14,     15,     16,     17,     19,     20,     21,     22,
2999         23,     24,     25,     26,     27,     28,     30,     31,
3000         32,     33,     34,     35,     36,     37,     38,     39,
3001         41,     42,     43,     44,     45,     46,     47,     48,
3002         49,     50,     52,     53,     54,     55,     56,     57,
3003         58,     59,     60,     61,     63,     64,     65,     66,
3004         67,     68,     69,     70,     71,     72,     74,     75,
3005         76,     77,     78,     79,     80,     81,     82,     83,
3006         86,     87,     88,     89,     90,     91,     92,     93,
3007         94,     95,     97,     98,     99,     100,    101,    102,
3008         103,    104,    105,    106,    108,    109,    110,    111,
3009         112,    113,    114,    115,    116,    117,    119,    120,
3010         121,    122,    123,    124,    125,    126,    127,    128,
3011         130,    131,    132,    133,    134,    135,    136,    137,
3012         138,    139,    141,    142,    143,    144,    145,    146
3013 };
3014 #endif
3015 #else
3016 EXTCONST unsigned char PL_freq[];
3017 #endif
3018
3019 #ifdef DEBUGGING
3020 #ifdef DOINIT
3021 EXTCONST char* PL_block_type[] = {
3022         "NULL",
3023         "SUB",
3024         "EVAL",
3025         "LOOP",
3026         "SUBST",
3027         "BLOCK",
3028 };
3029 #else
3030 EXTCONST char* PL_block_type[];
3031 #endif
3032 #endif
3033
3034 END_EXTERN_C
3035
3036 /*****************************************************************************/
3037 /* This lexer/parser stuff is currently global since yacc is hard to reenter */
3038 /*****************************************************************************/
3039 /* XXX This needs to be revisited, since BEGIN makes yacc re-enter... */
3040
3041 #include "perly.h"
3042
3043 #define LEX_NOTPARSING          11      /* borrowed from toke.c */
3044
3045 typedef enum {
3046     XOPERATOR,
3047     XTERM,
3048     XREF,
3049     XSTATE,
3050     XBLOCK,
3051     XATTRBLOCK,
3052     XATTRTERM,
3053     XTERMBLOCK
3054 } expectation;
3055
3056 enum {          /* pass one of these to get_vtbl */
3057     want_vtbl_sv,
3058     want_vtbl_env,
3059     want_vtbl_envelem,
3060     want_vtbl_sig,
3061     want_vtbl_sigelem,
3062     want_vtbl_pack,
3063     want_vtbl_packelem,
3064     want_vtbl_dbline,
3065     want_vtbl_isa,
3066     want_vtbl_isaelem,
3067     want_vtbl_arylen,
3068     want_vtbl_glob,
3069     want_vtbl_mglob,
3070     want_vtbl_nkeys,
3071     want_vtbl_taint,
3072     want_vtbl_substr,
3073     want_vtbl_vec,
3074     want_vtbl_pos,
3075     want_vtbl_bm,
3076     want_vtbl_fm,
3077     want_vtbl_uvar,
3078     want_vtbl_defelem,
3079     want_vtbl_regexp,
3080     want_vtbl_collxfrm,
3081     want_vtbl_amagic,
3082     want_vtbl_amagicelem,
3083 #ifdef USE_5005THREADS
3084     want_vtbl_mutex,
3085 #endif
3086     want_vtbl_regdata,
3087     want_vtbl_regdatum,
3088     want_vtbl_backref
3089 };
3090
3091                                 /* Note: the lowest 8 bits are reserved for
3092                                    stuffing into op->op_private */
3093 #define HINT_PRIVATE_MASK       0x000000ff
3094 #define HINT_INTEGER            0x00000001
3095 #define HINT_STRICT_REFS        0x00000002
3096 #define HINT_LOCALE             0x00000004
3097 #define HINT_BYTES              0x00000008
3098 /* #define HINT_notused10       0x00000010 */
3099                                 /* Note: 20,40,80 used for NATIVE_HINTS */
3100
3101 #define HINT_BLOCK_SCOPE        0x00000100
3102 #define HINT_STRICT_SUBS        0x00000200
3103 #define HINT_STRICT_VARS        0x00000400
3104
3105 #define HINT_NEW_INTEGER        0x00001000
3106 #define HINT_NEW_FLOAT          0x00002000
3107 #define HINT_NEW_BINARY         0x00004000
3108 #define HINT_NEW_STRING         0x00008000
3109 #define HINT_NEW_RE             0x00010000
3110 #define HINT_LOCALIZE_HH        0x00020000 /* %^H needs to be copied */
3111
3112 #define HINT_RE_TAINT           0x00100000
3113 #define HINT_RE_EVAL            0x00200000
3114
3115 #define HINT_FILETEST_ACCESS    0x00400000
3116 #define HINT_UTF8               0x00800000
3117
3118 #define HINT_SORT_SORT_BITS     0x000000FF /* allow 256 different ones */
3119 #define HINT_SORT_QUICKSORT     0x00000001
3120 #define HINT_SORT_MERGESORT     0x00000002
3121 #define HINT_SORT_STABLE        0x00000100 /* sort styles (currently one) */
3122
3123 /* Various states of the input record separator SV (rs) */
3124 #define RsSNARF(sv)   (! SvOK(sv))
3125 #define RsSIMPLE(sv)  (SvOK(sv) && (! SvPOK(sv) || SvCUR(sv)))
3126 #define RsPARA(sv)    (SvPOK(sv) && ! SvCUR(sv))
3127 #define RsRECORD(sv)  (SvROK(sv) && (SvIV(SvRV(sv)) > 0))
3128
3129 /* A struct for keeping various DEBUGGING related stuff,
3130  * neatly packed.  Currently only scratch variables for
3131  * constructing debug output are included.  Needed always,
3132  * not just when DEBUGGING, though, because of the re extension. c*/
3133 struct perl_debug_pad {
3134   SV pad[3];
3135 };
3136
3137 #define PERL_DEBUG_PAD(i)       &(PL_debug_pad.pad[i])
3138 #define PERL_DEBUG_PAD_ZERO(i)  (sv_setpvn(PERL_DEBUG_PAD(i), "", 0), PERL_DEBUG_PAD(i))
3139
3140 /* Enable variables which are pointers to functions */
3141 typedef void (CPERLscope(*peep_t))(pTHX_ OP* o);
3142 typedef regexp*(CPERLscope(*regcomp_t)) (pTHX_ char* exp, char* xend, PMOP* pm);
3143 typedef I32 (CPERLscope(*regexec_t)) (pTHX_ regexp* prog, char* stringarg,
3144                                       char* strend, char* strbeg, I32 minend,
3145                                       SV* screamer, void* data, U32 flags);
3146 typedef char* (CPERLscope(*re_intuit_start_t)) (pTHX_ regexp *prog, SV *sv,
3147                                                 char *strpos, char *strend,
3148                                                 U32 flags,
3149                                                 struct re_scream_pos_data_s *d);
3150 typedef SV*     (CPERLscope(*re_intuit_string_t)) (pTHX_ regexp *prog);
3151 typedef void    (CPERLscope(*regfree_t)) (pTHX_ struct regexp* r);
3152
3153 typedef void (*DESTRUCTORFUNC_NOCONTEXT_t) (void*);
3154 typedef void (*DESTRUCTORFUNC_t) (pTHX_ void*);
3155 typedef void (*SVFUNC_t) (pTHX_ SV*);
3156 typedef I32  (*SVCOMPARE_t) (pTHX_ SV*, SV*);
3157 typedef void (*XSINIT_t) (pTHX);
3158 typedef void (*ATEXIT_t) (pTHX_ void*);
3159 typedef void (*XSUBADDR_t) (pTHX_ CV *);
3160
3161 /* Set up PERLVAR macros for populating structs */
3162 #define PERLVAR(var,type) type var;
3163 #define PERLVARA(var,n,type) type var[n];
3164 #define PERLVARI(var,type,init) type var;
3165 #define PERLVARIC(var,type,init) type var;
3166
3167 /* Interpreter exitlist entry */
3168 typedef struct exitlistentry {
3169     void (*fn) (pTHX_ void*);
3170     void *ptr;
3171 } PerlExitListEntry;
3172
3173 #ifdef PERL_GLOBAL_STRUCT
3174 struct perl_vars {
3175 #  include "perlvars.h"
3176 };
3177
3178 #  ifdef PERL_CORE
3179 EXT struct perl_vars PL_Vars;
3180 EXT struct perl_vars *PL_VarsPtr INIT(&PL_Vars);
3181 #  else /* PERL_CORE */
3182 #    if !defined(__GNUC__) || !defined(WIN32)
3183 EXT
3184 #    endif /* WIN32 */
3185 struct perl_vars *PL_VarsPtr;
3186 #    define PL_Vars (*((PL_VarsPtr) \
3187                        ? PL_VarsPtr : (PL_VarsPtr = Perl_GetVars(aTHX))))
3188 #  endif /* PERL_CORE */
3189 #endif /* PERL_GLOBAL_STRUCT */
3190
3191 #if defined(MULTIPLICITY)
3192 /* If we have multiple interpreters define a struct
3193    holding variables which must be per-interpreter
3194    If we don't have threads anything that would have
3195    be per-thread is per-interpreter.
3196 */
3197
3198 struct interpreter {
3199 #  ifndef USE_5005THREADS
3200 #    include "thrdvar.h"
3201 #  endif
3202 #  include "intrpvar.h"
3203 /*
3204  * The following is a buffer where new variables must
3205  * be defined to maintain binary compatibility with previous versions
3206  */
3207 PERLVARA(object_compatibility,30,       char)
3208 };
3209
3210 #else
3211 struct interpreter {
3212     char broiled;
3213 };
3214 #endif /* MULTIPLICITY */
3215
3216 #ifdef USE_5005THREADS
3217 /* If we have threads define a struct with all the variables
3218  * that have to be per-thread
3219  */
3220
3221
3222 struct perl_thread {
3223 #include "thrdvar.h"
3224 };
3225
3226 typedef struct perl_thread *Thread;
3227
3228 #else
3229 typedef void *Thread;
3230 #endif
3231
3232 /* Done with PERLVAR macros for now ... */
3233 #undef PERLVAR
3234 #undef PERLVARA
3235 #undef PERLVARI
3236 #undef PERLVARIC
3237
3238 #include "thread.h"
3239 #include "pp.h"
3240
3241 #ifndef PERL_CALLCONV
3242 #  define PERL_CALLCONV
3243 #endif
3244
3245 #ifndef NEXT30_NO_ATTRIBUTE
3246 #  ifndef HASATTRIBUTE       /* disable GNU-cc attribute checking? */
3247 #    ifdef  __attribute__      /* Avoid possible redefinition errors */
3248 #      undef  __attribute__
3249 #    endif
3250 #    define __attribute__(attr)
3251 #  endif
3252 #endif
3253
3254 #undef PERL_CKDEF
3255 #undef PERL_PPDEF
3256 #define PERL_CKDEF(s)   OP *s (pTHX_ OP *o);
3257 #define PERL_PPDEF(s)   OP *s (pTHX);
3258
3259 #include "proto.h"
3260
3261 /* this has structure inits, so it cannot be included before here */
3262 #include "opcode.h"
3263
3264 /* The following must follow proto.h as #defines mess up syntax */
3265
3266 #if !defined(PERL_FOR_X2P)
3267 #  include "embedvar.h"
3268 #endif
3269
3270 /* Now include all the 'global' variables
3271  * If we don't have threads or multiple interpreters
3272  * these include variables that would have been their struct-s
3273  */
3274
3275 #define PERLVAR(var,type) EXT type PL_##var;
3276 #define PERLVARA(var,n,type) EXT type PL_##var[n];
3277 #define PERLVARI(var,type,init) EXT type  PL_##var INIT(init);
3278 #define PERLVARIC(var,type,init) EXTCONST type PL_##var INIT(init);
3279
3280 #if !defined(MULTIPLICITY)
3281 START_EXTERN_C
3282 #  include "intrpvar.h"
3283 #  ifndef USE_5005THREADS
3284 #    include "thrdvar.h"
3285 #  endif
3286 END_EXTERN_C
3287 #endif
3288
3289 #if defined(WIN32)
3290 /* Now all the config stuff is setup we can include embed.h */
3291 #  include "embed.h"
3292 #endif
3293
3294 #ifndef PERL_GLOBAL_STRUCT
3295 START_EXTERN_C
3296
3297 #  include "perlvars.h"
3298
3299 END_EXTERN_C
3300 #endif
3301
3302 #undef PERLVAR
3303 #undef PERLVARA
3304 #undef PERLVARI
3305 #undef PERLVARIC
3306
3307 START_EXTERN_C
3308
3309 #ifdef DOINIT
3310
3311 EXT MGVTBL PL_vtbl_sv = {MEMBER_TO_FPTR(Perl_magic_get),
3312                                 MEMBER_TO_FPTR(Perl_magic_set),
3313                                         MEMBER_TO_FPTR(Perl_magic_len),
3314                                                 0,      0};
3315 EXT MGVTBL PL_vtbl_env =        {0,     MEMBER_TO_FPTR(Perl_magic_set_all_env),
3316                                 0,      MEMBER_TO_FPTR(Perl_magic_clear_all_env),
3317                                                         0};
3318 EXT MGVTBL PL_vtbl_envelem =    {0,     MEMBER_TO_FPTR(Perl_magic_setenv),
3319                                         0,      MEMBER_TO_FPTR(Perl_magic_clearenv),
3320                                                         0};
3321 EXT MGVTBL PL_vtbl_sig =        {0,     0,               0, 0, 0};
3322 #ifdef PERL_MICRO
3323 EXT MGVTBL PL_vtbl_sigelem =    {0,     0,               0, 0, 0};
3324 #else
3325 EXT MGVTBL PL_vtbl_sigelem =    {MEMBER_TO_FPTR(Perl_magic_getsig),
3326                                         MEMBER_TO_FPTR(Perl_magic_setsig),
3327                                         0,      MEMBER_TO_FPTR(Perl_magic_clearsig),
3328                                                         0};
3329 #endif
3330 EXT MGVTBL PL_vtbl_pack =       {0,     0,      MEMBER_TO_FPTR(Perl_magic_sizepack),    MEMBER_TO_FPTR(Perl_magic_wipepack),
3331                                                         0};
3332 EXT MGVTBL PL_vtbl_packelem =   {MEMBER_TO_FPTR(Perl_magic_getpack),
3333                                 MEMBER_TO_FPTR(Perl_magic_setpack),
3334                                         0,      MEMBER_TO_FPTR(Perl_magic_clearpack),
3335                                                         0};
3336 EXT MGVTBL PL_vtbl_dbline =     {0,     MEMBER_TO_FPTR(Perl_magic_setdbline),
3337                                         0,      0,      0};
3338 EXT MGVTBL PL_vtbl_isa =        {0,     MEMBER_TO_FPTR(Perl_magic_setisa),
3339                                         0,      MEMBER_TO_FPTR(Perl_magic_setisa),
3340                                                         0};
3341 EXT MGVTBL PL_vtbl_isaelem =    {0,     MEMBER_TO_FPTR(Perl_magic_setisa),
3342                                         0,      0,      0};
3343 EXT MGVTBL PL_vtbl_arylen =     {MEMBER_TO_FPTR(Perl_magic_getarylen),
3344                                 MEMBER_TO_FPTR(Perl_magic_setarylen),
3345                                         0,      0,      0};
3346 EXT MGVTBL PL_vtbl_glob =       {MEMBER_TO_FPTR(Perl_magic_getglob),
3347                                 MEMBER_TO_FPTR(Perl_magic_setglob),
3348                                         0,      0,      0};
3349 EXT MGVTBL PL_vtbl_mglob =      {0,     MEMBER_TO_FPTR(Perl_magic_setmglob),
3350                                         0,      0,      0};
3351 EXT MGVTBL PL_vtbl_nkeys =      {MEMBER_TO_FPTR(Perl_magic_getnkeys),
3352                                 MEMBER_TO_FPTR(Perl_magic_setnkeys),
3353                                         0,      0,      0};
3354 EXT MGVTBL PL_vtbl_taint =      {MEMBER_TO_FPTR(Perl_magic_gettaint),MEMBER_TO_FPTR(Perl_magic_settaint),
3355                                         0,      0,      0};
3356 EXT MGVTBL PL_vtbl_substr =     {MEMBER_TO_FPTR(Perl_magic_getsubstr), MEMBER_TO_FPTR(Perl_magic_setsubstr),
3357                                         0,      0,      0};
3358 EXT MGVTBL PL_vtbl_vec =        {MEMBER_TO_FPTR(Perl_magic_getvec),
3359                                 MEMBER_TO_FPTR(Perl_magic_setvec),
3360                                         0,      0,      0};
3361 EXT MGVTBL PL_vtbl_pos =        {MEMBER_TO_FPTR(Perl_magic_getpos),
3362                                 MEMBER_TO_FPTR(Perl_magic_setpos),
3363                                         0,      0,      0};
3364 EXT MGVTBL PL_vtbl_bm = {0,     MEMBER_TO_FPTR(Perl_magic_setbm),
3365                                         0,      0,      0};
3366 EXT MGVTBL PL_vtbl_fm = {0,     MEMBER_TO_FPTR(Perl_magic_setfm),
3367                                         0,      0,      0};
3368 EXT MGVTBL PL_vtbl_uvar =       {MEMBER_TO_FPTR(Perl_magic_getuvar),
3369                                 MEMBER_TO_FPTR(Perl_magic_setuvar),
3370                                         0,      0,      0};
3371 #ifdef USE_5005THREADS
3372 EXT MGVTBL PL_vtbl_mutex =      {0,     0,      0,      0,      MEMBER_TO_FPTR(Perl_magic_mutexfree)};
3373 #endif /* USE_5005THREADS */
3374 EXT MGVTBL PL_vtbl_defelem = {MEMBER_TO_FPTR(Perl_magic_getdefelem),MEMBER_TO_FPTR(Perl_magic_setdefelem),
3375                                         0,      0,      0};
3376
3377 EXT MGVTBL PL_vtbl_regexp = {0,0,0,0, MEMBER_TO_FPTR(Perl_magic_freeregexp)};
3378 EXT MGVTBL PL_vtbl_regdata = {0, 0, MEMBER_TO_FPTR(Perl_magic_regdata_cnt), 0, 0};
3379 EXT MGVTBL PL_vtbl_regdatum = {MEMBER_TO_FPTR(Perl_magic_regdatum_get),
3380                                MEMBER_TO_FPTR(Perl_magic_regdatum_set), 0, 0, 0};
3381
3382 #ifdef USE_LOCALE_COLLATE
3383 EXT MGVTBL PL_vtbl_collxfrm = {0,
3384                                 MEMBER_TO_FPTR(Perl_magic_setcollxfrm),
3385                                         0,      0,      0};
3386 #endif
3387
3388 EXT MGVTBL PL_vtbl_amagic =       {0,     MEMBER_TO_FPTR(Perl_magic_setamagic),
3389                                         0,      0,      MEMBER_TO_FPTR(Perl_magic_setamagic)};
3390 EXT MGVTBL PL_vtbl_amagicelem =   {0,     MEMBER_TO_FPTR(Perl_magic_setamagic),
3391                                         0,      0,      MEMBER_TO_FPTR(Perl_magic_setamagic)};
3392
3393 EXT MGVTBL PL_vtbl_backref =      {0,   0,
3394                                         0,      0,      MEMBER_TO_FPTR(Perl_magic_killbackrefs)};
3395
3396 EXT MGVTBL PL_vtbl_ovrld   =      {0,   0,
3397                                         0,      0,      MEMBER_TO_FPTR(Perl_magic_freeovrld)};
3398
3399 #else /* !DOINIT */
3400
3401 EXT MGVTBL PL_vtbl_sv;
3402 EXT MGVTBL PL_vtbl_env;
3403 EXT MGVTBL PL_vtbl_envelem;
3404 EXT MGVTBL PL_vtbl_sig;
3405 EXT MGVTBL PL_vtbl_sigelem;
3406 EXT MGVTBL PL_vtbl_pack;
3407 EXT MGVTBL PL_vtbl_packelem;
3408 EXT MGVTBL PL_vtbl_dbline;
3409 EXT MGVTBL PL_vtbl_isa;
3410 EXT MGVTBL PL_vtbl_isaelem;
3411 EXT MGVTBL PL_vtbl_arylen;
3412 EXT MGVTBL PL_vtbl_glob;
3413 EXT MGVTBL PL_vtbl_mglob;
3414 EXT MGVTBL PL_vtbl_nkeys;
3415 EXT MGVTBL PL_vtbl_taint;
3416 EXT MGVTBL PL_vtbl_substr;
3417 EXT MGVTBL PL_vtbl_vec;
3418 EXT MGVTBL PL_vtbl_pos;
3419 EXT MGVTBL PL_vtbl_bm;
3420 EXT MGVTBL PL_vtbl_fm;
3421 EXT MGVTBL PL_vtbl_uvar;
3422 EXT MGVTBL PL_vtbl_ovrld;
3423
3424 #ifdef USE_5005THREADS
3425 EXT MGVTBL PL_vtbl_mutex;
3426 #endif /* USE_5005THREADS */
3427
3428 EXT MGVTBL PL_vtbl_defelem;
3429 EXT MGVTBL PL_vtbl_regexp;
3430 EXT MGVTBL PL_vtbl_regdata;
3431 EXT MGVTBL PL_vtbl_regdatum;
3432
3433 #ifdef USE_LOCALE_COLLATE
3434 EXT MGVTBL PL_vtbl_collxfrm;
3435 #endif
3436
3437 EXT MGVTBL PL_vtbl_amagic;
3438 EXT MGVTBL PL_vtbl_amagicelem;
3439
3440 EXT MGVTBL PL_vtbl_backref;
3441
3442 #endif /* !DOINIT */
3443
3444 enum {
3445   fallback_amg,        abs_amg,
3446   bool__amg,   nomethod_amg,
3447   string_amg,  numer_amg,
3448   add_amg,     add_ass_amg,
3449   subtr_amg,   subtr_ass_amg,
3450   mult_amg,    mult_ass_amg,
3451   div_amg,     div_ass_amg,
3452   modulo_amg,  modulo_ass_amg,
3453   pow_amg,     pow_ass_amg,
3454   lshift_amg,  lshift_ass_amg,
3455   rshift_amg,  rshift_ass_amg,
3456   band_amg,    band_ass_amg,
3457   bor_amg,     bor_ass_amg,
3458   bxor_amg,    bxor_ass_amg,
3459   lt_amg,      le_amg,
3460   gt_amg,      ge_amg,
3461   eq_amg,      ne_amg,
3462   ncmp_amg,    scmp_amg,
3463   slt_amg,     sle_amg,
3464   sgt_amg,     sge_amg,
3465   seq_amg,     sne_amg,
3466   not_amg,     compl_amg,
3467   inc_amg,     dec_amg,
3468   atan2_amg,   cos_amg,
3469   sin_amg,     exp_amg,
3470   log_amg,     sqrt_amg,
3471   repeat_amg,   repeat_ass_amg,
3472   concat_amg,  concat_ass_amg,
3473   copy_amg,    neg_amg,
3474   to_sv_amg,   to_av_amg,
3475   to_hv_amg,   to_gv_amg,
3476   to_cv_amg,   iter_amg,
3477   int_amg,      DESTROY_amg,
3478   max_amg_code
3479   /* Do not leave a trailing comma here.  C9X allows it, C89 doesn't. */
3480 };
3481
3482 #define NofAMmeth max_amg_code
3483 #define AMG_id2name(id) ((char*)PL_AMG_names[id]+1)
3484
3485 #ifdef DOINIT
3486 EXTCONST char * PL_AMG_names[NofAMmeth] = {
3487   /* Names kept in the symbol table.  fallback => "()", the rest has
3488      "(" prepended.  The only other place in perl which knows about
3489      this convention is AMG_id2name (used for debugging output and
3490      'nomethod' only), the only other place which has it hardwired is
3491      overload.pm.  */
3492   "()",         "(abs",                 /* "fallback" should be the first. */
3493   "(bool",      "(nomethod",
3494   "(\"\"",      "(0+",
3495   "(+",         "(+=",
3496   "(-",         "(-=",
3497   "(*",         "(*=",
3498   "(/",         "(/=",
3499   "(%",         "(%=",
3500   "(**",        "(**=",
3501   "(<<",        "(<<=",
3502   "(>>",        "(>>=",
3503   "(&",         "(&=",
3504   "(|",         "(|=",
3505   "(^",         "(^=",
3506   "(<",         "(<=",
3507   "(>",         "(>=",
3508   "(==",        "(!=",
3509   "(<=>",       "(cmp",
3510   "(lt",        "(le",
3511   "(gt",        "(ge",
3512   "(eq",        "(ne",
3513   "(!",         "(~",
3514   "(++",        "(--",
3515   "(atan2",     "(cos",
3516   "(sin",       "(exp",
3517   "(log",       "(sqrt",
3518   "(x",         "(x=",
3519   "(.",         "(.=",
3520   "(=",         "(neg",
3521   "(${}",       "(@{}",
3522   "(%{}",       "(*{}",
3523   "(&{}",       "(<>",
3524   "(int",       "DESTROY",
3525 };
3526 #else
3527 EXTCONST char * PL_AMG_names[NofAMmeth];
3528 #endif /* def INITAMAGIC */
3529
3530 END_EXTERN_C
3531
3532 struct am_table {
3533   long was_ok_sub;
3534   long was_ok_am;
3535   U32 flags;
3536   CV* table[NofAMmeth];
3537   long fallback;
3538 };
3539 struct am_table_short {
3540   long was_ok_sub;
3541   long was_ok_am;
3542   U32 flags;
3543 };
3544 typedef struct am_table AMT;
3545 typedef struct am_table_short AMTS;
3546
3547 #define AMGfallNEVER    1
3548 #define AMGfallNO       2
3549 #define AMGfallYES      3
3550
3551 #define AMTf_AMAGIC             1
3552 #define AMTf_OVERLOADED         2
3553 #define AMT_AMAGIC(amt)         ((amt)->flags & AMTf_AMAGIC)
3554 #define AMT_AMAGIC_on(amt)      ((amt)->flags |= AMTf_AMAGIC)
3555 #define AMT_AMAGIC_off(amt)     ((amt)->flags &= ~AMTf_AMAGIC)
3556 #define AMT_OVERLOADED(amt)     ((amt)->flags & AMTf_OVERLOADED)
3557 #define AMT_OVERLOADED_on(amt)  ((amt)->flags |= AMTf_OVERLOADED)
3558 #define AMT_OVERLOADED_off(amt) ((amt)->flags &= ~AMTf_OVERLOADED)
3559
3560 #define StashHANDLER(stash,meth)        gv_handler((stash),CAT2(meth,_amg))
3561
3562 /*
3563  * some compilers like to redefine cos et alia as faster
3564  * (and less accurate?) versions called F_cos et cetera (Quidquid
3565  * latine dictum sit, altum viditur.)  This trick collides with
3566  * the Perl overloading (amg).  The following #defines fool both.
3567  */
3568
3569 #ifdef _FASTMATH
3570 #   ifdef atan2
3571 #       define F_atan2_amg  atan2_amg
3572 #   endif
3573 #   ifdef cos
3574 #       define F_cos_amg    cos_amg
3575 #   endif
3576 #   ifdef exp
3577 #       define F_exp_amg    exp_amg
3578 #   endif
3579 #   ifdef log
3580 #       define F_log_amg    log_amg
3581 #   endif
3582 #   ifdef pow
3583 #       define F_pow_amg    pow_amg
3584 #   endif
3585 #   ifdef sin
3586 #       define F_sin_amg    sin_amg
3587 #   endif
3588 #   ifdef sqrt
3589 #       define F_sqrt_amg   sqrt_amg
3590 #   endif
3591 #endif /* _FASTMATH */
3592
3593 #define PERLDB_ALL              (PERLDBf_SUB    | PERLDBf_LINE  |       \
3594                                  PERLDBf_NOOPT  | PERLDBf_INTER |       \
3595                                  PERLDBf_SUBLINE| PERLDBf_SINGLE|       \
3596                                  PERLDBf_NAMEEVAL| PERLDBf_NAMEANON)
3597                                         /* No _NONAME, _GOTO */
3598 #define PERLDBf_SUB             0x01    /* Debug sub enter/exit */
3599 #define PERLDBf_LINE            0x02    /* Keep line # */
3600 #define PERLDBf_NOOPT           0x04    /* Switch off optimizations */
3601 #define PERLDBf_INTER           0x08    /* Preserve more data for
3602                                            later inspections  */
3603 #define PERLDBf_SUBLINE         0x10    /* Keep subr source lines */
3604 #define PERLDBf_SINGLE          0x20    /* Start with single-step on */
3605 #define PERLDBf_NONAME          0x40    /* For _SUB: no name of the subr */
3606 #define PERLDBf_GOTO            0x80    /* Report goto: call DB::goto */
3607 #define PERLDBf_NAMEEVAL        0x100   /* Informative names for evals */
3608 #define PERLDBf_NAMEANON        0x200   /* Informative names for anon subs */
3609
3610 #define PERLDB_SUB      (PL_perldb && (PL_perldb & PERLDBf_SUB))
3611 #define PERLDB_LINE     (PL_perldb && (PL_perldb & PERLDBf_LINE))
3612 #define PERLDB_NOOPT    (PL_perldb && (PL_perldb & PERLDBf_NOOPT))
3613 #define PERLDB_INTER    (PL_perldb && (PL_perldb & PERLDBf_INTER))
3614 #define PERLDB_SUBLINE  (PL_perldb && (PL_perldb & PERLDBf_SUBLINE))
3615 #define PERLDB_SINGLE   (PL_perldb && (PL_perldb & PERLDBf_SINGLE))
3616 #define PERLDB_SUB_NN   (PL_perldb && (PL_perldb & (PERLDBf_NONAME)))
3617 #define PERLDB_GOTO     (PL_perldb && (PL_perldb & PERLDBf_GOTO))
3618 #define PERLDB_NAMEEVAL (PL_perldb && (PL_perldb & PERLDBf_NAMEEVAL))
3619 #define PERLDB_NAMEANON (PL_perldb && (PL_perldb & PERLDBf_NAMEANON))
3620
3621
3622 #ifdef USE_LOCALE_NUMERIC
3623
3624 #define SET_NUMERIC_STANDARD() \
3625         set_numeric_standard();
3626
3627 #define SET_NUMERIC_LOCAL() \
3628         set_numeric_local();
3629
3630 #define IN_LOCALE_RUNTIME       (PL_curcop->op_private & HINT_LOCALE)
3631 #define IN_LOCALE_COMPILETIME   (PL_hints & HINT_LOCALE)
3632
3633 #define IN_LOCALE \
3634         (PL_curcop == &PL_compiling ? IN_LOCALE_COMPILETIME : IN_LOCALE_RUNTIME)
3635
3636 #define STORE_NUMERIC_LOCAL_SET_STANDARD() \
3637         bool was_local = PL_numeric_local && IN_LOCALE; \
3638         if (was_local) SET_NUMERIC_STANDARD();
3639
3640 #define STORE_NUMERIC_STANDARD_SET_LOCAL() \
3641         bool was_standard = PL_numeric_standard && IN_LOCALE; \
3642         if (was_standard) SET_NUMERIC_LOCAL();
3643
3644 #define RESTORE_NUMERIC_LOCAL() \
3645         if (was_local) SET_NUMERIC_LOCAL();
3646
3647 #define RESTORE_NUMERIC_STANDARD() \
3648         if (was_standard) SET_NUMERIC_STANDARD();
3649
3650 #define Atof                            my_atof
3651
3652 #else /* !USE_LOCALE_NUMERIC */
3653
3654 #define SET_NUMERIC_STANDARD()          /**/
3655 #define SET_NUMERIC_LOCAL()             /**/
3656 #define IS_NUMERIC_RADIX(a, b)          (0)
3657 #define STORE_NUMERIC_LOCAL_SET_STANDARD()      /**/
3658 #define STORE_NUMERIC_STANDARD_SET_LOCAL()      /**/
3659 #define RESTORE_NUMERIC_LOCAL()         /**/
3660 #define RESTORE_NUMERIC_STANDARD()      /**/
3661 #define Atof                            Perl_atof
3662 #define IN_LOCALE_RUNTIME               0
3663
3664 #endif /* !USE_LOCALE_NUMERIC */
3665
3666 #if !defined(Strtol) && defined(USE_64_BIT_INT) && defined(IV_IS_QUAD) && QUADKIND == QUAD_IS_LONG_LONG
3667 #    ifdef __hpux
3668 #        define strtoll __strtoll       /* secret handshake */
3669 #    endif
3670 #   if !defined(Strtol) && defined(HAS_STRTOLL)
3671 #       define Strtol   strtoll
3672 #   endif
3673 #    if !defined(Strtol) && defined(HAS_STRTOQ)
3674 #       define Strtol   strtoq
3675 #    endif
3676 /* is there atoq() anywhere? */
3677 #endif
3678 #if !defined(Strtol) && defined(HAS_STRTOL)
3679 #   define Strtol       strtol
3680 #endif
3681 #ifndef Atol
3682 /* It would be more fashionable to use Strtol() to define atol()
3683  * (as is done for Atoul(), see below) but for backward compatibility
3684  * we just assume atol(). */
3685 #   if defined(USE_64_BIT_INT) && defined(IV_IS_QUAD) && QUADKIND == QUAD_IS_LONG_LONG && defined(HAS_ATOLL)
3686 #       define Atol     atoll
3687 #   else
3688 #       define Atol     atol
3689 #   endif
3690 #endif
3691
3692 #if !defined(Strtoul) && defined(USE_64_BIT_INT) && defined(UV_IS_QUAD) && QUADKIND == QUAD_IS_LONG_LONG
3693 #    ifdef __hpux
3694 #        define strtoull __strtoull     /* secret handshake */
3695 #    endif
3696 #    if !defined(Strtoul) && defined(HAS_STRTOULL)
3697 #       define Strtoul  strtoull
3698 #    endif
3699 #    if !defined(Strtoul) && defined(HAS_STRTOUQ)
3700 #       define Strtoul  strtouq
3701 #    endif
3702 /* is there atouq() anywhere? */
3703 #endif
3704 #if !defined(Strtoul) && defined(HAS_STRTOUL)
3705 #   define Strtoul      strtoul
3706 #endif
3707 #ifndef Atoul
3708 #   define Atoul(s)     Strtoul(s, (char **)NULL, 10)
3709 #endif
3710
3711 #if !defined(PERLIO_IS_STDIO) && defined(HASATTRIBUTE)
3712 /*
3713  * Now we have __attribute__ out of the way
3714  * Remap printf
3715  */
3716 #undef printf
3717 #ifdef __GNUC__
3718 #define printf(fmt,args...) PerlIO_stdoutf(fmt,##args)
3719 #else
3720 #define printf PerlIO_stdoutf
3721 #endif
3722 #endif
3723
3724 /* if these never got defined, they need defaults */
3725 #ifndef PERL_SET_CONTEXT
3726 #  define PERL_SET_CONTEXT(i)           PERL_SET_INTERP(i)
3727 #endif
3728
3729 #ifndef PERL_GET_CONTEXT
3730 #  define PERL_GET_CONTEXT              PERL_GET_INTERP
3731 #endif
3732
3733 #ifndef PERL_GET_THX
3734 #  define PERL_GET_THX                  ((void*)NULL)
3735 #endif
3736
3737 #ifndef PERL_SET_THX
3738 #  define PERL_SET_THX(t)               NOOP
3739 #endif
3740
3741 #ifndef PERL_SCRIPT_MODE
3742 #define PERL_SCRIPT_MODE "r"
3743 #endif
3744
3745 /*
3746  * Some operating systems are stingy with stack allocation,
3747  * so perl may have to guard against stack overflow.
3748  */
3749 #ifndef PERL_STACK_OVERFLOW_CHECK
3750 #define PERL_STACK_OVERFLOW_CHECK()  NOOP
3751 #endif
3752
3753 /*
3754  * Some nonpreemptive operating systems find it convenient to
3755  * check for asynchronous conditions after each op execution.
3756  * Keep this check simple, or it may slow down execution
3757  * massively.
3758  */
3759
3760 #ifndef PERL_MICRO
3761 #   ifndef PERL_OLD_SIGNALS
3762 #               ifndef PERL_ASYNC_CHECK
3763 #                       define PERL_ASYNC_CHECK() if (PL_sig_pending) despatch_signals()
3764 #               endif
3765 #   endif
3766 #endif
3767
3768 #ifndef PERL_ASYNC_CHECK
3769 #   define PERL_ASYNC_CHECK()  NOOP
3770 #endif
3771
3772 /*
3773  * On some operating systems, a memory allocation may succeed,
3774  * but put the process too close to the system's comfort limit.
3775  * In this case, PERL_ALLOC_CHECK frees the pointer and sets
3776  * it to NULL.
3777  */
3778 #ifndef PERL_ALLOC_CHECK
3779 #define PERL_ALLOC_CHECK(p)  NOOP
3780 #endif
3781
3782 /*
3783  * nice_chunk and nice_chunk size need to be set
3784  * and queried under the protection of sv_mutex
3785  */
3786 #define offer_nice_chunk(chunk, chunk_size) STMT_START {  \
3787        void *new_chunk;                                   \
3788        U32 new_chunk_size;                                \
3789        LOCK_SV_MUTEX;                                     \
3790        new_chunk = (void *)(chunk);                       \
3791        new_chunk_size = (chunk_size);                     \
3792        if (new_chunk_size > PL_nice_chunk_size) {         \
3793            if (PL_nice_chunk) Safefree(PL_nice_chunk);    \
3794            PL_nice_chunk = new_chunk;                     \
3795            PL_nice_chunk_size = new_chunk_size;           \
3796        } else {                                           \
3797            Safefree(chunk);                               \
3798        }                                                  \
3799        UNLOCK_SV_MUTEX;                                   \
3800    } STMT_END
3801
3802 #ifdef HAS_SEM
3803 #   include <sys/ipc.h>
3804 #   include <sys/sem.h>
3805 #   ifndef HAS_UNION_SEMUN      /* Provide the union semun. */
3806     union semun {
3807         int             val;
3808         struct semid_ds *buf;
3809         unsigned short  *array;
3810     };
3811 #   endif
3812 #   ifdef USE_SEMCTL_SEMUN
3813 #       ifdef IRIX32_SEMUN_BROKEN_BY_GCC
3814             union gccbug_semun {
3815                 int             val;
3816                 struct semid_ds *buf;
3817                 unsigned short  *array;
3818                 char            __dummy[5];
3819             };
3820 #           define semun gccbug_semun
3821 #       endif
3822 #       define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun)
3823 #   else
3824 #       ifdef USE_SEMCTL_SEMID_DS
3825 #           ifdef EXTRA_F_IN_SEMUN_BUF
3826 #               define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buff)
3827 #           else
3828 #               define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buf)
3829 #           endif
3830 #       endif
3831 #   endif
3832 #endif
3833
3834 /*
3835  * Boilerplate macros for initializing and accessing interpreter-local
3836  * data from C.  All statics in extensions should be reworked to use
3837  * this, if you want to make the extension thread-safe.  See ext/re/re.xs
3838  * for an example of the use of these macros.
3839  *
3840  * Code that uses these macros is responsible for the following:
3841  * 1. #define MY_CXT_KEY to a unique string, e.g. "DynaLoader_guts"
3842  * 2. Declare a typedef named my_cxt_t that is a structure that contains
3843  *    all the data that needs to be interpreter-local.
3844  * 3. Use the START_MY_CXT macro after the declaration of my_cxt_t.
3845  * 4. Use the MY_CXT_INIT macro such that it is called exactly once
3846  *    (typically put in the BOOT: section).
3847  * 5. Use the members of the my_cxt_t structure everywhere as
3848  *    MY_CXT.member.
3849  * 6. Use the dMY_CXT macro (a declaration) in all the functions that
3850  *    access MY_CXT.
3851  */
3852
3853 #if defined(PERL_IMPLICIT_CONTEXT)
3854
3855 /* This must appear in all extensions that define a my_cxt_t structure,
3856  * right after the definition (i.e. at file scope).  The non-threads
3857  * case below uses it to declare the data as static. */
3858 #define START_MY_CXT
3859
3860 /* Fetches the SV that keeps the per-interpreter data. */
3861 #define dMY_CXT_SV \
3862         SV *my_cxt_sv = *hv_fetch(PL_modglobal, MY_CXT_KEY,             \
3863                                   sizeof(MY_CXT_KEY)-1, TRUE)
3864
3865 /* This declaration should be used within all functions that use the
3866  * interpreter-local data. */
3867 #define dMY_CXT \
3868         dMY_CXT_SV;                                                     \
3869         my_cxt_t *my_cxtp = INT2PTR(my_cxt_t*, SvUV(my_cxt_sv))
3870
3871 /* Creates and zeroes the per-interpreter data.
3872  * (We allocate my_cxtp in a Perl SV so that it will be released when
3873  * the interpreter goes away.) */
3874 #define MY_CXT_INIT \
3875         dMY_CXT_SV;                                                     \
3876         /* newSV() allocates one more than needed */                    \
3877         my_cxt_t *my_cxtp = (my_cxt_t*)SvPVX(newSV(sizeof(my_cxt_t)-1));\
3878         Zero(my_cxtp, 1, my_cxt_t);                                     \
3879         sv_setuv(my_cxt_sv, PTR2UV(my_cxtp))
3880
3881 /* This macro must be used to access members of the my_cxt_t structure.
3882  * e.g. MYCXT.some_data */
3883 #define MY_CXT          (*my_cxtp)
3884
3885 /* Judicious use of these macros can reduce the number of times dMY_CXT
3886  * is used.  Use is similar to pTHX, aTHX etc. */
3887 #define pMY_CXT         my_cxt_t *my_cxtp
3888 #define pMY_CXT_        pMY_CXT,
3889 #define _pMY_CXT        ,pMY_CXT
3890 #define aMY_CXT         my_cxtp
3891 #define aMY_CXT_        aMY_CXT,
3892 #define _aMY_CXT        ,aMY_CXT
3893
3894 #else /* USE_ITHREADS */
3895
3896 #define START_MY_CXT    static my_cxt_t my_cxt;
3897 #define dMY_CXT_SV      dNOOP
3898 #define dMY_CXT         dNOOP
3899 #define MY_CXT_INIT     NOOP
3900 #define MY_CXT          my_cxt
3901
3902 #define pMY_CXT         void
3903 #define pMY_CXT_
3904 #define _pMY_CXT
3905 #define aMY_CXT
3906 #define aMY_CXT_
3907 #define _aMY_CXT
3908
3909 #endif /* !defined(USE_ITHREADS) */
3910
3911 #ifdef I_FCNTL
3912 #  include <fcntl.h>
3913 #endif
3914
3915 #ifdef I_SYS_FILE
3916 #  include <sys/file.h>
3917 #endif
3918
3919 #if defined(HAS_FLOCK) && !defined(HAS_FLOCK_PROTO)
3920 int flock(int fd, int op);
3921 #endif
3922
3923 #ifndef O_RDONLY
3924 /* Assume UNIX defaults */
3925 #    define O_RDONLY    0000
3926 #    define O_WRONLY    0001
3927 #    define O_RDWR      0002
3928 #    define O_CREAT     0100
3929 #endif
3930
3931 #ifndef O_BINARY
3932 #  define O_BINARY 0
3933 #endif
3934
3935 #ifndef O_TEXT
3936 #  define O_TEXT 0
3937 #endif
3938
3939 #if O_TEXT != O_BINARY
3940     /* If you have different O_TEXT and O_BINARY and you are a CLRF shop,
3941      * that is, you are somehow DOSish. */
3942 #   if !defined(__BEOS__)
3943 #      define PERLIO_CLRF 1
3944 #   else
3945     /* If you have O_TEXT different from your O_BINARY but you still are
3946      * not a CRLF shop. */
3947 #       undef PERLIO_CLRF
3948 #   endif
3949 #endif
3950
3951 #ifdef IAMSUID
3952
3953 #ifdef I_SYS_STATVFS
3954 #   if defined(PERL_SCO) && !defined(_SVID3)
3955 #       define _SVID3
3956 #   endif
3957 #   include <sys/statvfs.h>     /* for f?statvfs() */
3958 #endif
3959 #ifdef I_SYS_MOUNT
3960 #   include <sys/mount.h>       /* for *BSD f?statfs() */
3961 #endif
3962 #ifdef I_MNTENT
3963 #   include <mntent.h>          /* for getmntent() */
3964 #endif
3965 #ifdef I_SYS_STATFS
3966 #   include <sys/statfs.h>      /* for some statfs() */
3967 #endif
3968 #ifdef I_SYS_VFS
3969 #  ifdef __sgi
3970 #    define sv IRIX_sv          /* kludge: IRIX has an sv of its own */
3971 #  endif
3972 #    include <sys/vfs.h>        /* for some statfs() */
3973 #  ifdef __sgi
3974 #    undef IRIX_sv
3975 #  endif
3976 #endif
3977 #ifdef I_USTAT
3978 #   include <ustat.h>           /* for ustat() */
3979 #endif
3980
3981 #if !defined(PERL_MOUNT_NOSUID) && defined(MOUNT_NOSUID)
3982 #    define PERL_MOUNT_NOSUID MOUNT_NOSUID
3983 #endif
3984 #if !defined(PERL_MOUNT_NOSUID) && defined(MNT_NOSUID)
3985 #    define PERL_MOUNT_NOSUID MNT_NOSUID
3986 #endif
3987 #if !defined(PERL_MOUNT_NOSUID) && defined(MS_NOSUID)
3988 #   define PERL_MOUNT_NOSUID MS_NOSUID
3989 #endif
3990 #if !defined(PERL_MOUNT_NOSUID) && defined(M_NOSUID)
3991 #   define PERL_MOUNT_NOSUID M_NOSUID
3992 #endif
3993
3994 #endif /* IAMSUID */
3995
3996 #ifdef I_LIBUTIL
3997 #   include <libutil.h>         /* setproctitle() in some FreeBSDs */
3998 #endif
3999
4000 #ifndef EXEC_ARGV_CAST
4001 #define EXEC_ARGV_CAST(x) x
4002 #endif
4003
4004 #define IS_NUMBER_IN_UV               0x01 /* number within UV range (maybe not
4005                                               int).  value returned in pointed-
4006                                               to UV */
4007 #define IS_NUMBER_GREATER_THAN_UV_MAX 0x02 /* pointed to UV undefined */
4008 #define IS_NUMBER_NOT_INT             0x04 /* saw . or E notation */
4009 #define IS_NUMBER_NEG                 0x08 /* leading minus sign */
4010 #define IS_NUMBER_INFINITY            0x10 /* this is big */
4011 #define IS_NUMBER_NAN                 0x20 /* this is not */
4012
4013 #define GROK_NUMERIC_RADIX(sp, send) grok_numeric_radix(sp, send)
4014
4015 /* Input flags: */
4016 #define PERL_SCAN_ALLOW_UNDERSCORES   0x01 /* grok_??? accept _ in numbers */
4017 #define PERL_SCAN_DISALLOW_PREFIX     0x02 /* grok_??? reject 0x in hex etc */
4018 /* Output flags: */
4019 #define PERL_SCAN_GREATER_THAN_UV_MAX 0x02 /* should this merge with above? */
4020
4021 /* to let user control profiling */
4022 #ifdef PERL_GPROF_CONTROL
4023 extern void moncontrol(int);
4024 #define PERL_GPROF_MONCONTROL(x) moncontrol(x)
4025 #else
4026 #define PERL_GPROF_MONCONTROL(x)
4027 #endif
4028
4029 #ifdef UNDER_CE
4030 #include "wince.h"
4031 #endif
4032
4033 /* ISO 6429 NEL - C1 control NExt Line */
4034 /* See http://www.unicode.org/unicode/reports/tr13/ */
4035 #ifdef EBCDIC   /* In EBCDIC NEL is just an alias for LF */
4036 #   if '^' == 95        /* CP 1047: MVS OpenEdition - OS/390 - z/OS */
4037 #       define NEXT_LINE_CHAR   0x15
4038 #   else                /* CDRA */
4039 #       define NEXT_LINE_CHAR   0x25
4040 #   endif
4041 #else
4042 #   define NEXT_LINE_CHAR       0x85
4043 #endif
4044
4045 /* The UTF-8 bytes of the Unicode LS and PS, U+2028 and U+2029 */
4046 #define UNICODE_LINE_SEPA_0     0xE2
4047 #define UNICODE_LINE_SEPA_1     0x80
4048 #define UNICODE_LINE_SEPA_2     0xA8
4049 #define UNICODE_PARA_SEPA_0     0xE2
4050 #define UNICODE_PARA_SEPA_1     0x80
4051 #define UNICODE_PARA_SEPA_2     0xA9
4052
4053 /* and finally... */
4054 #define PERL_PATCHLEVEL_H_IMPLICIT
4055 #include "patchlevel.h"
4056 #undef PERL_PATCHLEVEL_H_IMPLICIT
4057
4058 /* Mention
4059
4060    NV_PRESERVES_UV
4061
4062    HAS_MKSTEMP
4063    HAS_MKSTEMPS
4064    HAS_MKDTEMP
4065
4066    HAS_GETCWD
4067
4068    HAS_MMAP
4069    HAS_MPROTECT
4070    HAS_MSYNC
4071    HAS_MADVISE
4072    HAS_MUNMAP
4073    I_SYSMMAN
4074    Mmap_t
4075
4076    NVef
4077    NVff
4078    NVgf
4079
4080    HAS_USLEEP
4081    HAS_UALARM
4082
4083    HAS_SETITIMER
4084    HAS_GETITIMER
4085
4086    HAS_SENDMSG
4087    HAS_RECVMSG
4088    HAS_READV
4089    HAS_WRITEV
4090    I_SYSUIO
4091    HAS_STRUCT_MSGHDR
4092    HAS_STRUCT_CMSGHDR
4093
4094    HAS_NL_LANGINFO
4095    
4096    HAS_DIRFD
4097
4098    so that Configure picks them up. */
4099
4100 #endif /* Include guard */
4101