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